Skip to content

Commit 5486350

Browse files
joshwiensmichael-ciniawsky
authored andcommitted
chore: Set peerDeps to 4.x & drop Node 4
1 parent 630579d commit 5486350

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed

package.json

+18-11
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@
44
"author": "Tobias Koppers @sokra",
55
"license": "MIT",
66
"description": "css loader module for webpack",
7-
"engines": {
8-
"node": ">=0.12.0 || >= 4.3.0 < 5.0.0 || >=5.10"
9-
},
107
"files": [
118
"lib",
129
"index.js",
1310
"locals.js"
1411
],
12+
"scripts": {
13+
"test": "mocha",
14+
"test:cover": "npm run cover -- --report lcovonly",
15+
"lint": "eslint lib test",
16+
"travis:test": "npm run cover",
17+
"travis:lint": "npm run lint",
18+
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
19+
"release": "yarn run standard-version"
20+
},
1521
"dependencies": {
1622
"babel-code-frame": "^6.26.0",
1723
"css-selector-tokenizer": "^0.7.0",
@@ -36,14 +42,15 @@
3642
"should": "^11.1.2",
3743
"standard-version": "^4.0.0"
3844
},
39-
"scripts": {
40-
"lint": "eslint lib test",
41-
"test": "mocha",
42-
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
43-
"test:cover": "npm run cover -- --report lcovonly",
44-
"travis:test": "npm run cover",
45-
"travis:lint": "npm run lint",
46-
"release": "standard-version"
45+
"peerDependencies": {
46+
"webpack": "^3.0.0 || ^4.0.0-alpha.0 || ^4.0.0"
47+
},
48+
"engines": {
49+
"node": ">= 6 || >= 8"
50+
},
51+
"repository": {
52+
"type": "git",
53+
"url": "git@github.com:webpack/css-loader.git"
4754
},
4855
"homepage": "https://github.com/webpack-contrib/css-loader",
4956
"repository": "https://github.com/webpack-contrib/css-loader.git",

0 commit comments

Comments
 (0)