html-snapshots 0.18.3 → 1.0.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.
Files changed (84) hide show
  1. package/.eslintrc.json +4 -5
  2. package/.github/workflows/verify.yml +2 -2
  3. package/HISTORY.md +42 -0
  4. package/README.md +109 -256
  5. package/examples/README.md +149 -0
  6. package/examples/custom/myFilter.js +2 -2
  7. package/examples/custom/package-lock.json +2021 -5
  8. package/examples/custom/package.json +1 -1
  9. package/examples/custom/snapshot.js +8 -10
  10. package/examples/debug-phantomjs/package-lock.json +6 -6
  11. package/examples/debug-phantomjs/package.json +1 -1
  12. package/examples/debug-phantomjs/snapshot.js +13 -14
  13. package/examples/debug-puppeteer/README.md +18 -0
  14. package/examples/debug-puppeteer/package-lock.json +2804 -0
  15. package/examples/debug-puppeteer/package.json +12 -0
  16. package/examples/debug-puppeteer/snapshot.js +30 -0
  17. package/examples/html5rocks/package-lock.json +1306 -5
  18. package/examples/html5rocks/package.json +1 -1
  19. package/examples/html5rocks/snapshot.js +14 -23
  20. package/examples/process-limit/package-lock.json +1306 -5
  21. package/examples/process-limit/package.json +1 -1
  22. package/examples/process-limit/snapshot.js +8 -10
  23. package/examples/simple-promise/package-lock.json +1306 -5
  24. package/examples/simple-promise/package.json +1 -1
  25. package/examples/simple-promise/snapshot.js +6 -8
  26. package/examples/sitemap-index/package-lock.json +1306 -5
  27. package/examples/sitemap-index/package.json +1 -1
  28. package/examples/sitemap-index/snapshot.js +6 -6
  29. package/examples/utils/index.js +2 -4
  30. package/examples/verbose/package-lock.json +1306 -5
  31. package/examples/verbose/package.json +1 -1
  32. package/examples/verbose/snapshot.js +12 -14
  33. package/lib/async/index.js +0 -1
  34. package/lib/common/index.js +1 -1
  35. package/lib/common/sitemap/index.js +16 -0
  36. package/lib/common/sitemap/sitemap-collection.js +94 -0
  37. package/lib/common/sitemap/sitemap-index.js +68 -0
  38. package/lib/common/{sitemap.js → sitemap/sitemap.js} +68 -57
  39. package/lib/html-snapshots.js +87 -5
  40. package/lib/input-generators/_base.js +7 -1
  41. package/lib/input-generators/array.js +0 -1
  42. package/lib/input-generators/robots.js +98 -58
  43. package/lib/input-generators/sitemap-index.js +3 -124
  44. package/lib/input-generators/sitemap.js +3 -7
  45. package/lib/input-generators/textfile.js +2 -6
  46. package/lib/puppeteer/index.js +98 -0
  47. package/lib/puppeteer/removeScripts.js +8 -0
  48. package/package.json +9 -4
  49. package/test/helpers/options.js +4 -2
  50. package/test/mocha/browsers/puppeteer.js +106 -0
  51. package/test/mocha/browsers/server/index.html +9 -0
  52. package/test/mocha/browsers/test.js +11 -0
  53. package/test/mocha/html-snapshots/basics.js +60 -47
  54. package/test/mocha/html-snapshots/phantomjs-options.js +54 -60
  55. package/test/mocha/html-snapshots/process-limit.js +126 -120
  56. package/test/mocha/html-snapshots/puppeteer.js +47 -0
  57. package/test/mocha/html-snapshots/robots.js +156 -121
  58. package/test/mocha/html-snapshots/server/public/page-sitemap.xml +16 -0
  59. package/test/mocha/html-snapshots/server/test_robots.txt +13 -0
  60. package/test/mocha/html-snapshots/server/test_robots_sitemap.txt +15 -0
  61. package/test/mocha/html-snapshots/server/test_robots_sitemap.xml +22 -0
  62. package/test/mocha/html-snapshots/sitemap-index.js +100 -90
  63. package/test/mocha/html-snapshots/sitemap.js +75 -31
  64. package/test/mocha/html-snapshots/snapshot-scripts.js +150 -145
  65. package/test/mocha/html-snapshots/test.js +23 -14
  66. package/test/mocha/html-snapshots/test_robots.txt +0 -2
  67. package/test/mocha/html-snapshots/use-jquery.js +65 -64
  68. package/test/mocha/html-snapshots/utils.js +29 -30
  69. package/test/mocha/input-generators/server/test_robots.txt +0 -2
  70. package/test/mocha/input-generators/server/test_robots_bad.txt +0 -2
  71. package/test/mocha/input-generators/server/test_robots_sitemap.txt +17 -0
  72. package/test/mocha/input-generators/server/test_robots_sitemap_bad.txt +17 -0
  73. package/test/mocha/input-generators/server/test_robots_sitemap_multi.txt +18 -0
  74. package/test/mocha/input-generators/server/test_sitemap_index_empty.xml +3 -0
  75. package/test/mocha/input-generators/server/test_sitemap_index_malformed.xml +2 -0
  76. package/test/mocha/input-generators/sitemap-index.js +65 -9
  77. package/test/mocha/input-generators/test.js +276 -280
  78. package/test/mocha/input-generators/test_robots.txt +0 -2
  79. package/test/mocha/input-generators/test_robots_bad.txt +0 -2
  80. package/test/mocha/input-generators/test_robots_sitemap.txt +17 -0
  81. package/test/mocha/input-generators/test_robots_sitemap_bad.txt +17 -0
  82. package/test/mocha/input-generators/test_robots_sitemap_multi.txt +18 -0
  83. package/lib/common/node.js +0 -26
  84. package/test/mocha/common/node.js +0 -100
