-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
47 lines (47 loc) · 982 Bytes
/
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
{
"name": "gulp-spawn-mocha",
"version": "6.0.0",
"description": "Runs Mocha as a child process.",
"main": "lib/index.js",
"scripts": {
"test": "gulp test"
},
"repository": "KenPowers/gulp-spawn-mocha",
"keywords": [
"gulpplugin",
"mocha",
"spawn",
"child",
"process"
],
"author": {
"name": "Kenneth Powers",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KenPowers/gulp-spawn-mocha/issues"
},
"homepage": "https://github.com/KenPowers/gulp-spawn-mocha",
"dependencies": {
"lodash": "^4.17.14",
"plugin-error": "^1.0.1",
"through": "~2.3.4"
},
"peerDependencies": {
"mocha": "^6.2.0",
"istanbul": "^0.4.3"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.6",
"gulp": "^4.0.2",
"istanbul": "^0.4.5",
"mocha": "^6.2.0",
"sinon": "~2.3.0",
"sinon-chai": "~2.13.0"
},
"engines": {
"node": ">= 4"
}
}