forked from knpwrs/gulp-spawn-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 984 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": "3.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": "ken@kenpowers.net"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KenPowers/gulp-spawn-mocha/issues"
},
"homepage": "https://github.com/KenPowers/gulp-spawn-mocha",
"dependencies": {
"gulp-util": "~3.0.7",
"lodash": "^4.11.1",
"through": "~2.3.4"
},
"peerDependencies": {
"mocha": "^3.0.0",
"istanbul": "^0.4.3"
},
"devDependencies": {
"chai": "~3.5.0",
"coveralls": "^2.11.1",
"gulp": "^3.8.10",
"istanbul": "^0.4.3",
"mocha": "^3.0.0",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0"
},
"engines": {
"node": ">= 0.9.0"
}
}