@@ -1,9 +1,1639 @@
1
1
  {
2
2
  "name": "html-snapshots-example",
3
3
  "version": "0.1.0",
4
- "lockfileVersion": 1,
4
+ "lockfileVersion": 2,
5
5
  "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "html-snapshots-example",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "html-snapshots": "https://github.com/localnerve/html-snapshots#rc-1.0.0"
12
+ }
13
+ },
14
+ "node_modules/@sindresorhus/is": {
15
+ "version": "5.3.0",
16
+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz",
17
+ "integrity": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==",
18
+ "engines": {
19
+ "node": ">=14.16"
20
+ },
21
+ "funding": {
22
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
23
+ }
24
+ },
25
+ "node_modules/@szmarczak/http-timer": {
26
+ "version": "5.0.1",
27
+ "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz",
28
+ "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==",
29
+ "dependencies": {
30
+ "defer-to-connect": "^2.0.1"
31
+ },
32
+ "engines": {
33
+ "node": ">=14.16"
34
+ }
35
+ },
36
+ "node_modules/@types/http-cache-semantics": {
37
+ "version": "4.0.1",
38
+ "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz",
39
+ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="
40
+ },
41
+ "node_modules/@types/node": {
42
+ "version": "18.7.23",
43
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.23.tgz",
44
+ "integrity": "sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg==",
45
+ "optional": true
46
+ },
47
+ "node_modules/@types/yauzl": {
48
+ "version": "2.10.0",
49
+ "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz",
50
+ "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==",
51
+ "optional": true,
52
+ "dependencies": {
53
+ "@types/node": "*"
54
+ }
55
+ },
56
+ "node_modules/agent-base": {
57
+ "version": "6.0.2",
58
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
59
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
60
+ "dependencies": {
61
+ "debug": "4"
62
+ },
63
+ "engines": {
64
+ "node": ">= 6.0.0"
65
+ }
66
+ },
67
+ "node_modules/agent-base/node_modules/debug": {
68
+ "version": "4.3.4",
69
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
70
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
71
+ "dependencies": {
72
+ "ms": "2.1.2"
73
+ },
74
+ "engines": {
75
+ "node": ">=6.0"
76
+ },
77
+ "peerDependenciesMeta": {
78
+ "supports-color": {
79
+ "optional": true
80
+ }
81
+ }
82
+ },
83
+ "node_modules/agent-base/node_modules/ms": {
84
+ "version": "2.1.2",
85
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
86
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
87
+ },
88
+ "node_modules/ajv": {
89
+ "version": "6.12.6",
90
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
91
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
92
+ "dependencies": {
93
+ "fast-deep-equal": "^3.1.1",
94
+ "fast-json-stable-stringify": "^2.0.0",
95
+ "json-schema-traverse": "^0.4.1",
96
+ "uri-js": "^4.2.2"
97
+ },
98
+ "funding": {
99
+ "type": "github",
100
+ "url": "https://github.com/sponsors/epoberezkin"
101
+ }
102
+ },
103
+ "node_modules/asn1": {
104
+ "version": "0.2.6",
105
+ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
106
+ "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
107
+ "dependencies": {
108
+ "safer-buffer": "~2.1.0"
109
+ }
110
+ },
111
+ "node_modules/assert-plus": {
112
+ "version": "1.0.0",
113
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
114
+ "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
115
+ "engines": {
116
+ "node": ">=0.8"
117
+ }
118
+ },
119
+ "node_modules/async": {
120
+ "version": "3.2.4",
121
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz",
122
+ "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ=="
123
+ },
124
+ "node_modules/async-lock": {
125
+ "version": "1.3.2",
126
+ "resolved": "https://registry.npmjs.org/async-lock/-/async-lock-1.3.2.tgz",
127
+ "integrity": "sha512-phnXdS3RP7PPcmP6NWWzWMU0sLTeyvtZCxBPpZdkYE3seGLKSQZs9FrmVO/qwypq98FUtWWUEYxziLkdGk5nnA=="
128
+ },
129
+ "node_modules/asynckit": {
130
+ "version": "0.4.0",
131
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
132
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
133
+ },
134
+ "node_modules/aws-sign2": {
135
+ "version": "0.7.0",
136
+ "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
137
+ "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
138
+ "engines": {
139
+ "node": "*"
140
+ }
141
+ },
142
+ "node_modules/aws4": {
143
+ "version": "1.11.0",
144
+ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz",
145
+ "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="
146
+ },
147
+ "node_modules/balanced-match": {
148
+ "version": "1.0.2",
149
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
150
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
151
+ },
152
+ "node_modules/base64-js": {
153
+ "version": "1.5.1",
154
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
155
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
156
+ "funding": [
157
+ {
158
+ "type": "github",
159
+ "url": "https://github.com/sponsors/feross"
160
+ },
161
+ {
162
+ "type": "patreon",
163
+ "url": "https://www.patreon.com/feross"
164
+ },
165
+ {
166
+ "type": "consulting",
167
+ "url": "https://feross.org/support"
168
+ }
169
+ ]
170
+ },
171
+ "node_modules/bcrypt-pbkdf": {
172
+ "version": "1.0.2",
173
+ "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
174
+ "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
175
+ "dependencies": {
176
+ "tweetnacl": "^0.14.3"
177
+ }
178
+ },
179
+ "node_modules/bl": {
180
+ "version": "4.1.0",
181
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
182
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
183
+ "dependencies": {
184
+ "buffer": "^5.5.0",
185
+ "inherits": "^2.0.4",
186
+ "readable-stream": "^3.4.0"
187
+ }
188
+ },
189
+ "node_modules/bl/node_modules/readable-stream": {
190
+ "version": "3.6.0",
191
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
192
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
193
+ "dependencies": {
194
+ "inherits": "^2.0.3",
195
+ "string_decoder": "^1.1.1",
196
+ "util-deprecate": "^1.0.1"
197
+ },
198
+ "engines": {
199
+ "node": ">= 6"
200
+ }
201
+ },
202
+ "node_modules/brace-expansion": {
203
+ "version": "1.1.11",
204
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
205
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
206
+ "dependencies": {
207
+ "balanced-match": "^1.0.0",
208
+ "concat-map": "0.0.1"
209
+ }
210
+ },
211
+ "node_modules/buffer": {
212
+ "version": "5.7.1",
213
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
214
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
215
+ "funding": [
216
+ {
217
+ "type": "github",
218
+ "url": "https://github.com/sponsors/feross"
219
+ },
220
+ {
221
+ "type": "patreon",
222
+ "url": "https://www.patreon.com/feross"
223
+ },
224
+ {
225
+ "type": "consulting",
226
+ "url": "https://feross.org/support"
227
+ }
228
+ ],
229
+ "dependencies": {
230
+ "base64-js": "^1.3.1",
231
+ "ieee754": "^1.1.13"
232
+ }
233
+ },
234
+ "node_modules/buffer-crc32": {
235
+ "version": "0.2.13",
236
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
237
+ "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
238
+ "engines": {
239
+ "node": "*"
240
+ }
241
+ },
242
+ "node_modules/buffer-from": {
243
+ "version": "1.1.2",
244
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
245
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
246
+ },
247
+ "node_modules/cacheable-lookup": {
248
+ "version": "6.1.0",
249
+ "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-6.1.0.tgz",
250
+ "integrity": "sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==",
251
+ "engines": {
252
+ "node": ">=10.6.0"
253
+ }
254
+ },
255
+ "node_modules/cacheable-request": {
256
+ "version": "10.2.1",
257
+ "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.1.tgz",
258
+ "integrity": "sha512-3tLJyBjGuXw1s5gpKFSG3iS4kaKT4id04dZi98wzHQp/8cqZNweBnrF9J+rrlvrf4M53OdtDGNctNHFias8BEA==",
259
+ "dependencies": {
260
+ "@types/http-cache-semantics": "^4.0.1",
261
+ "get-stream": "^6.0.1",
262
+ "http-cache-semantics": "^4.1.0",
263
+ "keyv": "^4.5.0",
264
+ "mimic-response": "^4.0.0",
265
+ "normalize-url": "^7.1.0",
266
+ "responselike": "^3.0.0"
267
+ },
268
+ "engines": {
269
+ "node": ">=14.16"
270
+ }
271
+ },
272
+ "node_modules/caseless": {
273
+ "version": "0.12.0",
274
+ "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
275
+ "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw=="
276
+ },
277
+ "node_modules/chownr": {
278
+ "version": "1.1.4",
279
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
280
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="
281
+ },
282
+ "node_modules/combine-errors": {
283
+ "version": "3.0.3",
284
+ "resolved": "https://registry.npmjs.org/combine-errors/-/combine-errors-3.0.3.tgz",
285
+ "integrity": "sha512-C8ikRNRMygCwaTx+Ek3Yr+OuZzgZjduCOfSQBjbM8V3MfgcjSTeto/GXP6PAwKvJz/v15b7GHZvx5rOlczFw/Q==",
286
+ "dependencies": {
287
+ "custom-error-instance": "2.1.1",
288
+ "lodash.uniqby": "4.5.0"
289
+ }
290
+ },
291
+ "node_modules/combined-stream": {
292
+ "version": "1.0.8",
293
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
294
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
295
+ "dependencies": {
296
+ "delayed-stream": "~1.0.0"
297
+ },
298
+ "engines": {
299
+ "node": ">= 0.8"
300
+ }
301
+ },
302
+ "node_modules/concat-map": {
303
+ "version": "0.0.1",
304
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
305
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
306
+ },
307
+ "node_modules/concat-stream": {
308
+ "version": "1.6.2",
309
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
310
+ "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
311
+ "engines": [
312
+ "node >= 0.8"
313
+ ],
314
+ "dependencies": {
315
+ "buffer-from": "^1.0.0",
316
+ "inherits": "^2.0.3",
317
+ "readable-stream": "^2.2.2",
318
+ "typedarray": "^0.0.6"
319
+ }
320
+ },
321
+ "node_modules/core-util-is": {
322
+ "version": "1.0.3",
323
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
324
+ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
325
+ },
326
+ "node_modules/cross-fetch": {
327
+ "version": "3.1.5",
328
+ "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz",
329
+ "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==",
330
+ "dependencies": {
331
+ "node-fetch": "2.6.7"
332
+ }
333
+ },
334
+ "node_modules/custom-error-instance": {
335
+ "version": "2.1.1",
336
+ "resolved": "https://registry.npmjs.org/custom-error-instance/-/custom-error-instance-2.1.1.tgz",
337
+ "integrity": "sha512-p6JFxJc3M4OTD2li2qaHkDCw9SfMw82Ldr6OC9Je1aXiGfhx2W8p3GaoeaGrPJTUN9NirTM/KTxHWMUdR1rsUg=="
338
+ },
339
+ "node_modules/dashdash": {
340
+ "version": "1.14.1",
341
+ "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
342
+ "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==",
343
+ "dependencies": {
344
+ "assert-plus": "^1.0.0"
345
+ },
346
+ "engines": {
347
+ "node": ">=0.10"
348
+ }
349
+ },
350
+ "node_modules/debug": {
351
+ "version": "2.6.9",
352
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
353
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
354
+ "dependencies": {
355
+ "ms": "2.0.0"
356
+ }
357
+ },
358
+ "node_modules/decompress-response": {
359
+ "version": "6.0.0",
360
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
361
+ "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
362
+ "dependencies": {
363
+ "mimic-response": "^3.1.0"
364
+ },
365
+ "engines": {
366
+ "node": ">=10"
367
+ },
368
+ "funding": {
369
+ "url": "https://github.com/sponsors/sindresorhus"
370
+ }
371
+ },
372
+ "node_modules/decompress-response/node_modules/mimic-response": {
373
+ "version": "3.1.0",
374
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
375
+ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
376
+ "engines": {
377
+ "node": ">=10"
378
+ },
379
+ "funding": {
380
+ "url": "https://github.com/sponsors/sindresorhus"
381
+ }
382
+ },
383
+ "node_modules/defer-to-connect": {
384
+ "version": "2.0.1",
385
+ "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
386
+ "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==",
387
+ "engines": {
388
+ "node": ">=10"
389
+ }
390
+ },
391
+ "node_modules/delayed-stream": {
392
+ "version": "1.0.0",
393
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
394
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
395
+ "engines": {
396
+ "node": ">=0.4.0"
397
+ }
398
+ },
399
+ "node_modules/devtools-protocol": {
400
+ "version": "0.0.1036444",
401
+ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1036444.tgz",
402
+ "integrity": "sha512-0y4f/T8H9lsESV9kKP1HDUXgHxCdniFeJh6Erq+FbdOEvp/Ydp9t8kcAAM5gOd17pMrTDlFWntoHtzzeTUWKNw=="
403
+ },
404
+ "node_modules/ecc-jsbn": {
405
+ "version": "0.1.2",
406
+ "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
407
+ "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==",
408
+ "dependencies": {
409
+ "jsbn": "~0.1.0",
410
+ "safer-buffer": "^2.1.0"
411
+ }
412
+ },
413
+ "node_modules/end-of-stream": {
414
+ "version": "1.4.4",
415
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
416
+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
417
+ "dependencies": {
418
+ "once": "^1.4.0"
419
+ }
420
+ },
421
+ "node_modules/es6-promise": {
422
+ "version": "4.2.8",
423
+ "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
424
+ "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
425
+ },
426
+ "node_modules/extend": {
427
+ "version": "3.0.2",
428
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
429
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
430
+ },
431
+ "node_modules/extract-zip": {
432
+ "version": "1.7.0",
433
+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz",
434
+ "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==",
435
+ "dependencies": {
436
+ "concat-stream": "^1.6.2",
437
+ "debug": "^2.6.9",
438
+ "mkdirp": "^0.5.4",
439
+ "yauzl": "^2.10.0"
440
+ },
441
+ "bin": {
442
+ "extract-zip": "cli.js"
443
+ }
444
+ },
445
+ "node_modules/extract-zip/node_modules/mkdirp": {
446
+ "version": "0.5.6",
447
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
448
+ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
449
+ "dependencies": {
450
+ "minimist": "^1.2.6"
451
+ },
452
+ "bin": {
453
+ "mkdirp": "bin/cmd.js"
454
+ }
455
+ },
456
+ "node_modules/extsprintf": {
457
+ "version": "1.3.0",
458
+ "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
459
+ "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==",
460
+ "engines": [
461
+ "node >=0.6.0"
462
+ ]
463
+ },
464
+ "node_modules/fast-deep-equal": {
465
+ "version": "3.1.3",
466
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
467
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
468
+ },
469
+ "node_modules/fast-json-stable-stringify": {
470
+ "version": "2.1.0",
471
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
472
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
473
+ },
474
+ "node_modules/fd-slicer": {
475
+ "version": "1.1.0",
476
+ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
477
+ "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
478
+ "dependencies": {
479
+ "pend": "~1.2.0"
480
+ }
481
+ },
482
+ "node_modules/forever-agent": {
483
+ "version": "0.6.1",
484
+ "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
485
+ "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==",
486
+ "engines": {
487
+ "node": "*"
488
+ }
489
+ },
490
+ "node_modules/form-data": {
491
+ "version": "2.3.3",
492
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
493
+ "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
494
+ "dependencies": {
495
+ "asynckit": "^0.4.0",
496
+ "combined-stream": "^1.0.6",
497
+ "mime-types": "^2.1.12"
498
+ },
499
+ "engines": {
500
+ "node": ">= 0.12"
501
+ }
502
+ },
503
+ "node_modules/form-data-encoder": {
504
+ "version": "2.1.2",
505
+ "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.2.tgz",
506
+ "integrity": "sha512-FCaIOVTRA9E0siY6FeXid7D5yrCqpsErplUkE2a1BEiKj1BE9z6FbKB4ntDTwC4NVLie9p+4E9nX4mWwEOT05A==",
507
+ "engines": {
508
+ "node": ">= 14.17"
509
+ }
510
+ },
511
+ "node_modules/fs-constants": {
512
+ "version": "1.0.0",
513
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
514
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
515
+ },
516
+ "node_modules/fs-extra": {
517
+ "version": "1.0.0",
518
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz",
519
+ "integrity": "sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==",
520
+ "dependencies": {
521
+ "graceful-fs": "^4.1.2",
522
+ "jsonfile": "^2.1.0",
523
+ "klaw": "^1.0.0"
524
+ }
525
+ },
526
+ "node_modules/fs.realpath": {
527
+ "version": "1.0.0",
528
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
529
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
530
+ },
531
+ "node_modules/get-stream": {
532
+ "version": "6.0.1",
533
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
534
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
535
+ "engines": {
536
+ "node": ">=10"
537
+ },
538
+ "funding": {
539
+ "url": "https://github.com/sponsors/sindresorhus"
540
+ }
541
+ },
542
+ "node_modules/getpass": {
543
+ "version": "0.1.7",
544
+ "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
545
+ "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==",
546
+ "dependencies": {
547
+ "assert-plus": "^1.0.0"
548
+ }
549
+ },
550
+ "node_modules/glob": {
551
+ "version": "7.2.3",
552
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
553
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
554
+ "dependencies": {
555
+ "fs.realpath": "^1.0.0",
556
+ "inflight": "^1.0.4",
557
+ "inherits": "2",
558
+ "minimatch": "^3.1.1",
559
+ "once": "^1.3.0",
560
+ "path-is-absolute": "^1.0.0"
561
+ },
562
+ "engines": {
563
+ "node": "*"
564
+ },
565
+ "funding": {
566
+ "url": "https://github.com/sponsors/isaacs"
567
+ }
568
+ },
569
+ "node_modules/got": {
570
+ "version": "12.5.0",
571
+ "resolved": "https://registry.npmjs.org/got/-/got-12.5.0.tgz",
572
+ "integrity": "sha512-/Bneo/L6bLN1wDyJCeRZ3CLoixvwb9v3rE3IHulFSfTHwP85xSr4QatA8K0c6GlL5+mc4IZ57BzluNZJiXvHIg==",
573
+ "dependencies": {
574
+ "@sindresorhus/is": "^5.2.0",
575
+ "@szmarczak/http-timer": "^5.0.1",
576
+ "cacheable-lookup": "^6.0.4",
577
+ "cacheable-request": "^10.1.2",
578
+ "decompress-response": "^6.0.0",
579
+ "form-data-encoder": "^2.1.2",
580
+ "get-stream": "^6.0.1",
581
+ "http2-wrapper": "^2.1.10",
582
+ "lowercase-keys": "^3.0.0",
583
+ "p-cancelable": "^3.0.0",
584
+ "responselike": "^3.0.0"
585
+ },
586
+ "engines": {
587
+ "node": ">=14.16"
588
+ },
589
+ "funding": {
590
+ "url": "https://github.com/sindresorhus/got?sponsor=1"
591
+ }
592
+ },
593
+ "node_modules/graceful-fs": {
594
+ "version": "4.2.10",
595
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
596
+ "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
597
+ },
598
+ "node_modules/har-schema": {
599
+ "version": "2.0.0",
600
+ "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
601
+ "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==",
602
+ "engines": {
603
+ "node": ">=4"
604
+ }
605
+ },
606
+ "node_modules/har-validator": {
607
+ "version": "5.1.5",
608
+ "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
609
+ "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
610
+ "deprecated": "this library is no longer supported",
611
+ "dependencies": {
612
+ "ajv": "^6.12.3",
613
+ "har-schema": "^2.0.0"
614
+ },
615
+ "engines": {
616
+ "node": ">=6"
617
+ }
618
+ },
619
+ "node_modules/hasha": {
620
+ "version": "2.2.0",
621
+ "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz",
622
+ "integrity": "sha512-jZ38TU/EBiGKrmyTNNZgnvCZHNowiRI4+w/I9noMlekHTZH3KyGgvJLmhSgykeAQ9j2SYPDosM0Bg3wHfzibAQ==",
623
+ "dependencies": {
624
+ "is-stream": "^1.0.1",
625
+ "pinkie-promise": "^2.0.0"
626
+ },
627
+ "engines": {
628
+ "node": ">=0.10.0"
629
+ }
630
+ },
631
+ "node_modules/html-snapshots": {
632
+ "version": "1.0.0",
633
+ "resolved": "git+ssh://git@github.com/localnerve/html-snapshots.git#2b03932d48de3b8eca4a062f3f488cfea7de2ca1",
634
+ "license": "MIT",
635
+ "dependencies": {
636
+ "async": "3.2.4",
637
+ "async-lock": "1.3.2",
638
+ "combine-errors": "3.0.3",
639
+ "got": "12.5.0",
640
+ "lodash": "4.17.21",
641
+ "mkdirp": "1.0.4",
642
+ "phantomjs-prebuilt": "2.1.16",
643
+ "puppeteer": "^18.0.5",
644
+ "rimraf": "3.0.2",
645
+ "xml2js": "0.4.23"
646
+ },
647
+ "engines": {
648
+ "node": ">= 14"
649
+ }
650
+ },
651
+ "node_modules/http-cache-semantics": {
652
+ "version": "4.1.0",
653
+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
654
+ "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ=="
655
+ },
656
+ "node_modules/http-signature": {
657
+ "version": "1.2.0",
658
+ "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
659
+ "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==",
660
+ "dependencies": {
661
+ "assert-plus": "^1.0.0",
662
+ "jsprim": "^1.2.2",
663
+ "sshpk": "^1.7.0"
664
+ },
665
+ "engines": {
666
+ "node": ">=0.8",
667
+ "npm": ">=1.3.7"
668
+ }
669
+ },
670
+ "node_modules/http2-wrapper": {
671
+ "version": "2.1.11",
672
+ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.1.11.tgz",
673
+ "integrity": "sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==",
674
+ "dependencies": {
675
+ "quick-lru": "^5.1.1",
676
+ "resolve-alpn": "^1.2.0"
677
+ },
678
+ "engines": {
679
+ "node": ">=10.19.0"
680
+ }
681
+ },
682
+ "node_modules/https-proxy-agent": {
683
+ "version": "5.0.1",
684
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
685
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
686
+ "dependencies": {
687
+ "agent-base": "6",
688
+ "debug": "4"
689
+ },
690
+ "engines": {
691
+ "node": ">= 6"
692
+ }
693
+ },
694
+ "node_modules/https-proxy-agent/node_modules/debug": {
695
+ "version": "4.3.4",
696
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
697
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
698
+ "dependencies": {
699
+ "ms": "2.1.2"
700
+ },
701
+ "engines": {
702
+ "node": ">=6.0"
703
+ },
704
+ "peerDependenciesMeta": {
705
+ "supports-color": {
706
+ "optional": true
707
+ }
708
+ }
709
+ },
710
+ "node_modules/https-proxy-agent/node_modules/ms": {
711
+ "version": "2.1.2",
712
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
713
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
714
+ },
715
+ "node_modules/ieee754": {
716
+ "version": "1.2.1",
717
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
718
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
719
+ "funding": [
720
+ {
721
+ "type": "github",
722
+ "url": "https://github.com/sponsors/feross"
723
+ },
724
+ {
725
+ "type": "patreon",
726
+ "url": "https://www.patreon.com/feross"
727
+ },
728
+ {
729
+ "type": "consulting",
730
+ "url": "https://feross.org/support"
731
+ }
732
+ ]
733
+ },
734
+ "node_modules/inflight": {
735
+ "version": "1.0.6",
736
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
737
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
738
+ "dependencies": {
739
+ "once": "^1.3.0",
740
+ "wrappy": "1"
741
+ }
742
+ },
743
+ "node_modules/inherits": {
744
+ "version": "2.0.4",
745
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
746
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
747
+ },
748
+ "node_modules/is-stream": {
749
+ "version": "1.1.0",
750
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
751
+ "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==",
752
+ "engines": {
753
+ "node": ">=0.10.0"
754
+ }
755
+ },
756
+ "node_modules/is-typedarray": {
757
+ "version": "1.0.0",
758
+ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
759
+ "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
760
+ },
761
+ "node_modules/isarray": {
762
+ "version": "1.0.0",
763
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
764
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
765
+ },
766
+ "node_modules/isexe": {
767
+ "version": "2.0.0",
768
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
769
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
770
+ },
771
+ "node_modules/isstream": {
772
+ "version": "0.1.2",
773
+ "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
774
+ "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g=="
775
+ },
776
+ "node_modules/jsbn": {
777
+ "version": "0.1.1",
778
+ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
779
+ "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg=="
780
+ },
781
+ "node_modules/json-buffer": {
782
+ "version": "3.0.1",
783
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
784
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="
785
+ },
786
+ "node_modules/json-schema": {
787
+ "version": "0.4.0",
788
+ "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
789
+ "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="
790
+ },
791
+ "node_modules/json-schema-traverse": {
792
+ "version": "0.4.1",
793
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
794
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
795
+ },
796
+ "node_modules/json-stringify-safe": {
797
+ "version": "5.0.1",
798
+ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
799
+ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="
800
+ },
801
+ "node_modules/jsonfile": {
802
+ "version": "2.4.0",
803
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
804
+ "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==",
805
+ "optionalDependencies": {
806
+ "graceful-fs": "^4.1.6"
807
+ }
808
+ },
809
+ "node_modules/jsprim": {
810
+ "version": "1.4.2",
811
+ "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz",
812
+ "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==",
813
+ "dependencies": {
814
+ "assert-plus": "1.0.0",
815
+ "extsprintf": "1.3.0",
816
+ "json-schema": "0.4.0",
817
+ "verror": "1.10.0"
818
+ },
819
+ "engines": {
820
+ "node": ">=0.6.0"
821
+ }
822
+ },
823
+ "node_modules/kew": {
824
+ "version": "0.7.0",
825
+ "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz",
826
+ "integrity": "sha512-IG6nm0+QtAMdXt9KvbgbGdvY50RSrw+U4sGZg+KlrSKPJEwVE5JVoI3d7RWfSMdBQneRheeAOj3lIjX5VL/9RQ=="
827
+ },
828
+ "node_modules/keyv": {
829
+ "version": "4.5.0",
830
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.0.tgz",
831
+ "integrity": "sha512-2YvuMsA+jnFGtBareKqgANOEKe1mk3HKiXu2fRmAfyxG0MJAywNhi5ttWA3PMjl4NmpyjZNbFifR2vNjW1znfA==",
832
+ "dependencies": {
833
+ "json-buffer": "3.0.1"
834
+ }
835
+ },
836
+ "node_modules/klaw": {
837
+ "version": "1.3.1",
838
+ "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
839
+ "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==",
840
+ "optionalDependencies": {
841
+ "graceful-fs": "^4.1.9"
842
+ }
843
+ },
844
+ "node_modules/lodash": {
845
+ "version": "4.17.21",
846
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
847
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
848
+ },
849
+ "node_modules/lodash._baseiteratee": {
850
+ "version": "4.7.0",
851
+ "resolved": "https://registry.npmjs.org/lodash._baseiteratee/-/lodash._baseiteratee-4.7.0.tgz",
852
+ "integrity": "sha512-nqB9M+wITz0BX/Q2xg6fQ8mLkyfF7MU7eE+MNBNjTHFKeKaZAPEzEg+E8LWxKWf1DQVflNEn9N49yAuqKh2mWQ==",
853
+ "dependencies": {
854
+ "lodash._stringtopath": "~4.8.0"
855
+ }
856
+ },
857
+ "node_modules/lodash._basetostring": {
858
+ "version": "4.12.0",
859
+ "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-4.12.0.tgz",
860
+ "integrity": "sha512-SwcRIbyxnN6CFEEK4K1y+zuApvWdpQdBHM/swxP962s8HIxPO3alBH5t3m/dl+f4CMUug6sJb7Pww8d13/9WSw=="
861
+ },
862
+ "node_modules/lodash._baseuniq": {
863
+ "version": "4.6.0",
864
+ "resolved": "https://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz",
865
+ "integrity": "sha512-Ja1YevpHZctlI5beLA7oc5KNDhGcPixFhcqSiORHNsp/1QTv7amAXzw+gu4YOvErqVlMVyIJGgtzeepCnnur0A==",
866
+ "dependencies": {
867
+ "lodash._createset": "~4.0.0",
868
+ "lodash._root": "~3.0.0"
869
+ }
870
+ },
871
+ "node_modules/lodash._createset": {
872
+ "version": "4.0.3",
873
+ "resolved": "https://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.3.tgz",
874
+ "integrity": "sha512-GTkC6YMprrJZCYU3zcqZj+jkXkrXzq3IPBcF/fIPpNEAB4hZEtXU8zp/RwKOvZl43NUmwDbyRk3+ZTbeRdEBXA=="
875
+ },
876
+ "node_modules/lodash._root": {
877
+ "version": "3.0.1",
878
+ "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz",
879
+ "integrity": "sha512-O0pWuFSK6x4EXhM1dhZ8gchNtG7JMqBtrHdoUFUWXD7dJnNSUze1GuyQr5sOs0aCvgGeI3o/OJW8f4ca7FDxmQ=="
880
+ },
881
+ "node_modules/lodash._stringtopath": {
882
+ "version": "4.8.0",
883
+ "resolved": "https://registry.npmjs.org/lodash._stringtopath/-/lodash._stringtopath-4.8.0.tgz",
884
+ "integrity": "sha512-SXL66C731p0xPDC5LZg4wI5H+dJo/EO4KTqOMwLYCH3+FmmfAKJEZCm6ohGpI+T1xwsDsJCfL4OnhorllvlTPQ==",
885
+ "dependencies": {
886
+ "lodash._basetostring": "~4.12.0"
887
+ }
888
+ },
889
+ "node_modules/lodash.uniqby": {
890
+ "version": "4.5.0",
891
+ "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.5.0.tgz",
892
+ "integrity": "sha512-IRt7cfTtHy6f1aRVA5n7kT8rgN3N1nH6MOWLcHfpWG2SH19E3JksLK38MktLxZDhlAjCP9jpIXkOnRXlu6oByQ==",
893
+ "dependencies": {
894
+ "lodash._baseiteratee": "~4.7.0",
895
+ "lodash._baseuniq": "~4.6.0"
896
+ }
897
+ },
898
+ "node_modules/lowercase-keys": {
899
+ "version": "3.0.0",
900
+ "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
901
+ "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==",
902
+ "engines": {
903
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
904
+ },
905
+ "funding": {
906
+ "url": "https://github.com/sponsors/sindresorhus"
907
+ }
908
+ },
909
+ "node_modules/mime-db": {
910
+ "version": "1.52.0",
911
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
912
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
913
+ "engines": {
914
+ "node": ">= 0.6"
915
+ }
916
+ },
917
+ "node_modules/mime-types": {
918
+ "version": "2.1.35",
919
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
920
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
921
+ "dependencies": {
922
+ "mime-db": "1.52.0"
923
+ },
924
+ "engines": {
925
+ "node": ">= 0.6"
926
+ }
927
+ },
928
+ "node_modules/mimic-response": {
929
+ "version": "4.0.0",
930
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz",
931
+ "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==",
932
+ "engines": {
933
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
934
+ },
935
+ "funding": {
936
+ "url": "https://github.com/sponsors/sindresorhus"
937
+ }
938
+ },
939
+ "node_modules/minimatch": {
940
+ "version": "3.1.2",
941
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
942
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
943
+ "dependencies": {
944
+ "brace-expansion": "^1.1.7"
945
+ },
946
+ "engines": {
947
+ "node": "*"
948
+ }
949
+ },
950
+ "node_modules/minimist": {
951
+ "version": "1.2.6",
952
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
953
+ "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
954
+ },
955
+ "node_modules/mkdirp": {
956
+ "version": "1.0.4",
957
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
958
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
959
+ "bin": {
960
+ "mkdirp": "bin/cmd.js"
961
+ },
962
+ "engines": {
963
+ "node": ">=10"
964
+ }
965
+ },
966
+ "node_modules/mkdirp-classic": {
967
+ "version": "0.5.3",
968
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
969
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="
970
+ },
971
+ "node_modules/ms": {
972
+ "version": "2.0.0",
973
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
974
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
975
+ },
976
+ "node_modules/node-fetch": {
977
+ "version": "2.6.7",
978
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
979
+ "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
980
+ "dependencies": {
981
+ "whatwg-url": "^5.0.0"
982
+ },
983
+ "engines": {
984
+ "node": "4.x || >=6.0.0"
985
+ },
986
+ "peerDependencies": {
987
+ "encoding": "^0.1.0"
988
+ },
989
+ "peerDependenciesMeta": {
990
+ "encoding": {
991
+ "optional": true
992
+ }
993
+ }
994
+ },
995
+ "node_modules/normalize-url": {
996
+ "version": "7.1.0",
997
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-7.1.0.tgz",
998
+ "integrity": "sha512-JgkdydFdLe1E5Q7DpLvKVyBZOOwXYGhIbMbOMm3lJ06XKzaiit+qo1HciO3z3IFklStfarzJHVQf9ZcNPTvZlw==",
999
+ "engines": {
1000
+ "node": ">=12.20"
1001
+ },
1002
+ "funding": {
1003
+ "url": "https://github.com/sponsors/sindresorhus"
1004
+ }
1005
+ },
1006
+ "node_modules/oauth-sign": {
1007
+ "version": "0.9.0",
1008
+ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
1009
+ "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
1010
+ "engines": {
1011
+ "node": "*"
1012
+ }
1013
+ },
1014
+ "node_modules/once": {
1015
+ "version": "1.4.0",
1016
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1017
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
1018
+ "dependencies": {
1019
+ "wrappy": "1"
1020
+ }
1021
+ },
1022
+ "node_modules/p-cancelable": {
1023
+ "version": "3.0.0",
1024
+ "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
1025
+ "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==",
1026
+ "engines": {
1027
+ "node": ">=12.20"
1028
+ }
1029
+ },
1030
+ "node_modules/path-is-absolute": {
1031
+ "version": "1.0.1",
1032
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
1033
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
1034
+ "engines": {
1035
+ "node": ">=0.10.0"
1036
+ }
1037
+ },
1038
+ "node_modules/pend": {
1039
+ "version": "1.2.0",
1040
+ "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
1041
+ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="
1042
+ },
1043
+ "node_modules/performance-now": {
1044
+ "version": "2.1.0",
1045
+ "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
1046
+ "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="
1047
+ },
1048
+ "node_modules/phantomjs-prebuilt": {
1049
+ "version": "2.1.16",
1050
+ "resolved": "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz",
1051
+ "integrity": "sha512-PIiRzBhW85xco2fuj41FmsyuYHKjKuXWmhjy3A/Y+CMpN/63TV+s9uzfVhsUwFe0G77xWtHBG8xmXf5BqEUEuQ==",
1052
+ "deprecated": "this package is now deprecated",
1053
+ "hasInstallScript": true,
1054
+ "dependencies": {
1055
+ "es6-promise": "^4.0.3",
1056
+ "extract-zip": "^1.6.5",
1057
+ "fs-extra": "^1.0.0",
1058
+ "hasha": "^2.2.0",
1059
+ "kew": "^0.7.0",
1060
+ "progress": "^1.1.8",
1061
+ "request": "^2.81.0",
1062
+ "request-progress": "^2.0.1",
1063
+ "which": "^1.2.10"
1064
+ },
1065
+ "bin": {
1066
+ "phantomjs": "bin/phantomjs"
1067
+ }
1068
+ },
1069
+ "node_modules/pinkie": {
1070
+ "version": "2.0.4",
1071
+ "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
1072
+ "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==",
1073
+ "engines": {
1074
+ "node": ">=0.10.0"
1075
+ }
1076
+ },
1077
+ "node_modules/pinkie-promise": {
1078
+ "version": "2.0.1",
1079
+ "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
1080
+ "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==",
1081
+ "dependencies": {
1082
+ "pinkie": "^2.0.0"
1083
+ },
1084
+ "engines": {
1085
+ "node": ">=0.10.0"
1086
+ }
1087
+ },
1088
+ "node_modules/process-nextick-args": {
1089
+ "version": "2.0.1",
1090
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
1091
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
1092
+ },
1093
+ "node_modules/progress": {
1094
+ "version": "1.1.8",
1095
+ "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz",
1096
+ "integrity": "sha512-UdA8mJ4weIkUBO224tIarHzuHs4HuYiJvsuGT7j/SPQiUJVjYvNDBIPa0hAorduOfjGohB/qHWRa/lrrWX/mXw==",
1097
+ "engines": {
1098
+ "node": ">=0.4.0"
1099
+ }
1100
+ },
1101
+ "node_modules/proxy-from-env": {
1102
+ "version": "1.1.0",
1103
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
1104
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
1105
+ },
1106
+ "node_modules/psl": {
1107
+ "version": "1.9.0",
1108
+ "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz",
1109
+ "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="
1110
+ },
1111
+ "node_modules/pump": {
1112
+ "version": "3.0.0",
1113
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
1114
+ "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
1115
+ "dependencies": {
1116
+ "end-of-stream": "^1.1.0",
1117
+ "once": "^1.3.1"
1118
+ }
1119
+ },
1120
+ "node_modules/punycode": {
1121
+ "version": "2.1.1",
1122
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
1123
+ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
1124
+ "engines": {
1125
+ "node": ">=6"
1126
+ }
1127
+ },
1128
+ "node_modules/puppeteer": {
1129
+ "version": "18.0.5",
1130
+ "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.5.tgz",
1131
+ "integrity": "sha512-s4erjxU0VtKojPvF+KvLKG6OHUPw7gO2YV1dtOsoryyCbhrs444fXb4QZqGWuTv3V/rgSCUzeixxu34g0ZkSMA==",
1132
+ "hasInstallScript": true,
1133
+ "dependencies": {
1134
+ "cross-fetch": "3.1.5",
1135
+ "debug": "4.3.4",
1136
+ "devtools-protocol": "0.0.1036444",
1137
+ "extract-zip": "2.0.1",
1138
+ "https-proxy-agent": "5.0.1",
1139
+ "progress": "2.0.3",
1140
+ "proxy-from-env": "1.1.0",
1141
+ "rimraf": "3.0.2",
1142
+ "tar-fs": "2.1.1",
1143
+ "unbzip2-stream": "1.4.3",
1144
+ "ws": "8.8.1"
1145
+ },
1146
+ "engines": {
1147
+ "node": ">=14.1.0"
1148
+ }
1149
+ },
1150
+ "node_modules/puppeteer/node_modules/debug": {
1151
+ "version": "4.3.4",
1152
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
1153
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
1154
+ "dependencies": {
1155
+ "ms": "2.1.2"
1156
+ },
1157
+ "engines": {
1158
+ "node": ">=6.0"
1159
+ },
1160
+ "peerDependenciesMeta": {
1161
+ "supports-color": {
1162
+ "optional": true
1163
+ }
1164
+ }
1165
+ },
1166
+ "node_modules/puppeteer/node_modules/extract-zip": {
1167
+ "version": "2.0.1",
1168
+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
1169
+ "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
1170
+ "dependencies": {
1171
+ "debug": "^4.1.1",
1172
+ "get-stream": "^5.1.0",
1173
+ "yauzl": "^2.10.0"
1174
+ },
1175
+ "bin": {
1176
+ "extract-zip": "cli.js"
1177
+ },
1178
+ "engines": {
1179
+ "node": ">= 10.17.0"
1180
+ },
1181
+ "optionalDependencies": {
1182
+ "@types/yauzl": "^2.9.1"
1183
+ }
1184
+ },
1185
+ "node_modules/puppeteer/node_modules/get-stream": {
1186
+ "version": "5.2.0",
1187
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
1188
+ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
1189
+ "dependencies": {
1190
+ "pump": "^3.0.0"
1191
+ },
1192
+ "engines": {
1193
+ "node": ">=8"
1194
+ },
1195
+ "funding": {
1196
+ "url": "https://github.com/sponsors/sindresorhus"
1197
+ }
1198
+ },
1199
+ "node_modules/puppeteer/node_modules/ms": {
1200
+ "version": "2.1.2",
1201
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
1202
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
1203
+ },
1204
+ "node_modules/puppeteer/node_modules/progress": {
1205
+ "version": "2.0.3",
1206
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
1207
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
1208
+ "engines": {
1209
+ "node": ">=0.4.0"
1210
+ }
1211
+ },
1212
+ "node_modules/qs": {
1213
+ "version": "6.5.3",
1214
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz",
1215
+ "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==",
1216
+ "engines": {
1217
+ "node": ">=0.6"
1218
+ }
1219
+ },
1220
+ "node_modules/quick-lru": {
1221
+ "version": "5.1.1",
1222
+ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
1223
+ "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
1224
+ "engines": {
1225
+ "node": ">=10"
1226
+ },
1227
+ "funding": {
1228
+ "url": "https://github.com/sponsors/sindresorhus"
1229
+ }
1230
+ },
1231
+ "node_modules/readable-stream": {
1232
+ "version": "2.3.7",
1233
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
1234
+ "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
1235
+ "dependencies": {
1236
+ "core-util-is": "~1.0.0",
1237
+ "inherits": "~2.0.3",
1238
+ "isarray": "~1.0.0",
1239
+ "process-nextick-args": "~2.0.0",
1240
+ "safe-buffer": "~5.1.1",
1241
+ "string_decoder": "~1.1.1",
1242
+ "util-deprecate": "~1.0.1"
1243
+ }
1244
+ },
1245
+ "node_modules/request": {
1246
+ "version": "2.88.2",
1247
+ "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
1248
+ "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
1249
+ "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142",
1250
+ "dependencies": {
1251
+ "aws-sign2": "~0.7.0",
1252
+ "aws4": "^1.8.0",
1253
+ "caseless": "~0.12.0",
1254
+ "combined-stream": "~1.0.6",
1255
+ "extend": "~3.0.2",
1256
+ "forever-agent": "~0.6.1",
1257
+ "form-data": "~2.3.2",
1258
+ "har-validator": "~5.1.3",
1259
+ "http-signature": "~1.2.0",
1260
+ "is-typedarray": "~1.0.0",
1261
+ "isstream": "~0.1.2",
1262
+ "json-stringify-safe": "~5.0.1",
1263
+ "mime-types": "~2.1.19",
1264
+ "oauth-sign": "~0.9.0",
1265
+ "performance-now": "^2.1.0",
1266
+ "qs": "~6.5.2",
1267
+ "safe-buffer": "^5.1.2",
1268
+ "tough-cookie": "~2.5.0",
1269
+ "tunnel-agent": "^0.6.0",
1270
+ "uuid": "^3.3.2"
1271
+ },
1272
+ "engines": {
1273
+ "node": ">= 6"
1274
+ }
1275
+ },
1276
+ "node_modules/request-progress": {
1277
+ "version": "2.0.1",
1278
+ "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz",
1279
+ "integrity": "sha512-dxdraeZVUNEn9AvLrxkgB2k6buTlym71dJk1fk4v8j3Ou3RKNm07BcgbHdj2lLgYGfqX71F+awb1MR+tWPFJzA==",
1280
+ "dependencies": {
1281
+ "throttleit": "^1.0.0"
1282
+ }
1283
+ },
1284
+ "node_modules/resolve-alpn": {
1285
+ "version": "1.2.1",
1286
+ "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz",
1287
+ "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="
1288
+ },
1289
+ "node_modules/responselike": {
1290
+ "version": "3.0.0",
1291
+ "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz",
1292
+ "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==",
1293
+ "dependencies": {
1294
+ "lowercase-keys": "^3.0.0"
1295
+ },
1296
+ "engines": {
1297
+ "node": ">=14.16"
1298
+ },
1299
+ "funding": {
1300
+ "url": "https://github.com/sponsors/sindresorhus"
1301
+ }
1302
+ },
1303
+ "node_modules/rimraf": {
1304
+ "version": "3.0.2",
1305
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
1306
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
1307
+ "dependencies": {
1308
+ "glob": "^7.1.3"
1309
+ },
1310
+ "bin": {
1311
+ "rimraf": "bin.js"
1312
+ },
1313
+ "funding": {
1314
+ "url": "https://github.com/sponsors/isaacs"
1315
+ }
1316
+ },
1317
+ "node_modules/safe-buffer": {
1318
+ "version": "5.1.2",
1319
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
1320
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
1321
+ },
1322
+ "node_modules/safer-buffer": {
1323
+ "version": "2.1.2",
1324
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
1325
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
1326
+ },
1327
+ "node_modules/sax": {
1328
+ "version": "1.2.4",
1329
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
1330
+ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
1331
+ },
1332
+ "node_modules/sshpk": {
1333
+ "version": "1.17.0",
1334
+ "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz",
1335
+ "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==",
1336
+ "dependencies": {
1337
+ "asn1": "~0.2.3",
1338
+ "assert-plus": "^1.0.0",
1339
+ "bcrypt-pbkdf": "^1.0.0",
1340
+ "dashdash": "^1.12.0",
1341
+ "ecc-jsbn": "~0.1.1",
1342
+ "getpass": "^0.1.1",
1343
+ "jsbn": "~0.1.0",
1344
+ "safer-buffer": "^2.0.2",
1345
+ "tweetnacl": "~0.14.0"
1346
+ },
1347
+ "bin": {
1348
+ "sshpk-conv": "bin/sshpk-conv",
1349
+ "sshpk-sign": "bin/sshpk-sign",
1350
+ "sshpk-verify": "bin/sshpk-verify"
1351
+ },
1352
+ "engines": {
1353
+ "node": ">=0.10.0"
1354
+ }
1355
+ },
1356
+ "node_modules/string_decoder": {
1357
+ "version": "1.1.1",
1358
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
1359
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
1360
+ "dependencies": {
1361
+ "safe-buffer": "~5.1.0"
1362
+ }
1363
+ },
1364
+ "node_modules/tar-fs": {
1365
+ "version": "2.1.1",
1366
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz",
1367
+ "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==",
1368
+ "dependencies": {
1369
+ "chownr": "^1.1.1",
1370
+ "mkdirp-classic": "^0.5.2",
1371
+ "pump": "^3.0.0",
1372
+ "tar-stream": "^2.1.4"
1373
+ }
1374
+ },
1375
+ "node_modules/tar-stream": {
1376
+ "version": "2.2.0",
1377
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
1378
+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
1379
+ "dependencies": {
1380
+ "bl": "^4.0.3",
1381
+ "end-of-stream": "^1.4.1",
1382
+ "fs-constants": "^1.0.0",
1383
+ "inherits": "^2.0.3",
1384
+ "readable-stream": "^3.1.1"
1385
+ },
1386
+ "engines": {
1387
+ "node": ">=6"
1388
+ }
1389
+ },
1390
+ "node_modules/tar-stream/node_modules/readable-stream": {
1391
+ "version": "3.6.0",
1392
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
1393
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
1394
+ "dependencies": {
1395
+ "inherits": "^2.0.3",
1396
+ "string_decoder": "^1.1.1",
1397
+ "util-deprecate": "^1.0.1"
1398
+ },
1399
+ "engines": {
1400
+ "node": ">= 6"
1401
+ }
1402
+ },
1403
+ "node_modules/throttleit": {
1404
+ "version": "1.0.0",
1405
+ "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz",
1406
+ "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g=="
1407
+ },
1408
+ "node_modules/through": {
1409
+ "version": "2.3.8",
1410
+ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
1411
+ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
1412
+ },
1413
+ "node_modules/tough-cookie": {
1414
+ "version": "2.5.0",
1415
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
1416
+ "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
1417
+ "dependencies": {
1418
+ "psl": "^1.1.28",
1419
+ "punycode": "^2.1.1"
1420
+ },
1421
+ "engines": {
1422
+ "node": ">=0.8"
1423
+ }
1424
+ },
1425
+ "node_modules/tr46": {
1426
+ "version": "0.0.3",
1427
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
1428
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
1429
+ },
1430
+ "node_modules/tunnel-agent": {
1431
+ "version": "0.6.0",
1432
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
1433
+ "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
1434
+ "dependencies": {
1435
+ "safe-buffer": "^5.0.1"
1436
+ },
1437
+ "engines": {
1438
+ "node": "*"
1439
+ }
1440
+ },
1441
+ "node_modules/tweetnacl": {
1442
+ "version": "0.14.5",
1443
+ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
1444
+ "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA=="
1445
+ },
1446
+ "node_modules/typedarray": {
1447
+ "version": "0.0.6",
1448
+ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
1449
+ "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="
1450
+ },
1451
+ "node_modules/unbzip2-stream": {
1452
+ "version": "1.4.3",
1453
+ "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
1454
+ "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
1455
+ "dependencies": {
1456
+ "buffer": "^5.2.1",
1457
+ "through": "^2.3.8"
1458
+ }
1459
+ },
1460
+ "node_modules/uri-js": {
1461
+ "version": "4.4.1",
1462
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
1463
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
1464
+ "dependencies": {
1465
+ "punycode": "^2.1.0"
1466
+ }
1467
+ },
1468
+ "node_modules/util-deprecate": {
1469
+ "version": "1.0.2",
1470
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
1471
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
1472
+ },
1473
+ "node_modules/uuid": {
1474
+ "version": "3.4.0",
1475
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
1476
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
1477
+ "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.",
1478
+ "bin": {
1479
+ "uuid": "bin/uuid"
1480
+ }
1481
+ },
1482
+ "node_modules/verror": {
1483
+ "version": "1.10.0",
1484
+ "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
1485
+ "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==",
1486
+ "engines": [
1487
+ "node >=0.6.0"
1488
+ ],
1489
+ "dependencies": {
1490
+ "assert-plus": "^1.0.0",
1491
+ "core-util-is": "1.0.2",
1492
+ "extsprintf": "^1.2.0"
1493
+ }
1494
+ },
1495
+ "node_modules/verror/node_modules/core-util-is": {
1496
+ "version": "1.0.2",
1497
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
1498
+ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ=="
1499
+ },
1500
+ "node_modules/webidl-conversions": {
1501
+ "version": "3.0.1",
1502
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
1503
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
1504
+ },
1505
+ "node_modules/whatwg-url": {
1506
+ "version": "5.0.0",
1507
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
1508
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
1509
+ "dependencies": {
1510
+ "tr46": "~0.0.3",
1511
+ "webidl-conversions": "^3.0.0"
1512
+ }
1513
+ },
1514
+ "node_modules/which": {
1515
+ "version": "1.3.1",
1516
+ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
1517
+ "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
1518
+ "dependencies": {
1519
+ "isexe": "^2.0.0"
1520
+ },
1521
+ "bin": {
1522
+ "which": "bin/which"
1523
+ }
1524
+ },
1525
+ "node_modules/wrappy": {
1526
+ "version": "1.0.2",
1527
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1528
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
1529
+ },
1530
+ "node_modules/ws": {
1531
+ "version": "8.8.1",
1532
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz",
1533
+ "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==",
1534
+ "engines": {
1535
+ "node": ">=10.0.0"
1536
+ },
1537
+ "peerDependencies": {
1538
+ "bufferutil": "^4.0.1",
1539
+ "utf-8-validate": "^5.0.2"
1540
+ },
1541
+ "peerDependenciesMeta": {
1542
+ "bufferutil": {
1543
+ "optional": true
1544
+ },
1545
+ "utf-8-validate": {
1546
+ "optional": true
1547
+ }
1548
+ }
1549
+ },
1550
+ "node_modules/xml2js": {
1551
+ "version": "0.4.23",
1552
+ "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz",
1553
+ "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==",
1554
+ "dependencies": {
1555
+ "sax": ">=0.6.0",
1556
+ "xmlbuilder": "~11.0.0"
1557
+ },
1558
+ "engines": {
1559
+ "node": ">=4.0.0"
1560
+ }
1561
+ },
1562
+ "node_modules/xmlbuilder": {
1563
+ "version": "11.0.1",
1564
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz",
1565
+ "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==",
1566
+ "engines": {
1567
+ "node": ">=4.0"
1568
+ }
1569
+ },
1570
+ "node_modules/yauzl": {
1571
+ "version": "2.10.0",
1572
+ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
1573
+ "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
1574
+ "dependencies": {
1575
+ "buffer-crc32": "~0.2.3",
1576
+ "fd-slicer": "~1.1.0"
1577
+ }
1578
+ }
1579
+ },
6
1580
  "dependencies": {
1581
+ "@sindresorhus/is": {
1582
+ "version": "5.3.0",
1583
+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz",
1584
+ "integrity": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw=="
1585
+ },
1586
+ "@szmarczak/http-timer": {
1587
+ "version": "5.0.1",
1588
+ "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz",
1589
+ "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==",
1590
+ "requires": {
1591
+ "defer-to-connect": "^2.0.1"
1592
+ }
1593
+ },
1594
+ "@types/http-cache-semantics": {
1595
+ "version": "4.0.1",
1596
+ "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz",
1597
+ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="
1598
+ },
1599
+ "@types/node": {
1600
+ "version": "18.7.23",
1601
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.23.tgz",
1602
+ "integrity": "sha512-DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg==",
1603
+ "optional": true
1604
+ },
1605
+ "@types/yauzl": {
1606
+ "version": "2.10.0",
1607
+ "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz",
1608
+ "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==",
1609
+ "optional": true,
1610
+ "requires": {
1611
+ "@types/node": "*"
1612
+ }
1613
+ },
1614
+ "agent-base": {
1615
+ "version": "6.0.2",
1616
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
1617
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
1618
+ "requires": {
1619
+ "debug": "4"
1620
+ },
1621
+ "dependencies": {
1622
+ "debug": {
1623
+ "version": "4.3.4",
1624
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
1625
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
1626
+ "requires": {
1627
+ "ms": "2.1.2"
1628
+ }
1629
+ },
1630
+ "ms": {
1631
+ "version": "2.1.2",
1632
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
1633
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
1634
+ }
1635
+ }
1636
+ },
7
1637
  "ajv": {
8
1638
  "version": "6.12.6",
9
1639
  "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
@@ -58,6 +1688,11 @@
58
1688
  "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
59
1689
  "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
60
1690
  },
1691
+ "base64-js": {
1692
+ "version": "1.5.1",
1693
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
1694
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
1695
+ },
61
1696
  "bcrypt-pbkdf": {
62
1697
  "version": "1.0.2",
63
1698
  "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
@@ -66,6 +1701,28 @@
66
1701
  "tweetnacl": "^0.14.3"
67
1702
  }
68
1703
  },
