forked from mapbox/dyno
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.05 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
45
46
47
48
49
50
51
52
{
"name": "dyno",
"version": "0.14.0",
"description": "Simple DynamoDB client",
"main": "index.js",
"scripts": {
"pretest": "jshint bin lib test && jscs bin lib test",
"test": "node test/index.js"
},
"bin": {
"dyno": "./bin/cli.js"
},
"author": "Mick Thompson <mick@mick.im>",
"license": "MIT",
"dependencies": {
"aws-sdk": "2.1.16",
"big.js": "^2.5.1",
"event-stream": "^3.1.5",
"minimist": "^1.1.0",
"queue-async": "~1.0.7",
"underscore": "1.6.0"
},
"devDependencies": {
"dynalite": "^0.7.1",
"jscs": "1.11.3",
"jshint": "^2.6.3",
"kinesalite": "^0.4.0",
"seedrandom": "^2.3.6",
"tape": "^3.5.0"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/dyno.git"
},
"bugs": {
"url": "https://github.com/mapbox/dyno/issues"
},
"keywords": [
"dynamodb"
],
"jscsConfig": {
"preset": "airbnb",
"validateIndentation": 4
},
"jshint": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
}
}