-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "enb-borschik",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git://github.com/enb/enb-borschik.git"
},
"author": "Marat Dulin",
"bugs": {
"url": "https://github.com/enb/enb-borschik/issues"
},
"homepage": "https://github.com/enb/enb-borschik",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-borschik/blob/master/LICENSE.txt"
}
],
"main": "index.js",
"peerDependencies": {
"enb": ">= 0.16.0 < 2.0.0"
},
"dependencies": {
"borschik": "2.0.0",
"inherit": "2.2.6",
"vow": "0.4.16"
},
"devDependencies": {
"borschik-tech-cleancss": "2.1.0",
"bower": "1.8.0",
"enb": ">= 0.16.0 < 2.0.0",
"fs-extra": "0.26.6",
"istanbul": "0.4.5",
"jscs": "2.11.0",
"jshint": "2.9.5",
"mocha": "3.4.2",
"mock-enb": "0.3.6",
"mock-require": "2.0.2",
"must": "0.13.4"
},
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "jshint . && jscs -c .jscs.js .",
"unit": "mocha -R spec",
"cover": "istanbul cover _mocha",
"coveralls": "npm i coveralls && npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
}
}