-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.13 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.13 KB
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
{
"name": "spawn-mocha-parallel",
"version": "1.3.1",
"description": "Spawn mocha child processes in parallel.",
"main": "index.js",
"scripts": {
"test": "gulp test",
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git://github.com/sebv/spawn-mocha-parallel.git"
},
"keywords": [
"mocha",
"spawn",
"process",
"parallel",
"gulp"
],
"author": {
"name": "seb vincent",
"email": "sebv@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sebv/spawn-mocha-parallel/issues"
},
"homepage": "https://github.com/sebv/spawn-mocha-parallel",
"dependencies": {
"async": "^2.0.0",
"colors": "^1.0.3",
"lodash": "^4.0.0",
"mocha": "^6.0.0",
"split": "^1.0.0",
"stream-buffers": "^3.0.0",
"through": "^2.3.6"
},
"devDependencies": {
"fixture-stdout": "^0.2.1",
"from": "^0.1.3",
"gulp": "^4.0.0",
"husky": "^2.0.0",
"vinyl": "^2.0.0"
},
"engines": {
"node": ">= 0.9.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}