-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.45 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
{
"author": "Andrew Abramov <andrewblond@yandex.com>",
"description": "JS techs for ENB",
"name": "enb-js",
"version": "1.1.1",
"repository": "git://github.com/enb/enb-js",
"homepage": "https://github.com/enb/enb-js",
"bugs": "https://github.com/enb/enb-js/issues",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb-bem/enb-js/blob/master/LICENSE.txt"
}
],
"contributors": [
{
"name": "Andrew Abramov",
"email": "andrewblond@yandex.com"
},
{
"name": "Andrew Kuznetsov",
"email": "andrey.kuznetsov48@yandex.ru"
}
],
"engines": {
"node": ">= 0.8.0"
},
"peerDependencies": {
"enb": ">= 0.15.0 <2.0.0"
},
"dependencies": {
"browserify": "14.3.0",
"enb-source-map": "1.10.0",
"uglify-js": "2.8.22",
"vow": "0.4.15",
"vow-node": "0.3.0",
"ym": "0.1.2"
},
"devDependencies": {
"chai": "3.2.0",
"chai-as-promised": "5.1.0",
"chai-string": "1.1.2",
"enb": ">= 0.15.0 <2.0.0",
"istanbul": "0.3.20",
"jscs": "1.13.1",
"jshint": "2.8.0",
"mocha": "2.3.2",
"mock-enb": "0.3.0",
"mock-fs": "3.2.0",
"rimraf": "2.4.3"
},
"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"
}
}