-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "css-flat-loader",
"version": "0.2.1",
"author": "tangjinzhou",
"description": "css flat loader module for webpack",
"engines": {
"node": ">=0.12.0 || >=4.3.0 <5.0.0 || >=5.10"
},
"files": [
"index.js",
"src"
],
"dependencies": {
"autoprefixer": "^7.1.0",
"babel-code-frame": "^6.11.0",
"cosmiconfig": "^2.1.3",
"css-loader": "^0.28.0",
"css-selector-tokenizer": "^0.7.0",
"cssnano": "^3.10.0",
"eslint-config-postcss": "^2.0.2",
"loader-utils": "^1.0.2",
"lodash": "^4.17.4",
"object-assign": "^4.1.1",
"postcss": "^5.0.6",
"postcss-load-plugins": "^2.3.0",
"postcss-modules-extract-imports": "^1.0.0",
"postcss-modules-local-by-default": "^1.0.1",
"postcss-modules-scope": "^1.0.0",
"postcss-modules-values": "^1.1.0",
"postcss-value-parser": "^3.3.0",
"precss": "^1.4.0",
"source-list-map": "^0.1.7"
},
"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": {
"test": "mocha",
"test:cover": "npm run cover -- --report lcovonly",
"lint": "eslint lib test",
"travis:test": "npm run cover",
"travis:lint": "npm run lint",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"release": "yarn run standard-version"
},
"repository": {
"type": "git",
"url": "[email protected]:tangjinzhou/css-flat-loader"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
},
"rules": {
"comma-dangle": [
2,
"always-multiline"
],
"semi": [
2,
"never"
],
"no-trailing-spaces": "off",
"max-len": [
2,
180
]
}
},
"license": "MIT"
}