forked from cfware/process-on-spawn
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 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
{
"name": "process-on-spawn",
"version": "1.0.0",
"description": "Execute callbacks when child processes are spawned",
"scripts": {
"release": "standard-version --sign",
"pretest": "xo",
"tests-only": "c8 --no-check-coverage -r none tape test/test.js | tap-min",
"test": "npm run -s tests-only",
"posttest": "if-ver -ge 10 || exit 0; c8 report"
},
"engines": {
"node": ">=8"
},
"author": "Corey Farrell",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/process-on-spawn.git"
},
"bugs": {
"url": "https://github.com/cfware/process-on-spawn/issues"
},
"homepage": "https://github.com/cfware/process-on-spawn#readme",
"xo": {
"rules": {
"capitalized-comments": 0
}
},
"dependencies": {
"fromentries": "^1.2.0"
},
"devDependencies": {
"@types/node": "^20.1.3",
"c8": "^7.0.0",
"if-ver": "^1.1.0",
"standard-version": "^8.0.0",
"tap-min": "^2.0.0",
"tape": "^5.0.0",
"xo": "^0.25.3"
}
}