forked from webpack-contrib/css-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "css-loader",
"version": "0.28.11",
"author": "Tobias Koppers @sokra",
"license": "MIT",
"description": "css loader module for webpack",
"engines": {
"node": ">=0.12.0 || >= 4.3.0 < 5.0.0 || >=5.10"
},
"files": [
"lib",
"index.js",
"locals.js"
],
"dependencies": {
"babel-code-frame": "^6.26.0",
"css-selector-tokenizer": "^0.7.0",
"cssnano": "^3.10.0",
"icss-utils": "^2.1.0",
"loader-utils": "^1.0.2",
"lodash.camelcase": "^4.3.0",
"object-assign": "^4.1.1",
"postcss": "^5.0.6",
"postcss-modules-extract-imports": "^1.2.0",
"postcss-modules-local-by-default": "^1.2.0",
"postcss-modules-scope": "^1.1.0",
"postcss-modules-values": "^1.3.0",
"postcss-value-parser": "^3.3.0",
"source-list-map": "^2.0.0"
},
"devDependencies": {
"codecov": "^1.0.1",
"eslint": "3.14.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"should": "^11.1.2",
"standard-version": "^4.0.0"
},
"scripts": {
"lint": "eslint lib test",
"test": "mocha",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"test:cover": "npm run cover -- --report lcovonly",
"travis:test": "npm run cover",
"travis:lint": "npm run lint",
"release": "standard-version"
},
"homepage": "https://github.com/webpack-contrib/css-loader",
"repository": "https://github.com/webpack-contrib/css-loader.git",
"bugs": "https://github.com/webpack-contrib/css-loader/issues"
}