forked from auth0/express-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1021 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
48
49
50
51
52
{
"name": "express-jwt",
"version": "5.3.1",
"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/"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/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": "1.x.x"
},
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec"
}
}