-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
51 lines (51 loc) · 1.19 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
45
46
47
48
49
50
51
{
"name": "npdynamodb",
"version": "0.2.15",
"description": "A Node.js Simple Query Builder and ORM for AWS DynamoDB.",
"main": "index.js",
"scripts": {
"test": "find ./test -name *_spec.js | xargs mocha --reporter spec -t 20000"
},
"keywords": [
"dynamodb",
"aws",
"activerecord",
"orm",
"migration"
],
"bin": {
"npd": "./lib/bin/npd"
},
"repository": {
"type": "git",
"url": "https://github.com/noppoMan/npdynamodb.git"
},
"author": "noppoMan <[email protected]> (http://miketokyo.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/noppoMan/npdynamodb/issues"
},
"homepage": "https://github.com/noppoMan/npdynamodb",
"dependencies": {
"bluebird": "^2.9.24",
"chalk": "^1.0.0",
"commander": "^2.7.1",
"dynamodb-doc": "^1.0.0",
"glob": "^5.0.3",
"interpret": "^0.5.2",
"liftoff": "^2.0.3",
"lodash": "^3.5.0",
"minimist": "^1.1.1",
"readline": "0.0.7",
"v8flags": "^2.0.3"
},
"devDependencies": {
"aws-sdk": "^2.1.18",
"chai": "^2.2.0"
},
"browser": {
"./lib/migrate/migrator.js": false,
"./lib/dialects/2012-08-10/schema.js": false,
"aws-sdk": false
}
}