forked from TritonDataCenter/node-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 KB
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
{
"name": "wf",
"description": "Tasks Workflows orchestration API and runners",
"version": "0.8.2",
"repository": {
"type": "git",
"url": "git://github.com/kusor/node-workflow.git"
},
"author": "Pedro Palazón Candel <kusorbox@gmail.com> (http://www.joyent.com)",
"contributors": [
"Mark Cavage",
"Trent Mick",
"Josh Wilsdon",
"Bryan Cantrill",
"Andrés Rodríquez",
"Rob Gulewich"
],
"bin": {
"workflow-api": "./bin/workflow-api",
"workflow-runner": "./bin/workflow-runner"
},
"main": "lib/index.js",
"dependencies": {
"node-uuid": "1.4.0",
"bunyan": "0.20.0",
"vasync": "1.3.3",
"backoff": "1.2.0",
"clone": "0.1.6",
"restify": "2.3.5",
"sigyan": "0.2.0"
},
"scripts": {
"test": "./node_modules/.bin/tap ./test/*.test.js"
},
"devDependencies": {
"tap": "~0.3"
},
"optionalDependencies": {
"dtrace-provider": "0.2.8"
},
"engines": {
"node": ">=0.8"
}
}