-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "@expo/spawn-async",
"version": "1.7.2",
"description": "A Promise-based interface into processes created by child_process.spawn",
"main": "./build/spawnAsync.js",
"types": "./build/spawnAsync.d.ts",
"files": [
"build",
"!build/**/__tests__"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf build",
"prepare": "yarn clean && yarn build",
"start": "tsc --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expo/spawn-async.git"
},
"keywords": [
"spawn",
"child_process",
"async",
"promise",
"process"
],
"author": "Expo",
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/spawn-async/issues"
},
"homepage": "https://github.com/expo/spawn-async#readme",
"jest": {
"preset": "ts-jest",
"rootDir": "src"
},
"dependencies": {
"cross-spawn": "^7.0.3"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
}
}