forked from blakeembrey/co-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.46 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
{
"name": "co-mocha",
"version": "1.2.2",
"description": "Enable support for generators in Mocha tests",
"main": "lib/co-mocha.js",
"files": [
"co-mocha.js",
"lib/",
"LICENSE"
],
"scripts": {
"lint": "standard",
"build": "browserify lib/co-mocha.js -s co-mocha -o co-mocha.js",
"test-spec": "mocha --harmony -R spec --require lib/co-mocha.js --bail",
"test-cov": "testem ci -l Firefox,Node",
"test": "mocha -V && npm run lint && npm run build && npm run test-cov"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/co-mocha.git"
},
"keywords": [
"co",
"mocha",
"harmony",
"generators"
],
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blakeembrey/co-mocha/issues"
},
"homepage": "https://github.com/blakeembrey/co-mocha",
"devDependencies": {
"browserify": "^14.0.0",
"chai": "^4.0.1",
"es6-promise": "^4.0.5",
"istanbul": "^1.1.0-alpha.1",
"mocha": "*",
"regenerator": "^0.10.0",
"standard": "^10.0.0",
"testem": "^1.13.0",
"traceur": "0.0.111"
},
"standard": {
"ignore": [
"coverage/**",
"node_modules/**",
"bower_components/**",
"co-mocha.js"
]
},
"dependencies": {
"co": "^4.0.0",
"is-generator": "^1.0.1"
},
"peerDependencies": {
"mocha": ">=1.18 <6"
}
}