forked from picatic/node-permission-architect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 KB
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
44
45
{
"name": "permission-architect",
"version": "0.2.0",
"description": "A framework to build highly customizable ACL like permissions with.",
"homepage": "https://github.com/picatic/node-permission-architect",
"bugs": "https://github.com/picatic/node-permission-architect/issues",
"repository": {
"type": "git",
"url": "git@github.com:picatic/node-permission-architect.git"
},
"keywords": [
"acl",
"access control",
"access list",
"access",
"authorization",
"role",
"roles",
"crud",
"feature-flag",
"option-flag",
"permission",
"permissions"
],
"main": "./lib/index.js",
"scripts": {
"test": "grunt travis"
},
"author": "Picatic E-Ticket Inc. <api@picatic.com> (https://www.picatic.com/)",
"contributors": [],
"license": "MIT",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-jasmine-node-coverage": "^0.1.11",
"grunt-jsdoc": "^0.6.1"
},
"dependencies": {
"underscore": "^1.7.0"
},
"engines": {
"node": ">=0.10.0"
}
}