forked from auth0/express-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 934 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",
"version": "6.0.0",
"description": "JWT authentication middleware.",
"keywords": [
"auth",
"authn",
"authentication",
"authz",
"authorization",
"http",
"jwt",
"token",
"oauth",
"express"
],
"repository": {
"type": "git",
"url": "git://github.com/auth0/express-jwt.git"
},
"bugs": {
"url": "http://github.com/auth0/express-jwt/issues"
},
"author": {
"name": "Matias Woloski",
"email": "matias@auth0.com",
"url": "https://www.auth0.com/"
},
"license": "MIT",
"main": "./lib",
"dependencies": {
"async": "^1.5.0",
"express-unless": "^0.3.0",
"jsonwebtoken": "^8.1.0",
"lodash.set": "^4.0.0"
},
"devDependencies": {
"conventional-changelog": "~1.1.0",
"mocha": "^7.1.1"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec"
}
}