-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.11 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "admittance",
"version": "5.0.2",
"description": "A Simple role based access control implementation for node",
"main": "admittance.js",
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec test/**/*",
"jshint": "node_modules/.bin/jshint .",
"istanbul": "./scripts/istanbul.sh",
"coveralls": "./scripts/coveralls.sh",
"example": "node example/example.js",
"check": "npm run jshint && npm run istanbul"
},
"repository": {
"type": "git",
"url": "[email protected]:digitalsadhu/admittance.git"
},
"keywords": [
"rbac",
"access control",
"authentication",
"roles",
"permissions",
"auth"
],
"bugs": "https://github.com/digitalsadhu/admittance/issues",
"contributors": [],
"homepage": "https://github.com/digitalsadhu/admittance",
"dependencies": {},
"engines": {
"node": ">=0.6"
},
"author": "Richard Walker <[email protected]>",
"license": "MIT",
"devDependencies": {
"mocha": "1.12.0",
"chai": "1.7.2",
"jshint": "~2.4.4",
"istanbul": "~0.2.6",
"coveralls": "~2.8.0",
"rewire": "~2.0.0"
}
}