-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@futurestudio/hapi-jwt",
"description": "hapi plugin to sign, decode, and invalidate/blacklist JWTs",
"version": "2.1.1",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/futurestudio/hapi-jwt/issues"
},
"dependencies": {
"@hapi/joi": "~17.1.1",
"dayjs": "~1.10.1",
"deepmerge": "~4.2.2",
"hapi-request-utilities": "~4.1.1",
"jose": "~1.28.0"
},
"devDependencies": {
"@hapi/catbox": "~11.1.0",
"@hapi/catbox-redis": "~6.0.1",
"@hapi/code": "~8.0.1",
"@hapi/hapi": "~20.2.0",
"@hapi/lab": "~24.5.0",
"eslint": "~7.32.0",
"eslint-config-standard": "~16.0.1",
"eslint-plugin-import": "~2.25.2",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.2.0",
"eslint-plugin-standard": "~4.1.0",
"husky": "~7.0.0",
"node-forge": "~1.2.0",
"sinon": "~13.0.0"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/futurestudio/hapi-jwt#readme",
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"keywords": [
"auth",
"authorization",
"hapi",
"hapi.js",
"hapijs",
"plugin",
"scopes"
],
"license": "MIT",
"main": "index.js",
"types": "typings/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/futurestudio/hapi-jwt.git"
},
"scripts": {
"format": "eslint ./src/**/*.js --fix",
"lint": "eslint ./src/**/*.js",
"test": "lab --assert @hapi/code --leaks --coverage --lint --reporter console --output stdout --reporter html --output ./coverage/coverage.html",
"test:single": "lab --assert @hapi/code --leaks --lint --id",
"test:list": "lab --assert @hapi/code --dry --verbose"
}
}