-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 840 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 840 Bytes
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
{
"name": "node-squad",
"version": "0.3.1",
"description": "Run N functions in parallel, and wait for all of them to be finished before starting another batch",
"author": {
"name": "Fabien Allanic",
"email": "fabien.allanic@gmail.com"
},
"dependencies": {
"q": "2.0.x"
},
"repository": {
"type": "git",
"url": "git://github.com/fallanic/node-squad.git"
},
"bugs": {
"url": "https://github.com/fallanic/node-squad/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/fallanic/node-squad/blob/master/MIT-LICENSE.md"
}
],
"main": "lib/node-squad",
"keywords": [
"node",
"squad",
"batch",
"workers",
"parallel",
"execution",
"execute",
"q",
"wait",
"synchronize",
"throttle"
],
"engine": "node >= 0.4.1"
}