forked from mapbox/dyno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "dyno",
"version": "1.1.0",
"description": "Simple DynamoDB client",
"main": "index.js",
"scripts": {
"pretest": "eslint bin lib test index.js",
"test": "nyc tape test/*.test.js",
"docs": "documentation index.js -f md > API.md",
"coverage": "nyc --reporter=html tape test/*.test.js && open coverage/index.html"
},
"bin": {
"dyno": "./bin/cli.js"
},
"author": "Mick Thompson <mick@mick.im>",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.2.18",
"big.js": "^3.1.3",
"event-stream": "^3.3.2",
"minimist": "^1.1.0",
"parallel-stream": "^1.1.2",
"queue-async": "~1.0.7",
"underscore": "1.6.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"documentation": "^3.0.0",
"dynamodb-test": "^0.2.2",
"eslint": "^1.4.1",
"nyc": "^3.2.2",
"tape": "^4.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/dyno.git"
},
"bugs": {
"url": "https://github.com/mapbox/dyno/issues"
},
"keywords": [
"dynamodb"
]
}