-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.22 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
57
58
59
60
61
62
63
64
65
66
{
"name": "nano-spawn",
"version": "0.2.0",
"description": "Tiny process execution for humans — a better child_process",
"license": "MIT",
"repository": "sindresorhus/nano-spawn",
"funding": "https://github.com/sindresorhus/nano-spawn?sponsor=1",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./source/index.d.ts",
"default": "./source/index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18.19"
},
"scripts": {
"test": "xo && c8 ava && npm run type",
"type": "tsd -t ./source/index.d.ts -f ./source/index.test-d.ts"
},
"files": [
"source/**/*.js",
"source/**/*.d.ts"
],
"keywords": [
"spawn",
"exec",
"child",
"process",
"subprocess",
"execute",
"fork",
"execfile",
"file",
"shell",
"bin",
"binary",
"binaries",
"npm",
"path",
"local",
"zx",
"execa"
],
"devDependencies": {
"@types/node": "^22.5.4",
"ava": "^6.1.3",
"c8": "^10.1.2",
"get-node": "^15.0.1",
"path-key": "^4.0.0",
"tempy": "^3.1.0",
"tsd": "^0.31.2",
"typescript": "^5.5.4",
"xo": "^0.59.3",
"yoctocolors": "^2.1.1"
},
"ava": {
"concurrency": 1,
"timeout": "240s"
}
}