forked from OptimalBits/node_acl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 900 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 900 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
{
"name": "node_acl",
"version": "1.0.0",
"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 <manuel@optimalbits.com>",
"homepage": "https://github.com/optimalbits/node_acl",
"engines": {
"node": ">= 0.10"
},
"main": "./index.js",
"dependencies": {
"async": "~3.2.0",
"bluebird": "~3.7.2",
"lodash": "~4.17.20",
"mongodb": "~3.6.3",
"redis": "~3.0.2"
},
"devDependencies": {
"mocha": "~8.2.1",
"chai": "~4.2.0"
},
"scripts": {
"test": "mocha --exit test/runner.js --reporter min",
"cover": "istanbul cover -- _mocha test/runner.js --reporter spec"
}
}