-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1023 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": "query-swarm",
"version": "0.3.0",
"description": "Safely distribute query-driven tasks over a swarm of parallel functions on a single process or across multiple processes/machines.",
"keywords": "schedule, queue, task, job, worker, redis, distributed, async",
"author": "Mike Marcacci <[email protected]>",
"contributors": [
{
"name": "Mike Marcacci",
"email": "[email protected]"
}
],
"main": "lib/QuerySwarm.js",
"homepage": "https://github.com/the-control-group/query-swarm",
"repository": {
"type": "git",
"url": "https://github.com/the-control-group/query-swarm.git"
},
"bugs": {
"url": "https://github.com/the-control-group/query-swarm/issues"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/*"
},
"license": "MIT",
"dependencies": {
"async": "^1.4.2",
"redis": "^0.12.1",
"redlock": "^1.0.1"
},
"devDependencies": {
"chai": "^3.0.0",
"mocha": "^2.0.1"
}
}