|
4 | 4 | "author": "Tobias Koppers @sokra", |
5 | 5 | "license": "MIT", |
6 | 6 | "description": "css loader module for webpack", |
7 | | - "engines": { |
8 | | - "node": ">=0.12.0 || >= 4.3.0 < 5.0.0 || >=5.10" |
9 | | - }, |
10 | 7 | "files": [ |
11 | 8 | "lib", |
12 | 9 | "index.js", |
13 | 10 | "locals.js" |
14 | 11 | ], |
| 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 | + }, |
15 | 21 | "dependencies": { |
16 | 22 | "babel-code-frame": "^6.26.0", |
17 | 23 | "css-selector-tokenizer": "^0.7.0", |
|
36 | 42 | "should": "^11.1.2", |
37 | 43 | "standard-version": "^4.0.0" |
38 | 44 | }, |
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" |
47 | 54 | }, |
48 | 55 | "homepage": "https://github.com/webpack-contrib/css-loader", |
49 | 56 | "repository": "https://github.com/webpack-contrib/css-loader.git", |
|
0 commit comments