forked from FGRibreau/node-children
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 866 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
{
"name": "children",
"version": "0.0.3",
"description": "Concurrent tasks computation among nodejs child processes",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/nodeunit ./test",
"doc": "./node_modules/doxx/bin/doxx --template docs/template.jade --source lib --target docs"
},
"repository": {
"type": "git",
"url": "git://github.com/FGRibreau/node-children.git"
},
"keywords": [
"process",
"workers"
],
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com)",
"license": "MIT",
"devDependencies": {
"grunt-shell": "~0.2.0",
"nodeunit": "~0.7.4",
"grunt": "~0.3.17"
},
"dependencies": {
"lodash": "~1.0.0",
"async": "~0.2.5",
"q": "~0.8.12",
"eventemitter2": "~0.4.11",
"doxx": "~0.5.9"
}
}