forked from baseprime/dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 920 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 920 Bytes
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": "dynamodb",
"version": "1.1.1",
"contributors": [
"Ryan Fitzgerald <ryan@codebrewstudios.com>",
"Greg Sabia Tucker <greg@narrowlabs.com>"
],
"description": "DynamoDB data mapper for node.js",
"main": "index.js",
"scripts": {
"test": "make test",
"dynamodb-local": "./test/bin/dynamodb-local"
},
"repository": "git://github.com/baseprime/dynamodb.git",
"keywords": [
"datamapper",
"DynamoDB",
"aws",
"amazon",
"nosql"
],
"engines": {
"node": ">=0.10.30"
},
"license": "MIT",
"dependencies": {
"async": "1.5.x",
"aws-sdk": "^2.186.x",
"bunyan": "1.5.x",
"joi": "10.x.x",
"lodash": "4.x.x",
"node-uuid": "1.4.x"
},
"devDependencies": {
"chai": "1.x.x",
"istanbul": "^0.3.5",
"jscoverage": "^0.5.9",
"jshint": "2.x.x",
"jshint-stylish": "2.x.x",
"mocha": "2.x.x",
"sinon": "1.12.x"
}
}