forked from MichielDeMey/express-jwt-permissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 962 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
40
41
42
43
{
"name": "express-jwt-permissions",
"version": "0.4.0",
"description": "Express middleware for JWT permissions",
"main": "./index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && tap test/*.js --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/MichielDeMey/express-jwt-permissions.git"
},
"bugs": "https://github.com/MichielDeMey/express-jwt-permissions/issues",
"keywords": [
"express",
"middleware",
"JWT",
"permissions",
"authorization",
"token",
"security"
],
"author": "Michiel De Mey <de.mey.michiel@gmail.com> (http://demey.io)",
"contributors": [
{
"name": "Gilles De Mey",
"email": "gilles.de.mey@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"standard": "^7.1.2",
"tap": "^8.0.0"
},
"dependencies": {
"lodash.get": "^4.4.2",
"xtend": "^4.0.1"
},
"engines": {
"node": ">=0.10"
}
}