1704
+ "bl": {
1705
+ "version": "4.1.0",
1706
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
1707
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
1708
+ "requires": {
1709
+ "buffer": "^5.5.0",
1710
+ "inherits": "^2.0.4",
1711
+ "readable-stream": "^3.4.0"
1712
+ },
1713
+ "dependencies": {
1714
+ "readable-stream": {
1715
+ "version": "3.6.0",
1716
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
1717
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
1718
+ "requires": {
1719
+ "inherits": "^2.0.3",
1720
+ "string_decoder": "^1.1.1",
1721
+ "util-deprecate": "^1.0.1"
1722
+ }
1723
+ }
1724
+ }
1725
+ },
69
1726
  "brace-expansion": {
70
1727
  "version": "1.1.11",
71
1728
  "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
@@ -75,6 +1732,15 @@
75
1732
  "concat-map": "0.0.1"
76
1733
  }
77
1734
  },
1735
+ "buffer": {
1736
+ "version": "5.7.1",
1737
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
1738
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
1739
+ "requires": {
1740
+ "base64-js": "^1.3.1",
1741
+ "ieee754": "^1.1.13"
1742
+ }
1743
+ },
78
1744
  "buffer-crc32": {
79
1745
  "version": "0.2.13",
80
1746
  "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
@@ -85,11 +1751,35 @@
85
1751
  "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
86
1752
  "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
87
1753
  },
