@zohodesk/testinglibrary 0.1.4 → 0.1.5
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/.eslintrc.js +1 -1
- package/build/bdd-framework/cli/commands/env.js +1 -2
- package/build/bdd-framework/cli/commands/export.js +1 -2
- package/build/bdd-framework/cli/commands/test.js +1 -2
- package/build/bdd-framework/cli/options.js +1 -2
- package/build/bdd-framework/config/index.js +1 -2
- package/build/bdd-framework/decorators.js +4 -8
- package/build/bdd-framework/playwright/utils.js +1 -4
- package/build/bdd-framework/run/bddFixtures.js +1 -2
- package/build/bdd-framework/snippets/index.js +0 -1
- package/build/bdd-framework/stepDefinitions/createDecorators.js +0 -1
- package/build/bdd-framework/stepDefinitions/decorators/steps.js +0 -1
- package/build/bdd-framework/utils/logger.js +1 -2
- package/build/core/jest/preprocessor/jsPreprocessor.js +2 -3
- package/build/core/playwright/clear-caches.js +29 -0
- package/build/core/playwright/custom-commands.js +1 -2
- package/build/core/playwright/index.js +1 -3
- package/build/core/playwright/readConfigFile.js +1 -2
- package/build/core/playwright/setup/config-creator.js +2 -3
- package/build/core/playwright/setup/custom-reporter.js +100 -0
- package/build/core/playwright/test-runner.js +3 -5
- package/build/index.d.ts +58 -3
- package/build/index.js +4 -2
- package/build/lib/cli.js +10 -1
- package/build/parser/parser.js +0 -1
- package/build/setup-folder-structure/helper.js +34 -0
- package/build/setup-folder-structure/samples/git-ignore.sample.js +8 -4
- package/build/setup-folder-structure/setupProject.js +10 -5
- package/build/utils/fileUtils.js +12 -0
- package/build/utils/logger.js +1 -2
- package/build/utils/stepDefinitionsFormatter.js +1 -2
- package/changelog.md +22 -0
- package/npm-shrinkwrap.json +968 -2280
- package/package.json +6 -5
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"lockfileVersion": 1,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -67,23 +67,70 @@
|
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
"@babel/code-frame": {
|
|
70
|
-
"version": "7.
|
|
71
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.
|
|
72
|
-
"integrity": "sha512
|
|
70
|
+
"version": "7.23.5",
|
|
71
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
|
|
72
|
+
"integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==",
|
|
73
73
|
"requires": {
|
|
74
|
-
"@babel/highlight": "^7.
|
|
74
|
+
"@babel/highlight": "^7.23.4",
|
|
75
75
|
"chalk": "^2.4.2"
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"ansi-styles": {
|
|
79
|
+
"version": "3.2.1",
|
|
80
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
|
81
|
+
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
|
|
82
|
+
"requires": {
|
|
83
|
+
"color-convert": "^1.9.0"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"chalk": {
|
|
87
|
+
"version": "2.4.2",
|
|
88
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
|
89
|
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
|
90
|
+
"requires": {
|
|
91
|
+
"ansi-styles": "^3.2.1",
|
|
92
|
+
"escape-string-regexp": "^1.0.5",
|
|
93
|
+
"supports-color": "^5.3.0"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"color-convert": {
|
|
97
|
+
"version": "1.9.3",
|
|
98
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
|
99
|
+
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
|
100
|
+
"requires": {
|
|
101
|
+
"color-name": "1.1.3"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"color-name": {
|
|
105
|
+
"version": "1.1.3",
|
|
106
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
|
107
|
+
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
|
|
108
|
+
},
|
|
109
|
+
"has-flag": {
|
|
110
|
+
"version": "3.0.0",
|
|
111
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
|
112
|
+
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
|
|
113
|
+
},
|
|
114
|
+
"supports-color": {
|
|
115
|
+
"version": "5.5.0",
|
|
116
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
|
117
|
+
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
|
118
|
+
"requires": {
|
|
119
|
+
"has-flag": "^3.0.0"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
76
122
|
}
|
|
77
123
|
},
|
|
78
124
|
"@babel/compat-data": {
|
|
79
|
-
"version": "7.
|
|
80
|
-
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.
|
|
81
|
-
"integrity": "sha512-
|
|
125
|
+
"version": "7.23.5",
|
|
126
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz",
|
|
127
|
+
"integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw=="
|
|
82
128
|
},
|
|
83
129
|
"@babel/core": {
|
|
84
130
|
"version": "7.22.17",
|
|
85
131
|
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.17.tgz",
|
|
86
132
|
"integrity": "sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==",
|
|
133
|
+
"dev": true,
|
|
87
134
|
"requires": {
|
|
88
135
|
"@ampproject/remapping": "^2.2.0",
|
|
89
136
|
"@babel/code-frame": "^7.22.13",
|
|
@@ -102,101 +149,29 @@
|
|
|
102
149
|
"semver": "^6.3.1"
|
|
103
150
|
},
|
|
104
151
|
"dependencies": {
|
|
105
|
-
"@babel/code-frame": {
|
|
106
|
-
"version": "7.22.13",
|
|
107
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
|
|
108
|
-
"integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
|
|
109
|
-
"requires": {
|
|
110
|
-
"@babel/highlight": "^7.22.13",
|
|
111
|
-
"chalk": "^2.4.2"
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
"@babel/generator": {
|
|
115
|
-
"version": "7.22.15",
|
|
116
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.15.tgz",
|
|
117
|
-
"integrity": "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==",
|
|
118
|
-
"requires": {
|
|
119
|
-
"@babel/types": "^7.22.15",
|
|
120
|
-
"@jridgewell/gen-mapping": "^0.3.2",
|
|
121
|
-
"@jridgewell/trace-mapping": "^0.3.17",
|
|
122
|
-
"jsesc": "^2.5.1"
|
|
123
|
-
}
|
|
124
|
-
},
|
|
125
|
-
"@babel/highlight": {
|
|
126
|
-
"version": "7.22.13",
|
|
127
|
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz",
|
|
128
|
-
"integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==",
|
|
129
|
-
"requires": {
|
|
130
|
-
"@babel/helper-validator-identifier": "^7.22.5",
|
|
131
|
-
"chalk": "^2.4.2",
|
|
132
|
-
"js-tokens": "^4.0.0"
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
|
-
"@babel/parser": {
|
|
136
|
-
"version": "7.22.16",
|
|
137
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz",
|
|
138
|
-
"integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA=="
|
|
139
|
-
},
|
|
140
|
-
"@babel/template": {
|
|
141
|
-
"version": "7.22.15",
|
|
142
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
|
|
143
|
-
"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
|
|
144
|
-
"requires": {
|
|
145
|
-
"@babel/code-frame": "^7.22.13",
|
|
146
|
-
"@babel/parser": "^7.22.15",
|
|
147
|
-
"@babel/types": "^7.22.15"
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
|
-
"@babel/types": {
|
|
151
|
-
"version": "7.22.17",
|
|
152
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
|
|
153
|
-
"integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
|
|
154
|
-
"requires": {
|
|
155
|
-
"@babel/helper-string-parser": "^7.22.5",
|
|
156
|
-
"@babel/helper-validator-identifier": "^7.22.15",
|
|
157
|
-
"to-fast-properties": "^2.0.0"
|
|
158
|
-
},
|
|
159
|
-
"dependencies": {
|
|
160
|
-
"@babel/helper-validator-identifier": {
|
|
161
|
-
"version": "7.22.15",
|
|
162
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
|
|
163
|
-
"integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ=="
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
},
|
|
167
152
|
"convert-source-map": {
|
|
168
153
|
"version": "1.9.0",
|
|
169
154
|
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
|
|
170
|
-
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
|
|
155
|
+
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
|
|
156
|
+
"dev": true
|
|
157
|
+
},
|
|
158
|
+
"semver": {
|
|
159
|
+
"version": "6.3.1",
|
|
160
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
161
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
162
|
+
"dev": true
|
|
171
163
|
}
|
|
172
164
|
}
|
|
173
165
|
},
|
|
174
166
|
"@babel/generator": {
|
|
175
|
-
"version": "7.23.
|
|
176
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.
|
|
177
|
-
"integrity": "sha512-
|
|
167
|
+
"version": "7.23.5",
|
|
168
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.5.tgz",
|
|
169
|
+
"integrity": "sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==",
|
|
178
170
|
"requires": {
|
|
179
|
-
"@babel/types": "^7.23.
|
|
171
|
+
"@babel/types": "^7.23.5",
|
|
180
172
|
"@jridgewell/gen-mapping": "^0.3.2",
|
|
181
173
|
"@jridgewell/trace-mapping": "^0.3.17",
|
|
182
174
|
"jsesc": "^2.5.1"
|
|
183
|
-
},
|
|
184
|
-
"dependencies": {
|
|
185
|
-
"@babel/helper-validator-identifier": {
|
|
186
|
-
"version": "7.22.20",
|
|
187
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
|
|
188
|
-
"integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
|
|
189
|
-
},
|
|
190
|
-
"@babel/types": {
|
|
191
|
-
"version": "7.23.0",
|
|
192
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz",
|
|
193
|
-
"integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==",
|
|
194
|
-
"requires": {
|
|
195
|
-
"@babel/helper-string-parser": "^7.22.5",
|
|
196
|
-
"@babel/helper-validator-identifier": "^7.22.20",
|
|
197
|
-
"to-fast-properties": "^2.0.0"
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
175
|
}
|
|
201
176
|
},
|
|
202
177
|
"@babel/helper-annotate-as-pure": {
|
|
@@ -214,25 +189,6 @@
|
|
|
214
189
|
"dev": true,
|
|
215
190
|
"requires": {
|
|
216
191
|
"@babel/types": "^7.22.15"
|
|
217
|
-
},
|
|
218
|
-
"dependencies": {
|
|
219
|
-
"@babel/helper-validator-identifier": {
|
|
220
|
-
"version": "7.22.15",
|
|
221
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
|
|
222
|
-
"integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==",
|
|
223
|
-
"dev": true
|
|
224
|
-
},
|
|
225
|
-
"@babel/types": {
|
|
226
|
-
"version": "7.22.17",
|
|
227
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
|
|
228
|
-
"integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
|
|
229
|
-
"dev": true,
|
|
230
|
-
"requires": {
|
|
231
|
-
"@babel/helper-string-parser": "^7.22.5",
|
|
232
|
-
"@babel/helper-validator-identifier": "^7.22.15",
|
|
233
|
-
"to-fast-properties": "^2.0.0"
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
192
|
}
|
|
237
193
|
},
|
|
238
194
|
"@babel/helper-compilation-targets": {
|
|
@@ -247,28 +203,49 @@
|
|
|
247
203
|
"semver": "^6.3.1"
|
|
248
204
|
},
|
|
249
205
|
"dependencies": {
|
|
250
|
-
"
|
|
251
|
-
"version": "
|
|
252
|
-
"resolved": "https://registry.npmjs.org
|
|
253
|
-
"integrity": "sha512-
|
|
206
|
+
"lru-cache": {
|
|
207
|
+
"version": "5.1.1",
|
|
208
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
|
209
|
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
|
210
|
+
"requires": {
|
|
211
|
+
"yallist": "^3.0.2"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"semver": {
|
|
215
|
+
"version": "6.3.1",
|
|
216
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
217
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
|
|
218
|
+
},
|
|
219
|
+
"yallist": {
|
|
220
|
+
"version": "3.1.1",
|
|
221
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
|
222
|
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
|
|
254
223
|
}
|
|
255
224
|
}
|
|
256
225
|
},
|
|
257
226
|
"@babel/helper-create-class-features-plugin": {
|
|
258
|
-
"version": "7.
|
|
259
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.
|
|
260
|
-
"integrity": "sha512-
|
|
227
|
+
"version": "7.23.5",
|
|
228
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.5.tgz",
|
|
229
|
+
"integrity": "sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==",
|
|
261
230
|
"dev": true,
|
|
262
231
|
"requires": {
|
|
263
232
|
"@babel/helper-annotate-as-pure": "^7.22.5",
|
|
264
|
-
"@babel/helper-environment-visitor": "^7.22.
|
|
265
|
-
"@babel/helper-function-name": "^7.
|
|
266
|
-
"@babel/helper-member-expression-to-functions": "^7.
|
|
233
|
+
"@babel/helper-environment-visitor": "^7.22.20",
|
|
234
|
+
"@babel/helper-function-name": "^7.23.0",
|
|
235
|
+
"@babel/helper-member-expression-to-functions": "^7.23.0",
|
|
267
236
|
"@babel/helper-optimise-call-expression": "^7.22.5",
|
|
268
|
-
"@babel/helper-replace-supers": "^7.22.
|
|
237
|
+
"@babel/helper-replace-supers": "^7.22.20",
|
|
269
238
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
|
|
270
239
|
"@babel/helper-split-export-declaration": "^7.22.6",
|
|
271
240
|
"semver": "^6.3.1"
|
|
241
|
+
},
|
|
242
|
+
"dependencies": {
|
|
243
|
+
"semver": {
|
|
244
|
+
"version": "6.3.1",
|
|
245
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
246
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
247
|
+
"dev": true
|
|
248
|
+
}
|
|
272
249
|
}
|
|
273
250
|
},
|
|
274
251
|
"@babel/helper-create-regexp-features-plugin": {
|
|
@@ -280,12 +257,20 @@
|
|
|
280
257
|
"@babel/helper-annotate-as-pure": "^7.22.5",
|
|
281
258
|
"regexpu-core": "^5.3.1",
|
|
282
259
|
"semver": "^6.3.1"
|
|
260
|
+
},
|
|
261
|
+
"dependencies": {
|
|
262
|
+
"semver": {
|
|
263
|
+
"version": "6.3.1",
|
|
264
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
265
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
266
|
+
"dev": true
|
|
267
|
+
}
|
|
283
268
|
}
|
|
284
269
|
},
|
|
285
270
|
"@babel/helper-define-polyfill-provider": {
|
|
286
|
-
"version": "0.4.
|
|
287
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.
|
|
288
|
-
"integrity": "sha512-
|
|
271
|
+
"version": "0.4.3",
|
|
272
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz",
|
|
273
|
+
"integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==",
|
|
289
274
|
"dev": true,
|
|
290
275
|
"requires": {
|
|
291
276
|
"@babel/helper-compilation-targets": "^7.22.6",
|
|
@@ -296,17 +281,17 @@
|
|
|
296
281
|
}
|
|
297
282
|
},
|
|
298
283
|
"@babel/helper-environment-visitor": {
|
|
299
|
-
"version": "7.22.
|
|
300
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.
|
|
301
|
-
"integrity": "sha512-
|
|
284
|
+
"version": "7.22.20",
|
|
285
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
|
|
286
|
+
"integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="
|
|
302
287
|
},
|
|
303
288
|
"@babel/helper-function-name": {
|
|
304
|
-
"version": "7.
|
|
305
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.
|
|
306
|
-
"integrity": "sha512-
|
|
289
|
+
"version": "7.23.0",
|
|
290
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
|
|
291
|
+
"integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
|
|
307
292
|
"requires": {
|
|
308
|
-
"@babel/template": "^7.22.
|
|
309
|
-
"@babel/types": "^7.
|
|
293
|
+
"@babel/template": "^7.22.15",
|
|
294
|
+
"@babel/types": "^7.23.0"
|
|
310
295
|
}
|
|
311
296
|
},
|
|
312
297
|
"@babel/helper-hoist-variables": {
|
|
@@ -318,76 +303,32 @@
|
|
|
318
303
|
}
|
|
319
304
|
},
|
|
320
305
|
"@babel/helper-member-expression-to-functions": {
|
|
321
|
-
"version": "7.
|
|
322
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.
|
|
323
|
-
"integrity": "sha512-
|
|
306
|
+
"version": "7.23.0",
|
|
307
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz",
|
|
308
|
+
"integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==",
|
|
324
309
|
"dev": true,
|
|
325
310
|
"requires": {
|
|
326
|
-
"@babel/types": "^7.
|
|
327
|
-
},
|
|
328
|
-
"dependencies": {
|
|
329
|
-
"@babel/helper-validator-identifier": {
|
|
330
|
-
"version": "7.22.15",
|
|
331
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
|
|
332
|
-
"integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==",
|
|
333
|
-
"dev": true
|
|
334
|
-
},
|
|
335
|
-
"@babel/types": {
|
|
336
|
-
"version": "7.22.17",
|
|
337
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
|
|
338
|
-
"integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
|
|
339
|
-
"dev": true,
|
|
340
|
-
"requires": {
|
|
341
|
-
"@babel/helper-string-parser": "^7.22.5",
|
|
342
|
-
"@babel/helper-validator-identifier": "^7.22.15",
|
|
343
|
-
"to-fast-properties": "^2.0.0"
|
|
344
|
-
}
|
|
345
|
-
}
|
|
311
|
+
"@babel/types": "^7.23.0"
|
|
346
312
|
}
|
|
347
313
|
},
|
|
348
314
|
"@babel/helper-module-imports": {
|
|
349
|
-
"version": "7.22.
|
|
350
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.
|
|
351
|
-
"integrity": "sha512-
|
|
315
|
+
"version": "7.22.15",
|
|
316
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
|
|
317
|
+
"integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
|
|
352
318
|
"requires": {
|
|
353
|
-
"@babel/types": "^7.22.
|
|
319
|
+
"@babel/types": "^7.22.15"
|
|
354
320
|
}
|
|
355
321
|
},
|
|
356
322
|
"@babel/helper-module-transforms": {
|
|
357
|
-
"version": "7.
|
|
358
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.
|
|
359
|
-
"integrity": "sha512-
|
|
323
|
+
"version": "7.23.3",
|
|
324
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz",
|
|
325
|
+
"integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==",
|
|
360
326
|
"requires": {
|
|
361
|
-
"@babel/helper-environment-visitor": "^7.22.
|
|
327
|
+
"@babel/helper-environment-visitor": "^7.22.20",
|
|
362
328
|
"@babel/helper-module-imports": "^7.22.15",
|
|
363
329
|
"@babel/helper-simple-access": "^7.22.5",
|
|
364
330
|
"@babel/helper-split-export-declaration": "^7.22.6",
|
|
365
|
-
"@babel/helper-validator-identifier": "^7.22.
|
|
366
|
-
},
|
|
367
|
-
"dependencies": {
|
|
368
|
-
"@babel/helper-module-imports": {
|
|
369
|
-
"version": "7.22.15",
|
|
370
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
|
|
371
|
-
"integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
|
|
372
|
-
"requires": {
|
|
373
|
-
"@babel/types": "^7.22.15"
|
|
374
|
-
}
|
|
375
|
-
},
|
|
376
|
-
"@babel/helper-validator-identifier": {
|
|
377
|
-
"version": "7.22.15",
|
|
378
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
|
|
379
|
-
"integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ=="
|
|
380
|
-
},
|
|
381
|
-
"@babel/types": {
|
|
382
|
-
"version": "7.22.17",
|
|
383
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
|
|
384
|
-
"integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
|
|
385
|
-
"requires": {
|
|
386
|
-
"@babel/helper-string-parser": "^7.22.5",
|
|
387
|
-
"@babel/helper-validator-identifier": "^7.22.15",
|
|
388
|
-
"to-fast-properties": "^2.0.0"
|
|
389
|
-
}
|
|
390
|
-
}
|
|
331
|
+
"@babel/helper-validator-identifier": "^7.22.20"
|
|
391
332
|
}
|
|
392
333
|
},
|
|
393
334
|
"@babel/helper-optimise-call-expression": {
|
|
@@ -405,24 +346,24 @@
|
|
|
405
346
|
"integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="
|
|
406
347
|
},
|
|
407
348
|
"@babel/helper-remap-async-to-generator": {
|
|
408
|
-
"version": "7.22.
|
|
409
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.
|
|
410
|
-
"integrity": "sha512-
|
|
349
|
+
"version": "7.22.20",
|
|
350
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz",
|
|
351
|
+
"integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==",
|
|
411
352
|
"dev": true,
|
|
412
353
|
"requires": {
|
|
413
354
|
"@babel/helper-annotate-as-pure": "^7.22.5",
|
|
414
|
-
"@babel/helper-environment-visitor": "^7.22.
|
|
415
|
-
"@babel/helper-wrap-function": "^7.22.
|
|
355
|
+
"@babel/helper-environment-visitor": "^7.22.20",
|
|
356
|
+
"@babel/helper-wrap-function": "^7.22.20"
|
|
416
357
|
}
|
|
417
358
|
},
|
|
418
359
|
"@babel/helper-replace-supers": {
|
|
419
|
-
"version": "7.22.
|
|
420
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.
|
|
421
|
-
"integrity": "sha512-
|
|
360
|
+
"version": "7.22.20",
|
|
361
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz",
|
|
362
|
+
"integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==",
|
|
422
363
|
"dev": true,
|
|
423
364
|
"requires": {
|
|
424
|
-
"@babel/helper-environment-visitor": "^7.22.
|
|
425
|
-
"@babel/helper-member-expression-to-functions": "^7.22.
|
|
365
|
+
"@babel/helper-environment-visitor": "^7.22.20",
|
|
366
|
+
"@babel/helper-member-expression-to-functions": "^7.22.15",
|
|
426
367
|
"@babel/helper-optimise-call-expression": "^7.22.5"
|
|
427
368
|
}
|
|
428
369
|
},
|
|
@@ -452,163 +393,97 @@
|
|
|
452
393
|
}
|
|
453
394
|
},
|
|
454
395
|
"@babel/helper-string-parser": {
|
|
455
|
-
"version": "7.
|
|
456
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.
|
|
457
|
-
"integrity": "sha512-
|
|
396
|
+
"version": "7.23.4",
|
|
397
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz",
|
|
398
|
+
"integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ=="
|
|
458
399
|
},
|
|
459
400
|
"@babel/helper-validator-identifier": {
|
|
460
|
-
"version": "7.22.
|
|
461
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.
|
|
462
|
-
"integrity": "sha512-
|
|
401
|
+
"version": "7.22.20",
|
|
402
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
|
|
403
|
+
"integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
|
|
463
404
|
},
|
|
464
405
|
"@babel/helper-validator-option": {
|
|
465
|
-
"version": "7.
|
|
466
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.
|
|
467
|
-
"integrity": "sha512-
|
|
406
|
+
"version": "7.23.5",
|
|
407
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz",
|
|
408
|
+
"integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw=="
|
|
468
409
|
},
|
|
469
410
|
"@babel/helper-wrap-function": {
|
|
470
|
-
"version": "7.22.
|
|
471
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.
|
|
472
|
-
"integrity": "sha512-
|
|
411
|
+
"version": "7.22.20",
|
|
412
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz",
|
|
413
|
+
"integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==",
|
|
473
414
|
"dev": true,
|
|
474
415
|
"requires": {
|
|
475
416
|
"@babel/helper-function-name": "^7.22.5",
|
|
476
417
|
"@babel/template": "^7.22.15",
|
|
477
|
-
"@babel/types": "^7.22.
|
|
478
|
-
},
|
|
479
|
-
"dependencies": {
|
|
480
|
-
"@babel/code-frame": {
|
|
481
|
-
"version": "7.22.13",
|
|
482
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
|
|
483
|
-
"integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
|
|
484
|
-
"dev": true,
|
|
485
|
-
"requires": {
|
|
486
|
-
"@babel/highlight": "^7.22.13",
|
|
487
|
-
"chalk": "^2.4.2"
|
|
488
|
-
}
|
|
489
|
-
},
|
|
490
|
-
"@babel/highlight": {
|
|
491
|
-
"version": "7.22.13",
|
|
492
|
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz",
|
|
493
|
-
"integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==",
|
|
494
|
-
"dev": true,
|
|
495
|
-
"requires": {
|
|
496
|
-
"@babel/helper-validator-identifier": "^7.22.5",
|
|
497
|
-
"chalk": "^2.4.2",
|
|
498
|
-
"js-tokens": "^4.0.0"
|
|
499
|
-
}
|
|
500
|
-
},
|
|
501
|
-
"@babel/parser": {
|
|
502
|
-
"version": "7.22.16",
|
|
503
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz",
|
|
504
|
-
"integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==",
|
|
505
|
-
"dev": true
|
|
506
|
-
},
|
|
507
|
-
"@babel/template": {
|
|
508
|
-
"version": "7.22.15",
|
|
509
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
|
|
510
|
-
"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
|
|
511
|
-
"dev": true,
|
|
512
|
-
"requires": {
|
|
513
|
-
"@babel/code-frame": "^7.22.13",
|
|
514
|
-
"@babel/parser": "^7.22.15",
|
|
515
|
-
"@babel/types": "^7.22.15"
|
|
516
|
-
}
|
|
517
|
-
},
|
|
518
|
-
"@babel/types": {
|
|
519
|
-
"version": "7.22.17",
|
|
520
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
|
|
521
|
-
"integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
|
|
522
|
-
"dev": true,
|
|
523
|
-
"requires": {
|
|
524
|
-
"@babel/helper-string-parser": "^7.22.5",
|
|
525
|
-
"@babel/helper-validator-identifier": "^7.22.15",
|
|
526
|
-
"to-fast-properties": "^2.0.0"
|
|
527
|
-
},
|
|
528
|
-
"dependencies": {
|
|
529
|
-
"@babel/helper-validator-identifier": {
|
|
530
|
-
"version": "7.22.15",
|
|
531
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
|
|
532
|
-
"integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==",
|
|
533
|
-
"dev": true
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
}
|
|
418
|
+
"@babel/types": "^7.22.19"
|
|
537
419
|
}
|
|
538
420
|
},
|
|
539
421
|
"@babel/helpers": {
|
|
540
|
-
"version": "7.
|
|
541
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.
|
|
542
|
-
"integrity": "sha512-
|
|
422
|
+
"version": "7.23.5",
|
|
423
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.5.tgz",
|
|
424
|
+
"integrity": "sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==",
|
|
543
425
|
"requires": {
|
|
544
426
|
"@babel/template": "^7.22.15",
|
|
545
|
-
"@babel/traverse": "^7.
|
|
546
|
-
"@babel/types": "^7.
|
|
427
|
+
"@babel/traverse": "^7.23.5",
|
|
428
|
+
"@babel/types": "^7.23.5"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
"@babel/highlight": {
|
|
432
|
+
"version": "7.23.4",
|
|
433
|
+
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz",
|
|
434
|
+
"integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==",
|
|
435
|
+
"requires": {
|
|
436
|
+
"@babel/helper-validator-identifier": "^7.22.20",
|
|
437
|
+
"chalk": "^2.4.2",
|
|
438
|
+
"js-tokens": "^4.0.0"
|
|
547
439
|
},
|
|
548
440
|
"dependencies": {
|
|
549
|
-
"
|
|
550
|
-
"version": "
|
|
551
|
-
"resolved": "https://registry.npmjs.org
|
|
552
|
-
"integrity": "sha512-
|
|
441
|
+
"ansi-styles": {
|
|
442
|
+
"version": "3.2.1",
|
|
443
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
|
444
|
+
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
|
|
553
445
|
"requires": {
|
|
554
|
-
"
|
|
555
|
-
"chalk": "^2.4.2"
|
|
446
|
+
"color-convert": "^1.9.0"
|
|
556
447
|
}
|
|
557
448
|
},
|
|
558
|
-
"
|
|
559
|
-
"version": "
|
|
560
|
-
"resolved": "https://registry.npmjs.org
|
|
561
|
-
"integrity": "sha512-
|
|
449
|
+
"chalk": {
|
|
450
|
+
"version": "2.4.2",
|
|
451
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
|
452
|
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
|
562
453
|
"requires": {
|
|
563
|
-
"
|
|
564
|
-
"
|
|
565
|
-
"
|
|
454
|
+
"ansi-styles": "^3.2.1",
|
|
455
|
+
"escape-string-regexp": "^1.0.5",
|
|
456
|
+
"supports-color": "^5.3.0"
|
|
566
457
|
}
|
|
567
458
|
},
|
|
568
|
-
"
|
|
569
|
-
"version": "
|
|
570
|
-
"resolved": "https://registry.npmjs.org
|
|
571
|
-
"integrity": "sha512
|
|
572
|
-
},
|
|
573
|
-
"@babel/template": {
|
|
574
|
-
"version": "7.22.15",
|
|
575
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
|
|
576
|
-
"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
|
|
459
|
+
"color-convert": {
|
|
460
|
+
"version": "1.9.3",
|
|
461
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
|
462
|
+
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
|
577
463
|
"requires": {
|
|
578
|
-
"
|
|
579
|
-
"@babel/parser": "^7.22.15",
|
|
580
|
-
"@babel/types": "^7.22.15"
|
|
464
|
+
"color-name": "1.1.3"
|
|
581
465
|
}
|
|
582
466
|
},
|
|
583
|
-
"
|
|
584
|
-
"version": "
|
|
585
|
-
"resolved": "https://registry.npmjs.org
|
|
586
|
-
"integrity": "sha512-
|
|
467
|
+
"color-name": {
|
|
468
|
+
"version": "1.1.3",
|
|
469
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
|
470
|
+
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
|
|
471
|
+
},
|
|
472
|
+
"has-flag": {
|
|
473
|
+
"version": "3.0.0",
|
|
474
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
|
475
|
+
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
|
|
476
|
+
},
|
|
477
|
+
"supports-color": {
|
|
478
|
+
"version": "5.5.0",
|
|
479
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
|
480
|
+
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
|
587
481
|
"requires": {
|
|
588
|
-
"
|
|
589
|
-
"@babel/helper-validator-identifier": "^7.22.15",
|
|
590
|
-
"to-fast-properties": "^2.0.0"
|
|
591
|
-
},
|
|
592
|
-
"dependencies": {
|
|
593
|
-
"@babel/helper-validator-identifier": {
|
|
594
|
-
"version": "7.22.15",
|
|
595
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
|
|
596
|
-
"integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ=="
|
|
597
|
-
}
|
|
482
|
+
"has-flag": "^3.0.0"
|
|
598
483
|
}
|
|
599
484
|
}
|
|
600
485
|
}
|
|
601
486
|
},
|
|
602
|
-
"@babel/highlight": {
|
|
603
|
-
"version": "7.22.10",
|
|
604
|
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz",
|
|
605
|
-
"integrity": "sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==",
|
|
606
|
-
"requires": {
|
|
607
|
-
"@babel/helper-validator-identifier": "^7.22.5",
|
|
608
|
-
"chalk": "^2.4.2",
|
|
609
|
-
"js-tokens": "^4.0.0"
|
|
610
|
-
}
|
|
611
|
-
},
|
|
612
487
|
"@babel/node": {
|
|
613
488
|
"version": "7.22.15",
|
|
614
489
|
"resolved": "https://registry.npmjs.org/@babel/node/-/node-7.22.15.tgz",
|
|
@@ -632,28 +507,28 @@
|
|
|
632
507
|
}
|
|
633
508
|
},
|
|
634
509
|
"@babel/parser": {
|
|
635
|
-
"version": "7.
|
|
636
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.
|
|
637
|
-
"integrity": "sha512-
|
|
510
|
+
"version": "7.23.5",
|
|
511
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.5.tgz",
|
|
512
|
+
"integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ=="
|
|
638
513
|
},
|
|
639
514
|
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
|
|
640
|
-
"version": "7.
|
|
641
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.
|
|
642
|
-
"integrity": "sha512-
|
|
515
|
+
"version": "7.23.3",
|
|
516
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz",
|
|
517
|
+
"integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==",
|
|
643
518
|
"dev": true,
|
|
644
519
|
"requires": {
|
|
645
520
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
646
521
|
}
|
|
647
522
|
},
|
|
648
523
|
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
|
|
649
|
-
"version": "7.
|
|
650
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.
|
|
651
|
-
"integrity": "sha512-
|
|
524
|
+
"version": "7.23.3",
|
|
525
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz",
|
|
526
|
+
"integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==",
|
|
652
527
|
"dev": true,
|
|
653
528
|
"requires": {
|
|
654
529
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
655
530
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
|
|
656
|
-
"@babel/plugin-transform-optional-chaining": "^7.
|
|
531
|
+
"@babel/plugin-transform-optional-chaining": "^7.23.3"
|
|
657
532
|
}
|
|
658
533
|
},
|
|
659
534
|
"@babel/plugin-proposal-private-property-in-object": {
|
|
@@ -713,18 +588,18 @@
|
|
|
713
588
|
}
|
|
714
589
|
},
|
|
715
590
|
"@babel/plugin-syntax-import-assertions": {
|
|
716
|
-
"version": "7.
|
|
717
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.
|
|
718
|
-
"integrity": "sha512-
|
|
591
|
+
"version": "7.23.3",
|
|
592
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz",
|
|
593
|
+
"integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==",
|
|
719
594
|
"dev": true,
|
|
720
595
|
"requires": {
|
|
721
596
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
722
597
|
}
|
|
723
598
|
},
|
|
724
599
|
"@babel/plugin-syntax-import-attributes": {
|
|
725
|
-
"version": "7.
|
|
726
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.
|
|
727
|
-
"integrity": "sha512-
|
|
600
|
+
"version": "7.23.3",
|
|
601
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz",
|
|
602
|
+
"integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==",
|
|
728
603
|
"dev": true,
|
|
729
604
|
"requires": {
|
|
730
605
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
@@ -747,9 +622,9 @@
|
|
|
747
622
|
}
|
|
748
623
|
},
|
|
749
624
|
"@babel/plugin-syntax-jsx": {
|
|
750
|
-
"version": "7.
|
|
751
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.
|
|
752
|
-
"integrity": "sha512-
|
|
625
|
+
"version": "7.23.3",
|
|
626
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz",
|
|
627
|
+
"integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==",
|
|
753
628
|
"requires": {
|
|
754
629
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
755
630
|
}
|
|
@@ -820,9 +695,9 @@
|
|
|
820
695
|
}
|
|
821
696
|
},
|
|
822
697
|
"@babel/plugin-syntax-typescript": {
|
|
823
|
-
"version": "7.
|
|
824
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.
|
|
825
|
-
"integrity": "sha512-
|
|
698
|
+
"version": "7.23.3",
|
|
699
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz",
|
|
700
|
+
"integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==",
|
|
826
701
|
"requires": {
|
|
827
702
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
828
703
|
}
|
|
@@ -838,135 +713,135 @@
|
|
|
838
713
|
}
|
|
839
714
|
},
|
|
840
715
|
"@babel/plugin-transform-arrow-functions": {
|
|
841
|
-
"version": "7.
|
|
842
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.
|
|
843
|
-
"integrity": "sha512-
|
|
716
|
+
"version": "7.23.3",
|
|
717
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz",
|
|
718
|
+
"integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==",
|
|
844
719
|
"dev": true,
|
|
845
720
|
"requires": {
|
|
846
721
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
847
722
|
}
|
|
848
723
|
},
|
|
849
724
|
"@babel/plugin-transform-async-generator-functions": {
|
|
850
|
-
"version": "7.
|
|
851
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.
|
|
852
|
-
"integrity": "sha512-
|
|
725
|
+
"version": "7.23.4",
|
|
726
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz",
|
|
727
|
+
"integrity": "sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==",
|
|
853
728
|
"dev": true,
|
|
854
729
|
"requires": {
|
|
855
|
-
"@babel/helper-environment-visitor": "^7.22.
|
|
730
|
+
"@babel/helper-environment-visitor": "^7.22.20",
|
|
856
731
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
857
|
-
"@babel/helper-remap-async-to-generator": "^7.22.
|
|
732
|
+
"@babel/helper-remap-async-to-generator": "^7.22.20",
|
|
858
733
|
"@babel/plugin-syntax-async-generators": "^7.8.4"
|
|
859
734
|
}
|
|
860
735
|
},
|
|
861
736
|
"@babel/plugin-transform-async-to-generator": {
|
|
862
|
-
"version": "7.
|
|
863
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.
|
|
864
|
-
"integrity": "sha512-
|
|
737
|
+
"version": "7.23.3",
|
|
738
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz",
|
|
739
|
+
"integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==",
|
|
865
740
|
"dev": true,
|
|
866
741
|
"requires": {
|
|
867
|
-
"@babel/helper-module-imports": "^7.22.
|
|
742
|
+
"@babel/helper-module-imports": "^7.22.15",
|
|
868
743
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
869
|
-
"@babel/helper-remap-async-to-generator": "^7.22.
|
|
744
|
+
"@babel/helper-remap-async-to-generator": "^7.22.20"
|
|
870
745
|
}
|
|
871
746
|
},
|
|
872
747
|
"@babel/plugin-transform-block-scoped-functions": {
|
|
873
|
-
"version": "7.
|
|
874
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.
|
|
875
|
-
"integrity": "sha512-
|
|
748
|
+
"version": "7.23.3",
|
|
749
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz",
|
|
750
|
+
"integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==",
|
|
876
751
|
"dev": true,
|
|
877
752
|
"requires": {
|
|
878
753
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
879
754
|
}
|
|
880
755
|
},
|
|
881
756
|
"@babel/plugin-transform-block-scoping": {
|
|
882
|
-
"version": "7.
|
|
883
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.
|
|
884
|
-
"integrity": "sha512-
|
|
757
|
+
"version": "7.23.4",
|
|
758
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz",
|
|
759
|
+
"integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==",
|
|
885
760
|
"dev": true,
|
|
886
761
|
"requires": {
|
|
887
762
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
888
763
|
}
|
|
889
764
|
},
|
|
890
765
|
"@babel/plugin-transform-class-properties": {
|
|
891
|
-
"version": "7.
|
|
892
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.
|
|
893
|
-
"integrity": "sha512-
|
|
766
|
+
"version": "7.23.3",
|
|
767
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz",
|
|
768
|
+
"integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==",
|
|
894
769
|
"dev": true,
|
|
895
770
|
"requires": {
|
|
896
|
-
"@babel/helper-create-class-features-plugin": "^7.22.
|
|
771
|
+
"@babel/helper-create-class-features-plugin": "^7.22.15",
|
|
897
772
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
898
773
|
}
|
|
899
774
|
},
|
|
900
775
|
"@babel/plugin-transform-class-static-block": {
|
|
901
|
-
"version": "7.
|
|
902
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.
|
|
903
|
-
"integrity": "sha512-
|
|
776
|
+
"version": "7.23.4",
|
|
777
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz",
|
|
778
|
+
"integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==",
|
|
904
779
|
"dev": true,
|
|
905
780
|
"requires": {
|
|
906
|
-
"@babel/helper-create-class-features-plugin": "^7.22.
|
|
781
|
+
"@babel/helper-create-class-features-plugin": "^7.22.15",
|
|
907
782
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
908
783
|
"@babel/plugin-syntax-class-static-block": "^7.14.5"
|
|
909
784
|
}
|
|
910
785
|
},
|
|
911
786
|
"@babel/plugin-transform-classes": {
|
|
912
|
-
"version": "7.
|
|
913
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
|
|
914
|
-
"integrity": "sha512-
|
|
787
|
+
"version": "7.23.5",
|
|
788
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz",
|
|
789
|
+
"integrity": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==",
|
|
915
790
|
"dev": true,
|
|
916
791
|
"requires": {
|
|
917
792
|
"@babel/helper-annotate-as-pure": "^7.22.5",
|
|
918
793
|
"@babel/helper-compilation-targets": "^7.22.15",
|
|
919
|
-
"@babel/helper-environment-visitor": "^7.22.
|
|
920
|
-
"@babel/helper-function-name": "^7.
|
|
794
|
+
"@babel/helper-environment-visitor": "^7.22.20",
|
|
795
|
+
"@babel/helper-function-name": "^7.23.0",
|
|
921
796
|
"@babel/helper-optimise-call-expression": "^7.22.5",
|
|
922
797
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
923
|
-
"@babel/helper-replace-supers": "^7.22.
|
|
798
|
+
"@babel/helper-replace-supers": "^7.22.20",
|
|
924
799
|
"@babel/helper-split-export-declaration": "^7.22.6",
|
|
925
800
|
"globals": "^11.1.0"
|
|
926
801
|
}
|
|
927
802
|
},
|
|
928
803
|
"@babel/plugin-transform-computed-properties": {
|
|
929
|
-
"version": "7.
|
|
930
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.
|
|
931
|
-
"integrity": "sha512-
|
|
804
|
+
"version": "7.23.3",
|
|
805
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz",
|
|
806
|
+
"integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==",
|
|
932
807
|
"dev": true,
|
|
933
808
|
"requires": {
|
|
934
809
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
935
|
-
"@babel/template": "^7.22.
|
|
810
|
+
"@babel/template": "^7.22.15"
|
|
936
811
|
}
|
|
937
812
|
},
|
|
938
813
|
"@babel/plugin-transform-destructuring": {
|
|
939
|
-
"version": "7.
|
|
940
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
|
941
|
-
"integrity": "sha512-
|
|
814
|
+
"version": "7.23.3",
|
|
815
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz",
|
|
816
|
+
"integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==",
|
|
942
817
|
"dev": true,
|
|
943
818
|
"requires": {
|
|
944
819
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
945
820
|
}
|
|
946
821
|
},
|
|
947
822
|
"@babel/plugin-transform-dotall-regex": {
|
|
948
|
-
"version": "7.
|
|
949
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.
|
|
950
|
-
"integrity": "sha512-
|
|
823
|
+
"version": "7.23.3",
|
|
824
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz",
|
|
825
|
+
"integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==",
|
|
951
826
|
"dev": true,
|
|
952
827
|
"requires": {
|
|
953
|
-
"@babel/helper-create-regexp-features-plugin": "^7.22.
|
|
828
|
+
"@babel/helper-create-regexp-features-plugin": "^7.22.15",
|
|
954
829
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
955
830
|
}
|
|
956
831
|
},
|
|
957
832
|
"@babel/plugin-transform-duplicate-keys": {
|
|
958
|
-
"version": "7.
|
|
959
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.
|
|
960
|
-
"integrity": "sha512-
|
|
833
|
+
"version": "7.23.3",
|
|
834
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz",
|
|
835
|
+
"integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==",
|
|
961
836
|
"dev": true,
|
|
962
837
|
"requires": {
|
|
963
838
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
964
839
|
}
|
|
965
840
|
},
|
|
966
841
|
"@babel/plugin-transform-dynamic-import": {
|
|
967
|
-
"version": "7.
|
|
968
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.
|
|
969
|
-
"integrity": "sha512-
|
|
842
|
+
"version": "7.23.4",
|
|
843
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz",
|
|
844
|
+
"integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==",
|
|
970
845
|
"dev": true,
|
|
971
846
|
"requires": {
|
|
972
847
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -974,19 +849,19 @@
|
|
|
974
849
|
}
|
|
975
850
|
},
|
|
976
851
|
"@babel/plugin-transform-exponentiation-operator": {
|
|
977
|
-
"version": "7.
|
|
978
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.
|
|
979
|
-
"integrity": "sha512-
|
|
852
|
+
"version": "7.23.3",
|
|
853
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz",
|
|
854
|
+
"integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==",
|
|
980
855
|
"dev": true,
|
|
981
856
|
"requires": {
|
|
982
|
-
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.
|
|
857
|
+
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15",
|
|
983
858
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
984
859
|
}
|
|
985
860
|
},
|
|
986
861
|
"@babel/plugin-transform-export-namespace-from": {
|
|
987
|
-
"version": "7.
|
|
988
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.
|
|
989
|
-
"integrity": "sha512-
|
|
862
|
+
"version": "7.23.4",
|
|
863
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz",
|
|
864
|
+
"integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==",
|
|
990
865
|
"dev": true,
|
|
991
866
|
"requires": {
|
|
992
867
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -994,29 +869,29 @@
|
|
|
994
869
|
}
|
|
995
870
|
},
|
|
996
871
|
"@babel/plugin-transform-for-of": {
|
|
997
|
-
"version": "7.
|
|
998
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
|
999
|
-
"integrity": "sha512-
|
|
872
|
+
"version": "7.23.3",
|
|
873
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz",
|
|
874
|
+
"integrity": "sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==",
|
|
1000
875
|
"dev": true,
|
|
1001
876
|
"requires": {
|
|
1002
877
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1003
878
|
}
|
|
1004
879
|
},
|
|
1005
880
|
"@babel/plugin-transform-function-name": {
|
|
1006
|
-
"version": "7.
|
|
1007
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.
|
|
1008
|
-
"integrity": "sha512-
|
|
881
|
+
"version": "7.23.3",
|
|
882
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz",
|
|
883
|
+
"integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==",
|
|
1009
884
|
"dev": true,
|
|
1010
885
|
"requires": {
|
|
1011
|
-
"@babel/helper-compilation-targets": "^7.22.
|
|
1012
|
-
"@babel/helper-function-name": "^7.
|
|
886
|
+
"@babel/helper-compilation-targets": "^7.22.15",
|
|
887
|
+
"@babel/helper-function-name": "^7.23.0",
|
|
1013
888
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1014
889
|
}
|
|
1015
890
|
},
|
|
1016
891
|
"@babel/plugin-transform-json-strings": {
|
|
1017
|
-
"version": "7.
|
|
1018
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.
|
|
1019
|
-
"integrity": "sha512-
|
|
892
|
+
"version": "7.23.4",
|
|
893
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz",
|
|
894
|
+
"integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==",
|
|
1020
895
|
"dev": true,
|
|
1021
896
|
"requires": {
|
|
1022
897
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -1024,18 +899,18 @@
|
|
|
1024
899
|
}
|
|
1025
900
|
},
|
|
1026
901
|
"@babel/plugin-transform-literals": {
|
|
1027
|
-
"version": "7.
|
|
1028
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.
|
|
1029
|
-
"integrity": "sha512-
|
|
902
|
+
"version": "7.23.3",
|
|
903
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz",
|
|
904
|
+
"integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==",
|
|
1030
905
|
"dev": true,
|
|
1031
906
|
"requires": {
|
|
1032
907
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1033
908
|
}
|
|
1034
909
|
},
|
|
1035
910
|
"@babel/plugin-transform-logical-assignment-operators": {
|
|
1036
|
-
"version": "7.
|
|
1037
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.
|
|
1038
|
-
"integrity": "sha512-
|
|
911
|
+
"version": "7.23.4",
|
|
912
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz",
|
|
913
|
+
"integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==",
|
|
1039
914
|
"dev": true,
|
|
1040
915
|
"requires": {
|
|
1041
916
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -1043,54 +918,54 @@
|
|
|
1043
918
|
}
|
|
1044
919
|
},
|
|
1045
920
|
"@babel/plugin-transform-member-expression-literals": {
|
|
1046
|
-
"version": "7.
|
|
1047
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.
|
|
1048
|
-
"integrity": "sha512-
|
|
921
|
+
"version": "7.23.3",
|
|
922
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz",
|
|
923
|
+
"integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==",
|
|
1049
924
|
"dev": true,
|
|
1050
925
|
"requires": {
|
|
1051
926
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1052
927
|
}
|
|
1053
928
|
},
|
|
1054
929
|
"@babel/plugin-transform-modules-amd": {
|
|
1055
|
-
"version": "7.
|
|
1056
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
|
|
1057
|
-
"integrity": "sha512-
|
|
930
|
+
"version": "7.23.3",
|
|
931
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz",
|
|
932
|
+
"integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==",
|
|
1058
933
|
"dev": true,
|
|
1059
934
|
"requires": {
|
|
1060
|
-
"@babel/helper-module-transforms": "^7.
|
|
935
|
+
"@babel/helper-module-transforms": "^7.23.3",
|
|
1061
936
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1062
937
|
}
|
|
1063
938
|
},
|
|
1064
939
|
"@babel/plugin-transform-modules-commonjs": {
|
|
1065
|
-
"version": "7.
|
|
1066
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
|
1067
|
-
"integrity": "sha512-
|
|
940
|
+
"version": "7.23.3",
|
|
941
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz",
|
|
942
|
+
"integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==",
|
|
1068
943
|
"dev": true,
|
|
1069
944
|
"requires": {
|
|
1070
|
-
"@babel/helper-module-transforms": "^7.
|
|
945
|
+
"@babel/helper-module-transforms": "^7.23.3",
|
|
1071
946
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
1072
947
|
"@babel/helper-simple-access": "^7.22.5"
|
|
1073
948
|
}
|
|
1074
949
|
},
|
|
1075
950
|
"@babel/plugin-transform-modules-systemjs": {
|
|
1076
|
-
"version": "7.
|
|
1077
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
|
1078
|
-
"integrity": "sha512-
|
|
951
|
+
"version": "7.23.3",
|
|
952
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz",
|
|
953
|
+
"integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==",
|
|
1079
954
|
"dev": true,
|
|
1080
955
|
"requires": {
|
|
1081
956
|
"@babel/helper-hoist-variables": "^7.22.5",
|
|
1082
|
-
"@babel/helper-module-transforms": "^7.
|
|
957
|
+
"@babel/helper-module-transforms": "^7.23.3",
|
|
1083
958
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
1084
|
-
"@babel/helper-validator-identifier": "^7.22.
|
|
959
|
+
"@babel/helper-validator-identifier": "^7.22.20"
|
|
1085
960
|
}
|
|
1086
961
|
},
|
|
1087
962
|
"@babel/plugin-transform-modules-umd": {
|
|
1088
|
-
"version": "7.
|
|
1089
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
|
|
1090
|
-
"integrity": "sha512
|
|
963
|
+
"version": "7.23.3",
|
|
964
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz",
|
|
965
|
+
"integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==",
|
|
1091
966
|
"dev": true,
|
|
1092
967
|
"requires": {
|
|
1093
|
-
"@babel/helper-module-transforms": "^7.
|
|
968
|
+
"@babel/helper-module-transforms": "^7.23.3",
|
|
1094
969
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1095
970
|
}
|
|
1096
971
|
},
|
|
@@ -1105,18 +980,18 @@
|
|
|
1105
980
|
}
|
|
1106
981
|
},
|
|
1107
982
|
"@babel/plugin-transform-new-target": {
|
|
1108
|
-
"version": "7.
|
|
1109
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.
|
|
1110
|
-
"integrity": "sha512-
|
|
983
|
+
"version": "7.23.3",
|
|
984
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz",
|
|
985
|
+
"integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==",
|
|
1111
986
|
"dev": true,
|
|
1112
987
|
"requires": {
|
|
1113
988
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1114
989
|
}
|
|
1115
990
|
},
|
|
1116
991
|
"@babel/plugin-transform-nullish-coalescing-operator": {
|
|
1117
|
-
"version": "7.
|
|
1118
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.
|
|
1119
|
-
"integrity": "sha512-
|
|
992
|
+
"version": "7.23.4",
|
|
993
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz",
|
|
994
|
+
"integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==",
|
|
1120
995
|
"dev": true,
|
|
1121
996
|
"requires": {
|
|
1122
997
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -1124,9 +999,9 @@
|
|
|
1124
999
|
}
|
|
1125
1000
|
},
|
|
1126
1001
|
"@babel/plugin-transform-numeric-separator": {
|
|
1127
|
-
"version": "7.
|
|
1128
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.
|
|
1129
|
-
"integrity": "sha512-
|
|
1002
|
+
"version": "7.23.4",
|
|
1003
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz",
|
|
1004
|
+
"integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==",
|
|
1130
1005
|
"dev": true,
|
|
1131
1006
|
"requires": {
|
|
1132
1007
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -1134,32 +1009,32 @@
|
|
|
1134
1009
|
}
|
|
1135
1010
|
},
|
|
1136
1011
|
"@babel/plugin-transform-object-rest-spread": {
|
|
1137
|
-
"version": "7.
|
|
1138
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.
|
|
1139
|
-
"integrity": "sha512-
|
|
1012
|
+
"version": "7.23.4",
|
|
1013
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz",
|
|
1014
|
+
"integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==",
|
|
1140
1015
|
"dev": true,
|
|
1141
1016
|
"requires": {
|
|
1142
|
-
"@babel/compat-data": "^7.
|
|
1017
|
+
"@babel/compat-data": "^7.23.3",
|
|
1143
1018
|
"@babel/helper-compilation-targets": "^7.22.15",
|
|
1144
1019
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
1145
1020
|
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
|
|
1146
|
-
"@babel/plugin-transform-parameters": "^7.
|
|
1021
|
+
"@babel/plugin-transform-parameters": "^7.23.3"
|
|
1147
1022
|
}
|
|
1148
1023
|
},
|
|
1149
1024
|
"@babel/plugin-transform-object-super": {
|
|
1150
|
-
"version": "7.
|
|
1151
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
|
|
1152
|
-
"integrity": "sha512-
|
|
1025
|
+
"version": "7.23.3",
|
|
1026
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz",
|
|
1027
|
+
"integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==",
|
|
1153
1028
|
"dev": true,
|
|
1154
1029
|
"requires": {
|
|
1155
1030
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
1156
|
-
"@babel/helper-replace-supers": "^7.22.
|
|
1031
|
+
"@babel/helper-replace-supers": "^7.22.20"
|
|
1157
1032
|
}
|
|
1158
1033
|
},
|
|
1159
1034
|
"@babel/plugin-transform-optional-catch-binding": {
|
|
1160
|
-
"version": "7.
|
|
1161
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.
|
|
1162
|
-
"integrity": "sha512-
|
|
1035
|
+
"version": "7.23.4",
|
|
1036
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz",
|
|
1037
|
+
"integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==",
|
|
1163
1038
|
"dev": true,
|
|
1164
1039
|
"requires": {
|
|
1165
1040
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -1167,9 +1042,9 @@
|
|
|
1167
1042
|
}
|
|
1168
1043
|
},
|
|
1169
1044
|
"@babel/plugin-transform-optional-chaining": {
|
|
1170
|
-
"version": "7.
|
|
1171
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.
|
|
1172
|
-
"integrity": "sha512-
|
|
1045
|
+
"version": "7.23.4",
|
|
1046
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz",
|
|
1047
|
+
"integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==",
|
|
1173
1048
|
"dev": true,
|
|
1174
1049
|
"requires": {
|
|
1175
1050
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -1178,63 +1053,63 @@
|
|
|
1178
1053
|
}
|
|
1179
1054
|
},
|
|
1180
1055
|
"@babel/plugin-transform-parameters": {
|
|
1181
|
-
"version": "7.
|
|
1182
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
|
|
1183
|
-
"integrity": "sha512-
|
|
1056
|
+
"version": "7.23.3",
|
|
1057
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz",
|
|
1058
|
+
"integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==",
|
|
1184
1059
|
"dev": true,
|
|
1185
1060
|
"requires": {
|
|
1186
1061
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1187
1062
|
}
|
|
1188
1063
|
},
|
|
1189
1064
|
"@babel/plugin-transform-private-methods": {
|
|
1190
|
-
"version": "7.
|
|
1191
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.
|
|
1192
|
-
"integrity": "sha512-
|
|
1065
|
+
"version": "7.23.3",
|
|
1066
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz",
|
|
1067
|
+
"integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==",
|
|
1193
1068
|
"dev": true,
|
|
1194
1069
|
"requires": {
|
|
1195
|
-
"@babel/helper-create-class-features-plugin": "^7.22.
|
|
1070
|
+
"@babel/helper-create-class-features-plugin": "^7.22.15",
|
|
1196
1071
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1197
1072
|
}
|
|
1198
1073
|
},
|
|
1199
1074
|
"@babel/plugin-transform-private-property-in-object": {
|
|
1200
|
-
"version": "7.
|
|
1201
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.
|
|
1202
|
-
"integrity": "sha512-
|
|
1075
|
+
"version": "7.23.4",
|
|
1076
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz",
|
|
1077
|
+
"integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==",
|
|
1203
1078
|
"dev": true,
|
|
1204
1079
|
"requires": {
|
|
1205
1080
|
"@babel/helper-annotate-as-pure": "^7.22.5",
|
|
1206
|
-
"@babel/helper-create-class-features-plugin": "^7.22.
|
|
1081
|
+
"@babel/helper-create-class-features-plugin": "^7.22.15",
|
|
1207
1082
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
1208
1083
|
"@babel/plugin-syntax-private-property-in-object": "^7.14.5"
|
|
1209
1084
|
}
|
|
1210
1085
|
},
|
|
1211
1086
|
"@babel/plugin-transform-property-literals": {
|
|
1212
|
-
"version": "7.
|
|
1213
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.
|
|
1214
|
-
"integrity": "sha512-
|
|
1087
|
+
"version": "7.23.3",
|
|
1088
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz",
|
|
1089
|
+
"integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==",
|
|
1215
1090
|
"dev": true,
|
|
1216
1091
|
"requires": {
|
|
1217
1092
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1218
1093
|
}
|
|
1219
1094
|
},
|
|
1220
1095
|
"@babel/plugin-transform-react-display-name": {
|
|
1221
|
-
"version": "7.
|
|
1222
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.
|
|
1223
|
-
"integrity": "sha512-
|
|
1096
|
+
"version": "7.23.3",
|
|
1097
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz",
|
|
1098
|
+
"integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==",
|
|
1224
1099
|
"requires": {
|
|
1225
1100
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1226
1101
|
}
|
|
1227
1102
|
},
|
|
1228
1103
|
"@babel/plugin-transform-react-jsx": {
|
|
1229
|
-
"version": "7.
|
|
1230
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.
|
|
1231
|
-
"integrity": "sha512-
|
|
1104
|
+
"version": "7.23.4",
|
|
1105
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz",
|
|
1106
|
+
"integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==",
|
|
1232
1107
|
"requires": {
|
|
1233
1108
|
"@babel/helper-annotate-as-pure": "^7.22.5",
|
|
1234
|
-
"@babel/helper-module-imports": "^7.22.
|
|
1109
|
+
"@babel/helper-module-imports": "^7.22.15",
|
|
1235
1110
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
1236
|
-
"@babel/plugin-syntax-jsx": "^7.
|
|
1237
|
-
"@babel/types": "^7.
|
|
1111
|
+
"@babel/plugin-syntax-jsx": "^7.23.3",
|
|
1112
|
+
"@babel/types": "^7.23.4"
|
|
1238
1113
|
}
|
|
1239
1114
|
},
|
|
1240
1115
|
"@babel/plugin-transform-react-jsx-development": {
|
|
@@ -1246,18 +1121,18 @@
|
|
|
1246
1121
|
}
|
|
1247
1122
|
},
|
|
1248
1123
|
"@babel/plugin-transform-react-pure-annotations": {
|
|
1249
|
-
"version": "7.
|
|
1250
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.
|
|
1251
|
-
"integrity": "sha512-
|
|
1124
|
+
"version": "7.23.3",
|
|
1125
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz",
|
|
1126
|
+
"integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==",
|
|
1252
1127
|
"requires": {
|
|
1253
1128
|
"@babel/helper-annotate-as-pure": "^7.22.5",
|
|
1254
1129
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1255
1130
|
}
|
|
1256
1131
|
},
|
|
1257
1132
|
"@babel/plugin-transform-regenerator": {
|
|
1258
|
-
"version": "7.
|
|
1259
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.
|
|
1260
|
-
"integrity": "sha512-
|
|
1133
|
+
"version": "7.23.3",
|
|
1134
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz",
|
|
1135
|
+
"integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==",
|
|
1261
1136
|
"dev": true,
|
|
1262
1137
|
"requires": {
|
|
1263
1138
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -1265,9 +1140,9 @@
|
|
|
1265
1140
|
}
|
|
1266
1141
|
},
|
|
1267
1142
|
"@babel/plugin-transform-reserved-words": {
|
|
1268
|
-
"version": "7.
|
|
1269
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.
|
|
1270
|
-
"integrity": "sha512-
|
|
1143
|
+
"version": "7.23.3",
|
|
1144
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz",
|
|
1145
|
+
"integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==",
|
|
1271
1146
|
"dev": true,
|
|
1272
1147
|
"requires": {
|
|
1273
1148
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
@@ -1287,47 +1162,27 @@
|
|
|
1287
1162
|
"semver": "^6.3.1"
|
|
1288
1163
|
},
|
|
1289
1164
|
"dependencies": {
|
|
1290
|
-
"
|
|
1291
|
-
"version": "
|
|
1292
|
-
"resolved": "https://registry.npmjs.org
|
|
1293
|
-
"integrity": "sha512-
|
|
1294
|
-
"dev": true,
|
|
1295
|
-
"requires": {
|
|
1296
|
-
"@babel/types": "^7.22.15"
|
|
1297
|
-
}
|
|
1298
|
-
},
|
|
1299
|
-
"@babel/helper-validator-identifier": {
|
|
1300
|
-
"version": "7.22.15",
|
|
1301
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
|
|
1302
|
-
"integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==",
|
|
1165
|
+
"semver": {
|
|
1166
|
+
"version": "6.3.1",
|
|
1167
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
1168
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
1303
1169
|
"dev": true
|
|
1304
|
-
},
|
|
1305
|
-
"@babel/types": {
|
|
1306
|
-
"version": "7.22.17",
|
|
1307
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
|
|
1308
|
-
"integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
|
|
1309
|
-
"dev": true,
|
|
1310
|
-
"requires": {
|
|
1311
|
-
"@babel/helper-string-parser": "^7.22.5",
|
|
1312
|
-
"@babel/helper-validator-identifier": "^7.22.15",
|
|
1313
|
-
"to-fast-properties": "^2.0.0"
|
|
1314
|
-
}
|
|
1315
1170
|
}
|
|
1316
1171
|
}
|
|
1317
1172
|
},
|
|
1318
1173
|
"@babel/plugin-transform-shorthand-properties": {
|
|
1319
|
-
"version": "7.
|
|
1320
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.
|
|
1321
|
-
"integrity": "sha512-
|
|
1174
|
+
"version": "7.23.3",
|
|
1175
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz",
|
|
1176
|
+
"integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==",
|
|
1322
1177
|
"dev": true,
|
|
1323
1178
|
"requires": {
|
|
1324
1179
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1325
1180
|
}
|
|
1326
1181
|
},
|
|
1327
1182
|
"@babel/plugin-transform-spread": {
|
|
1328
|
-
"version": "7.
|
|
1329
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.
|
|
1330
|
-
"integrity": "sha512-
|
|
1183
|
+
"version": "7.23.3",
|
|
1184
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz",
|
|
1185
|
+
"integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==",
|
|
1331
1186
|
"dev": true,
|
|
1332
1187
|
"requires": {
|
|
1333
1188
|
"@babel/helper-plugin-utils": "^7.22.5",
|
|
@@ -1335,68 +1190,68 @@
|
|
|
1335
1190
|
}
|
|
1336
1191
|
},
|
|
1337
1192
|
"@babel/plugin-transform-sticky-regex": {
|
|
1338
|
-
"version": "7.
|
|
1339
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.
|
|
1340
|
-
"integrity": "sha512-
|
|
1193
|
+
"version": "7.23.3",
|
|
1194
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz",
|
|
1195
|
+
"integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==",
|
|
1341
1196
|
"dev": true,
|
|
1342
1197
|
"requires": {
|
|
1343
1198
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1344
1199
|
}
|
|
1345
1200
|
},
|
|
1346
1201
|
"@babel/plugin-transform-template-literals": {
|
|
1347
|
-
"version": "7.
|
|
1348
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.
|
|
1349
|
-
"integrity": "sha512-
|
|
1202
|
+
"version": "7.23.3",
|
|
1203
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz",
|
|
1204
|
+
"integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==",
|
|
1350
1205
|
"dev": true,
|
|
1351
1206
|
"requires": {
|
|
1352
1207
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1353
1208
|
}
|
|
1354
1209
|
},
|
|
1355
1210
|
"@babel/plugin-transform-typeof-symbol": {
|
|
1356
|
-
"version": "7.
|
|
1357
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.
|
|
1358
|
-
"integrity": "sha512-
|
|
1211
|
+
"version": "7.23.3",
|
|
1212
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz",
|
|
1213
|
+
"integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==",
|
|
1359
1214
|
"dev": true,
|
|
1360
1215
|
"requires": {
|
|
1361
1216
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1362
1217
|
}
|
|
1363
1218
|
},
|
|
1364
1219
|
"@babel/plugin-transform-unicode-escapes": {
|
|
1365
|
-
"version": "7.
|
|
1366
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.
|
|
1367
|
-
"integrity": "sha512-
|
|
1220
|
+
"version": "7.23.3",
|
|
1221
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz",
|
|
1222
|
+
"integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==",
|
|
1368
1223
|
"dev": true,
|
|
1369
1224
|
"requires": {
|
|
1370
1225
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1371
1226
|
}
|
|
1372
1227
|
},
|
|
1373
1228
|
"@babel/plugin-transform-unicode-property-regex": {
|
|
1374
|
-
"version": "7.
|
|
1375
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.
|
|
1376
|
-
"integrity": "sha512-
|
|
1229
|
+
"version": "7.23.3",
|
|
1230
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz",
|
|
1231
|
+
"integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==",
|
|
1377
1232
|
"dev": true,
|
|
1378
1233
|
"requires": {
|
|
1379
|
-
"@babel/helper-create-regexp-features-plugin": "^7.22.
|
|
1234
|
+
"@babel/helper-create-regexp-features-plugin": "^7.22.15",
|
|
1380
1235
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1381
1236
|
}
|
|
1382
1237
|
},
|
|
1383
1238
|
"@babel/plugin-transform-unicode-regex": {
|
|
1384
|
-
"version": "7.
|
|
1385
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.
|
|
1386
|
-
"integrity": "sha512-
|
|
1239
|
+
"version": "7.23.3",
|
|
1240
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz",
|
|
1241
|
+
"integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==",
|
|
1387
1242
|
"dev": true,
|
|
1388
1243
|
"requires": {
|
|
1389
|
-
"@babel/helper-create-regexp-features-plugin": "^7.22.
|
|
1244
|
+
"@babel/helper-create-regexp-features-plugin": "^7.22.15",
|
|
1390
1245
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1391
1246
|
}
|
|
1392
1247
|
},
|
|
1393
1248
|
"@babel/plugin-transform-unicode-sets-regex": {
|
|
1394
|
-
"version": "7.
|
|
1395
|
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.
|
|
1396
|
-
"integrity": "sha512-
|
|
1249
|
+
"version": "7.23.3",
|
|
1250
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz",
|
|
1251
|
+
"integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==",
|
|
1397
1252
|
"dev": true,
|
|
1398
1253
|
"requires": {
|
|
1399
|
-
"@babel/helper-create-regexp-features-plugin": "^7.22.
|
|
1254
|
+
"@babel/helper-create-regexp-features-plugin": "^7.22.15",
|
|
1400
1255
|
"@babel/helper-plugin-utils": "^7.22.5"
|
|
1401
1256
|
}
|
|
1402
1257
|
},
|
|
@@ -1512,28 +1367,11 @@
|
|
|
1512
1367
|
"semver": "^6.3.1"
|
|
1513
1368
|
},
|
|
1514
1369
|
"dependencies": {
|
|
1515
|
-
"
|
|
1516
|
-
"version": "
|
|
1517
|
-
"resolved": "https://registry.npmjs.org
|
|
1518
|
-
"integrity": "sha512-
|
|
1519
|
-
"dev": true
|
|
1520
|
-
},
|
|
1521
|
-
"@babel/helper-validator-option": {
|
|
1522
|
-
"version": "7.22.15",
|
|
1523
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz",
|
|
1524
|
-
"integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==",
|
|
1370
|
+
"semver": {
|
|
1371
|
+
"version": "6.3.1",
|
|
1372
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
1373
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
1525
1374
|
"dev": true
|
|
1526
|
-
},
|
|
1527
|
-
"@babel/types": {
|
|
1528
|
-
"version": "7.22.17",
|
|
1529
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
|
|
1530
|
-
"integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
|
|
1531
|
-
"dev": true,
|
|
1532
|
-
"requires": {
|
|
1533
|
-
"@babel/helper-string-parser": "^7.22.5",
|
|
1534
|
-
"@babel/helper-validator-identifier": "^7.22.15",
|
|
1535
|
-
"to-fast-properties": "^2.0.0"
|
|
1536
|
-
}
|
|
1537
1375
|
}
|
|
1538
1376
|
}
|
|
1539
1377
|
},
|
|
@@ -1589,16 +1427,6 @@
|
|
|
1589
1427
|
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
|
|
1590
1428
|
"integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
|
|
1591
1429
|
"dev": true
|
|
1592
|
-
},
|
|
1593
|
-
"source-map-support": {
|
|
1594
|
-
"version": "0.5.21",
|
|
1595
|
-
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
|
|
1596
|
-
"integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
|
|
1597
|
-
"dev": true,
|
|
1598
|
-
"requires": {
|
|
1599
|
-
"buffer-from": "^1.0.0",
|
|
1600
|
-
"source-map": "^0.6.0"
|
|
1601
|
-
}
|
|
1602
1430
|
}
|
|
1603
1431
|
}
|
|
1604
1432
|
},
|
|
@@ -1612,107 +1440,54 @@
|
|
|
1612
1440
|
"version": "7.22.15",
|
|
1613
1441
|
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz",
|
|
1614
1442
|
"integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==",
|
|
1443
|
+
"dev": true,
|
|
1615
1444
|
"requires": {
|
|
1616
1445
|
"regenerator-runtime": "^0.14.0"
|
|
1617
1446
|
}
|
|
1618
1447
|
},
|
|
1619
1448
|
"@babel/runtime-corejs3": {
|
|
1620
|
-
"version": "7.
|
|
1621
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.
|
|
1622
|
-
"integrity": "sha512-
|
|
1449
|
+
"version": "7.23.5",
|
|
1450
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.23.5.tgz",
|
|
1451
|
+
"integrity": "sha512-7+ziVclejQTLYhXl+Oi1f6gTGD1XDCeLa4R472TNGQxb08zbEJ0OdNoh5Piz+57Ltmui6xR88BXR4gS3/Toslw==",
|
|
1623
1452
|
"requires": {
|
|
1624
1453
|
"core-js-pure": "^3.30.2",
|
|
1625
1454
|
"regenerator-runtime": "^0.14.0"
|
|
1626
1455
|
}
|
|
1627
1456
|
},
|
|
1628
1457
|
"@babel/template": {
|
|
1629
|
-
"version": "7.22.
|
|
1630
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.
|
|
1631
|
-
"integrity": "sha512-
|
|
1458
|
+
"version": "7.22.15",
|
|
1459
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
|
|
1460
|
+
"integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
|
|
1632
1461
|
"requires": {
|
|
1633
|
-
"@babel/code-frame": "^7.22.
|
|
1634
|
-
"@babel/parser": "^7.22.
|
|
1635
|
-
"@babel/types": "^7.22.
|
|
1462
|
+
"@babel/code-frame": "^7.22.13",
|
|
1463
|
+
"@babel/parser": "^7.22.15",
|
|
1464
|
+
"@babel/types": "^7.22.15"
|
|
1636
1465
|
}
|
|
1637
1466
|
},
|
|
1638
1467
|
"@babel/traverse": {
|
|
1639
|
-
"version": "7.
|
|
1640
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.
|
|
1641
|
-
"integrity": "sha512-
|
|
1642
|
-
"requires": {
|
|
1643
|
-
"@babel/code-frame": "^7.
|
|
1644
|
-
"@babel/generator": "^7.
|
|
1645
|
-
"@babel/helper-environment-visitor": "^7.22.
|
|
1646
|
-
"@babel/helper-function-name": "^7.
|
|
1468
|
+
"version": "7.23.5",
|
|
1469
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.5.tgz",
|
|
1470
|
+
"integrity": "sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==",
|
|
1471
|
+
"requires": {
|
|
1472
|
+
"@babel/code-frame": "^7.23.5",
|
|
1473
|
+
"@babel/generator": "^7.23.5",
|
|
1474
|
+
"@babel/helper-environment-visitor": "^7.22.20",
|
|
1475
|
+
"@babel/helper-function-name": "^7.23.0",
|
|
1647
1476
|
"@babel/helper-hoist-variables": "^7.22.5",
|
|
1648
1477
|
"@babel/helper-split-export-declaration": "^7.22.6",
|
|
1649
|
-
"@babel/parser": "^7.
|
|
1650
|
-
"@babel/types": "^7.
|
|
1478
|
+
"@babel/parser": "^7.23.5",
|
|
1479
|
+
"@babel/types": "^7.23.5",
|
|
1651
1480
|
"debug": "^4.1.0",
|
|
1652
1481
|
"globals": "^11.1.0"
|
|
1653
|
-
},
|
|
1654
|
-
"dependencies": {
|
|
1655
|
-
"@babel/code-frame": {
|
|
1656
|
-
"version": "7.22.13",
|
|
1657
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
|
|
1658
|
-
"integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
|
|
1659
|
-
"requires": {
|
|
1660
|
-
"@babel/highlight": "^7.22.13",
|
|
1661
|
-
"chalk": "^2.4.2"
|
|
1662
|
-
}
|
|
1663
|
-
},
|
|
1664
|
-
"@babel/generator": {
|
|
1665
|
-
"version": "7.22.15",
|
|
1666
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.15.tgz",
|
|
1667
|
-
"integrity": "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==",
|
|
1668
|
-
"requires": {
|
|
1669
|
-
"@babel/types": "^7.22.15",
|
|
1670
|
-
"@jridgewell/gen-mapping": "^0.3.2",
|
|
1671
|
-
"@jridgewell/trace-mapping": "^0.3.17",
|
|
1672
|
-
"jsesc": "^2.5.1"
|
|
1673
|
-
}
|
|
1674
|
-
},
|
|
1675
|
-
"@babel/highlight": {
|
|
1676
|
-
"version": "7.22.13",
|
|
1677
|
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz",
|
|
1678
|
-
"integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==",
|
|
1679
|
-
"requires": {
|
|
1680
|
-
"@babel/helper-validator-identifier": "^7.22.5",
|
|
1681
|
-
"chalk": "^2.4.2",
|
|
1682
|
-
"js-tokens": "^4.0.0"
|
|
1683
|
-
}
|
|
1684
|
-
},
|
|
1685
|
-
"@babel/parser": {
|
|
1686
|
-
"version": "7.22.16",
|
|
1687
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz",
|
|
1688
|
-
"integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA=="
|
|
1689
|
-
},
|
|
1690
|
-
"@babel/types": {
|
|
1691
|
-
"version": "7.22.17",
|
|
1692
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.17.tgz",
|
|
1693
|
-
"integrity": "sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==",
|
|
1694
|
-
"requires": {
|
|
1695
|
-
"@babel/helper-string-parser": "^7.22.5",
|
|
1696
|
-
"@babel/helper-validator-identifier": "^7.22.15",
|
|
1697
|
-
"to-fast-properties": "^2.0.0"
|
|
1698
|
-
},
|
|
1699
|
-
"dependencies": {
|
|
1700
|
-
"@babel/helper-validator-identifier": {
|
|
1701
|
-
"version": "7.22.15",
|
|
1702
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz",
|
|
1703
|
-
"integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ=="
|
|
1704
|
-
}
|
|
1705
|
-
}
|
|
1706
|
-
}
|
|
1707
1482
|
}
|
|
1708
1483
|
},
|
|
1709
1484
|
"@babel/types": {
|
|
1710
|
-
"version": "7.
|
|
1711
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.
|
|
1712
|
-
"integrity": "sha512-
|
|
1485
|
+
"version": "7.23.5",
|
|
1486
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.5.tgz",
|
|
1487
|
+
"integrity": "sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==",
|
|
1713
1488
|
"requires": {
|
|
1714
|
-
"@babel/helper-string-parser": "^7.
|
|
1715
|
-
"@babel/helper-validator-identifier": "^7.22.
|
|
1489
|
+
"@babel/helper-string-parser": "^7.23.4",
|
|
1490
|
+
"@babel/helper-validator-identifier": "^7.22.20",
|
|
1716
1491
|
"to-fast-properties": "^2.0.0"
|
|
1717
1492
|
}
|
|
1718
1493
|
},
|
|
@@ -1779,92 +1554,10 @@
|
|
|
1779
1554
|
"yup": "^0.32.11"
|
|
1780
1555
|
},
|
|
1781
1556
|
"dependencies": {
|
|
1782
|
-
"ansi-styles": {
|
|
1783
|
-
"version": "4.3.0",
|
|
1784
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
1785
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
1786
|
-
"requires": {
|
|
1787
|
-
"color-convert": "^2.0.1"
|
|
1788
|
-
}
|
|
1789
|
-
},
|
|
1790
|
-
"chalk": {
|
|
1791
|
-
"version": "4.1.2",
|
|
1792
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
1793
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
1794
|
-
"requires": {
|
|
1795
|
-
"ansi-styles": "^4.1.0",
|
|
1796
|
-
"supports-color": "^7.1.0"
|
|
1797
|
-
},
|
|
1798
|
-
"dependencies": {
|
|
1799
|
-
"supports-color": {
|
|
1800
|
-
"version": "7.2.0",
|
|
1801
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
1802
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
1803
|
-
"requires": {
|
|
1804
|
-
"has-flag": "^4.0.0"
|
|
1805
|
-
}
|
|
1806
|
-
}
|
|
1807
|
-
}
|
|
1808
|
-
},
|
|
1809
|
-
"color-convert": {
|
|
1810
|
-
"version": "2.0.1",
|
|
1811
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
1812
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
1813
|
-
"requires": {
|
|
1814
|
-
"color-name": "~1.1.4"
|
|
1815
|
-
}
|
|
1816
|
-
},
|
|
1817
|
-
"color-name": {
|
|
1818
|
-
"version": "1.1.4",
|
|
1819
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
1820
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
1821
|
-
},
|
|
1822
1557
|
"commander": {
|
|
1823
1558
|
"version": "10.0.1",
|
|
1824
1559
|
"resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
|
|
1825
1560
|
"integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug=="
|
|
1826
|
-
},
|
|
1827
|
-
"has-flag": {
|
|
1828
|
-
"version": "4.0.0",
|
|
1829
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
1830
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
1831
|
-
},
|
|
1832
|
-
"lru-cache": {
|
|
1833
|
-
"version": "6.0.0",
|
|
1834
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
1835
|
-
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
1836
|
-
"requires": {
|
|
1837
|
-
"yallist": "^4.0.0"
|
|
1838
|
-
}
|
|
1839
|
-
},
|
|
1840
|
-
"semver": {
|
|
1841
|
-
"version": "7.3.8",
|
|
1842
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
|
|
1843
|
-
"integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
|
|
1844
|
-
"requires": {
|
|
1845
|
-
"lru-cache": "^6.0.0"
|
|
1846
|
-
}
|
|
1847
|
-
},
|
|
1848
|
-
"supports-color": {
|
|
1849
|
-
"version": "8.1.1",
|
|
1850
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
1851
|
-
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
|
1852
|
-
"requires": {
|
|
1853
|
-
"has-flag": "^4.0.0"
|
|
1854
|
-
}
|
|
1855
|
-
},
|
|
1856
|
-
"tmp": {
|
|
1857
|
-
"version": "0.2.1",
|
|
1858
|
-
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz",
|
|
1859
|
-
"integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==",
|
|
1860
|
-
"requires": {
|
|
1861
|
-
"rimraf": "^3.0.0"
|
|
1862
|
-
}
|
|
1863
|
-
},
|
|
1864
|
-
"yallist": {
|
|
1865
|
-
"version": "4.0.0",
|
|
1866
|
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
1867
|
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
1868
1561
|
}
|
|
1869
1562
|
}
|
|
1870
1563
|
},
|
|
@@ -1897,15 +1590,6 @@
|
|
|
1897
1590
|
"version": "9.1.0",
|
|
1898
1591
|
"resolved": "https://registry.npmjs.org/commander/-/commander-9.1.0.tgz",
|
|
1899
1592
|
"integrity": "sha512-i0/MaqBtdbnJ4XQs4Pmyb+oFQl+q0lsAmokVUH92SlSw4fkeAcG3bVon+Qt7hmtF+u3Het6o4VgrcY3qAoEB6w=="
|
|
1900
|
-
},
|
|
1901
|
-
"source-map-support": {
|
|
1902
|
-
"version": "0.5.21",
|
|
1903
|
-
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
|
|
1904
|
-
"integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
|
|
1905
|
-
"requires": {
|
|
1906
|
-
"buffer-from": "^1.0.0",
|
|
1907
|
-
"source-map": "^0.6.0"
|
|
1908
|
-
}
|
|
1909
1593
|
}
|
|
1910
1594
|
}
|
|
1911
1595
|
},
|
|
@@ -1949,15 +1633,6 @@
|
|
|
1949
1633
|
"version": "9.4.1",
|
|
1950
1634
|
"resolved": "https://registry.npmjs.org/commander/-/commander-9.4.1.tgz",
|
|
1951
1635
|
"integrity": "sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw=="
|
|
1952
|
-
},
|
|
1953
|
-
"source-map-support": {
|
|
1954
|
-
"version": "0.5.21",
|
|
1955
|
-
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
|
|
1956
|
-
"integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
|
|
1957
|
-
"requires": {
|
|
1958
|
-
"buffer-from": "^1.0.0",
|
|
1959
|
-
"source-map": "^0.6.0"
|
|
1960
|
-
}
|
|
1961
1636
|
}
|
|
1962
1637
|
}
|
|
1963
1638
|
},
|
|
@@ -2015,51 +1690,6 @@
|
|
|
2015
1690
|
"jest-message-util": "^29.7.0",
|
|
2016
1691
|
"jest-util": "^29.7.0",
|
|
2017
1692
|
"slash": "^3.0.0"
|
|
2018
|
-
},
|
|
2019
|
-
"dependencies": {
|
|
2020
|
-
"ansi-styles": {
|
|
2021
|
-
"version": "4.3.0",
|
|
2022
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
2023
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
2024
|
-
"requires": {
|
|
2025
|
-
"color-convert": "^2.0.1"
|
|
2026
|
-
}
|
|
2027
|
-
},
|
|
2028
|
-
"chalk": {
|
|
2029
|
-
"version": "4.1.2",
|
|
2030
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
2031
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
2032
|
-
"requires": {
|
|
2033
|
-
"ansi-styles": "^4.1.0",
|
|
2034
|
-
"supports-color": "^7.1.0"
|
|
2035
|
-
}
|
|
2036
|
-
},
|
|
2037
|
-
"color-convert": {
|
|
2038
|
-
"version": "2.0.1",
|
|
2039
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
2040
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
2041
|
-
"requires": {
|
|
2042
|
-
"color-name": "~1.1.4"
|
|
2043
|
-
}
|
|
2044
|
-
},
|
|
2045
|
-
"color-name": {
|
|
2046
|
-
"version": "1.1.4",
|
|
2047
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
2048
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
2049
|
-
},
|
|
2050
|
-
"has-flag": {
|
|
2051
|
-
"version": "4.0.0",
|
|
2052
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
2053
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
2054
|
-
},
|
|
2055
|
-
"supports-color": {
|
|
2056
|
-
"version": "7.2.0",
|
|
2057
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
2058
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
2059
|
-
"requires": {
|
|
2060
|
-
"has-flag": "^4.0.0"
|
|
2061
|
-
}
|
|
2062
|
-
}
|
|
2063
1693
|
}
|
|
2064
1694
|
},
|
|
2065
1695
|
"@jest/core": {
|
|
@@ -2095,51 +1725,6 @@
|
|
|
2095
1725
|
"pretty-format": "^29.7.0",
|
|
2096
1726
|
"slash": "^3.0.0",
|
|
2097
1727
|
"strip-ansi": "^6.0.0"
|
|
2098
|
-
},
|
|
2099
|
-
"dependencies": {
|
|
2100
|
-
"ansi-styles": {
|
|
2101
|
-
"version": "4.3.0",
|
|
2102
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
2103
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
2104
|
-
"requires": {
|
|
2105
|
-
"color-convert": "^2.0.1"
|
|
2106
|
-
}
|
|
2107
|
-
},
|
|
2108
|
-
"chalk": {
|
|
2109
|
-
"version": "4.1.2",
|
|
2110
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
2111
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
2112
|
-
"requires": {
|
|
2113
|
-
"ansi-styles": "^4.1.0",
|
|
2114
|
-
"supports-color": "^7.1.0"
|
|
2115
|
-
}
|
|
2116
|
-
},
|
|
2117
|
-
"color-convert": {
|
|
2118
|
-
"version": "2.0.1",
|
|
2119
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
2120
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
2121
|
-
"requires": {
|
|
2122
|
-
"color-name": "~1.1.4"
|
|
2123
|
-
}
|
|
2124
|
-
},
|
|
2125
|
-
"color-name": {
|
|
2126
|
-
"version": "1.1.4",
|
|
2127
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
2128
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
2129
|
-
},
|
|
2130
|
-
"has-flag": {
|
|
2131
|
-
"version": "4.0.0",
|
|
2132
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
2133
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
2134
|
-
},
|
|
2135
|
-
"supports-color": {
|
|
2136
|
-
"version": "7.2.0",
|
|
2137
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
2138
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
2139
|
-
"requires": {
|
|
2140
|
-
"has-flag": "^4.0.0"
|
|
2141
|
-
}
|
|
2142
|
-
}
|
|
2143
1728
|
}
|
|
2144
1729
|
},
|
|
2145
1730
|
"@jest/environment": {
|
|
@@ -2225,41 +1810,35 @@
|
|
|
2225
1810
|
"v8-to-istanbul": "^9.0.1"
|
|
2226
1811
|
},
|
|
2227
1812
|
"dependencies": {
|
|
2228
|
-
"
|
|
2229
|
-
"version": "
|
|
2230
|
-
"resolved": "https://registry.npmjs.org/
|
|
2231
|
-
"integrity": "sha512-
|
|
2232
|
-
"requires": {
|
|
2233
|
-
"
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
"
|
|
2242
|
-
"
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
"
|
|
2250
|
-
"
|
|
1813
|
+
"@babel/core": {
|
|
1814
|
+
"version": "7.23.5",
|
|
1815
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
1816
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
1817
|
+
"requires": {
|
|
1818
|
+
"@ampproject/remapping": "^2.2.0",
|
|
1819
|
+
"@babel/code-frame": "^7.23.5",
|
|
1820
|
+
"@babel/generator": "^7.23.5",
|
|
1821
|
+
"@babel/helper-compilation-targets": "^7.22.15",
|
|
1822
|
+
"@babel/helper-module-transforms": "^7.23.3",
|
|
1823
|
+
"@babel/helpers": "^7.23.5",
|
|
1824
|
+
"@babel/parser": "^7.23.5",
|
|
1825
|
+
"@babel/template": "^7.22.15",
|
|
1826
|
+
"@babel/traverse": "^7.23.5",
|
|
1827
|
+
"@babel/types": "^7.23.5",
|
|
1828
|
+
"convert-source-map": "^2.0.0",
|
|
1829
|
+
"debug": "^4.1.0",
|
|
1830
|
+
"gensync": "^1.0.0-beta.2",
|
|
1831
|
+
"json5": "^2.2.3",
|
|
1832
|
+
"semver": "^6.3.1"
|
|
1833
|
+
},
|
|
1834
|
+
"dependencies": {
|
|
1835
|
+
"semver": {
|
|
1836
|
+
"version": "6.3.1",
|
|
1837
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
1838
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
|
|
1839
|
+
}
|
|
2251
1840
|
}
|
|
2252
1841
|
},
|
|
2253
|
-
"color-name": {
|
|
2254
|
-
"version": "1.1.4",
|
|
2255
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
2256
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
2257
|
-
},
|
|
2258
|
-
"has-flag": {
|
|
2259
|
-
"version": "4.0.0",
|
|
2260
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
2261
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
2262
|
-
},
|
|
2263
1842
|
"istanbul-lib-instrument": {
|
|
2264
1843
|
"version": "6.0.1",
|
|
2265
1844
|
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz",
|
|
@@ -2272,14 +1851,6 @@
|
|
|
2272
1851
|
"semver": "^7.5.4"
|
|
2273
1852
|
}
|
|
2274
1853
|
},
|
|
2275
|
-
"lru-cache": {
|
|
2276
|
-
"version": "6.0.0",
|
|
2277
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
2278
|
-
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
2279
|
-
"requires": {
|
|
2280
|
-
"yallist": "^4.0.0"
|
|
2281
|
-
}
|
|
2282
|
-
},
|
|
2283
1854
|
"semver": {
|
|
2284
1855
|
"version": "7.5.4",
|
|
2285
1856
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
|
|
@@ -2287,19 +1858,6 @@
|
|
|
2287
1858
|
"requires": {
|
|
2288
1859
|
"lru-cache": "^6.0.0"
|
|
2289
1860
|
}
|
|
2290
|
-
},
|
|
2291
|
-
"supports-color": {
|
|
2292
|
-
"version": "7.2.0",
|
|
2293
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
2294
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
2295
|
-
"requires": {
|
|
2296
|
-
"has-flag": "^4.0.0"
|
|
2297
|
-
}
|
|
2298
|
-
},
|
|
2299
|
-
"yallist": {
|
|
2300
|
-
"version": "4.0.0",
|
|
2301
|
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
2302
|
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
2303
1861
|
}
|
|
2304
1862
|
}
|
|
2305
1863
|
},
|
|
@@ -2365,48 +1923,32 @@
|
|
|
2365
1923
|
"write-file-atomic": "^4.0.2"
|
|
2366
1924
|
},
|
|
2367
1925
|
"dependencies": {
|
|
2368
|
-
"
|
|
2369
|
-
"version": "
|
|
2370
|
-
"resolved": "https://registry.npmjs.org/
|
|
2371
|
-
"integrity": "sha512-
|
|
2372
|
-
"requires": {
|
|
2373
|
-
"
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
"
|
|
2382
|
-
"
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
2389
|
-
"requires": {
|
|
2390
|
-
"color-name": "~1.1.4"
|
|
1926
|
+
"@babel/core": {
|
|
1927
|
+
"version": "7.23.5",
|
|
1928
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
1929
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
1930
|
+
"requires": {
|
|
1931
|
+
"@ampproject/remapping": "^2.2.0",
|
|
1932
|
+
"@babel/code-frame": "^7.23.5",
|
|
1933
|
+
"@babel/generator": "^7.23.5",
|
|
1934
|
+
"@babel/helper-compilation-targets": "^7.22.15",
|
|
1935
|
+
"@babel/helper-module-transforms": "^7.23.3",
|
|
1936
|
+
"@babel/helpers": "^7.23.5",
|
|
1937
|
+
"@babel/parser": "^7.23.5",
|
|
1938
|
+
"@babel/template": "^7.22.15",
|
|
1939
|
+
"@babel/traverse": "^7.23.5",
|
|
1940
|
+
"@babel/types": "^7.23.5",
|
|
1941
|
+
"convert-source-map": "^2.0.0",
|
|
1942
|
+
"debug": "^4.1.0",
|
|
1943
|
+
"gensync": "^1.0.0-beta.2",
|
|
1944
|
+
"json5": "^2.2.3",
|
|
1945
|
+
"semver": "^6.3.1"
|
|
2391
1946
|
}
|
|
2392
1947
|
},
|
|
2393
|
-
"
|
|
2394
|
-
"version": "
|
|
2395
|
-
"resolved": "https://registry.npmjs.org/
|
|
2396
|
-
"integrity": "sha512-
|
|
2397
|
-
},
|
|
2398
|
-
"has-flag": {
|
|
2399
|
-
"version": "4.0.0",
|
|
2400
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
2401
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
2402
|
-
},
|
|
2403
|
-
"supports-color": {
|
|
2404
|
-
"version": "7.2.0",
|
|
2405
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
2406
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
2407
|
-
"requires": {
|
|
2408
|
-
"has-flag": "^4.0.0"
|
|
2409
|
-
}
|
|
1948
|
+
"semver": {
|
|
1949
|
+
"version": "6.3.1",
|
|
1950
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
1951
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
|
|
2410
1952
|
}
|
|
2411
1953
|
}
|
|
2412
1954
|
},
|
|
@@ -2421,51 +1963,6 @@
|
|
|
2421
1963
|
"@types/node": "*",
|
|
2422
1964
|
"@types/yargs": "^17.0.8",
|
|
2423
1965
|
"chalk": "^4.0.0"
|
|
2424
|
-
},
|
|
2425
|
-
"dependencies": {
|
|
2426
|
-
"ansi-styles": {
|
|
2427
|
-
"version": "4.3.0",
|
|
2428
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
2429
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
2430
|
-
"requires": {
|
|
2431
|
-
"color-convert": "^2.0.1"
|
|
2432
|
-
}
|
|
2433
|
-
},
|
|
2434
|
-
"chalk": {
|
|
2435
|
-
"version": "4.1.2",
|
|
2436
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
2437
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
2438
|
-
"requires": {
|
|
2439
|
-
"ansi-styles": "^4.1.0",
|
|
2440
|
-
"supports-color": "^7.1.0"
|
|
2441
|
-
}
|
|
2442
|
-
},
|
|
2443
|
-
"color-convert": {
|
|
2444
|
-
"version": "2.0.1",
|
|
2445
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
2446
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
2447
|
-
"requires": {
|
|
2448
|
-
"color-name": "~1.1.4"
|
|
2449
|
-
}
|
|
2450
|
-
},
|
|
2451
|
-
"color-name": {
|
|
2452
|
-
"version": "1.1.4",
|
|
2453
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
2454
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
2455
|
-
},
|
|
2456
|
-
"has-flag": {
|
|
2457
|
-
"version": "4.0.0",
|
|
2458
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
2459
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
2460
|
-
},
|
|
2461
|
-
"supports-color": {
|
|
2462
|
-
"version": "7.2.0",
|
|
2463
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
2464
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
2465
|
-
"requires": {
|
|
2466
|
-
"has-flag": "^4.0.0"
|
|
2467
|
-
}
|
|
2468
|
-
}
|
|
2469
1966
|
}
|
|
2470
1967
|
},
|
|
2471
1968
|
"@jridgewell/gen-mapping": {
|
|
@@ -2494,9 +1991,9 @@
|
|
|
2494
1991
|
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
|
|
2495
1992
|
},
|
|
2496
1993
|
"@jridgewell/trace-mapping": {
|
|
2497
|
-
"version": "0.3.
|
|
2498
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.
|
|
2499
|
-
"integrity": "sha512-
|
|
1994
|
+
"version": "0.3.20",
|
|
1995
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz",
|
|
1996
|
+
"integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==",
|
|
2500
1997
|
"requires": {
|
|
2501
1998
|
"@jridgewell/resolve-uri": "^3.1.0",
|
|
2502
1999
|
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
@@ -2577,22 +2074,11 @@
|
|
|
2577
2074
|
"integrity": "sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q=="
|
|
2578
2075
|
},
|
|
2579
2076
|
"@playwright/test": {
|
|
2580
|
-
"version": "1.
|
|
2581
|
-
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.
|
|
2582
|
-
"integrity": "sha512-
|
|
2077
|
+
"version": "1.40.1",
|
|
2078
|
+
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.40.1.tgz",
|
|
2079
|
+
"integrity": "sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==",
|
|
2583
2080
|
"requires": {
|
|
2584
|
-
"playwright": "1.
|
|
2585
|
-
},
|
|
2586
|
-
"dependencies": {
|
|
2587
|
-
"playwright": {
|
|
2588
|
-
"version": "1.39.0",
|
|
2589
|
-
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.39.0.tgz",
|
|
2590
|
-
"integrity": "sha512-naE5QT11uC/Oiq0BwZ50gDmy8c8WLPRTEWuSSFVG2egBka/1qMoSqYQcROMT9zLwJ86oPofcTH2jBY/5wWOgIw==",
|
|
2591
|
-
"requires": {
|
|
2592
|
-
"fsevents": "2.3.2",
|
|
2593
|
-
"playwright-core": "1.39.0"
|
|
2594
|
-
}
|
|
2595
|
-
}
|
|
2081
|
+
"playwright": "1.40.1"
|
|
2596
2082
|
}
|
|
2597
2083
|
},
|
|
2598
2084
|
"@sinclair/typebox": {
|
|
@@ -2636,6 +2122,14 @@
|
|
|
2636
2122
|
"pretty-format": "^26.6.2"
|
|
2637
2123
|
},
|
|
2638
2124
|
"dependencies": {
|
|
2125
|
+
"@babel/runtime": {
|
|
2126
|
+
"version": "7.23.5",
|
|
2127
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2128
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2129
|
+
"requires": {
|
|
2130
|
+
"regenerator-runtime": "^0.14.0"
|
|
2131
|
+
}
|
|
2132
|
+
},
|
|
2639
2133
|
"@jest/types": {
|
|
2640
2134
|
"version": "26.6.2",
|
|
2641
2135
|
"resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
|
|
@@ -2649,57 +2143,13 @@
|
|
|
2649
2143
|
}
|
|
2650
2144
|
},
|
|
2651
2145
|
"@types/yargs": {
|
|
2652
|
-
"version": "15.0.
|
|
2653
|
-
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.
|
|
2654
|
-
"integrity": "sha512-
|
|
2146
|
+
"version": "15.0.19",
|
|
2147
|
+
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz",
|
|
2148
|
+
"integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==",
|
|
2655
2149
|
"requires": {
|
|
2656
2150
|
"@types/yargs-parser": "*"
|
|
2657
2151
|
}
|
|
2658
2152
|
},
|
|
2659
|
-
"ansi-styles": {
|
|
2660
|
-
"version": "4.3.0",
|
|
2661
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
2662
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
2663
|
-
"requires": {
|
|
2664
|
-
"color-convert": "^2.0.1"
|
|
2665
|
-
}
|
|
2666
|
-
},
|
|
2667
|
-
"aria-query": {
|
|
2668
|
-
"version": "4.2.2",
|
|
2669
|
-
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz",
|
|
2670
|
-
"integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==",
|
|
2671
|
-
"requires": {
|
|
2672
|
-
"@babel/runtime": "^7.10.2",
|
|
2673
|
-
"@babel/runtime-corejs3": "^7.10.2"
|
|
2674
|
-
}
|
|
2675
|
-
},
|
|
2676
|
-
"chalk": {
|
|
2677
|
-
"version": "4.1.2",
|
|
2678
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
2679
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
2680
|
-
"requires": {
|
|
2681
|
-
"ansi-styles": "^4.1.0",
|
|
2682
|
-
"supports-color": "^7.1.0"
|
|
2683
|
-
}
|
|
2684
|
-
},
|
|
2685
|
-
"color-convert": {
|
|
2686
|
-
"version": "2.0.1",
|
|
2687
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
2688
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
2689
|
-
"requires": {
|
|
2690
|
-
"color-name": "~1.1.4"
|
|
2691
|
-
}
|
|
2692
|
-
},
|
|
2693
|
-
"color-name": {
|
|
2694
|
-
"version": "1.1.4",
|
|
2695
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
2696
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
2697
|
-
},
|
|
2698
|
-
"has-flag": {
|
|
2699
|
-
"version": "4.0.0",
|
|
2700
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
2701
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
2702
|
-
},
|
|
2703
2153
|
"pretty-format": {
|
|
2704
2154
|
"version": "26.6.2",
|
|
2705
2155
|
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
|
|
@@ -2715,14 +2165,6 @@
|
|
|
2715
2165
|
"version": "17.0.2",
|
|
2716
2166
|
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
|
|
2717
2167
|
"integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
|
|
2718
|
-
},
|
|
2719
|
-
"supports-color": {
|
|
2720
|
-
"version": "7.2.0",
|
|
2721
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
2722
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
2723
|
-
"requires": {
|
|
2724
|
-
"has-flag": "^4.0.0"
|
|
2725
|
-
}
|
|
2726
2168
|
}
|
|
2727
2169
|
}
|
|
2728
2170
|
},
|
|
@@ -2741,12 +2183,12 @@
|
|
|
2741
2183
|
"redent": "^3.0.0"
|
|
2742
2184
|
},
|
|
2743
2185
|
"dependencies": {
|
|
2744
|
-
"
|
|
2745
|
-
"version": "
|
|
2746
|
-
"resolved": "https://registry.npmjs.org/
|
|
2747
|
-
"integrity": "sha512-
|
|
2186
|
+
"@babel/runtime": {
|
|
2187
|
+
"version": "7.23.5",
|
|
2188
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2189
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2748
2190
|
"requires": {
|
|
2749
|
-
"
|
|
2191
|
+
"regenerator-runtime": "^0.14.0"
|
|
2750
2192
|
}
|
|
2751
2193
|
},
|
|
2752
2194
|
"chalk": {
|
|
@@ -2758,24 +2200,6 @@
|
|
|
2758
2200
|
"supports-color": "^7.1.0"
|
|
2759
2201
|
}
|
|
2760
2202
|
},
|
|
2761
|
-
"color-convert": {
|
|
2762
|
-
"version": "2.0.1",
|
|
2763
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
2764
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
2765
|
-
"requires": {
|
|
2766
|
-
"color-name": "~1.1.4"
|
|
2767
|
-
}
|
|
2768
|
-
},
|
|
2769
|
-
"color-name": {
|
|
2770
|
-
"version": "1.1.4",
|
|
2771
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
2772
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
2773
|
-
},
|
|
2774
|
-
"has-flag": {
|
|
2775
|
-
"version": "4.0.0",
|
|
2776
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
2777
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
2778
|
-
},
|
|
2779
2203
|
"supports-color": {
|
|
2780
2204
|
"version": "7.2.0",
|
|
2781
2205
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
@@ -2793,6 +2217,16 @@
|
|
|
2793
2217
|
"requires": {
|
|
2794
2218
|
"@babel/runtime": "^7.12.5",
|
|
2795
2219
|
"@testing-library/dom": "^7.28.1"
|
|
2220
|
+
},
|
|
2221
|
+
"dependencies": {
|
|
2222
|
+
"@babel/runtime": {
|
|
2223
|
+
"version": "7.23.5",
|
|
2224
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2225
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2226
|
+
"requires": {
|
|
2227
|
+
"regenerator-runtime": "^0.14.0"
|
|
2228
|
+
}
|
|
2229
|
+
}
|
|
2796
2230
|
}
|
|
2797
2231
|
},
|
|
2798
2232
|
"@testing-library/react-hooks": {
|
|
@@ -2805,6 +2239,16 @@
|
|
|
2805
2239
|
"@types/react-dom": ">=16.9.0",
|
|
2806
2240
|
"@types/react-test-renderer": ">=16.9.0",
|
|
2807
2241
|
"react-error-boundary": "^3.1.0"
|
|
2242
|
+
},
|
|
2243
|
+
"dependencies": {
|
|
2244
|
+
"@babel/runtime": {
|
|
2245
|
+
"version": "7.23.5",
|
|
2246
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2247
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2248
|
+
"requires": {
|
|
2249
|
+
"regenerator-runtime": "^0.14.0"
|
|
2250
|
+
}
|
|
2251
|
+
}
|
|
2808
2252
|
}
|
|
2809
2253
|
},
|
|
2810
2254
|
"@tootallnate/once": {
|
|
@@ -2818,9 +2262,9 @@
|
|
|
2818
2262
|
"integrity": "sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig=="
|
|
2819
2263
|
},
|
|
2820
2264
|
"@types/babel__core": {
|
|
2821
|
-
"version": "7.20.
|
|
2822
|
-
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.
|
|
2823
|
-
"integrity": "sha512-
|
|
2265
|
+
"version": "7.20.5",
|
|
2266
|
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
|
|
2267
|
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
|
|
2824
2268
|
"requires": {
|
|
2825
2269
|
"@babel/parser": "^7.20.7",
|
|
2826
2270
|
"@babel/types": "^7.20.7",
|
|
@@ -2830,26 +2274,26 @@
|
|
|
2830
2274
|
}
|
|
2831
2275
|
},
|
|
2832
2276
|
"@types/babel__generator": {
|
|
2833
|
-
"version": "7.6.
|
|
2834
|
-
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.
|
|
2835
|
-
"integrity": "sha512-
|
|
2277
|
+
"version": "7.6.7",
|
|
2278
|
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz",
|
|
2279
|
+
"integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==",
|
|
2836
2280
|
"requires": {
|
|
2837
2281
|
"@babel/types": "^7.0.0"
|
|
2838
2282
|
}
|
|
2839
2283
|
},
|
|
2840
2284
|
"@types/babel__template": {
|
|
2841
|
-
"version": "7.4.
|
|
2842
|
-
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.
|
|
2843
|
-
"integrity": "sha512-
|
|
2285
|
+
"version": "7.4.4",
|
|
2286
|
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
|
|
2287
|
+
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
|
|
2844
2288
|
"requires": {
|
|
2845
2289
|
"@babel/parser": "^7.1.0",
|
|
2846
2290
|
"@babel/types": "^7.0.0"
|
|
2847
2291
|
}
|
|
2848
2292
|
},
|
|
2849
2293
|
"@types/babel__traverse": {
|
|
2850
|
-
"version": "7.20.
|
|
2851
|
-
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.
|
|
2852
|
-
"integrity": "sha512-
|
|
2294
|
+
"version": "7.20.4",
|
|
2295
|
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz",
|
|
2296
|
+
"integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==",
|
|
2853
2297
|
"requires": {
|
|
2854
2298
|
"@babel/types": "^7.20.7"
|
|
2855
2299
|
}
|
|
@@ -2860,55 +2304,55 @@
|
|
|
2860
2304
|
"integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q=="
|
|
2861
2305
|
},
|
|
2862
2306
|
"@types/debug": {
|
|
2863
|
-
"version": "4.1.
|
|
2864
|
-
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.
|
|
2865
|
-
"integrity": "sha512-
|
|
2307
|
+
"version": "4.1.12",
|
|
2308
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
|
|
2309
|
+
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
|
|
2866
2310
|
"requires": {
|
|
2867
2311
|
"@types/ms": "*"
|
|
2868
2312
|
}
|
|
2869
2313
|
},
|
|
2870
2314
|
"@types/graceful-fs": {
|
|
2871
|
-
"version": "4.1.
|
|
2872
|
-
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.
|
|
2873
|
-
"integrity": "sha512-
|
|
2315
|
+
"version": "4.1.9",
|
|
2316
|
+
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz",
|
|
2317
|
+
"integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==",
|
|
2874
2318
|
"requires": {
|
|
2875
2319
|
"@types/node": "*"
|
|
2876
2320
|
}
|
|
2877
2321
|
},
|
|
2878
2322
|
"@types/istanbul-lib-coverage": {
|
|
2879
|
-
"version": "2.0.
|
|
2880
|
-
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.
|
|
2881
|
-
"integrity": "sha512-
|
|
2323
|
+
"version": "2.0.6",
|
|
2324
|
+
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
|
|
2325
|
+
"integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w=="
|
|
2882
2326
|
},
|
|
2883
2327
|
"@types/istanbul-lib-report": {
|
|
2884
|
-
"version": "3.0.
|
|
2885
|
-
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.
|
|
2886
|
-
"integrity": "sha512-
|
|
2328
|
+
"version": "3.0.3",
|
|
2329
|
+
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
|
|
2330
|
+
"integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
|
|
2887
2331
|
"requires": {
|
|
2888
2332
|
"@types/istanbul-lib-coverage": "*"
|
|
2889
2333
|
}
|
|
2890
2334
|
},
|
|
2891
2335
|
"@types/istanbul-reports": {
|
|
2892
|
-
"version": "3.0.
|
|
2893
|
-
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.
|
|
2894
|
-
"integrity": "sha512-
|
|
2336
|
+
"version": "3.0.4",
|
|
2337
|
+
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
|
|
2338
|
+
"integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
|
|
2895
2339
|
"requires": {
|
|
2896
2340
|
"@types/istanbul-lib-report": "*"
|
|
2897
2341
|
}
|
|
2898
2342
|
},
|
|
2899
2343
|
"@types/jest": {
|
|
2900
|
-
"version": "29.5.
|
|
2901
|
-
"resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.
|
|
2902
|
-
"integrity": "sha512
|
|
2344
|
+
"version": "29.5.10",
|
|
2345
|
+
"resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.10.tgz",
|
|
2346
|
+
"integrity": "sha512-tE4yxKEphEyxj9s4inideLHktW/x6DwesIwWZ9NN1FKf9zbJYsnhBoA9vrHA/IuIOKwPa5PcFBNV4lpMIOEzyQ==",
|
|
2903
2347
|
"requires": {
|
|
2904
2348
|
"expect": "^29.0.0",
|
|
2905
2349
|
"pretty-format": "^29.0.0"
|
|
2906
2350
|
}
|
|
2907
2351
|
},
|
|
2908
2352
|
"@types/js-levenshtein": {
|
|
2909
|
-
"version": "1.1.
|
|
2910
|
-
"resolved": "https://registry.npmjs.org/@types/js-levenshtein/-/js-levenshtein-1.1.
|
|
2911
|
-
"integrity": "sha512
|
|
2353
|
+
"version": "1.1.3",
|
|
2354
|
+
"resolved": "https://registry.npmjs.org/@types/js-levenshtein/-/js-levenshtein-1.1.3.tgz",
|
|
2355
|
+
"integrity": "sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ=="
|
|
2912
2356
|
},
|
|
2913
2357
|
"@types/jsdom": {
|
|
2914
2358
|
"version": "20.0.1",
|
|
@@ -2921,29 +2365,32 @@
|
|
|
2921
2365
|
}
|
|
2922
2366
|
},
|
|
2923
2367
|
"@types/lodash": {
|
|
2924
|
-
"version": "4.14.
|
|
2925
|
-
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.
|
|
2926
|
-
"integrity": "sha512-
|
|
2368
|
+
"version": "4.14.202",
|
|
2369
|
+
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz",
|
|
2370
|
+
"integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ=="
|
|
2927
2371
|
},
|
|
2928
2372
|
"@types/ms": {
|
|
2929
|
-
"version": "0.7.
|
|
2930
|
-
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.
|
|
2931
|
-
"integrity": "sha512-
|
|
2373
|
+
"version": "0.7.34",
|
|
2374
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz",
|
|
2375
|
+
"integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g=="
|
|
2932
2376
|
},
|
|
2933
2377
|
"@types/node": {
|
|
2934
|
-
"version": "20.
|
|
2935
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.
|
|
2936
|
-
"integrity": "sha512-
|
|
2378
|
+
"version": "20.10.0",
|
|
2379
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.0.tgz",
|
|
2380
|
+
"integrity": "sha512-D0WfRmU9TQ8I9PFx9Yc+EBHw+vSpIub4IDvQivcp26PtPrdMGAq5SDcpXEo/epqa/DXotVpekHiLNTg3iaKXBQ==",
|
|
2381
|
+
"requires": {
|
|
2382
|
+
"undici-types": "~5.26.4"
|
|
2383
|
+
}
|
|
2937
2384
|
},
|
|
2938
2385
|
"@types/prop-types": {
|
|
2939
|
-
"version": "15.7.
|
|
2940
|
-
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.
|
|
2941
|
-
"integrity": "sha512-
|
|
2386
|
+
"version": "15.7.11",
|
|
2387
|
+
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz",
|
|
2388
|
+
"integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng=="
|
|
2942
2389
|
},
|
|
2943
2390
|
"@types/react": {
|
|
2944
|
-
"version": "18.2.
|
|
2945
|
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.
|
|
2946
|
-
"integrity": "sha512-
|
|
2391
|
+
"version": "18.2.39",
|
|
2392
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.39.tgz",
|
|
2393
|
+
"integrity": "sha512-Oiw+ppED6IremMInLV4HXGbfbG6GyziY3kqAwJYOR0PNbkYDmLWQA3a95EhdSmamsvbkJN96ZNN+YD+fGjzSBA==",
|
|
2947
2394
|
"requires": {
|
|
2948
2395
|
"@types/prop-types": "*",
|
|
2949
2396
|
"@types/scheduler": "*",
|
|
@@ -2951,38 +2398,38 @@
|
|
|
2951
2398
|
}
|
|
2952
2399
|
},
|
|
2953
2400
|
"@types/react-dom": {
|
|
2954
|
-
"version": "18.2.
|
|
2955
|
-
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.
|
|
2956
|
-
"integrity": "sha512-
|
|
2401
|
+
"version": "18.2.17",
|
|
2402
|
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.17.tgz",
|
|
2403
|
+
"integrity": "sha512-rvrT/M7Df5eykWFxn6MYt5Pem/Dbyc1N8Y0S9Mrkw2WFCRiqUgw9P7ul2NpwsXCSM1DVdENzdG9J5SreqfAIWg==",
|
|
2957
2404
|
"requires": {
|
|
2958
2405
|
"@types/react": "*"
|
|
2959
2406
|
}
|
|
2960
2407
|
},
|
|
2961
2408
|
"@types/react-test-renderer": {
|
|
2962
|
-
"version": "18.0.
|
|
2963
|
-
"resolved": "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-18.0.
|
|
2964
|
-
"integrity": "sha512-
|
|
2409
|
+
"version": "18.0.7",
|
|
2410
|
+
"resolved": "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-18.0.7.tgz",
|
|
2411
|
+
"integrity": "sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==",
|
|
2965
2412
|
"requires": {
|
|
2966
2413
|
"@types/react": "*"
|
|
2967
2414
|
}
|
|
2968
2415
|
},
|
|
2969
2416
|
"@types/scheduler": {
|
|
2970
|
-
"version": "0.16.
|
|
2971
|
-
"resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.
|
|
2972
|
-
"integrity": "sha512-
|
|
2417
|
+
"version": "0.16.8",
|
|
2418
|
+
"resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz",
|
|
2419
|
+
"integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A=="
|
|
2973
2420
|
},
|
|
2974
2421
|
"@types/set-cookie-parser": {
|
|
2975
|
-
"version": "2.4.
|
|
2976
|
-
"resolved": "https://registry.npmjs.org/@types/set-cookie-parser/-/set-cookie-parser-2.4.
|
|
2977
|
-
"integrity": "sha512
|
|
2422
|
+
"version": "2.4.7",
|
|
2423
|
+
"resolved": "https://registry.npmjs.org/@types/set-cookie-parser/-/set-cookie-parser-2.4.7.tgz",
|
|
2424
|
+
"integrity": "sha512-+ge/loa0oTozxip6zmhRIk8Z/boU51wl9Q6QdLZcokIGMzY5lFXYy/x7Htj2HTC6/KZP1hUbZ1ekx8DYXICvWg==",
|
|
2978
2425
|
"requires": {
|
|
2979
2426
|
"@types/node": "*"
|
|
2980
2427
|
}
|
|
2981
2428
|
},
|
|
2982
2429
|
"@types/stack-utils": {
|
|
2983
|
-
"version": "2.0.
|
|
2984
|
-
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.
|
|
2985
|
-
"integrity": "sha512-
|
|
2430
|
+
"version": "2.0.3",
|
|
2431
|
+
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz",
|
|
2432
|
+
"integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw=="
|
|
2986
2433
|
},
|
|
2987
2434
|
"@types/testing-library__jest-dom": {
|
|
2988
2435
|
"version": "5.14.9",
|
|
@@ -2993,9 +2440,9 @@
|
|
|
2993
2440
|
}
|
|
2994
2441
|
},
|
|
2995
2442
|
"@types/tough-cookie": {
|
|
2996
|
-
"version": "4.0.
|
|
2997
|
-
"resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.
|
|
2998
|
-
"integrity": "sha512
|
|
2443
|
+
"version": "4.0.5",
|
|
2444
|
+
"resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz",
|
|
2445
|
+
"integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA=="
|
|
2999
2446
|
},
|
|
3000
2447
|
"@types/uuid": {
|
|
3001
2448
|
"version": "9.0.1",
|
|
@@ -3003,17 +2450,17 @@
|
|
|
3003
2450
|
"integrity": "sha512-rFT3ak0/2trgvp4yYZo5iKFEPsET7vKydKF+VRCxlQ9bpheehyAJH89dAkaLEq/j/RZXJIqcgsmPJKUP1Z28HA=="
|
|
3004
2451
|
},
|
|
3005
2452
|
"@types/yargs": {
|
|
3006
|
-
"version": "17.0.
|
|
3007
|
-
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.
|
|
3008
|
-
"integrity": "sha512-
|
|
2453
|
+
"version": "17.0.32",
|
|
2454
|
+
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz",
|
|
2455
|
+
"integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==",
|
|
3009
2456
|
"requires": {
|
|
3010
2457
|
"@types/yargs-parser": "*"
|
|
3011
2458
|
}
|
|
3012
2459
|
},
|
|
3013
2460
|
"@types/yargs-parser": {
|
|
3014
|
-
"version": "21.0.
|
|
3015
|
-
"resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.
|
|
3016
|
-
"integrity": "sha512-
|
|
2461
|
+
"version": "21.0.3",
|
|
2462
|
+
"resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
|
|
2463
|
+
"integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ=="
|
|
3017
2464
|
},
|
|
3018
2465
|
"@xmldom/xmldom": {
|
|
3019
2466
|
"version": "0.8.10",
|
|
@@ -3032,9 +2479,9 @@
|
|
|
3032
2479
|
"integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA=="
|
|
3033
2480
|
},
|
|
3034
2481
|
"acorn": {
|
|
3035
|
-
"version": "8.
|
|
3036
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.
|
|
3037
|
-
"integrity": "sha512-
|
|
2482
|
+
"version": "8.11.2",
|
|
2483
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz",
|
|
2484
|
+
"integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w=="
|
|
3038
2485
|
},
|
|
3039
2486
|
"acorn-globals": {
|
|
3040
2487
|
"version": "7.0.1",
|
|
@@ -3046,9 +2493,9 @@
|
|
|
3046
2493
|
}
|
|
3047
2494
|
},
|
|
3048
2495
|
"acorn-walk": {
|
|
3049
|
-
"version": "8.
|
|
3050
|
-
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.
|
|
3051
|
-
"integrity": "sha512-
|
|
2496
|
+
"version": "8.3.0",
|
|
2497
|
+
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz",
|
|
2498
|
+
"integrity": "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA=="
|
|
3052
2499
|
},
|
|
3053
2500
|
"agent-base": {
|
|
3054
2501
|
"version": "6.0.2",
|
|
@@ -3072,11 +2519,11 @@
|
|
|
3072
2519
|
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
|
|
3073
2520
|
},
|
|
3074
2521
|
"ansi-styles": {
|
|
3075
|
-
"version": "3.
|
|
3076
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.
|
|
3077
|
-
"integrity": "sha512-
|
|
2522
|
+
"version": "4.3.0",
|
|
2523
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
2524
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
3078
2525
|
"requires": {
|
|
3079
|
-
"color-convert": "^
|
|
2526
|
+
"color-convert": "^2.0.1"
|
|
3080
2527
|
}
|
|
3081
2528
|
},
|
|
3082
2529
|
"any-promise": {
|
|
@@ -3108,6 +2555,16 @@
|
|
|
3108
2555
|
"requires": {
|
|
3109
2556
|
"@babel/runtime": "^7.10.2",
|
|
3110
2557
|
"@babel/runtime-corejs3": "^7.10.2"
|
|
2558
|
+
},
|
|
2559
|
+
"dependencies": {
|
|
2560
|
+
"@babel/runtime": {
|
|
2561
|
+
"version": "7.23.5",
|
|
2562
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
2563
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
2564
|
+
"requires": {
|
|
2565
|
+
"regenerator-runtime": "^0.14.0"
|
|
2566
|
+
}
|
|
2567
|
+
}
|
|
3111
2568
|
}
|
|
3112
2569
|
},
|
|
3113
2570
|
"array-buffer-byte-length": {
|
|
@@ -3190,51 +2647,6 @@
|
|
|
3190
2647
|
"chalk": "^4.0.0",
|
|
3191
2648
|
"graceful-fs": "^4.2.9",
|
|
3192
2649
|
"slash": "^3.0.0"
|
|
3193
|
-
},
|
|
3194
|
-
"dependencies": {
|
|
3195
|
-
"ansi-styles": {
|
|
3196
|
-
"version": "4.3.0",
|
|
3197
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
3198
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
3199
|
-
"requires": {
|
|
3200
|
-
"color-convert": "^2.0.1"
|
|
3201
|
-
}
|
|
3202
|
-
},
|
|
3203
|
-
"chalk": {
|
|
3204
|
-
"version": "4.1.2",
|
|
3205
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
3206
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
3207
|
-
"requires": {
|
|
3208
|
-
"ansi-styles": "^4.1.0",
|
|
3209
|
-
"supports-color": "^7.1.0"
|
|
3210
|
-
}
|
|
3211
|
-
},
|
|
3212
|
-
"color-convert": {
|
|
3213
|
-
"version": "2.0.1",
|
|
3214
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
3215
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
3216
|
-
"requires": {
|
|
3217
|
-
"color-name": "~1.1.4"
|
|
3218
|
-
}
|
|
3219
|
-
},
|
|
3220
|
-
"color-name": {
|
|
3221
|
-
"version": "1.1.4",
|
|
3222
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
3223
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
3224
|
-
},
|
|
3225
|
-
"has-flag": {
|
|
3226
|
-
"version": "4.0.0",
|
|
3227
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
3228
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
3229
|
-
},
|
|
3230
|
-
"supports-color": {
|
|
3231
|
-
"version": "7.2.0",
|
|
3232
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
3233
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
3234
|
-
"requires": {
|
|
3235
|
-
"has-flag": "^4.0.0"
|
|
3236
|
-
}
|
|
3237
|
-
}
|
|
3238
2650
|
}
|
|
3239
2651
|
},
|
|
3240
2652
|
"babel-plugin-istanbul": {
|
|
@@ -3261,33 +2673,41 @@
|
|
|
3261
2673
|
}
|
|
3262
2674
|
},
|
|
3263
2675
|
"babel-plugin-polyfill-corejs2": {
|
|
3264
|
-
"version": "0.4.
|
|
3265
|
-
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.
|
|
3266
|
-
"integrity": "sha512-
|
|
2676
|
+
"version": "0.4.6",
|
|
2677
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz",
|
|
2678
|
+
"integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==",
|
|
3267
2679
|
"dev": true,
|
|
3268
2680
|
"requires": {
|
|
3269
2681
|
"@babel/compat-data": "^7.22.6",
|
|
3270
|
-
"@babel/helper-define-polyfill-provider": "^0.4.
|
|
2682
|
+
"@babel/helper-define-polyfill-provider": "^0.4.3",
|
|
3271
2683
|
"semver": "^6.3.1"
|
|
2684
|
+
},
|
|
2685
|
+
"dependencies": {
|
|
2686
|
+
"semver": {
|
|
2687
|
+
"version": "6.3.1",
|
|
2688
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
2689
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
2690
|
+
"dev": true
|
|
2691
|
+
}
|
|
3272
2692
|
}
|
|
3273
2693
|
},
|
|
3274
2694
|
"babel-plugin-polyfill-corejs3": {
|
|
3275
|
-
"version": "0.8.
|
|
3276
|
-
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.
|
|
3277
|
-
"integrity": "sha512-
|
|
2695
|
+
"version": "0.8.6",
|
|
2696
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz",
|
|
2697
|
+
"integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==",
|
|
3278
2698
|
"dev": true,
|
|
3279
2699
|
"requires": {
|
|
3280
|
-
"@babel/helper-define-polyfill-provider": "^0.4.
|
|
3281
|
-
"core-js-compat": "^3.
|
|
2700
|
+
"@babel/helper-define-polyfill-provider": "^0.4.3",
|
|
2701
|
+
"core-js-compat": "^3.33.1"
|
|
3282
2702
|
}
|
|
3283
2703
|
},
|
|
3284
2704
|
"babel-plugin-polyfill-regenerator": {
|
|
3285
|
-
"version": "0.5.
|
|
3286
|
-
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.
|
|
3287
|
-
"integrity": "sha512-
|
|
2705
|
+
"version": "0.5.3",
|
|
2706
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz",
|
|
2707
|
+
"integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==",
|
|
3288
2708
|
"dev": true,
|
|
3289
2709
|
"requires": {
|
|
3290
|
-
"@babel/helper-define-polyfill-provider": "^0.4.
|
|
2710
|
+
"@babel/helper-define-polyfill-provider": "^0.4.3"
|
|
3291
2711
|
}
|
|
3292
2712
|
},
|
|
3293
2713
|
"babel-plugin-transform-dynamic-import": {
|
|
@@ -3369,14 +2789,14 @@
|
|
|
3369
2789
|
}
|
|
3370
2790
|
},
|
|
3371
2791
|
"browserslist": {
|
|
3372
|
-
"version": "4.
|
|
3373
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.
|
|
3374
|
-
"integrity": "sha512-
|
|
2792
|
+
"version": "4.22.1",
|
|
2793
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz",
|
|
2794
|
+
"integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==",
|
|
3375
2795
|
"requires": {
|
|
3376
|
-
"caniuse-lite": "^1.0.
|
|
3377
|
-
"electron-to-chromium": "^1.4.
|
|
2796
|
+
"caniuse-lite": "^1.0.30001541",
|
|
2797
|
+
"electron-to-chromium": "^1.4.535",
|
|
3378
2798
|
"node-releases": "^2.0.13",
|
|
3379
|
-
"update-browserslist-db": "^1.0.
|
|
2799
|
+
"update-browserslist-db": "^1.0.13"
|
|
3380
2800
|
}
|
|
3381
2801
|
},
|
|
3382
2802
|
"bser": {
|
|
@@ -3402,12 +2822,13 @@
|
|
|
3402
2822
|
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
|
|
3403
2823
|
},
|
|
3404
2824
|
"call-bind": {
|
|
3405
|
-
"version": "1.0.
|
|
3406
|
-
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.
|
|
3407
|
-
"integrity": "sha512-
|
|
2825
|
+
"version": "1.0.5",
|
|
2826
|
+
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz",
|
|
2827
|
+
"integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==",
|
|
3408
2828
|
"requires": {
|
|
3409
|
-
"function-bind": "^1.1.
|
|
3410
|
-
"get-intrinsic": "^1.
|
|
2829
|
+
"function-bind": "^1.1.2",
|
|
2830
|
+
"get-intrinsic": "^1.2.1",
|
|
2831
|
+
"set-function-length": "^1.1.1"
|
|
3411
2832
|
}
|
|
3412
2833
|
},
|
|
3413
2834
|
"callsites": {
|
|
@@ -3421,9 +2842,9 @@
|
|
|
3421
2842
|
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
|
|
3422
2843
|
},
|
|
3423
2844
|
"caniuse-lite": {
|
|
3424
|
-
"version": "1.0.
|
|
3425
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
3426
|
-
"integrity": "sha512-
|
|
2845
|
+
"version": "1.0.30001565",
|
|
2846
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001565.tgz",
|
|
2847
|
+
"integrity": "sha512-xrE//a3O7TP0vaJ8ikzkD2c2NgcVUvsEe2IvFTntV4Yd1Z9FVzh+gW+enX96L0psrbaFMcVcH2l90xNuGDWc8w=="
|
|
3427
2848
|
},
|
|
3428
2849
|
"capital-case": {
|
|
3429
2850
|
"version": "1.0.4",
|
|
@@ -3436,13 +2857,22 @@
|
|
|
3436
2857
|
}
|
|
3437
2858
|
},
|
|
3438
2859
|
"chalk": {
|
|
3439
|
-
"version": "
|
|
3440
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-
|
|
3441
|
-
"integrity": "sha512-
|
|
2860
|
+
"version": "4.1.2",
|
|
2861
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
2862
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
3442
2863
|
"requires": {
|
|
3443
|
-
"ansi-styles": "^
|
|
3444
|
-
"
|
|
3445
|
-
|
|
2864
|
+
"ansi-styles": "^4.1.0",
|
|
2865
|
+
"supports-color": "^7.1.0"
|
|
2866
|
+
},
|
|
2867
|
+
"dependencies": {
|
|
2868
|
+
"supports-color": {
|
|
2869
|
+
"version": "7.2.0",
|
|
2870
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
2871
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
2872
|
+
"requires": {
|
|
2873
|
+
"has-flag": "^4.0.0"
|
|
2874
|
+
}
|
|
2875
|
+
}
|
|
3446
2876
|
}
|
|
3447
2877
|
},
|
|
3448
2878
|
"char-regex": {
|
|
@@ -3494,9 +2924,9 @@
|
|
|
3494
2924
|
}
|
|
3495
2925
|
},
|
|
3496
2926
|
"cli-spinners": {
|
|
3497
|
-
"version": "2.9.
|
|
3498
|
-
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.
|
|
3499
|
-
"integrity": "sha512-
|
|
2927
|
+
"version": "2.9.2",
|
|
2928
|
+
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
|
|
2929
|
+
"integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg=="
|
|
3500
2930
|
},
|
|
3501
2931
|
"cli-table3": {
|
|
3502
2932
|
"version": "0.6.3",
|
|
@@ -3549,17 +2979,17 @@
|
|
|
3549
2979
|
"integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q=="
|
|
3550
2980
|
},
|
|
3551
2981
|
"color-convert": {
|
|
3552
|
-
"version": "
|
|
3553
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-
|
|
3554
|
-
"integrity": "sha512-
|
|
2982
|
+
"version": "2.0.1",
|
|
2983
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
2984
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
3555
2985
|
"requires": {
|
|
3556
|
-
"color-name": "1.1.
|
|
2986
|
+
"color-name": "~1.1.4"
|
|
3557
2987
|
}
|
|
3558
2988
|
},
|
|
3559
2989
|
"color-name": {
|
|
3560
|
-
"version": "1.1.
|
|
3561
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.
|
|
3562
|
-
"integrity": "sha512-
|
|
2990
|
+
"version": "1.1.4",
|
|
2991
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
2992
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
3563
2993
|
},
|
|
3564
2994
|
"combined-stream": {
|
|
3565
2995
|
"version": "1.0.8",
|
|
@@ -3570,9 +3000,10 @@
|
|
|
3570
3000
|
}
|
|
3571
3001
|
},
|
|
3572
3002
|
"commander": {
|
|
3573
|
-
"version": "11.
|
|
3574
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-11.
|
|
3575
|
-
"integrity": "sha512-
|
|
3003
|
+
"version": "11.1.0",
|
|
3004
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz",
|
|
3005
|
+
"integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==",
|
|
3006
|
+
"dev": true
|
|
3576
3007
|
},
|
|
3577
3008
|
"commondir": {
|
|
3578
3009
|
"version": "1.0.1",
|
|
@@ -3596,24 +3027,24 @@
|
|
|
3596
3027
|
"integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA=="
|
|
3597
3028
|
},
|
|
3598
3029
|
"core-js": {
|
|
3599
|
-
"version": "3.
|
|
3600
|
-
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.
|
|
3601
|
-
"integrity": "sha512-
|
|
3030
|
+
"version": "3.33.3",
|
|
3031
|
+
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.3.tgz",
|
|
3032
|
+
"integrity": "sha512-lo0kOocUlLKmm6kv/FswQL8zbkH7mVsLJ/FULClOhv8WRVmKLVcs6XPNQAzstfeJTCHMyButEwG+z1kHxHoDZw==",
|
|
3602
3033
|
"dev": true
|
|
3603
3034
|
},
|
|
3604
3035
|
"core-js-compat": {
|
|
3605
|
-
"version": "3.
|
|
3606
|
-
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.
|
|
3607
|
-
"integrity": "sha512
|
|
3036
|
+
"version": "3.33.3",
|
|
3037
|
+
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.3.tgz",
|
|
3038
|
+
"integrity": "sha512-cNzGqFsh3Ot+529GIXacjTJ7kegdt5fPXxCBVS1G0iaZpuo/tBz399ymceLJveQhFFZ8qThHiP3fzuoQjKN2ow==",
|
|
3608
3039
|
"dev": true,
|
|
3609
3040
|
"requires": {
|
|
3610
|
-
"browserslist": "^4.
|
|
3041
|
+
"browserslist": "^4.22.1"
|
|
3611
3042
|
}
|
|
3612
3043
|
},
|
|
3613
3044
|
"core-js-pure": {
|
|
3614
|
-
"version": "3.
|
|
3615
|
-
"resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.
|
|
3616
|
-
"integrity": "sha512-
|
|
3045
|
+
"version": "3.33.3",
|
|
3046
|
+
"resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.33.3.tgz",
|
|
3047
|
+
"integrity": "sha512-taJ00IDOP+XYQEA2dAe4ESkmHt1fL8wzYDo3mRWQey8uO9UojlBFMneA65kMyxfYP7106c6LzWaq7/haDT6BCQ=="
|
|
3617
3048
|
},
|
|
3618
3049
|
"core-util-is": {
|
|
3619
3050
|
"version": "1.0.2",
|
|
@@ -3632,51 +3063,6 @@
|
|
|
3632
3063
|
"jest-config": "^29.7.0",
|
|
3633
3064
|
"jest-util": "^29.7.0",
|
|
3634
3065
|
"prompts": "^2.0.1"
|
|
3635
|
-
},
|
|
3636
|
-
"dependencies": {
|
|
3637
|
-
"ansi-styles": {
|
|
3638
|
-
"version": "4.3.0",
|
|
3639
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
3640
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
3641
|
-
"requires": {
|
|
3642
|
-
"color-convert": "^2.0.1"
|
|
3643
|
-
}
|
|
3644
|
-
},
|
|
3645
|
-
"chalk": {
|
|
3646
|
-
"version": "4.1.2",
|
|
3647
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
3648
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
3649
|
-
"requires": {
|
|
3650
|
-
"ansi-styles": "^4.1.0",
|
|
3651
|
-
"supports-color": "^7.1.0"
|
|
3652
|
-
}
|
|
3653
|
-
},
|
|
3654
|
-
"color-convert": {
|
|
3655
|
-
"version": "2.0.1",
|
|
3656
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
3657
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
3658
|
-
"requires": {
|
|
3659
|
-
"color-name": "~1.1.4"
|
|
3660
|
-
}
|
|
3661
|
-
},
|
|
3662
|
-
"color-name": {
|
|
3663
|
-
"version": "1.1.4",
|
|
3664
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
3665
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
3666
|
-
},
|
|
3667
|
-
"has-flag": {
|
|
3668
|
-
"version": "4.0.0",
|
|
3669
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
3670
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
3671
|
-
},
|
|
3672
|
-
"supports-color": {
|
|
3673
|
-
"version": "7.2.0",
|
|
3674
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
3675
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
3676
|
-
"requires": {
|
|
3677
|
-
"has-flag": "^4.0.0"
|
|
3678
|
-
}
|
|
3679
|
-
}
|
|
3680
3066
|
}
|
|
3681
3067
|
},
|
|
3682
3068
|
"cross-spawn": {
|
|
@@ -3776,10 +3162,9 @@
|
|
|
3776
3162
|
}
|
|
3777
3163
|
},
|
|
3778
3164
|
"define-data-property": {
|
|
3779
|
-
"version": "1.1.
|
|
3780
|
-
"resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.
|
|
3781
|
-
"integrity": "sha512-
|
|
3782
|
-
"dev": true,
|
|
3165
|
+
"version": "1.1.1",
|
|
3166
|
+
"resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz",
|
|
3167
|
+
"integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==",
|
|
3783
3168
|
"requires": {
|
|
3784
3169
|
"get-intrinsic": "^1.2.1",
|
|
3785
3170
|
"gopd": "^1.0.1",
|
|
@@ -3831,9 +3216,9 @@
|
|
|
3831
3216
|
}
|
|
3832
3217
|
},
|
|
3833
3218
|
"electron-to-chromium": {
|
|
3834
|
-
"version": "1.4.
|
|
3835
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.
|
|
3836
|
-
"integrity": "sha512-
|
|
3219
|
+
"version": "1.4.596",
|
|
3220
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.596.tgz",
|
|
3221
|
+
"integrity": "sha512-zW3zbZ40Icb2BCWjm47nxwcFGYlIgdXkAx85XDO7cyky9J4QQfq8t0W19/TLZqq3JPQXtlv8BPIGmfa9Jb4scg=="
|
|
3837
3222
|
},
|
|
3838
3223
|
"emittery": {
|
|
3839
3224
|
"version": "0.13.1",
|
|
@@ -3867,26 +3252,26 @@
|
|
|
3867
3252
|
}
|
|
3868
3253
|
},
|
|
3869
3254
|
"es-abstract": {
|
|
3870
|
-
"version": "1.22.
|
|
3871
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.
|
|
3872
|
-
"integrity": "sha512-
|
|
3255
|
+
"version": "1.22.3",
|
|
3256
|
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz",
|
|
3257
|
+
"integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==",
|
|
3873
3258
|
"dev": true,
|
|
3874
3259
|
"requires": {
|
|
3875
3260
|
"array-buffer-byte-length": "^1.0.0",
|
|
3876
|
-
"arraybuffer.prototype.slice": "^1.0.
|
|
3261
|
+
"arraybuffer.prototype.slice": "^1.0.2",
|
|
3877
3262
|
"available-typed-arrays": "^1.0.5",
|
|
3878
|
-
"call-bind": "^1.0.
|
|
3263
|
+
"call-bind": "^1.0.5",
|
|
3879
3264
|
"es-set-tostringtag": "^2.0.1",
|
|
3880
3265
|
"es-to-primitive": "^1.2.1",
|
|
3881
|
-
"function.prototype.name": "^1.1.
|
|
3882
|
-
"get-intrinsic": "^1.2.
|
|
3266
|
+
"function.prototype.name": "^1.1.6",
|
|
3267
|
+
"get-intrinsic": "^1.2.2",
|
|
3883
3268
|
"get-symbol-description": "^1.0.0",
|
|
3884
3269
|
"globalthis": "^1.0.3",
|
|
3885
3270
|
"gopd": "^1.0.1",
|
|
3886
|
-
"has": "^1.0.3",
|
|
3887
3271
|
"has-property-descriptors": "^1.0.0",
|
|
3888
3272
|
"has-proto": "^1.0.1",
|
|
3889
3273
|
"has-symbols": "^1.0.3",
|
|
3274
|
+
"hasown": "^2.0.0",
|
|
3890
3275
|
"internal-slot": "^1.0.5",
|
|
3891
3276
|
"is-array-buffer": "^3.0.2",
|
|
3892
3277
|
"is-callable": "^1.2.7",
|
|
@@ -3894,23 +3279,23 @@
|
|
|
3894
3279
|
"is-regex": "^1.1.4",
|
|
3895
3280
|
"is-shared-array-buffer": "^1.0.2",
|
|
3896
3281
|
"is-string": "^1.0.7",
|
|
3897
|
-
"is-typed-array": "^1.1.
|
|
3282
|
+
"is-typed-array": "^1.1.12",
|
|
3898
3283
|
"is-weakref": "^1.0.2",
|
|
3899
|
-
"object-inspect": "^1.
|
|
3284
|
+
"object-inspect": "^1.13.1",
|
|
3900
3285
|
"object-keys": "^1.1.1",
|
|
3901
3286
|
"object.assign": "^4.1.4",
|
|
3902
|
-
"regexp.prototype.flags": "^1.5.
|
|
3903
|
-
"safe-array-concat": "^1.0.
|
|
3287
|
+
"regexp.prototype.flags": "^1.5.1",
|
|
3288
|
+
"safe-array-concat": "^1.0.1",
|
|
3904
3289
|
"safe-regex-test": "^1.0.0",
|
|
3905
|
-
"string.prototype.trim": "^1.2.
|
|
3906
|
-
"string.prototype.trimend": "^1.0.
|
|
3907
|
-
"string.prototype.trimstart": "^1.0.
|
|
3290
|
+
"string.prototype.trim": "^1.2.8",
|
|
3291
|
+
"string.prototype.trimend": "^1.0.7",
|
|
3292
|
+
"string.prototype.trimstart": "^1.0.7",
|
|
3908
3293
|
"typed-array-buffer": "^1.0.0",
|
|
3909
3294
|
"typed-array-byte-length": "^1.0.0",
|
|
3910
3295
|
"typed-array-byte-offset": "^1.0.0",
|
|
3911
3296
|
"typed-array-length": "^1.0.4",
|
|
3912
3297
|
"unbox-primitive": "^1.0.2",
|
|
3913
|
-
"which-typed-array": "^1.1.
|
|
3298
|
+
"which-typed-array": "^1.1.13"
|
|
3914
3299
|
}
|
|
3915
3300
|
},
|
|
3916
3301
|
"es-array-method-boxes-properly": {
|
|
@@ -3920,14 +3305,14 @@
|
|
|
3920
3305
|
"dev": true
|
|
3921
3306
|
},
|
|
3922
3307
|
"es-set-tostringtag": {
|
|
3923
|
-
"version": "2.0.
|
|
3924
|
-
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.
|
|
3925
|
-
"integrity": "sha512-
|
|
3308
|
+
"version": "2.0.2",
|
|
3309
|
+
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz",
|
|
3310
|
+
"integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==",
|
|
3926
3311
|
"dev": true,
|
|
3927
3312
|
"requires": {
|
|
3928
|
-
"get-intrinsic": "^1.
|
|
3929
|
-
"has": "^1.0.
|
|
3930
|
-
"
|
|
3313
|
+
"get-intrinsic": "^1.2.2",
|
|
3314
|
+
"has-tostringtag": "^1.0.0",
|
|
3315
|
+
"hasown": "^2.0.0"
|
|
3931
3316
|
}
|
|
3932
3317
|
},
|
|
3933
3318
|
"es-to-primitive": {
|
|
@@ -4032,6 +3417,14 @@
|
|
|
4032
3417
|
"requires": {
|
|
4033
3418
|
"safer-buffer": ">= 2.1.2 < 3"
|
|
4034
3419
|
}
|
|
3420
|
+
},
|
|
3421
|
+
"tmp": {
|
|
3422
|
+
"version": "0.0.33",
|
|
3423
|
+
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
|
|
3424
|
+
"integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
|
|
3425
|
+
"requires": {
|
|
3426
|
+
"os-tmpdir": "~1.0.2"
|
|
3427
|
+
}
|
|
4035
3428
|
}
|
|
4036
3429
|
}
|
|
4037
3430
|
},
|
|
@@ -4206,9 +3599,9 @@
|
|
|
4206
3599
|
"optional": true
|
|
4207
3600
|
},
|
|
4208
3601
|
"function-bind": {
|
|
4209
|
-
"version": "1.1.
|
|
4210
|
-
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.
|
|
4211
|
-
"integrity": "sha512-
|
|
3602
|
+
"version": "1.1.2",
|
|
3603
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
3604
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
|
|
4212
3605
|
},
|
|
4213
3606
|
"function.prototype.name": {
|
|
4214
3607
|
"version": "1.1.6",
|
|
@@ -4239,14 +3632,14 @@
|
|
|
4239
3632
|
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
|
|
4240
3633
|
},
|
|
4241
3634
|
"get-intrinsic": {
|
|
4242
|
-
"version": "1.2.
|
|
4243
|
-
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.
|
|
4244
|
-
"integrity": "sha512-
|
|
3635
|
+
"version": "1.2.2",
|
|
3636
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz",
|
|
3637
|
+
"integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==",
|
|
4245
3638
|
"requires": {
|
|
4246
|
-
"function-bind": "^1.1.
|
|
4247
|
-
"has": "^1.0.3",
|
|
3639
|
+
"function-bind": "^1.1.2",
|
|
4248
3640
|
"has-proto": "^1.0.1",
|
|
4249
|
-
"has-symbols": "^1.0.3"
|
|
3641
|
+
"has-symbols": "^1.0.3",
|
|
3642
|
+
"hasown": "^2.0.0"
|
|
4250
3643
|
}
|
|
4251
3644
|
},
|
|
4252
3645
|
"get-package-type": {
|
|
@@ -4330,14 +3723,6 @@
|
|
|
4330
3723
|
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz",
|
|
4331
3724
|
"integrity": "sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw=="
|
|
4332
3725
|
},
|
|
4333
|
-
"has": {
|
|
4334
|
-
"version": "1.0.3",
|
|
4335
|
-
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
|
4336
|
-
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
|
4337
|
-
"requires": {
|
|
4338
|
-
"function-bind": "^1.1.1"
|
|
4339
|
-
}
|
|
4340
|
-
},
|
|
4341
3726
|
"has-ansi": {
|
|
4342
3727
|
"version": "4.0.1",
|
|
4343
3728
|
"resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-4.0.1.tgz",
|
|
@@ -4360,17 +3745,16 @@
|
|
|
4360
3745
|
"dev": true
|
|
4361
3746
|
},
|
|
4362
3747
|
"has-flag": {
|
|
4363
|
-
"version": "
|
|
4364
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-
|
|
4365
|
-
"integrity": "sha512-
|
|
3748
|
+
"version": "4.0.0",
|
|
3749
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
3750
|
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
4366
3751
|
},
|
|
4367
3752
|
"has-property-descriptors": {
|
|
4368
|
-
"version": "1.0.
|
|
4369
|
-
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.
|
|
4370
|
-
"integrity": "sha512-
|
|
4371
|
-
"dev": true,
|
|
3753
|
+
"version": "1.0.1",
|
|
3754
|
+
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz",
|
|
3755
|
+
"integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==",
|
|
4372
3756
|
"requires": {
|
|
4373
|
-
"get-intrinsic": "^1.
|
|
3757
|
+
"get-intrinsic": "^1.2.2"
|
|
4374
3758
|
}
|
|
4375
3759
|
},
|
|
4376
3760
|
"has-proto": {
|
|
@@ -4391,6 +3775,14 @@
|
|
|
4391
3775
|
"has-symbols": "^1.0.2"
|
|
4392
3776
|
}
|
|
4393
3777
|
},
|
|
3778
|
+
"hasown": {
|
|
3779
|
+
"version": "2.0.0",
|
|
3780
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz",
|
|
3781
|
+
"integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==",
|
|
3782
|
+
"requires": {
|
|
3783
|
+
"function-bind": "^1.1.2"
|
|
3784
|
+
}
|
|
3785
|
+
},
|
|
4394
3786
|
"headers-polyfill": {
|
|
4395
3787
|
"version": "3.3.0",
|
|
4396
3788
|
"resolved": "https://registry.npmjs.org/headers-polyfill/-/headers-polyfill-3.3.0.tgz",
|
|
@@ -4515,49 +3907,6 @@
|
|
|
4515
3907
|
"wrap-ansi": "^6.0.1"
|
|
4516
3908
|
},
|
|
4517
3909
|
"dependencies": {
|
|
4518
|
-
"ansi-styles": {
|
|
4519
|
-
"version": "4.3.0",
|
|
4520
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
4521
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
4522
|
-
"requires": {
|
|
4523
|
-
"color-convert": "^2.0.1"
|
|
4524
|
-
}
|
|
4525
|
-
},
|
|
4526
|
-
"chalk": {
|
|
4527
|
-
"version": "4.1.2",
|
|
4528
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
4529
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
4530
|
-
"requires": {
|
|
4531
|
-
"ansi-styles": "^4.1.0",
|
|
4532
|
-
"supports-color": "^7.1.0"
|
|
4533
|
-
}
|
|
4534
|
-
},
|
|
4535
|
-
"color-convert": {
|
|
4536
|
-
"version": "2.0.1",
|
|
4537
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
4538
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
4539
|
-
"requires": {
|
|
4540
|
-
"color-name": "~1.1.4"
|
|
4541
|
-
}
|
|
4542
|
-
},
|
|
4543
|
-
"color-name": {
|
|
4544
|
-
"version": "1.1.4",
|
|
4545
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
4546
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
4547
|
-
},
|
|
4548
|
-
"has-flag": {
|
|
4549
|
-
"version": "4.0.0",
|
|
4550
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
4551
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
4552
|
-
},
|
|
4553
|
-
"supports-color": {
|
|
4554
|
-
"version": "7.2.0",
|
|
4555
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
4556
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
4557
|
-
"requires": {
|
|
4558
|
-
"has-flag": "^4.0.0"
|
|
4559
|
-
}
|
|
4560
|
-
},
|
|
4561
3910
|
"wrap-ansi": {
|
|
4562
3911
|
"version": "6.2.0",
|
|
4563
3912
|
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
|
|
@@ -4571,13 +3920,13 @@
|
|
|
4571
3920
|
}
|
|
4572
3921
|
},
|
|
4573
3922
|
"internal-slot": {
|
|
4574
|
-
"version": "1.0.
|
|
4575
|
-
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.
|
|
4576
|
-
"integrity": "sha512-
|
|
3923
|
+
"version": "1.0.6",
|
|
3924
|
+
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz",
|
|
3925
|
+
"integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==",
|
|
4577
3926
|
"dev": true,
|
|
4578
3927
|
"requires": {
|
|
4579
|
-
"get-intrinsic": "^1.2.
|
|
4580
|
-
"
|
|
3928
|
+
"get-intrinsic": "^1.2.2",
|
|
3929
|
+
"hasown": "^2.0.0",
|
|
4581
3930
|
"side-channel": "^1.0.4"
|
|
4582
3931
|
}
|
|
4583
3932
|
},
|
|
@@ -4639,11 +3988,11 @@
|
|
|
4639
3988
|
"integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="
|
|
4640
3989
|
},
|
|
4641
3990
|
"is-core-module": {
|
|
4642
|
-
"version": "2.13.
|
|
4643
|
-
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.
|
|
4644
|
-
"integrity": "sha512-
|
|
3991
|
+
"version": "2.13.1",
|
|
3992
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz",
|
|
3993
|
+
"integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
|
|
4645
3994
|
"requires": {
|
|
4646
|
-
"
|
|
3995
|
+
"hasown": "^2.0.0"
|
|
4647
3996
|
}
|
|
4648
3997
|
},
|
|
4649
3998
|
"is-date-object": {
|
|
@@ -4826,9 +4175,9 @@
|
|
|
4826
4175
|
"dev": true
|
|
4827
4176
|
},
|
|
4828
4177
|
"istanbul-lib-coverage": {
|
|
4829
|
-
"version": "3.2.
|
|
4830
|
-
"resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.
|
|
4831
|
-
"integrity": "sha512-
|
|
4178
|
+
"version": "3.2.2",
|
|
4179
|
+
"resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
|
|
4180
|
+
"integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg=="
|
|
4832
4181
|
},
|
|
4833
4182
|
"istanbul-lib-instrument": {
|
|
4834
4183
|
"version": "5.2.1",
|
|
@@ -4840,6 +4189,35 @@
|
|
|
4840
4189
|
"@istanbuljs/schema": "^0.1.2",
|
|
4841
4190
|
"istanbul-lib-coverage": "^3.2.0",
|
|
4842
4191
|
"semver": "^6.3.0"
|
|
4192
|
+
},
|
|
4193
|
+
"dependencies": {
|
|
4194
|
+
"@babel/core": {
|
|
4195
|
+
"version": "7.23.5",
|
|
4196
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
4197
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
4198
|
+
"requires": {
|
|
4199
|
+
"@ampproject/remapping": "^2.2.0",
|
|
4200
|
+
"@babel/code-frame": "^7.23.5",
|
|
4201
|
+
"@babel/generator": "^7.23.5",
|
|
4202
|
+
"@babel/helper-compilation-targets": "^7.22.15",
|
|
4203
|
+
"@babel/helper-module-transforms": "^7.23.3",
|
|
4204
|
+
"@babel/helpers": "^7.23.5",
|
|
4205
|
+
"@babel/parser": "^7.23.5",
|
|
4206
|
+
"@babel/template": "^7.22.15",
|
|
4207
|
+
"@babel/traverse": "^7.23.5",
|
|
4208
|
+
"@babel/types": "^7.23.5",
|
|
4209
|
+
"convert-source-map": "^2.0.0",
|
|
4210
|
+
"debug": "^4.1.0",
|
|
4211
|
+
"gensync": "^1.0.0-beta.2",
|
|
4212
|
+
"json5": "^2.2.3",
|
|
4213
|
+
"semver": "^6.3.1"
|
|
4214
|
+
}
|
|
4215
|
+
},
|
|
4216
|
+
"semver": {
|
|
4217
|
+
"version": "6.3.1",
|
|
4218
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
4219
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
|
|
4220
|
+
}
|
|
4843
4221
|
}
|
|
4844
4222
|
},
|
|
4845
4223
|
"istanbul-lib-report": {
|
|
@@ -4852,11 +4230,6 @@
|
|
|
4852
4230
|
"supports-color": "^7.1.0"
|
|
4853
4231
|
},
|
|
4854
4232
|
"dependencies": {
|
|
4855
|
-
"has-flag": {
|
|
4856
|
-
"version": "4.0.0",
|
|
4857
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
4858
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
4859
|
-
},
|
|
4860
4233
|
"supports-color": {
|
|
4861
4234
|
"version": "7.2.0",
|
|
4862
4235
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
@@ -4897,41 +4270,6 @@
|
|
|
4897
4270
|
"jest-cli": "^29.6.2"
|
|
4898
4271
|
},
|
|
4899
4272
|
"dependencies": {
|
|
4900
|
-
"ansi-styles": {
|
|
4901
|
-
"version": "4.3.0",
|
|
4902
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
4903
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
4904
|
-
"requires": {
|
|
4905
|
-
"color-convert": "^2.0.1"
|
|
4906
|
-
}
|
|
4907
|
-
},
|
|
4908
|
-
"chalk": {
|
|
4909
|
-
"version": "4.1.2",
|
|
4910
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
4911
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
4912
|
-
"requires": {
|
|
4913
|
-
"ansi-styles": "^4.1.0",
|
|
4914
|
-
"supports-color": "^7.1.0"
|
|
4915
|
-
}
|
|
4916
|
-
},
|
|
4917
|
-
"color-convert": {
|
|
4918
|
-
"version": "2.0.1",
|
|
4919
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
4920
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
4921
|
-
"requires": {
|
|
4922
|
-
"color-name": "~1.1.4"
|
|
4923
|
-
}
|
|
4924
|
-
},
|
|
4925
|
-
"color-name": {
|
|
4926
|
-
"version": "1.1.4",
|
|
4927
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
4928
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
4929
|
-
},
|
|
4930
|
-
"has-flag": {
|
|
4931
|
-
"version": "4.0.0",
|
|
4932
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
4933
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
4934
|
-
},
|
|
4935
4273
|
"jest-cli": {
|
|
4936
4274
|
"version": "29.7.0",
|
|
4937
4275
|
"resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz",
|
|
@@ -4949,14 +4287,6 @@
|
|
|
4949
4287
|
"jest-validate": "^29.7.0",
|
|
4950
4288
|
"yargs": "^17.3.1"
|
|
4951
4289
|
}
|
|
4952
|
-
},
|
|
4953
|
-
"supports-color": {
|
|
4954
|
-
"version": "7.2.0",
|
|
4955
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
4956
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
4957
|
-
"requires": {
|
|
4958
|
-
"has-flag": "^4.0.0"
|
|
4959
|
-
}
|
|
4960
4290
|
}
|
|
4961
4291
|
}
|
|
4962
4292
|
},
|
|
@@ -5007,41 +4337,6 @@
|
|
|
5007
4337
|
"stack-utils": "^2.0.3"
|
|
5008
4338
|
},
|
|
5009
4339
|
"dependencies": {
|
|
5010
|
-
"ansi-styles": {
|
|
5011
|
-
"version": "4.3.0",
|
|
5012
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5013
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5014
|
-
"requires": {
|
|
5015
|
-
"color-convert": "^2.0.1"
|
|
5016
|
-
}
|
|
5017
|
-
},
|
|
5018
|
-
"chalk": {
|
|
5019
|
-
"version": "4.1.2",
|
|
5020
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5021
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5022
|
-
"requires": {
|
|
5023
|
-
"ansi-styles": "^4.1.0",
|
|
5024
|
-
"supports-color": "^7.1.0"
|
|
5025
|
-
}
|
|
5026
|
-
},
|
|
5027
|
-
"color-convert": {
|
|
5028
|
-
"version": "2.0.1",
|
|
5029
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5030
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5031
|
-
"requires": {
|
|
5032
|
-
"color-name": "~1.1.4"
|
|
5033
|
-
}
|
|
5034
|
-
},
|
|
5035
|
-
"color-name": {
|
|
5036
|
-
"version": "1.1.4",
|
|
5037
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5038
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5039
|
-
},
|
|
5040
|
-
"has-flag": {
|
|
5041
|
-
"version": "4.0.0",
|
|
5042
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5043
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5044
|
-
},
|
|
5045
4340
|
"p-limit": {
|
|
5046
4341
|
"version": "3.1.0",
|
|
5047
4342
|
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
|
|
@@ -5049,14 +4344,6 @@
|
|
|
5049
4344
|
"requires": {
|
|
5050
4345
|
"yocto-queue": "^0.1.0"
|
|
5051
4346
|
}
|
|
5052
|
-
},
|
|
5053
|
-
"supports-color": {
|
|
5054
|
-
"version": "7.2.0",
|
|
5055
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5056
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5057
|
-
"requires": {
|
|
5058
|
-
"has-flag": "^4.0.0"
|
|
5059
|
-
}
|
|
5060
4347
|
}
|
|
5061
4348
|
}
|
|
5062
4349
|
},
|
|
@@ -5089,12 +4376,26 @@
|
|
|
5089
4376
|
"strip-json-comments": "^3.1.1"
|
|
5090
4377
|
},
|
|
5091
4378
|
"dependencies": {
|
|
5092
|
-
"
|
|
5093
|
-
"version": "
|
|
5094
|
-
"resolved": "https://registry.npmjs.org/
|
|
5095
|
-
"integrity": "sha512-
|
|
5096
|
-
"requires": {
|
|
5097
|
-
"
|
|
4379
|
+
"@babel/core": {
|
|
4380
|
+
"version": "7.23.5",
|
|
4381
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
4382
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
4383
|
+
"requires": {
|
|
4384
|
+
"@ampproject/remapping": "^2.2.0",
|
|
4385
|
+
"@babel/code-frame": "^7.23.5",
|
|
4386
|
+
"@babel/generator": "^7.23.5",
|
|
4387
|
+
"@babel/helper-compilation-targets": "^7.22.15",
|
|
4388
|
+
"@babel/helper-module-transforms": "^7.23.3",
|
|
4389
|
+
"@babel/helpers": "^7.23.5",
|
|
4390
|
+
"@babel/parser": "^7.23.5",
|
|
4391
|
+
"@babel/template": "^7.22.15",
|
|
4392
|
+
"@babel/traverse": "^7.23.5",
|
|
4393
|
+
"@babel/types": "^7.23.5",
|
|
4394
|
+
"convert-source-map": "^2.0.0",
|
|
4395
|
+
"debug": "^4.1.0",
|
|
4396
|
+
"gensync": "^1.0.0-beta.2",
|
|
4397
|
+
"json5": "^2.2.3",
|
|
4398
|
+
"semver": "^6.3.1"
|
|
5098
4399
|
}
|
|
5099
4400
|
},
|
|
5100
4401
|
"babel-jest": {
|
|
@@ -5111,40 +4412,10 @@
|
|
|
5111
4412
|
"slash": "^3.0.0"
|
|
5112
4413
|
}
|
|
5113
4414
|
},
|
|
5114
|
-
"
|
|
5115
|
-
"version": "
|
|
5116
|
-
"resolved": "https://registry.npmjs.org/
|
|
5117
|
-
"integrity": "sha512-
|
|
5118
|
-
"requires": {
|
|
5119
|
-
"ansi-styles": "^4.1.0",
|
|
5120
|
-
"supports-color": "^7.1.0"
|
|
5121
|
-
}
|
|
5122
|
-
},
|
|
5123
|
-
"color-convert": {
|
|
5124
|
-
"version": "2.0.1",
|
|
5125
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5126
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5127
|
-
"requires": {
|
|
5128
|
-
"color-name": "~1.1.4"
|
|
5129
|
-
}
|
|
5130
|
-
},
|
|
5131
|
-
"color-name": {
|
|
5132
|
-
"version": "1.1.4",
|
|
5133
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5134
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5135
|
-
},
|
|
5136
|
-
"has-flag": {
|
|
5137
|
-
"version": "4.0.0",
|
|
5138
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5139
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5140
|
-
},
|
|
5141
|
-
"supports-color": {
|
|
5142
|
-
"version": "7.2.0",
|
|
5143
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5144
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5145
|
-
"requires": {
|
|
5146
|
-
"has-flag": "^4.0.0"
|
|
5147
|
-
}
|
|
4415
|
+
"semver": {
|
|
4416
|
+
"version": "6.3.1",
|
|
4417
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
4418
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
|
|
5148
4419
|
}
|
|
5149
4420
|
}
|
|
5150
4421
|
},
|
|
@@ -5157,51 +4428,6 @@
|
|
|
5157
4428
|
"diff-sequences": "^29.6.3",
|
|
5158
4429
|
"jest-get-type": "^29.6.3",
|
|
5159
4430
|
"pretty-format": "^29.7.0"
|
|
5160
|
-
},
|
|
5161
|
-
"dependencies": {
|
|
5162
|
-
"ansi-styles": {
|
|
5163
|
-
"version": "4.3.0",
|
|
5164
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5165
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5166
|
-
"requires": {
|
|
5167
|
-
"color-convert": "^2.0.1"
|
|
5168
|
-
}
|
|
5169
|
-
},
|
|
5170
|
-
"chalk": {
|
|
5171
|
-
"version": "4.1.2",
|
|
5172
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5173
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5174
|
-
"requires": {
|
|
5175
|
-
"ansi-styles": "^4.1.0",
|
|
5176
|
-
"supports-color": "^7.1.0"
|
|
5177
|
-
}
|
|
5178
|
-
},
|
|
5179
|
-
"color-convert": {
|
|
5180
|
-
"version": "2.0.1",
|
|
5181
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5182
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5183
|
-
"requires": {
|
|
5184
|
-
"color-name": "~1.1.4"
|
|
5185
|
-
}
|
|
5186
|
-
},
|
|
5187
|
-
"color-name": {
|
|
5188
|
-
"version": "1.1.4",
|
|
5189
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5190
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5191
|
-
},
|
|
5192
|
-
"has-flag": {
|
|
5193
|
-
"version": "4.0.0",
|
|
5194
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5195
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5196
|
-
},
|
|
5197
|
-
"supports-color": {
|
|
5198
|
-
"version": "7.2.0",
|
|
5199
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5200
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5201
|
-
"requires": {
|
|
5202
|
-
"has-flag": "^4.0.0"
|
|
5203
|
-
}
|
|
5204
|
-
}
|
|
5205
4431
|
}
|
|
5206
4432
|
},
|
|
5207
4433
|
"jest-docblock": {
|
|
@@ -5222,51 +4448,6 @@
|
|
|
5222
4448
|
"jest-get-type": "^29.6.3",
|
|
5223
4449
|
"jest-util": "^29.7.0",
|
|
5224
4450
|
"pretty-format": "^29.7.0"
|
|
5225
|
-
},
|
|
5226
|
-
"dependencies": {
|
|
5227
|
-
"ansi-styles": {
|
|
5228
|
-
"version": "4.3.0",
|
|
5229
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5230
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5231
|
-
"requires": {
|
|
5232
|
-
"color-convert": "^2.0.1"
|
|
5233
|
-
}
|
|
5234
|
-
},
|
|
5235
|
-
"chalk": {
|
|
5236
|
-
"version": "4.1.2",
|
|
5237
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5238
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5239
|
-
"requires": {
|
|
5240
|
-
"ansi-styles": "^4.1.0",
|
|
5241
|
-
"supports-color": "^7.1.0"
|
|
5242
|
-
}
|
|
5243
|
-
},
|
|
5244
|
-
"color-convert": {
|
|
5245
|
-
"version": "2.0.1",
|
|
5246
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5247
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5248
|
-
"requires": {
|
|
5249
|
-
"color-name": "~1.1.4"
|
|
5250
|
-
}
|
|
5251
|
-
},
|
|
5252
|
-
"color-name": {
|
|
5253
|
-
"version": "1.1.4",
|
|
5254
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5255
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5256
|
-
},
|
|
5257
|
-
"has-flag": {
|
|
5258
|
-
"version": "4.0.0",
|
|
5259
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5260
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5261
|
-
},
|
|
5262
|
-
"supports-color": {
|
|
5263
|
-
"version": "7.2.0",
|
|
5264
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5265
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5266
|
-
"requires": {
|
|
5267
|
-
"has-flag": "^4.0.0"
|
|
5268
|
-
}
|
|
5269
|
-
}
|
|
5270
4451
|
}
|
|
5271
4452
|
},
|
|
5272
4453
|
"jest-environment-jsdom": {
|
|
@@ -5339,51 +4520,6 @@
|
|
|
5339
4520
|
"jest-diff": "^29.7.0",
|
|
5340
4521
|
"jest-get-type": "^29.6.3",
|
|
5341
4522
|
"pretty-format": "^29.7.0"
|
|
5342
|
-
},
|
|
5343
|
-
"dependencies": {
|
|
5344
|
-
"ansi-styles": {
|
|
5345
|
-
"version": "4.3.0",
|
|
5346
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5347
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5348
|
-
"requires": {
|
|
5349
|
-
"color-convert": "^2.0.1"
|
|
5350
|
-
}
|
|
5351
|
-
},
|
|
5352
|
-
"chalk": {
|
|
5353
|
-
"version": "4.1.2",
|
|
5354
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5355
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5356
|
-
"requires": {
|
|
5357
|
-
"ansi-styles": "^4.1.0",
|
|
5358
|
-
"supports-color": "^7.1.0"
|
|
5359
|
-
}
|
|
5360
|
-
},
|
|
5361
|
-
"color-convert": {
|
|
5362
|
-
"version": "2.0.1",
|
|
5363
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5364
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5365
|
-
"requires": {
|
|
5366
|
-
"color-name": "~1.1.4"
|
|
5367
|
-
}
|
|
5368
|
-
},
|
|
5369
|
-
"color-name": {
|
|
5370
|
-
"version": "1.1.4",
|
|
5371
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5372
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5373
|
-
},
|
|
5374
|
-
"has-flag": {
|
|
5375
|
-
"version": "4.0.0",
|
|
5376
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5377
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5378
|
-
},
|
|
5379
|
-
"supports-color": {
|
|
5380
|
-
"version": "7.2.0",
|
|
5381
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5382
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5383
|
-
"requires": {
|
|
5384
|
-
"has-flag": "^4.0.0"
|
|
5385
|
-
}
|
|
5386
|
-
}
|
|
5387
4523
|
}
|
|
5388
4524
|
},
|
|
5389
4525
|
"jest-message-util": {
|
|
@@ -5400,51 +4536,6 @@
|
|
|
5400
4536
|
"pretty-format": "^29.7.0",
|
|
5401
4537
|
"slash": "^3.0.0",
|
|
5402
4538
|
"stack-utils": "^2.0.3"
|
|
5403
|
-
},
|
|
5404
|
-
"dependencies": {
|
|
5405
|
-
"ansi-styles": {
|
|
5406
|
-
"version": "4.3.0",
|
|
5407
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5408
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5409
|
-
"requires": {
|
|
5410
|
-
"color-convert": "^2.0.1"
|
|
5411
|
-
}
|
|
5412
|
-
},
|
|
5413
|
-
"chalk": {
|
|
5414
|
-
"version": "4.1.2",
|
|
5415
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5416
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5417
|
-
"requires": {
|
|
5418
|
-
"ansi-styles": "^4.1.0",
|
|
5419
|
-
"supports-color": "^7.1.0"
|
|
5420
|
-
}
|
|
5421
|
-
},
|
|
5422
|
-
"color-convert": {
|
|
5423
|
-
"version": "2.0.1",
|
|
5424
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5425
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5426
|
-
"requires": {
|
|
5427
|
-
"color-name": "~1.1.4"
|
|
5428
|
-
}
|
|
5429
|
-
},
|
|
5430
|
-
"color-name": {
|
|
5431
|
-
"version": "1.1.4",
|
|
5432
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5433
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5434
|
-
},
|
|
5435
|
-
"has-flag": {
|
|
5436
|
-
"version": "4.0.0",
|
|
5437
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5438
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5439
|
-
},
|
|
5440
|
-
"supports-color": {
|
|
5441
|
-
"version": "7.2.0",
|
|
5442
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5443
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5444
|
-
"requires": {
|
|
5445
|
-
"has-flag": "^4.0.0"
|
|
5446
|
-
}
|
|
5447
|
-
}
|
|
5448
4539
|
}
|
|
5449
4540
|
},
|
|
5450
4541
|
"jest-mock": {
|
|
@@ -5481,51 +4572,6 @@
|
|
|
5481
4572
|
"resolve": "^1.20.0",
|
|
5482
4573
|
"resolve.exports": "^2.0.0",
|
|
5483
4574
|
"slash": "^3.0.0"
|
|
5484
|
-
},
|
|
5485
|
-
"dependencies": {
|
|
5486
|
-
"ansi-styles": {
|
|
5487
|
-
"version": "4.3.0",
|
|
5488
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5489
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5490
|
-
"requires": {
|
|
5491
|
-
"color-convert": "^2.0.1"
|
|
5492
|
-
}
|
|
5493
|
-
},
|
|
5494
|
-
"chalk": {
|
|
5495
|
-
"version": "4.1.2",
|
|
5496
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5497
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5498
|
-
"requires": {
|
|
5499
|
-
"ansi-styles": "^4.1.0",
|
|
5500
|
-
"supports-color": "^7.1.0"
|
|
5501
|
-
}
|
|
5502
|
-
},
|
|
5503
|
-
"color-convert": {
|
|
5504
|
-
"version": "2.0.1",
|
|
5505
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5506
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5507
|
-
"requires": {
|
|
5508
|
-
"color-name": "~1.1.4"
|
|
5509
|
-
}
|
|
5510
|
-
},
|
|
5511
|
-
"color-name": {
|
|
5512
|
-
"version": "1.1.4",
|
|
5513
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5514
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5515
|
-
},
|
|
5516
|
-
"has-flag": {
|
|
5517
|
-
"version": "4.0.0",
|
|
5518
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5519
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5520
|
-
},
|
|
5521
|
-
"supports-color": {
|
|
5522
|
-
"version": "7.2.0",
|
|
5523
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5524
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5525
|
-
"requires": {
|
|
5526
|
-
"has-flag": "^4.0.0"
|
|
5527
|
-
}
|
|
5528
|
-
}
|
|
5529
4575
|
}
|
|
5530
4576
|
},
|
|
5531
4577
|
"jest-resolve-dependencies": {
|
|
@@ -5565,41 +4611,6 @@
|
|
|
5565
4611
|
"source-map-support": "0.5.13"
|
|
5566
4612
|
},
|
|
5567
4613
|
"dependencies": {
|
|
5568
|
-
"ansi-styles": {
|
|
5569
|
-
"version": "4.3.0",
|
|
5570
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5571
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5572
|
-
"requires": {
|
|
5573
|
-
"color-convert": "^2.0.1"
|
|
5574
|
-
}
|
|
5575
|
-
},
|
|
5576
|
-
"chalk": {
|
|
5577
|
-
"version": "4.1.2",
|
|
5578
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5579
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5580
|
-
"requires": {
|
|
5581
|
-
"ansi-styles": "^4.1.0",
|
|
5582
|
-
"supports-color": "^7.1.0"
|
|
5583
|
-
}
|
|
5584
|
-
},
|
|
5585
|
-
"color-convert": {
|
|
5586
|
-
"version": "2.0.1",
|
|
5587
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5588
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5589
|
-
"requires": {
|
|
5590
|
-
"color-name": "~1.1.4"
|
|
5591
|
-
}
|
|
5592
|
-
},
|
|
5593
|
-
"color-name": {
|
|
5594
|
-
"version": "1.1.4",
|
|
5595
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5596
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5597
|
-
},
|
|
5598
|
-
"has-flag": {
|
|
5599
|
-
"version": "4.0.0",
|
|
5600
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5601
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5602
|
-
},
|
|
5603
4614
|
"p-limit": {
|
|
5604
4615
|
"version": "3.1.0",
|
|
5605
4616
|
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
|
|
@@ -5608,12 +4619,13 @@
|
|
|
5608
4619
|
"yocto-queue": "^0.1.0"
|
|
5609
4620
|
}
|
|
5610
4621
|
},
|
|
5611
|
-
"
|
|
5612
|
-
"version": "
|
|
5613
|
-
"resolved": "https://registry.npmjs.org/
|
|
5614
|
-
"integrity": "sha512-
|
|
4622
|
+
"source-map-support": {
|
|
4623
|
+
"version": "0.5.13",
|
|
4624
|
+
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz",
|
|
4625
|
+
"integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==",
|
|
5615
4626
|
"requires": {
|
|
5616
|
-
"
|
|
4627
|
+
"buffer-from": "^1.0.0",
|
|
4628
|
+
"source-map": "^0.6.0"
|
|
5617
4629
|
}
|
|
5618
4630
|
}
|
|
5619
4631
|
}
|
|
@@ -5632,64 +4644,19 @@
|
|
|
5632
4644
|
"@jest/types": "^29.6.3",
|
|
5633
4645
|
"@types/node": "*",
|
|
5634
4646
|
"chalk": "^4.0.0",
|
|
5635
|
-
"cjs-module-lexer": "^1.0.0",
|
|
5636
|
-
"collect-v8-coverage": "^1.0.0",
|
|
5637
|
-
"glob": "^7.1.3",
|
|
5638
|
-
"graceful-fs": "^4.2.9",
|
|
5639
|
-
"jest-haste-map": "^29.7.0",
|
|
5640
|
-
"jest-message-util": "^29.7.0",
|
|
5641
|
-
"jest-mock": "^29.7.0",
|
|
5642
|
-
"jest-regex-util": "^29.6.3",
|
|
5643
|
-
"jest-resolve": "^29.7.0",
|
|
5644
|
-
"jest-snapshot": "^29.7.0",
|
|
5645
|
-
"jest-util": "^29.7.0",
|
|
5646
|
-
"slash": "^3.0.0",
|
|
5647
|
-
"strip-bom": "^4.0.0"
|
|
5648
|
-
},
|
|
5649
|
-
"dependencies": {
|
|
5650
|
-
"ansi-styles": {
|
|
5651
|
-
"version": "4.3.0",
|
|
5652
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5653
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5654
|
-
"requires": {
|
|
5655
|
-
"color-convert": "^2.0.1"
|
|
5656
|
-
}
|
|
5657
|
-
},
|
|
5658
|
-
"chalk": {
|
|
5659
|
-
"version": "4.1.2",
|
|
5660
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5661
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5662
|
-
"requires": {
|
|
5663
|
-
"ansi-styles": "^4.1.0",
|
|
5664
|
-
"supports-color": "^7.1.0"
|
|
5665
|
-
}
|
|
5666
|
-
},
|
|
5667
|
-
"color-convert": {
|
|
5668
|
-
"version": "2.0.1",
|
|
5669
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5670
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5671
|
-
"requires": {
|
|
5672
|
-
"color-name": "~1.1.4"
|
|
5673
|
-
}
|
|
5674
|
-
},
|
|
5675
|
-
"color-name": {
|
|
5676
|
-
"version": "1.1.4",
|
|
5677
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5678
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5679
|
-
},
|
|
5680
|
-
"has-flag": {
|
|
5681
|
-
"version": "4.0.0",
|
|
5682
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5683
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5684
|
-
},
|
|
5685
|
-
"supports-color": {
|
|
5686
|
-
"version": "7.2.0",
|
|
5687
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5688
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5689
|
-
"requires": {
|
|
5690
|
-
"has-flag": "^4.0.0"
|
|
5691
|
-
}
|
|
5692
|
-
}
|
|
4647
|
+
"cjs-module-lexer": "^1.0.0",
|
|
4648
|
+
"collect-v8-coverage": "^1.0.0",
|
|
4649
|
+
"glob": "^7.1.3",
|
|
4650
|
+
"graceful-fs": "^4.2.9",
|
|
4651
|
+
"jest-haste-map": "^29.7.0",
|
|
4652
|
+
"jest-message-util": "^29.7.0",
|
|
4653
|
+
"jest-mock": "^29.7.0",
|
|
4654
|
+
"jest-regex-util": "^29.6.3",
|
|
4655
|
+
"jest-resolve": "^29.7.0",
|
|
4656
|
+
"jest-snapshot": "^29.7.0",
|
|
4657
|
+
"jest-util": "^29.7.0",
|
|
4658
|
+
"slash": "^3.0.0",
|
|
4659
|
+
"strip-bom": "^4.0.0"
|
|
5693
4660
|
}
|
|
5694
4661
|
},
|
|
5695
4662
|
"jest-snapshot": {
|
|
@@ -5719,47 +4686,33 @@
|
|
|
5719
4686
|
"semver": "^7.5.3"
|
|
5720
4687
|
},
|
|
5721
4688
|
"dependencies": {
|
|
5722
|
-
"
|
|
5723
|
-
"version": "
|
|
5724
|
-
"resolved": "https://registry.npmjs.org/
|
|
5725
|
-
"integrity": "sha512-
|
|
5726
|
-
"requires": {
|
|
5727
|
-
"
|
|
5728
|
-
|
|
5729
|
-
|
|
5730
|
-
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
|
|
5735
|
-
"
|
|
5736
|
-
"
|
|
5737
|
-
|
|
5738
|
-
|
|
5739
|
-
|
|
5740
|
-
|
|
5741
|
-
|
|
5742
|
-
|
|
5743
|
-
"
|
|
5744
|
-
"
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5750
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5751
|
-
},
|
|
5752
|
-
"has-flag": {
|
|
5753
|
-
"version": "4.0.0",
|
|
5754
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5755
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5756
|
-
},
|
|
5757
|
-
"lru-cache": {
|
|
5758
|
-
"version": "6.0.0",
|
|
5759
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
5760
|
-
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
5761
|
-
"requires": {
|
|
5762
|
-
"yallist": "^4.0.0"
|
|
4689
|
+
"@babel/core": {
|
|
4690
|
+
"version": "7.23.5",
|
|
4691
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz",
|
|
4692
|
+
"integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==",
|
|
4693
|
+
"requires": {
|
|
4694
|
+
"@ampproject/remapping": "^2.2.0",
|
|
4695
|
+
"@babel/code-frame": "^7.23.5",
|
|
4696
|
+
"@babel/generator": "^7.23.5",
|
|
4697
|
+
"@babel/helper-compilation-targets": "^7.22.15",
|
|
4698
|
+
"@babel/helper-module-transforms": "^7.23.3",
|
|
4699
|
+
"@babel/helpers": "^7.23.5",
|
|
4700
|
+
"@babel/parser": "^7.23.5",
|
|
4701
|
+
"@babel/template": "^7.22.15",
|
|
4702
|
+
"@babel/traverse": "^7.23.5",
|
|
4703
|
+
"@babel/types": "^7.23.5",
|
|
4704
|
+
"convert-source-map": "^2.0.0",
|
|
4705
|
+
"debug": "^4.1.0",
|
|
4706
|
+
"gensync": "^1.0.0-beta.2",
|
|
4707
|
+
"json5": "^2.2.3",
|
|
4708
|
+
"semver": "^6.3.1"
|
|
4709
|
+
},
|
|
4710
|
+
"dependencies": {
|
|
4711
|
+
"semver": {
|
|
4712
|
+
"version": "6.3.1",
|
|
4713
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
4714
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
|
|
4715
|
+
}
|
|
5763
4716
|
}
|
|
5764
4717
|
},
|
|
5765
4718
|
"semver": {
|
|
@@ -5769,19 +4722,6 @@
|
|
|
5769
4722
|
"requires": {
|
|
5770
4723
|
"lru-cache": "^6.0.0"
|
|
5771
4724
|
}
|
|
5772
|
-
},
|
|
5773
|
-
"supports-color": {
|
|
5774
|
-
"version": "7.2.0",
|
|
5775
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5776
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5777
|
-
"requires": {
|
|
5778
|
-
"has-flag": "^4.0.0"
|
|
5779
|
-
}
|
|
5780
|
-
},
|
|
5781
|
-
"yallist": {
|
|
5782
|
-
"version": "4.0.0",
|
|
5783
|
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
5784
|
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
5785
4725
|
}
|
|
5786
4726
|
}
|
|
5787
4727
|
},
|
|
@@ -5796,51 +4736,6 @@
|
|
|
5796
4736
|
"ci-info": "^3.2.0",
|
|
5797
4737
|
"graceful-fs": "^4.2.9",
|
|
5798
4738
|
"picomatch": "^2.2.3"
|
|
5799
|
-
},
|
|
5800
|
-
"dependencies": {
|
|
5801
|
-
"ansi-styles": {
|
|
5802
|
-
"version": "4.3.0",
|
|
5803
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5804
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5805
|
-
"requires": {
|
|
5806
|
-
"color-convert": "^2.0.1"
|
|
5807
|
-
}
|
|
5808
|
-
},
|
|
5809
|
-
"chalk": {
|
|
5810
|
-
"version": "4.1.2",
|
|
5811
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5812
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5813
|
-
"requires": {
|
|
5814
|
-
"ansi-styles": "^4.1.0",
|
|
5815
|
-
"supports-color": "^7.1.0"
|
|
5816
|
-
}
|
|
5817
|
-
},
|
|
5818
|
-
"color-convert": {
|
|
5819
|
-
"version": "2.0.1",
|
|
5820
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5821
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5822
|
-
"requires": {
|
|
5823
|
-
"color-name": "~1.1.4"
|
|
5824
|
-
}
|
|
5825
|
-
},
|
|
5826
|
-
"color-name": {
|
|
5827
|
-
"version": "1.1.4",
|
|
5828
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5829
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5830
|
-
},
|
|
5831
|
-
"has-flag": {
|
|
5832
|
-
"version": "4.0.0",
|
|
5833
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5834
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5835
|
-
},
|
|
5836
|
-
"supports-color": {
|
|
5837
|
-
"version": "7.2.0",
|
|
5838
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5839
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5840
|
-
"requires": {
|
|
5841
|
-
"has-flag": "^4.0.0"
|
|
5842
|
-
}
|
|
5843
|
-
}
|
|
5844
4739
|
}
|
|
5845
4740
|
},
|
|
5846
4741
|
"jest-validate": {
|
|
@@ -5856,53 +4751,10 @@
|
|
|
5856
4751
|
"pretty-format": "^29.7.0"
|
|
5857
4752
|
},
|
|
5858
4753
|
"dependencies": {
|
|
5859
|
-
"ansi-styles": {
|
|
5860
|
-
"version": "4.3.0",
|
|
5861
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5862
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5863
|
-
"requires": {
|
|
5864
|
-
"color-convert": "^2.0.1"
|
|
5865
|
-
}
|
|
5866
|
-
},
|
|
5867
4754
|
"camelcase": {
|
|
5868
4755
|
"version": "6.3.0",
|
|
5869
4756
|
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
|
|
5870
4757
|
"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
|
|
5871
|
-
},
|
|
5872
|
-
"chalk": {
|
|
5873
|
-
"version": "4.1.2",
|
|
5874
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5875
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5876
|
-
"requires": {
|
|
5877
|
-
"ansi-styles": "^4.1.0",
|
|
5878
|
-
"supports-color": "^7.1.0"
|
|
5879
|
-
}
|
|
5880
|
-
},
|
|
5881
|
-
"color-convert": {
|
|
5882
|
-
"version": "2.0.1",
|
|
5883
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5884
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5885
|
-
"requires": {
|
|
5886
|
-
"color-name": "~1.1.4"
|
|
5887
|
-
}
|
|
5888
|
-
},
|
|
5889
|
-
"color-name": {
|
|
5890
|
-
"version": "1.1.4",
|
|
5891
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5892
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5893
|
-
},
|
|
5894
|
-
"has-flag": {
|
|
5895
|
-
"version": "4.0.0",
|
|
5896
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5897
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5898
|
-
},
|
|
5899
|
-
"supports-color": {
|
|
5900
|
-
"version": "7.2.0",
|
|
5901
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5902
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5903
|
-
"requires": {
|
|
5904
|
-
"has-flag": "^4.0.0"
|
|
5905
|
-
}
|
|
5906
4758
|
}
|
|
5907
4759
|
}
|
|
5908
4760
|
},
|
|
@@ -5919,51 +4771,6 @@
|
|
|
5919
4771
|
"emittery": "^0.13.1",
|
|
5920
4772
|
"jest-util": "^29.7.0",
|
|
5921
4773
|
"string-length": "^4.0.1"
|
|
5922
|
-
},
|
|
5923
|
-
"dependencies": {
|
|
5924
|
-
"ansi-styles": {
|
|
5925
|
-
"version": "4.3.0",
|
|
5926
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
5927
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5928
|
-
"requires": {
|
|
5929
|
-
"color-convert": "^2.0.1"
|
|
5930
|
-
}
|
|
5931
|
-
},
|
|
5932
|
-
"chalk": {
|
|
5933
|
-
"version": "4.1.2",
|
|
5934
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
5935
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5936
|
-
"requires": {
|
|
5937
|
-
"ansi-styles": "^4.1.0",
|
|
5938
|
-
"supports-color": "^7.1.0"
|
|
5939
|
-
}
|
|
5940
|
-
},
|
|
5941
|
-
"color-convert": {
|
|
5942
|
-
"version": "2.0.1",
|
|
5943
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
5944
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5945
|
-
"requires": {
|
|
5946
|
-
"color-name": "~1.1.4"
|
|
5947
|
-
}
|
|
5948
|
-
},
|
|
5949
|
-
"color-name": {
|
|
5950
|
-
"version": "1.1.4",
|
|
5951
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
5952
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
5953
|
-
},
|
|
5954
|
-
"has-flag": {
|
|
5955
|
-
"version": "4.0.0",
|
|
5956
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5957
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5958
|
-
},
|
|
5959
|
-
"supports-color": {
|
|
5960
|
-
"version": "7.2.0",
|
|
5961
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
5962
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
5963
|
-
"requires": {
|
|
5964
|
-
"has-flag": "^4.0.0"
|
|
5965
|
-
}
|
|
5966
|
-
}
|
|
5967
4774
|
}
|
|
5968
4775
|
},
|
|
5969
4776
|
"jest-worker": {
|
|
@@ -5975,21 +4782,6 @@
|
|
|
5975
4782
|
"jest-util": "^29.7.0",
|
|
5976
4783
|
"merge-stream": "^2.0.0",
|
|
5977
4784
|
"supports-color": "^8.0.0"
|
|
5978
|
-
},
|
|
5979
|
-
"dependencies": {
|
|
5980
|
-
"has-flag": {
|
|
5981
|
-
"version": "4.0.0",
|
|
5982
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
5983
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
5984
|
-
},
|
|
5985
|
-
"supports-color": {
|
|
5986
|
-
"version": "8.1.1",
|
|
5987
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
5988
|
-
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
|
5989
|
-
"requires": {
|
|
5990
|
-
"has-flag": "^4.0.0"
|
|
5991
|
-
}
|
|
5992
|
-
}
|
|
5993
4785
|
}
|
|
5994
4786
|
},
|
|
5995
4787
|
"js-levenshtein": {
|
|
@@ -6129,51 +4921,6 @@
|
|
|
6129
4921
|
"requires": {
|
|
6130
4922
|
"chalk": "^4.1.0",
|
|
6131
4923
|
"is-unicode-supported": "^0.1.0"
|
|
6132
|
-
},
|
|
6133
|
-
"dependencies": {
|
|
6134
|
-
"ansi-styles": {
|
|
6135
|
-
"version": "4.3.0",
|
|
6136
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
6137
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
6138
|
-
"requires": {
|
|
6139
|
-
"color-convert": "^2.0.1"
|
|
6140
|
-
}
|
|
6141
|
-
},
|
|
6142
|
-
"chalk": {
|
|
6143
|
-
"version": "4.1.2",
|
|
6144
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
6145
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
6146
|
-
"requires": {
|
|
6147
|
-
"ansi-styles": "^4.1.0",
|
|
6148
|
-
"supports-color": "^7.1.0"
|
|
6149
|
-
}
|
|
6150
|
-
},
|
|
6151
|
-
"color-convert": {
|
|
6152
|
-
"version": "2.0.1",
|
|
6153
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
6154
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
6155
|
-
"requires": {
|
|
6156
|
-
"color-name": "~1.1.4"
|
|
6157
|
-
}
|
|
6158
|
-
},
|
|
6159
|
-
"color-name": {
|
|
6160
|
-
"version": "1.1.4",
|
|
6161
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
6162
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
6163
|
-
},
|
|
6164
|
-
"has-flag": {
|
|
6165
|
-
"version": "4.0.0",
|
|
6166
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
6167
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
6168
|
-
},
|
|
6169
|
-
"supports-color": {
|
|
6170
|
-
"version": "7.2.0",
|
|
6171
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
6172
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
6173
|
-
"requires": {
|
|
6174
|
-
"has-flag": "^4.0.0"
|
|
6175
|
-
}
|
|
6176
|
-
}
|
|
6177
4924
|
}
|
|
6178
4925
|
},
|
|
6179
4926
|
"lower-case": {
|
|
@@ -6185,11 +4932,11 @@
|
|
|
6185
4932
|
}
|
|
6186
4933
|
},
|
|
6187
4934
|
"lru-cache": {
|
|
6188
|
-
"version": "
|
|
6189
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-
|
|
6190
|
-
"integrity": "sha512-
|
|
4935
|
+
"version": "6.0.0",
|
|
4936
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
4937
|
+
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
6191
4938
|
"requires": {
|
|
6192
|
-
"yallist": "^
|
|
4939
|
+
"yallist": "^4.0.0"
|
|
6193
4940
|
}
|
|
6194
4941
|
},
|
|
6195
4942
|
"luxon": {
|
|
@@ -6210,14 +4957,6 @@
|
|
|
6210
4957
|
"semver": "^7.5.3"
|
|
6211
4958
|
},
|
|
6212
4959
|
"dependencies": {
|
|
6213
|
-
"lru-cache": {
|
|
6214
|
-
"version": "6.0.0",
|
|
6215
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
6216
|
-
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
6217
|
-
"requires": {
|
|
6218
|
-
"yallist": "^4.0.0"
|
|
6219
|
-
}
|
|
6220
|
-
},
|
|
6221
4960
|
"semver": {
|
|
6222
4961
|
"version": "7.5.4",
|
|
6223
4962
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
|
|
@@ -6225,11 +4964,6 @@
|
|
|
6225
4964
|
"requires": {
|
|
6226
4965
|
"lru-cache": "^6.0.0"
|
|
6227
4966
|
}
|
|
6228
|
-
},
|
|
6229
|
-
"yallist": {
|
|
6230
|
-
"version": "4.0.0",
|
|
6231
|
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
6232
|
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
6233
4967
|
}
|
|
6234
4968
|
}
|
|
6235
4969
|
},
|
|
@@ -6327,14 +5061,6 @@
|
|
|
6327
5061
|
"yargs": "^17.3.1"
|
|
6328
5062
|
},
|
|
6329
5063
|
"dependencies": {
|
|
6330
|
-
"ansi-styles": {
|
|
6331
|
-
"version": "4.3.0",
|
|
6332
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
6333
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
6334
|
-
"requires": {
|
|
6335
|
-
"color-convert": "^2.0.1"
|
|
6336
|
-
}
|
|
6337
|
-
},
|
|
6338
5064
|
"chalk": {
|
|
6339
5065
|
"version": "4.1.1",
|
|
6340
5066
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz",
|
|
@@ -6344,24 +5070,6 @@
|
|
|
6344
5070
|
"supports-color": "^7.1.0"
|
|
6345
5071
|
}
|
|
6346
5072
|
},
|
|
6347
|
-
"color-convert": {
|
|
6348
|
-
"version": "2.0.1",
|
|
6349
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
6350
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
6351
|
-
"requires": {
|
|
6352
|
-
"color-name": "~1.1.4"
|
|
6353
|
-
}
|
|
6354
|
-
},
|
|
6355
|
-
"color-name": {
|
|
6356
|
-
"version": "1.1.4",
|
|
6357
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
6358
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
6359
|
-
},
|
|
6360
|
-
"has-flag": {
|
|
6361
|
-
"version": "4.0.0",
|
|
6362
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
6363
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
6364
|
-
},
|
|
6365
5073
|
"supports-color": {
|
|
6366
5074
|
"version": "7.2.0",
|
|
6367
5075
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
@@ -6492,9 +5200,9 @@
|
|
|
6492
5200
|
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
|
|
6493
5201
|
},
|
|
6494
5202
|
"object-inspect": {
|
|
6495
|
-
"version": "1.
|
|
6496
|
-
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.
|
|
6497
|
-
"integrity": "sha512-
|
|
5203
|
+
"version": "1.13.1",
|
|
5204
|
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz",
|
|
5205
|
+
"integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==",
|
|
6498
5206
|
"dev": true
|
|
6499
5207
|
},
|
|
6500
5208
|
"object-keys": {
|
|
@@ -6558,51 +5266,6 @@
|
|
|
6558
5266
|
"log-symbols": "^4.1.0",
|
|
6559
5267
|
"strip-ansi": "^6.0.0",
|
|
6560
5268
|
"wcwidth": "^1.0.1"
|
|
6561
|
-
},
|
|
6562
|
-
"dependencies": {
|
|
6563
|
-
"ansi-styles": {
|
|
6564
|
-
"version": "4.3.0",
|
|
6565
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
6566
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
6567
|
-
"requires": {
|
|
6568
|
-
"color-convert": "^2.0.1"
|
|
6569
|
-
}
|
|
6570
|
-
},
|
|
6571
|
-
"chalk": {
|
|
6572
|
-
"version": "4.1.2",
|
|
6573
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
6574
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
6575
|
-
"requires": {
|
|
6576
|
-
"ansi-styles": "^4.1.0",
|
|
6577
|
-
"supports-color": "^7.1.0"
|
|
6578
|
-
}
|
|
6579
|
-
},
|
|
6580
|
-
"color-convert": {
|
|
6581
|
-
"version": "2.0.1",
|
|
6582
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
6583
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
6584
|
-
"requires": {
|
|
6585
|
-
"color-name": "~1.1.4"
|
|
6586
|
-
}
|
|
6587
|
-
},
|
|
6588
|
-
"color-name": {
|
|
6589
|
-
"version": "1.1.4",
|
|
6590
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
6591
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
6592
|
-
},
|
|
6593
|
-
"has-flag": {
|
|
6594
|
-
"version": "4.0.0",
|
|
6595
|
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
6596
|
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
|
6597
|
-
},
|
|
6598
|
-
"supports-color": {
|
|
6599
|
-
"version": "7.2.0",
|
|
6600
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
6601
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
6602
|
-
"requires": {
|
|
6603
|
-
"has-flag": "^4.0.0"
|
|
6604
|
-
}
|
|
6605
|
-
}
|
|
6606
5269
|
}
|
|
6607
5270
|
},
|
|
6608
5271
|
"os-tmpdir": {
|
|
@@ -6723,10 +5386,19 @@
|
|
|
6723
5386
|
"find-up": "^4.0.0"
|
|
6724
5387
|
}
|
|
6725
5388
|
},
|
|
5389
|
+
"playwright": {
|
|
5390
|
+
"version": "1.40.1",
|
|
5391
|
+
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.40.1.tgz",
|
|
5392
|
+
"integrity": "sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==",
|
|
5393
|
+
"requires": {
|
|
5394
|
+
"fsevents": "2.3.2",
|
|
5395
|
+
"playwright-core": "1.40.1"
|
|
5396
|
+
}
|
|
5397
|
+
},
|
|
6726
5398
|
"playwright-core": {
|
|
6727
|
-
"version": "1.
|
|
6728
|
-
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.
|
|
6729
|
-
"integrity": "sha512-+
|
|
5399
|
+
"version": "1.40.1",
|
|
5400
|
+
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.40.1.tgz",
|
|
5401
|
+
"integrity": "sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ=="
|
|
6730
5402
|
},
|
|
6731
5403
|
"pretty-format": {
|
|
6732
5404
|
"version": "29.7.0",
|
|
@@ -6770,9 +5442,9 @@
|
|
|
6770
5442
|
"integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="
|
|
6771
5443
|
},
|
|
6772
5444
|
"punycode": {
|
|
6773
|
-
"version": "2.3.
|
|
6774
|
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.
|
|
6775
|
-
"integrity": "sha512-
|
|
5445
|
+
"version": "2.3.1",
|
|
5446
|
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
5447
|
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="
|
|
6776
5448
|
},
|
|
6777
5449
|
"pure-rand": {
|
|
6778
5450
|
"version": "6.0.4",
|
|
@@ -6795,6 +5467,16 @@
|
|
|
6795
5467
|
"integrity": "sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==",
|
|
6796
5468
|
"requires": {
|
|
6797
5469
|
"@babel/runtime": "^7.12.5"
|
|
5470
|
+
},
|
|
5471
|
+
"dependencies": {
|
|
5472
|
+
"@babel/runtime": {
|
|
5473
|
+
"version": "7.23.5",
|
|
5474
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
5475
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
5476
|
+
"requires": {
|
|
5477
|
+
"regenerator-runtime": "^0.14.0"
|
|
5478
|
+
}
|
|
5479
|
+
}
|
|
6798
5480
|
}
|
|
6799
5481
|
},
|
|
6800
5482
|
"react-is": {
|
|
@@ -6841,9 +5523,9 @@
|
|
|
6841
5523
|
"dev": true
|
|
6842
5524
|
},
|
|
6843
5525
|
"regenerate-unicode-properties": {
|
|
6844
|
-
"version": "10.1.
|
|
6845
|
-
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.
|
|
6846
|
-
"integrity": "sha512-
|
|
5526
|
+
"version": "10.1.1",
|
|
5527
|
+
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz",
|
|
5528
|
+
"integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==",
|
|
6847
5529
|
"dev": true,
|
|
6848
5530
|
"requires": {
|
|
6849
5531
|
"regenerate": "^1.4.2"
|
|
@@ -6934,9 +5616,9 @@
|
|
|
6934
5616
|
"integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
|
|
6935
5617
|
},
|
|
6936
5618
|
"resolve": {
|
|
6937
|
-
"version": "1.22.
|
|
6938
|
-
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.
|
|
6939
|
-
"integrity": "sha512-
|
|
5619
|
+
"version": "1.22.8",
|
|
5620
|
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
|
|
5621
|
+
"integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
|
|
6940
5622
|
"requires": {
|
|
6941
5623
|
"is-core-module": "^2.13.0",
|
|
6942
5624
|
"path-parse": "^1.0.7",
|
|
@@ -7059,15 +5741,29 @@
|
|
|
7059
5741
|
"integrity": "sha512-34EQV6AAHQGhoc0tn/96a9Fsi6v2xdqe/dMUwljGRaFOzR3EgRmECvD0O8vi8X+/uQ50LGHfkNu/Eue5TPKZkQ=="
|
|
7060
5742
|
},
|
|
7061
5743
|
"semver": {
|
|
7062
|
-
"version": "
|
|
7063
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-
|
|
7064
|
-
"integrity": "sha512-
|
|
5744
|
+
"version": "7.3.8",
|
|
5745
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
|
|
5746
|
+
"integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
|
|
5747
|
+
"requires": {
|
|
5748
|
+
"lru-cache": "^6.0.0"
|
|
5749
|
+
}
|
|
7065
5750
|
},
|
|
7066
5751
|
"set-cookie-parser": {
|
|
7067
5752
|
"version": "2.6.0",
|
|
7068
5753
|
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz",
|
|
7069
5754
|
"integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ=="
|
|
7070
5755
|
},
|
|
5756
|
+
"set-function-length": {
|
|
5757
|
+
"version": "1.1.1",
|
|
5758
|
+
"resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz",
|
|
5759
|
+
"integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==",
|
|
5760
|
+
"requires": {
|
|
5761
|
+
"define-data-property": "^1.1.1",
|
|
5762
|
+
"get-intrinsic": "^1.2.1",
|
|
5763
|
+
"gopd": "^1.0.1",
|
|
5764
|
+
"has-property-descriptors": "^1.0.0"
|
|
5765
|
+
}
|
|
5766
|
+
},
|
|
7071
5767
|
"set-function-name": {
|
|
7072
5768
|
"version": "2.0.1",
|
|
7073
5769
|
"resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz",
|
|
@@ -7142,9 +5838,9 @@
|
|
|
7142
5838
|
}
|
|
7143
5839
|
},
|
|
7144
5840
|
"source-map-support": {
|
|
7145
|
-
"version": "0.5.
|
|
7146
|
-
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.
|
|
7147
|
-
"integrity": "sha512-
|
|
5841
|
+
"version": "0.5.21",
|
|
5842
|
+
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
|
|
5843
|
+
"integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
|
|
7148
5844
|
"requires": {
|
|
7149
5845
|
"buffer-from": "^1.0.0",
|
|
7150
5846
|
"source-map": "^0.6.0"
|
|
@@ -7277,11 +5973,11 @@
|
|
|
7277
5973
|
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="
|
|
7278
5974
|
},
|
|
7279
5975
|
"supports-color": {
|
|
7280
|
-
"version": "
|
|
7281
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-
|
|
7282
|
-
"integrity": "sha512-
|
|
5976
|
+
"version": "8.1.1",
|
|
5977
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
5978
|
+
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
|
7283
5979
|
"requires": {
|
|
7284
|
-
"has-flag": "^
|
|
5980
|
+
"has-flag": "^4.0.0"
|
|
7285
5981
|
}
|
|
7286
5982
|
},
|
|
7287
5983
|
"supports-preserve-symlinks-flag": {
|
|
@@ -7326,11 +6022,11 @@
|
|
|
7326
6022
|
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
|
|
7327
6023
|
},
|
|
7328
6024
|
"tmp": {
|
|
7329
|
-
"version": "0.
|
|
7330
|
-
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.
|
|
7331
|
-
"integrity": "sha512-
|
|
6025
|
+
"version": "0.2.1",
|
|
6026
|
+
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz",
|
|
6027
|
+
"integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==",
|
|
7332
6028
|
"requires": {
|
|
7333
|
-
"
|
|
6029
|
+
"rimraf": "^3.0.0"
|
|
7334
6030
|
}
|
|
7335
6031
|
},
|
|
7336
6032
|
"tmpl": {
|
|
@@ -7449,6 +6145,11 @@
|
|
|
7449
6145
|
"which-boxed-primitive": "^1.0.2"
|
|
7450
6146
|
}
|
|
7451
6147
|
},
|
|
6148
|
+
"undici-types": {
|
|
6149
|
+
"version": "5.26.5",
|
|
6150
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
|
6151
|
+
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
|
|
6152
|
+
},
|
|
7452
6153
|
"unicode-canonical-property-names-ecmascript": {
|
|
7453
6154
|
"version": "2.0.0",
|
|
7454
6155
|
"resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
|
|
@@ -7483,9 +6184,9 @@
|
|
|
7483
6184
|
"integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg=="
|
|
7484
6185
|
},
|
|
7485
6186
|
"update-browserslist-db": {
|
|
7486
|
-
"version": "1.0.
|
|
7487
|
-
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.
|
|
7488
|
-
"integrity": "sha512-
|
|
6187
|
+
"version": "1.0.13",
|
|
6188
|
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
|
|
6189
|
+
"integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
|
|
7489
6190
|
"requires": {
|
|
7490
6191
|
"escalade": "^3.1.1",
|
|
7491
6192
|
"picocolors": "^1.0.0"
|
|
@@ -7536,9 +6237,9 @@
|
|
|
7536
6237
|
"integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg=="
|
|
7537
6238
|
},
|
|
7538
6239
|
"v8-to-istanbul": {
|
|
7539
|
-
"version": "9.
|
|
7540
|
-
"resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.
|
|
7541
|
-
"integrity": "sha512
|
|
6240
|
+
"version": "9.2.0",
|
|
6241
|
+
"resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz",
|
|
6242
|
+
"integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==",
|
|
7542
6243
|
"requires": {
|
|
7543
6244
|
"@jridgewell/trace-mapping": "^0.3.12",
|
|
7544
6245
|
"@types/istanbul-lib-coverage": "^2.0.1",
|
|
@@ -7646,12 +6347,12 @@
|
|
|
7646
6347
|
}
|
|
7647
6348
|
},
|
|
7648
6349
|
"which-typed-array": {
|
|
7649
|
-
"version": "1.1.
|
|
7650
|
-
"resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.
|
|
7651
|
-
"integrity": "sha512-
|
|
6350
|
+
"version": "1.1.13",
|
|
6351
|
+
"resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz",
|
|
6352
|
+
"integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==",
|
|
7652
6353
|
"requires": {
|
|
7653
6354
|
"available-typed-arrays": "^1.0.5",
|
|
7654
|
-
"call-bind": "^1.0.
|
|
6355
|
+
"call-bind": "^1.0.4",
|
|
7655
6356
|
"for-each": "^0.3.3",
|
|
7656
6357
|
"gopd": "^1.0.1",
|
|
7657
6358
|
"has-tostringtag": "^1.0.0"
|
|
@@ -7665,29 +6366,6 @@
|
|
|
7665
6366
|
"ansi-styles": "^4.0.0",
|
|
7666
6367
|
"string-width": "^4.1.0",
|
|
7667
6368
|
"strip-ansi": "^6.0.0"
|
|
7668
|
-
},
|
|
7669
|
-
"dependencies": {
|
|
7670
|
-
"ansi-styles": {
|
|
7671
|
-
"version": "4.3.0",
|
|
7672
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
7673
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
7674
|
-
"requires": {
|
|
7675
|
-
"color-convert": "^2.0.1"
|
|
7676
|
-
}
|
|
7677
|
-
},
|
|
7678
|
-
"color-convert": {
|
|
7679
|
-
"version": "2.0.1",
|
|
7680
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
7681
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
7682
|
-
"requires": {
|
|
7683
|
-
"color-name": "~1.1.4"
|
|
7684
|
-
}
|
|
7685
|
-
},
|
|
7686
|
-
"color-name": {
|
|
7687
|
-
"version": "1.1.4",
|
|
7688
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
7689
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
|
7690
|
-
}
|
|
7691
6369
|
}
|
|
7692
6370
|
},
|
|
7693
6371
|
"wrappy": {
|
|
@@ -7730,14 +6408,14 @@
|
|
|
7730
6408
|
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
|
|
7731
6409
|
},
|
|
7732
6410
|
"yallist": {
|
|
7733
|
-
"version": "
|
|
7734
|
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-
|
|
7735
|
-
"integrity": "sha512-
|
|
6411
|
+
"version": "4.0.0",
|
|
6412
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
6413
|
+
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
7736
6414
|
},
|
|
7737
6415
|
"yaml": {
|
|
7738
|
-
"version": "2.3.
|
|
7739
|
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.
|
|
7740
|
-
"integrity": "sha512-
|
|
6416
|
+
"version": "2.3.4",
|
|
6417
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz",
|
|
6418
|
+
"integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA=="
|
|
7741
6419
|
},
|
|
7742
6420
|
"yargs": {
|
|
7743
6421
|
"version": "17.7.2",
|
|
@@ -7775,6 +6453,16 @@
|
|
|
7775
6453
|
"nanoclone": "^0.2.1",
|
|
7776
6454
|
"property-expr": "^2.0.4",
|
|
7777
6455
|
"toposort": "^2.0.2"
|
|
6456
|
+
},
|
|
6457
|
+
"dependencies": {
|
|
6458
|
+
"@babel/runtime": {
|
|
6459
|
+
"version": "7.23.5",
|
|
6460
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.5.tgz",
|
|
6461
|
+
"integrity": "sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==",
|
|
6462
|
+
"requires": {
|
|
6463
|
+
"regenerator-runtime": "^0.14.0"
|
|
6464
|
+
}
|
|
6465
|
+
}
|
|
7778
6466
|
}
|
|
7779
6467
|
}
|
|
7780
6468
|
}
|