-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
{
"name": "sails-role-permissions",
"version": "0.3.4",
"description": "A sails hook to manage role based permissions at controller/action/attribute(row) level",
"main": "lib/index.js",
"sails": {
"isHook": true
},
"scripts": {
"compile": "babel -d lib/ src/",
"pub" : "npm run compile && npm publish",
"test" : "npm run compile && mocha",
"123" : "npm run compile && mocha -w -g 123",
"w" : "npm run compile && mocha --watch"
},
"author": "l1br3",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/l1br3/sails-role-permissions.git"
},
"homepage": "https://github.com/l1br3/sails-role-permissions#readme",
"bugs": {
"url": "https://github.com/l1br3/sails-role-permissions/issues"
},
"keywords": [
"sails",
"permission",
"acl",
"role",
"hook",
"sails-permissions"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"sails": "^0.12.11",
"sails-mongo": "^0.12.2",
"sinon": "^1.17.7",
"supertest": "^2.0.1"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"lodash": "^4.17.4",
"pluralize": "^3.1.0"
}
}