1754
+ "cacheable-lookup": {
1755
+ "version": "6.1.0",
1756
+ "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-6.1.0.tgz",
1757
+ "integrity": "sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww=="
1758
+ },
1759
+ "cacheable-request": {
1760
+ "version": "10.2.1",
1761
+ "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.1.tgz",
1762
+ "integrity": "sha512-3tLJyBjGuXw1s5gpKFSG3iS4kaKT4id04dZi98wzHQp/8cqZNweBnrF9J+rrlvrf4M53OdtDGNctNHFias8BEA==",
1763
+ "requires": {
1764
+ "@types/http-cache-semantics": "^4.0.1",
1765
+ "get-stream": "^6.0.1",
1766
+ "http-cache-semantics": "^4.1.0",
1767
+ "keyv": "^4.5.0",
1768
+ "mimic-response": "^4.0.0",
1769
+ "normalize-url": "^7.1.0",
1770
+ "responselike": "^3.0.0"
1771
+ }
1772
+ },
88
1773
  "caseless": {
89
1774
  "version": "0.12.0",
90
1775
  "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
91
1776
  "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw=="
92
1777
  },
1778
+ "chownr": {
1779
+ "version": "1.1.4",
1780
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
1781
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="
1782
+ },
93
1783
  "combine-errors": {
94
1784
  "version": "3.0.3",
95
1785
  "resolved": "https://registry.npmjs.org/combine-errors/-/combine-errors-3.0.3.tgz",
@@ -128,6 +1818,14 @@
128
1818
  "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
129
1819
  "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
130
1820
  },
