forked from ryanfitz/hapi-auth-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 916 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
{
"name": "hapi-auth-jwt",
"description": "JSON Web Token (JWT) authentication plugin",
"version": "2.1.0",
"author": "Ryan Fitzgerald <[email protected]>",
"repository": "git://github.com/ryanfitz/hapi-auth-jwt",
"main": "index",
"keywords": [
"hapi",
"plugin",
"auth",
"JWT"
],
"engines": {
"node": ">=0.10.30"
},
"dependencies": {
"boom": "2.x.x",
"hoek": "2.x.x",
"jsonwebtoken": "3.2.x"
},
"peerDependencies": {
"hapi": ">=8.x.x"
},
"devDependencies": {
"boom": "2.x.x",
"code": "1.x.x",
"hapi": "8.x.x",
"lab": "5.x.x",
"grunt": "0.4.x",
"grunt-contrib-jshint": "0.11.x",
"grunt-contrib-watch": "0.6.x",
"grunt-bump": "0.1.x"
},
"scripts": {
"test": "make test-cov"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/ryanfitz/hapi-auth-jwt/raw/master/LICENSE"
}
]
}