-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
45 lines (45 loc) · 979 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
39
40
41
42
43
44
45
{
"name": "worker-threads-pool",
"version": "2.0.0",
"description": "Easily manage a pool of Node.js Worker Threads",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"after-all": "^2.0.2"
},
"devDependencies": {
"standard": "^11.0.1",
"tape": "^4.9.1"
},
"scripts": {
"test": "standard && node --experimental-worker test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/watson/worker-threads-pool.git"
},
"engines": {
"node": ">=10.5.0"
},
"keywords": [
"pool",
"worker",
"workers",
"thread",
"threads",
"worker_threads",
"parallel"
],
"author": "Thomas Watson <[email protected]> (https://twitter.com/wa7son)",
"license": "MIT",
"bugs": {
"url": "https://github.com/watson/worker-threads-pool/issues"
},
"homepage": "https://github.com/watson/worker-threads-pool#readme",
"coordinates": [
55.777628,
12.590195
]
}