1821
+ "cross-fetch": {
1822
+ "version": "3.1.5",
1823
+ "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz",
1824
+ "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==",
1825
+ "requires": {
1826
+ "node-fetch": "2.6.7"
1827
+ }
1828
+ },
131
1829
  "custom-error-instance": {
132
1830
  "version": "2.1.1",
133
1831
  "resolved": "https://registry.npmjs.org/custom-error-instance/-/custom-error-instance-2.1.1.tgz",
@@ -149,11 +1847,36 @@
149
1847
  "ms": "2.0.0"
150
1848
  }
151
1849
  },
1850
+ "decompress-response": {
1851
+ "version": "6.0.0",
1852
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
1853
+ "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
1854
+ "requires": {
1855
+ "mimic-response": "^3.1.0"
1856
+ },
1857
+ "dependencies": {
1858
+ "mimic-response": {
1859
+ "version": "3.1.0",
1860
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
1861
+ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="
1862
+ }
1863
+ }
1864
+ },
1865
+ "defer-to-connect": {
1866
+ "version": "2.0.1",
1867
+ "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
1868
+ "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg=="
1869
+ },
152
1870
  "delayed-stream": {
153
1871
  "version": "1.0.0",
154
1872
  "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
155
1873
  "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
156
1874
  },
1875
+ "devtools-protocol": {
1876
+ "version": "0.0.1036444",
1877
+ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1036444.tgz",
1878
+ "integrity": "sha512-0y4f/T8H9lsESV9kKP1HDUXgHxCdniFeJh6Erq+FbdOEvp/Ydp9t8kcAAM5gOd17pMrTDlFWntoHtzzeTUWKNw=="
1879
+ },
157
1880
  "ecc-jsbn": {
158
1881
  "version": "0.1.2",
159
1882
  "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
@@ -163,6 +1886,14 @@
163
1886
  "safer-buffer": "^2.1.0"
164
1887
  }
