forked from hahow/gulp-spawn-mocha-nyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "1.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": {
"lodash": "^4.17.4",
"plugin-error": "^1.0.1",
"through": "~2.3.8"
},
"peerDependencies": {
"mocha": "^5.2.0",
"nyc": "^13.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint-config-hahow": "git+https://github.com/hahow/eslint-config-hahow.git#v4.0.0",
"gulp": "^3.9.1",
"mocha": "^5.0.0",
"nyc": "^13.1.0",
"prettier-eslint-cli": "^4.7.0",
"sinon": "^7.0.0",
"sinon-chai": "^3.2.0"
},
"engines": {
"node": ">= 8"
}
}