-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"name": "@hapi/jwt",
"description": "JWT (JSON Web Token) Authentication",
"version": "3.2.0",
"repository": "git://github.com/hapijs/jwt",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"keywords": [
"jwt",
"authentication",
"plugin",
"hapi"
],
"eslintConfig": {
"extends": [
"plugin:@hapi/module"
]
},
"dependencies": {
"@hapi/b64": "^6.0.0",
"@hapi/boom": "^10.0.0",
"@hapi/bounce": "^3.0.0",
"@hapi/bourne": "^3.0.0",
"@hapi/catbox-object": "^3.0.0",
"@hapi/cryptiles": "^6.0.0",
"@hapi/hoek": "^10.0.0",
"@hapi/wreck": "^18.0.0",
"ecdsa-sig-formatter": "^1.0.0",
"joi": "^17.2.1"
},
"devDependencies": {
"@hapi/code": "^9.0.0",
"@hapi/eslint-plugin": "^6.0.0",
"@hapi/hapi": "^21.0.0",
"@hapi/lab": "^25.0.1",
"node-forge": "^1.0.0",
"node-rsa": "^1.0.0"
},
"scripts": {
"test": "lab -a @hapi/code -t 100 -L -m 10000",
"test-cov-html": "lab -a @hapi/code -r html -o coverage.html"
},
"license": "BSD-3-Clause"
}