UNPKG

1.15 kBJSONView Raw
1{
2 "name": "@expo/spawn-async",
3 "version": "1.6.0",
4 "description": "A Promise-based interface into processes created by child_process.spawn",
5 "main": "index.js",
6 "types": "./build/spawnAsync.d.ts",
7 "files": [
8 "build"
9 ],
10 "engines": {
11 "node": ">=12"
12 },
13 "scripts": {
14 "build": "tsc",
15 "clean": "rm -rf build",
16 "prepare": "yarn clean && yarn build",
17 "start": "tsc --watch",
18 "test": "jest"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/expo/spawn-async.git"
23 },
24 "keywords": [
25 "spawn",
26 "child_process",
27 "async",
28 "promise",
29 "process"
30 ],
31 "author": "Expo",
32 "license": "MIT",
33 "bugs": {
34 "url": "https://github.com/expo/spawn-async/issues"
35 },
36 "homepage": "https://github.com/expo/spawn-async#readme",
37 "jest": {
38 "preset": "ts-jest",
39 "testEnvironment": "node",
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": "^27.4.0",
48 "@types/node": "^17.0.12",
49 "jest": "^27.4.7",
50 "ts-jest": "^27.1.3",
51 "typescript": "^4.5.5"
52 }
53}