forked from OptimalBits/node_acl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 822 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
33
{
"name": "acl",
"version": "0.4.5",
"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.4.1"
},
"main": "./index.js",
"dependencies": {
"async": "~0.2.9",
"bluebird": "^2.2.2",
"lodash": "~2.4.1",
"mocha": "^1.21.3",
"mongodb": "*",
"redis": ">= 0.7.1"
},
"devDependencies": {
"mocha": "~1.12",
"chai": "~1.7.2"
},
"scripts": {
"test": "mocha test/runner.js --reporter spec",
"cover": "istanbul cover -- _mocha test/runner.js --reporter spec"
}
}