forked from mickhansen/ssacl-attribute-roles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1009 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
34
35
36
37
38
39
{
"name": "ssacl-attribute-roles",
"version": "1.0.0",
"description": "Simple attribute whitelisting/blacklisting with roles for Sequelize",
"main": "lib/index.js",
"scripts": {
"test": " ./node_modules/.bin/jshint lib/ test/ && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/mickhansen/ssacl-attribute"
},
"keywords": [
"sequelize",
"acl",
"roles",
"attributes",
"scoping",
"context",
"whitelisting"
],
"author": "Mick Hansen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mickhansen/ssacl-attribute-roles/issues"
},
"homepage": "https://github.com/mickhansen/ssacl-attribute-roles",
"devDependencies": {
"expect.js": "^0.3.1",
"istanbul": "^0.3.7",
"jshint": "^2.6.3",
"mocha": "^2.2.1",
"sequelize": "^4.14.0",
"sqlite3": "^3.0.5"
},
"peerDependencies": {
"sequelize": "4.x"
}
}