-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 1.64 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
{
"author": "Andrew Abramov <mail@blond.im>",
"description": "BH support for ENB",
"name": "enb-bh",
"version": "1.2.1",
"repository": "git://github.com/enb/enb-bh",
"homepage": "https://github.com/enb/enb-bh",
"bugs": "https://github.com/enb/enb-bh/issues",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-bh/blob/master/LICENSE.txt"
}
],
"contributors": [
{
"name": "Andrew Abramov",
"email": "mail@blond.im"
},
{
"name": "Marat Dulin",
"email": "mdevils@yandex.ru"
},
{
"name": "Mikhail Troshev",
"email": "mishanga@yandex-team.ru"
}
],
"engines": {
"node": ">= 0.10.0"
},
"peerDependencies": {
"enb": ">= 0.15.0 < 2.0.0"
},
"dependencies": {
"bh": "^4.1.0",
"browserify": "11.2.0",
"clear-require": "1.0.1",
"enb-async-require": "1.0.1",
"enb-require-or-eval": "1.0.2",
"enb-source-map": "1.8.0",
"vow": "0.4.12",
"vow-node": "0.3.0"
},
"devDependencies": {
"chai": "3.5.0",
"enb": ">= 0.15.0 < 2.0.0",
"mock-enb": "0.3.0",
"finalhandler": "0.4.1",
"istanbul": "0.4.2",
"jscs": "1.13.1",
"jshint": "2.9.1",
"mocha": "2.4.5",
"mocha-phantomjs": "3.5.6",
"mock-fs": "3.7.0",
"must": "0.13.1",
"phantomjs": "1.9.18",
"serve-static": "1.10.2",
"ym": "0.1.2"
},
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "jshint . && jscs .",
"unit": "mocha -R spec",
"cover": "istanbul cover _mocha",
"coveralls": "npm i coveralls && npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
}
}