-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 926 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 926 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
{
"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": "^2.1.1",
"lodash": "^4.5.1"
},
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^3.8.0",
"esprima-fb": "^15001.1001.0-dev-harmony-fb",
"mocha": "^3.1.2"
},
"scripts": {
"pretest": "eslint lib/dynamodb-backend.js test/runner.js",
"test": "mocha test/runner.js --reporter spec",
"cover": "istanbul cover -- _mocha test/runner.js --reporter spec"
}
}