@depup/hapi 18.1.0-depup.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.npmignore +4 -0
- package/LICENSE +26 -0
- package/README.md +47 -0
- package/lib/auth.js +545 -0
- package/lib/compression.js +107 -0
- package/lib/config.js +436 -0
- package/lib/core.js +680 -0
- package/lib/cors.js +207 -0
- package/lib/ext.js +94 -0
- package/lib/handler.js +165 -0
- package/lib/headers.js +200 -0
- package/lib/index.js +11 -0
- package/lib/methods.js +123 -0
- package/lib/request.js +623 -0
- package/lib/response.js +730 -0
- package/lib/route.js +519 -0
- package/lib/security.js +84 -0
- package/lib/server.js +557 -0
- package/lib/streams.js +37 -0
- package/lib/toolkit.js +201 -0
- package/lib/transmit.js +369 -0
- package/lib/validation.js +198 -0
- package/npm-shrinkwrap.json +2456 -0
- package/package.json +132 -0
package/package.json
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@depup/hapi",
|
|
3
|
+
"description": "[DepUp] HTTP Server framework",
|
|
4
|
+
"homepage": "https://hapijs.com",
|
|
5
|
+
"version": "18.1.0-depup.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git://github.com/hapijs/hapi"
|
|
9
|
+
},
|
|
10
|
+
"main": "lib/index.js",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"depup",
|
|
13
|
+
"dependency-bumped",
|
|
14
|
+
"updated-deps",
|
|
15
|
+
"hapi",
|
|
16
|
+
"framework",
|
|
17
|
+
"http",
|
|
18
|
+
"api",
|
|
19
|
+
"web"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"accept": "^3.1.3",
|
|
23
|
+
"ammo": "^3.0.3",
|
|
24
|
+
"boom": "^7.3.0",
|
|
25
|
+
"bounce": "^1.2.3",
|
|
26
|
+
"call": "^5.0.3",
|
|
27
|
+
"catbox": "^10.0.6",
|
|
28
|
+
"catbox-memory": "^4.0.1",
|
|
29
|
+
"heavy": "^6.1.2",
|
|
30
|
+
"hoek": "^6.1.3",
|
|
31
|
+
"joi": "^18.0.2",
|
|
32
|
+
"mimos": "^4.0.2",
|
|
33
|
+
"podium": "^3.2.0",
|
|
34
|
+
"shot": "^4.0.7",
|
|
35
|
+
"somever": "2.x.x",
|
|
36
|
+
"statehood": "^6.0.9",
|
|
37
|
+
"subtext": "^6.0.12",
|
|
38
|
+
"teamwork": "^3.2.0",
|
|
39
|
+
"topo": "^3.0.3"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"code": "5.x.x",
|
|
43
|
+
"handlebars": "4.x.x",
|
|
44
|
+
"inert": "5.x.x",
|
|
45
|
+
"lab": "18.x.x",
|
|
46
|
+
"vision": "5.x.x",
|
|
47
|
+
"wreck": "14.x.x"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"test": "lab -a code -t 100 -L -m 3000",
|
|
51
|
+
"test-tap": "lab -a code -r tap -o tests.tap -m 3000",
|
|
52
|
+
"test-cov-html": "lab -a code -r html -o coverage.html -m 3000"
|
|
53
|
+
},
|
|
54
|
+
"license": "BSD-3-Clause",
|
|
55
|
+
"depup": {
|
|
56
|
+
"changes": {
|
|
57
|
+
"accept": {
|
|
58
|
+
"from": "3.x.x",
|
|
59
|
+
"to": "^3.1.3"
|
|
60
|
+
},
|
|
61
|
+
"ammo": {
|
|
62
|
+
"from": "3.x.x",
|
|
63
|
+
"to": "^3.0.3"
|
|
64
|
+
},
|
|
65
|
+
"boom": {
|
|
66
|
+
"from": "7.x.x",
|
|
67
|
+
"to": "^7.3.0"
|
|
68
|
+
},
|
|
69
|
+
"bounce": {
|
|
70
|
+
"from": "1.x.x",
|
|
71
|
+
"to": "^1.2.3"
|
|
72
|
+
},
|
|
73
|
+
"call": {
|
|
74
|
+
"from": "5.x.x",
|
|
75
|
+
"to": "^5.0.3"
|
|
76
|
+
},
|
|
77
|
+
"catbox": {
|
|
78
|
+
"from": "10.x.x",
|
|
79
|
+
"to": "^10.0.6"
|
|
80
|
+
},
|
|
81
|
+
"catbox-memory": {
|
|
82
|
+
"from": "4.x.x",
|
|
83
|
+
"to": "^4.0.1"
|
|
84
|
+
},
|
|
85
|
+
"heavy": {
|
|
86
|
+
"from": "6.x.x",
|
|
87
|
+
"to": "^6.1.2"
|
|
88
|
+
},
|
|
89
|
+
"hoek": {
|
|
90
|
+
"from": "6.x.x",
|
|
91
|
+
"to": "^6.1.3"
|
|
92
|
+
},
|
|
93
|
+
"joi": {
|
|
94
|
+
"from": "14.x.x",
|
|
95
|
+
"to": "^18.0.2"
|
|
96
|
+
},
|
|
97
|
+
"mimos": {
|
|
98
|
+
"from": "4.x.x",
|
|
99
|
+
"to": "^4.0.2"
|
|
100
|
+
},
|
|
101
|
+
"podium": {
|
|
102
|
+
"from": "3.x.x",
|
|
103
|
+
"to": "^3.2.0"
|
|
104
|
+
},
|
|
105
|
+
"shot": {
|
|
106
|
+
"from": "4.x.x",
|
|
107
|
+
"to": "^4.0.7"
|
|
108
|
+
},
|
|
109
|
+
"statehood": {
|
|
110
|
+
"from": "6.x.x",
|
|
111
|
+
"to": "^6.0.9"
|
|
112
|
+
},
|
|
113
|
+
"subtext": {
|
|
114
|
+
"from": "6.x.x",
|
|
115
|
+
"to": "^6.0.12"
|
|
116
|
+
},
|
|
117
|
+
"teamwork": {
|
|
118
|
+
"from": "3.x.x",
|
|
119
|
+
"to": "^3.2.0"
|
|
120
|
+
},
|
|
121
|
+
"topo": {
|
|
122
|
+
"from": "3.x.x",
|
|
123
|
+
"to": "^3.0.3"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"depsUpdated": 17,
|
|
127
|
+
"originalPackage": "hapi",
|
|
128
|
+
"originalVersion": "18.1.0",
|
|
129
|
+
"processedAt": "2026-03-17T18:41:40.379Z",
|
|
130
|
+
"smokeTest": "failed"
|
|
131
|
+
}
|
|
132
|
+
}
|