forked from now-ims/hapi-now-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "@now-ims/hapi-now-auth",
"version": "2.1.0",
"description": "Simple hapi v17+ authentication scheme including JWT",
"repository": {
"type": "git",
"url": "git://github.com/now-ims/hapi-now-auth"
},
"main": "lib/index.js",
"scripts": {
"test": "lab -a @hapi/code -t 95",
"test-cover": "lab -a @hapi/code -r html -o coverage.html",
"security": "npm audit",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"keywords": [
"hapi",
"jwt",
"auth",
"authentication",
"bearer",
"token"
],
"author": "John Rodkey <john@nowims.com>",
"license": "MIT",
"engines": {
"node": ">=10.15.1"
},
"dependencies": {
"@hapi/boom": "^7.4.11",
"@hapi/hoek": "^9.2.0",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@hapi/code": "^8.0.1",
"@hapi/hapi": "^18.4.0",
"@hapi/lab": "^22.0.3"
},
"bugs": {
"url": "https://github.com/now-ims/hapi-now-auth/issues"
},
"homepage": "https://github.com/now-ims/hapi-now-auth"
}