-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 878 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
{
"name": "casbin-jwt-express",
"version": "2.0.1",
"description": "An Express authorization middleware that handles stateless JWT Tokens and uses Casbin (https://casbin.org/) to valid access controle rules",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiagostutz/casbin-jwt-express.git"
},
"keywords": [
"casbin",
"security",
"access-control",
"authorization",
"acl",
"rbac",
"abac",
"express",
"jwt"
],
"author": "Tiago Stutz",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiagostutz/casbin-jwt-express/issues"
},
"homepage": "https://github.com/tiagostutz/casbin-jwt-express#readme",
"dependencies": {
"casbin": "^2.0.0",
"jsonwebtoken": "^8.4.0"
},
"devDependencies": {
"mocha": "^5.2.0"
}
}