forked from robrich/orchestrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 837 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
{
"name": "orchestrator",
"description": "A module for sequencing and executing tasks and dependencies in maximum concurrency",
"version": "0.3.3",
"homepage": "https://github.com/robrich/orchestrator",
"repository": "git://github.com/robrich/orchestrator.git",
"author": "Rob Richardson (http://robrich.org/)",
"main": "./index.js",
"keywords": [
"async",
"task",
"parallel",
"compose"
],
"dependencies": {
"sequencify": "~0.0.7"
},
"devDependencies": {
"mocha": "~1.17.0",
"should": "~2.1.1",
"q": "~1.0.0",
"event-stream": "~3.1.0",
"map-stream": "~0.1.0"
},
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">= 0.8"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/robrich/orchestrator/raw/master/LICENSE"
}
]
}