-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 996 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
38
39
40
41
42
43
44
45
46
{
"name": "workflo",
"description": "a schema-based framework, based on the AWS SWF SDK, for easily defining, registering, and executing your workflows",
"version": "0.0.2",
"homepage": "https://github.com/mmacmillan/workflo",
"author": {
"name": "Mike MacMillan",
"email": "[email protected]"
},
"main": "workflo.js",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git://github.com/mmacmillan/workflo.git"
},
"bugs": {
"url": "https://github.com/mmacmillan/workflo/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mmacmillan/workflo/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"lodash": "2.4.x",
"q": "1.1.x",
"aws-sdk": "2.1.x"
},
"devDependencies": {
"mocha": "2.1.x"
},
"keywords": [
"aws",
"simple workflow service",
"swf",
"aws sdk",
"workflows",
"aws swf"
]
}