-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.01 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
{
"name": "chastifol",
"version": "4.1.0",
"description": "Spawns commands in child processes in parallel and reechoes their output.",
"bin": "./bin/chastifol",
"main": "./lib/chastifol",
"scripts": {
"lint": "eslint lib",
"test": "ava --timeout=30s"
},
"directories": {
"lib": "./lib"
},
"keywords": [
"spawn",
"child_process",
"exec",
"parallel",
"simultaneous",
"process",
"execute",
"shell"
],
"author": "Sean Genabe <seangenabe@outlook.com>",
"repository": "seangenabe/chastifol",
"license": "MIT",
"engines": {
"node": ">=6"
},
"dependencies": {
"chalk": "^1.0.0",
"command-join": "^2.0.0",
"debug": "^2.2.0",
"split": "^1.0.0",
"subarg": "^1.0.0",
"unparse-args": "^1.0.1"
},
"devDependencies": {
"ava": "^0.19.0",
"concat-stream": "^1.5.0",
"eslint": "^4.1.0",
"eslint-config-mirage": "^5.0.0"
},
"ava": {
"files": [
"test/*.test.js"
],
"source": [
"lib/*.test.js"
]
}
}