@camperaid/watest 2.4.6 → 2.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierrc.js +1 -3
- package/.watestrc.js +1 -3
- package/bin/watest.js +3 -8
- package/core/base.js +79 -56
- package/core/core.js +25 -45
- package/core/format.js +96 -56
- package/core/process_args.js +1 -5
- package/core/series.js +60 -56
- package/core/settings.js +27 -32
- package/core/spawn.js +14 -21
- package/core/util.js +12 -19
- package/eslint.config.js +27 -0
- package/index.js +15 -17
- package/interfaces/logger.js +1 -3
- package/interfaces/servicer.js +1 -3
- package/logging/filestream.js +3 -7
- package/logging/logging.js +5 -11
- package/logging/logpipe.js +21 -21
- package/package.json +12 -11
- package/tests/base/t_api.js +3 -6
- package/tests/base/t_contains.js +12 -12
- package/tests/base/t_core.js +11 -8
- package/tests/base/t_format.js +13 -14
- package/tests/base/t_is.js +9 -11
- package/tests/base/t_is_object.js +23 -25
- package/tests/base/t_is_primitive.js +12 -14
- package/tests/base/t_is_string.js +6 -8
- package/tests/base/t_ok.js +4 -6
- package/tests/base/t_stringify.js +6 -8
- package/tests/base/t_test_.js +3 -5
- package/tests/base/t_throws.js +73 -0
- package/tests/base/test.js +8 -18
- package/tests/e2e/samples/{loader/.watestrc.cjs → folder/.watestrc.js} +1 -1
- package/tests/e2e/samples/folder/package-lock.json +1019 -5940
- package/tests/e2e/samples/folder/package.json +3 -2
- package/tests/e2e/samples/folder/tests/meta.js +1 -1
- package/tests/e2e/samples/folder/tests/unit/t_test.js +3 -3
- package/tests/e2e/samples/{loader_mixed/.watestrc.cjs → loader/.watestrc.js} +1 -1
- package/tests/e2e/samples/loader/package-lock.json +1751 -28
- package/tests/e2e/samples/loader/package.json +2 -2
- package/tests/e2e/samples/{folder/.watestrc.cjs → loader_mixed/.watestrc.js} +1 -1
- package/tests/e2e/samples/loader_mixed/package-lock.json +1751 -28
- package/tests/e2e/samples/loader_multiple/{.watestrc.cjs → .watestrc.js} +1 -1
- package/tests/e2e/samples/loader_multiple/package-lock.json +1751 -28
- package/tests/e2e/samples/loader_multiple/package.json +2 -2
- package/tests/e2e/samples/single/.watestrc.js +5 -0
- package/tests/e2e/samples/single/package-lock.json +1017 -5938
- package/tests/e2e/samples/single/package.json +5 -2
- package/tests/e2e/samples/wd_mixed/{.watestrc.cjs → .watestrc.js} +1 -1
- package/tests/e2e/samples/wd_mixed/package-lock.json +779 -4862
- package/tests/e2e/samples/wd_mixed/package.json +2 -2
- package/tests/e2e/samples/wd_single/{.watestrc.cjs → .watestrc.js} +1 -1
- package/tests/e2e/samples/wd_single/package-lock.json +779 -4862
- package/tests/e2e/samples/wd_single/package.json +2 -2
- package/tests/e2e/t_folder.js +4 -6
- package/tests/e2e/t_loader.js +4 -6
- package/tests/e2e/t_loader_mixed.js +4 -6
- package/tests/e2e/t_loader_multiple.js +4 -6
- package/tests/e2e/t_loader_multiple_patterns.js +4 -6
- package/tests/e2e/t_single.js +4 -6
- package/tests/e2e/t_wd_firefox.js +4 -6
- package/tests/e2e/t_wd_firefox_chrome.js +4 -6
- package/tests/e2e/t_wd_firefox_chrome_pattern.js +4 -6
- package/tests/e2e/t_wd_mixed_firefox.js +4 -6
- package/tests/e2e/t_wd_mixed_firefox_chrome.js +4 -6
- package/tests/e2e/test.js +15 -16
- package/tests/meta.js +1 -3
- package/tests/series/build/t_adjust_names.js +4 -6
- package/tests/series/build/t_adjust_names_webdriver.js +6 -10
- package/tests/series/build/t_expected_failures.js +4 -6
- package/tests/series/build/t_loader.js +4 -6
- package/tests/series/build/t_loader_mixed.js +4 -6
- package/tests/series/build/t_mixed.js +4 -6
- package/tests/series/build/t_nested.js +4 -6
- package/tests/series/build/t_patterns_loader.js +4 -6
- package/tests/series/build/t_patterns_webdriver.js +4 -6
- package/tests/series/build/t_webdriver.js +4 -6
- package/tests/series/build/t_webdriver_firefox_mixed.js +4 -6
- package/tests/series/build/t_webdriver_nested.js +4 -6
- package/tests/series/build/t_webdriver_services.js +4 -6
- package/tests/series/generic/t_failures_info.js +9 -12
- package/tests/series/logging/t_failures.js +18 -20
- package/tests/series/logging/t_success.js +15 -17
- package/tests/series/logging/t_verify.js +17 -14
- package/tests/series/meta.js +1 -3
- package/tests/series/mock_series.js +7 -13
- package/tests/series/perform/t_failure.js +4 -6
- package/tests/series/perform/t_failure_notest.js +4 -6
- package/tests/series/perform/t_intermittent.js +5 -7
- package/tests/series/perform/t_intermittent_global.js +4 -6
- package/tests/series/perform/t_missing_perma.js +5 -7
- package/tests/series/perform/t_nested.js +4 -10
- package/tests/series/perform/t_perma.js +4 -6
- package/tests/series/perform/t_success.js +5 -11
- package/tests/series/run/t_debunk_failure.js +7 -6
- package/tests/series/run/t_debunk_success.js +7 -6
- package/tests/series/run/t_nested.js +7 -6
- package/tests/series/run/t_verify.js +7 -6
- package/tests/series/run/t_verify_webdriver.js +7 -6
- package/tests/series/test.js +29 -40
- package/tests/webdriver/meta.js +1 -3
- package/tests/webdriver/t_app_driver.js +3 -5
- package/tests/webdriver/t_app_driver_selectors.js +3 -5
- package/tests/webdriver/t_attribute.js +5 -7
- package/tests/webdriver/t_attribute_all.js +6 -8
- package/tests/webdriver/t_doubleclick.js +3 -5
- package/tests/webdriver/t_doubleclickat.js +3 -5
- package/tests/webdriver/t_execute.js +4 -6
- package/tests/webdriver/t_if_has_elements.js +6 -8
- package/tests/webdriver/t_if_no_elements.js +6 -8
- package/tests/webdriver/t_no_elements_or_not_visible.js +7 -9
- package/tests/webdriver/t_properties.js +11 -13
- package/tests/webdriver/t_script.js +8 -10
- package/tests/webdriver/t_select_all.js +6 -11
- package/tests/webdriver/t_selection.js +4 -6
- package/tests/webdriver/t_text.js +12 -14
- package/tests/webdriver/t_text_all.js +6 -8
- package/tests/webdriver/test.js +32 -41
- package/webdriver/app_driver.js +15 -19
- package/webdriver/control_driver.js +4 -8
- package/webdriver/driver.js +58 -61
- package/webdriver/driver_base.js +50 -60
- package/webdriver/session.js +6 -11
- package/webdriver/util.js +7 -8
- package/.eslintrc.js +0 -45
- package/index.mjs +0 -5
- package/tests/e2e/samples/folder/node_modules/.package-lock.json +0 -3871
- package/tests/e2e/samples/loader/node_modules/.package-lock.json +0 -36
- package/tests/e2e/samples/loader_mixed/node_modules/.package-lock.json +0 -36
- package/tests/e2e/samples/loader_multiple/node_modules/.package-lock.json +0 -36
- package/tests/e2e/samples/single/.watestrc.cjs +0 -5
- package/tests/e2e/samples/single/node_modules/.package-lock.json +0 -3871
- package/tests/e2e/samples/wd_mixed/node_modules/.package-lock.json +0 -3586
- package/tests/e2e/samples/wd_single/node_modules/.package-lock.json +0 -3586
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camperaid/watest/e2e/loader_multiple",
|
|
3
3
|
"version": "0.0.1",
|
|
4
|
-
"lockfileVersion":
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
@@ -16,46 +16,1769 @@
|
|
|
16
16
|
},
|
|
17
17
|
"../../../..": {
|
|
18
18
|
"name": "@camperaid/watest",
|
|
19
|
+
"version": "2.4.8",
|
|
20
|
+
"dev": true,
|
|
21
|
+
"license": "MPL",
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"selenium-webdriver": "^4.23.0"
|
|
24
|
+
},
|
|
25
|
+
"bin": {
|
|
26
|
+
"watest": "bin/watest.js"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@eslint/js": "^9.8.0",
|
|
30
|
+
"dotenv": "^16.4.5",
|
|
31
|
+
"eslint": "^9.8.0",
|
|
32
|
+
"eslint-plugin-n": "^17.10.1",
|
|
33
|
+
"husky": "^9.1.4",
|
|
34
|
+
"lint-staged": "^15.2.7",
|
|
35
|
+
"prettier": "^3.3.3"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=20.16.0"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"../../../../node_modules/@bazel/runfiles": {
|
|
42
|
+
"version": "5.8.1",
|
|
43
|
+
"dev": true,
|
|
44
|
+
"license": "Apache-2.0"
|
|
45
|
+
},
|
|
46
|
+
"../../../../node_modules/@eslint-community/eslint-utils": {
|
|
47
|
+
"version": "4.4.0",
|
|
48
|
+
"dev": true,
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"eslint-visitor-keys": "^3.3.0"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"../../../../node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
|
|
61
|
+
"version": "3.4.3",
|
|
62
|
+
"dev": true,
|
|
63
|
+
"license": "Apache-2.0",
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
66
|
+
},
|
|
67
|
+
"funding": {
|
|
68
|
+
"url": "https://opencollective.com/eslint"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"../../../../node_modules/@eslint-community/regexpp": {
|
|
72
|
+
"version": "4.11.0",
|
|
73
|
+
"dev": true,
|
|
74
|
+
"license": "MIT",
|
|
75
|
+
"engines": {
|
|
76
|
+
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"../../../../node_modules/@eslint/config-array": {
|
|
80
|
+
"version": "0.17.1",
|
|
81
|
+
"dev": true,
|
|
82
|
+
"license": "Apache-2.0",
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"@eslint/object-schema": "^2.1.4",
|
|
85
|
+
"debug": "^4.3.1",
|
|
86
|
+
"minimatch": "^3.1.2"
|
|
87
|
+
},
|
|
88
|
+
"engines": {
|
|
89
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"../../../../node_modules/@eslint/eslintrc": {
|
|
93
|
+
"version": "3.1.0",
|
|
94
|
+
"dev": true,
|
|
95
|
+
"license": "MIT",
|
|
96
|
+
"dependencies": {
|
|
97
|
+
"ajv": "^6.12.4",
|
|
98
|
+
"debug": "^4.3.2",
|
|
99
|
+
"espree": "^10.0.1",
|
|
100
|
+
"globals": "^14.0.0",
|
|
101
|
+
"ignore": "^5.2.0",
|
|
102
|
+
"import-fresh": "^3.2.1",
|
|
103
|
+
"js-yaml": "^4.1.0",
|
|
104
|
+
"minimatch": "^3.1.2",
|
|
105
|
+
"strip-json-comments": "^3.1.1"
|
|
106
|
+
},
|
|
107
|
+
"engines": {
|
|
108
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
109
|
+
},
|
|
110
|
+
"funding": {
|
|
111
|
+
"url": "https://opencollective.com/eslint"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"../../../../node_modules/@eslint/js": {
|
|
115
|
+
"version": "9.8.0",
|
|
116
|
+
"dev": true,
|
|
117
|
+
"license": "MIT",
|
|
118
|
+
"engines": {
|
|
119
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"../../../../node_modules/@eslint/object-schema": {
|
|
123
|
+
"version": "2.1.4",
|
|
124
|
+
"dev": true,
|
|
125
|
+
"license": "Apache-2.0",
|
|
126
|
+
"engines": {
|
|
127
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"../../../../node_modules/@humanwhocodes/module-importer": {
|
|
131
|
+
"version": "1.0.1",
|
|
132
|
+
"dev": true,
|
|
133
|
+
"license": "Apache-2.0",
|
|
134
|
+
"engines": {
|
|
135
|
+
"node": ">=12.22"
|
|
136
|
+
},
|
|
137
|
+
"funding": {
|
|
138
|
+
"type": "github",
|
|
139
|
+
"url": "https://github.com/sponsors/nzakas"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"../../../../node_modules/@humanwhocodes/retry": {
|
|
143
|
+
"version": "0.3.0",
|
|
144
|
+
"dev": true,
|
|
145
|
+
"license": "Apache-2.0",
|
|
146
|
+
"engines": {
|
|
147
|
+
"node": ">=18.18"
|
|
148
|
+
},
|
|
149
|
+
"funding": {
|
|
150
|
+
"type": "github",
|
|
151
|
+
"url": "https://github.com/sponsors/nzakas"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"../../../../node_modules/@nodelib/fs.scandir": {
|
|
155
|
+
"version": "2.1.5",
|
|
156
|
+
"dev": true,
|
|
157
|
+
"license": "MIT",
|
|
158
|
+
"dependencies": {
|
|
159
|
+
"@nodelib/fs.stat": "2.0.5",
|
|
160
|
+
"run-parallel": "^1.1.9"
|
|
161
|
+
},
|
|
162
|
+
"engines": {
|
|
163
|
+
"node": ">= 8"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"../../../../node_modules/@nodelib/fs.stat": {
|
|
167
|
+
"version": "2.0.5",
|
|
168
|
+
"dev": true,
|
|
169
|
+
"license": "MIT",
|
|
170
|
+
"engines": {
|
|
171
|
+
"node": ">= 8"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"../../../../node_modules/@nodelib/fs.walk": {
|
|
175
|
+
"version": "1.2.8",
|
|
176
|
+
"dev": true,
|
|
177
|
+
"license": "MIT",
|
|
178
|
+
"dependencies": {
|
|
179
|
+
"@nodelib/fs.scandir": "2.1.5",
|
|
180
|
+
"fastq": "^1.6.0"
|
|
181
|
+
},
|
|
182
|
+
"engines": {
|
|
183
|
+
"node": ">= 8"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"../../../../node_modules/acorn": {
|
|
187
|
+
"version": "8.12.1",
|
|
188
|
+
"dev": true,
|
|
189
|
+
"license": "MIT",
|
|
190
|
+
"bin": {
|
|
191
|
+
"acorn": "bin/acorn"
|
|
192
|
+
},
|
|
193
|
+
"engines": {
|
|
194
|
+
"node": ">=0.4.0"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"../../../../node_modules/acorn-jsx": {
|
|
198
|
+
"version": "5.3.2",
|
|
199
|
+
"dev": true,
|
|
200
|
+
"license": "MIT",
|
|
201
|
+
"peerDependencies": {
|
|
202
|
+
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"../../../../node_modules/ajv": {
|
|
206
|
+
"version": "6.12.6",
|
|
207
|
+
"dev": true,
|
|
208
|
+
"license": "MIT",
|
|
209
|
+
"dependencies": {
|
|
210
|
+
"fast-deep-equal": "^3.1.1",
|
|
211
|
+
"fast-json-stable-stringify": "^2.0.0",
|
|
212
|
+
"json-schema-traverse": "^0.4.1",
|
|
213
|
+
"uri-js": "^4.2.2"
|
|
214
|
+
},
|
|
215
|
+
"funding": {
|
|
216
|
+
"type": "github",
|
|
217
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"../../../../node_modules/ansi-escapes": {
|
|
221
|
+
"version": "7.0.0",
|
|
222
|
+
"dev": true,
|
|
223
|
+
"license": "MIT",
|
|
224
|
+
"dependencies": {
|
|
225
|
+
"environment": "^1.0.0"
|
|
226
|
+
},
|
|
227
|
+
"engines": {
|
|
228
|
+
"node": ">=18"
|
|
229
|
+
},
|
|
230
|
+
"funding": {
|
|
231
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"../../../../node_modules/ansi-regex": {
|
|
235
|
+
"version": "5.0.1",
|
|
236
|
+
"dev": true,
|
|
237
|
+
"license": "MIT",
|
|
238
|
+
"engines": {
|
|
239
|
+
"node": ">=8"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"../../../../node_modules/ansi-styles": {
|
|
243
|
+
"version": "4.3.0",
|
|
244
|
+
"dev": true,
|
|
245
|
+
"license": "MIT",
|
|
246
|
+
"dependencies": {
|
|
247
|
+
"color-convert": "^2.0.1"
|
|
248
|
+
},
|
|
249
|
+
"engines": {
|
|
250
|
+
"node": ">=8"
|
|
251
|
+
},
|
|
252
|
+
"funding": {
|
|
253
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"../../../../node_modules/argparse": {
|
|
257
|
+
"version": "2.0.1",
|
|
258
|
+
"dev": true,
|
|
259
|
+
"license": "Python-2.0"
|
|
260
|
+
},
|
|
261
|
+
"../../../../node_modules/balanced-match": {
|
|
262
|
+
"version": "1.0.2",
|
|
263
|
+
"dev": true,
|
|
264
|
+
"license": "MIT"
|
|
265
|
+
},
|
|
266
|
+
"../../../../node_modules/brace-expansion": {
|
|
267
|
+
"version": "1.1.11",
|
|
268
|
+
"dev": true,
|
|
269
|
+
"license": "MIT",
|
|
270
|
+
"dependencies": {
|
|
271
|
+
"balanced-match": "^1.0.0",
|
|
272
|
+
"concat-map": "0.0.1"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"../../../../node_modules/braces": {
|
|
276
|
+
"version": "3.0.3",
|
|
277
|
+
"dev": true,
|
|
278
|
+
"license": "MIT",
|
|
279
|
+
"dependencies": {
|
|
280
|
+
"fill-range": "^7.1.1"
|
|
281
|
+
},
|
|
282
|
+
"engines": {
|
|
283
|
+
"node": ">=8"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"../../../../node_modules/callsites": {
|
|
287
|
+
"version": "3.1.0",
|
|
288
|
+
"dev": true,
|
|
289
|
+
"license": "MIT",
|
|
290
|
+
"engines": {
|
|
291
|
+
"node": ">=6"
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"../../../../node_modules/chalk": {
|
|
295
|
+
"version": "4.1.2",
|
|
296
|
+
"dev": true,
|
|
297
|
+
"license": "MIT",
|
|
298
|
+
"dependencies": {
|
|
299
|
+
"ansi-styles": "^4.1.0",
|
|
300
|
+
"supports-color": "^7.1.0"
|
|
301
|
+
},
|
|
302
|
+
"engines": {
|
|
303
|
+
"node": ">=10"
|
|
304
|
+
},
|
|
305
|
+
"funding": {
|
|
306
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"../../../../node_modules/cli-cursor": {
|
|
310
|
+
"version": "5.0.0",
|
|
311
|
+
"dev": true,
|
|
312
|
+
"license": "MIT",
|
|
313
|
+
"dependencies": {
|
|
314
|
+
"restore-cursor": "^5.0.0"
|
|
315
|
+
},
|
|
316
|
+
"engines": {
|
|
317
|
+
"node": ">=18"
|
|
318
|
+
},
|
|
319
|
+
"funding": {
|
|
320
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
"../../../../node_modules/cli-truncate": {
|
|
324
|
+
"version": "4.0.0",
|
|
325
|
+
"dev": true,
|
|
326
|
+
"license": "MIT",
|
|
327
|
+
"dependencies": {
|
|
328
|
+
"slice-ansi": "^5.0.0",
|
|
329
|
+
"string-width": "^7.0.0"
|
|
330
|
+
},
|
|
331
|
+
"engines": {
|
|
332
|
+
"node": ">=18"
|
|
333
|
+
},
|
|
334
|
+
"funding": {
|
|
335
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"../../../../node_modules/color-convert": {
|
|
339
|
+
"version": "2.0.1",
|
|
340
|
+
"dev": true,
|
|
341
|
+
"license": "MIT",
|
|
342
|
+
"dependencies": {
|
|
343
|
+
"color-name": "~1.1.4"
|
|
344
|
+
},
|
|
345
|
+
"engines": {
|
|
346
|
+
"node": ">=7.0.0"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"../../../../node_modules/color-name": {
|
|
350
|
+
"version": "1.1.4",
|
|
351
|
+
"dev": true,
|
|
352
|
+
"license": "MIT"
|
|
353
|
+
},
|
|
354
|
+
"../../../../node_modules/colorette": {
|
|
355
|
+
"version": "2.0.20",
|
|
356
|
+
"dev": true,
|
|
357
|
+
"license": "MIT"
|
|
358
|
+
},
|
|
359
|
+
"../../../../node_modules/commander": {
|
|
360
|
+
"version": "12.1.0",
|
|
361
|
+
"dev": true,
|
|
362
|
+
"license": "MIT",
|
|
363
|
+
"engines": {
|
|
364
|
+
"node": ">=18"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"../../../../node_modules/concat-map": {
|
|
368
|
+
"version": "0.0.1",
|
|
369
|
+
"dev": true,
|
|
370
|
+
"license": "MIT"
|
|
371
|
+
},
|
|
372
|
+
"../../../../node_modules/core-util-is": {
|
|
373
|
+
"version": "1.0.3",
|
|
374
|
+
"dev": true,
|
|
375
|
+
"license": "MIT"
|
|
376
|
+
},
|
|
377
|
+
"../../../../node_modules/cross-spawn": {
|
|
378
|
+
"version": "7.0.3",
|
|
379
|
+
"dev": true,
|
|
380
|
+
"license": "MIT",
|
|
381
|
+
"dependencies": {
|
|
382
|
+
"path-key": "^3.1.0",
|
|
383
|
+
"shebang-command": "^2.0.0",
|
|
384
|
+
"which": "^2.0.1"
|
|
385
|
+
},
|
|
386
|
+
"engines": {
|
|
387
|
+
"node": ">= 8"
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"../../../../node_modules/debug": {
|
|
391
|
+
"version": "4.3.6",
|
|
392
|
+
"dev": true,
|
|
393
|
+
"license": "MIT",
|
|
394
|
+
"dependencies": {
|
|
395
|
+
"ms": "2.1.2"
|
|
396
|
+
},
|
|
397
|
+
"engines": {
|
|
398
|
+
"node": ">=6.0"
|
|
399
|
+
},
|
|
400
|
+
"peerDependenciesMeta": {
|
|
401
|
+
"supports-color": {
|
|
402
|
+
"optional": true
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"../../../../node_modules/deep-is": {
|
|
407
|
+
"version": "0.1.4",
|
|
408
|
+
"dev": true,
|
|
409
|
+
"license": "MIT"
|
|
410
|
+
},
|
|
411
|
+
"../../../../node_modules/dotenv": {
|
|
412
|
+
"version": "16.4.5",
|
|
413
|
+
"dev": true,
|
|
414
|
+
"license": "BSD-2-Clause",
|
|
415
|
+
"engines": {
|
|
416
|
+
"node": ">=12"
|
|
417
|
+
},
|
|
418
|
+
"funding": {
|
|
419
|
+
"url": "https://dotenvx.com"
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"../../../../node_modules/emoji-regex": {
|
|
423
|
+
"version": "10.3.0",
|
|
424
|
+
"dev": true,
|
|
425
|
+
"license": "MIT"
|
|
426
|
+
},
|
|
427
|
+
"../../../../node_modules/environment": {
|
|
428
|
+
"version": "1.1.0",
|
|
429
|
+
"dev": true,
|
|
430
|
+
"license": "MIT",
|
|
431
|
+
"engines": {
|
|
432
|
+
"node": ">=18"
|
|
433
|
+
},
|
|
434
|
+
"funding": {
|
|
435
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
"../../../../node_modules/escape-string-regexp": {
|
|
439
|
+
"version": "4.0.0",
|
|
440
|
+
"dev": true,
|
|
441
|
+
"license": "MIT",
|
|
442
|
+
"engines": {
|
|
443
|
+
"node": ">=10"
|
|
444
|
+
},
|
|
445
|
+
"funding": {
|
|
446
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
"../../../../node_modules/eslint": {
|
|
450
|
+
"version": "9.8.0",
|
|
451
|
+
"dev": true,
|
|
452
|
+
"license": "MIT",
|
|
453
|
+
"dependencies": {
|
|
454
|
+
"@eslint-community/eslint-utils": "^4.2.0",
|
|
455
|
+
"@eslint-community/regexpp": "^4.11.0",
|
|
456
|
+
"@eslint/config-array": "^0.17.1",
|
|
457
|
+
"@eslint/eslintrc": "^3.1.0",
|
|
458
|
+
"@eslint/js": "9.8.0",
|
|
459
|
+
"@humanwhocodes/module-importer": "^1.0.1",
|
|
460
|
+
"@humanwhocodes/retry": "^0.3.0",
|
|
461
|
+
"@nodelib/fs.walk": "^1.2.8",
|
|
462
|
+
"ajv": "^6.12.4",
|
|
463
|
+
"chalk": "^4.0.0",
|
|
464
|
+
"cross-spawn": "^7.0.2",
|
|
465
|
+
"debug": "^4.3.2",
|
|
466
|
+
"escape-string-regexp": "^4.0.0",
|
|
467
|
+
"eslint-scope": "^8.0.2",
|
|
468
|
+
"eslint-visitor-keys": "^4.0.0",
|
|
469
|
+
"espree": "^10.1.0",
|
|
470
|
+
"esquery": "^1.5.0",
|
|
471
|
+
"esutils": "^2.0.2",
|
|
472
|
+
"fast-deep-equal": "^3.1.3",
|
|
473
|
+
"file-entry-cache": "^8.0.0",
|
|
474
|
+
"find-up": "^5.0.0",
|
|
475
|
+
"glob-parent": "^6.0.2",
|
|
476
|
+
"ignore": "^5.2.0",
|
|
477
|
+
"imurmurhash": "^0.1.4",
|
|
478
|
+
"is-glob": "^4.0.0",
|
|
479
|
+
"is-path-inside": "^3.0.3",
|
|
480
|
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
481
|
+
"levn": "^0.4.1",
|
|
482
|
+
"lodash.merge": "^4.6.2",
|
|
483
|
+
"minimatch": "^3.1.2",
|
|
484
|
+
"natural-compare": "^1.4.0",
|
|
485
|
+
"optionator": "^0.9.3",
|
|
486
|
+
"strip-ansi": "^6.0.1",
|
|
487
|
+
"text-table": "^0.2.0"
|
|
488
|
+
},
|
|
489
|
+
"bin": {
|
|
490
|
+
"eslint": "bin/eslint.js"
|
|
491
|
+
},
|
|
492
|
+
"engines": {
|
|
493
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
494
|
+
},
|
|
495
|
+
"funding": {
|
|
496
|
+
"url": "https://eslint.org/donate"
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
"../../../../node_modules/eslint-scope": {
|
|
500
|
+
"version": "8.0.2",
|
|
501
|
+
"dev": true,
|
|
502
|
+
"license": "BSD-2-Clause",
|
|
503
|
+
"dependencies": {
|
|
504
|
+
"esrecurse": "^4.3.0",
|
|
505
|
+
"estraverse": "^5.2.0"
|
|
506
|
+
},
|
|
507
|
+
"engines": {
|
|
508
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
509
|
+
},
|
|
510
|
+
"funding": {
|
|
511
|
+
"url": "https://opencollective.com/eslint"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"../../../../node_modules/eslint-visitor-keys": {
|
|
515
|
+
"version": "4.0.0",
|
|
516
|
+
"dev": true,
|
|
517
|
+
"license": "Apache-2.0",
|
|
518
|
+
"engines": {
|
|
519
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
520
|
+
},
|
|
521
|
+
"funding": {
|
|
522
|
+
"url": "https://opencollective.com/eslint"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"../../../../node_modules/espree": {
|
|
526
|
+
"version": "10.1.0",
|
|
527
|
+
"dev": true,
|
|
528
|
+
"license": "BSD-2-Clause",
|
|
529
|
+
"dependencies": {
|
|
530
|
+
"acorn": "^8.12.0",
|
|
531
|
+
"acorn-jsx": "^5.3.2",
|
|
532
|
+
"eslint-visitor-keys": "^4.0.0"
|
|
533
|
+
},
|
|
534
|
+
"engines": {
|
|
535
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
536
|
+
},
|
|
537
|
+
"funding": {
|
|
538
|
+
"url": "https://opencollective.com/eslint"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"../../../../node_modules/esquery": {
|
|
542
|
+
"version": "1.6.0",
|
|
543
|
+
"dev": true,
|
|
544
|
+
"license": "BSD-3-Clause",
|
|
545
|
+
"dependencies": {
|
|
546
|
+
"estraverse": "^5.1.0"
|
|
547
|
+
},
|
|
548
|
+
"engines": {
|
|
549
|
+
"node": ">=0.10"
|
|
550
|
+
}
|
|
551
|
+
},
|
|
552
|
+
"../../../../node_modules/esrecurse": {
|
|
553
|
+
"version": "4.3.0",
|
|
554
|
+
"dev": true,
|
|
555
|
+
"license": "BSD-2-Clause",
|
|
556
|
+
"dependencies": {
|
|
557
|
+
"estraverse": "^5.2.0"
|
|
558
|
+
},
|
|
559
|
+
"engines": {
|
|
560
|
+
"node": ">=4.0"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"../../../../node_modules/estraverse": {
|
|
564
|
+
"version": "5.3.0",
|
|
565
|
+
"dev": true,
|
|
566
|
+
"license": "BSD-2-Clause",
|
|
567
|
+
"engines": {
|
|
568
|
+
"node": ">=4.0"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"../../../../node_modules/esutils": {
|
|
572
|
+
"version": "2.0.3",
|
|
573
|
+
"dev": true,
|
|
574
|
+
"license": "BSD-2-Clause",
|
|
575
|
+
"engines": {
|
|
576
|
+
"node": ">=0.10.0"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"../../../../node_modules/eventemitter3": {
|
|
580
|
+
"version": "5.0.1",
|
|
581
|
+
"dev": true,
|
|
582
|
+
"license": "MIT"
|
|
583
|
+
},
|
|
584
|
+
"../../../../node_modules/execa": {
|
|
585
|
+
"version": "8.0.1",
|
|
586
|
+
"dev": true,
|
|
587
|
+
"license": "MIT",
|
|
588
|
+
"dependencies": {
|
|
589
|
+
"cross-spawn": "^7.0.3",
|
|
590
|
+
"get-stream": "^8.0.1",
|
|
591
|
+
"human-signals": "^5.0.0",
|
|
592
|
+
"is-stream": "^3.0.0",
|
|
593
|
+
"merge-stream": "^2.0.0",
|
|
594
|
+
"npm-run-path": "^5.1.0",
|
|
595
|
+
"onetime": "^6.0.0",
|
|
596
|
+
"signal-exit": "^4.1.0",
|
|
597
|
+
"strip-final-newline": "^3.0.0"
|
|
598
|
+
},
|
|
599
|
+
"engines": {
|
|
600
|
+
"node": ">=16.17"
|
|
601
|
+
},
|
|
602
|
+
"funding": {
|
|
603
|
+
"url": "https://github.com/sindresorhus/execa?sponsor=1"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"../../../../node_modules/fast-deep-equal": {
|
|
607
|
+
"version": "3.1.3",
|
|
608
|
+
"dev": true,
|
|
609
|
+
"license": "MIT"
|
|
610
|
+
},
|
|
611
|
+
"../../../../node_modules/fast-json-stable-stringify": {
|
|
612
|
+
"version": "2.1.0",
|
|
613
|
+
"dev": true,
|
|
614
|
+
"license": "MIT"
|
|
615
|
+
},
|
|
616
|
+
"../../../../node_modules/fast-levenshtein": {
|
|
617
|
+
"version": "2.0.6",
|
|
618
|
+
"dev": true,
|
|
619
|
+
"license": "MIT"
|
|
620
|
+
},
|
|
621
|
+
"../../../../node_modules/fastq": {
|
|
622
|
+
"version": "1.17.1",
|
|
623
|
+
"dev": true,
|
|
624
|
+
"license": "ISC",
|
|
625
|
+
"dependencies": {
|
|
626
|
+
"reusify": "^1.0.4"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"../../../../node_modules/file-entry-cache": {
|
|
630
|
+
"version": "8.0.0",
|
|
631
|
+
"dev": true,
|
|
632
|
+
"license": "MIT",
|
|
633
|
+
"dependencies": {
|
|
634
|
+
"flat-cache": "^4.0.0"
|
|
635
|
+
},
|
|
636
|
+
"engines": {
|
|
637
|
+
"node": ">=16.0.0"
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
"../../../../node_modules/fill-range": {
|
|
641
|
+
"version": "7.1.1",
|
|
642
|
+
"dev": true,
|
|
643
|
+
"license": "MIT",
|
|
644
|
+
"dependencies": {
|
|
645
|
+
"to-regex-range": "^5.0.1"
|
|
646
|
+
},
|
|
647
|
+
"engines": {
|
|
648
|
+
"node": ">=8"
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
"../../../../node_modules/find-up": {
|
|
652
|
+
"version": "5.0.0",
|
|
653
|
+
"dev": true,
|
|
654
|
+
"license": "MIT",
|
|
655
|
+
"dependencies": {
|
|
656
|
+
"locate-path": "^6.0.0",
|
|
657
|
+
"path-exists": "^4.0.0"
|
|
658
|
+
},
|
|
659
|
+
"engines": {
|
|
660
|
+
"node": ">=10"
|
|
661
|
+
},
|
|
662
|
+
"funding": {
|
|
663
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
"../../../../node_modules/flat-cache": {
|
|
667
|
+
"version": "4.0.1",
|
|
668
|
+
"dev": true,
|
|
669
|
+
"license": "MIT",
|
|
670
|
+
"dependencies": {
|
|
671
|
+
"flatted": "^3.2.9",
|
|
672
|
+
"keyv": "^4.5.4"
|
|
673
|
+
},
|
|
674
|
+
"engines": {
|
|
675
|
+
"node": ">=16"
|
|
676
|
+
}
|
|
677
|
+
},
|
|
678
|
+
"../../../../node_modules/flatted": {
|
|
679
|
+
"version": "3.3.1",
|
|
680
|
+
"dev": true,
|
|
681
|
+
"license": "ISC"
|
|
682
|
+
},
|
|
683
|
+
"../../../../node_modules/get-east-asian-width": {
|
|
684
|
+
"version": "1.2.0",
|
|
685
|
+
"dev": true,
|
|
686
|
+
"license": "MIT",
|
|
687
|
+
"engines": {
|
|
688
|
+
"node": ">=18"
|
|
689
|
+
},
|
|
690
|
+
"funding": {
|
|
691
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
692
|
+
}
|
|
693
|
+
},
|
|
694
|
+
"../../../../node_modules/get-stream": {
|
|
695
|
+
"version": "8.0.1",
|
|
696
|
+
"dev": true,
|
|
697
|
+
"license": "MIT",
|
|
698
|
+
"engines": {
|
|
699
|
+
"node": ">=16"
|
|
700
|
+
},
|
|
701
|
+
"funding": {
|
|
702
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
703
|
+
}
|
|
704
|
+
},
|
|
705
|
+
"../../../../node_modules/glob-parent": {
|
|
706
|
+
"version": "6.0.2",
|
|
707
|
+
"dev": true,
|
|
708
|
+
"license": "ISC",
|
|
709
|
+
"dependencies": {
|
|
710
|
+
"is-glob": "^4.0.3"
|
|
711
|
+
},
|
|
712
|
+
"engines": {
|
|
713
|
+
"node": ">=10.13.0"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
"../../../../node_modules/globals": {
|
|
717
|
+
"version": "14.0.0",
|
|
718
|
+
"dev": true,
|
|
719
|
+
"license": "MIT",
|
|
720
|
+
"engines": {
|
|
721
|
+
"node": ">=18"
|
|
722
|
+
},
|
|
723
|
+
"funding": {
|
|
724
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
"../../../../node_modules/has-flag": {
|
|
728
|
+
"version": "4.0.0",
|
|
729
|
+
"dev": true,
|
|
730
|
+
"license": "MIT",
|
|
731
|
+
"engines": {
|
|
732
|
+
"node": ">=8"
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
"../../../../node_modules/human-signals": {
|
|
736
|
+
"version": "5.0.0",
|
|
737
|
+
"dev": true,
|
|
738
|
+
"license": "Apache-2.0",
|
|
739
|
+
"engines": {
|
|
740
|
+
"node": ">=16.17.0"
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"../../../../node_modules/husky": {
|
|
744
|
+
"version": "9.1.4",
|
|
745
|
+
"dev": true,
|
|
746
|
+
"license": "MIT",
|
|
747
|
+
"bin": {
|
|
748
|
+
"husky": "bin.js"
|
|
749
|
+
},
|
|
750
|
+
"engines": {
|
|
751
|
+
"node": ">=18"
|
|
752
|
+
},
|
|
753
|
+
"funding": {
|
|
754
|
+
"url": "https://github.com/sponsors/typicode"
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"../../../../node_modules/ignore": {
|
|
758
|
+
"version": "5.3.1",
|
|
759
|
+
"dev": true,
|
|
760
|
+
"license": "MIT",
|
|
761
|
+
"engines": {
|
|
762
|
+
"node": ">= 4"
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"../../../../node_modules/immediate": {
|
|
766
|
+
"version": "3.0.6",
|
|
767
|
+
"dev": true,
|
|
768
|
+
"license": "MIT"
|
|
769
|
+
},
|
|
770
|
+
"../../../../node_modules/import-fresh": {
|
|
771
|
+
"version": "3.3.0",
|
|
772
|
+
"dev": true,
|
|
773
|
+
"license": "MIT",
|
|
774
|
+
"dependencies": {
|
|
775
|
+
"parent-module": "^1.0.0",
|
|
776
|
+
"resolve-from": "^4.0.0"
|
|
777
|
+
},
|
|
778
|
+
"engines": {
|
|
779
|
+
"node": ">=6"
|
|
780
|
+
},
|
|
781
|
+
"funding": {
|
|
782
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"../../../../node_modules/imurmurhash": {
|
|
786
|
+
"version": "0.1.4",
|
|
787
|
+
"dev": true,
|
|
788
|
+
"license": "MIT",
|
|
789
|
+
"engines": {
|
|
790
|
+
"node": ">=0.8.19"
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
"../../../../node_modules/inherits": {
|
|
794
|
+
"version": "2.0.4",
|
|
795
|
+
"dev": true,
|
|
796
|
+
"license": "ISC"
|
|
797
|
+
},
|
|
798
|
+
"../../../../node_modules/is-extglob": {
|
|
799
|
+
"version": "2.1.1",
|
|
800
|
+
"dev": true,
|
|
801
|
+
"license": "MIT",
|
|
802
|
+
"engines": {
|
|
803
|
+
"node": ">=0.10.0"
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
"../../../../node_modules/is-fullwidth-code-point": {
|
|
807
|
+
"version": "4.0.0",
|
|
808
|
+
"dev": true,
|
|
809
|
+
"license": "MIT",
|
|
810
|
+
"engines": {
|
|
811
|
+
"node": ">=12"
|
|
812
|
+
},
|
|
813
|
+
"funding": {
|
|
814
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
815
|
+
}
|
|
816
|
+
},
|
|
817
|
+
"../../../../node_modules/is-glob": {
|
|
818
|
+
"version": "4.0.3",
|
|
819
|
+
"dev": true,
|
|
820
|
+
"license": "MIT",
|
|
821
|
+
"dependencies": {
|
|
822
|
+
"is-extglob": "^2.1.1"
|
|
823
|
+
},
|
|
824
|
+
"engines": {
|
|
825
|
+
"node": ">=0.10.0"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"../../../../node_modules/is-number": {
|
|
829
|
+
"version": "7.0.0",
|
|
830
|
+
"dev": true,
|
|
831
|
+
"license": "MIT",
|
|
832
|
+
"engines": {
|
|
833
|
+
"node": ">=0.12.0"
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
"../../../../node_modules/is-path-inside": {
|
|
837
|
+
"version": "3.0.3",
|
|
838
|
+
"dev": true,
|
|
839
|
+
"license": "MIT",
|
|
840
|
+
"engines": {
|
|
841
|
+
"node": ">=8"
|
|
842
|
+
}
|
|
843
|
+
},
|
|
844
|
+
"../../../../node_modules/is-stream": {
|
|
845
|
+
"version": "3.0.0",
|
|
846
|
+
"dev": true,
|
|
847
|
+
"license": "MIT",
|
|
848
|
+
"engines": {
|
|
849
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
850
|
+
},
|
|
851
|
+
"funding": {
|
|
852
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
853
|
+
}
|
|
854
|
+
},
|
|
855
|
+
"../../../../node_modules/isarray": {
|
|
856
|
+
"version": "1.0.0",
|
|
857
|
+
"dev": true,
|
|
858
|
+
"license": "MIT"
|
|
859
|
+
},
|
|
860
|
+
"../../../../node_modules/isexe": {
|
|
861
|
+
"version": "2.0.0",
|
|
862
|
+
"dev": true,
|
|
863
|
+
"license": "ISC"
|
|
864
|
+
},
|
|
865
|
+
"../../../../node_modules/js-yaml": {
|
|
866
|
+
"version": "4.1.0",
|
|
867
|
+
"dev": true,
|
|
868
|
+
"license": "MIT",
|
|
869
|
+
"dependencies": {
|
|
870
|
+
"argparse": "^2.0.1"
|
|
871
|
+
},
|
|
872
|
+
"bin": {
|
|
873
|
+
"js-yaml": "bin/js-yaml.js"
|
|
874
|
+
}
|
|
875
|
+
},
|
|
876
|
+
"../../../../node_modules/json-buffer": {
|
|
877
|
+
"version": "3.0.1",
|
|
878
|
+
"dev": true,
|
|
879
|
+
"license": "MIT"
|
|
880
|
+
},
|
|
881
|
+
"../../../../node_modules/json-schema-traverse": {
|
|
882
|
+
"version": "0.4.1",
|
|
883
|
+
"dev": true,
|
|
884
|
+
"license": "MIT"
|
|
885
|
+
},
|
|
886
|
+
"../../../../node_modules/json-stable-stringify-without-jsonify": {
|
|
887
|
+
"version": "1.0.1",
|
|
888
|
+
"dev": true,
|
|
889
|
+
"license": "MIT"
|
|
890
|
+
},
|
|
891
|
+
"../../../../node_modules/jszip": {
|
|
892
|
+
"version": "3.10.1",
|
|
893
|
+
"dev": true,
|
|
894
|
+
"license": "(MIT OR GPL-3.0-or-later)",
|
|
895
|
+
"dependencies": {
|
|
896
|
+
"lie": "~3.3.0",
|
|
897
|
+
"pako": "~1.0.2",
|
|
898
|
+
"readable-stream": "~2.3.6",
|
|
899
|
+
"setimmediate": "^1.0.5"
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
"../../../../node_modules/keyv": {
|
|
903
|
+
"version": "4.5.4",
|
|
904
|
+
"dev": true,
|
|
905
|
+
"license": "MIT",
|
|
906
|
+
"dependencies": {
|
|
907
|
+
"json-buffer": "3.0.1"
|
|
908
|
+
}
|
|
909
|
+
},
|
|
910
|
+
"../../../../node_modules/levn": {
|
|
911
|
+
"version": "0.4.1",
|
|
912
|
+
"dev": true,
|
|
913
|
+
"license": "MIT",
|
|
914
|
+
"dependencies": {
|
|
915
|
+
"prelude-ls": "^1.2.1",
|
|
916
|
+
"type-check": "~0.4.0"
|
|
917
|
+
},
|
|
918
|
+
"engines": {
|
|
919
|
+
"node": ">= 0.8.0"
|
|
920
|
+
}
|
|
921
|
+
},
|
|
922
|
+
"../../../../node_modules/lie": {
|
|
923
|
+
"version": "3.3.0",
|
|
924
|
+
"dev": true,
|
|
925
|
+
"license": "MIT",
|
|
926
|
+
"dependencies": {
|
|
927
|
+
"immediate": "~3.0.5"
|
|
928
|
+
}
|
|
929
|
+
},
|
|
930
|
+
"../../../../node_modules/lilconfig": {
|
|
931
|
+
"version": "3.1.2",
|
|
932
|
+
"dev": true,
|
|
933
|
+
"license": "MIT",
|
|
934
|
+
"engines": {
|
|
935
|
+
"node": ">=14"
|
|
936
|
+
},
|
|
937
|
+
"funding": {
|
|
938
|
+
"url": "https://github.com/sponsors/antonk52"
|
|
939
|
+
}
|
|
940
|
+
},
|
|
941
|
+
"../../../../node_modules/lint-staged": {
|
|
942
|
+
"version": "15.2.7",
|
|
943
|
+
"dev": true,
|
|
944
|
+
"license": "MIT",
|
|
945
|
+
"dependencies": {
|
|
946
|
+
"chalk": "~5.3.0",
|
|
947
|
+
"commander": "~12.1.0",
|
|
948
|
+
"debug": "~4.3.4",
|
|
949
|
+
"execa": "~8.0.1",
|
|
950
|
+
"lilconfig": "~3.1.1",
|
|
951
|
+
"listr2": "~8.2.1",
|
|
952
|
+
"micromatch": "~4.0.7",
|
|
953
|
+
"pidtree": "~0.6.0",
|
|
954
|
+
"string-argv": "~0.3.2",
|
|
955
|
+
"yaml": "~2.4.2"
|
|
956
|
+
},
|
|
957
|
+
"bin": {
|
|
958
|
+
"lint-staged": "bin/lint-staged.js"
|
|
959
|
+
},
|
|
960
|
+
"engines": {
|
|
961
|
+
"node": ">=18.12.0"
|
|
962
|
+
},
|
|
963
|
+
"funding": {
|
|
964
|
+
"url": "https://opencollective.com/lint-staged"
|
|
965
|
+
}
|
|
966
|
+
},
|
|
967
|
+
"../../../../node_modules/lint-staged/node_modules/chalk": {
|
|
968
|
+
"version": "5.3.0",
|
|
969
|
+
"dev": true,
|
|
970
|
+
"license": "MIT",
|
|
971
|
+
"engines": {
|
|
972
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
973
|
+
},
|
|
974
|
+
"funding": {
|
|
975
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
"../../../../node_modules/listr2": {
|
|
979
|
+
"version": "8.2.4",
|
|
980
|
+
"dev": true,
|
|
981
|
+
"license": "MIT",
|
|
982
|
+
"dependencies": {
|
|
983
|
+
"cli-truncate": "^4.0.0",
|
|
984
|
+
"colorette": "^2.0.20",
|
|
985
|
+
"eventemitter3": "^5.0.1",
|
|
986
|
+
"log-update": "^6.1.0",
|
|
987
|
+
"rfdc": "^1.4.1",
|
|
988
|
+
"wrap-ansi": "^9.0.0"
|
|
989
|
+
},
|
|
990
|
+
"engines": {
|
|
991
|
+
"node": ">=18.0.0"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
"../../../../node_modules/locate-path": {
|
|
995
|
+
"version": "6.0.0",
|
|
996
|
+
"dev": true,
|
|
997
|
+
"license": "MIT",
|
|
998
|
+
"dependencies": {
|
|
999
|
+
"p-locate": "^5.0.0"
|
|
1000
|
+
},
|
|
1001
|
+
"engines": {
|
|
1002
|
+
"node": ">=10"
|
|
1003
|
+
},
|
|
1004
|
+
"funding": {
|
|
1005
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
1008
|
+
"../../../../node_modules/lodash.merge": {
|
|
1009
|
+
"version": "4.6.2",
|
|
1010
|
+
"dev": true,
|
|
1011
|
+
"license": "MIT"
|
|
1012
|
+
},
|
|
1013
|
+
"../../../../node_modules/log-update": {
|
|
1014
|
+
"version": "6.1.0",
|
|
1015
|
+
"dev": true,
|
|
1016
|
+
"license": "MIT",
|
|
1017
|
+
"dependencies": {
|
|
1018
|
+
"ansi-escapes": "^7.0.0",
|
|
1019
|
+
"cli-cursor": "^5.0.0",
|
|
1020
|
+
"slice-ansi": "^7.1.0",
|
|
1021
|
+
"strip-ansi": "^7.1.0",
|
|
1022
|
+
"wrap-ansi": "^9.0.0"
|
|
1023
|
+
},
|
|
1024
|
+
"engines": {
|
|
1025
|
+
"node": ">=18"
|
|
1026
|
+
},
|
|
1027
|
+
"funding": {
|
|
1028
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
"../../../../node_modules/log-update/node_modules/ansi-regex": {
|
|
1032
|
+
"version": "6.0.1",
|
|
1033
|
+
"dev": true,
|
|
1034
|
+
"license": "MIT",
|
|
1035
|
+
"engines": {
|
|
1036
|
+
"node": ">=12"
|
|
1037
|
+
},
|
|
1038
|
+
"funding": {
|
|
1039
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
"../../../../node_modules/log-update/node_modules/ansi-styles": {
|
|
1043
|
+
"version": "6.2.1",
|
|
1044
|
+
"dev": true,
|
|
1045
|
+
"license": "MIT",
|
|
1046
|
+
"engines": {
|
|
1047
|
+
"node": ">=12"
|
|
1048
|
+
},
|
|
1049
|
+
"funding": {
|
|
1050
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
"../../../../node_modules/log-update/node_modules/is-fullwidth-code-point": {
|
|
1054
|
+
"version": "5.0.0",
|
|
1055
|
+
"dev": true,
|
|
1056
|
+
"license": "MIT",
|
|
1057
|
+
"dependencies": {
|
|
1058
|
+
"get-east-asian-width": "^1.0.0"
|
|
1059
|
+
},
|
|
1060
|
+
"engines": {
|
|
1061
|
+
"node": ">=18"
|
|
1062
|
+
},
|
|
1063
|
+
"funding": {
|
|
1064
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1065
|
+
}
|
|
1066
|
+
},
|
|
1067
|
+
"../../../../node_modules/log-update/node_modules/slice-ansi": {
|
|
1068
|
+
"version": "7.1.0",
|
|
1069
|
+
"dev": true,
|
|
1070
|
+
"license": "MIT",
|
|
1071
|
+
"dependencies": {
|
|
1072
|
+
"ansi-styles": "^6.2.1",
|
|
1073
|
+
"is-fullwidth-code-point": "^5.0.0"
|
|
1074
|
+
},
|
|
1075
|
+
"engines": {
|
|
1076
|
+
"node": ">=18"
|
|
1077
|
+
},
|
|
1078
|
+
"funding": {
|
|
1079
|
+
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
"../../../../node_modules/log-update/node_modules/strip-ansi": {
|
|
1083
|
+
"version": "7.1.0",
|
|
1084
|
+
"dev": true,
|
|
1085
|
+
"license": "MIT",
|
|
1086
|
+
"dependencies": {
|
|
1087
|
+
"ansi-regex": "^6.0.1"
|
|
1088
|
+
},
|
|
1089
|
+
"engines": {
|
|
1090
|
+
"node": ">=12"
|
|
1091
|
+
},
|
|
1092
|
+
"funding": {
|
|
1093
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1096
|
+
"../../../../node_modules/merge-stream": {
|
|
1097
|
+
"version": "2.0.0",
|
|
1098
|
+
"dev": true,
|
|
1099
|
+
"license": "MIT"
|
|
1100
|
+
},
|
|
1101
|
+
"../../../../node_modules/micromatch": {
|
|
1102
|
+
"version": "4.0.7",
|
|
1103
|
+
"dev": true,
|
|
1104
|
+
"license": "MIT",
|
|
1105
|
+
"dependencies": {
|
|
1106
|
+
"braces": "^3.0.3",
|
|
1107
|
+
"picomatch": "^2.3.1"
|
|
1108
|
+
},
|
|
1109
|
+
"engines": {
|
|
1110
|
+
"node": ">=8.6"
|
|
1111
|
+
}
|
|
1112
|
+
},
|
|
1113
|
+
"../../../../node_modules/mimic-fn": {
|
|
1114
|
+
"version": "4.0.0",
|
|
1115
|
+
"dev": true,
|
|
1116
|
+
"license": "MIT",
|
|
1117
|
+
"engines": {
|
|
1118
|
+
"node": ">=12"
|
|
1119
|
+
},
|
|
1120
|
+
"funding": {
|
|
1121
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
"../../../../node_modules/mimic-function": {
|
|
1125
|
+
"version": "5.0.1",
|
|
1126
|
+
"dev": true,
|
|
1127
|
+
"license": "MIT",
|
|
1128
|
+
"engines": {
|
|
1129
|
+
"node": ">=18"
|
|
1130
|
+
},
|
|
1131
|
+
"funding": {
|
|
1132
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1133
|
+
}
|
|
1134
|
+
},
|
|
1135
|
+
"../../../../node_modules/minimatch": {
|
|
1136
|
+
"version": "3.1.2",
|
|
1137
|
+
"dev": true,
|
|
1138
|
+
"license": "ISC",
|
|
1139
|
+
"dependencies": {
|
|
1140
|
+
"brace-expansion": "^1.1.7"
|
|
1141
|
+
},
|
|
1142
|
+
"engines": {
|
|
1143
|
+
"node": "*"
|
|
1144
|
+
}
|
|
1145
|
+
},
|
|
1146
|
+
"../../../../node_modules/ms": {
|
|
1147
|
+
"version": "2.1.2",
|
|
1148
|
+
"dev": true,
|
|
1149
|
+
"license": "MIT"
|
|
1150
|
+
},
|
|
1151
|
+
"../../../../node_modules/natural-compare": {
|
|
1152
|
+
"version": "1.4.0",
|
|
1153
|
+
"dev": true,
|
|
1154
|
+
"license": "MIT"
|
|
1155
|
+
},
|
|
1156
|
+
"../../../../node_modules/npm-run-path": {
|
|
1157
|
+
"version": "5.3.0",
|
|
1158
|
+
"dev": true,
|
|
1159
|
+
"license": "MIT",
|
|
1160
|
+
"dependencies": {
|
|
1161
|
+
"path-key": "^4.0.0"
|
|
1162
|
+
},
|
|
1163
|
+
"engines": {
|
|
1164
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1165
|
+
},
|
|
1166
|
+
"funding": {
|
|
1167
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
"../../../../node_modules/npm-run-path/node_modules/path-key": {
|
|
1171
|
+
"version": "4.0.0",
|
|
1172
|
+
"dev": true,
|
|
1173
|
+
"license": "MIT",
|
|
1174
|
+
"engines": {
|
|
1175
|
+
"node": ">=12"
|
|
1176
|
+
},
|
|
1177
|
+
"funding": {
|
|
1178
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1179
|
+
}
|
|
1180
|
+
},
|
|
1181
|
+
"../../../../node_modules/onetime": {
|
|
1182
|
+
"version": "6.0.0",
|
|
1183
|
+
"dev": true,
|
|
1184
|
+
"license": "MIT",
|
|
1185
|
+
"dependencies": {
|
|
1186
|
+
"mimic-fn": "^4.0.0"
|
|
1187
|
+
},
|
|
1188
|
+
"engines": {
|
|
1189
|
+
"node": ">=12"
|
|
1190
|
+
},
|
|
1191
|
+
"funding": {
|
|
1192
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1193
|
+
}
|
|
1194
|
+
},
|
|
1195
|
+
"../../../../node_modules/optionator": {
|
|
1196
|
+
"version": "0.9.4",
|
|
1197
|
+
"dev": true,
|
|
1198
|
+
"license": "MIT",
|
|
1199
|
+
"dependencies": {
|
|
1200
|
+
"deep-is": "^0.1.3",
|
|
1201
|
+
"fast-levenshtein": "^2.0.6",
|
|
1202
|
+
"levn": "^0.4.1",
|
|
1203
|
+
"prelude-ls": "^1.2.1",
|
|
1204
|
+
"type-check": "^0.4.0",
|
|
1205
|
+
"word-wrap": "^1.2.5"
|
|
1206
|
+
},
|
|
1207
|
+
"engines": {
|
|
1208
|
+
"node": ">= 0.8.0"
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1211
|
+
"../../../../node_modules/p-limit": {
|
|
1212
|
+
"version": "3.1.0",
|
|
1213
|
+
"dev": true,
|
|
1214
|
+
"license": "MIT",
|
|
1215
|
+
"dependencies": {
|
|
1216
|
+
"yocto-queue": "^0.1.0"
|
|
1217
|
+
},
|
|
1218
|
+
"engines": {
|
|
1219
|
+
"node": ">=10"
|
|
1220
|
+
},
|
|
1221
|
+
"funding": {
|
|
1222
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
"../../../../node_modules/p-locate": {
|
|
1226
|
+
"version": "5.0.0",
|
|
1227
|
+
"dev": true,
|
|
1228
|
+
"license": "MIT",
|
|
1229
|
+
"dependencies": {
|
|
1230
|
+
"p-limit": "^3.0.2"
|
|
1231
|
+
},
|
|
1232
|
+
"engines": {
|
|
1233
|
+
"node": ">=10"
|
|
1234
|
+
},
|
|
1235
|
+
"funding": {
|
|
1236
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"../../../../node_modules/pako": {
|
|
1240
|
+
"version": "1.0.11",
|
|
1241
|
+
"dev": true,
|
|
1242
|
+
"license": "(MIT AND Zlib)"
|
|
1243
|
+
},
|
|
1244
|
+
"../../../../node_modules/parent-module": {
|
|
1245
|
+
"version": "1.0.1",
|
|
1246
|
+
"dev": true,
|
|
1247
|
+
"license": "MIT",
|
|
1248
|
+
"dependencies": {
|
|
1249
|
+
"callsites": "^3.0.0"
|
|
1250
|
+
},
|
|
1251
|
+
"engines": {
|
|
1252
|
+
"node": ">=6"
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1255
|
+
"../../../../node_modules/path-exists": {
|
|
1256
|
+
"version": "4.0.0",
|
|
1257
|
+
"dev": true,
|
|
1258
|
+
"license": "MIT",
|
|
1259
|
+
"engines": {
|
|
1260
|
+
"node": ">=8"
|
|
1261
|
+
}
|
|
1262
|
+
},
|
|
1263
|
+
"../../../../node_modules/path-key": {
|
|
1264
|
+
"version": "3.1.1",
|
|
1265
|
+
"dev": true,
|
|
1266
|
+
"license": "MIT",
|
|
1267
|
+
"engines": {
|
|
1268
|
+
"node": ">=8"
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
"../../../../node_modules/picomatch": {
|
|
1272
|
+
"version": "2.3.1",
|
|
1273
|
+
"dev": true,
|
|
1274
|
+
"license": "MIT",
|
|
1275
|
+
"engines": {
|
|
1276
|
+
"node": ">=8.6"
|
|
1277
|
+
},
|
|
1278
|
+
"funding": {
|
|
1279
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1282
|
+
"../../../../node_modules/pidtree": {
|
|
1283
|
+
"version": "0.6.0",
|
|
1284
|
+
"dev": true,
|
|
1285
|
+
"license": "MIT",
|
|
1286
|
+
"bin": {
|
|
1287
|
+
"pidtree": "bin/pidtree.js"
|
|
1288
|
+
},
|
|
1289
|
+
"engines": {
|
|
1290
|
+
"node": ">=0.10"
|
|
1291
|
+
}
|
|
1292
|
+
},
|
|
1293
|
+
"../../../../node_modules/prelude-ls": {
|
|
1294
|
+
"version": "1.2.1",
|
|
1295
|
+
"dev": true,
|
|
1296
|
+
"license": "MIT",
|
|
1297
|
+
"engines": {
|
|
1298
|
+
"node": ">= 0.8.0"
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
"../../../../node_modules/prettier": {
|
|
1302
|
+
"version": "3.3.3",
|
|
1303
|
+
"dev": true,
|
|
1304
|
+
"license": "MIT",
|
|
1305
|
+
"bin": {
|
|
1306
|
+
"prettier": "bin/prettier.cjs"
|
|
1307
|
+
},
|
|
1308
|
+
"engines": {
|
|
1309
|
+
"node": ">=14"
|
|
1310
|
+
},
|
|
1311
|
+
"funding": {
|
|
1312
|
+
"url": "https://github.com/prettier/prettier?sponsor=1"
|
|
1313
|
+
}
|
|
1314
|
+
},
|
|
1315
|
+
"../../../../node_modules/process-nextick-args": {
|
|
1316
|
+
"version": "2.0.1",
|
|
1317
|
+
"dev": true,
|
|
1318
|
+
"license": "MIT"
|
|
1319
|
+
},
|
|
1320
|
+
"../../../../node_modules/punycode": {
|
|
1321
|
+
"version": "2.3.1",
|
|
1322
|
+
"dev": true,
|
|
1323
|
+
"license": "MIT",
|
|
1324
|
+
"engines": {
|
|
1325
|
+
"node": ">=6"
|
|
1326
|
+
}
|
|
1327
|
+
},
|
|
1328
|
+
"../../../../node_modules/queue-microtask": {
|
|
1329
|
+
"version": "1.2.3",
|
|
1330
|
+
"dev": true,
|
|
1331
|
+
"funding": [
|
|
1332
|
+
{
|
|
1333
|
+
"type": "github",
|
|
1334
|
+
"url": "https://github.com/sponsors/feross"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"type": "patreon",
|
|
1338
|
+
"url": "https://www.patreon.com/feross"
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"type": "consulting",
|
|
1342
|
+
"url": "https://feross.org/support"
|
|
1343
|
+
}
|
|
1344
|
+
],
|
|
1345
|
+
"license": "MIT"
|
|
1346
|
+
},
|
|
1347
|
+
"../../../../node_modules/readable-stream": {
|
|
19
1348
|
"version": "2.3.8",
|
|
20
1349
|
"dev": true,
|
|
21
|
-
"license": "
|
|
1350
|
+
"license": "MIT",
|
|
1351
|
+
"dependencies": {
|
|
1352
|
+
"core-util-is": "~1.0.0",
|
|
1353
|
+
"inherits": "~2.0.3",
|
|
1354
|
+
"isarray": "~1.0.0",
|
|
1355
|
+
"process-nextick-args": "~2.0.0",
|
|
1356
|
+
"safe-buffer": "~5.1.1",
|
|
1357
|
+
"string_decoder": "~1.1.1",
|
|
1358
|
+
"util-deprecate": "~1.0.1"
|
|
1359
|
+
}
|
|
1360
|
+
},
|
|
1361
|
+
"../../../../node_modules/resolve-from": {
|
|
1362
|
+
"version": "4.0.0",
|
|
1363
|
+
"dev": true,
|
|
1364
|
+
"license": "MIT",
|
|
1365
|
+
"engines": {
|
|
1366
|
+
"node": ">=4"
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"../../../../node_modules/restore-cursor": {
|
|
1370
|
+
"version": "5.1.0",
|
|
1371
|
+
"dev": true,
|
|
1372
|
+
"license": "MIT",
|
|
1373
|
+
"dependencies": {
|
|
1374
|
+
"onetime": "^7.0.0",
|
|
1375
|
+
"signal-exit": "^4.1.0"
|
|
1376
|
+
},
|
|
1377
|
+
"engines": {
|
|
1378
|
+
"node": ">=18"
|
|
1379
|
+
},
|
|
1380
|
+
"funding": {
|
|
1381
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1382
|
+
}
|
|
1383
|
+
},
|
|
1384
|
+
"../../../../node_modules/restore-cursor/node_modules/onetime": {
|
|
1385
|
+
"version": "7.0.0",
|
|
1386
|
+
"dev": true,
|
|
1387
|
+
"license": "MIT",
|
|
1388
|
+
"dependencies": {
|
|
1389
|
+
"mimic-function": "^5.0.0"
|
|
1390
|
+
},
|
|
1391
|
+
"engines": {
|
|
1392
|
+
"node": ">=18"
|
|
1393
|
+
},
|
|
1394
|
+
"funding": {
|
|
1395
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1398
|
+
"../../../../node_modules/reusify": {
|
|
1399
|
+
"version": "1.0.4",
|
|
1400
|
+
"dev": true,
|
|
1401
|
+
"license": "MIT",
|
|
1402
|
+
"engines": {
|
|
1403
|
+
"iojs": ">=1.0.0",
|
|
1404
|
+
"node": ">=0.10.0"
|
|
1405
|
+
}
|
|
1406
|
+
},
|
|
1407
|
+
"../../../../node_modules/rfdc": {
|
|
1408
|
+
"version": "1.4.1",
|
|
1409
|
+
"dev": true,
|
|
1410
|
+
"license": "MIT"
|
|
1411
|
+
},
|
|
1412
|
+
"../../../../node_modules/run-parallel": {
|
|
1413
|
+
"version": "1.2.0",
|
|
1414
|
+
"dev": true,
|
|
1415
|
+
"funding": [
|
|
1416
|
+
{
|
|
1417
|
+
"type": "github",
|
|
1418
|
+
"url": "https://github.com/sponsors/feross"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"type": "patreon",
|
|
1422
|
+
"url": "https://www.patreon.com/feross"
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
"type": "consulting",
|
|
1426
|
+
"url": "https://feross.org/support"
|
|
1427
|
+
}
|
|
1428
|
+
],
|
|
1429
|
+
"license": "MIT",
|
|
1430
|
+
"dependencies": {
|
|
1431
|
+
"queue-microtask": "^1.2.2"
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
1434
|
+
"../../../../node_modules/safe-buffer": {
|
|
1435
|
+
"version": "5.1.2",
|
|
1436
|
+
"dev": true,
|
|
1437
|
+
"license": "MIT"
|
|
1438
|
+
},
|
|
1439
|
+
"../../../../node_modules/selenium-webdriver": {
|
|
1440
|
+
"version": "4.23.0",
|
|
1441
|
+
"dev": true,
|
|
1442
|
+
"license": "Apache-2.0",
|
|
1443
|
+
"dependencies": {
|
|
1444
|
+
"@bazel/runfiles": "^5.8.1",
|
|
1445
|
+
"jszip": "^3.10.1",
|
|
1446
|
+
"tmp": "^0.2.3",
|
|
1447
|
+
"ws": "^8.17.1"
|
|
1448
|
+
},
|
|
1449
|
+
"engines": {
|
|
1450
|
+
"node": ">= 14.21.0"
|
|
1451
|
+
}
|
|
1452
|
+
},
|
|
1453
|
+
"../../../../node_modules/setimmediate": {
|
|
1454
|
+
"version": "1.0.5",
|
|
1455
|
+
"dev": true,
|
|
1456
|
+
"license": "MIT"
|
|
1457
|
+
},
|
|
1458
|
+
"../../../../node_modules/shebang-command": {
|
|
1459
|
+
"version": "2.0.0",
|
|
1460
|
+
"dev": true,
|
|
1461
|
+
"license": "MIT",
|
|
1462
|
+
"dependencies": {
|
|
1463
|
+
"shebang-regex": "^3.0.0"
|
|
1464
|
+
},
|
|
1465
|
+
"engines": {
|
|
1466
|
+
"node": ">=8"
|
|
1467
|
+
}
|
|
1468
|
+
},
|
|
1469
|
+
"../../../../node_modules/shebang-regex": {
|
|
1470
|
+
"version": "3.0.0",
|
|
1471
|
+
"dev": true,
|
|
1472
|
+
"license": "MIT",
|
|
1473
|
+
"engines": {
|
|
1474
|
+
"node": ">=8"
|
|
1475
|
+
}
|
|
1476
|
+
},
|
|
1477
|
+
"../../../../node_modules/signal-exit": {
|
|
1478
|
+
"version": "4.1.0",
|
|
1479
|
+
"dev": true,
|
|
1480
|
+
"license": "ISC",
|
|
1481
|
+
"engines": {
|
|
1482
|
+
"node": ">=14"
|
|
1483
|
+
},
|
|
1484
|
+
"funding": {
|
|
1485
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1486
|
+
}
|
|
1487
|
+
},
|
|
1488
|
+
"../../../../node_modules/slice-ansi": {
|
|
1489
|
+
"version": "5.0.0",
|
|
1490
|
+
"dev": true,
|
|
1491
|
+
"license": "MIT",
|
|
1492
|
+
"dependencies": {
|
|
1493
|
+
"ansi-styles": "^6.0.0",
|
|
1494
|
+
"is-fullwidth-code-point": "^4.0.0"
|
|
1495
|
+
},
|
|
1496
|
+
"engines": {
|
|
1497
|
+
"node": ">=12"
|
|
1498
|
+
},
|
|
1499
|
+
"funding": {
|
|
1500
|
+
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
|
|
1501
|
+
}
|
|
1502
|
+
},
|
|
1503
|
+
"../../../../node_modules/slice-ansi/node_modules/ansi-styles": {
|
|
1504
|
+
"version": "6.2.1",
|
|
1505
|
+
"dev": true,
|
|
1506
|
+
"license": "MIT",
|
|
1507
|
+
"engines": {
|
|
1508
|
+
"node": ">=12"
|
|
1509
|
+
},
|
|
1510
|
+
"funding": {
|
|
1511
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
1512
|
+
}
|
|
1513
|
+
},
|
|
1514
|
+
"../../../../node_modules/string_decoder": {
|
|
1515
|
+
"version": "1.1.1",
|
|
1516
|
+
"dev": true,
|
|
1517
|
+
"license": "MIT",
|
|
1518
|
+
"dependencies": {
|
|
1519
|
+
"safe-buffer": "~5.1.0"
|
|
1520
|
+
}
|
|
1521
|
+
},
|
|
1522
|
+
"../../../../node_modules/string-argv": {
|
|
1523
|
+
"version": "0.3.2",
|
|
1524
|
+
"dev": true,
|
|
1525
|
+
"license": "MIT",
|
|
1526
|
+
"engines": {
|
|
1527
|
+
"node": ">=0.6.19"
|
|
1528
|
+
}
|
|
1529
|
+
},
|
|
1530
|
+
"../../../../node_modules/string-width": {
|
|
1531
|
+
"version": "7.2.0",
|
|
1532
|
+
"dev": true,
|
|
1533
|
+
"license": "MIT",
|
|
1534
|
+
"dependencies": {
|
|
1535
|
+
"emoji-regex": "^10.3.0",
|
|
1536
|
+
"get-east-asian-width": "^1.0.0",
|
|
1537
|
+
"strip-ansi": "^7.1.0"
|
|
1538
|
+
},
|
|
1539
|
+
"engines": {
|
|
1540
|
+
"node": ">=18"
|
|
1541
|
+
},
|
|
1542
|
+
"funding": {
|
|
1543
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1544
|
+
}
|
|
1545
|
+
},
|
|
1546
|
+
"../../../../node_modules/string-width/node_modules/ansi-regex": {
|
|
1547
|
+
"version": "6.0.1",
|
|
1548
|
+
"dev": true,
|
|
1549
|
+
"license": "MIT",
|
|
1550
|
+
"engines": {
|
|
1551
|
+
"node": ">=12"
|
|
1552
|
+
},
|
|
1553
|
+
"funding": {
|
|
1554
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
1555
|
+
}
|
|
1556
|
+
},
|
|
1557
|
+
"../../../../node_modules/string-width/node_modules/strip-ansi": {
|
|
1558
|
+
"version": "7.1.0",
|
|
1559
|
+
"dev": true,
|
|
1560
|
+
"license": "MIT",
|
|
1561
|
+
"dependencies": {
|
|
1562
|
+
"ansi-regex": "^6.0.1"
|
|
1563
|
+
},
|
|
1564
|
+
"engines": {
|
|
1565
|
+
"node": ">=12"
|
|
1566
|
+
},
|
|
1567
|
+
"funding": {
|
|
1568
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
1569
|
+
}
|
|
1570
|
+
},
|
|
1571
|
+
"../../../../node_modules/strip-ansi": {
|
|
1572
|
+
"version": "6.0.1",
|
|
1573
|
+
"dev": true,
|
|
1574
|
+
"license": "MIT",
|
|
1575
|
+
"dependencies": {
|
|
1576
|
+
"ansi-regex": "^5.0.1"
|
|
1577
|
+
},
|
|
1578
|
+
"engines": {
|
|
1579
|
+
"node": ">=8"
|
|
1580
|
+
}
|
|
1581
|
+
},
|
|
1582
|
+
"../../../../node_modules/strip-final-newline": {
|
|
1583
|
+
"version": "3.0.0",
|
|
1584
|
+
"dev": true,
|
|
1585
|
+
"license": "MIT",
|
|
1586
|
+
"engines": {
|
|
1587
|
+
"node": ">=12"
|
|
1588
|
+
},
|
|
1589
|
+
"funding": {
|
|
1590
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1591
|
+
}
|
|
1592
|
+
},
|
|
1593
|
+
"../../../../node_modules/strip-json-comments": {
|
|
1594
|
+
"version": "3.1.1",
|
|
1595
|
+
"dev": true,
|
|
1596
|
+
"license": "MIT",
|
|
1597
|
+
"engines": {
|
|
1598
|
+
"node": ">=8"
|
|
1599
|
+
},
|
|
1600
|
+
"funding": {
|
|
1601
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1602
|
+
}
|
|
1603
|
+
},
|
|
1604
|
+
"../../../../node_modules/supports-color": {
|
|
1605
|
+
"version": "7.2.0",
|
|
1606
|
+
"dev": true,
|
|
1607
|
+
"license": "MIT",
|
|
1608
|
+
"dependencies": {
|
|
1609
|
+
"has-flag": "^4.0.0"
|
|
1610
|
+
},
|
|
1611
|
+
"engines": {
|
|
1612
|
+
"node": ">=8"
|
|
1613
|
+
}
|
|
1614
|
+
},
|
|
1615
|
+
"../../../../node_modules/text-table": {
|
|
1616
|
+
"version": "0.2.0",
|
|
1617
|
+
"dev": true,
|
|
1618
|
+
"license": "MIT"
|
|
1619
|
+
},
|
|
1620
|
+
"../../../../node_modules/tmp": {
|
|
1621
|
+
"version": "0.2.3",
|
|
1622
|
+
"dev": true,
|
|
1623
|
+
"license": "MIT",
|
|
1624
|
+
"engines": {
|
|
1625
|
+
"node": ">=14.14"
|
|
1626
|
+
}
|
|
1627
|
+
},
|
|
1628
|
+
"../../../../node_modules/to-regex-range": {
|
|
1629
|
+
"version": "5.0.1",
|
|
1630
|
+
"dev": true,
|
|
1631
|
+
"license": "MIT",
|
|
1632
|
+
"dependencies": {
|
|
1633
|
+
"is-number": "^7.0.0"
|
|
1634
|
+
},
|
|
1635
|
+
"engines": {
|
|
1636
|
+
"node": ">=8.0"
|
|
1637
|
+
}
|
|
1638
|
+
},
|
|
1639
|
+
"../../../../node_modules/type-check": {
|
|
1640
|
+
"version": "0.4.0",
|
|
1641
|
+
"dev": true,
|
|
1642
|
+
"license": "MIT",
|
|
1643
|
+
"dependencies": {
|
|
1644
|
+
"prelude-ls": "^1.2.1"
|
|
1645
|
+
},
|
|
1646
|
+
"engines": {
|
|
1647
|
+
"node": ">= 0.8.0"
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1650
|
+
"../../../../node_modules/uri-js": {
|
|
1651
|
+
"version": "4.4.1",
|
|
1652
|
+
"dev": true,
|
|
1653
|
+
"license": "BSD-2-Clause",
|
|
1654
|
+
"dependencies": {
|
|
1655
|
+
"punycode": "^2.1.0"
|
|
1656
|
+
}
|
|
1657
|
+
},
|
|
1658
|
+
"../../../../node_modules/util-deprecate": {
|
|
1659
|
+
"version": "1.0.2",
|
|
1660
|
+
"dev": true,
|
|
1661
|
+
"license": "MIT"
|
|
1662
|
+
},
|
|
1663
|
+
"../../../../node_modules/which": {
|
|
1664
|
+
"version": "2.0.2",
|
|
1665
|
+
"dev": true,
|
|
1666
|
+
"license": "ISC",
|
|
22
1667
|
"dependencies": {
|
|
23
|
-
"
|
|
1668
|
+
"isexe": "^2.0.0"
|
|
24
1669
|
},
|
|
25
1670
|
"bin": {
|
|
26
|
-
"
|
|
1671
|
+
"node-which": "bin/node-which"
|
|
27
1672
|
},
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
1673
|
+
"engines": {
|
|
1674
|
+
"node": ">= 8"
|
|
1675
|
+
}
|
|
1676
|
+
},
|
|
1677
|
+
"../../../../node_modules/word-wrap": {
|
|
1678
|
+
"version": "1.2.5",
|
|
1679
|
+
"dev": true,
|
|
1680
|
+
"license": "MIT",
|
|
1681
|
+
"engines": {
|
|
1682
|
+
"node": ">=0.10.0"
|
|
1683
|
+
}
|
|
1684
|
+
},
|
|
1685
|
+
"../../../../node_modules/wrap-ansi": {
|
|
1686
|
+
"version": "9.0.0",
|
|
1687
|
+
"dev": true,
|
|
1688
|
+
"license": "MIT",
|
|
1689
|
+
"dependencies": {
|
|
1690
|
+
"ansi-styles": "^6.2.1",
|
|
1691
|
+
"string-width": "^7.0.0",
|
|
1692
|
+
"strip-ansi": "^7.1.0"
|
|
36
1693
|
},
|
|
37
1694
|
"engines": {
|
|
38
|
-
"node": ">=
|
|
1695
|
+
"node": ">=18"
|
|
1696
|
+
},
|
|
1697
|
+
"funding": {
|
|
1698
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
1699
|
+
}
|
|
1700
|
+
},
|
|
1701
|
+
"../../../../node_modules/wrap-ansi/node_modules/ansi-regex": {
|
|
1702
|
+
"version": "6.0.1",
|
|
1703
|
+
"dev": true,
|
|
1704
|
+
"license": "MIT",
|
|
1705
|
+
"engines": {
|
|
1706
|
+
"node": ">=12"
|
|
1707
|
+
},
|
|
1708
|
+
"funding": {
|
|
1709
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
1710
|
+
}
|
|
1711
|
+
},
|
|
1712
|
+
"../../../../node_modules/wrap-ansi/node_modules/ansi-styles": {
|
|
1713
|
+
"version": "6.2.1",
|
|
1714
|
+
"dev": true,
|
|
1715
|
+
"license": "MIT",
|
|
1716
|
+
"engines": {
|
|
1717
|
+
"node": ">=12"
|
|
1718
|
+
},
|
|
1719
|
+
"funding": {
|
|
1720
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
1721
|
+
}
|
|
1722
|
+
},
|
|
1723
|
+
"../../../../node_modules/wrap-ansi/node_modules/strip-ansi": {
|
|
1724
|
+
"version": "7.1.0",
|
|
1725
|
+
"dev": true,
|
|
1726
|
+
"license": "MIT",
|
|
1727
|
+
"dependencies": {
|
|
1728
|
+
"ansi-regex": "^6.0.1"
|
|
1729
|
+
},
|
|
1730
|
+
"engines": {
|
|
1731
|
+
"node": ">=12"
|
|
1732
|
+
},
|
|
1733
|
+
"funding": {
|
|
1734
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
1735
|
+
}
|
|
1736
|
+
},
|
|
1737
|
+
"../../../../node_modules/ws": {
|
|
1738
|
+
"version": "8.18.0",
|
|
1739
|
+
"dev": true,
|
|
1740
|
+
"license": "MIT",
|
|
1741
|
+
"engines": {
|
|
1742
|
+
"node": ">=10.0.0"
|
|
1743
|
+
},
|
|
1744
|
+
"peerDependencies": {
|
|
1745
|
+
"bufferutil": "^4.0.1",
|
|
1746
|
+
"utf-8-validate": ">=5.0.2"
|
|
1747
|
+
},
|
|
1748
|
+
"peerDependenciesMeta": {
|
|
1749
|
+
"bufferutil": {
|
|
1750
|
+
"optional": true
|
|
1751
|
+
},
|
|
1752
|
+
"utf-8-validate": {
|
|
1753
|
+
"optional": true
|
|
1754
|
+
}
|
|
1755
|
+
}
|
|
1756
|
+
},
|
|
1757
|
+
"../../../../node_modules/yaml": {
|
|
1758
|
+
"version": "2.4.5",
|
|
1759
|
+
"dev": true,
|
|
1760
|
+
"license": "ISC",
|
|
1761
|
+
"bin": {
|
|
1762
|
+
"yaml": "bin.mjs"
|
|
1763
|
+
},
|
|
1764
|
+
"engines": {
|
|
1765
|
+
"node": ">= 14"
|
|
1766
|
+
}
|
|
1767
|
+
},
|
|
1768
|
+
"../../../../node_modules/yocto-queue": {
|
|
1769
|
+
"version": "0.1.0",
|
|
1770
|
+
"dev": true,
|
|
1771
|
+
"license": "MIT",
|
|
1772
|
+
"engines": {
|
|
1773
|
+
"node": ">=10"
|
|
1774
|
+
},
|
|
1775
|
+
"funding": {
|
|
1776
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
39
1777
|
}
|
|
40
1778
|
},
|
|
41
1779
|
"node_modules/watest": {
|
|
42
1780
|
"resolved": "../../../..",
|
|
43
1781
|
"link": true
|
|
44
1782
|
}
|
|
45
|
-
},
|
|
46
|
-
"dependencies": {
|
|
47
|
-
"watest": {
|
|
48
|
-
"version": "file:../../../..",
|
|
49
|
-
"requires": {
|
|
50
|
-
"dotenv": "^8.2.0",
|
|
51
|
-
"eslint": "^7.15.0",
|
|
52
|
-
"eslint-plugin-node": "^11.1.0",
|
|
53
|
-
"husky": "^4.3.6",
|
|
54
|
-
"lint-staged": "^10.5.3",
|
|
55
|
-
"prettier": "2.2.1",
|
|
56
|
-
"prettifier": "^0.4.0",
|
|
57
|
-
"selenium-webdriver": "^4.0.0-beta.2"
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
1783
|
}
|
|
61
1784
|
}
|