-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
112 lines (112 loc) · 2.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "hapi-auth-jwt2",
"version": "10.7.0",
"description": "Hapi.js Authentication Plugin/Scheme using JSON Web Tokens (JWT)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dwyl/hapi-auth-jwt2.git"
},
"keywords": [
"Hapi.js",
"Authentication",
"Auth",
"JSON Web Tokens",
"JWT"
],
"author": "@nelsonic https://github.com/nelsonic",
"contributors": [
{
"name": "Kevin Wu",
"email": "@eventhough <[email protected]>"
},
{
"name": "Alan Shaw",
"email": "@alanshaw <[email protected]>"
},
{
"name": "Benjamin Lees",
"email": "@benjaminlees <[email protected]>"
},
{
"name": "Jason Nah",
"email": "@jyn <[email protected]>"
},
{
"name": "Steven Gangstead",
"email": "@gangstead <[email protected]>"
},
{
"name": "Samy Al Zahrani",
"user": "@salzhrani"
},
{
"name": "Steven Leadbeater",
"user": "@LedSysUK <[email protected]>"
},
{
"name": "Gaston Festari",
"user": "@cilindrox <[email protected]>"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/hapi-auth-jwt2/issues"
},
"homepage": "https://github.com/dwyl/hapi-auth-jwt2",
"dependencies": {
"@hapi/boom": "^10.0.0",
"cookie": "^1.0.1",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@hapi/basic": "^7.0.0",
"@hapi/hapi": "^21.1.0",
"@types/hapi__hapi": "^21.0.0",
"aguid": "^2.0.0",
"eslint": "^8.31.0",
"eslint-plugin-prettier": "^5.0.0",
"nyc": "^17.0.0",
"pre-commit": "^1.2.2",
"prettier": "^3.2.4",
"tap-nyc": "^1.0.3",
"tape": "^4.13.0"
},
"engines": {
"node": ">=18.0.0"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"lib/**/*.js"
],
"exclude": [
"test/**/*.test.js"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": false,
"all": true,
"report-dir": "./coverage"
},
"scripts": {
"quick": "./node_modules/tape/bin/tape ./test/*.test.js | tap-nyc",
"test": "nyc tape ./test/*.test.js | tap-nyc",
"coverage": "nyc tape ./test/*.test.js && nyc check-coverage",
"lint": "eslint lib",
"fixlint": "eslint lib --fix",
"start": "node example/server.js",
"report": "open coverage/lcov-report/index.html"
},
"pre-commit": [
"lint",
"coverage"
]
}