165
1888
  },
1889
+ "end-of-stream": {
1890
+ "version": "1.4.4",
1891
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
1892
+ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
1893
+ "requires": {
1894
+ "once": "^1.4.0"
1895
+ }
1896
+ },
166
1897
  "es6-promise": {
167
1898
  "version": "4.2.8",
168
1899
  "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
@@ -232,6 +1963,16 @@
232
1963
  "mime-types": "^2.1.12"
233
1964
  }
234
1965
  },
1966
+ "form-data-encoder": {
1967
+ "version": "2.1.2",
1968
+ "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.2.tgz",
1969
+ "integrity": "sha512-FCaIOVTRA9E0siY6FeXid7D5yrCqpsErplUkE2a1BEiKj1BE9z6FbKB4ntDTwC4NVLie9p+4E9nX4mWwEOT05A=="
1970
+ },
1971
+ "fs-constants": {
1972
+ "version": "1.0.0",
1973
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
1974
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
1975
+ },
235
1976
  "fs-extra": {
236
1977
  "version": "1.0.0",
237
1978
  "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz",
@@ -247,6 +1988,11 @@
247
1988
  "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
248
1989
  "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
249
1990
  },
1991
+ "get-stream": {
1992
+ "version": "6.0.1",
1993
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
1994
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="
1995
+ },
250
1996
  "getpass": {
251
1997
  "version": "0.1.7",
252
1998
  "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
@@ -268,6 +2014,24 @@
268
2014
  "path-is-absolute": "^1.0.0"
269
2015
  }
