package.json
 1  {
 2  	"name": "execa",
 3  	"version": "4.1.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  	"engines": {
14  		"node": ">=10"
15  	},
16  	"scripts": {
17  		"test": "xo && nyc ava && tsd"
18  	},
19  	"files": [
20  		"index.js",
21  		"index.d.ts",
22  		"lib"
23  	],
24  	"keywords": [
25  		"exec",
26  		"child",
27  		"process",
28  		"execute",
29  		"fork",
30  		"execfile",
31  		"spawn",
32  		"file",
33  		"shell",
34  		"bin",
35  		"binary",
36  		"binaries",
37  		"npm",
38  		"path",
39  		"local"
40  	],
41  	"dependencies": {
42  		"cross-spawn": "^7.0.0",
43  		"get-stream": "^5.0.0",
44  		"human-signals": "^1.1.1",
45  		"is-stream": "^2.0.0",
46  		"merge-stream": "^2.0.0",
47  		"npm-run-path": "^4.0.0",
48  		"onetime": "^5.1.0",
49  		"signal-exit": "^3.0.2",
50  		"strip-final-newline": "^2.0.0"
51  	},
52  	"devDependencies": {
53  		"@types/node": "^12.12.18",
54  		"ava": "^2.1.0",
55  		"coveralls": "^3.0.9",
56  		"get-node": "^6.6.0",
57  		"is-running": "^2.1.0",
58  		"nyc": "^14.1.1",
59  		"p-event": "^4.1.0",
60  		"tempfile": "^3.0.0",
61  		"tsd": "^0.11.0",
62  		"xo": "^0.25.3"
63  	},
64  	"nyc": {
65  		"exclude": [
66  			"**/fixtures/**",
67  			"**/test.js",
68  			"**/test/**"
69  		]
70  	}
71  }