UNPKG

1.16 kBJSONView Raw
1{
2 "name": "@expo/spawn-async",
3 "version": "1.7.2",
4 "description": "A Promise-based interface into processes created by child_process.spawn",
5 "main": "./build/spawnAsync.js",
6 "types": "./build/spawnAsync.d.ts",
7 "files": [
8 "build",
9 "!build/**/__tests__"
10 ],
11 "engines": {
12 "node": ">=12"
13 },
14 "scripts": {
15 "build": "tsc",
16 "clean": "rm -rf build",
17 "prepare": "yarn clean && yarn build",
18 "start": "tsc --watch",
19 "test": "jest"
20 },
21 "repository": {
22 "type": "git",
23 "url": "git+https://github.com/expo/spawn-async.git"
24 },
25 "keywords": [
26 "spawn",
27 "child_process",
28 "async",
29 "promise",
30 "process"
31 ],
32 "author": "Expo",
33 "license": "MIT",
34 "bugs": {
35 "url": "https://github.com/expo/spawn-async/issues"
36 },
37 "homepage": "https://github.com/expo/spawn-async#readme",
38 "jest": {
39 "preset": "ts-jest",
40 "rootDir": "src"
41 },
42 "dependencies": {
43 "cross-spawn": "^7.0.3"
44 },
45 "devDependencies": {
46 "@types/cross-spawn": "^6.0.2",
47 "@types/jest": "^29.5.0",
48 "@types/node": "^18.15.3",
49 "jest": "^29.5.0",
50 "ts-jest": "^29.0.5",
51 "typescript": "^5.0.2"
52 }
53}