UNPKG

1.35 kBJSONView Raw
1{
2 "name": "execa",
3 "version": "6.0.0",
4 "description": "Process execution for humans",
5 "license": "MIT",
6 "repository": "sindresorhus/execa",
7 "funding": "https://github.com/sindresorhus/execa?sponsor=1",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": "./index.js",
15 "engines": {
16 "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
17 },
18 "scripts": {
19 "test": "xo && c8 ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts",
24 "lib"
25 ],
26 "keywords": [
27 "exec",
28 "child",
29 "process",
30 "execute",
31 "fork",
32 "execfile",
33 "spawn",
34 "file",
35 "shell",
36 "bin",
37 "binary",
38 "binaries",
39 "npm",
40 "path",
41 "local"
42 ],
43 "dependencies": {
44 "cross-spawn": "^7.0.3",
45 "get-stream": "^6.0.1",
46 "human-signals": "^3.0.1",
47 "is-stream": "^3.0.0",
48 "merge-stream": "^2.0.0",
49 "npm-run-path": "^5.0.1",
50 "onetime": "^6.0.0",
51 "signal-exit": "^3.0.5",
52 "strip-final-newline": "^3.0.0"
53 },
54 "devDependencies": {
55 "@types/node": "^16.11.7",
56 "ava": "^3.15.0",
57 "c8": "^7.10.0",
58 "get-node": "^12.0.0",
59 "is-running": "^2.1.0",
60 "p-event": "^5.0.1",
61 "tempfile": "^4.0.0",
62 "tsd": "^0.18.0",
63 "xo": "^0.46.4"
64 },
65 "c8": {
66 "reporter": [
67 "text",
68 "lcov"
69 ],
70 "exclude": [
71 "**/fixtures/**",
72 "**/test.js",
73 "**/test/**"
74 ]
75 }
76}