Skip to content

Commit 9743a68

Browse files
committed
chore: Set peerDeps to 4.x & drop Node 4
1 parent 05c36db commit 9743a68

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

package.json

+14-11
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,20 @@
33
"version": "0.28.7",
44
"author": "Tobias Koppers @sokra",
55
"description": "css loader module for webpack",
6-
"engines": {
7-
"node": ">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"
8-
},
96
"files": [
107
"index.js",
118
"locals.js",
129
"lib"
1310
],
11+
"scripts": {
12+
"test": "mocha",
13+
"test:cover": "npm run cover -- --report lcovonly",
14+
"lint": "eslint lib test",
15+
"travis:test": "npm run cover",
16+
"travis:lint": "npm run lint",
17+
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
18+
"release": "yarn run standard-version"
19+
},
1420
"dependencies": {
1521
"babel-code-frame": "^6.11.0",
1622
"css-selector-tokenizer": "^0.7.0",
@@ -35,14 +41,11 @@
3541
"should": "^11.1.2",
3642
"standard-version": "^4.0.0"
3743
},
38-
"scripts": {
39-
"test": "mocha",
40-
"test:cover": "npm run cover -- --report lcovonly",
41-
"lint": "eslint lib test",
42-
"travis:test": "npm run cover",
43-
"travis:lint": "npm run lint",
44-
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
45-
"release": "yarn run standard-version"
44+
"peerDependencies": {
45+
"webpack": "^3.0.0 || ^4.0.0-alpha.0 || ^4.0.0"
46+
},
47+
"engines": {
48+
"node": ">= 6 || >= 8"
4649
},
4750
"repository": {
4851
"type": "git",

0 commit comments

Comments
 (0)