-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 834 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 834 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
{
"name": "node-authority",
"version": "0.1.2",
"description": "node access control module",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/index.test.js",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/index.test.js"
},
"repository": {
"type": "git",
"url": "git@github.com:libotony/node-authority.git"
},
"keywords": [
"access",
"control",
"permission",
"authority"
],
"author": "tony.li",
"license": "MIT",
"dependencies": {
"async": "^1.5.0",
"debug": "^2.2.0",
"mysql": "^2.9.0"
},
"devDependencies": {
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"express": "^4.14.0",
"express-session": "^1.14.0",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"supertest": "^1.2.0"
}
}