-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.21 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
54
55
56
{
"name": "session-role-manager",
"version": "0.0.2",
"description": "A session based role mannger for node-casbin.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepack": "yarn test && yarn build",
"postpack": "rimraf lib",
"build": "rimraf lib && tsc",
"test": "jest"
},
"files": [
"examples",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/node-casbin/session-role-manager.git"
},
"keywords": [
"authorization",
"role-manager",
"node-casbin",
"typescript",
"casbin"
],
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/node-casbin/session-role-manager/issues"
},
"homepage": "http://casbin.org",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.2",
"casbin": "^5.0.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {}
}