-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "little-process-box",
"version": "0.2.3",
"description": "A little toolkit for running and managing child processes.",
"main": "index.js",
"scripts": {
"test": "nyc -x fixtures -x data -x tests tape tests/*.js",
"prepare": "npm run generate:names",
"generate:names": "node scripts/generate-names.js"
},
"keywords": [
"little",
"process",
"box",
"pool",
"manage"
],
"author": "Joseph Werle <joseph.werle@gmail.com>",
"license": "MIT",
"dependencies": {
"async-exit-hook": "^2.0.1",
"batch": "^0.6.1",
"debug": "^4.1.1",
"mutexify": "^1.2.0",
"nanoassert": "^2.0.0",
"nanoprocess": "^0.8.4",
"nanoresource-pool": "^0.3.1",
"open": "^7.0.0",
"pump": "^3.0.0",
"simple-message-channels": "^1.2.1",
"through2": "^3.0.1"
},
"devDependencies": {
"chance": "^1.1.3",
"nyc": "^14.1.1",
"tape": "^4.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/little-core-labs/little-process-box.git"
},
"bugs": {
"url": "https://github.com/little-core-labs/little-process-box/issues"
},
"homepage": "https://github.com/little-core-labs/little-process-box#readme"
}