|
2 | 2 | "name": "sass-loader", |
3 | 3 | "version": "6.0.5", |
4 | 4 | "description": "Sass loader for webpack", |
| 5 | + "author": "J. Tangelder", |
| 6 | + "license": "MIT", |
5 | 7 | "main": "lib/loader.js", |
| 8 | + "files": [ |
| 9 | + "lib" |
| 10 | + ], |
6 | 11 | "scripts": { |
| 12 | + "appveyor:test": "npm test", |
7 | 13 | "create-spec": "node test/tools/runCreateSpec.js", |
8 | | - "pretest": "npm run create-spec", |
| 14 | + "lint": "eslint lib test", |
9 | 15 | "test": "nyc --all mocha -R spec -t 10000", |
10 | | - "posttest": "npm run lint", |
11 | 16 | "test-bootstrap-sass": "webpack-dev-server --config test/bootstrapSass/webpack.config.js --content-base ./test/bootstrapSass", |
12 | 17 | "test-source-map": "webpack-dev-server --config test/sourceMap/webpack.config.js --content-base ./test/sourceMap --inline", |
13 | 18 | "test-watch": "webpack --config test/watch/webpack.config.js", |
14 | 19 | "test-extract-text": "webpack --config test/extractText/webpack.config.js", |
15 | 20 | "test-hmr": "webpack-dev-server --config test/hmr/webpack.config.js --content-base ./test/hmr --hot --inline", |
16 | | - "lint": "eslint lib test", |
17 | | - "appveyor:test": "npm test" |
18 | | - }, |
19 | | - "keywords": [ |
20 | | - "sass", |
21 | | - "libsass", |
22 | | - "webpack", |
23 | | - "loader" |
24 | | - ], |
25 | | - "repository": { |
26 | | - "type": "git", |
27 | | - "url": "git://github.com/webpack-contrib/sass-loader.git" |
28 | | - }, |
29 | | - "author": "J. Tangelder", |
30 | | - "license": "MIT", |
31 | | - "engines": { |
32 | | - "node": ">=4.0.0" |
33 | | - }, |
34 | | - "peerDependencies": { |
35 | | - "node-sass": "^4.0.0", |
36 | | - "webpack": "^2.0.0" |
| 21 | + "travis:lint": "npm run lint", |
| 22 | + "travis:test": "npm run test", |
| 23 | + "travis:coverage": "npm run test", |
| 24 | + "pretest": "npm run create-spec", |
| 25 | + "posttest": "npm run lint" |
37 | 26 | }, |
38 | 27 | "dependencies": { |
39 | 28 | "async": "^2.1.5", |
|
55 | 44 | "raw-loader": "^0.5.1", |
56 | 45 | "should": "^11.2.0", |
57 | 46 | "style-loader": "^0.18.2", |
58 | | - "webpack": "^2.2.1", |
59 | 47 | "webpack-dev-server": "^2.4.1", |
60 | 48 | "webpack-merge": "^4.0.0" |
61 | 49 | }, |
62 | | - "files": [ |
63 | | - "lib", |
64 | | - "README", |
65 | | - "LICENSE" |
66 | | - ] |
| 50 | + "engines": { |
| 51 | + "node": ">= 4.3 < 5.0.0 || >= 5.10" |
| 52 | + }, |
| 53 | + "peerDependencies": { |
| 54 | + "node-sass": "^4.0.0", |
| 55 | + "webpack": "^2.0.0 || >= 3.0.0-rc.0 || ^3.0.0" |
| 56 | + }, |
| 57 | + "keywords": [ |
| 58 | + "sass", |
| 59 | + "libsass", |
| 60 | + "webpack", |
| 61 | + "loader" |
| 62 | + ], |
| 63 | + "repository": { |
| 64 | + "type": "git", |
| 65 | + "url": "git://github.com/webpack-contrib/sass-loader.git" |
| 66 | + }, |
| 67 | + "bugs": { |
| 68 | + "url": "https://github.com/webpack-contrib/sass-loader/issues" |
| 69 | + }, |
| 70 | + "homepage": "https://github.com/webpack-contrib/sass-loader" |
67 | 71 | } |
0 commit comments