-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
47 lines (47 loc) · 988 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
44
45
46
47
{
"name": "express-jwt-authz",
"version": "2.4.1",
"description": "Validate a JWTs scope to authorize access to an endpoint",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/express-jwt-authz.git"
},
"keywords": [
"express",
"jwt",
"authorization"
],
"author": "Damian Schenkelman",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/express-jwt-authz/issues"
},
"homepage": "https://github.com/auth0/express-jwt-authz#readme",
"devDependencies": {
"chai": "^4.2.0",
"husky": "^1.1.4",
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"node": ">=6"
},
"peerDependencies": {
"express": "^4.0.0",
"@types/express": "^4.0.0"
}
}