270
2016
  },
2017
+ "got": {
2018
+ "version": "12.5.0",
2019
+ "resolved": "https://registry.npmjs.org/got/-/got-12.5.0.tgz",
2020
+ "integrity": "sha512-/Bneo/L6bLN1wDyJCeRZ3CLoixvwb9v3rE3IHulFSfTHwP85xSr4QatA8K0c6GlL5+mc4IZ57BzluNZJiXvHIg==",
2021
+ "requires": {
2022
+ "@sindresorhus/is": "^5.2.0",
2023
+ "@szmarczak/http-timer": "^5.0.1",
2024
+ "cacheable-lookup": "^6.0.4",
2025
+ "cacheable-request": "^10.1.2",
2026
+ "decompress-response": "^6.0.0",
2027
+ "form-data-encoder": "^2.1.2",
2028
+ "get-stream": "^6.0.1",
2029
+ "http2-wrapper": "^2.1.10",
2030
+ "lowercase-keys": "^3.0.0",
2031
+ "p-cancelable": "^3.0.0",
2032
+ "responselike": "^3.0.0"
2033
+ }
2034
+ },
271
2035
  "graceful-fs": {
272
2036
  "version": "4.2.10",
273
2037
  "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
@@ -297,21 +2061,26 @@
297
2061
  }
298
2062
  },
299
2063
  "html-snapshots": {
300
- "version": "0.18.2",
301
- "resolved": "https://registry.npmjs.org/html-snapshots/-/html-snapshots-0.18.2.tgz",
302
- "integrity": "sha512-92ddr6KWKWZZAcY6sV1dg+LIXYWN4UVFBe4Yumx+hs3U66ecUY3fMtQM72CJhBTA5xrQjzLO6EDhwn8o59zwEg==",
2064
+ "version": "git+ssh://git@github.com/localnerve/html-snapshots.git#2b03932d48de3b8eca4a062f3f488cfea7de2ca1",
2065
+ "from": "html-snapshots@https://github.com/localnerve/html-snapshots#rc-1.0.0",
303
2066
  "requires": {
304
2067
  "async": "3.2.4",
305
2068
  "async-lock": "1.3.2",
306
2069
  "combine-errors": "3.0.3",
2070
+ "got": "12.5.0",
307
2071
  "lodash": "4.17.21",
308
2072
  "mkdirp": "1.0.4",
309
2073
  "phantomjs-prebuilt": "2.1.16",
310
- "request": "2.88.2",
2074
+ "puppeteer": "^18.0.5",
311
2075
  "rimraf": "3.0.2",
312
2076
  "xml2js": "0.4.23"
313
2077
  }
314
2078
  },
2079
+ "http-cache-semantics": {
2080
+ "version": "4.1.0",
2081
+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
2082
+ "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ=="
2083
+ },
315
2084
  "http-signature": {
316
2085
  "version": "1.2.0",
317
2086
  "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
@@ -322,6 +2091,44 @@
322
2091
  "sshpk": "^1.7.0"
323
2092
  }
324
2093
  },
2094
+ "http2-wrapper": {
2095
+ "version": "2.1.11",
2096
+ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.1.11.tgz",
2097
+ "integrity": "sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==",
2098
+ "requires": {
2099
+ "quick-lru": "^5.1.1",
2100
+ "resolve-alpn": "^1.2.0"
2101
+ }
2102
+ },
2103
+ "https-proxy-agent": {
2104
+ "version": "5.0.1",
2105
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
2106
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
2107
+ "requires": {
2108
+ "agent-base": "6",
2109
+ "debug": "4"
2110
+ },
2111
+ "dependencies": {
2112
+ "debug": {
2113
+ "version": "4.3.4",
2114
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
2115
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
2116
+ "requires": {
2117
+ "ms": "2.1.2"
2118
+ }
2119
+ },
2120
+ "ms": {
2121
+ "version": "2.1.2",
2122
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
2123
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
2124
+ }
2125
+ }
2126
+ },
2127
+ "ieee754": {
2128
+ "version": "1.2.1",
2129
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
2130
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
2131
+ },
325
2132
  "inflight": {
326
2133
  "version": "1.0.6",
327
2134
  "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
@@ -366,6 +2173,11 @@
366
2173
  "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
367
2174
  "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg=="
368
2175
  },
2176
+ "json-buffer": {
2177
+ "version": "3.0.1",
2178
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
2179
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="
2180
+ },
369
2181
  "json-schema": {
370
2182
  "version": "0.4.0",
371
2183
  "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
@@ -405,6 +2217,14 @@
405
2217
  "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz",
406
2218
  "integrity": "sha512-IG6nm0+QtAMdXt9KvbgbGdvY50RSrw+U4sGZg+KlrSKPJEwVE5JVoI3d7RWfSMdBQneRheeAOj3lIjX5VL/9RQ=="
407
2219
  },
