forked from OptimalBits/node_acl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 806 Bytes
/
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
{
"name": "acl",
"version": "0.4.7",
"description": "An Access Control List module, based on Redis with Express middleware support",
"keywords": [
"middleware",
"acl",
"web"
],
"repository": "git://github.com/optimalbits/node_acl.git",
"author": "Manuel Astudillo <[email protected]>",
"homepage": "https://github.com/optimalbits/node_acl",
"engines": {
"node": ">= 0.10"
},
"main": "./index.js",
"dependencies": {
"async": "~0.9.0",
"bluebird": "^2.3.11",
"lodash": "~2.4.1",
"mongodb": "^1.4.30",
"redis": ">=0.12.1"
},
"devDependencies": {
"mocha": "^2.0.1",
"chai": "~1.10.0"
},
"scripts": {
"test": "mocha test/runner.js --reporter spec",
"cover": "istanbul cover -- _mocha test/runner.js --reporter spec"
}
}