forked from auth0/express-jwt
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
executable file
·54 lines (54 loc) · 1.01 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
46
47
48
49
50
51
52
53
54
{
"name": "restify-jwt",
"version": "0.4.0",
"description": "JWT authentication middleware.",
"keywords": [
"auth",
"authn",
"authentication",
"authz",
"authorization",
"http",
"jwt",
"token",
"oauth",
"restify"
],
"repository": {
"type": "git",
"url": "git://github.com/amrav/restify-jwt.git"
},
"bugs": {
"url": "http://github.com/amrav/restify-jwt/issues"
},
"author": {
"name": "Vikrant Varma",
"email": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"async": "^0.9.0",
"express-unless": "^0.3.0",
"jsonwebtoken": "^5.0.0"
},
"devDependencies": {
"mocha": "1.x.x",
"restify": "3.x"
},
"peerDependencies": {
"restify": "3.x || 4.x",
"restify-errors": "^3.1.0"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec"
}
}