forked from amrav/restify-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (52 loc) · 1.18 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
{
"name": "restifyve-jwt",
"version": "0.5.1",
"description": "JWT authentication middlewarefor restify > 5.x.",
"keywords": [
"auth",
"authn",
"authentication",
"authz",
"authorization",
"http",
"jwt",
"token",
"oauth",
"restify"
],
"repository": {
"type": "git",
"url": "git://github.com/andreabat/restifyve-jwt.git"
},
"bugs": {
"url": "https://github.com/andreabat/restifyve-jwt.git/issues"
},
"author": {
"name": "Andrea Batazzi",
"email": "andrea.batazzi@gmail.com"
},
"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",
"restify-errors": "^5.0.0"
},
"devDependencies": {
"mocha": "1.x.x",
"restify": "3.x"
},
"peerDependencies": {
"restify": "5.x || 6.x"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec"
}
}