1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "worker-farm",
|
3 |
|
|
"description": "Distribute processing tasks to child processes with an über-simple API and baked-in durability & custom concurrency options.",
|
4 |
|
|
"version": "1.7.0",
|
5 |
|
|
"homepage": "https://github.com/rvagg/node-worker-farm",
|
6 |
|
|
"authors": [
|
7 |
|
|
"Rod Vagg @rvagg <rod@vagg.org> (https://github.com/rvagg)"
|
8 |
|
|
],
|
9 |
|
|
"keywords": [
|
10 |
|
|
"worker",
|
11 |
|
|
"child",
|
12 |
|
|
"processing",
|
13 |
|
|
"farm"
|
14 |
|
|
],
|
15 |
|
|
"main": "./lib/index.js",
|
16 |
|
|
"repository": {
|
17 |
|
|
"type": "git",
|
18 |
|
|
"url": "https://github.com/rvagg/node-worker-farm.git"
|
19 |
|
|
},
|
20 |
|
|
"dependencies": {
|
21 |
|
|
"errno": "~0.1.7"
|
22 |
|
|
},
|
23 |
|
|
"devDependencies": {
|
24 |
|
|
"tape": "~4.10.1"
|
25 |
|
|
},
|
26 |
|
|
"scripts": {
|
27 |
|
|
"test": "node ./tests/"
|
28 |
|
|
},
|
29 |
|
|
"types": "./index.d.ts",
|
30 |
|
|
"license": "MIT"
|
31 |
|
|
}
|