2220
+ "keyv": {
2221
+ "version": "4.5.0",
2222
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.0.tgz",
2223
+ "integrity": "sha512-2YvuMsA+jnFGtBareKqgANOEKe1mk3HKiXu2fRmAfyxG0MJAywNhi5ttWA3PMjl4NmpyjZNbFifR2vNjW1znfA==",
2224
+ "requires": {
2225
+ "json-buffer": "3.0.1"
2226
+ }
2227
+ },
408
2228
  "klaw": {
409
2229
  "version": "1.3.1",
410
2230
  "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
@@ -467,6 +2287,11 @@
467
2287
  "lodash._baseuniq": "~4.6.0"
468
2288
  }
469
2289
  },
2290
+ "lowercase-keys": {
2291
+ "version": "3.0.0",
2292
+ "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
2293
+ "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ=="
2294
+ },
470
2295
  "mime-db": {
471
2296
  "version": "1.52.0",
472
2297
  "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
@@ -480,6 +2305,11 @@
480
2305
  "mime-db": "1.52.0"
481
2306
  }
482
2307
  },
2308
+ "mimic-response": {
2309
+ "version": "4.0.0",
2310
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz",
2311
+ "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg=="
2312
+ },
483
2313
  "minimatch": {
484
2314
  "version": "3.1.2",
485
2315
  "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
@@ -498,11 +2328,29 @@
498
2328
  "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
499
2329
  "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
500
2330
  },
2331
+ "mkdirp-classic": {
2332
+ "version": "0.5.3",
2333
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
2334
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="
2335
+ },
501
2336
  "ms": {
502
2337
  "version": "2.0.0",
503
2338
  "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
504
2339
  "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
505
2340
  },
2341
+ "node-fetch": {
2342
+ "version": "2.6.7",
2343
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
2344
+ "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
2345
+ "requires": {
2346
+ "whatwg-url": "^5.0.0"
2347
+ }
2348
+ },
2349
+ "normalize-url": {
2350
+ "version": "7.1.0",
2351
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-7.1.0.tgz",
2352
+ "integrity": "sha512-JgkdydFdLe1E5Q7DpLvKVyBZOOwXYGhIbMbOMm3lJ06XKzaiit+qo1HciO3z3IFklStfarzJHVQf9ZcNPTvZlw=="
2353
+ },
506
2354
  "oauth-sign": {
507
2355
  "version": "0.9.0",
508
2356
  "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
@@ -516,6 +2364,11 @@
516
2364
  "wrappy": "1"
517
2365
  }
518
2366
  },
2367
+ "p-cancelable": {
2368
+ "version": "3.0.0",
2369
+ "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
2370
+ "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw=="
2371
+ },
519
2372
  "path-is-absolute": {
520
2373
  "version": "1.0.1",
521
2374
  "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
@@ -570,21 +2423,97 @@
570
2423
  "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz",
571
2424
  "integrity": "sha512-UdA8mJ4weIkUBO224tIarHzuHs4HuYiJvsuGT7j/SPQiUJVjYvNDBIPa0hAorduOfjGohB/qHWRa/lrrWX/mXw=="
572
2425
  },
2426
+ "proxy-from-env": {
2427
+ "version": "1.1.0",
2428
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
2429
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
2430
+ },
573
2431
  "psl": {
574
2432
  "version": "1.9.0",
575
2433
  "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz",
576
2434
  "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="
577
2435
  },
2436
+ "pump": {
2437
+ "version": "3.0.0",
2438
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
2439
+ "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
2440
+ "requires": {
2441
+ "end-of-stream": "^1.1.0",
2442
+ "once": "^1.3.1"
2443
+ }
2444
+ },
578
2445
  "punycode": {
579
2446
  "version": "2.1.1",
580
2447
  "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
581
2448
  "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
582
2449
  },
2450
+ "puppeteer": {
2451
+ "version": "18.0.5",
2452
+ "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.5.tgz",
2453
+ "integrity": "sha512-s4erjxU0VtKojPvF+KvLKG6OHUPw7gO2YV1dtOsoryyCbhrs444fXb4QZqGWuTv3V/rgSCUzeixxu34g0ZkSMA==",
2454
+ "requires": {
2455
+ "cross-fetch": "3.1.5",
2456
+ "debug": "4.3.4",
2457
+ "devtools-protocol": "0.0.1036444",
2458
+ "extract-zip": "2.0.1",
2459
+ "https-proxy-agent": "5.0.1",
2460
+ "progress": "2.0.3",
2461
+ "proxy-from-env": "1.1.0",
2462
+ "rimraf": "3.0.2",
2463
+ "tar-fs": "2.1.1",
2464
+ "unbzip2-stream": "1.4.3",
2465
+ "ws": "8.8.1"
2466
+ },
2467
+ "dependencies": {
2468
+ "debug": {
2469
+ "version": "4.3.4",
2470
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
2471
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
2472
+ "requires": {
2473
+ "ms": "2.1.2"
2474
+ }
2475
+ },
2476
+ "extract-zip": {
2477
+ "version": "2.0.1",
2478
+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
2479
+ "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
2480
+ "requires": {
2481
+ "@types/yauzl": "^2.9.1",
2482
+ "debug": "^4.1.1",
2483
+ "get-stream": "^5.1.0",
2484
+ "yauzl": "^2.10.0"
2485
+ }
2486
+ },
2487
+ "get-stream": {
2488
+ "version": "5.2.0",
2489
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
2490
+ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
2491
+ "requires": {
2492
+ "pump": "^3.0.0"
2493
+ }
2494
+ },
2495
+ "ms": {
2496
+ "version": "2.1.2",
2497
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
2498
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
2499
+ },
2500
+ "progress": {
2501
+ "version": "2.0.3",
2502
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
2503
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
2504
+ }
2505
+ }
2506
+ },
583
2507
  "qs": {
584
2508
  "version": "6.5.3",
585
2509
  "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz",
586
2510
  "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA=="
587
2511
  },
2512
+ "quick-lru": {
2513
+ "version": "5.1.1",
2514
+ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
2515
+ "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="
2516
+ },
588
2517
  "readable-stream": {
589
2518
  "version": "2.3.7",
590
2519
  "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
@@ -634,6 +2563,19 @@
634
2563
  "throttleit": "^1.0.0"
635
2564
  }
636
2565
  },
2566
+ "resolve-alpn": {
2567
+ "version": "1.2.1",
2568
+ "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz",
2569
+ "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="
2570
+ },
2571
+ "responselike": {
2572
+ "version": "3.0.0",
2573
+ "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz",
2574
+ "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==",
2575
+ "requires": {
2576
+ "lowercase-keys": "^3.0.0"
2577
+ }
2578
+ },
637
2579
  "rimraf": {
638
2580
  "version": "3.0.2",
639
2581
  "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
@@ -681,11 +2623,51 @@
681
2623
  "safe-buffer": "~5.1.0"
682
2624
  }
683
2625
  },
2626
+ "tar-fs": {
2627
+ "version": "2.1.1",
2628
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz",
2629
+ "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==",
2630
+ "requires": {
2631
+ "chownr": "^1.1.1",
2632
+ "mkdirp-classic": "^0.5.2",
2633
+ "pump": "^3.0.0",
2634
+ "tar-stream": "^2.1.4"
2635
+ }
2636
+ },
2637
+ "tar-stream": {
2638
+ "version": "2.2.0",
2639
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
2640
+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
2641
+ "requires": {
2642
+ "bl": "^4.0.3",
2643
+ "end-of-stream": "^1.4.1",
2644
+ "fs-constants": "^1.0.0",
2645
+ "inherits": "^2.0.3",
2646
+ "readable-stream": "^3.1.1"
2647
+ },
2648
+ "dependencies": {
2649
+ "readable-stream": {
2650
+ "version": "3.6.0",
2651
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
2652
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
2653
+ "requires": {
2654
+ "inherits": "^2.0.3",
2655
+ "string_decoder": "^1.1.1",
2656
+ "util-deprecate": "^1.0.1"
2657
+ }
2658
+ }
2659
+ }
2660
+ },
684
2661
  "throttleit": {
685
2662
  "version": "1.0.0",
686
2663
  "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz",
687
2664
  "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g=="
688
2665
  },
2666
+ "through": {
2667
+ "version": "2.3.8",
2668
+ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
2669
+ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
2670
+ },
689
2671
  "tough-cookie": {
690
2672
  "version": "2.5.0",
691
2673
  "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
@@ -695,6 +2677,11 @@
695
2677
  "punycode": "^2.1.1"
696
2678
  }
697
2679
  },
2680
+ "tr46": {
2681
+ "version": "0.0.3",
2682
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
2683
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
2684
+ },
698
2685
  "tunnel-agent": {
699
2686
  "version": "0.6.0",
700
2687
  "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
@@ -713,6 +2700,15 @@
713
2700
  "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
714
2701
  "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="
715
2702
  },
2703
+ "unbzip2-stream": {
2704
+ "version": "1.4.3",
2705
+ "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
2706
+ "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
2707
+ "requires": {
2708
+ "buffer": "^5.2.1",
2709
+ "through": "^2.3.8"
2710
+ }
2711
+ },
716
2712
  "uri-js": {
717
2713
  "version": "4.4.1",
718
2714
  "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
@@ -748,6 +2744,20 @@
748
2744
  }
749
2745
  }
750
2746
  },
2747
+ "webidl-conversions": {
2748
+ "version": "3.0.1",
2749
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
2750
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
2751
+ },
2752
+ "whatwg-url": {
2753
+ "version": "5.0.0",
2754
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
2755
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
2756
+ "requires": {
2757
+ "tr46": "~0.0.3",
2758
+ "webidl-conversions": "^3.0.0"
2759
+ }
2760
+ },
751
2761
  "which": {
752
2762
  "version": "1.3.1",
753
2763
  "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
@@ -761,6 +2771,12 @@
761
2771
  "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
762
2772
  "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
763
2773
  },
2774
+ "ws": {
2775
+ "version": "8.8.1",
2776
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz",
2777
+ "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==",
2778
+ "requires": {}
2779
+ },
764
2780
  "xml2js": {
765
2781
  "version": "0.4.23",
766
2782
  "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz",