-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
43 lines (43 loc) · 858 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
{
"name": "aws-swf",
"version": "4.1.0",
"description": "A Node.js library for accessing Amazon SWF",
"author": "Eric Abouaf <[email protected]>",
"engines": {
"node": ">=0.8.0"
},
"keywords": [
"amazon",
"aws",
"swf",
"workflow"
],
"main": "index.js",
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "http://github.com/neyric/aws-swf.git"
},
"dependencies": {
"async": "^2.1.2",
"aws-sdk": "^2.2.22",
"lodash": "^3.10.1"
},
"devDependencies": {
"coveralls": "~2.8.0",
"mocha": "~1.17.1",
"mocha-lcov-reporter": "0.0.1"
},
"scripts": {
"test": "mocha",
"doc": "jsdoc lib/*.js README.md -d apidoc"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/neyric/aws-swf/master/LICENSE.txt"
}
]
}