-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.12 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
{
"author": "Andrew Abramov <[email protected]>",
"description": "Mocks for ENB",
"name": "mock-enb",
"version": "0.3.6",
"repository": "git://github.com/enb/mock-enb",
"homepage": "https://github.com/enb/mock-enb",
"bugs": "https://github.com/enb/mock-enb/issues",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/mock-enb/blob/master/LICENSE.txt"
}
],
"contributors": [
{
"name": "Andrew Abramov",
"email": "[email protected]"
},
{
"name": "Marat Dulin",
"email": "[email protected]"
}
],
"engines": {
"node": ">= 0.10.0"
},
"peerDependencies": {
"enb": ">= 0.16.0 < 2.0.0"
},
"dependencies": {
"file-eval": "1.1.0",
"inherit": "2.2.6",
"vow": "0.4.12"
},
"devDependencies": {
"chai": "3.5.0",
"enb": ">= 0.16.0 < 2.0.0",
"jscs": "3.0.7",
"jshint": "2.9.3",
"mocha": "3.1.2",
"mock-fs": "3.11.0"
},
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "jshint . && jscs -c .jscs.js .",
"unit": "mocha --recursive test/",
"cover": " ",
"coveralls": " "
}
}