-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "@jjavery/worker-pool",
"version": "0.8.0",
"description": "A worker pool for Node.js applications",
"keywords": [
"worker pool",
"process pool",
"child_process",
"workerpool"
],
"homepage": "https://github.com/jjavery/worker-pool#readme",
"bugs": "https://github.com/jjavery/worker-pool/issues",
"license": "MIT",
"author": "James P. Javery <[email protected]> (https://github.com/jjavery)",
"repository": "jjavery/worker-pool",
"files": [
"dist"
],
"main": "dist/worker-pool.js",
"types": "dist/worker-pool.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha",
"coverage": "nyc mocha",
"docs": "jsdoc2md --template README.template.hbs.md --plugin @jjavery/dmd-jjavery --files src/*.js > README.md",
"prepublish": "npm run build"
},
"devDependencies": {
"@jjavery/dmd-jjavery": "^0.1.0",
"@tsconfig/node12": "^1.0.9",
"@types/chai": "^4.3.0",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"chai": "^4.3.6",
"jsdoc-to-markdown": "^7.1.1",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"debug": "^4.3.3",
"serialize-error": "^8.1.0"
},
"engines": {
"node": ">=12.0.0"
}
}