-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.77 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": "enb-css",
"version": "1.2.2",
"description": "CSS tech for ENB",
"keywords": [
"enb",
"css",
"autoprefixer",
"sourcemap",
"compress"
],
"author": "Andrew Abramov <[email protected]>",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-css/blob/master/LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "[email protected]:enb/enb-css.git"
},
"homepage": "https://github.com/enb/enb-css",
"bugs": "https://github.com/enb/enb-css/issues",
"maintainers": [
{
"name": "Andrew Abramov",
"email": "[email protected]",
"github-username": "andrewblond"
}
],
"contributors": [
"Andrew Abramov <[email protected]>"
],
"engines": {
"node": ">= 0.10.0"
},
"peerDependencies": {
"enb": ">=0.16.0 <2.0.0"
},
"dependencies": {
"autoprefixer": "6.7.7",
"csswring": "4.2.3",
"es6-promise": "4.0.5",
"postcss": "5.2.15",
"postcss-import": "7.1.3",
"postcss-url": "5.1.2",
"vow": "0.4.15"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"enb": ">=0.16.0 <2.0.0",
"eslint": "^3.1.0",
"eslint-config-pedant": "^0.8.0",
"istanbul": "^0.4.4",
"jscs": "^3.0.7",
"mocha": "^3.0.2",
"mock-enb": "^0.3.0",
"mock-fs": "^4.1.0",
"proxyquire": "^1.7.10",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0"
},
"files": [
"lib/**",
"techs/**",
"LICENSE.txt"
],
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "eslint . && jscs .",
"unit": "mocha test/**/*.test.js",
"cover": "istanbul cover _mocha -- test/**/*.test.js",
"coveralls": "npm i coveralls && npm run cover && cat ./coverage/lcov.info | coveralls"
}
}