forked from TritonDataCenter/node-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
49
{
"name": "wf",
"description": "Tasks Workflows orchestration API and runners",
"version": "1.2.2",
"repository": {
"type": "git",
"url": "git://github.com/joyent/node-workflow.git"
},
"author": "Pedro Palazón Candel <[email protected]> (http://www.joyent.com)",
"license": "MIT",
"contributors": [
"Mark Cavage",
"Trent Mick",
"Josh Wilsdon",
"Bryan Cantrill",
"Andrés Rodríquez",
"Rob Gulewich",
"Fred Kuo"
],
"bin": {
"workflow-api": "./bin/workflow-api",
"workflow-runner": "./bin/workflow-runner"
},
"main": "lib/index.js",
"dependencies": {
"assert-plus": "1.0.0",
"backoff": "1.2.0",
"bunyan": "1.8.1",
"clone": "0.1.6",
"restify": "4.1.1",
"sigyan": "0.2.0",
"trace-event": "1.3.0",
"triton-metrics": "0.1.1",
"uuid": "3.0.1",
"vasync": "1.6.4"
},
"scripts": {
"test": "./node_modules/.bin/tap ./test/*.test.js"
},
"devDependencies": {
"tap": "~0.3"
},
"optionalDependencies": {
"dtrace-provider": "0.6.0"
},
"engines": {
"node": ">=0.10.0"
}
}