-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "express-jwt-permissions",
"version": "1.3.7",
"description": "Express middleware for JWT permissions",
"main": "./index.js",
"typings": "index.d.ts",
"scripts": {
"lint": "standard",
"test": "npm run lint && tap test/*.js --100 --coverage-report=lcovonly"
},
"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 <[email protected]> (https://demey.io)",
"contributors": [
{
"name": "Gilles De Mey",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.14",
"standard": "^17.0.0",
"tap": "^16.3.0"
},
"dependencies": {
"express-unless": "^2.0.0",
"lodash.get": "^4.4.2"
},
"engines": {
"node": ">=0.10"
}
}