-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 879 Bytes
/
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
{
"name": "workers-pool",
"version": "1.1.6",
"description": "Thread pool design pattern for nodejs thread workers",
"main": "./dist/Pool.js",
"type": "commonjs",
"types": "./dist/pool.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"prepublish": "git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohasarc/workers-pool.git"
},
"keywords": [
"npm",
"workers-pool",
"thread-pool",
"worker-threads"
],
"sideEffects": false,
"author": "Mohammed S. Yaseen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohasarc/workers-pool/issues"
},
"homepage": "https://github.com/mohasarc/workers-pool#readme",
"devDependencies": {
"jest": "^26.6.3",
"ts-node": "^10.1.0"
},
"dependencies": {
"get-caller-file": "^2.0.5"
}
}