forked from knpwrs/gulp-spawn-mocha
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.23 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
{
"name": "gulp-spawn-mocha-nyc",
"version": "2.0.0",
"description": "Runs Mocha as a child process, and use nyc as coverage tool.",
"main": "lib/index.js",
"scripts": {
"test": "gulp test"
},
"repository": "raccoon-lee/gulp-spawn-mocha",
"keywords": [
"gulpplugin",
"mocha",
"spawn",
"child",
"process",
"nyc"
],
"author": {
"name": "Kenneth Powers",
"email": "[email protected]"
},
"contributors": [
{
"name": "Raccoon Li",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/raccoon-lee/gulp-spawn-mocha-nyc/issues"
},
"homepage": "https://github.com/raccoon-lee/gulp-spawn-mocha-nyc",
"dependencies": {
"gulp-util": "~3.0.8",
"lodash": "^4.17.4",
"through": "~2.3.8"
},
"peerDependencies": {
"mocha": "^4.0.0",
"nyc": "^11.0.0"
},
"devDependencies": {
"chai": "~4.1.2",
"coveralls": "^3.0.0",
"eslint-config-hahow": "git+https://github.com/hahow/eslint-config-hahow.git#v4.0.0",
"gulp": "^4.0.2",
"mocha": "^4.0.1",
"nyc": "^14.1.1",
"prettier-eslint-cli": "^4.7.0",
"sinon": "~4.1.3",
"sinon-chai": "~2.14.0"
},
"engines": {
"node": ">= 8"
}
}