-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (46 loc) · 1.28 KB
/
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
46
47
48
{
"name" : "execution-pool",
"version": "0.1.6",
"description" : "An execution pool that allows to queue asynch functions and control how many promises wait in parallel",
"homepage" : "https://github.com/fmsf/node-execution-pool",
"author" : {
"name" : "Francisco M.S. Ferreira",
"email" : "[email protected]",
"url" : "https://www.twitter.com/fmsf303"
},
"bugs" : "https://github.com/fmsf/node-execution-pool/issues",
"dependencies" : {
"q" : "~1.0.1"
},
"devDependencies" : {
"sinon": "~1.9.1",
"chai": "~1.9.2",
"mocha": "~2.0.1"
},
"engines": {
"node": ">=0.6.0"
},
"keywords" : [
"promise",
"promises",
"thread",
"thread pool",
"execution pool",
"task pool",
"queue",
"message queue",
"throttling",
"task throttling"],
"license" : {
"type": "MIT",
"url": "https://github.com/fmsf/node-execution-pool/blob/master/README.md"
},
"main" : "src/execution-pool.js",
"repository": {
"type": "git",
"url": "[email protected]:fmsf/node-execution-pool.git"
},
"scripts" : {
"test" : "mocha --recursive --harmony"
}
}