-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
77 lines (77 loc) · 1.88 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-stylus",
"version": "3.2.0",
"description": "enb stylus techs",
"keywords": [
"enb",
"stylus",
"styl",
"css",
"autoprefixer",
"nib"
],
"author": "Marat Dulin <[email protected]>",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-stylus/blob/master/LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "[email protected]:enb/enb-stylus.git"
},
"homepage": "https://github.com/enb/enb-stylus",
"bugs": "https://github.com/enb/enb-stylus/issues",
"maintainers": [
{
"name": "Andrew Abramov",
"email": "[email protected]",
"github-username": "blond"
},
{
"name": "Marat Dulin",
"email": "[email protected]",
"github-username": "mdevils"
}
],
"contributors": [
"Andrew Abramov <[email protected]>",
"Marat Dulin <[email protected]>",
"Nickolay Ilchenko <[email protected]>"
],
"peerDependencies": {
"enb": ">=0.16.0 <2.0.0"
},
"dependencies": {
"autoprefixer": "9.8.0",
"csswring": "7.0.0",
"nib": "1.1.2",
"postcss": "7.0.32",
"postcss-import": "7.1.3",
"postcss-url": "8.0.0",
"stylus": "0.54.7"
},
"devDependencies": {
"bower": "^1.8.4",
"bower-npm-install": "^0.5.11",
"deep-extend": "^0.6.0",
"enb": ">=0.16.0 <2.0.0",
"eslint": "^5.8.0",
"eslint-config-pedant": "^1.0.1",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"mocha": "^5.2.0",
"mock-enb": "^0.3.6",
"mock-fs": "^4.7.0",
"must": "^0.13.4"
},
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "npm run fixtures && mocha",
"lint": "eslint . && jscs .",
"fixtures": "cd test && bower-npm-install",
"cover": "istanbul cover _mocha",
"coveralls": "npm i coveralls && npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
}
}