forked from nikordaris/node_acl_dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 788 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 788 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
{
"name": "acl-dynamodb",
"version": "0.1.0",
"description": "DynamoDB backend for acl",
"keywords": [
"middleware",
"acl",
"web",
"dynamodb",
"aws-sdk"
],
"repository": "git://github.com/nharris85/node_acl_dynamodb.git",
"author": "Nick Harris <nharris85@gmail.com>",
"homepage": "https://github.com/nharris85/node_acl_dynamodb",
"engines": {
"node": ">= 0.10"
},
"main": "./index.js",
"dependencies": {
"acl": "^0.4.8",
"aqb": "^2.1.0",
"aws-sdk": "^2.2.28",
"async": "^1.5.0",
"lodash": "^4.5.1"
},
"devDependencies": {
"mocha": "^2.3.3",
"chai": "^3.4.0"
},
"scripts": {
"test": "mocha test/runner.js --reporter spec",
"cover": "istanbul cover -- _mocha test/runner.js --reporter spec"
}
}