Commit f3540216f4ad5ac8cd451b5ddbec94420840fe81
1 parent
8e19ef49
用户问题调整
Showing
8 changed files
with
4723 additions
and
4560 deletions
garbage-removal/.env.local
garbage-removal/src/pages/login/code.vue
| ... | ... | @@ -71,7 +71,7 @@ const noCaptcha = () => { |
| 71 | 71 | // 校验验证码 |
| 72 | 72 | const checkVerifyNum = (code) => { |
| 73 | 73 | userLogin({ loginType: 0, tel: iphoneNumber.value, code: code }).then(res => { |
| 74 | - // console.log(res); | |
| 74 | + console.log(res); | |
| 75 | 75 | // 登录成功 |
| 76 | 76 | if (res.data.code===200) { |
| 77 | 77 | verifyFlag.value = false; |
| ... | ... | @@ -79,7 +79,8 @@ const checkVerifyNum = (code) => { |
| 79 | 79 | if (res.data.data.token) { |
| 80 | 80 | setRequestToken(res.data.data.token) |
| 81 | 81 | } |
| 82 | - store.userName = res.data.data.name; | |
| 82 | + store.userInfo = {}; | |
| 83 | + store.userName = res.data.data.name !=null ? res.data.data.name : ""; | |
| 83 | 84 | store.userInfo.userName = res.data.data.name; |
| 84 | 85 | store.userPhone = res.data.data.loginPhone; |
| 85 | 86 | if(res.data.data.testUser){ | ... | ... |
garbage-removal/src/pages/order-info/order-driver/detail/index.vue
| ... | ... | @@ -142,9 +142,13 @@ |
| 142 | 142 | </view> |
| 143 | 143 | <view class="order-detail-container-header-item"> |
| 144 | 144 | <text class=" order-detail-container-header-title">装车照片:</text> |
| 145 | - <view class="order-detail-container-header-content"> | |
| 146 | - <u-upload width="180" height="130" :fileList="putOnImages" name="3" multiple :maxCount="20" | |
| 147 | - :previewFullImage="true" :isReadOnly="true"></u-upload> | |
| 145 | + | |
| 146 | + <view class="order-detail-container-header-content" style="flex-direction: column;"> | |
| 147 | + <view v-for="group in putOnImagesGrouped" :key="group.index" class="image-group"> | |
| 148 | + <view class="image-group-title">第 {{ group.index }} 次上传</view> | |
| 149 | + <u-upload width="180" height="130" :fileList="group.images" name="3" multiple :maxCount="20" | |
| 150 | + :previewFullImage="true" :isReadOnly="true"></u-upload> | |
| 151 | + </view> | |
| 148 | 152 | </view> |
| 149 | 153 | </view> |
| 150 | 154 | <!-- <view class="order-detail-container-header-item"> |
| ... | ... | @@ -179,9 +183,13 @@ |
| 179 | 183 | <u-button @click="handleOrder(orderId)" |
| 180 | 184 | v-if="dataGram.garOrderHandlerStatus === 0 && dataGram.handleFlag && dataGram.garCancelFlag === 0 && userType === '运输企业负责人'" |
| 181 | 185 | shape="square" color="#a9e08f" text="处理订单"></u-button> |
| 186 | + | |
| 187 | + | |
| 182 | 188 | <u-button @click="handleUploadImage(orderId, 'putOnImages')" |
| 183 | 189 | v-if="dataGram.garOrderHandlerStatus === 1 && dataGram.garCancelFlag === 0 && userType === '清运车辆驾驶员'" |
| 184 | 190 | shape="square" color="#a9e08f" text="上传图片"></u-button> |
| 191 | + | |
| 192 | + | |
| 185 | 193 | <u-button @click="handleEvaluate(orderId, userType)" |
| 186 | 194 | v-if="dataGram.garEvaluateFlag === 0 && userType === '用户'" shape="square" color="#a9e08f" |
| 187 | 195 | text="去评价"></u-button> |
| ... | ... | @@ -220,6 +228,7 @@ const dataGram = ref(); |
| 220 | 228 | const orderId = ref(null) |
| 221 | 229 | const currentImages = ref([]) |
| 222 | 230 | const putOnImages = ref([]) |
| 231 | +const putOnImagesGrouped = ref([]) // 新增这个变量 | |
| 223 | 232 | const putDownImages = ref([]) |
| 224 | 233 | const emptyBase64Image = ref(zStatic.base64Empty) |
| 225 | 234 | const showUQRcode = ref(false) |
| ... | ... | @@ -282,13 +291,44 @@ const selectClick = (index) => { |
| 282 | 291 | const handleOrderDetail = (orderId) => { |
| 283 | 292 | queryOrderDetail(orderId).then(res => { |
| 284 | 293 | dataGram.value = res.data.data; |
| 285 | - console.log(res.data.data); | |
| 286 | 294 | currentImages.value = res.data.data.currentImages.map(item => { |
| 287 | - return { url: import.meta.env.VITE_BASE_URL + item }; | |
| 295 | + return { url: import.meta.env.VITE_BASE_URL + item}; | |
| 288 | 296 | }); |
| 297 | + | |
| 289 | 298 | putOnImages.value = res.data.data.putOnImages.map(item => { |
| 290 | - return { url: import.meta.env.VITE_BASE_URL + item }; | |
| 299 | + const newItem = item.substring(0, item.length - 6); | |
| 300 | + const newIndex = item.substring(item.length - 6); | |
| 301 | + return { url: import.meta.env.VITE_BASE_URL + newItem, newIndex }; | |
| 302 | + }); | |
| 303 | + | |
| 304 | + | |
| 305 | + // 按照newIndex升序排序 | |
| 306 | + putOnImages.value.sort((a, b) => { | |
| 307 | + return parseInt(a.newIndex) - parseInt(b.newIndex); | |
| 308 | + }); | |
| 309 | + | |
| 310 | + // 重新组织数据,将相同newIndex的图片放在一起 | |
| 311 | + const groupedImages = {}; | |
| 312 | + putOnImages.value.forEach(item => { | |
| 313 | + if (!groupedImages[item.newIndex]) { | |
| 314 | + groupedImages[item.newIndex] = []; | |
| 315 | + } | |
| 316 | + groupedImages[item.newIndex].push(item); | |
| 317 | + }); | |
| 318 | + | |
| 319 | + // 转换newIndex为1,2,3的连续数字 | |
| 320 | + const sortedKeys = Object.keys(groupedImages).sort((a, b) => parseInt(a) - parseInt(b)); | |
| 321 | + const newGroupedImages = {}; | |
| 322 | + sortedKeys.forEach((key, index) => { | |
| 323 | + newGroupedImages[index + 1] = groupedImages[key]; | |
| 291 | 324 | }); |
| 325 | + | |
| 326 | + // 转换为数组形式,方便在模板中遍历 | |
| 327 | + putOnImagesGrouped.value = Object.keys(newGroupedImages).map(key => ({ | |
| 328 | + index: key, | |
| 329 | + images: newGroupedImages[key] | |
| 330 | + })); | |
| 331 | + console.log('putOnImagesGrouped.value:', putOnImagesGrouped.value); | |
| 292 | 332 | putDownImages.value = res.data.data.putDownImages.map(item => { |
| 293 | 333 | return { url: import.meta.env.VITE_BASE_URL + item }; |
| 294 | 334 | }); |
| ... | ... | @@ -373,7 +413,13 @@ const cleanStatus = (status) => { |
| 373 | 413 | const createQrCodeValid = (val) => { |
| 374 | 414 | createHandlerQrCode(val).then(res => { |
| 375 | 415 | // 获取本地地址拼接订单id |
| 376 | - showUQRcode.value = true; | |
| 416 | + //修改点 | |
| 417 | + if(putOnImages.value.length == 0){ | |
| 418 | + uni.$u.toast('请先上传装车图片'); | |
| 419 | + }else{ | |
| 420 | + console.log('putOnImages:', putOnImages.value); | |
| 421 | + showUQRcode.value = true; | |
| 422 | + } | |
| 377 | 423 | // const localAddress = `http://localhost:5173`; |
| 378 | 424 | qrCodeText.value = res.data.data; |
| 379 | 425 | }) |
| ... | ... | @@ -383,6 +429,7 @@ const createQrCodeValid = (val) => { |
| 383 | 429 | * @param {string} orderId |
| 384 | 430 | * @param {string} putType |
| 385 | 431 | */ |
| 432 | + | |
| 386 | 433 | const handleUploadImage = (orderId, putType) => { |
| 387 | 434 | const data = dataGram.value; |
| 388 | 435 | uni.showActionSheet({ |
| ... | ... | @@ -578,4 +625,22 @@ $custom-bottom-height: 200rpx; |
| 578 | 625 | align-items: center; |
| 579 | 626 | justify-content: center; |
| 580 | 627 | } |
| 628 | +.image-group { | |
| 629 | + margin-bottom: 20px; | |
| 630 | + padding: 10px; | |
| 631 | + background-color: #f5f5f5; | |
| 632 | + border-radius: 5px; | |
| 633 | +} | |
| 634 | + | |
| 635 | +.image-group-title { | |
| 636 | + margin-bottom: 10px; | |
| 637 | + font-weight: bold; | |
| 638 | + color: #333; | |
| 639 | +} | |
| 640 | + | |
| 641 | +/* 确保u-upload组件内的图片水平排列 */ | |
| 642 | +.image-group .u-upload { | |
| 643 | + display: flex; | |
| 644 | + flex-wrap: wrap; | |
| 645 | +} | |
| 581 | 646 | </style> | ... | ... |
garbage-removal/src/pages/order-info/order-driver/upload/index.vue
| ... | ... | @@ -89,51 +89,90 @@ |
| 89 | 89 | } |
| 90 | 90 | // 新增图片 |
| 91 | 91 | const afterRead = async (event) => { |
| 92 | - // 获取定位信息 | |
| 93 | - takeLocation(); | |
| 94 | - // 当设置 mutiple 为 true 时, file 为数组格式,否则为对象格式 | |
| 95 | - let lists = [].concat(event.file); | |
| 96 | - let fileListLen = fileList.value.length; | |
| 97 | - lists.map((item) => { | |
| 98 | - fileList.value.push({ | |
| 99 | - ...item, | |
| 100 | - status: 'uploading', | |
| 101 | - message: '上传中', | |
| 102 | - }); | |
| 92 | + // 当设置 mutiple 为 true 时, file 为数组格式,否则为对象格式 | |
| 93 | + let lists = [].concat(event.file); | |
| 94 | + let fileListLen = fileList.value.length; | |
| 95 | + lists.map((item) => { | |
| 96 | + fileList.value.push({ | |
| 97 | + ...item, | |
| 98 | + status: 'uploading', | |
| 99 | + message: '上传中', | |
| 103 | 100 | }); |
| 104 | - // 将blob转为file对象的方法 | |
| 105 | - function blobToFile(blob, fileName) { | |
| 106 | - return new File([blob], fileName, { | |
| 107 | - type: 'image/png' | |
| 108 | - }) | |
| 109 | - } | |
| 110 | - for (let i = 0; i < lists.length; i++) { | |
| 111 | - // 获取blob对象 | |
| 112 | - fetch(lists[i].url) | |
| 113 | - .then(response => response.blob()) | |
| 114 | - .then(blob => { | |
| 115 | - // 将blob转换为file | |
| 116 | - let fileN = blobToFile(blob, lists[i].name) | |
| 117 | - // 上传file对象 | |
| 118 | - let requestPath = import.meta.env.VITE_BASE_URL + import.meta.env | |
| 119 | - .VITE_BASE_FILE_UPLOAD_PREFIX; | |
| 120 | - uploadFilePromise(requestPath, fileN).then(result => { | |
| 121 | - let item = fileList.value[fileListLen]; | |
| 122 | - fileList.value.splice(fileListLen, 1, { | |
| 123 | - ...item, | |
| 124 | - status: 'success', | |
| 125 | - message: '', | |
| 126 | - url: result.data.fileName, | |
| 127 | - }); | |
| 128 | - fileListLen++; | |
| 129 | - }); | |
| 101 | + }); | |
| 130 | 102 | |
| 131 | - }) | |
| 132 | - } | |
| 103 | + for (let i = 0; i < lists.length; i++) { | |
| 104 | + // 图片压缩逻辑 | |
| 105 | + const compressImage = async (file) => { | |
| 106 | + return new Promise((resolve) => { | |
| 107 | + // 创建图片对象 | |
| 108 | + const img = new Image(); | |
| 109 | + img.onload = () => { | |
| 110 | + // 创建canvas | |
| 111 | + const canvas = document.createElement('canvas'); | |
| 112 | + const ctx = canvas.getContext('2d'); | |
| 113 | + | |
| 114 | + // 设置压缩后的宽度和高度 | |
| 115 | + const maxWidth = 800; | |
| 116 | + const maxHeight = 600; | |
| 117 | + let width = img.width; | |
| 118 | + let height = img.height; | |
| 119 | + | |
| 120 | + // 计算压缩后的尺寸 | |
| 121 | + if (width > maxWidth) { | |
| 122 | + height = Math.round((height * maxWidth) / width); | |
| 123 | + width = maxWidth; | |
| 124 | + } | |
| 125 | + if (height > maxHeight) { | |
| 126 | + width = Math.round((width * maxHeight) / height); | |
| 127 | + height = maxHeight; | |
| 128 | + } | |
| 129 | + | |
| 130 | + // 设置canvas尺寸 | |
| 131 | + canvas.width = width; | |
| 132 | + canvas.height = height; | |
| 133 | + | |
| 134 | + // 绘制图片 | |
| 135 | + ctx.drawImage(img, 0, 0, width, height); | |
| 136 | + | |
| 137 | + // 转换为blob | |
| 138 | + canvas.toBlob( | |
| 139 | + (blob) => { | |
| 140 | + // 转换为file | |
| 141 | + const compressedFile = new File([blob], file.name, { | |
| 142 | + type: 'image/jpeg', | |
| 143 | + }); | |
| 144 | + resolve(compressedFile); | |
| 145 | + }, | |
| 146 | + 'image/jpeg', | |
| 147 | + 0.6 // 压缩质量 0-1 | |
| 148 | + ); | |
| 149 | + }; | |
| 150 | + img.src = file.url; | |
| 151 | + }); | |
| 152 | + }; | |
| 153 | + | |
| 154 | + // 压缩图片 | |
| 155 | + const compressedFile = await compressImage(lists[i]); | |
| 156 | + | |
| 157 | + // 上传压缩后的文件 | |
| 158 | + let requestPath = import.meta.env.VITE_BASE_URL + import.meta.env | |
| 159 | + .VITE_BASE_FILE_UPLOAD_PREFIX; | |
| 160 | + uploadFilePromise(requestPath, compressedFile).then(result => { | |
| 161 | + let item = fileList.value[fileListLen]; | |
| 162 | + fileList.value.splice(fileListLen, 1, { | |
| 163 | + ...item, | |
| 164 | + status: 'success', | |
| 165 | + message: '', | |
| 166 | + url: result.data.fileName, | |
| 167 | + }); | |
| 168 | + fileListLen++; | |
| 169 | + }); | |
| 170 | + } | |
| 133 | 171 | }; |
| 134 | 172 | // 提交图片 |
| 135 | 173 | const handleSubmit = async (id, type, driver, carPlate) => { |
| 136 | 174 | |
| 175 | + | |
| 137 | 176 | if (!validateImage()) { |
| 138 | 177 | uni.$u.toast("请等待图片上传~") |
| 139 | 178 | return |
| ... | ... | @@ -225,6 +264,8 @@ |
| 225 | 264 | driver.value = options.driver; |
| 226 | 265 | console.log(options.putType); |
| 227 | 266 | putType.value = options.putType === "putOnImages" ? "装车图片" : "卸车图片"; |
| 267 | + // 获取定位信息 | |
| 268 | + takeLocation(); | |
| 228 | 269 | }) |
| 229 | 270 | </script> |
| 230 | 271 | ... | ... |
garbage-removal/src/pages/order-info/order-other/detail/index.vue
| ... | ... | @@ -182,9 +182,12 @@ |
| 182 | 182 | <view v-if="putDownImages.length || putOnImages.length" style="width: 100%;"> |
| 183 | 183 | <view class="order-detail-container-header-item"> |
| 184 | 184 | <text class=" order-detail-container-header-title">装车照片:</text> |
| 185 | - <view class="order-detail-container-header-content"> | |
| 186 | - <u-upload width="180" height="130" :fileList="putOnImages" name="3" multiple :maxCount="20" | |
| 185 | + <view class="order-detail-container-header-content" style="flex-direction: column"> | |
| 186 | + <view v-for="group in putOnImagesGrouped" :key="group.index" class="image-group"> | |
| 187 | + <view class="image-group-title">第 {{ group.index }} 次上传</view> | |
| 188 | + <u-upload width="180" height="130" :fileList="group.images" name="3" multiple :maxCount="20" | |
| 187 | 189 | :previewFullImage="true" :isReadOnly="true"></u-upload> |
| 190 | + </view> | |
| 188 | 191 | </view> |
| 189 | 192 | </view> |
| 190 | 193 | <!-- <view class="order-detail-container-header-item"> |
| ... | ... | @@ -299,6 +302,7 @@ |
| 299 | 302 | const orderId = ref(null) |
| 300 | 303 | const currentImages = ref([]) |
| 301 | 304 | const putOnImages = ref([]) |
| 305 | + const putOnImagesGrouped = ref([]) // 新增这个变量 | |
| 302 | 306 | const putDownImages = ref([]) |
| 303 | 307 | const emptyBase64Image = ref(zStatic.base64Empty) |
| 304 | 308 | const showUQRcode = ref(false) |
| ... | ... | @@ -419,17 +423,44 @@ |
| 419 | 423 | const handleOrderDetail = (orderId) => { |
| 420 | 424 | queryOrderDetail(orderId).then(res => { |
| 421 | 425 | dataGram.value = res.data.data; |
| 422 | - console.log(res.data.data); | |
| 423 | 426 | currentImages.value = res.data.data.currentImages.map(item => { |
| 424 | 427 | return { |
| 425 | 428 | url: import.meta.env.VITE_BASE_URL + item |
| 426 | 429 | }; |
| 427 | 430 | }); |
| 428 | 431 | putOnImages.value = res.data.data.putOnImages.map(item => { |
| 429 | - return { | |
| 430 | - url: import.meta.env.VITE_BASE_URL + item | |
| 431 | - }; | |
| 432 | + const newItem = item.substring(0, item.length - 6); | |
| 433 | + const newIndex = item.substring(item.length - 6); | |
| 434 | + return { url: import.meta.env.VITE_BASE_URL + newItem, newIndex }; | |
| 435 | + }); | |
| 436 | + | |
| 437 | + // 按照newIndex升序排序 | |
| 438 | + putOnImages.value.sort((a, b) => { | |
| 439 | + return parseInt(a.newIndex) - parseInt(b.newIndex); | |
| 440 | + }); | |
| 441 | + | |
| 442 | + // 重新组织数据,将相同newIndex的图片放在一起 | |
| 443 | + const groupedImages = {}; | |
| 444 | + putOnImages.value.forEach(item => { | |
| 445 | + if (!groupedImages[item.newIndex]) { | |
| 446 | + groupedImages[item.newIndex] = []; | |
| 447 | + } | |
| 448 | + groupedImages[item.newIndex].push(item); | |
| 432 | 449 | }); |
| 450 | + | |
| 451 | + // 转换newIndex为1,2,3的连续数字 | |
| 452 | + const sortedKeys = Object.keys(groupedImages).sort((a, b) => parseInt(a) - parseInt(b)); | |
| 453 | + const newGroupedImages = {}; | |
| 454 | + sortedKeys.forEach((key, index) => { | |
| 455 | + newGroupedImages[index + 1] = groupedImages[key]; | |
| 456 | + }); | |
| 457 | + | |
| 458 | + // 转换为数组形式,方便在模板中遍历 | |
| 459 | + putOnImagesGrouped.value = Object.keys(newGroupedImages).map(key => ({ | |
| 460 | + index: key, | |
| 461 | + images: newGroupedImages[key] | |
| 462 | + })); | |
| 463 | + console.log('putOnImagesGrouped.value:', putOnImagesGrouped.value); | |
| 433 | 464 | putDownImages.value = res.data.data.putDownImages.map(item => { |
| 434 | 465 | return { |
| 435 | 466 | url: import.meta.env.VITE_BASE_URL + item |
| ... | ... | @@ -953,4 +984,22 @@ |
| 953 | 984 | } |
| 954 | 985 | } |
| 955 | 986 | } |
| 987 | + .image-group { | |
| 988 | + margin-bottom: 20px; | |
| 989 | + padding: 10px; | |
| 990 | + background-color: #f5f5f5; | |
| 991 | + border-radius: 5px; | |
| 992 | + } | |
| 993 | + | |
| 994 | + .image-group-title { | |
| 995 | + margin-bottom: 10px; | |
| 996 | + font-weight: bold; | |
| 997 | + color: #333; | |
| 998 | + } | |
| 999 | + | |
| 1000 | +/* 确保u-upload组件内的图片水平排列 */ | |
| 1001 | + .image-group .u-upload { | |
| 1002 | + display: flex; | |
| 1003 | + flex-wrap: wrap; | |
| 1004 | + } | |
| 956 | 1005 | </style> |
| 957 | 1006 | \ No newline at end of file | ... | ... |
garbage-removal/src/stores/main.js
| ... | ... | @@ -6,10 +6,12 @@ export const useMainStore = defineStore( |
| 6 | 6 | const token = ref(null); |
| 7 | 7 | const tempToken = ref(null); |
| 8 | 8 | const userType = ref("") |
| 9 | - const userInfo = ref("") | |
| 10 | - const userPhone = ref(""); | |
| 9 | + const userInfo = ref({}) | |
| 10 | + // 或者保留初始对象定义,添加数据验证 | |
| 11 | + const userPhone = ref(""); | |
| 12 | + const userName = ref(""); | |
| 11 | 13 | |
| 12 | - return { token,tempToken,userType,userInfo,userPhone }; | |
| 14 | + return { token,tempToken,userType,userInfo,userPhone,userName }; | |
| 13 | 15 | }, |
| 14 | 16 | { |
| 15 | 17 | persist: { | ... | ... |
garbage-removal/vite.config.js
| ... | ... | @@ -8,7 +8,7 @@ export default defineConfig({ |
| 8 | 8 | plugins: [ |
| 9 | 9 | uni(), |
| 10 | 10 | //本地环境开启https |
| 11 | - basicSsl() | |
| 11 | + // basicSsl() | |
| 12 | 12 | ], |
| 13 | 13 | resolve: { |
| 14 | 14 | alias: { |
| ... | ... | @@ -19,6 +19,6 @@ export default defineConfig({ |
| 19 | 19 | server: { |
| 20 | 20 | port: 9000, |
| 21 | 21 | //本地环境开启https |
| 22 | - https: true | |
| 22 | + // https: true | |
| 23 | 23 | } |
| 24 | 24 | }) | ... | ... |
garbage-removal/yarn.lock
| ... | ... | @@ -3,30 +3,30 @@ |
| 3 | 3 | |
| 4 | 4 | |
| 5 | 5 | "@ampproject/remapping@^2.1.2", "@ampproject/remapping@^2.2.0": |
| 6 | - "integrity" "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" | |
| 7 | - "resolved" "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz" | |
| 8 | - "version" "2.2.1" | |
| 6 | + version "2.2.1" | |
| 7 | + resolved "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz" | |
| 8 | + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== | |
| 9 | 9 | dependencies: |
| 10 | 10 | "@jridgewell/gen-mapping" "^0.3.0" |
| 11 | 11 | "@jridgewell/trace-mapping" "^0.3.9" |
| 12 | 12 | |
| 13 | 13 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13": |
| 14 | - "integrity" "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==" | |
| 15 | - "resolved" "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.13.tgz" | |
| 16 | - "version" "7.22.13" | |
| 14 | + version "7.22.13" | |
| 15 | + resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.13.tgz" | |
| 16 | + integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== | |
| 17 | 17 | dependencies: |
| 18 | 18 | "@babel/highlight" "^7.22.13" |
| 19 | - "chalk" "^2.4.2" | |
| 19 | + chalk "^2.4.2" | |
| 20 | 20 | |
| 21 | 21 | "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9", "@babel/compat-data@^7.23.2": |
| 22 | - "integrity" "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==" | |
| 23 | - "resolved" "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.23.2.tgz" | |
| 24 | - "version" "7.23.2" | |
| 22 | + version "7.23.2" | |
| 23 | + resolved "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.23.2.tgz" | |
| 24 | + integrity sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ== | |
| 25 | 25 | |
| 26 | 26 | "@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.0.0-0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.1.0", "@babel/core@^7.12.0", "@babel/core@^7.12.3", "@babel/core@^7.13.0", "@babel/core@^7.21.3", "@babel/core@^7.22.10", "@babel/core@^7.22.9", "@babel/core@^7.4.0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0": |
| 27 | - "integrity" "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" | |
| 28 | - "resolved" "https://registry.npmmirror.com/@babel/core/-/core-7.23.2.tgz" | |
| 29 | - "version" "7.23.2" | |
| 27 | + version "7.23.2" | |
| 28 | + resolved "https://registry.npmmirror.com/@babel/core/-/core-7.23.2.tgz" | |
| 29 | + integrity sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ== | |
| 30 | 30 | dependencies: |
| 31 | 31 | "@ampproject/remapping" "^2.2.0" |
| 32 | 32 | "@babel/code-frame" "^7.22.13" |
| ... | ... | @@ -38,51 +38,51 @@ |
| 38 | 38 | "@babel/template" "^7.22.15" |
| 39 | 39 | "@babel/traverse" "^7.23.2" |
| 40 | 40 | "@babel/types" "^7.23.0" |
| 41 | - "convert-source-map" "^2.0.0" | |
| 42 | - "debug" "^4.1.0" | |
| 43 | - "gensync" "^1.0.0-beta.2" | |
| 44 | - "json5" "^2.2.3" | |
| 45 | - "semver" "^6.3.1" | |
| 41 | + convert-source-map "^2.0.0" | |
| 42 | + debug "^4.1.0" | |
| 43 | + gensync "^1.0.0-beta.2" | |
| 44 | + json5 "^2.2.3" | |
| 45 | + semver "^6.3.1" | |
| 46 | 46 | |
| 47 | 47 | "@babel/generator@^7.20.5", "@babel/generator@^7.23.0", "@babel/generator@^7.7.2": |
| 48 | - "integrity" "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" | |
| 49 | - "resolved" "https://registry.npmmirror.com/@babel/generator/-/generator-7.23.0.tgz" | |
| 50 | - "version" "7.23.0" | |
| 48 | + version "7.23.0" | |
| 49 | + resolved "https://registry.npmmirror.com/@babel/generator/-/generator-7.23.0.tgz" | |
| 50 | + integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== | |
| 51 | 51 | dependencies: |
| 52 | 52 | "@babel/types" "^7.23.0" |
| 53 | 53 | "@jridgewell/gen-mapping" "^0.3.2" |
| 54 | 54 | "@jridgewell/trace-mapping" "^0.3.17" |
| 55 | - "jsesc" "^2.5.1" | |
| 55 | + jsesc "^2.5.1" | |
| 56 | 56 | |
| 57 | 57 | "@babel/helper-annotate-as-pure@^7.22.5": |
| 58 | - "integrity" "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" | |
| 59 | - "resolved" "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz" | |
| 60 | - "version" "7.22.5" | |
| 58 | + version "7.22.5" | |
| 59 | + resolved "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz" | |
| 60 | + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== | |
| 61 | 61 | dependencies: |
| 62 | 62 | "@babel/types" "^7.22.5" |
| 63 | 63 | |
| 64 | 64 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": |
| 65 | - "integrity" "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" | |
| 66 | - "resolved" "https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz" | |
| 67 | - "version" "7.22.15" | |
| 65 | + version "7.22.15" | |
| 66 | + resolved "https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz" | |
| 67 | + integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== | |
| 68 | 68 | dependencies: |
| 69 | 69 | "@babel/types" "^7.22.15" |
| 70 | 70 | |
| 71 | 71 | "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": |
| 72 | - "integrity" "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==" | |
| 73 | - "resolved" "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz" | |
| 74 | - "version" "7.22.15" | |
| 72 | + version "7.22.15" | |
| 73 | + resolved "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz" | |
| 74 | + integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw== | |
| 75 | 75 | dependencies: |
| 76 | 76 | "@babel/compat-data" "^7.22.9" |
| 77 | 77 | "@babel/helper-validator-option" "^7.22.15" |
| 78 | - "browserslist" "^4.21.9" | |
| 79 | - "lru-cache" "^5.1.1" | |
| 80 | - "semver" "^6.3.1" | |
| 78 | + browserslist "^4.21.9" | |
| 79 | + lru-cache "^5.1.1" | |
| 80 | + semver "^6.3.1" | |
| 81 | 81 | |
| 82 | 82 | "@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.22.5": |
| 83 | - "integrity" "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==" | |
| 84 | - "resolved" "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz" | |
| 85 | - "version" "7.22.15" | |
| 83 | + version "7.22.15" | |
| 84 | + resolved "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz" | |
| 85 | + integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== | |
| 86 | 86 | dependencies: |
| 87 | 87 | "@babel/helper-annotate-as-pure" "^7.22.5" |
| 88 | 88 | "@babel/helper-environment-visitor" "^7.22.5" |
| ... | ... | @@ -92,66 +92,66 @@ |
| 92 | 92 | "@babel/helper-replace-supers" "^7.22.9" |
| 93 | 93 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" |
| 94 | 94 | "@babel/helper-split-export-declaration" "^7.22.6" |
| 95 | - "semver" "^6.3.1" | |
| 95 | + semver "^6.3.1" | |
| 96 | 96 | |
| 97 | 97 | "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": |
| 98 | - "integrity" "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" | |
| 99 | - "resolved" "https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz" | |
| 100 | - "version" "7.22.15" | |
| 98 | + version "7.22.15" | |
| 99 | + resolved "https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz" | |
| 100 | + integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== | |
| 101 | 101 | dependencies: |
| 102 | 102 | "@babel/helper-annotate-as-pure" "^7.22.5" |
| 103 | - "regexpu-core" "^5.3.1" | |
| 104 | - "semver" "^6.3.1" | |
| 103 | + regexpu-core "^5.3.1" | |
| 104 | + semver "^6.3.1" | |
| 105 | 105 | |
| 106 | 106 | "@babel/helper-define-polyfill-provider@^0.4.3": |
| 107 | - "integrity" "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==" | |
| 108 | - "resolved" "https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz" | |
| 109 | - "version" "0.4.3" | |
| 107 | + version "0.4.3" | |
| 108 | + resolved "https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz" | |
| 109 | + integrity sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug== | |
| 110 | 110 | dependencies: |
| 111 | 111 | "@babel/helper-compilation-targets" "^7.22.6" |
| 112 | 112 | "@babel/helper-plugin-utils" "^7.22.5" |
| 113 | - "debug" "^4.1.1" | |
| 114 | - "lodash.debounce" "^4.0.8" | |
| 115 | - "resolve" "^1.14.2" | |
| 113 | + debug "^4.1.1" | |
| 114 | + lodash.debounce "^4.0.8" | |
| 115 | + resolve "^1.14.2" | |
| 116 | 116 | |
| 117 | 117 | "@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": |
| 118 | - "integrity" "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" | |
| 119 | - "resolved" "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz" | |
| 120 | - "version" "7.22.20" | |
| 118 | + version "7.22.20" | |
| 119 | + resolved "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz" | |
| 120 | + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== | |
| 121 | 121 | |
| 122 | 122 | "@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0": |
| 123 | - "integrity" "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" | |
| 124 | - "resolved" "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz" | |
| 125 | - "version" "7.23.0" | |
| 123 | + version "7.23.0" | |
| 124 | + resolved "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz" | |
| 125 | + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== | |
| 126 | 126 | dependencies: |
| 127 | 127 | "@babel/template" "^7.22.15" |
| 128 | 128 | "@babel/types" "^7.23.0" |
| 129 | 129 | |
| 130 | 130 | "@babel/helper-hoist-variables@^7.22.5": |
| 131 | - "integrity" "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" | |
| 132 | - "resolved" "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz" | |
| 133 | - "version" "7.22.5" | |
| 131 | + version "7.22.5" | |
| 132 | + resolved "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz" | |
| 133 | + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== | |
| 134 | 134 | dependencies: |
| 135 | 135 | "@babel/types" "^7.22.5" |
| 136 | 136 | |
| 137 | 137 | "@babel/helper-member-expression-to-functions@^7.22.15": |
| 138 | - "integrity" "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" | |
| 139 | - "resolved" "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz" | |
| 140 | - "version" "7.23.0" | |
| 138 | + version "7.23.0" | |
| 139 | + resolved "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz" | |
| 140 | + integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== | |
| 141 | 141 | dependencies: |
| 142 | 142 | "@babel/types" "^7.23.0" |
| 143 | 143 | |
| 144 | 144 | "@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5": |
| 145 | - "integrity" "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" | |
| 146 | - "resolved" "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz" | |
| 147 | - "version" "7.22.15" | |
| 145 | + version "7.22.15" | |
| 146 | + resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz" | |
| 147 | + integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== | |
| 148 | 148 | dependencies: |
| 149 | 149 | "@babel/types" "^7.22.15" |
| 150 | 150 | |
| 151 | 151 | "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.23.0": |
| 152 | - "integrity" "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==" | |
| 153 | - "resolved" "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz" | |
| 154 | - "version" "7.23.0" | |
| 152 | + version "7.23.0" | |
| 153 | + resolved "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz" | |
| 154 | + integrity sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw== | |
| 155 | 155 | dependencies: |
| 156 | 156 | "@babel/helper-environment-visitor" "^7.22.20" |
| 157 | 157 | "@babel/helper-module-imports" "^7.22.15" |
| ... | ... | @@ -160,283 +160,283 @@ |
| 160 | 160 | "@babel/helper-validator-identifier" "^7.22.20" |
| 161 | 161 | |
| 162 | 162 | "@babel/helper-optimise-call-expression@^7.22.5": |
| 163 | - "integrity" "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" | |
| 164 | - "resolved" "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz" | |
| 165 | - "version" "7.22.5" | |
| 163 | + version "7.22.5" | |
| 164 | + resolved "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz" | |
| 165 | + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== | |
| 166 | 166 | dependencies: |
| 167 | 167 | "@babel/types" "^7.22.5" |
| 168 | 168 | |
| 169 | 169 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": |
| 170 | - "integrity" "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" | |
| 171 | - "resolved" "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz" | |
| 172 | - "version" "7.22.5" | |
| 170 | + version "7.22.5" | |
| 171 | + resolved "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz" | |
| 172 | + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== | |
| 173 | 173 | |
| 174 | 174 | "@babel/helper-remap-async-to-generator@^7.22.20", "@babel/helper-remap-async-to-generator@^7.22.5": |
| 175 | - "integrity" "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" | |
| 176 | - "resolved" "https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz" | |
| 177 | - "version" "7.22.20" | |
| 175 | + version "7.22.20" | |
| 176 | + resolved "https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz" | |
| 177 | + integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== | |
| 178 | 178 | dependencies: |
| 179 | 179 | "@babel/helper-annotate-as-pure" "^7.22.5" |
| 180 | 180 | "@babel/helper-environment-visitor" "^7.22.20" |
| 181 | 181 | "@babel/helper-wrap-function" "^7.22.20" |
| 182 | 182 | |
| 183 | 183 | "@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": |
| 184 | - "integrity" "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" | |
| 185 | - "resolved" "https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz" | |
| 186 | - "version" "7.22.20" | |
| 184 | + version "7.22.20" | |
| 185 | + resolved "https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz" | |
| 186 | + integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== | |
| 187 | 187 | dependencies: |
| 188 | 188 | "@babel/helper-environment-visitor" "^7.22.20" |
| 189 | 189 | "@babel/helper-member-expression-to-functions" "^7.22.15" |
| 190 | 190 | "@babel/helper-optimise-call-expression" "^7.22.5" |
| 191 | 191 | |
| 192 | 192 | "@babel/helper-simple-access@^7.22.5": |
| 193 | - "integrity" "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" | |
| 194 | - "resolved" "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz" | |
| 195 | - "version" "7.22.5" | |
| 193 | + version "7.22.5" | |
| 194 | + resolved "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz" | |
| 195 | + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== | |
| 196 | 196 | dependencies: |
| 197 | 197 | "@babel/types" "^7.22.5" |
| 198 | 198 | |
| 199 | 199 | "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": |
| 200 | - "integrity" "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" | |
| 201 | - "resolved" "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz" | |
| 202 | - "version" "7.22.5" | |
| 200 | + version "7.22.5" | |
| 201 | + resolved "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz" | |
| 202 | + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== | |
| 203 | 203 | dependencies: |
| 204 | 204 | "@babel/types" "^7.22.5" |
| 205 | 205 | |
| 206 | 206 | "@babel/helper-split-export-declaration@^7.22.6": |
| 207 | - "integrity" "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" | |
| 208 | - "resolved" "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz" | |
| 209 | - "version" "7.22.6" | |
| 207 | + version "7.22.6" | |
| 208 | + resolved "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz" | |
| 209 | + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== | |
| 210 | 210 | dependencies: |
| 211 | 211 | "@babel/types" "^7.22.5" |
| 212 | 212 | |
| 213 | 213 | "@babel/helper-string-parser@^7.22.5": |
| 214 | - "integrity" "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" | |
| 215 | - "resolved" "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz" | |
| 216 | - "version" "7.22.5" | |
| 214 | + version "7.22.5" | |
| 215 | + resolved "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz" | |
| 216 | + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== | |
| 217 | 217 | |
| 218 | 218 | "@babel/helper-validator-identifier@^7.22.20": |
| 219 | - "integrity" "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" | |
| 220 | - "resolved" "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz" | |
| 221 | - "version" "7.22.20" | |
| 219 | + version "7.22.20" | |
| 220 | + resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz" | |
| 221 | + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== | |
| 222 | 222 | |
| 223 | 223 | "@babel/helper-validator-option@^7.22.15": |
| 224 | - "integrity" "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==" | |
| 225 | - "resolved" "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz" | |
| 226 | - "version" "7.22.15" | |
| 224 | + version "7.22.15" | |
| 225 | + resolved "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz" | |
| 226 | + integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== | |
| 227 | 227 | |
| 228 | 228 | "@babel/helper-wrap-function@^7.22.20": |
| 229 | - "integrity" "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" | |
| 230 | - "resolved" "https://registry.npmmirror.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz" | |
| 231 | - "version" "7.22.20" | |
| 229 | + version "7.22.20" | |
| 230 | + resolved "https://registry.npmmirror.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz" | |
| 231 | + integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== | |
| 232 | 232 | dependencies: |
| 233 | 233 | "@babel/helper-function-name" "^7.22.5" |
| 234 | 234 | "@babel/template" "^7.22.15" |
| 235 | 235 | "@babel/types" "^7.22.19" |
| 236 | 236 | |
| 237 | 237 | "@babel/helpers@^7.23.2": |
| 238 | - "integrity" "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==" | |
| 239 | - "resolved" "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.23.2.tgz" | |
| 240 | - "version" "7.23.2" | |
| 238 | + version "7.23.2" | |
| 239 | + resolved "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.23.2.tgz" | |
| 240 | + integrity sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ== | |
| 241 | 241 | dependencies: |
| 242 | 242 | "@babel/template" "^7.22.15" |
| 243 | 243 | "@babel/traverse" "^7.23.2" |
| 244 | 244 | "@babel/types" "^7.23.0" |
| 245 | 245 | |
| 246 | 246 | "@babel/highlight@^7.22.13": |
| 247 | - "integrity" "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==" | |
| 248 | - "resolved" "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.20.tgz" | |
| 249 | - "version" "7.22.20" | |
| 247 | + version "7.22.20" | |
| 248 | + resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.20.tgz" | |
| 249 | + integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== | |
| 250 | 250 | dependencies: |
| 251 | 251 | "@babel/helper-validator-identifier" "^7.22.20" |
| 252 | - "chalk" "^2.4.2" | |
| 253 | - "js-tokens" "^4.0.0" | |
| 252 | + chalk "^2.4.2" | |
| 253 | + js-tokens "^4.0.0" | |
| 254 | 254 | |
| 255 | 255 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.4", "@babel/parser@^7.20.7", "@babel/parser@^7.22.15", "@babel/parser@^7.23.0": |
| 256 | - "integrity" "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==" | |
| 257 | - "resolved" "https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz" | |
| 258 | - "version" "7.23.0" | |
| 256 | + version "7.23.0" | |
| 257 | + resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz" | |
| 258 | + integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== | |
| 259 | 259 | |
| 260 | 260 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15": |
| 261 | - "integrity" "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==" | |
| 262 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz" | |
| 263 | - "version" "7.22.15" | |
| 261 | + version "7.22.15" | |
| 262 | + resolved "https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz" | |
| 263 | + integrity sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg== | |
| 264 | 264 | dependencies: |
| 265 | 265 | "@babel/helper-plugin-utils" "^7.22.5" |
| 266 | 266 | |
| 267 | 267 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.15": |
| 268 | - "integrity" "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==" | |
| 269 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz" | |
| 270 | - "version" "7.22.15" | |
| 268 | + version "7.22.15" | |
| 269 | + resolved "https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz" | |
| 270 | + integrity sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ== | |
| 271 | 271 | dependencies: |
| 272 | 272 | "@babel/helper-plugin-utils" "^7.22.5" |
| 273 | 273 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" |
| 274 | 274 | "@babel/plugin-transform-optional-chaining" "^7.22.15" |
| 275 | 275 | |
| 276 | 276 | "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": |
| 277 | - "integrity" "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" | |
| 278 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz" | |
| 279 | - "version" "7.21.0-placeholder-for-preset-env.2" | |
| 277 | + version "7.21.0-placeholder-for-preset-env.2" | |
| 278 | + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz" | |
| 279 | + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== | |
| 280 | 280 | |
| 281 | 281 | "@babel/plugin-syntax-async-generators@^7.8.4": |
| 282 | - "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" | |
| 283 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" | |
| 284 | - "version" "7.8.4" | |
| 282 | + version "7.8.4" | |
| 283 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" | |
| 284 | + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== | |
| 285 | 285 | dependencies: |
| 286 | 286 | "@babel/helper-plugin-utils" "^7.8.0" |
| 287 | 287 | |
| 288 | 288 | "@babel/plugin-syntax-bigint@^7.8.3": |
| 289 | - "integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" | |
| 290 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" | |
| 291 | - "version" "7.8.3" | |
| 289 | + version "7.8.3" | |
| 290 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" | |
| 291 | + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== | |
| 292 | 292 | dependencies: |
| 293 | 293 | "@babel/helper-plugin-utils" "^7.8.0" |
| 294 | 294 | |
| 295 | 295 | "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": |
| 296 | - "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" | |
| 297 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" | |
| 298 | - "version" "7.12.13" | |
| 296 | + version "7.12.13" | |
| 297 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" | |
| 298 | + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== | |
| 299 | 299 | dependencies: |
| 300 | 300 | "@babel/helper-plugin-utils" "^7.12.13" |
| 301 | 301 | |
| 302 | 302 | "@babel/plugin-syntax-class-static-block@^7.14.5": |
| 303 | - "integrity" "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" | |
| 304 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" | |
| 305 | - "version" "7.14.5" | |
| 303 | + version "7.14.5" | |
| 304 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" | |
| 305 | + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== | |
| 306 | 306 | dependencies: |
| 307 | 307 | "@babel/helper-plugin-utils" "^7.14.5" |
| 308 | 308 | |
| 309 | 309 | "@babel/plugin-syntax-dynamic-import@^7.8.3": |
| 310 | - "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" | |
| 311 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" | |
| 312 | - "version" "7.8.3" | |
| 310 | + version "7.8.3" | |
| 311 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" | |
| 312 | + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== | |
| 313 | 313 | dependencies: |
| 314 | 314 | "@babel/helper-plugin-utils" "^7.8.0" |
| 315 | 315 | |
| 316 | 316 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": |
| 317 | - "integrity" "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" | |
| 318 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" | |
| 319 | - "version" "7.8.3" | |
| 317 | + version "7.8.3" | |
| 318 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" | |
| 319 | + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== | |
| 320 | 320 | dependencies: |
| 321 | 321 | "@babel/helper-plugin-utils" "^7.8.3" |
| 322 | 322 | |
| 323 | 323 | "@babel/plugin-syntax-import-assertions@^7.22.5": |
| 324 | - "integrity" "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==" | |
| 325 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz" | |
| 326 | - "version" "7.22.5" | |
| 324 | + version "7.22.5" | |
| 325 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz" | |
| 326 | + integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== | |
| 327 | 327 | dependencies: |
| 328 | 328 | "@babel/helper-plugin-utils" "^7.22.5" |
| 329 | 329 | |
| 330 | 330 | "@babel/plugin-syntax-import-attributes@^7.22.5": |
| 331 | - "integrity" "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==" | |
| 332 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz" | |
| 333 | - "version" "7.22.5" | |
| 331 | + version "7.22.5" | |
| 332 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz" | |
| 333 | + integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== | |
| 334 | 334 | dependencies: |
| 335 | 335 | "@babel/helper-plugin-utils" "^7.22.5" |
| 336 | 336 | |
| 337 | 337 | "@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": |
| 338 | - "integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" | |
| 339 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" | |
| 340 | - "version" "7.10.4" | |
| 338 | + version "7.10.4" | |
| 339 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" | |
| 340 | + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== | |
| 341 | 341 | dependencies: |
| 342 | 342 | "@babel/helper-plugin-utils" "^7.10.4" |
| 343 | 343 | |
| 344 | 344 | "@babel/plugin-syntax-json-strings@^7.8.3": |
| 345 | - "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" | |
| 346 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" | |
| 347 | - "version" "7.8.3" | |
| 345 | + version "7.8.3" | |
| 346 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" | |
| 347 | + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== | |
| 348 | 348 | dependencies: |
| 349 | 349 | "@babel/helper-plugin-utils" "^7.8.0" |
| 350 | 350 | |
| 351 | 351 | "@babel/plugin-syntax-jsx@^7.22.5": |
| 352 | - "integrity" "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==" | |
| 353 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz" | |
| 354 | - "version" "7.22.5" | |
| 352 | + version "7.22.5" | |
| 353 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz" | |
| 354 | + integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== | |
| 355 | 355 | dependencies: |
| 356 | 356 | "@babel/helper-plugin-utils" "^7.22.5" |
| 357 | 357 | |
| 358 | 358 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": |
| 359 | - "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" | |
| 360 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" | |
| 361 | - "version" "7.10.4" | |
| 359 | + version "7.10.4" | |
| 360 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" | |
| 361 | + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== | |
| 362 | 362 | dependencies: |
| 363 | 363 | "@babel/helper-plugin-utils" "^7.10.4" |
| 364 | 364 | |
| 365 | 365 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": |
| 366 | - "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" | |
| 367 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" | |
| 368 | - "version" "7.8.3" | |
| 366 | + version "7.8.3" | |
| 367 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" | |
| 368 | + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== | |
| 369 | 369 | dependencies: |
| 370 | 370 | "@babel/helper-plugin-utils" "^7.8.0" |
| 371 | 371 | |
| 372 | 372 | "@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": |
| 373 | - "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" | |
| 374 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" | |
| 375 | - "version" "7.10.4" | |
| 373 | + version "7.10.4" | |
| 374 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" | |
| 375 | + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== | |
| 376 | 376 | dependencies: |
| 377 | 377 | "@babel/helper-plugin-utils" "^7.10.4" |
| 378 | 378 | |
| 379 | 379 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": |
| 380 | - "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" | |
| 381 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" | |
| 382 | - "version" "7.8.3" | |
| 380 | + version "7.8.3" | |
| 381 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" | |
| 382 | + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== | |
| 383 | 383 | dependencies: |
| 384 | 384 | "@babel/helper-plugin-utils" "^7.8.0" |
| 385 | 385 | |
| 386 | 386 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": |
| 387 | - "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" | |
| 388 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" | |
| 389 | - "version" "7.8.3" | |
| 387 | + version "7.8.3" | |
| 388 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" | |
| 389 | + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== | |
| 390 | 390 | dependencies: |
| 391 | 391 | "@babel/helper-plugin-utils" "^7.8.0" |
| 392 | 392 | |
| 393 | 393 | "@babel/plugin-syntax-optional-chaining@^7.8.3": |
| 394 | - "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" | |
| 395 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" | |
| 396 | - "version" "7.8.3" | |
| 394 | + version "7.8.3" | |
| 395 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" | |
| 396 | + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== | |
| 397 | 397 | dependencies: |
| 398 | 398 | "@babel/helper-plugin-utils" "^7.8.0" |
| 399 | 399 | |
| 400 | 400 | "@babel/plugin-syntax-private-property-in-object@^7.14.5": |
| 401 | - "integrity" "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" | |
| 402 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" | |
| 403 | - "version" "7.14.5" | |
| 401 | + version "7.14.5" | |
| 402 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" | |
| 403 | + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== | |
| 404 | 404 | dependencies: |
| 405 | 405 | "@babel/helper-plugin-utils" "^7.14.5" |
| 406 | 406 | |
| 407 | 407 | "@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": |
| 408 | - "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" | |
| 409 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" | |
| 410 | - "version" "7.14.5" | |
| 408 | + version "7.14.5" | |
| 409 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" | |
| 410 | + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== | |
| 411 | 411 | dependencies: |
| 412 | 412 | "@babel/helper-plugin-utils" "^7.14.5" |
| 413 | 413 | |
| 414 | 414 | "@babel/plugin-syntax-typescript@^7.22.5", "@babel/plugin-syntax-typescript@^7.7.2": |
| 415 | - "integrity" "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==" | |
| 416 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz" | |
| 417 | - "version" "7.22.5" | |
| 415 | + version "7.22.5" | |
| 416 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz" | |
| 417 | + integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== | |
| 418 | 418 | dependencies: |
| 419 | 419 | "@babel/helper-plugin-utils" "^7.22.5" |
| 420 | 420 | |
| 421 | 421 | "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": |
| 422 | - "integrity" "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" | |
| 423 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz" | |
| 424 | - "version" "7.18.6" | |
| 422 | + version "7.18.6" | |
| 423 | + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz" | |
| 424 | + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== | |
| 425 | 425 | dependencies: |
| 426 | 426 | "@babel/helper-create-regexp-features-plugin" "^7.18.6" |
| 427 | 427 | "@babel/helper-plugin-utils" "^7.18.6" |
| 428 | 428 | |
| 429 | 429 | "@babel/plugin-transform-arrow-functions@^7.22.5": |
| 430 | - "integrity" "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==" | |
| 431 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz" | |
| 432 | - "version" "7.22.5" | |
| 430 | + version "7.22.5" | |
| 431 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz" | |
| 432 | + integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== | |
| 433 | 433 | dependencies: |
| 434 | 434 | "@babel/helper-plugin-utils" "^7.22.5" |
| 435 | 435 | |
| 436 | 436 | "@babel/plugin-transform-async-generator-functions@^7.23.2": |
| 437 | - "integrity" "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" | |
| 438 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz" | |
| 439 | - "version" "7.23.2" | |
| 437 | + version "7.23.2" | |
| 438 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz" | |
| 439 | + integrity sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ== | |
| 440 | 440 | dependencies: |
| 441 | 441 | "@babel/helper-environment-visitor" "^7.22.20" |
| 442 | 442 | "@babel/helper-plugin-utils" "^7.22.5" |
| ... | ... | @@ -444,49 +444,49 @@ |
| 444 | 444 | "@babel/plugin-syntax-async-generators" "^7.8.4" |
| 445 | 445 | |
| 446 | 446 | "@babel/plugin-transform-async-to-generator@^7.22.5": |
| 447 | - "integrity" "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" | |
| 448 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz" | |
| 449 | - "version" "7.22.5" | |
| 447 | + version "7.22.5" | |
| 448 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz" | |
| 449 | + integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== | |
| 450 | 450 | dependencies: |
| 451 | 451 | "@babel/helper-module-imports" "^7.22.5" |
| 452 | 452 | "@babel/helper-plugin-utils" "^7.22.5" |
| 453 | 453 | "@babel/helper-remap-async-to-generator" "^7.22.5" |
| 454 | 454 | |
| 455 | 455 | "@babel/plugin-transform-block-scoped-functions@^7.22.5": |
| 456 | - "integrity" "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==" | |
| 457 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz" | |
| 458 | - "version" "7.22.5" | |
| 456 | + version "7.22.5" | |
| 457 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz" | |
| 458 | + integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== | |
| 459 | 459 | dependencies: |
| 460 | 460 | "@babel/helper-plugin-utils" "^7.22.5" |
| 461 | 461 | |
| 462 | 462 | "@babel/plugin-transform-block-scoping@^7.23.0": |
| 463 | - "integrity" "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==" | |
| 464 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz" | |
| 465 | - "version" "7.23.0" | |
| 463 | + version "7.23.0" | |
| 464 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz" | |
| 465 | + integrity sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g== | |
| 466 | 466 | dependencies: |
| 467 | 467 | "@babel/helper-plugin-utils" "^7.22.5" |
| 468 | 468 | |
| 469 | 469 | "@babel/plugin-transform-class-properties@^7.22.5": |
| 470 | - "integrity" "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==" | |
| 471 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz" | |
| 472 | - "version" "7.22.5" | |
| 470 | + version "7.22.5" | |
| 471 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz" | |
| 472 | + integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== | |
| 473 | 473 | dependencies: |
| 474 | 474 | "@babel/helper-create-class-features-plugin" "^7.22.5" |
| 475 | 475 | "@babel/helper-plugin-utils" "^7.22.5" |
| 476 | 476 | |
| 477 | 477 | "@babel/plugin-transform-class-static-block@^7.22.11": |
| 478 | - "integrity" "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==" | |
| 479 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz" | |
| 480 | - "version" "7.22.11" | |
| 478 | + version "7.22.11" | |
| 479 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz" | |
| 480 | + integrity sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g== | |
| 481 | 481 | dependencies: |
| 482 | 482 | "@babel/helper-create-class-features-plugin" "^7.22.11" |
| 483 | 483 | "@babel/helper-plugin-utils" "^7.22.5" |
| 484 | 484 | "@babel/plugin-syntax-class-static-block" "^7.14.5" |
| 485 | 485 | |
| 486 | 486 | "@babel/plugin-transform-classes@^7.22.15": |
| 487 | - "integrity" "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==" | |
| 488 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz" | |
| 489 | - "version" "7.22.15" | |
| 487 | + version "7.22.15" | |
| 488 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz" | |
| 489 | + integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw== | |
| 490 | 490 | dependencies: |
| 491 | 491 | "@babel/helper-annotate-as-pure" "^7.22.5" |
| 492 | 492 | "@babel/helper-compilation-targets" "^7.22.15" |
| ... | ... | @@ -496,129 +496,129 @@ |
| 496 | 496 | "@babel/helper-plugin-utils" "^7.22.5" |
| 497 | 497 | "@babel/helper-replace-supers" "^7.22.9" |
| 498 | 498 | "@babel/helper-split-export-declaration" "^7.22.6" |
| 499 | - "globals" "^11.1.0" | |
| 499 | + globals "^11.1.0" | |
| 500 | 500 | |
| 501 | 501 | "@babel/plugin-transform-computed-properties@^7.22.5": |
| 502 | - "integrity" "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==" | |
| 503 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz" | |
| 504 | - "version" "7.22.5" | |
| 502 | + version "7.22.5" | |
| 503 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz" | |
| 504 | + integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== | |
| 505 | 505 | dependencies: |
| 506 | 506 | "@babel/helper-plugin-utils" "^7.22.5" |
| 507 | 507 | "@babel/template" "^7.22.5" |
| 508 | 508 | |
| 509 | 509 | "@babel/plugin-transform-destructuring@^7.23.0": |
| 510 | - "integrity" "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==" | |
| 511 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz" | |
| 512 | - "version" "7.23.0" | |
| 510 | + version "7.23.0" | |
| 511 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz" | |
| 512 | + integrity sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg== | |
| 513 | 513 | dependencies: |
| 514 | 514 | "@babel/helper-plugin-utils" "^7.22.5" |
| 515 | 515 | |
| 516 | 516 | "@babel/plugin-transform-dotall-regex@^7.22.5": |
| 517 | - "integrity" "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==" | |
| 518 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz" | |
| 519 | - "version" "7.22.5" | |
| 517 | + version "7.22.5" | |
| 518 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz" | |
| 519 | + integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== | |
| 520 | 520 | dependencies: |
| 521 | 521 | "@babel/helper-create-regexp-features-plugin" "^7.22.5" |
| 522 | 522 | "@babel/helper-plugin-utils" "^7.22.5" |
| 523 | 523 | |
| 524 | 524 | "@babel/plugin-transform-duplicate-keys@^7.22.5": |
| 525 | - "integrity" "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==" | |
| 526 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz" | |
| 527 | - "version" "7.22.5" | |
| 525 | + version "7.22.5" | |
| 526 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz" | |
| 527 | + integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== | |
| 528 | 528 | dependencies: |
| 529 | 529 | "@babel/helper-plugin-utils" "^7.22.5" |
| 530 | 530 | |
| 531 | 531 | "@babel/plugin-transform-dynamic-import@^7.22.11": |
| 532 | - "integrity" "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==" | |
| 533 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz" | |
| 534 | - "version" "7.22.11" | |
| 532 | + version "7.22.11" | |
| 533 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz" | |
| 534 | + integrity sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA== | |
| 535 | 535 | dependencies: |
| 536 | 536 | "@babel/helper-plugin-utils" "^7.22.5" |
| 537 | 537 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" |
| 538 | 538 | |
| 539 | 539 | "@babel/plugin-transform-exponentiation-operator@^7.22.5": |
| 540 | - "integrity" "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==" | |
| 541 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz" | |
| 542 | - "version" "7.22.5" | |
| 540 | + version "7.22.5" | |
| 541 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz" | |
| 542 | + integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== | |
| 543 | 543 | dependencies: |
| 544 | 544 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" |
| 545 | 545 | "@babel/helper-plugin-utils" "^7.22.5" |
| 546 | 546 | |
| 547 | 547 | "@babel/plugin-transform-export-namespace-from@^7.22.11": |
| 548 | - "integrity" "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==" | |
| 549 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz" | |
| 550 | - "version" "7.22.11" | |
| 548 | + version "7.22.11" | |
| 549 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz" | |
| 550 | + integrity sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw== | |
| 551 | 551 | dependencies: |
| 552 | 552 | "@babel/helper-plugin-utils" "^7.22.5" |
| 553 | 553 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" |
| 554 | 554 | |
| 555 | 555 | "@babel/plugin-transform-for-of@^7.22.15": |
| 556 | - "integrity" "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==" | |
| 557 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz" | |
| 558 | - "version" "7.22.15" | |
| 556 | + version "7.22.15" | |
| 557 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz" | |
| 558 | + integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA== | |
| 559 | 559 | dependencies: |
| 560 | 560 | "@babel/helper-plugin-utils" "^7.22.5" |
| 561 | 561 | |
| 562 | 562 | "@babel/plugin-transform-function-name@^7.22.5": |
| 563 | - "integrity" "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==" | |
| 564 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz" | |
| 565 | - "version" "7.22.5" | |
| 563 | + version "7.22.5" | |
| 564 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz" | |
| 565 | + integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== | |
| 566 | 566 | dependencies: |
| 567 | 567 | "@babel/helper-compilation-targets" "^7.22.5" |
| 568 | 568 | "@babel/helper-function-name" "^7.22.5" |
| 569 | 569 | "@babel/helper-plugin-utils" "^7.22.5" |
| 570 | 570 | |
| 571 | 571 | "@babel/plugin-transform-json-strings@^7.22.11": |
| 572 | - "integrity" "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==" | |
| 573 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz" | |
| 574 | - "version" "7.22.11" | |
| 572 | + version "7.22.11" | |
| 573 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz" | |
| 574 | + integrity sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw== | |
| 575 | 575 | dependencies: |
| 576 | 576 | "@babel/helper-plugin-utils" "^7.22.5" |
| 577 | 577 | "@babel/plugin-syntax-json-strings" "^7.8.3" |
| 578 | 578 | |
| 579 | 579 | "@babel/plugin-transform-literals@^7.22.5": |
| 580 | - "integrity" "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==" | |
| 581 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz" | |
| 582 | - "version" "7.22.5" | |
| 580 | + version "7.22.5" | |
| 581 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz" | |
| 582 | + integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== | |
| 583 | 583 | dependencies: |
| 584 | 584 | "@babel/helper-plugin-utils" "^7.22.5" |
| 585 | 585 | |
| 586 | 586 | "@babel/plugin-transform-logical-assignment-operators@^7.22.11": |
| 587 | - "integrity" "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==" | |
| 588 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz" | |
| 589 | - "version" "7.22.11" | |
| 587 | + version "7.22.11" | |
| 588 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz" | |
| 589 | + integrity sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ== | |
| 590 | 590 | dependencies: |
| 591 | 591 | "@babel/helper-plugin-utils" "^7.22.5" |
| 592 | 592 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" |
| 593 | 593 | |
| 594 | 594 | "@babel/plugin-transform-member-expression-literals@^7.22.5": |
| 595 | - "integrity" "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==" | |
| 596 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz" | |
| 597 | - "version" "7.22.5" | |
| 595 | + version "7.22.5" | |
| 596 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz" | |
| 597 | + integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== | |
| 598 | 598 | dependencies: |
| 599 | 599 | "@babel/helper-plugin-utils" "^7.22.5" |
| 600 | 600 | |
| 601 | 601 | "@babel/plugin-transform-modules-amd@^7.23.0": |
| 602 | - "integrity" "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==" | |
| 603 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz" | |
| 604 | - "version" "7.23.0" | |
| 602 | + version "7.23.0" | |
| 603 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz" | |
| 604 | + integrity sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw== | |
| 605 | 605 | dependencies: |
| 606 | 606 | "@babel/helper-module-transforms" "^7.23.0" |
| 607 | 607 | "@babel/helper-plugin-utils" "^7.22.5" |
| 608 | 608 | |
| 609 | 609 | "@babel/plugin-transform-modules-commonjs@^7.23.0": |
| 610 | - "integrity" "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==" | |
| 611 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz" | |
| 612 | - "version" "7.23.0" | |
| 610 | + version "7.23.0" | |
| 611 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz" | |
| 612 | + integrity sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ== | |
| 613 | 613 | dependencies: |
| 614 | 614 | "@babel/helper-module-transforms" "^7.23.0" |
| 615 | 615 | "@babel/helper-plugin-utils" "^7.22.5" |
| 616 | 616 | "@babel/helper-simple-access" "^7.22.5" |
| 617 | 617 | |
| 618 | 618 | "@babel/plugin-transform-modules-systemjs@^7.23.0": |
| 619 | - "integrity" "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==" | |
| 620 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz" | |
| 621 | - "version" "7.23.0" | |
| 619 | + version "7.23.0" | |
| 620 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz" | |
| 621 | + integrity sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg== | |
| 622 | 622 | dependencies: |
| 623 | 623 | "@babel/helper-hoist-variables" "^7.22.5" |
| 624 | 624 | "@babel/helper-module-transforms" "^7.23.0" |
| ... | ... | @@ -626,48 +626,48 @@ |
| 626 | 626 | "@babel/helper-validator-identifier" "^7.22.20" |
| 627 | 627 | |
| 628 | 628 | "@babel/plugin-transform-modules-umd@^7.22.5": |
| 629 | - "integrity" "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==" | |
| 630 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz" | |
| 631 | - "version" "7.22.5" | |
| 629 | + version "7.22.5" | |
| 630 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz" | |
| 631 | + integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== | |
| 632 | 632 | dependencies: |
| 633 | 633 | "@babel/helper-module-transforms" "^7.22.5" |
| 634 | 634 | "@babel/helper-plugin-utils" "^7.22.5" |
| 635 | 635 | |
| 636 | 636 | "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": |
| 637 | - "integrity" "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" | |
| 638 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz" | |
| 639 | - "version" "7.22.5" | |
| 637 | + version "7.22.5" | |
| 638 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz" | |
| 639 | + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== | |
| 640 | 640 | dependencies: |
| 641 | 641 | "@babel/helper-create-regexp-features-plugin" "^7.22.5" |
| 642 | 642 | "@babel/helper-plugin-utils" "^7.22.5" |
| 643 | 643 | |
| 644 | 644 | "@babel/plugin-transform-new-target@^7.22.5": |
| 645 | - "integrity" "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==" | |
| 646 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz" | |
| 647 | - "version" "7.22.5" | |
| 645 | + version "7.22.5" | |
| 646 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz" | |
| 647 | + integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== | |
| 648 | 648 | dependencies: |
| 649 | 649 | "@babel/helper-plugin-utils" "^7.22.5" |
| 650 | 650 | |
| 651 | 651 | "@babel/plugin-transform-nullish-coalescing-operator@^7.22.11": |
| 652 | - "integrity" "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==" | |
| 653 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz" | |
| 654 | - "version" "7.22.11" | |
| 652 | + version "7.22.11" | |
| 653 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz" | |
| 654 | + integrity sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg== | |
| 655 | 655 | dependencies: |
| 656 | 656 | "@babel/helper-plugin-utils" "^7.22.5" |
| 657 | 657 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" |
| 658 | 658 | |
| 659 | 659 | "@babel/plugin-transform-numeric-separator@^7.22.11": |
| 660 | - "integrity" "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==" | |
| 661 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz" | |
| 662 | - "version" "7.22.11" | |
| 660 | + version "7.22.11" | |
| 661 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz" | |
| 662 | + integrity sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg== | |
| 663 | 663 | dependencies: |
| 664 | 664 | "@babel/helper-plugin-utils" "^7.22.5" |
| 665 | 665 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" |
| 666 | 666 | |
| 667 | 667 | "@babel/plugin-transform-object-rest-spread@^7.22.15": |
| 668 | - "integrity" "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==" | |
| 669 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz" | |
| 670 | - "version" "7.22.15" | |
| 668 | + version "7.22.15" | |
| 669 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz" | |
| 670 | + integrity sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q== | |
| 671 | 671 | dependencies: |
| 672 | 672 | "@babel/compat-data" "^7.22.9" |
| 673 | 673 | "@babel/helper-compilation-targets" "^7.22.15" |
| ... | ... | @@ -676,49 +676,49 @@ |
| 676 | 676 | "@babel/plugin-transform-parameters" "^7.22.15" |
| 677 | 677 | |
| 678 | 678 | "@babel/plugin-transform-object-super@^7.22.5": |
| 679 | - "integrity" "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==" | |
| 680 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz" | |
| 681 | - "version" "7.22.5" | |
| 679 | + version "7.22.5" | |
| 680 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz" | |
| 681 | + integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== | |
| 682 | 682 | dependencies: |
| 683 | 683 | "@babel/helper-plugin-utils" "^7.22.5" |
| 684 | 684 | "@babel/helper-replace-supers" "^7.22.5" |
| 685 | 685 | |
| 686 | 686 | "@babel/plugin-transform-optional-catch-binding@^7.22.11": |
| 687 | - "integrity" "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==" | |
| 688 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz" | |
| 689 | - "version" "7.22.11" | |
| 687 | + version "7.22.11" | |
| 688 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz" | |
| 689 | + integrity sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ== | |
| 690 | 690 | dependencies: |
| 691 | 691 | "@babel/helper-plugin-utils" "^7.22.5" |
| 692 | 692 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" |
| 693 | 693 | |
| 694 | 694 | "@babel/plugin-transform-optional-chaining@^7.22.15", "@babel/plugin-transform-optional-chaining@^7.23.0": |
| 695 | - "integrity" "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==" | |
| 696 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz" | |
| 697 | - "version" "7.23.0" | |
| 695 | + version "7.23.0" | |
| 696 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz" | |
| 697 | + integrity sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g== | |
| 698 | 698 | dependencies: |
| 699 | 699 | "@babel/helper-plugin-utils" "^7.22.5" |
| 700 | 700 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" |
| 701 | 701 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" |
| 702 | 702 | |
| 703 | 703 | "@babel/plugin-transform-parameters@^7.22.15": |
| 704 | - "integrity" "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==" | |
| 705 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz" | |
| 706 | - "version" "7.22.15" | |
| 704 | + version "7.22.15" | |
| 705 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz" | |
| 706 | + integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ== | |
| 707 | 707 | dependencies: |
| 708 | 708 | "@babel/helper-plugin-utils" "^7.22.5" |
| 709 | 709 | |
| 710 | 710 | "@babel/plugin-transform-private-methods@^7.22.5": |
| 711 | - "integrity" "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==" | |
| 712 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz" | |
| 713 | - "version" "7.22.5" | |
| 711 | + version "7.22.5" | |
| 712 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz" | |
| 713 | + integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== | |
| 714 | 714 | dependencies: |
| 715 | 715 | "@babel/helper-create-class-features-plugin" "^7.22.5" |
| 716 | 716 | "@babel/helper-plugin-utils" "^7.22.5" |
| 717 | 717 | |
| 718 | 718 | "@babel/plugin-transform-private-property-in-object@^7.22.11": |
| 719 | - "integrity" "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==" | |
| 720 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz" | |
| 721 | - "version" "7.22.11" | |
| 719 | + version "7.22.11" | |
| 720 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz" | |
| 721 | + integrity sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ== | |
| 722 | 722 | dependencies: |
| 723 | 723 | "@babel/helper-annotate-as-pure" "^7.22.5" |
| 724 | 724 | "@babel/helper-create-class-features-plugin" "^7.22.11" |
| ... | ... | @@ -726,67 +726,67 @@ |
| 726 | 726 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" |
| 727 | 727 | |
| 728 | 728 | "@babel/plugin-transform-property-literals@^7.22.5": |
| 729 | - "integrity" "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==" | |
| 730 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz" | |
| 731 | - "version" "7.22.5" | |
| 729 | + version "7.22.5" | |
| 730 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz" | |
| 731 | + integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== | |
| 732 | 732 | dependencies: |
| 733 | 733 | "@babel/helper-plugin-utils" "^7.22.5" |
| 734 | 734 | |
| 735 | 735 | "@babel/plugin-transform-regenerator@^7.22.10": |
| 736 | - "integrity" "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==" | |
| 737 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz" | |
| 738 | - "version" "7.22.10" | |
| 736 | + version "7.22.10" | |
| 737 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz" | |
| 738 | + integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== | |
| 739 | 739 | dependencies: |
| 740 | 740 | "@babel/helper-plugin-utils" "^7.22.5" |
| 741 | - "regenerator-transform" "^0.15.2" | |
| 741 | + regenerator-transform "^0.15.2" | |
| 742 | 742 | |
| 743 | 743 | "@babel/plugin-transform-reserved-words@^7.22.5": |
| 744 | - "integrity" "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==" | |
| 745 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz" | |
| 746 | - "version" "7.22.5" | |
| 744 | + version "7.22.5" | |
| 745 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz" | |
| 746 | + integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== | |
| 747 | 747 | dependencies: |
| 748 | 748 | "@babel/helper-plugin-utils" "^7.22.5" |
| 749 | 749 | |
| 750 | 750 | "@babel/plugin-transform-shorthand-properties@^7.22.5": |
| 751 | - "integrity" "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==" | |
| 752 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz" | |
| 753 | - "version" "7.22.5" | |
| 751 | + version "7.22.5" | |
| 752 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz" | |
| 753 | + integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== | |
| 754 | 754 | dependencies: |
| 755 | 755 | "@babel/helper-plugin-utils" "^7.22.5" |
| 756 | 756 | |
| 757 | 757 | "@babel/plugin-transform-spread@^7.22.5": |
| 758 | - "integrity" "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==" | |
| 759 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz" | |
| 760 | - "version" "7.22.5" | |
| 758 | + version "7.22.5" | |
| 759 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz" | |
| 760 | + integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== | |
| 761 | 761 | dependencies: |
| 762 | 762 | "@babel/helper-plugin-utils" "^7.22.5" |
| 763 | 763 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" |
| 764 | 764 | |
| 765 | 765 | "@babel/plugin-transform-sticky-regex@^7.22.5": |
| 766 | - "integrity" "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==" | |
| 767 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz" | |
| 768 | - "version" "7.22.5" | |
| 766 | + version "7.22.5" | |
| 767 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz" | |
| 768 | + integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== | |
| 769 | 769 | dependencies: |
| 770 | 770 | "@babel/helper-plugin-utils" "^7.22.5" |
| 771 | 771 | |
| 772 | 772 | "@babel/plugin-transform-template-literals@^7.22.5": |
| 773 | - "integrity" "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==" | |
| 774 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz" | |
| 775 | - "version" "7.22.5" | |
| 773 | + version "7.22.5" | |
| 774 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz" | |
| 775 | + integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== | |
| 776 | 776 | dependencies: |
| 777 | 777 | "@babel/helper-plugin-utils" "^7.22.5" |
| 778 | 778 | |
| 779 | 779 | "@babel/plugin-transform-typeof-symbol@^7.22.5": |
| 780 | - "integrity" "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==" | |
| 781 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz" | |
| 782 | - "version" "7.22.5" | |
| 780 | + version "7.22.5" | |
| 781 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz" | |
| 782 | + integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== | |
| 783 | 783 | dependencies: |
| 784 | 784 | "@babel/helper-plugin-utils" "^7.22.5" |
| 785 | 785 | |
| 786 | 786 | "@babel/plugin-transform-typescript@^7.20.7", "@babel/plugin-transform-typescript@^7.22.10": |
| 787 | - "integrity" "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==" | |
| 788 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz" | |
| 789 | - "version" "7.22.15" | |
| 787 | + version "7.22.15" | |
| 788 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz" | |
| 789 | + integrity sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA== | |
| 790 | 790 | dependencies: |
| 791 | 791 | "@babel/helper-annotate-as-pure" "^7.22.5" |
| 792 | 792 | "@babel/helper-create-class-features-plugin" "^7.22.15" |
| ... | ... | @@ -794,40 +794,40 @@ |
| 794 | 794 | "@babel/plugin-syntax-typescript" "^7.22.5" |
| 795 | 795 | |
| 796 | 796 | "@babel/plugin-transform-unicode-escapes@^7.22.10": |
| 797 | - "integrity" "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==" | |
| 798 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz" | |
| 799 | - "version" "7.22.10" | |
| 797 | + version "7.22.10" | |
| 798 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz" | |
| 799 | + integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== | |
| 800 | 800 | dependencies: |
| 801 | 801 | "@babel/helper-plugin-utils" "^7.22.5" |
| 802 | 802 | |
| 803 | 803 | "@babel/plugin-transform-unicode-property-regex@^7.22.5": |
| 804 | - "integrity" "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==" | |
| 805 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz" | |
| 806 | - "version" "7.22.5" | |
| 804 | + version "7.22.5" | |
| 805 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz" | |
| 806 | + integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== | |
| 807 | 807 | dependencies: |
| 808 | 808 | "@babel/helper-create-regexp-features-plugin" "^7.22.5" |
| 809 | 809 | "@babel/helper-plugin-utils" "^7.22.5" |
| 810 | 810 | |
| 811 | 811 | "@babel/plugin-transform-unicode-regex@^7.22.5": |
| 812 | - "integrity" "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==" | |
| 813 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz" | |
| 814 | - "version" "7.22.5" | |
| 812 | + version "7.22.5" | |
| 813 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz" | |
| 814 | + integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== | |
| 815 | 815 | dependencies: |
| 816 | 816 | "@babel/helper-create-regexp-features-plugin" "^7.22.5" |
| 817 | 817 | "@babel/helper-plugin-utils" "^7.22.5" |
| 818 | 818 | |
| 819 | 819 | "@babel/plugin-transform-unicode-sets-regex@^7.22.5": |
| 820 | - "integrity" "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==" | |
| 821 | - "resolved" "https://registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz" | |
| 822 | - "version" "7.22.5" | |
| 820 | + version "7.22.5" | |
| 821 | + resolved "https://registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz" | |
| 822 | + integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== | |
| 823 | 823 | dependencies: |
| 824 | 824 | "@babel/helper-create-regexp-features-plugin" "^7.22.5" |
| 825 | 825 | "@babel/helper-plugin-utils" "^7.22.5" |
| 826 | 826 | |
| 827 | 827 | "@babel/preset-env@^7.22.9": |
| 828 | - "integrity" "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" | |
| 829 | - "resolved" "https://registry.npmmirror.com/@babel/preset-env/-/preset-env-7.23.2.tgz" | |
| 830 | - "version" "7.23.2" | |
| 828 | + version "7.23.2" | |
| 829 | + resolved "https://registry.npmmirror.com/@babel/preset-env/-/preset-env-7.23.2.tgz" | |
| 830 | + integrity sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ== | |
| 831 | 831 | dependencies: |
| 832 | 832 | "@babel/compat-data" "^7.23.2" |
| 833 | 833 | "@babel/helper-compilation-targets" "^7.22.15" |
| ... | ... | @@ -904,46 +904,46 @@ |
| 904 | 904 | "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" |
| 905 | 905 | "@babel/preset-modules" "0.1.6-no-external-plugins" |
| 906 | 906 | "@babel/types" "^7.23.0" |
| 907 | - "babel-plugin-polyfill-corejs2" "^0.4.6" | |
| 908 | - "babel-plugin-polyfill-corejs3" "^0.8.5" | |
| 909 | - "babel-plugin-polyfill-regenerator" "^0.5.3" | |
| 910 | - "core-js-compat" "^3.31.0" | |
| 911 | - "semver" "^6.3.1" | |
| 907 | + babel-plugin-polyfill-corejs2 "^0.4.6" | |
| 908 | + babel-plugin-polyfill-corejs3 "^0.8.5" | |
| 909 | + babel-plugin-polyfill-regenerator "^0.5.3" | |
| 910 | + core-js-compat "^3.31.0" | |
| 911 | + semver "^6.3.1" | |
| 912 | 912 | |
| 913 | 913 | "@babel/preset-modules@0.1.6-no-external-plugins": |
| 914 | - "integrity" "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" | |
| 915 | - "resolved" "https://registry.npmmirror.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz" | |
| 916 | - "version" "0.1.6-no-external-plugins" | |
| 914 | + version "0.1.6-no-external-plugins" | |
| 915 | + resolved "https://registry.npmmirror.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz" | |
| 916 | + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== | |
| 917 | 917 | dependencies: |
| 918 | 918 | "@babel/helper-plugin-utils" "^7.0.0" |
| 919 | 919 | "@babel/types" "^7.4.4" |
| 920 | - "esutils" "^2.0.2" | |
| 920 | + esutils "^2.0.2" | |
| 921 | 921 | |
| 922 | 922 | "@babel/regjsgen@^0.8.0": |
| 923 | - "integrity" "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" | |
| 924 | - "resolved" "https://registry.npmmirror.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz" | |
| 925 | - "version" "0.8.0" | |
| 923 | + version "0.8.0" | |
| 924 | + resolved "https://registry.npmmirror.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz" | |
| 925 | + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== | |
| 926 | 926 | |
| 927 | 927 | "@babel/runtime@^7.17.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4": |
| 928 | - "integrity" "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" | |
| 929 | - "resolved" "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.23.2.tgz" | |
| 930 | - "version" "7.23.2" | |
| 928 | + version "7.23.2" | |
| 929 | + resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.23.2.tgz" | |
| 930 | + integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg== | |
| 931 | 931 | dependencies: |
| 932 | - "regenerator-runtime" "^0.14.0" | |
| 932 | + regenerator-runtime "^0.14.0" | |
| 933 | 933 | |
| 934 | 934 | "@babel/template@^7.22.15", "@babel/template@^7.22.5", "@babel/template@^7.3.3": |
| 935 | - "integrity" "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" | |
| 936 | - "resolved" "https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz" | |
| 937 | - "version" "7.22.15" | |
| 935 | + version "7.22.15" | |
| 936 | + resolved "https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz" | |
| 937 | + integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== | |
| 938 | 938 | dependencies: |
| 939 | 939 | "@babel/code-frame" "^7.22.13" |
| 940 | 940 | "@babel/parser" "^7.22.15" |
| 941 | 941 | "@babel/types" "^7.22.15" |
| 942 | 942 | |
| 943 | 943 | "@babel/traverse@^7.22.5", "@babel/traverse@^7.23.2", "@babel/traverse@^7.7.2": |
| 944 | - "integrity" "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==" | |
| 945 | - "resolved" "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.23.2.tgz" | |
| 946 | - "version" "7.23.2" | |
| 944 | + version "7.23.2" | |
| 945 | + resolved "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.23.2.tgz" | |
| 946 | + integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw== | |
| 947 | 947 | dependencies: |
| 948 | 948 | "@babel/code-frame" "^7.22.13" |
| 949 | 949 | "@babel/generator" "^7.23.0" |
| ... | ... | @@ -953,45 +953,45 @@ |
| 953 | 953 | "@babel/helper-split-export-declaration" "^7.22.6" |
| 954 | 954 | "@babel/parser" "^7.23.0" |
| 955 | 955 | "@babel/types" "^7.23.0" |
| 956 | - "debug" "^4.1.0" | |
| 957 | - "globals" "^11.1.0" | |
| 956 | + debug "^4.1.0" | |
| 957 | + globals "^11.1.0" | |
| 958 | 958 | |
| 959 | 959 | "@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": |
| 960 | - "integrity" "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==" | |
| 961 | - "resolved" "https://registry.npmmirror.com/@babel/types/-/types-7.23.0.tgz" | |
| 962 | - "version" "7.23.0" | |
| 960 | + version "7.23.0" | |
| 961 | + resolved "https://registry.npmmirror.com/@babel/types/-/types-7.23.0.tgz" | |
| 962 | + integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== | |
| 963 | 963 | dependencies: |
| 964 | 964 | "@babel/helper-string-parser" "^7.22.5" |
| 965 | 965 | "@babel/helper-validator-identifier" "^7.22.20" |
| 966 | - "to-fast-properties" "^2.0.0" | |
| 966 | + to-fast-properties "^2.0.0" | |
| 967 | 967 | |
| 968 | 968 | "@bcoe/v8-coverage@^0.2.3": |
| 969 | - "integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" | |
| 970 | - "resolved" "https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" | |
| 971 | - "version" "0.2.3" | |
| 969 | + version "0.2.3" | |
| 970 | + resolved "https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" | |
| 971 | + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== | |
| 972 | 972 | |
| 973 | 973 | "@dcloudio/types@^3.3.2": |
| 974 | - "integrity" "sha512-WzQGX06z2+HU3HnOO+/DxX37jyUECSXCuI7GVjFXs10+ZExTbdouwQXZvH8hR7k/FjuXFjQKHV9fuvfexyXluw==" | |
| 975 | - "resolved" "https://registry.npmmirror.com/@dcloudio/types/-/types-3.4.3.tgz" | |
| 976 | - "version" "3.4.3" | |
| 974 | + version "3.4.3" | |
| 975 | + resolved "https://registry.npmmirror.com/@dcloudio/types/-/types-3.4.3.tgz" | |
| 976 | + integrity sha512-WzQGX06z2+HU3HnOO+/DxX37jyUECSXCuI7GVjFXs10+ZExTbdouwQXZvH8hR7k/FjuXFjQKHV9fuvfexyXluw== | |
| 977 | 977 | |
| 978 | 978 | "@dcloudio/uni-app-plus@^3.0.0-3090620231104002": |
| 979 | - "integrity" "sha512-L4+OgMQYKP6R7TXFBl0OiYKa0Ys/X9TbDHERFOe0IFYeuDCLbXpWU3k8zRCTOAmtRVNAulBIaet++YpxkpR/pw==" | |
| 980 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-app-plus/-/uni-app-plus-3.0.0-3090620231104002.tgz" | |
| 981 | - "version" "3.0.0-3090620231104002" | |
| 979 | + version "3.0.0-3090620231104002" | |
| 980 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-app-plus/-/uni-app-plus-3.0.0-3090620231104002.tgz" | |
| 981 | + integrity sha512-L4+OgMQYKP6R7TXFBl0OiYKa0Ys/X9TbDHERFOe0IFYeuDCLbXpWU3k8zRCTOAmtRVNAulBIaet++YpxkpR/pw== | |
| 982 | 982 | dependencies: |
| 983 | 983 | "@dcloudio/uni-app-uts" "3.0.0-3090620231104002" |
| 984 | 984 | "@dcloudio/uni-app-vite" "3.0.0-3090620231104002" |
| 985 | 985 | "@dcloudio/uni-app-vue" "3.0.0-3090620231104002" |
| 986 | - "debug" "^4.3.3" | |
| 987 | - "fs-extra" "^10.0.0" | |
| 988 | - "licia" "^1.29.0" | |
| 989 | - "postcss-selector-parser" "^6.0.6" | |
| 986 | + debug "^4.3.3" | |
| 987 | + fs-extra "^10.0.0" | |
| 988 | + licia "^1.29.0" | |
| 989 | + postcss-selector-parser "^6.0.6" | |
| 990 | 990 | |
| 991 | 991 | "@dcloudio/uni-app-uts@3.0.0-3090620231104002": |
| 992 | - "integrity" "sha512-FmRfACUhmQ0YBa5OcQc/pOG75Sph/GyxK/LzY2y+5vJGt+Q1/qWA1I99vcCU6o0iZfZcKOz0pGq5hLGbInVRzA==" | |
| 993 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-app-uts/-/uni-app-uts-3.0.0-3090620231104002.tgz" | |
| 994 | - "version" "3.0.0-3090620231104002" | |
| 992 | + version "3.0.0-3090620231104002" | |
| 993 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-app-uts/-/uni-app-uts-3.0.0-3090620231104002.tgz" | |
| 994 | + integrity sha512-FmRfACUhmQ0YBa5OcQc/pOG75Sph/GyxK/LzY2y+5vJGt+Q1/qWA1I99vcCU6o0iZfZcKOz0pGq5hLGbInVRzA== | |
| 995 | 995 | dependencies: |
| 996 | 996 | "@babel/parser" "^7.16.4" |
| 997 | 997 | "@babel/types" "^7.20.7" |
| ... | ... | @@ -1005,17 +1005,17 @@ |
| 1005 | 1005 | "@vue/compiler-core" "3.2.47" |
| 1006 | 1006 | "@vue/compiler-sfc" "3.2.47" |
| 1007 | 1007 | "@vue/shared" "3.2.47" |
| 1008 | - "debug" "^4.3.3" | |
| 1009 | - "es-module-lexer" "^1.2.1" | |
| 1010 | - "estree-walker" "^2.0.2" | |
| 1011 | - "fs-extra" "^10.0.0" | |
| 1012 | - "picocolors" "^1.0.0" | |
| 1013 | - "source-map-js" "^1.0.2" | |
| 1008 | + debug "^4.3.3" | |
| 1009 | + es-module-lexer "^1.2.1" | |
| 1010 | + estree-walker "^2.0.2" | |
| 1011 | + fs-extra "^10.0.0" | |
| 1012 | + picocolors "^1.0.0" | |
| 1013 | + source-map-js "^1.0.2" | |
| 1014 | 1014 | |
| 1015 | 1015 | "@dcloudio/uni-app-vite@3.0.0-3090620231104002": |
| 1016 | - "integrity" "sha512-BMLfPOE3OtVlikug1Yl2YpmE6ZbEZ+NkMToHhwf5xtG0mkSdT8Gpan5oM1oR3S4SNZK9M8AotCcs/nZq9y28gQ==" | |
| 1017 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-app-vite/-/uni-app-vite-3.0.0-3090620231104002.tgz" | |
| 1018 | - "version" "3.0.0-3090620231104002" | |
| 1016 | + version "3.0.0-3090620231104002" | |
| 1017 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-app-vite/-/uni-app-vite-3.0.0-3090620231104002.tgz" | |
| 1018 | + integrity sha512-BMLfPOE3OtVlikug1Yl2YpmE6ZbEZ+NkMToHhwf5xtG0mkSdT8Gpan5oM1oR3S4SNZK9M8AotCcs/nZq9y28gQ== | |
| 1019 | 1019 | dependencies: |
| 1020 | 1020 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1021 | 1021 | "@dcloudio/uni-i18n" "3.0.0-3090620231104002" |
| ... | ... | @@ -1025,19 +1025,19 @@ |
| 1025 | 1025 | "@vitejs/plugin-vue" "^4.2.1" |
| 1026 | 1026 | "@vue/compiler-dom" "3.2.47" |
| 1027 | 1027 | "@vue/compiler-sfc" "3.2.47" |
| 1028 | - "debug" "^4.3.3" | |
| 1029 | - "fs-extra" "^10.0.0" | |
| 1030 | - "picocolors" "^1.0.0" | |
| 1028 | + debug "^4.3.3" | |
| 1029 | + fs-extra "^10.0.0" | |
| 1030 | + picocolors "^1.0.0" | |
| 1031 | 1031 | |
| 1032 | 1032 | "@dcloudio/uni-app-vue@3.0.0-3090620231104002": |
| 1033 | - "integrity" "sha512-tgBW6MyOU5L7+a6gPaG/i+FxWBOvkaV9m9OisLFYqz8FuU/miF8DYNh4ohx4qn08SfTqWLrz7dqmPzaFOaAHQg==" | |
| 1034 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-app-vue/-/uni-app-vue-3.0.0-3090620231104002.tgz" | |
| 1035 | - "version" "3.0.0-3090620231104002" | |
| 1033 | + version "3.0.0-3090620231104002" | |
| 1034 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-app-vue/-/uni-app-vue-3.0.0-3090620231104002.tgz" | |
| 1035 | + integrity sha512-tgBW6MyOU5L7+a6gPaG/i+FxWBOvkaV9m9OisLFYqz8FuU/miF8DYNh4ohx4qn08SfTqWLrz7dqmPzaFOaAHQg== | |
| 1036 | 1036 | |
| 1037 | 1037 | "@dcloudio/uni-app@3.0.0-3090620231104002": |
| 1038 | - "integrity" "sha512-pviEQgc7mlwX/lJzV3R6yhV3V+fufwtFAnkvjavcz2tdHKECpMhl3MXV9J78s7b0xFQPdEMMpKyyKwX7xRnukQ==" | |
| 1039 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-app/-/uni-app-3.0.0-3090620231104002.tgz" | |
| 1040 | - "version" "3.0.0-3090620231104002" | |
| 1038 | + version "3.0.0-3090620231104002" | |
| 1039 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-app/-/uni-app-3.0.0-3090620231104002.tgz" | |
| 1040 | + integrity sha512-pviEQgc7mlwX/lJzV3R6yhV3V+fufwtFAnkvjavcz2tdHKECpMhl3MXV9J78s7b0xFQPdEMMpKyyKwX7xRnukQ== | |
| 1041 | 1041 | dependencies: |
| 1042 | 1042 | "@dcloudio/uni-cloud" "3.0.0-3090620231104002" |
| 1043 | 1043 | "@dcloudio/uni-components" "3.0.0-3090620231104002" |
| ... | ... | @@ -1048,26 +1048,26 @@ |
| 1048 | 1048 | "@vue/shared" "3.2.47" |
| 1049 | 1049 | |
| 1050 | 1050 | "@dcloudio/uni-automator@3.0.0-3090620231104002": |
| 1051 | - "integrity" "sha512-AWB02rFplXUeOGpfE5TVsBe8YJyTE45AL0EEZOADOpRybi0fKWXEGbLf9rX/osc94Eba/Ozqg0fWLY8sfelsfw==" | |
| 1052 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-automator/-/uni-automator-3.0.0-3090620231104002.tgz" | |
| 1053 | - "version" "3.0.0-3090620231104002" | |
| 1051 | + version "3.0.0-3090620231104002" | |
| 1052 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-automator/-/uni-automator-3.0.0-3090620231104002.tgz" | |
| 1053 | + integrity sha512-AWB02rFplXUeOGpfE5TVsBe8YJyTE45AL0EEZOADOpRybi0fKWXEGbLf9rX/osc94Eba/Ozqg0fWLY8sfelsfw== | |
| 1054 | 1054 | dependencies: |
| 1055 | 1055 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1056 | - "address" "^1.1.2" | |
| 1057 | - "cross-env" "^7.0.3" | |
| 1058 | - "debug" "^4.3.3" | |
| 1059 | - "default-gateway" "^6.0.3" | |
| 1060 | - "fs-extra" "^10.0.0" | |
| 1061 | - "jsonc-parser" "^3.2.0" | |
| 1062 | - "licia" "^1.29.0" | |
| 1063 | - "qrcode-reader" "^1.0.4" | |
| 1064 | - "qrcode-terminal" "^0.12.0" | |
| 1065 | - "ws" "^8.4.2" | |
| 1056 | + address "^1.1.2" | |
| 1057 | + cross-env "^7.0.3" | |
| 1058 | + debug "^4.3.3" | |
| 1059 | + default-gateway "^6.0.3" | |
| 1060 | + fs-extra "^10.0.0" | |
| 1061 | + jsonc-parser "^3.2.0" | |
| 1062 | + licia "^1.29.0" | |
| 1063 | + qrcode-reader "^1.0.4" | |
| 1064 | + qrcode-terminal "^0.12.0" | |
| 1065 | + ws "^8.4.2" | |
| 1066 | 1066 | |
| 1067 | 1067 | "@dcloudio/uni-cli-shared@3.0.0-3090620231104002": |
| 1068 | - "integrity" "sha512-NN23PrQ4cTon7mUhDpU7WBUCWwXGv3YCyN8484tkeFv/8RgoYj6sQH5wzvf20XirA4k0Ne8G8yDF9TkPPffyeQ==" | |
| 1069 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-cli-shared/-/uni-cli-shared-3.0.0-3090620231104002.tgz" | |
| 1070 | - "version" "3.0.0-3090620231104002" | |
| 1068 | + version "3.0.0-3090620231104002" | |
| 1069 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-cli-shared/-/uni-cli-shared-3.0.0-3090620231104002.tgz" | |
| 1070 | + integrity sha512-NN23PrQ4cTon7mUhDpU7WBUCWwXGv3YCyN8484tkeFv/8RgoYj6sQH5wzvf20XirA4k0Ne8G8yDF9TkPPffyeQ== | |
| 1071 | 1071 | dependencies: |
| 1072 | 1072 | "@ampproject/remapping" "^2.1.2" |
| 1073 | 1073 | "@babel/core" "^7.21.3" |
| ... | ... | @@ -1084,56 +1084,56 @@ |
| 1084 | 1084 | "@vue/compiler-sfc" "3.2.47" |
| 1085 | 1085 | "@vue/server-renderer" "3.2.47" |
| 1086 | 1086 | "@vue/shared" "3.2.47" |
| 1087 | - "autoprefixer" "^10.4.14" | |
| 1088 | - "base64url" "^3.0.1" | |
| 1089 | - "chokidar" "^3.5.3" | |
| 1090 | - "compare-versions" "^3.6.0" | |
| 1091 | - "debug" "^4.3.3" | |
| 1092 | - "es-module-lexer" "^1.2.1" | |
| 1093 | - "esbuild" "^0.17.5" | |
| 1094 | - "estree-walker" "^2.0.2" | |
| 1095 | - "fast-glob" "^3.2.11" | |
| 1096 | - "fs-extra" "^10.0.0" | |
| 1097 | - "hash-sum" "^2.0.0" | |
| 1098 | - "jsonc-parser" "^3.0.0" | |
| 1099 | - "magic-string" "^0.30.0" | |
| 1100 | - "merge" "^2.1.1" | |
| 1101 | - "mime" "^3.0.0" | |
| 1102 | - "module-alias" "^2.2.2" | |
| 1103 | - "os-locale-s-fix" "^1.0.8-fix-1" | |
| 1104 | - "picocolors" "^1.0.0" | |
| 1105 | - "postcss-import" "^14.0.2" | |
| 1106 | - "postcss-load-config" "^3.1.1" | |
| 1107 | - "postcss-modules" "^4.3.0" | |
| 1108 | - "postcss-selector-parser" "^6.0.6" | |
| 1109 | - "resolve" "^1.22.1" | |
| 1110 | - "tapable" "^2.2.0" | |
| 1111 | - "xregexp" "3.1.0" | |
| 1087 | + autoprefixer "^10.4.14" | |
| 1088 | + base64url "^3.0.1" | |
| 1089 | + chokidar "^3.5.3" | |
| 1090 | + compare-versions "^3.6.0" | |
| 1091 | + debug "^4.3.3" | |
| 1092 | + es-module-lexer "^1.2.1" | |
| 1093 | + esbuild "^0.17.5" | |
| 1094 | + estree-walker "^2.0.2" | |
| 1095 | + fast-glob "^3.2.11" | |
| 1096 | + fs-extra "^10.0.0" | |
| 1097 | + hash-sum "^2.0.0" | |
| 1098 | + jsonc-parser "^3.0.0" | |
| 1099 | + magic-string "^0.30.0" | |
| 1100 | + merge "^2.1.1" | |
| 1101 | + mime "^3.0.0" | |
| 1102 | + module-alias "^2.2.2" | |
| 1103 | + os-locale-s-fix "^1.0.8-fix-1" | |
| 1104 | + picocolors "^1.0.0" | |
| 1105 | + postcss-import "^14.0.2" | |
| 1106 | + postcss-load-config "^3.1.1" | |
| 1107 | + postcss-modules "^4.3.0" | |
| 1108 | + postcss-selector-parser "^6.0.6" | |
| 1109 | + resolve "^1.22.1" | |
| 1110 | + tapable "^2.2.0" | |
| 1111 | + xregexp "3.1.0" | |
| 1112 | 1112 | |
| 1113 | 1113 | "@dcloudio/uni-cloud@3.0.0-3090620231104002": |
| 1114 | - "integrity" "sha512-6b2vTIDnRp18uxqmx1ccGPxjN601LXvHaVeFWb/SB83HjOKDW60T4ZIbplOT3tMkJDdLT7iVopZqHbdyz47gQQ==" | |
| 1115 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-cloud/-/uni-cloud-3.0.0-3090620231104002.tgz" | |
| 1116 | - "version" "3.0.0-3090620231104002" | |
| 1114 | + version "3.0.0-3090620231104002" | |
| 1115 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-cloud/-/uni-cloud-3.0.0-3090620231104002.tgz" | |
| 1116 | + integrity sha512-6b2vTIDnRp18uxqmx1ccGPxjN601LXvHaVeFWb/SB83HjOKDW60T4ZIbplOT3tMkJDdLT7iVopZqHbdyz47gQQ== | |
| 1117 | 1117 | dependencies: |
| 1118 | 1118 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1119 | 1119 | "@dcloudio/uni-i18n" "3.0.0-3090620231104002" |
| 1120 | 1120 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| 1121 | 1121 | "@vue/shared" "3.2.47" |
| 1122 | - "fast-glob" "^3.2.11" | |
| 1122 | + fast-glob "^3.2.11" | |
| 1123 | 1123 | |
| 1124 | 1124 | "@dcloudio/uni-components@3.0.0-3090620231104002": |
| 1125 | - "integrity" "sha512-UnH9eCcZTcYooqqiHSIyCn/6zvCCUz7hIFCLk7UP1BxsfA6SgQCFvryqY0ltmTQzlN0DFJEzcxF3e5JNOJ5fsQ==" | |
| 1126 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-components/-/uni-components-3.0.0-3090620231104002.tgz" | |
| 1127 | - "version" "3.0.0-3090620231104002" | |
| 1125 | + version "3.0.0-3090620231104002" | |
| 1126 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-components/-/uni-components-3.0.0-3090620231104002.tgz" | |
| 1127 | + integrity sha512-UnH9eCcZTcYooqqiHSIyCn/6zvCCUz7hIFCLk7UP1BxsfA6SgQCFvryqY0ltmTQzlN0DFJEzcxF3e5JNOJ5fsQ== | |
| 1128 | 1128 | dependencies: |
| 1129 | 1129 | "@dcloudio/uni-cloud" "3.0.0-3090620231104002" |
| 1130 | 1130 | "@dcloudio/uni-h5" "3.0.0-3090620231104002" |
| 1131 | 1131 | "@dcloudio/uni-i18n" "3.0.0-3090620231104002" |
| 1132 | 1132 | |
| 1133 | 1133 | "@dcloudio/uni-h5-vite@3.0.0-3090620231104002": |
| 1134 | - "integrity" "sha512-WfRL5jWRg3JHdyiycXl4XKo0Dj2YkBL6EQmW/+mtmKHctmJ7HMCpBxrJeJAQUE9lVm4ZNPwIqYsApV4Zuvr7mQ==" | |
| 1135 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-h5-vite/-/uni-h5-vite-3.0.0-3090620231104002.tgz" | |
| 1136 | - "version" "3.0.0-3090620231104002" | |
| 1134 | + version "3.0.0-3090620231104002" | |
| 1135 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-h5-vite/-/uni-h5-vite-3.0.0-3090620231104002.tgz" | |
| 1136 | + integrity sha512-WfRL5jWRg3JHdyiycXl4XKo0Dj2YkBL6EQmW/+mtmKHctmJ7HMCpBxrJeJAQUE9lVm4ZNPwIqYsApV4Zuvr7mQ== | |
| 1137 | 1137 | dependencies: |
| 1138 | 1138 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1139 | 1139 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| ... | ... | @@ -1142,23 +1142,23 @@ |
| 1142 | 1142 | "@vue/compiler-sfc" "3.2.47" |
| 1143 | 1143 | "@vue/server-renderer" "3.2.47" |
| 1144 | 1144 | "@vue/shared" "3.2.47" |
| 1145 | - "debug" "^4.3.3" | |
| 1146 | - "fs-extra" "^10.0.0" | |
| 1147 | - "mime" "^3.0.0" | |
| 1148 | - "module-alias" "^2.2.2" | |
| 1145 | + debug "^4.3.3" | |
| 1146 | + fs-extra "^10.0.0" | |
| 1147 | + mime "^3.0.0" | |
| 1148 | + module-alias "^2.2.2" | |
| 1149 | 1149 | |
| 1150 | 1150 | "@dcloudio/uni-h5-vue@3.0.0-3090620231104002": |
| 1151 | - "integrity" "sha512-jBCO45J1Gi7Ygln2SYgpk+Gg/KtKP2h9nKudyqr7bpEOxgG/3iqxTL89WGeOeSiNMvCzbmER5nwIfcReON9rgw==" | |
| 1152 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-h5-vue/-/uni-h5-vue-3.0.0-3090620231104002.tgz" | |
| 1153 | - "version" "3.0.0-3090620231104002" | |
| 1151 | + version "3.0.0-3090620231104002" | |
| 1152 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-h5-vue/-/uni-h5-vue-3.0.0-3090620231104002.tgz" | |
| 1153 | + integrity sha512-jBCO45J1Gi7Ygln2SYgpk+Gg/KtKP2h9nKudyqr7bpEOxgG/3iqxTL89WGeOeSiNMvCzbmER5nwIfcReON9rgw== | |
| 1154 | 1154 | dependencies: |
| 1155 | 1155 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| 1156 | 1156 | "@vue/server-renderer" "3.2.47" |
| 1157 | 1157 | |
| 1158 | 1158 | "@dcloudio/uni-h5@3.0.0-3090620231104002": |
| 1159 | - "integrity" "sha512-NI21vE2xmJYhw3EcqVNxJViyQkc6Cc79GkcJ8xzrDqGdf2WA6iG6atK+tBF7rohaW0GQ3I693qjKvnXqq2kpHA==" | |
| 1160 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-h5/-/uni-h5-3.0.0-3090620231104002.tgz" | |
| 1161 | - "version" "3.0.0-3090620231104002" | |
| 1159 | + version "3.0.0-3090620231104002" | |
| 1160 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-h5/-/uni-h5-3.0.0-3090620231104002.tgz" | |
| 1161 | + integrity sha512-NI21vE2xmJYhw3EcqVNxJViyQkc6Cc79GkcJ8xzrDqGdf2WA6iG6atK+tBF7rohaW0GQ3I693qjKvnXqq2kpHA== | |
| 1162 | 1162 | dependencies: |
| 1163 | 1163 | "@dcloudio/uni-h5-vite" "3.0.0-3090620231104002" |
| 1164 | 1164 | "@dcloudio/uni-h5-vue" "3.0.0-3090620231104002" |
| ... | ... | @@ -1166,22 +1166,22 @@ |
| 1166 | 1166 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| 1167 | 1167 | "@vue/server-renderer" "3.2.47" |
| 1168 | 1168 | "@vue/shared" "3.2.47" |
| 1169 | - "debug" "^4.3.3" | |
| 1170 | - "localstorage-polyfill" "^1.0.1" | |
| 1171 | - "postcss-selector-parser" "^6.0.6" | |
| 1172 | - "safe-area-insets" "^1.4.1" | |
| 1173 | - "vue-router" "^4.1.6" | |
| 1174 | - "xmlhttprequest" "^1.8.0" | |
| 1169 | + debug "^4.3.3" | |
| 1170 | + localstorage-polyfill "^1.0.1" | |
| 1171 | + postcss-selector-parser "^6.0.6" | |
| 1172 | + safe-area-insets "^1.4.1" | |
| 1173 | + vue-router "^4.1.6" | |
| 1174 | + xmlhttprequest "^1.8.0" | |
| 1175 | 1175 | |
| 1176 | 1176 | "@dcloudio/uni-i18n@3.0.0-3090620231104002": |
| 1177 | - "integrity" "sha512-TIOrW7fNUIICjsiCzaYlslhkPDoqBq/nBJRIzYHRJTowMWw+Oyo4/x3N4qDJUGVeC0cC/3ww5DurzbncCW/q6w==" | |
| 1178 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-i18n/-/uni-i18n-3.0.0-3090620231104002.tgz" | |
| 1179 | - "version" "3.0.0-3090620231104002" | |
| 1177 | + version "3.0.0-3090620231104002" | |
| 1178 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-i18n/-/uni-i18n-3.0.0-3090620231104002.tgz" | |
| 1179 | + integrity sha512-TIOrW7fNUIICjsiCzaYlslhkPDoqBq/nBJRIzYHRJTowMWw+Oyo4/x3N4qDJUGVeC0cC/3ww5DurzbncCW/q6w== | |
| 1180 | 1180 | |
| 1181 | 1181 | "@dcloudio/uni-mp-alipay@3.0.0-3090620231104002": |
| 1182 | - "integrity" "sha512-12Uqb1M8M5/5K5ULoE9VQcnwN56FXWhOOq9CrErHplnJ2BPCCpnzsewMnkYPw4+Ya7rUcVqMRL3Unxve45oxZg==" | |
| 1183 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-alipay/-/uni-mp-alipay-3.0.0-3090620231104002.tgz" | |
| 1184 | - "version" "3.0.0-3090620231104002" | |
| 1182 | + version "3.0.0-3090620231104002" | |
| 1183 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-alipay/-/uni-mp-alipay-3.0.0-3090620231104002.tgz" | |
| 1184 | + integrity sha512-12Uqb1M8M5/5K5ULoE9VQcnwN56FXWhOOq9CrErHplnJ2BPCCpnzsewMnkYPw4+Ya7rUcVqMRL3Unxve45oxZg== | |
| 1185 | 1185 | dependencies: |
| 1186 | 1186 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1187 | 1187 | "@dcloudio/uni-mp-vite" "3.0.0-3090620231104002" |
| ... | ... | @@ -1191,9 +1191,9 @@ |
| 1191 | 1191 | "@vue/shared" "3.2.47" |
| 1192 | 1192 | |
| 1193 | 1193 | "@dcloudio/uni-mp-baidu@3.0.0-3090620231104002": |
| 1194 | - "integrity" "sha512-OdvpkC8OVIP1VwksC0F0qHCHqoSZ5Oldyv3LnKvE2lBKRtkcX3xzIiy5GxAir+Qadxvxfu/7AMxGhK9TB1DdpQ==" | |
| 1195 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-baidu/-/uni-mp-baidu-3.0.0-3090620231104002.tgz" | |
| 1196 | - "version" "3.0.0-3090620231104002" | |
| 1194 | + version "3.0.0-3090620231104002" | |
| 1195 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-baidu/-/uni-mp-baidu-3.0.0-3090620231104002.tgz" | |
| 1196 | + integrity sha512-OdvpkC8OVIP1VwksC0F0qHCHqoSZ5Oldyv3LnKvE2lBKRtkcX3xzIiy5GxAir+Qadxvxfu/7AMxGhK9TB1DdpQ== | |
| 1197 | 1197 | dependencies: |
| 1198 | 1198 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1199 | 1199 | "@dcloudio/uni-mp-compiler" "3.0.0-3090620231104002" |
| ... | ... | @@ -1203,16 +1203,16 @@ |
| 1203 | 1203 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| 1204 | 1204 | "@vue/compiler-core" "3.2.47" |
| 1205 | 1205 | "@vue/shared" "3.2.47" |
| 1206 | - "jimp" "^0.10.1" | |
| 1207 | - "licia" "^1.29.0" | |
| 1208 | - "qrcode-reader" "^1.0.4" | |
| 1209 | - "qrcode-terminal" "^0.12.0" | |
| 1210 | - "ws" "^8.4.2" | |
| 1206 | + jimp "^0.10.1" | |
| 1207 | + licia "^1.29.0" | |
| 1208 | + qrcode-reader "^1.0.4" | |
| 1209 | + qrcode-terminal "^0.12.0" | |
| 1210 | + ws "^8.4.2" | |
| 1211 | 1211 | |
| 1212 | 1212 | "@dcloudio/uni-mp-compiler@3.0.0-3090620231104002": |
| 1213 | - "integrity" "sha512-vjccOKKWXq7MUTCv+EdsAkRdBr7sYWuHUWvnR8y2yihRZFV/6z9kWpzZxg1+/u6gf4wqErvuDC3l42xus8VH6g==" | |
| 1214 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-compiler/-/uni-mp-compiler-3.0.0-3090620231104002.tgz" | |
| 1215 | - "version" "3.0.0-3090620231104002" | |
| 1213 | + version "3.0.0-3090620231104002" | |
| 1214 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-compiler/-/uni-mp-compiler-3.0.0-3090620231104002.tgz" | |
| 1215 | + integrity sha512-vjccOKKWXq7MUTCv+EdsAkRdBr7sYWuHUWvnR8y2yihRZFV/6z9kWpzZxg1+/u6gf4wqErvuDC3l42xus8VH6g== | |
| 1216 | 1216 | dependencies: |
| 1217 | 1217 | "@babel/generator" "^7.20.5" |
| 1218 | 1218 | "@babel/parser" "^7.16.4" |
| ... | ... | @@ -1222,12 +1222,12 @@ |
| 1222 | 1222 | "@vue/compiler-core" "3.2.47" |
| 1223 | 1223 | "@vue/compiler-dom" "3.2.47" |
| 1224 | 1224 | "@vue/shared" "3.2.47" |
| 1225 | - "estree-walker" "^2.0.2" | |
| 1225 | + estree-walker "^2.0.2" | |
| 1226 | 1226 | |
| 1227 | 1227 | "@dcloudio/uni-mp-jd@3.0.0-3090620231104002": |
| 1228 | - "integrity" "sha512-FT2bU3NC+CQCMfuixfPeckHebSXIA6cizIQFDufh+WQZbu1F58R9kYdyK28LDL9O1vz6g6L70nkflqjsLbKjEw==" | |
| 1229 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-jd/-/uni-mp-jd-3.0.0-3090620231104002.tgz" | |
| 1230 | - "version" "3.0.0-3090620231104002" | |
| 1228 | + version "3.0.0-3090620231104002" | |
| 1229 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-jd/-/uni-mp-jd-3.0.0-3090620231104002.tgz" | |
| 1230 | + integrity sha512-FT2bU3NC+CQCMfuixfPeckHebSXIA6cizIQFDufh+WQZbu1F58R9kYdyK28LDL9O1vz6g6L70nkflqjsLbKjEw== | |
| 1231 | 1231 | dependencies: |
| 1232 | 1232 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1233 | 1233 | "@dcloudio/uni-mp-compiler" "3.0.0-3090620231104002" |
| ... | ... | @@ -1237,9 +1237,9 @@ |
| 1237 | 1237 | "@vue/shared" "3.2.47" |
| 1238 | 1238 | |
| 1239 | 1239 | "@dcloudio/uni-mp-kuaishou@3.0.0-3090620231104002": |
| 1240 | - "integrity" "sha512-OFeEjaMRBgTR47RjE7jyZ9RjSj6z9u3GkI77jmyR7ZPyh9n2ayBinzKYm4dxhdMBYJ0OKj/9s99krjMb+m2eEg==" | |
| 1241 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-kuaishou/-/uni-mp-kuaishou-3.0.0-3090620231104002.tgz" | |
| 1242 | - "version" "3.0.0-3090620231104002" | |
| 1240 | + version "3.0.0-3090620231104002" | |
| 1241 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-kuaishou/-/uni-mp-kuaishou-3.0.0-3090620231104002.tgz" | |
| 1242 | + integrity sha512-OFeEjaMRBgTR47RjE7jyZ9RjSj6z9u3GkI77jmyR7ZPyh9n2ayBinzKYm4dxhdMBYJ0OKj/9s99krjMb+m2eEg== | |
| 1243 | 1243 | dependencies: |
| 1244 | 1244 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1245 | 1245 | "@dcloudio/uni-mp-compiler" "3.0.0-3090620231104002" |
| ... | ... | @@ -1251,9 +1251,9 @@ |
| 1251 | 1251 | "@vue/shared" "3.2.47" |
| 1252 | 1252 | |
| 1253 | 1253 | "@dcloudio/uni-mp-lark@3.0.0-3090620231104002": |
| 1254 | - "integrity" "sha512-jlXdO6Mb4JSnWFX3z07YiQOlwxPuIHXrk0uwbwCGGiLU93FRldRBRTbDOWGc5txj+h7aef2iAtkchY1hIe3IzQ==" | |
| 1255 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-lark/-/uni-mp-lark-3.0.0-3090620231104002.tgz" | |
| 1256 | - "version" "3.0.0-3090620231104002" | |
| 1254 | + version "3.0.0-3090620231104002" | |
| 1255 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-lark/-/uni-mp-lark-3.0.0-3090620231104002.tgz" | |
| 1256 | + integrity sha512-jlXdO6Mb4JSnWFX3z07YiQOlwxPuIHXrk0uwbwCGGiLU93FRldRBRTbDOWGc5txj+h7aef2iAtkchY1hIe3IzQ== | |
| 1257 | 1257 | dependencies: |
| 1258 | 1258 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1259 | 1259 | "@dcloudio/uni-mp-compiler" "3.0.0-3090620231104002" |
| ... | ... | @@ -1265,21 +1265,21 @@ |
| 1265 | 1265 | "@vue/shared" "3.2.47" |
| 1266 | 1266 | |
| 1267 | 1267 | "@dcloudio/uni-mp-qq@3.0.0-3090620231104002": |
| 1268 | - "integrity" "sha512-BPhZfQUMHB0p8H5GNycML/m9M1iCqJiESQ+aK+rPx4dKXEcMF6v0kvu25Duw5458O+tQiG9p7IkQCHeSBiuXzw==" | |
| 1269 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-qq/-/uni-mp-qq-3.0.0-3090620231104002.tgz" | |
| 1270 | - "version" "3.0.0-3090620231104002" | |
| 1268 | + version "3.0.0-3090620231104002" | |
| 1269 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-qq/-/uni-mp-qq-3.0.0-3090620231104002.tgz" | |
| 1270 | + integrity sha512-BPhZfQUMHB0p8H5GNycML/m9M1iCqJiESQ+aK+rPx4dKXEcMF6v0kvu25Duw5458O+tQiG9p7IkQCHeSBiuXzw== | |
| 1271 | 1271 | dependencies: |
| 1272 | 1272 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1273 | 1273 | "@dcloudio/uni-mp-vite" "3.0.0-3090620231104002" |
| 1274 | 1274 | "@dcloudio/uni-mp-vue" "3.0.0-3090620231104002" |
| 1275 | 1275 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| 1276 | 1276 | "@vue/shared" "3.2.47" |
| 1277 | - "fs-extra" "^10.0.0" | |
| 1277 | + fs-extra "^10.0.0" | |
| 1278 | 1278 | |
| 1279 | 1279 | "@dcloudio/uni-mp-toutiao@3.0.0-3090620231104002": |
| 1280 | - "integrity" "sha512-JgPesIFxwVT8DvyytW55HC4n05NcGuGWB3eENuLEKJRV++DRLa/OaBh83u9r9lZWSrGPPaSwRtTPUBeyezahCw==" | |
| 1281 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-toutiao/-/uni-mp-toutiao-3.0.0-3090620231104002.tgz" | |
| 1282 | - "version" "3.0.0-3090620231104002" | |
| 1280 | + version "3.0.0-3090620231104002" | |
| 1281 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-toutiao/-/uni-mp-toutiao-3.0.0-3090620231104002.tgz" | |
| 1282 | + integrity sha512-JgPesIFxwVT8DvyytW55HC4n05NcGuGWB3eENuLEKJRV++DRLa/OaBh83u9r9lZWSrGPPaSwRtTPUBeyezahCw== | |
| 1283 | 1283 | dependencies: |
| 1284 | 1284 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1285 | 1285 | "@dcloudio/uni-mp-compiler" "3.0.0-3090620231104002" |
| ... | ... | @@ -1290,9 +1290,9 @@ |
| 1290 | 1290 | "@vue/shared" "3.2.47" |
| 1291 | 1291 | |
| 1292 | 1292 | "@dcloudio/uni-mp-vite@3.0.0-3090620231104002": |
| 1293 | - "integrity" "sha512-ccAhZYH8NcBLb0dWyQjwCf7eM6phj1D0Uusq4u7kaJAkxLtvAmBAGb7TQXeZ2r8G3QsFEkHwjP/lB5sY0gYYCw==" | |
| 1294 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-vite/-/uni-mp-vite-3.0.0-3090620231104002.tgz" | |
| 1295 | - "version" "3.0.0-3090620231104002" | |
| 1293 | + version "3.0.0-3090620231104002" | |
| 1294 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-vite/-/uni-mp-vite-3.0.0-3090620231104002.tgz" | |
| 1295 | + integrity sha512-ccAhZYH8NcBLb0dWyQjwCf7eM6phj1D0Uusq4u7kaJAkxLtvAmBAGb7TQXeZ2r8G3QsFEkHwjP/lB5sY0gYYCw== | |
| 1296 | 1296 | dependencies: |
| 1297 | 1297 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1298 | 1298 | "@dcloudio/uni-i18n" "3.0.0-3090620231104002" |
| ... | ... | @@ -1301,36 +1301,36 @@ |
| 1301 | 1301 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| 1302 | 1302 | "@vue/compiler-sfc" "3.2.47" |
| 1303 | 1303 | "@vue/shared" "3.2.47" |
| 1304 | - "debug" "^4.3.3" | |
| 1304 | + debug "^4.3.3" | |
| 1305 | 1305 | |
| 1306 | 1306 | "@dcloudio/uni-mp-vue@3.0.0-3090620231104002": |
| 1307 | - "integrity" "sha512-yvn+nzEIUQSbzbMlFcNgQHbM5RedddYoVvbvoLeNvWeIfUjUF3pux/W7qigRFhhfMwKqC1qaFUCrfG1wYrIrpw==" | |
| 1308 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-vue/-/uni-mp-vue-3.0.0-3090620231104002.tgz" | |
| 1309 | - "version" "3.0.0-3090620231104002" | |
| 1307 | + version "3.0.0-3090620231104002" | |
| 1308 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-vue/-/uni-mp-vue-3.0.0-3090620231104002.tgz" | |
| 1309 | + integrity sha512-yvn+nzEIUQSbzbMlFcNgQHbM5RedddYoVvbvoLeNvWeIfUjUF3pux/W7qigRFhhfMwKqC1qaFUCrfG1wYrIrpw== | |
| 1310 | 1310 | dependencies: |
| 1311 | 1311 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| 1312 | 1312 | "@vue/shared" "3.2.47" |
| 1313 | 1313 | |
| 1314 | 1314 | "@dcloudio/uni-mp-weixin@3.0.0-3090620231104002": |
| 1315 | - "integrity" "sha512-u+IlvDjpAz7z8yTf3E7uYgCdqavky9ZY0TVzwT4aWpO7NkIHqg/RXUtEE7cKCCcwVj7P/GT1OaKCPmOVCg77aQ==" | |
| 1316 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-weixin/-/uni-mp-weixin-3.0.0-3090620231104002.tgz" | |
| 1317 | - "version" "3.0.0-3090620231104002" | |
| 1315 | + version "3.0.0-3090620231104002" | |
| 1316 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-weixin/-/uni-mp-weixin-3.0.0-3090620231104002.tgz" | |
| 1317 | + integrity sha512-u+IlvDjpAz7z8yTf3E7uYgCdqavky9ZY0TVzwT4aWpO7NkIHqg/RXUtEE7cKCCcwVj7P/GT1OaKCPmOVCg77aQ== | |
| 1318 | 1318 | dependencies: |
| 1319 | 1319 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1320 | 1320 | "@dcloudio/uni-mp-vite" "3.0.0-3090620231104002" |
| 1321 | 1321 | "@dcloudio/uni-mp-vue" "3.0.0-3090620231104002" |
| 1322 | 1322 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| 1323 | 1323 | "@vue/shared" "3.2.47" |
| 1324 | - "jimp" "^0.10.1" | |
| 1325 | - "licia" "^1.29.0" | |
| 1326 | - "qrcode-reader" "^1.0.4" | |
| 1327 | - "qrcode-terminal" "^0.12.0" | |
| 1328 | - "ws" "^8.4.2" | |
| 1324 | + jimp "^0.10.1" | |
| 1325 | + licia "^1.29.0" | |
| 1326 | + qrcode-reader "^1.0.4" | |
| 1327 | + qrcode-terminal "^0.12.0" | |
| 1328 | + ws "^8.4.2" | |
| 1329 | 1329 | |
| 1330 | 1330 | "@dcloudio/uni-mp-xhs@3.0.0-3090620231104002": |
| 1331 | - "integrity" "sha512-i/7JuVWEob+b34i/zM8HsAGacfxDLpR0MlnjRnA+8Iesn/sfdh/veNQ3lIazimb/x8ZH7ljLfZ1nccYJvRCV/Q==" | |
| 1332 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-mp-xhs/-/uni-mp-xhs-3.0.0-3090620231104002.tgz" | |
| 1333 | - "version" "3.0.0-3090620231104002" | |
| 1331 | + version "3.0.0-3090620231104002" | |
| 1332 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-mp-xhs/-/uni-mp-xhs-3.0.0-3090620231104002.tgz" | |
| 1333 | + integrity sha512-i/7JuVWEob+b34i/zM8HsAGacfxDLpR0MlnjRnA+8Iesn/sfdh/veNQ3lIazimb/x8ZH7ljLfZ1nccYJvRCV/Q== | |
| 1334 | 1334 | dependencies: |
| 1335 | 1335 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1336 | 1336 | "@dcloudio/uni-mp-compiler" "3.0.0-3090620231104002" |
| ... | ... | @@ -1340,25 +1340,25 @@ |
| 1340 | 1340 | "@vue/shared" "3.2.47" |
| 1341 | 1341 | |
| 1342 | 1342 | "@dcloudio/uni-nvue-styler@3.0.0-3090620231104002": |
| 1343 | - "integrity" "sha512-3Ty3dXi300A7H5QDRae0zrMsiBML97xQNmg8G9uG/TeMef4iyWNrSaKi4fkVhIX58nBh6CcHo1R6DOcynGPR4g==" | |
| 1344 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-nvue-styler/-/uni-nvue-styler-3.0.0-3090620231104002.tgz" | |
| 1345 | - "version" "3.0.0-3090620231104002" | |
| 1343 | + version "3.0.0-3090620231104002" | |
| 1344 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-nvue-styler/-/uni-nvue-styler-3.0.0-3090620231104002.tgz" | |
| 1345 | + integrity sha512-3Ty3dXi300A7H5QDRae0zrMsiBML97xQNmg8G9uG/TeMef4iyWNrSaKi4fkVhIX58nBh6CcHo1R6DOcynGPR4g== | |
| 1346 | 1346 | dependencies: |
| 1347 | 1347 | "@vue/shared" "3.2.47" |
| 1348 | - "parse-css-font" "^4.0.0" | |
| 1349 | - "postcss" "^8.4.23" | |
| 1348 | + parse-css-font "^4.0.0" | |
| 1349 | + postcss "^8.4.23" | |
| 1350 | 1350 | |
| 1351 | 1351 | "@dcloudio/uni-push@3.0.0-3090620231104002": |
| 1352 | - "integrity" "sha512-3grkzjLdFRngAyVRS3/p8oonMvi4AJao/fRW9S0KJOow48H5VBVnaGWYmWDELCqMwKrgA6S+34PcoNHmU7tWTQ==" | |
| 1353 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-push/-/uni-push-3.0.0-3090620231104002.tgz" | |
| 1354 | - "version" "3.0.0-3090620231104002" | |
| 1352 | + version "3.0.0-3090620231104002" | |
| 1353 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-push/-/uni-push-3.0.0-3090620231104002.tgz" | |
| 1354 | + integrity sha512-3grkzjLdFRngAyVRS3/p8oonMvi4AJao/fRW9S0KJOow48H5VBVnaGWYmWDELCqMwKrgA6S+34PcoNHmU7tWTQ== | |
| 1355 | 1355 | dependencies: |
| 1356 | 1356 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1357 | 1357 | |
| 1358 | 1358 | "@dcloudio/uni-quickapp-webview@3.0.0-3090620231104002": |
| 1359 | - "integrity" "sha512-C89yTUQYkklhTXRNHfWMIEu8aYQKqaaWYgMExwqj/4vvYaiC71hDHlTEdC+CvJ9uAOxKluakKq42TeGyO/8EAg==" | |
| 1360 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-quickapp-webview/-/uni-quickapp-webview-3.0.0-3090620231104002.tgz" | |
| 1361 | - "version" "3.0.0-3090620231104002" | |
| 1359 | + version "3.0.0-3090620231104002" | |
| 1360 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-quickapp-webview/-/uni-quickapp-webview-3.0.0-3090620231104002.tgz" | |
| 1361 | + integrity sha512-C89yTUQYkklhTXRNHfWMIEu8aYQKqaaWYgMExwqj/4vvYaiC71hDHlTEdC+CvJ9uAOxKluakKq42TeGyO/8EAg== | |
| 1362 | 1362 | dependencies: |
| 1363 | 1363 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1364 | 1364 | "@dcloudio/uni-mp-vite" "3.0.0-3090620231104002" |
| ... | ... | @@ -1367,30 +1367,30 @@ |
| 1367 | 1367 | "@vue/shared" "3.2.47" |
| 1368 | 1368 | |
| 1369 | 1369 | "@dcloudio/uni-shared@3.0.0-3090620231104002": |
| 1370 | - "integrity" "sha512-OUHKDb5fFm0PHOiXIcw5zf68rngZiF1VPbSoqJJ5wiw2b31XQ+HR/ql9SaLLwfYQp0/QEZuCH8OldcnRp2SRng==" | |
| 1371 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-shared/-/uni-shared-3.0.0-3090620231104002.tgz" | |
| 1372 | - "version" "3.0.0-3090620231104002" | |
| 1370 | + version "3.0.0-3090620231104002" | |
| 1371 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-shared/-/uni-shared-3.0.0-3090620231104002.tgz" | |
| 1372 | + integrity sha512-OUHKDb5fFm0PHOiXIcw5zf68rngZiF1VPbSoqJJ5wiw2b31XQ+HR/ql9SaLLwfYQp0/QEZuCH8OldcnRp2SRng== | |
| 1373 | 1373 | dependencies: |
| 1374 | 1374 | "@vue/shared" "3.2.47" |
| 1375 | 1375 | |
| 1376 | 1376 | "@dcloudio/uni-stacktracey@3.0.0-3090620231104002": |
| 1377 | - "integrity" "sha512-wT3T8sTX3FJYaP+TNSAeSkrATMBMvpzu26NrEzKQlnnT8Uk616CxSWSUrTd8tbTDDohznGxFWBBN8wP9XO2etA==" | |
| 1378 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-stacktracey/-/uni-stacktracey-3.0.0-3090620231104002.tgz" | |
| 1379 | - "version" "3.0.0-3090620231104002" | |
| 1377 | + version "3.0.0-3090620231104002" | |
| 1378 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-stacktracey/-/uni-stacktracey-3.0.0-3090620231104002.tgz" | |
| 1379 | + integrity sha512-wT3T8sTX3FJYaP+TNSAeSkrATMBMvpzu26NrEzKQlnnT8Uk616CxSWSUrTd8tbTDDohznGxFWBBN8wP9XO2etA== | |
| 1380 | 1380 | |
| 1381 | 1381 | "@dcloudio/uni-stat@3.0.0-3090620231104002": |
| 1382 | - "integrity" "sha512-TaHTpN6j1YvKv5JuAQDYd5nPVPKy8feBMRnGu15GBpjVa0g4Ay7CQLgWF9b7CIFoFTo4yDsAolpQNaiJRVYlfw==" | |
| 1383 | - "resolved" "https://registry.npmmirror.com/@dcloudio/uni-stat/-/uni-stat-3.0.0-3090620231104002.tgz" | |
| 1384 | - "version" "3.0.0-3090620231104002" | |
| 1382 | + version "3.0.0-3090620231104002" | |
| 1383 | + resolved "https://registry.npmmirror.com/@dcloudio/uni-stat/-/uni-stat-3.0.0-3090620231104002.tgz" | |
| 1384 | + integrity sha512-TaHTpN6j1YvKv5JuAQDYd5nPVPKy8feBMRnGu15GBpjVa0g4Ay7CQLgWF9b7CIFoFTo4yDsAolpQNaiJRVYlfw== | |
| 1385 | 1385 | dependencies: |
| 1386 | 1386 | "@dcloudio/uni-cli-shared" "3.0.0-3090620231104002" |
| 1387 | 1387 | "@dcloudio/uni-shared" "3.0.0-3090620231104002" |
| 1388 | - "debug" "^4.3.3" | |
| 1388 | + debug "^4.3.3" | |
| 1389 | 1389 | |
| 1390 | 1390 | "@dcloudio/vite-plugin-uni@3.0.0-3090620231104002": |
| 1391 | - "integrity" "sha512-Prr/sYheGVsugYq7KQY0UJ1Bunr8plWFa00MOyrBc3yjnSA8bTMkcG9bWvhHGMVwpx/kDozueVah94WOCR4isw==" | |
| 1392 | - "resolved" "https://registry.npmmirror.com/@dcloudio/vite-plugin-uni/-/vite-plugin-uni-3.0.0-3090620231104002.tgz" | |
| 1393 | - "version" "3.0.0-3090620231104002" | |
| 1391 | + version "3.0.0-3090620231104002" | |
| 1392 | + resolved "https://registry.npmmirror.com/@dcloudio/vite-plugin-uni/-/vite-plugin-uni-3.0.0-3090620231104002.tgz" | |
| 1393 | + integrity sha512-Prr/sYheGVsugYq7KQY0UJ1Bunr8plWFa00MOyrBc3yjnSA8bTMkcG9bWvhHGMVwpx/kDozueVah94WOCR4isw== | |
| 1394 | 1394 | dependencies: |
| 1395 | 1395 | "@babel/core" "^7.21.3" |
| 1396 | 1396 | "@babel/plugin-syntax-import-meta" "^7.10.4" |
| ... | ... | @@ -1405,22 +1405,32 @@ |
| 1405 | 1405 | "@vue/compiler-dom" "3.2.47" |
| 1406 | 1406 | "@vue/compiler-sfc" "3.2.47" |
| 1407 | 1407 | "@vue/shared" "3.2.47" |
| 1408 | - "cac" "6.7.9" | |
| 1409 | - "debug" "^4.3.3" | |
| 1410 | - "estree-walker" "^2.0.2" | |
| 1411 | - "express" "^4.17.1" | |
| 1412 | - "fast-glob" "^3.2.11" | |
| 1413 | - "fs-extra" "^10.0.0" | |
| 1414 | - "hash-sum" "^2.0.0" | |
| 1415 | - "jsonc-parser" "^3.0.0" | |
| 1416 | - "magic-string" "^0.30.0" | |
| 1417 | - "picocolors" "^1.0.0" | |
| 1418 | - "terser" "^5.4.0" | |
| 1408 | + cac "6.7.9" | |
| 1409 | + debug "^4.3.3" | |
| 1410 | + estree-walker "^2.0.2" | |
| 1411 | + express "^4.17.1" | |
| 1412 | + fast-glob "^3.2.11" | |
| 1413 | + fs-extra "^10.0.0" | |
| 1414 | + hash-sum "^2.0.0" | |
| 1415 | + jsonc-parser "^3.0.0" | |
| 1416 | + magic-string "^0.30.0" | |
| 1417 | + picocolors "^1.0.0" | |
| 1418 | + terser "^5.4.0" | |
| 1419 | + | |
| 1420 | +"@esbuild/win32-x64@0.16.17": | |
| 1421 | + version "0.16.17" | |
| 1422 | + resolved "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz" | |
| 1423 | + integrity sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q== | |
| 1424 | + | |
| 1425 | +"@esbuild/win32-x64@0.17.19": | |
| 1426 | + version "0.17.19" | |
| 1427 | + resolved "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz" | |
| 1428 | + integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA== | |
| 1419 | 1429 | |
| 1420 | 1430 | "@intlify/core-base@9.1.9": |
| 1421 | - "integrity" "sha512-x5T0p/Ja0S8hs5xs+ImKyYckVkL4CzcEXykVYYV6rcbXxJTe2o58IquSqX9bdncVKbRZP7GlBU1EcRaQEEJ+vw==" | |
| 1422 | - "resolved" "https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.9.tgz" | |
| 1423 | - "version" "9.1.9" | |
| 1431 | + version "9.1.9" | |
| 1432 | + resolved "https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.1.9.tgz" | |
| 1433 | + integrity sha512-x5T0p/Ja0S8hs5xs+ImKyYckVkL4CzcEXykVYYV6rcbXxJTe2o58IquSqX9bdncVKbRZP7GlBU1EcRaQEEJ+vw== | |
| 1424 | 1434 | dependencies: |
| 1425 | 1435 | "@intlify/devtools-if" "9.1.9" |
| 1426 | 1436 | "@intlify/message-compiler" "9.1.9" |
| ... | ... | @@ -1430,102 +1440,102 @@ |
| 1430 | 1440 | "@intlify/vue-devtools" "9.1.9" |
| 1431 | 1441 | |
| 1432 | 1442 | "@intlify/core-base@9.6.5": |
| 1433 | - "integrity" "sha512-LzbGXiZkMWPIHnHI0g6q554S87Cmh2mmCmjytK/3pDQfjI84l+dgGoeQuKj02q7EbULRuUUgYVZVqAwEUawXGg==" | |
| 1434 | - "resolved" "https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.6.5.tgz" | |
| 1435 | - "version" "9.6.5" | |
| 1443 | + version "9.6.5" | |
| 1444 | + resolved "https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.6.5.tgz" | |
| 1445 | + integrity sha512-LzbGXiZkMWPIHnHI0g6q554S87Cmh2mmCmjytK/3pDQfjI84l+dgGoeQuKj02q7EbULRuUUgYVZVqAwEUawXGg== | |
| 1436 | 1446 | dependencies: |
| 1437 | 1447 | "@intlify/message-compiler" "9.6.5" |
| 1438 | 1448 | "@intlify/shared" "9.6.5" |
| 1439 | 1449 | |
| 1440 | 1450 | "@intlify/devtools-if@9.1.9": |
| 1441 | - "integrity" "sha512-oKSMKjttG3Ut/1UGEZjSdghuP3fwA15zpDPcjkf/1FjlOIm6uIBGMNS5jXzsZy593u+P/YcnrZD6cD3IVFz9vQ==" | |
| 1442 | - "resolved" "https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.9.tgz" | |
| 1443 | - "version" "9.1.9" | |
| 1451 | + version "9.1.9" | |
| 1452 | + resolved "https://registry.npmmirror.com/@intlify/devtools-if/-/devtools-if-9.1.9.tgz" | |
| 1453 | + integrity sha512-oKSMKjttG3Ut/1UGEZjSdghuP3fwA15zpDPcjkf/1FjlOIm6uIBGMNS5jXzsZy593u+P/YcnrZD6cD3IVFz9vQ== | |
| 1444 | 1454 | dependencies: |
| 1445 | 1455 | "@intlify/shared" "9.1.9" |
| 1446 | 1456 | |
| 1447 | 1457 | "@intlify/message-compiler@9.1.9": |
| 1448 | - "integrity" "sha512-6YgCMF46Xd0IH2hMRLCssZI3gFG4aywidoWQ3QP4RGYQXQYYfFC54DxhSgfIPpVoPLQ+4AD29eoYmhiHZ+qLFQ==" | |
| 1449 | - "resolved" "https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.9.tgz" | |
| 1450 | - "version" "9.1.9" | |
| 1458 | + version "9.1.9" | |
| 1459 | + resolved "https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.1.9.tgz" | |
| 1460 | + integrity sha512-6YgCMF46Xd0IH2hMRLCssZI3gFG4aywidoWQ3QP4RGYQXQYYfFC54DxhSgfIPpVoPLQ+4AD29eoYmhiHZ+qLFQ== | |
| 1451 | 1461 | dependencies: |
| 1452 | 1462 | "@intlify/message-resolver" "9.1.9" |
| 1453 | 1463 | "@intlify/shared" "9.1.9" |
| 1454 | - "source-map" "0.6.1" | |
| 1464 | + source-map "0.6.1" | |
| 1455 | 1465 | |
| 1456 | 1466 | "@intlify/message-compiler@9.6.5": |
| 1457 | - "integrity" "sha512-WeJ499thIj0p7JaIO1V3JaJbqdqfBykS5R8fElFs5hNeotHtPAMBs4IiA+8/KGFkAbjJusgFefCq6ajP7F7+4Q==" | |
| 1458 | - "resolved" "https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.6.5.tgz" | |
| 1459 | - "version" "9.6.5" | |
| 1467 | + version "9.6.5" | |
| 1468 | + resolved "https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.6.5.tgz" | |
| 1469 | + integrity sha512-WeJ499thIj0p7JaIO1V3JaJbqdqfBykS5R8fElFs5hNeotHtPAMBs4IiA+8/KGFkAbjJusgFefCq6ajP7F7+4Q== | |
| 1460 | 1470 | dependencies: |
| 1461 | 1471 | "@intlify/shared" "9.6.5" |
| 1462 | - "source-map-js" "^1.0.2" | |
| 1472 | + source-map-js "^1.0.2" | |
| 1463 | 1473 | |
| 1464 | 1474 | "@intlify/message-resolver@9.1.9": |
| 1465 | - "integrity" "sha512-Lx/DBpigeK0sz2BBbzv5mu9/dAlt98HxwbG7xLawC3O2xMF9MNWU5FtOziwYG6TDIjNq0O/3ZbOJAxwITIWXEA==" | |
| 1466 | - "resolved" "https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz" | |
| 1467 | - "version" "9.1.9" | |
| 1475 | + version "9.1.9" | |
| 1476 | + resolved "https://registry.npmmirror.com/@intlify/message-resolver/-/message-resolver-9.1.9.tgz" | |
| 1477 | + integrity sha512-Lx/DBpigeK0sz2BBbzv5mu9/dAlt98HxwbG7xLawC3O2xMF9MNWU5FtOziwYG6TDIjNq0O/3ZbOJAxwITIWXEA== | |
| 1468 | 1478 | |
| 1469 | 1479 | "@intlify/runtime@9.1.9": |
| 1470 | - "integrity" "sha512-XgPw8+UlHCiie3fI41HPVa/VDJb3/aSH7bLhY1hJvlvNV713PFtb4p4Jo+rlE0gAoMsMCGcsiT982fImolSltg==" | |
| 1471 | - "resolved" "https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.9.tgz" | |
| 1472 | - "version" "9.1.9" | |
| 1480 | + version "9.1.9" | |
| 1481 | + resolved "https://registry.npmmirror.com/@intlify/runtime/-/runtime-9.1.9.tgz" | |
| 1482 | + integrity sha512-XgPw8+UlHCiie3fI41HPVa/VDJb3/aSH7bLhY1hJvlvNV713PFtb4p4Jo+rlE0gAoMsMCGcsiT982fImolSltg== | |
| 1473 | 1483 | dependencies: |
| 1474 | 1484 | "@intlify/message-compiler" "9.1.9" |
| 1475 | 1485 | "@intlify/message-resolver" "9.1.9" |
| 1476 | 1486 | "@intlify/shared" "9.1.9" |
| 1477 | 1487 | |
| 1478 | 1488 | "@intlify/shared@9.1.9": |
| 1479 | - "integrity" "sha512-xKGM1d0EAxdDFCWedcYXOm6V5Pfw/TMudd6/qCdEb4tv0hk9EKeg7lwQF1azE0dP2phvx0yXxrt7UQK+IZjNdw==" | |
| 1480 | - "resolved" "https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz" | |
| 1481 | - "version" "9.1.9" | |
| 1489 | + version "9.1.9" | |
| 1490 | + resolved "https://registry.npmmirror.com/@intlify/shared/-/shared-9.1.9.tgz" | |
| 1491 | + integrity sha512-xKGM1d0EAxdDFCWedcYXOm6V5Pfw/TMudd6/qCdEb4tv0hk9EKeg7lwQF1azE0dP2phvx0yXxrt7UQK+IZjNdw== | |
| 1482 | 1492 | |
| 1483 | 1493 | "@intlify/shared@9.6.5": |
| 1484 | - "integrity" "sha512-gD7Ey47Xi4h/t6P+S04ymMSoA3wVRxGqjxuIMglwRO8POki9h164Epu2N8wk/GHXM/hR6ZGcsx2HArCCENjqSQ==" | |
| 1485 | - "resolved" "https://registry.npmmirror.com/@intlify/shared/-/shared-9.6.5.tgz" | |
| 1486 | - "version" "9.6.5" | |
| 1494 | + version "9.6.5" | |
| 1495 | + resolved "https://registry.npmmirror.com/@intlify/shared/-/shared-9.6.5.tgz" | |
| 1496 | + integrity sha512-gD7Ey47Xi4h/t6P+S04ymMSoA3wVRxGqjxuIMglwRO8POki9h164Epu2N8wk/GHXM/hR6ZGcsx2HArCCENjqSQ== | |
| 1487 | 1497 | |
| 1488 | 1498 | "@intlify/vue-devtools@9.1.9": |
| 1489 | - "integrity" "sha512-YPehH9uL4vZcGXky4Ev5qQIITnHKIvsD2GKGXgqf+05osMUI6WSEQHaN9USRa318Rs8RyyPCiDfmA0hRu3k7og==" | |
| 1490 | - "resolved" "https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.9.tgz" | |
| 1491 | - "version" "9.1.9" | |
| 1499 | + version "9.1.9" | |
| 1500 | + resolved "https://registry.npmmirror.com/@intlify/vue-devtools/-/vue-devtools-9.1.9.tgz" | |
| 1501 | + integrity sha512-YPehH9uL4vZcGXky4Ev5qQIITnHKIvsD2GKGXgqf+05osMUI6WSEQHaN9USRa318Rs8RyyPCiDfmA0hRu3k7og== | |
| 1492 | 1502 | dependencies: |
| 1493 | 1503 | "@intlify/message-resolver" "9.1.9" |
| 1494 | 1504 | "@intlify/runtime" "9.1.9" |
| 1495 | 1505 | "@intlify/shared" "9.1.9" |
| 1496 | 1506 | |
| 1497 | 1507 | "@istanbuljs/load-nyc-config@^1.0.0": |
| 1498 | - "integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" | |
| 1499 | - "resolved" "https://registry.npmmirror.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" | |
| 1500 | - "version" "1.1.0" | |
| 1508 | + version "1.1.0" | |
| 1509 | + resolved "https://registry.npmmirror.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" | |
| 1510 | + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== | |
| 1501 | 1511 | dependencies: |
| 1502 | - "camelcase" "^5.3.1" | |
| 1503 | - "find-up" "^4.1.0" | |
| 1504 | - "get-package-type" "^0.1.0" | |
| 1505 | - "js-yaml" "^3.13.1" | |
| 1506 | - "resolve-from" "^5.0.0" | |
| 1512 | + camelcase "^5.3.1" | |
| 1513 | + find-up "^4.1.0" | |
| 1514 | + get-package-type "^0.1.0" | |
| 1515 | + js-yaml "^3.13.1" | |
| 1516 | + resolve-from "^5.0.0" | |
| 1507 | 1517 | |
| 1508 | 1518 | "@istanbuljs/schema@^0.1.2": |
| 1509 | - "integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" | |
| 1510 | - "resolved" "https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz" | |
| 1511 | - "version" "0.1.3" | |
| 1519 | + version "0.1.3" | |
| 1520 | + resolved "https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz" | |
| 1521 | + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== | |
| 1512 | 1522 | |
| 1513 | 1523 | "@jest/console@^27.5.1": |
| 1514 | - "integrity" "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==" | |
| 1515 | - "resolved" "https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz" | |
| 1516 | - "version" "27.5.1" | |
| 1524 | + version "27.5.1" | |
| 1525 | + resolved "https://registry.npmmirror.com/@jest/console/-/console-27.5.1.tgz" | |
| 1526 | + integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg== | |
| 1517 | 1527 | dependencies: |
| 1518 | 1528 | "@jest/types" "^27.5.1" |
| 1519 | 1529 | "@types/node" "*" |
| 1520 | - "chalk" "^4.0.0" | |
| 1521 | - "jest-message-util" "^27.5.1" | |
| 1522 | - "jest-util" "^27.5.1" | |
| 1523 | - "slash" "^3.0.0" | |
| 1530 | + chalk "^4.0.0" | |
| 1531 | + jest-message-util "^27.5.1" | |
| 1532 | + jest-util "^27.5.1" | |
| 1533 | + slash "^3.0.0" | |
| 1524 | 1534 | |
| 1525 | 1535 | "@jest/core@^27.0.4", "@jest/core@^27.5.1": |
| 1526 | - "integrity" "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==" | |
| 1527 | - "resolved" "https://registry.npmmirror.com/@jest/core/-/core-27.5.1.tgz" | |
| 1528 | - "version" "27.5.1" | |
| 1536 | + version "27.5.1" | |
| 1537 | + resolved "https://registry.npmmirror.com/@jest/core/-/core-27.5.1.tgz" | |
| 1538 | + integrity sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ== | |
| 1529 | 1539 | dependencies: |
| 1530 | 1540 | "@jest/console" "^27.5.1" |
| 1531 | 1541 | "@jest/reporters" "^27.5.1" |
| ... | ... | @@ -1533,64 +1543,64 @@ |
| 1533 | 1543 | "@jest/transform" "^27.5.1" |
| 1534 | 1544 | "@jest/types" "^27.5.1" |
| 1535 | 1545 | "@types/node" "*" |
| 1536 | - "ansi-escapes" "^4.2.1" | |
| 1537 | - "chalk" "^4.0.0" | |
| 1538 | - "emittery" "^0.8.1" | |
| 1539 | - "exit" "^0.1.2" | |
| 1540 | - "graceful-fs" "^4.2.9" | |
| 1541 | - "jest-changed-files" "^27.5.1" | |
| 1542 | - "jest-config" "^27.5.1" | |
| 1543 | - "jest-haste-map" "^27.5.1" | |
| 1544 | - "jest-message-util" "^27.5.1" | |
| 1545 | - "jest-regex-util" "^27.5.1" | |
| 1546 | - "jest-resolve" "^27.5.1" | |
| 1547 | - "jest-resolve-dependencies" "^27.5.1" | |
| 1548 | - "jest-runner" "^27.5.1" | |
| 1549 | - "jest-runtime" "^27.5.1" | |
| 1550 | - "jest-snapshot" "^27.5.1" | |
| 1551 | - "jest-util" "^27.5.1" | |
| 1552 | - "jest-validate" "^27.5.1" | |
| 1553 | - "jest-watcher" "^27.5.1" | |
| 1554 | - "micromatch" "^4.0.4" | |
| 1555 | - "rimraf" "^3.0.0" | |
| 1556 | - "slash" "^3.0.0" | |
| 1557 | - "strip-ansi" "^6.0.0" | |
| 1546 | + ansi-escapes "^4.2.1" | |
| 1547 | + chalk "^4.0.0" | |
| 1548 | + emittery "^0.8.1" | |
| 1549 | + exit "^0.1.2" | |
| 1550 | + graceful-fs "^4.2.9" | |
| 1551 | + jest-changed-files "^27.5.1" | |
| 1552 | + jest-config "^27.5.1" | |
| 1553 | + jest-haste-map "^27.5.1" | |
| 1554 | + jest-message-util "^27.5.1" | |
| 1555 | + jest-regex-util "^27.5.1" | |
| 1556 | + jest-resolve "^27.5.1" | |
| 1557 | + jest-resolve-dependencies "^27.5.1" | |
| 1558 | + jest-runner "^27.5.1" | |
| 1559 | + jest-runtime "^27.5.1" | |
| 1560 | + jest-snapshot "^27.5.1" | |
| 1561 | + jest-util "^27.5.1" | |
| 1562 | + jest-validate "^27.5.1" | |
| 1563 | + jest-watcher "^27.5.1" | |
| 1564 | + micromatch "^4.0.4" | |
| 1565 | + rimraf "^3.0.0" | |
| 1566 | + slash "^3.0.0" | |
| 1567 | + strip-ansi "^6.0.0" | |
| 1558 | 1568 | |
| 1559 | 1569 | "@jest/environment@^27.5.1": |
| 1560 | - "integrity" "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==" | |
| 1561 | - "resolved" "https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz" | |
| 1562 | - "version" "27.5.1" | |
| 1570 | + version "27.5.1" | |
| 1571 | + resolved "https://registry.npmmirror.com/@jest/environment/-/environment-27.5.1.tgz" | |
| 1572 | + integrity sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA== | |
| 1563 | 1573 | dependencies: |
| 1564 | 1574 | "@jest/fake-timers" "^27.5.1" |
| 1565 | 1575 | "@jest/types" "^27.5.1" |
| 1566 | 1576 | "@types/node" "*" |
| 1567 | - "jest-mock" "^27.5.1" | |
| 1577 | + jest-mock "^27.5.1" | |
| 1568 | 1578 | |
| 1569 | 1579 | "@jest/fake-timers@^27.5.1": |
| 1570 | - "integrity" "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==" | |
| 1571 | - "resolved" "https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz" | |
| 1572 | - "version" "27.5.1" | |
| 1580 | + version "27.5.1" | |
| 1581 | + resolved "https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz" | |
| 1582 | + integrity sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ== | |
| 1573 | 1583 | dependencies: |
| 1574 | 1584 | "@jest/types" "^27.5.1" |
| 1575 | 1585 | "@sinonjs/fake-timers" "^8.0.1" |
| 1576 | 1586 | "@types/node" "*" |
| 1577 | - "jest-message-util" "^27.5.1" | |
| 1578 | - "jest-mock" "^27.5.1" | |
| 1579 | - "jest-util" "^27.5.1" | |
| 1587 | + jest-message-util "^27.5.1" | |
| 1588 | + jest-mock "^27.5.1" | |
| 1589 | + jest-util "^27.5.1" | |
| 1580 | 1590 | |
| 1581 | 1591 | "@jest/globals@^27.5.1": |
| 1582 | - "integrity" "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==" | |
| 1583 | - "resolved" "https://registry.npmmirror.com/@jest/globals/-/globals-27.5.1.tgz" | |
| 1584 | - "version" "27.5.1" | |
| 1592 | + version "27.5.1" | |
| 1593 | + resolved "https://registry.npmmirror.com/@jest/globals/-/globals-27.5.1.tgz" | |
| 1594 | + integrity sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q== | |
| 1585 | 1595 | dependencies: |
| 1586 | 1596 | "@jest/environment" "^27.5.1" |
| 1587 | 1597 | "@jest/types" "^27.5.1" |
| 1588 | - "expect" "^27.5.1" | |
| 1598 | + expect "^27.5.1" | |
| 1589 | 1599 | |
| 1590 | 1600 | "@jest/reporters@^27.5.1": |
| 1591 | - "integrity" "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==" | |
| 1592 | - "resolved" "https://registry.npmmirror.com/@jest/reporters/-/reporters-27.5.1.tgz" | |
| 1593 | - "version" "27.5.1" | |
| 1601 | + version "27.5.1" | |
| 1602 | + resolved "https://registry.npmmirror.com/@jest/reporters/-/reporters-27.5.1.tgz" | |
| 1603 | + integrity sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw== | |
| 1594 | 1604 | dependencies: |
| 1595 | 1605 | "@bcoe/v8-coverage" "^0.2.3" |
| 1596 | 1606 | "@jest/console" "^27.5.1" |
| ... | ... | @@ -1598,339 +1608,339 @@ |
| 1598 | 1608 | "@jest/transform" "^27.5.1" |
| 1599 | 1609 | "@jest/types" "^27.5.1" |
| 1600 | 1610 | "@types/node" "*" |
| 1601 | - "chalk" "^4.0.0" | |
| 1602 | - "collect-v8-coverage" "^1.0.0" | |
| 1603 | - "exit" "^0.1.2" | |
| 1604 | - "glob" "^7.1.2" | |
| 1605 | - "graceful-fs" "^4.2.9" | |
| 1606 | - "istanbul-lib-coverage" "^3.0.0" | |
| 1607 | - "istanbul-lib-instrument" "^5.1.0" | |
| 1608 | - "istanbul-lib-report" "^3.0.0" | |
| 1609 | - "istanbul-lib-source-maps" "^4.0.0" | |
| 1610 | - "istanbul-reports" "^3.1.3" | |
| 1611 | - "jest-haste-map" "^27.5.1" | |
| 1612 | - "jest-resolve" "^27.5.1" | |
| 1613 | - "jest-util" "^27.5.1" | |
| 1614 | - "jest-worker" "^27.5.1" | |
| 1615 | - "slash" "^3.0.0" | |
| 1616 | - "source-map" "^0.6.0" | |
| 1617 | - "string-length" "^4.0.1" | |
| 1618 | - "terminal-link" "^2.0.0" | |
| 1619 | - "v8-to-istanbul" "^8.1.0" | |
| 1611 | + chalk "^4.0.0" | |
| 1612 | + collect-v8-coverage "^1.0.0" | |
| 1613 | + exit "^0.1.2" | |
| 1614 | + glob "^7.1.2" | |
| 1615 | + graceful-fs "^4.2.9" | |
| 1616 | + istanbul-lib-coverage "^3.0.0" | |
| 1617 | + istanbul-lib-instrument "^5.1.0" | |
| 1618 | + istanbul-lib-report "^3.0.0" | |
| 1619 | + istanbul-lib-source-maps "^4.0.0" | |
| 1620 | + istanbul-reports "^3.1.3" | |
| 1621 | + jest-haste-map "^27.5.1" | |
| 1622 | + jest-resolve "^27.5.1" | |
| 1623 | + jest-util "^27.5.1" | |
| 1624 | + jest-worker "^27.5.1" | |
| 1625 | + slash "^3.0.0" | |
| 1626 | + source-map "^0.6.0" | |
| 1627 | + string-length "^4.0.1" | |
| 1628 | + terminal-link "^2.0.0" | |
| 1629 | + v8-to-istanbul "^8.1.0" | |
| 1620 | 1630 | |
| 1621 | 1631 | "@jest/source-map@^27.5.1": |
| 1622 | - "integrity" "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==" | |
| 1623 | - "resolved" "https://registry.npmmirror.com/@jest/source-map/-/source-map-27.5.1.tgz" | |
| 1624 | - "version" "27.5.1" | |
| 1632 | + version "27.5.1" | |
| 1633 | + resolved "https://registry.npmmirror.com/@jest/source-map/-/source-map-27.5.1.tgz" | |
| 1634 | + integrity sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg== | |
| 1625 | 1635 | dependencies: |
| 1626 | - "callsites" "^3.0.0" | |
| 1627 | - "graceful-fs" "^4.2.9" | |
| 1628 | - "source-map" "^0.6.0" | |
| 1636 | + callsites "^3.0.0" | |
| 1637 | + graceful-fs "^4.2.9" | |
| 1638 | + source-map "^0.6.0" | |
| 1629 | 1639 | |
| 1630 | 1640 | "@jest/test-result@^27.5.1": |
| 1631 | - "integrity" "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==" | |
| 1632 | - "resolved" "https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz" | |
| 1633 | - "version" "27.5.1" | |
| 1641 | + version "27.5.1" | |
| 1642 | + resolved "https://registry.npmmirror.com/@jest/test-result/-/test-result-27.5.1.tgz" | |
| 1643 | + integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag== | |
| 1634 | 1644 | dependencies: |
| 1635 | 1645 | "@jest/console" "^27.5.1" |
| 1636 | 1646 | "@jest/types" "^27.5.1" |
| 1637 | 1647 | "@types/istanbul-lib-coverage" "^2.0.0" |
| 1638 | - "collect-v8-coverage" "^1.0.0" | |
| 1648 | + collect-v8-coverage "^1.0.0" | |
| 1639 | 1649 | |
| 1640 | 1650 | "@jest/test-sequencer@^27.5.1": |
| 1641 | - "integrity" "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==" | |
| 1642 | - "resolved" "https://registry.npmmirror.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz" | |
| 1643 | - "version" "27.5.1" | |
| 1651 | + version "27.5.1" | |
| 1652 | + resolved "https://registry.npmmirror.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz" | |
| 1653 | + integrity sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ== | |
| 1644 | 1654 | dependencies: |
| 1645 | 1655 | "@jest/test-result" "^27.5.1" |
| 1646 | - "graceful-fs" "^4.2.9" | |
| 1647 | - "jest-haste-map" "^27.5.1" | |
| 1648 | - "jest-runtime" "^27.5.1" | |
| 1656 | + graceful-fs "^4.2.9" | |
| 1657 | + jest-haste-map "^27.5.1" | |
| 1658 | + jest-runtime "^27.5.1" | |
| 1649 | 1659 | |
| 1650 | 1660 | "@jest/transform@^27.5.1": |
| 1651 | - "integrity" "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==" | |
| 1652 | - "resolved" "https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz" | |
| 1653 | - "version" "27.5.1" | |
| 1661 | + version "27.5.1" | |
| 1662 | + resolved "https://registry.npmmirror.com/@jest/transform/-/transform-27.5.1.tgz" | |
| 1663 | + integrity sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw== | |
| 1654 | 1664 | dependencies: |
| 1655 | 1665 | "@babel/core" "^7.1.0" |
| 1656 | 1666 | "@jest/types" "^27.5.1" |
| 1657 | - "babel-plugin-istanbul" "^6.1.1" | |
| 1658 | - "chalk" "^4.0.0" | |
| 1659 | - "convert-source-map" "^1.4.0" | |
| 1660 | - "fast-json-stable-stringify" "^2.0.0" | |
| 1661 | - "graceful-fs" "^4.2.9" | |
| 1662 | - "jest-haste-map" "^27.5.1" | |
| 1663 | - "jest-regex-util" "^27.5.1" | |
| 1664 | - "jest-util" "^27.5.1" | |
| 1665 | - "micromatch" "^4.0.4" | |
| 1666 | - "pirates" "^4.0.4" | |
| 1667 | - "slash" "^3.0.0" | |
| 1668 | - "source-map" "^0.6.1" | |
| 1669 | - "write-file-atomic" "^3.0.0" | |
| 1667 | + babel-plugin-istanbul "^6.1.1" | |
| 1668 | + chalk "^4.0.0" | |
| 1669 | + convert-source-map "^1.4.0" | |
| 1670 | + fast-json-stable-stringify "^2.0.0" | |
| 1671 | + graceful-fs "^4.2.9" | |
| 1672 | + jest-haste-map "^27.5.1" | |
| 1673 | + jest-regex-util "^27.5.1" | |
| 1674 | + jest-util "^27.5.1" | |
| 1675 | + micromatch "^4.0.4" | |
| 1676 | + pirates "^4.0.4" | |
| 1677 | + slash "^3.0.0" | |
| 1678 | + source-map "^0.6.1" | |
| 1679 | + write-file-atomic "^3.0.0" | |
| 1670 | 1680 | |
| 1671 | 1681 | "@jest/types@^27.5.1": |
| 1672 | - "integrity" "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==" | |
| 1673 | - "resolved" "https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz" | |
| 1674 | - "version" "27.5.1" | |
| 1682 | + version "27.5.1" | |
| 1683 | + resolved "https://registry.npmmirror.com/@jest/types/-/types-27.5.1.tgz" | |
| 1684 | + integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== | |
| 1675 | 1685 | dependencies: |
| 1676 | 1686 | "@types/istanbul-lib-coverage" "^2.0.0" |
| 1677 | 1687 | "@types/istanbul-reports" "^3.0.0" |
| 1678 | 1688 | "@types/node" "*" |
| 1679 | 1689 | "@types/yargs" "^16.0.0" |
| 1680 | - "chalk" "^4.0.0" | |
| 1690 | + chalk "^4.0.0" | |
| 1681 | 1691 | |
| 1682 | 1692 | "@jimp/bmp@^0.10.3": |
| 1683 | - "integrity" "sha512-keMOc5woiDmONXsB/6aXLR4Z5Q+v8lFq3EY2rcj2FmstbDMhRuGbmcBxlEgOqfRjwvtf/wOtJ3Of37oAWtVfLg==" | |
| 1684 | - "resolved" "https://registry.npmmirror.com/@jimp/bmp/-/bmp-0.10.3.tgz" | |
| 1685 | - "version" "0.10.3" | |
| 1693 | + version "0.10.3" | |
| 1694 | + resolved "https://registry.npmmirror.com/@jimp/bmp/-/bmp-0.10.3.tgz" | |
| 1695 | + integrity sha512-keMOc5woiDmONXsB/6aXLR4Z5Q+v8lFq3EY2rcj2FmstbDMhRuGbmcBxlEgOqfRjwvtf/wOtJ3Of37oAWtVfLg== | |
| 1686 | 1696 | dependencies: |
| 1687 | 1697 | "@babel/runtime" "^7.7.2" |
| 1688 | 1698 | "@jimp/utils" "^0.10.3" |
| 1689 | - "bmp-js" "^0.1.0" | |
| 1690 | - "core-js" "^3.4.1" | |
| 1699 | + bmp-js "^0.1.0" | |
| 1700 | + core-js "^3.4.1" | |
| 1691 | 1701 | |
| 1692 | 1702 | "@jimp/core@^0.10.3": |
| 1693 | - "integrity" "sha512-Gd5IpL3U2bFIO57Fh/OA3HCpWm4uW/pU01E75rI03BXfTdz3T+J7TwvyG1XaqsQ7/DSlS99GXtLQPlfFIe28UA==" | |
| 1694 | - "resolved" "https://registry.npmmirror.com/@jimp/core/-/core-0.10.3.tgz" | |
| 1695 | - "version" "0.10.3" | |
| 1703 | + version "0.10.3" | |
| 1704 | + resolved "https://registry.npmmirror.com/@jimp/core/-/core-0.10.3.tgz" | |
| 1705 | + integrity sha512-Gd5IpL3U2bFIO57Fh/OA3HCpWm4uW/pU01E75rI03BXfTdz3T+J7TwvyG1XaqsQ7/DSlS99GXtLQPlfFIe28UA== | |
| 1696 | 1706 | dependencies: |
| 1697 | 1707 | "@babel/runtime" "^7.7.2" |
| 1698 | 1708 | "@jimp/utils" "^0.10.3" |
| 1699 | - "any-base" "^1.1.0" | |
| 1700 | - "buffer" "^5.2.0" | |
| 1701 | - "core-js" "^3.4.1" | |
| 1702 | - "exif-parser" "^0.1.12" | |
| 1703 | - "file-type" "^9.0.0" | |
| 1704 | - "load-bmfont" "^1.3.1" | |
| 1705 | - "mkdirp" "^0.5.1" | |
| 1706 | - "phin" "^2.9.1" | |
| 1707 | - "pixelmatch" "^4.0.2" | |
| 1708 | - "tinycolor2" "^1.4.1" | |
| 1709 | + any-base "^1.1.0" | |
| 1710 | + buffer "^5.2.0" | |
| 1711 | + core-js "^3.4.1" | |
| 1712 | + exif-parser "^0.1.12" | |
| 1713 | + file-type "^9.0.0" | |
| 1714 | + load-bmfont "^1.3.1" | |
| 1715 | + mkdirp "^0.5.1" | |
| 1716 | + phin "^2.9.1" | |
| 1717 | + pixelmatch "^4.0.2" | |
| 1718 | + tinycolor2 "^1.4.1" | |
| 1709 | 1719 | |
| 1710 | 1720 | "@jimp/custom@^0.10.3", "@jimp/custom@>=0.3.5": |
| 1711 | - "integrity" "sha512-nZmSI+jwTi5IRyNLbKSXQovoeqsw+D0Jn0SxW08wYQvdkiWA8bTlDQFgQ7HVwCAKBm8oKkDB/ZEo9qvHJ+1gAQ==" | |
| 1712 | - "resolved" "https://registry.npmmirror.com/@jimp/custom/-/custom-0.10.3.tgz" | |
| 1713 | - "version" "0.10.3" | |
| 1721 | + version "0.10.3" | |
| 1722 | + resolved "https://registry.npmmirror.com/@jimp/custom/-/custom-0.10.3.tgz" | |
| 1723 | + integrity sha512-nZmSI+jwTi5IRyNLbKSXQovoeqsw+D0Jn0SxW08wYQvdkiWA8bTlDQFgQ7HVwCAKBm8oKkDB/ZEo9qvHJ+1gAQ== | |
| 1714 | 1724 | dependencies: |
| 1715 | 1725 | "@babel/runtime" "^7.7.2" |
| 1716 | 1726 | "@jimp/core" "^0.10.3" |
| 1717 | - "core-js" "^3.4.1" | |
| 1727 | + core-js "^3.4.1" | |
| 1718 | 1728 | |
| 1719 | 1729 | "@jimp/gif@^0.10.3": |
| 1720 | - "integrity" "sha512-vjlRodSfz1CrUvvrnUuD/DsLK1GHB/yDZXHthVdZu23zYJIW7/WrIiD1IgQ5wOMV7NocfrvPn2iqUfBP81/WWA==" | |
| 1721 | - "resolved" "https://registry.npmmirror.com/@jimp/gif/-/gif-0.10.3.tgz" | |
| 1722 | - "version" "0.10.3" | |
| 1730 | + version "0.10.3" | |
| 1731 | + resolved "https://registry.npmmirror.com/@jimp/gif/-/gif-0.10.3.tgz" | |
| 1732 | + integrity sha512-vjlRodSfz1CrUvvrnUuD/DsLK1GHB/yDZXHthVdZu23zYJIW7/WrIiD1IgQ5wOMV7NocfrvPn2iqUfBP81/WWA== | |
| 1723 | 1733 | dependencies: |
| 1724 | 1734 | "@babel/runtime" "^7.7.2" |
| 1725 | 1735 | "@jimp/utils" "^0.10.3" |
| 1726 | - "core-js" "^3.4.1" | |
| 1727 | - "omggif" "^1.0.9" | |
| 1736 | + core-js "^3.4.1" | |
| 1737 | + omggif "^1.0.9" | |
| 1728 | 1738 | |
| 1729 | 1739 | "@jimp/jpeg@^0.10.3": |
| 1730 | - "integrity" "sha512-AAANwgUZOt6f6P7LZxY9lyJ9xclqutYJlsxt3JbriXUGJgrrFAIkcKcqv1nObgmQASSAQKYaMV9KdHjMlWFKlQ==" | |
| 1731 | - "resolved" "https://registry.npmmirror.com/@jimp/jpeg/-/jpeg-0.10.3.tgz" | |
| 1732 | - "version" "0.10.3" | |
| 1740 | + version "0.10.3" | |
| 1741 | + resolved "https://registry.npmmirror.com/@jimp/jpeg/-/jpeg-0.10.3.tgz" | |
| 1742 | + integrity sha512-AAANwgUZOt6f6P7LZxY9lyJ9xclqutYJlsxt3JbriXUGJgrrFAIkcKcqv1nObgmQASSAQKYaMV9KdHjMlWFKlQ== | |
| 1733 | 1743 | dependencies: |
| 1734 | 1744 | "@babel/runtime" "^7.7.2" |
| 1735 | 1745 | "@jimp/utils" "^0.10.3" |
| 1736 | - "core-js" "^3.4.1" | |
| 1737 | - "jpeg-js" "^0.3.4" | |
| 1746 | + core-js "^3.4.1" | |
| 1747 | + jpeg-js "^0.3.4" | |
| 1738 | 1748 | |
| 1739 | 1749 | "@jimp/plugin-blit@^0.10.3", "@jimp/plugin-blit@>=0.3.5": |
| 1740 | - "integrity" "sha512-5zlKlCfx4JWw9qUVC7GI4DzXyxDWyFvgZLaoGFoT00mlXlN75SarlDwc9iZ/2e2kp4bJWxz3cGgG4G/WXrbg3Q==" | |
| 1741 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-blit/-/plugin-blit-0.10.3.tgz" | |
| 1742 | - "version" "0.10.3" | |
| 1750 | + version "0.10.3" | |
| 1751 | + resolved "https://registry.npmmirror.com/@jimp/plugin-blit/-/plugin-blit-0.10.3.tgz" | |
| 1752 | + integrity sha512-5zlKlCfx4JWw9qUVC7GI4DzXyxDWyFvgZLaoGFoT00mlXlN75SarlDwc9iZ/2e2kp4bJWxz3cGgG4G/WXrbg3Q== | |
| 1743 | 1753 | dependencies: |
| 1744 | 1754 | "@babel/runtime" "^7.7.2" |
| 1745 | 1755 | "@jimp/utils" "^0.10.3" |
| 1746 | - "core-js" "^3.4.1" | |
| 1756 | + core-js "^3.4.1" | |
| 1747 | 1757 | |
| 1748 | 1758 | "@jimp/plugin-blur@^0.10.3", "@jimp/plugin-blur@>=0.3.5": |
| 1749 | - "integrity" "sha512-cTOK3rjh1Yjh23jSfA6EHCHjsPJDEGLC8K2y9gM7dnTUK1y9NNmkFS23uHpyjgsWFIoH9oRh2SpEs3INjCpZhQ==" | |
| 1750 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-blur/-/plugin-blur-0.10.3.tgz" | |
| 1751 | - "version" "0.10.3" | |
| 1759 | + version "0.10.3" | |
| 1760 | + resolved "https://registry.npmmirror.com/@jimp/plugin-blur/-/plugin-blur-0.10.3.tgz" | |
| 1761 | + integrity sha512-cTOK3rjh1Yjh23jSfA6EHCHjsPJDEGLC8K2y9gM7dnTUK1y9NNmkFS23uHpyjgsWFIoH9oRh2SpEs3INjCpZhQ== | |
| 1752 | 1762 | dependencies: |
| 1753 | 1763 | "@babel/runtime" "^7.7.2" |
| 1754 | 1764 | "@jimp/utils" "^0.10.3" |
| 1755 | - "core-js" "^3.4.1" | |
| 1765 | + core-js "^3.4.1" | |
| 1756 | 1766 | |
| 1757 | 1767 | "@jimp/plugin-circle@^0.10.3": |
| 1758 | - "integrity" "sha512-51GAPIVelqAcfuUpaM5JWJ0iWl4vEjNXB7p4P7SX5udugK5bxXUjO6KA2qgWmdpHuCKtoNgkzWU9fNSuYp7tCA==" | |
| 1759 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-circle/-/plugin-circle-0.10.3.tgz" | |
| 1760 | - "version" "0.10.3" | |
| 1768 | + version "0.10.3" | |
| 1769 | + resolved "https://registry.npmmirror.com/@jimp/plugin-circle/-/plugin-circle-0.10.3.tgz" | |
| 1770 | + integrity sha512-51GAPIVelqAcfuUpaM5JWJ0iWl4vEjNXB7p4P7SX5udugK5bxXUjO6KA2qgWmdpHuCKtoNgkzWU9fNSuYp7tCA== | |
| 1761 | 1771 | dependencies: |
| 1762 | 1772 | "@babel/runtime" "^7.7.2" |
| 1763 | 1773 | "@jimp/utils" "^0.10.3" |
| 1764 | - "core-js" "^3.4.1" | |
| 1774 | + core-js "^3.4.1" | |
| 1765 | 1775 | |
| 1766 | 1776 | "@jimp/plugin-color@^0.10.3", "@jimp/plugin-color@>=0.8.0": |
| 1767 | - "integrity" "sha512-RgeHUElmlTH7vpI4WyQrz6u59spiKfVQbsG/XUzfWGamFSixa24ZDwX/yV/Ts+eNaz7pZeIuv533qmKPvw2ujg==" | |
| 1768 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-color/-/plugin-color-0.10.3.tgz" | |
| 1769 | - "version" "0.10.3" | |
| 1777 | + version "0.10.3" | |
| 1778 | + resolved "https://registry.npmmirror.com/@jimp/plugin-color/-/plugin-color-0.10.3.tgz" | |
| 1779 | + integrity sha512-RgeHUElmlTH7vpI4WyQrz6u59spiKfVQbsG/XUzfWGamFSixa24ZDwX/yV/Ts+eNaz7pZeIuv533qmKPvw2ujg== | |
| 1770 | 1780 | dependencies: |
| 1771 | 1781 | "@babel/runtime" "^7.7.2" |
| 1772 | 1782 | "@jimp/utils" "^0.10.3" |
| 1773 | - "core-js" "^3.4.1" | |
| 1774 | - "tinycolor2" "^1.4.1" | |
| 1783 | + core-js "^3.4.1" | |
| 1784 | + tinycolor2 "^1.4.1" | |
| 1775 | 1785 | |
| 1776 | 1786 | "@jimp/plugin-contain@^0.10.3": |
| 1777 | - "integrity" "sha512-bYJKW9dqzcB0Ihc6u7jSyKa3juStzbLs2LFr6fu8TzA2WkMS/R8h+ddkiO36+F9ILTWHP0CIA3HFe5OdOGcigw==" | |
| 1778 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-contain/-/plugin-contain-0.10.3.tgz" | |
| 1779 | - "version" "0.10.3" | |
| 1787 | + version "0.10.3" | |
| 1788 | + resolved "https://registry.npmmirror.com/@jimp/plugin-contain/-/plugin-contain-0.10.3.tgz" | |
| 1789 | + integrity sha512-bYJKW9dqzcB0Ihc6u7jSyKa3juStzbLs2LFr6fu8TzA2WkMS/R8h+ddkiO36+F9ILTWHP0CIA3HFe5OdOGcigw== | |
| 1780 | 1790 | dependencies: |
| 1781 | 1791 | "@babel/runtime" "^7.7.2" |
| 1782 | 1792 | "@jimp/utils" "^0.10.3" |
| 1783 | - "core-js" "^3.4.1" | |
| 1793 | + core-js "^3.4.1" | |
| 1784 | 1794 | |
| 1785 | 1795 | "@jimp/plugin-cover@^0.10.3": |
| 1786 | - "integrity" "sha512-pOxu0cM0BRPzdV468n4dMocJXoMbTnARDY/EpC3ZW15SpMuc/dr1KhWQHgoQX5kVW1Wt8zgqREAJJCQ5KuPKDA==" | |
| 1787 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-cover/-/plugin-cover-0.10.3.tgz" | |
| 1788 | - "version" "0.10.3" | |
| 1796 | + version "0.10.3" | |
| 1797 | + resolved "https://registry.npmmirror.com/@jimp/plugin-cover/-/plugin-cover-0.10.3.tgz" | |
| 1798 | + integrity sha512-pOxu0cM0BRPzdV468n4dMocJXoMbTnARDY/EpC3ZW15SpMuc/dr1KhWQHgoQX5kVW1Wt8zgqREAJJCQ5KuPKDA== | |
| 1789 | 1799 | dependencies: |
| 1790 | 1800 | "@babel/runtime" "^7.7.2" |
| 1791 | 1801 | "@jimp/utils" "^0.10.3" |
| 1792 | - "core-js" "^3.4.1" | |
| 1802 | + core-js "^3.4.1" | |
| 1793 | 1803 | |
| 1794 | 1804 | "@jimp/plugin-crop@^0.10.3", "@jimp/plugin-crop@>=0.3.5": |
| 1795 | - "integrity" "sha512-nB7HgOjjl9PgdHr076xZ3Sr6qHYzeBYBs9qvs3tfEEUeYMNnvzgCCGtUl6eMakazZFCMk3mhKmcB9zQuHFOvkg==" | |
| 1796 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-crop/-/plugin-crop-0.10.3.tgz" | |
| 1797 | - "version" "0.10.3" | |
| 1805 | + version "0.10.3" | |
| 1806 | + resolved "https://registry.npmmirror.com/@jimp/plugin-crop/-/plugin-crop-0.10.3.tgz" | |
| 1807 | + integrity sha512-nB7HgOjjl9PgdHr076xZ3Sr6qHYzeBYBs9qvs3tfEEUeYMNnvzgCCGtUl6eMakazZFCMk3mhKmcB9zQuHFOvkg== | |
| 1798 | 1808 | dependencies: |
| 1799 | 1809 | "@babel/runtime" "^7.7.2" |
| 1800 | 1810 | "@jimp/utils" "^0.10.3" |
| 1801 | - "core-js" "^3.4.1" | |
| 1811 | + core-js "^3.4.1" | |
| 1802 | 1812 | |
| 1803 | 1813 | "@jimp/plugin-displace@^0.10.3": |
| 1804 | - "integrity" "sha512-8t3fVKCH5IVqI4lewe4lFFjpxxr69SQCz5/tlpDLQZsrNScNJivHdQ09zljTrVTCSgeCqQJIKgH2Q7Sk/pAZ0w==" | |
| 1805 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-displace/-/plugin-displace-0.10.3.tgz" | |
| 1806 | - "version" "0.10.3" | |
| 1814 | + version "0.10.3" | |
| 1815 | + resolved "https://registry.npmmirror.com/@jimp/plugin-displace/-/plugin-displace-0.10.3.tgz" | |
| 1816 | + integrity sha512-8t3fVKCH5IVqI4lewe4lFFjpxxr69SQCz5/tlpDLQZsrNScNJivHdQ09zljTrVTCSgeCqQJIKgH2Q7Sk/pAZ0w== | |
| 1807 | 1817 | dependencies: |
| 1808 | 1818 | "@babel/runtime" "^7.7.2" |
| 1809 | 1819 | "@jimp/utils" "^0.10.3" |
| 1810 | - "core-js" "^3.4.1" | |
| 1820 | + core-js "^3.4.1" | |
| 1811 | 1821 | |
| 1812 | 1822 | "@jimp/plugin-dither@^0.10.3": |
| 1813 | - "integrity" "sha512-JCX/oNSnEg1kGQ8ffZ66bEgQOLCY3Rn+lrd6v1jjLy/mn9YVZTMsxLtGCXpiCDC2wG/KTmi4862ysmP9do9dAQ==" | |
| 1814 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-dither/-/plugin-dither-0.10.3.tgz" | |
| 1815 | - "version" "0.10.3" | |
| 1823 | + version "0.10.3" | |
| 1824 | + resolved "https://registry.npmmirror.com/@jimp/plugin-dither/-/plugin-dither-0.10.3.tgz" | |
| 1825 | + integrity sha512-JCX/oNSnEg1kGQ8ffZ66bEgQOLCY3Rn+lrd6v1jjLy/mn9YVZTMsxLtGCXpiCDC2wG/KTmi4862ysmP9do9dAQ== | |
| 1816 | 1826 | dependencies: |
| 1817 | 1827 | "@babel/runtime" "^7.7.2" |
| 1818 | 1828 | "@jimp/utils" "^0.10.3" |
| 1819 | - "core-js" "^3.4.1" | |
| 1829 | + core-js "^3.4.1" | |
| 1820 | 1830 | |
| 1821 | 1831 | "@jimp/plugin-fisheye@^0.10.3": |
| 1822 | - "integrity" "sha512-RRZb1wqe+xdocGcFtj2xHU7sF7xmEZmIa6BmrfSchjyA2b32TGPWKnP3qyj7p6LWEsXn+19hRYbjfyzyebPElQ==" | |
| 1823 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.10.3.tgz" | |
| 1824 | - "version" "0.10.3" | |
| 1832 | + version "0.10.3" | |
| 1833 | + resolved "https://registry.npmmirror.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.10.3.tgz" | |
| 1834 | + integrity sha512-RRZb1wqe+xdocGcFtj2xHU7sF7xmEZmIa6BmrfSchjyA2b32TGPWKnP3qyj7p6LWEsXn+19hRYbjfyzyebPElQ== | |
| 1825 | 1835 | dependencies: |
| 1826 | 1836 | "@babel/runtime" "^7.7.2" |
| 1827 | 1837 | "@jimp/utils" "^0.10.3" |
| 1828 | - "core-js" "^3.4.1" | |
| 1838 | + core-js "^3.4.1" | |
| 1829 | 1839 | |
| 1830 | 1840 | "@jimp/plugin-flip@^0.10.3": |
| 1831 | - "integrity" "sha512-0epbi8XEzp0wmSjoW9IB0iMu0yNF17aZOxLdURCN3Zr+8nWPs5VNIMqSVa1Y62GSyiMDpVpKF/ITiXre+EqrPg==" | |
| 1832 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-flip/-/plugin-flip-0.10.3.tgz" | |
| 1833 | - "version" "0.10.3" | |
| 1841 | + version "0.10.3" | |
| 1842 | + resolved "https://registry.npmmirror.com/@jimp/plugin-flip/-/plugin-flip-0.10.3.tgz" | |
| 1843 | + integrity sha512-0epbi8XEzp0wmSjoW9IB0iMu0yNF17aZOxLdURCN3Zr+8nWPs5VNIMqSVa1Y62GSyiMDpVpKF/ITiXre+EqrPg== | |
| 1834 | 1844 | dependencies: |
| 1835 | 1845 | "@babel/runtime" "^7.7.2" |
| 1836 | 1846 | "@jimp/utils" "^0.10.3" |
| 1837 | - "core-js" "^3.4.1" | |
| 1847 | + core-js "^3.4.1" | |
| 1838 | 1848 | |
| 1839 | 1849 | "@jimp/plugin-gaussian@^0.10.3": |
| 1840 | - "integrity" "sha512-25eHlFbHUDnMMGpgRBBeQ2AMI4wsqCg46sue0KklI+c2BaZ+dGXmJA5uT8RTOrt64/K9Wz5E+2n7eBnny4dfpQ==" | |
| 1841 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.10.3.tgz" | |
| 1842 | - "version" "0.10.3" | |
| 1850 | + version "0.10.3" | |
| 1851 | + resolved "https://registry.npmmirror.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.10.3.tgz" | |
| 1852 | + integrity sha512-25eHlFbHUDnMMGpgRBBeQ2AMI4wsqCg46sue0KklI+c2BaZ+dGXmJA5uT8RTOrt64/K9Wz5E+2n7eBnny4dfpQ== | |
| 1843 | 1853 | dependencies: |
| 1844 | 1854 | "@babel/runtime" "^7.7.2" |
| 1845 | 1855 | "@jimp/utils" "^0.10.3" |
| 1846 | - "core-js" "^3.4.1" | |
| 1856 | + core-js "^3.4.1" | |
| 1847 | 1857 | |
| 1848 | 1858 | "@jimp/plugin-invert@^0.10.3": |
| 1849 | - "integrity" "sha512-effYSApWY/FbtlzqsKXlTLkgloKUiHBKjkQnqh5RL4oQxh/33j6aX+HFdDyQKtsXb8CMd4xd7wyiD2YYabTa0g==" | |
| 1850 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-invert/-/plugin-invert-0.10.3.tgz" | |
| 1851 | - "version" "0.10.3" | |
| 1859 | + version "0.10.3" | |
| 1860 | + resolved "https://registry.npmmirror.com/@jimp/plugin-invert/-/plugin-invert-0.10.3.tgz" | |
| 1861 | + integrity sha512-effYSApWY/FbtlzqsKXlTLkgloKUiHBKjkQnqh5RL4oQxh/33j6aX+HFdDyQKtsXb8CMd4xd7wyiD2YYabTa0g== | |
| 1852 | 1862 | dependencies: |
| 1853 | 1863 | "@babel/runtime" "^7.7.2" |
| 1854 | 1864 | "@jimp/utils" "^0.10.3" |
| 1855 | - "core-js" "^3.4.1" | |
| 1865 | + core-js "^3.4.1" | |
| 1856 | 1866 | |
| 1857 | 1867 | "@jimp/plugin-mask@^0.10.3": |
| 1858 | - "integrity" "sha512-twrg8q8TIhM9Z6Jcu9/5f+OCAPaECb0eKrrbbIajJqJ3bCUlj5zbfgIhiQIzjPJ6KjpnFPSqHQfHkU1Vvk/nVw==" | |
| 1859 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-mask/-/plugin-mask-0.10.3.tgz" | |
| 1860 | - "version" "0.10.3" | |
| 1868 | + version "0.10.3" | |
| 1869 | + resolved "https://registry.npmmirror.com/@jimp/plugin-mask/-/plugin-mask-0.10.3.tgz" | |
| 1870 | + integrity sha512-twrg8q8TIhM9Z6Jcu9/5f+OCAPaECb0eKrrbbIajJqJ3bCUlj5zbfgIhiQIzjPJ6KjpnFPSqHQfHkU1Vvk/nVw== | |
| 1861 | 1871 | dependencies: |
| 1862 | 1872 | "@babel/runtime" "^7.7.2" |
| 1863 | 1873 | "@jimp/utils" "^0.10.3" |
| 1864 | - "core-js" "^3.4.1" | |
| 1874 | + core-js "^3.4.1" | |
| 1865 | 1875 | |
| 1866 | 1876 | "@jimp/plugin-normalize@^0.10.3": |
| 1867 | - "integrity" "sha512-xkb5eZI/mMlbwKkDN79+1/t/+DBo8bBXZUMsT4gkFgMRKNRZ6NQPxlv1d3QpRzlocsl6UMxrHnhgnXdLAcgrXw==" | |
| 1868 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-normalize/-/plugin-normalize-0.10.3.tgz" | |
| 1869 | - "version" "0.10.3" | |
| 1877 | + version "0.10.3" | |
| 1878 | + resolved "https://registry.npmmirror.com/@jimp/plugin-normalize/-/plugin-normalize-0.10.3.tgz" | |
| 1879 | + integrity sha512-xkb5eZI/mMlbwKkDN79+1/t/+DBo8bBXZUMsT4gkFgMRKNRZ6NQPxlv1d3QpRzlocsl6UMxrHnhgnXdLAcgrXw== | |
| 1870 | 1880 | dependencies: |
| 1871 | 1881 | "@babel/runtime" "^7.7.2" |
| 1872 | 1882 | "@jimp/utils" "^0.10.3" |
| 1873 | - "core-js" "^3.4.1" | |
| 1883 | + core-js "^3.4.1" | |
| 1874 | 1884 | |
| 1875 | 1885 | "@jimp/plugin-print@^0.10.3": |
| 1876 | - "integrity" "sha512-wjRiI6yjXsAgMe6kVjizP+RgleUCLkH256dskjoNvJzmzbEfO7xQw9g6M02VET+emnbY0CO83IkrGm2q43VRyg==" | |
| 1877 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-print/-/plugin-print-0.10.3.tgz" | |
| 1878 | - "version" "0.10.3" | |
| 1886 | + version "0.10.3" | |
| 1887 | + resolved "https://registry.npmmirror.com/@jimp/plugin-print/-/plugin-print-0.10.3.tgz" | |
| 1888 | + integrity sha512-wjRiI6yjXsAgMe6kVjizP+RgleUCLkH256dskjoNvJzmzbEfO7xQw9g6M02VET+emnbY0CO83IkrGm2q43VRyg== | |
| 1879 | 1889 | dependencies: |
| 1880 | 1890 | "@babel/runtime" "^7.7.2" |
| 1881 | 1891 | "@jimp/utils" "^0.10.3" |
| 1882 | - "core-js" "^3.4.1" | |
| 1883 | - "load-bmfont" "^1.4.0" | |
| 1892 | + core-js "^3.4.1" | |
| 1893 | + load-bmfont "^1.4.0" | |
| 1884 | 1894 | |
| 1885 | 1895 | "@jimp/plugin-resize@^0.10.3", "@jimp/plugin-resize@>=0.3.5", "@jimp/plugin-resize@>=0.8.0": |
| 1886 | - "integrity" "sha512-rf8YmEB1d7Sg+g4LpqF0Mp+dfXfb6JFJkwlAIWPUOR7lGsPWALavEwTW91c0etEdnp0+JB9AFpy6zqq7Lwkq6w==" | |
| 1887 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-resize/-/plugin-resize-0.10.3.tgz" | |
| 1888 | - "version" "0.10.3" | |
| 1896 | + version "0.10.3" | |
| 1897 | + resolved "https://registry.npmmirror.com/@jimp/plugin-resize/-/plugin-resize-0.10.3.tgz" | |
| 1898 | + integrity sha512-rf8YmEB1d7Sg+g4LpqF0Mp+dfXfb6JFJkwlAIWPUOR7lGsPWALavEwTW91c0etEdnp0+JB9AFpy6zqq7Lwkq6w== | |
| 1889 | 1899 | dependencies: |
| 1890 | 1900 | "@babel/runtime" "^7.7.2" |
| 1891 | 1901 | "@jimp/utils" "^0.10.3" |
| 1892 | - "core-js" "^3.4.1" | |
| 1902 | + core-js "^3.4.1" | |
| 1893 | 1903 | |
| 1894 | 1904 | "@jimp/plugin-rotate@^0.10.3", "@jimp/plugin-rotate@>=0.3.5": |
| 1895 | - "integrity" "sha512-YXLlRjm18fkW9MOHUaVAxWjvgZM851ofOipytz5FyKp4KZWDLk+dZK1JNmVmK7MyVmAzZ5jsgSLhIgj+GgN0Eg==" | |
| 1896 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-rotate/-/plugin-rotate-0.10.3.tgz" | |
| 1897 | - "version" "0.10.3" | |
| 1905 | + version "0.10.3" | |
| 1906 | + resolved "https://registry.npmmirror.com/@jimp/plugin-rotate/-/plugin-rotate-0.10.3.tgz" | |
| 1907 | + integrity sha512-YXLlRjm18fkW9MOHUaVAxWjvgZM851ofOipytz5FyKp4KZWDLk+dZK1JNmVmK7MyVmAzZ5jsgSLhIgj+GgN0Eg== | |
| 1898 | 1908 | dependencies: |
| 1899 | 1909 | "@babel/runtime" "^7.7.2" |
| 1900 | 1910 | "@jimp/utils" "^0.10.3" |
| 1901 | - "core-js" "^3.4.1" | |
| 1911 | + core-js "^3.4.1" | |
| 1902 | 1912 | |
| 1903 | 1913 | "@jimp/plugin-scale@^0.10.3", "@jimp/plugin-scale@>=0.3.5": |
| 1904 | - "integrity" "sha512-5DXD7x7WVcX1gUgnlFXQa8F+Q3ThRYwJm+aesgrYvDOY+xzRoRSdQvhmdd4JEEue3lyX44DvBSgCIHPtGcEPaw==" | |
| 1905 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-scale/-/plugin-scale-0.10.3.tgz" | |
| 1906 | - "version" "0.10.3" | |
| 1914 | + version "0.10.3" | |
| 1915 | + resolved "https://registry.npmmirror.com/@jimp/plugin-scale/-/plugin-scale-0.10.3.tgz" | |
| 1916 | + integrity sha512-5DXD7x7WVcX1gUgnlFXQa8F+Q3ThRYwJm+aesgrYvDOY+xzRoRSdQvhmdd4JEEue3lyX44DvBSgCIHPtGcEPaw== | |
| 1907 | 1917 | dependencies: |
| 1908 | 1918 | "@babel/runtime" "^7.7.2" |
| 1909 | 1919 | "@jimp/utils" "^0.10.3" |
| 1910 | - "core-js" "^3.4.1" | |
| 1920 | + core-js "^3.4.1" | |
| 1911 | 1921 | |
| 1912 | 1922 | "@jimp/plugin-shadow@^0.10.3": |
| 1913 | - "integrity" "sha512-/nkFXpt2zVcdP4ETdkAUL0fSzyrC5ZFxdcphbYBodqD7fXNqChS/Un1eD4xCXWEpW8cnG9dixZgQgStjywH0Mg==" | |
| 1914 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-shadow/-/plugin-shadow-0.10.3.tgz" | |
| 1915 | - "version" "0.10.3" | |
| 1923 | + version "0.10.3" | |
| 1924 | + resolved "https://registry.npmmirror.com/@jimp/plugin-shadow/-/plugin-shadow-0.10.3.tgz" | |
| 1925 | + integrity sha512-/nkFXpt2zVcdP4ETdkAUL0fSzyrC5ZFxdcphbYBodqD7fXNqChS/Un1eD4xCXWEpW8cnG9dixZgQgStjywH0Mg== | |
| 1916 | 1926 | dependencies: |
| 1917 | 1927 | "@babel/runtime" "^7.7.2" |
| 1918 | 1928 | "@jimp/utils" "^0.10.3" |
| 1919 | - "core-js" "^3.4.1" | |
| 1929 | + core-js "^3.4.1" | |
| 1920 | 1930 | |
| 1921 | 1931 | "@jimp/plugin-threshold@^0.10.3": |
| 1922 | - "integrity" "sha512-Dzh0Yq2wXP2SOnxcbbiyA4LJ2luwrdf1MghNIt9H+NX7B+IWw/N8qA2GuSm9n4BPGSLluuhdAWJqHcTiREriVA==" | |
| 1923 | - "resolved" "https://registry.npmmirror.com/@jimp/plugin-threshold/-/plugin-threshold-0.10.3.tgz" | |
| 1924 | - "version" "0.10.3" | |
| 1932 | + version "0.10.3" | |
| 1933 | + resolved "https://registry.npmmirror.com/@jimp/plugin-threshold/-/plugin-threshold-0.10.3.tgz" | |
| 1934 | + integrity sha512-Dzh0Yq2wXP2SOnxcbbiyA4LJ2luwrdf1MghNIt9H+NX7B+IWw/N8qA2GuSm9n4BPGSLluuhdAWJqHcTiREriVA== | |
| 1925 | 1935 | dependencies: |
| 1926 | 1936 | "@babel/runtime" "^7.7.2" |
| 1927 | 1937 | "@jimp/utils" "^0.10.3" |
| 1928 | - "core-js" "^3.4.1" | |
| 1938 | + core-js "^3.4.1" | |
| 1929 | 1939 | |
| 1930 | 1940 | "@jimp/plugins@^0.10.3": |
| 1931 | - "integrity" "sha512-jTT3/7hOScf0EIKiAXmxwayHhryhc1wWuIe3FrchjDjr9wgIGNN2a7XwCgPl3fML17DXK1x8EzDneCdh261bkw==" | |
| 1932 | - "resolved" "https://registry.npmmirror.com/@jimp/plugins/-/plugins-0.10.3.tgz" | |
| 1933 | - "version" "0.10.3" | |
| 1941 | + version "0.10.3" | |
| 1942 | + resolved "https://registry.npmmirror.com/@jimp/plugins/-/plugins-0.10.3.tgz" | |
| 1943 | + integrity sha512-jTT3/7hOScf0EIKiAXmxwayHhryhc1wWuIe3FrchjDjr9wgIGNN2a7XwCgPl3fML17DXK1x8EzDneCdh261bkw== | |
| 1934 | 1944 | dependencies: |
| 1935 | 1945 | "@babel/runtime" "^7.7.2" |
| 1936 | 1946 | "@jimp/plugin-blit" "^0.10.3" |
| ... | ... | @@ -1954,32 +1964,32 @@ |
| 1954 | 1964 | "@jimp/plugin-scale" "^0.10.3" |
| 1955 | 1965 | "@jimp/plugin-shadow" "^0.10.3" |
| 1956 | 1966 | "@jimp/plugin-threshold" "^0.10.3" |
| 1957 | - "core-js" "^3.4.1" | |
| 1958 | - "timm" "^1.6.1" | |
| 1967 | + core-js "^3.4.1" | |
| 1968 | + timm "^1.6.1" | |
| 1959 | 1969 | |
| 1960 | 1970 | "@jimp/png@^0.10.3": |
| 1961 | - "integrity" "sha512-YKqk/dkl+nGZxSYIDQrqhmaP8tC3IK8H7dFPnnzFVvbhDnyYunqBZZO3SaZUKTichClRw8k/CjBhbc+hifSGWg==" | |
| 1962 | - "resolved" "https://registry.npmmirror.com/@jimp/png/-/png-0.10.3.tgz" | |
| 1963 | - "version" "0.10.3" | |
| 1971 | + version "0.10.3" | |
| 1972 | + resolved "https://registry.npmmirror.com/@jimp/png/-/png-0.10.3.tgz" | |
| 1973 | + integrity sha512-YKqk/dkl+nGZxSYIDQrqhmaP8tC3IK8H7dFPnnzFVvbhDnyYunqBZZO3SaZUKTichClRw8k/CjBhbc+hifSGWg== | |
| 1964 | 1974 | dependencies: |
| 1965 | 1975 | "@babel/runtime" "^7.7.2" |
| 1966 | 1976 | "@jimp/utils" "^0.10.3" |
| 1967 | - "core-js" "^3.4.1" | |
| 1968 | - "pngjs" "^3.3.3" | |
| 1977 | + core-js "^3.4.1" | |
| 1978 | + pngjs "^3.3.3" | |
| 1969 | 1979 | |
| 1970 | 1980 | "@jimp/tiff@^0.10.3": |
| 1971 | - "integrity" "sha512-7EsJzZ5Y/EtinkBGuwX3Bi4S+zgbKouxjt9c82VJTRJOQgLWsE/RHqcyRCOQBhHAZ9QexYmDz34medfLKdoX0g==" | |
| 1972 | - "resolved" "https://registry.npmmirror.com/@jimp/tiff/-/tiff-0.10.3.tgz" | |
| 1973 | - "version" "0.10.3" | |
| 1981 | + version "0.10.3" | |
| 1982 | + resolved "https://registry.npmmirror.com/@jimp/tiff/-/tiff-0.10.3.tgz" | |
| 1983 | + integrity sha512-7EsJzZ5Y/EtinkBGuwX3Bi4S+zgbKouxjt9c82VJTRJOQgLWsE/RHqcyRCOQBhHAZ9QexYmDz34medfLKdoX0g== | |
| 1974 | 1984 | dependencies: |
| 1975 | 1985 | "@babel/runtime" "^7.7.2" |
| 1976 | - "core-js" "^3.4.1" | |
| 1977 | - "utif" "^2.0.1" | |
| 1986 | + core-js "^3.4.1" | |
| 1987 | + utif "^2.0.1" | |
| 1978 | 1988 | |
| 1979 | 1989 | "@jimp/types@^0.10.3": |
| 1980 | - "integrity" "sha512-XGmBakiHZqseSWr/puGN+CHzx0IKBSpsKlmEmsNV96HKDiP6eu8NSnwdGCEq2mmIHe0JNcg1hqg59hpwtQ7Tiw==" | |
| 1981 | - "resolved" "https://registry.npmmirror.com/@jimp/types/-/types-0.10.3.tgz" | |
| 1982 | - "version" "0.10.3" | |
| 1990 | + version "0.10.3" | |
| 1991 | + resolved "https://registry.npmmirror.com/@jimp/types/-/types-0.10.3.tgz" | |
| 1992 | + integrity sha512-XGmBakiHZqseSWr/puGN+CHzx0IKBSpsKlmEmsNV96HKDiP6eu8NSnwdGCEq2mmIHe0JNcg1hqg59hpwtQ7Tiw== | |
| 1983 | 1993 | dependencies: |
| 1984 | 1994 | "@babel/runtime" "^7.7.2" |
| 1985 | 1995 | "@jimp/bmp" "^0.10.3" |
| ... | ... | @@ -1987,110 +1997,110 @@ |
| 1987 | 1997 | "@jimp/jpeg" "^0.10.3" |
| 1988 | 1998 | "@jimp/png" "^0.10.3" |
| 1989 | 1999 | "@jimp/tiff" "^0.10.3" |
| 1990 | - "core-js" "^3.4.1" | |
| 1991 | - "timm" "^1.6.1" | |
| 2000 | + core-js "^3.4.1" | |
| 2001 | + timm "^1.6.1" | |
| 1992 | 2002 | |
| 1993 | 2003 | "@jimp/utils@^0.10.3": |
| 1994 | - "integrity" "sha512-VcSlQhkil4ReYmg1KkN+WqHyYfZ2XfZxDsKAHSfST1GEz/RQHxKZbX+KhFKtKflnL0F4e6DlNQj3vznMNXCR2w==" | |
| 1995 | - "resolved" "https://registry.npmmirror.com/@jimp/utils/-/utils-0.10.3.tgz" | |
| 1996 | - "version" "0.10.3" | |
| 2004 | + version "0.10.3" | |
| 2005 | + resolved "https://registry.npmmirror.com/@jimp/utils/-/utils-0.10.3.tgz" | |
| 2006 | + integrity sha512-VcSlQhkil4ReYmg1KkN+WqHyYfZ2XfZxDsKAHSfST1GEz/RQHxKZbX+KhFKtKflnL0F4e6DlNQj3vznMNXCR2w== | |
| 1997 | 2007 | dependencies: |
| 1998 | 2008 | "@babel/runtime" "^7.7.2" |
| 1999 | - "core-js" "^3.4.1" | |
| 2000 | - "regenerator-runtime" "^0.13.3" | |
| 2009 | + core-js "^3.4.1" | |
| 2010 | + regenerator-runtime "^0.13.3" | |
| 2001 | 2011 | |
| 2002 | 2012 | "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.3": |
| 2003 | - "integrity" "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" | |
| 2004 | - "resolved" "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz" | |
| 2005 | - "version" "0.3.3" | |
| 2013 | + version "0.3.3" | |
| 2014 | + resolved "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz" | |
| 2015 | + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== | |
| 2006 | 2016 | dependencies: |
| 2007 | 2017 | "@jridgewell/set-array" "^1.0.1" |
| 2008 | 2018 | "@jridgewell/sourcemap-codec" "^1.4.10" |
| 2009 | 2019 | "@jridgewell/trace-mapping" "^0.3.9" |
| 2010 | 2020 | |
| 2011 | 2021 | "@jridgewell/resolve-uri@^3.1.0": |
| 2012 | - "integrity" "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" | |
| 2013 | - "resolved" "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz" | |
| 2014 | - "version" "3.1.1" | |
| 2022 | + version "3.1.1" | |
| 2023 | + resolved "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz" | |
| 2024 | + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== | |
| 2015 | 2025 | |
| 2016 | 2026 | "@jridgewell/set-array@^1.0.1": |
| 2017 | - "integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" | |
| 2018 | - "resolved" "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz" | |
| 2019 | - "version" "1.1.2" | |
| 2027 | + version "1.1.2" | |
| 2028 | + resolved "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz" | |
| 2029 | + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== | |
| 2020 | 2030 | |
| 2021 | 2031 | "@jridgewell/source-map@^0.3.3": |
| 2022 | - "integrity" "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" | |
| 2023 | - "resolved" "https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.5.tgz" | |
| 2024 | - "version" "0.3.5" | |
| 2032 | + version "0.3.5" | |
| 2033 | + resolved "https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.5.tgz" | |
| 2034 | + integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== | |
| 2025 | 2035 | dependencies: |
| 2026 | 2036 | "@jridgewell/gen-mapping" "^0.3.0" |
| 2027 | 2037 | "@jridgewell/trace-mapping" "^0.3.9" |
| 2028 | 2038 | |
| 2029 | 2039 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15": |
| 2030 | - "integrity" "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" | |
| 2031 | - "resolved" "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" | |
| 2032 | - "version" "1.4.15" | |
| 2040 | + version "1.4.15" | |
| 2041 | + resolved "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" | |
| 2042 | + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== | |
| 2033 | 2043 | |
| 2034 | 2044 | "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.19", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.9": |
| 2035 | - "integrity" "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==" | |
| 2036 | - "resolved" "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz" | |
| 2037 | - "version" "0.3.20" | |
| 2045 | + version "0.3.20" | |
| 2046 | + resolved "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz" | |
| 2047 | + integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== | |
| 2038 | 2048 | dependencies: |
| 2039 | 2049 | "@jridgewell/resolve-uri" "^3.1.0" |
| 2040 | 2050 | "@jridgewell/sourcemap-codec" "^1.4.14" |
| 2041 | 2051 | |
| 2042 | 2052 | "@nodelib/fs.scandir@2.1.5": |
| 2043 | - "integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" | |
| 2044 | - "resolved" "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" | |
| 2045 | - "version" "2.1.5" | |
| 2053 | + version "2.1.5" | |
| 2054 | + resolved "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" | |
| 2055 | + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== | |
| 2046 | 2056 | dependencies: |
| 2047 | 2057 | "@nodelib/fs.stat" "2.0.5" |
| 2048 | - "run-parallel" "^1.1.9" | |
| 2058 | + run-parallel "^1.1.9" | |
| 2049 | 2059 | |
| 2050 | 2060 | "@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": |
| 2051 | - "integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" | |
| 2052 | - "resolved" "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" | |
| 2053 | - "version" "2.0.5" | |
| 2061 | + version "2.0.5" | |
| 2062 | + resolved "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" | |
| 2063 | + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== | |
| 2054 | 2064 | |
| 2055 | 2065 | "@nodelib/fs.walk@^1.2.3": |
| 2056 | - "integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" | |
| 2057 | - "resolved" "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" | |
| 2058 | - "version" "1.2.8" | |
| 2066 | + version "1.2.8" | |
| 2067 | + resolved "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" | |
| 2068 | + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== | |
| 2059 | 2069 | dependencies: |
| 2060 | 2070 | "@nodelib/fs.scandir" "2.1.5" |
| 2061 | - "fastq" "^1.6.0" | |
| 2071 | + fastq "^1.6.0" | |
| 2062 | 2072 | |
| 2063 | 2073 | "@rollup/pluginutils@^4.2.0": |
| 2064 | - "integrity" "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==" | |
| 2065 | - "resolved" "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz" | |
| 2066 | - "version" "4.2.1" | |
| 2074 | + version "4.2.1" | |
| 2075 | + resolved "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz" | |
| 2076 | + integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== | |
| 2067 | 2077 | dependencies: |
| 2068 | - "estree-walker" "^2.0.1" | |
| 2069 | - "picomatch" "^2.2.2" | |
| 2078 | + estree-walker "^2.0.1" | |
| 2079 | + picomatch "^2.2.2" | |
| 2070 | 2080 | |
| 2071 | 2081 | "@sinonjs/commons@^1.7.0": |
| 2072 | - "integrity" "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==" | |
| 2073 | - "resolved" "https://registry.npmmirror.com/@sinonjs/commons/-/commons-1.8.6.tgz" | |
| 2074 | - "version" "1.8.6" | |
| 2082 | + version "1.8.6" | |
| 2083 | + resolved "https://registry.npmmirror.com/@sinonjs/commons/-/commons-1.8.6.tgz" | |
| 2084 | + integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ== | |
| 2075 | 2085 | dependencies: |
| 2076 | - "type-detect" "4.0.8" | |
| 2086 | + type-detect "4.0.8" | |
| 2077 | 2087 | |
| 2078 | 2088 | "@sinonjs/fake-timers@^8.0.1": |
| 2079 | - "integrity" "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==" | |
| 2080 | - "resolved" "https://registry.npmmirror.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz" | |
| 2081 | - "version" "8.1.0" | |
| 2089 | + version "8.1.0" | |
| 2090 | + resolved "https://registry.npmmirror.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz" | |
| 2091 | + integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg== | |
| 2082 | 2092 | dependencies: |
| 2083 | 2093 | "@sinonjs/commons" "^1.7.0" |
| 2084 | 2094 | |
| 2085 | 2095 | "@tootallnate/once@1": |
| 2086 | - "integrity" "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" | |
| 2087 | - "resolved" "https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz" | |
| 2088 | - "version" "1.1.2" | |
| 2096 | + version "1.1.2" | |
| 2097 | + resolved "https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz" | |
| 2098 | + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== | |
| 2089 | 2099 | |
| 2090 | 2100 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": |
| 2091 | - "integrity" "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" | |
| 2092 | - "resolved" "https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.5.tgz" | |
| 2093 | - "version" "7.20.5" | |
| 2101 | + version "7.20.5" | |
| 2102 | + resolved "https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.5.tgz" | |
| 2103 | + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== | |
| 2094 | 2104 | dependencies: |
| 2095 | 2105 | "@babel/parser" "^7.20.7" |
| 2096 | 2106 | "@babel/types" "^7.20.7" |
| ... | ... | @@ -2099,149 +2109,149 @@ |
| 2099 | 2109 | "@types/babel__traverse" "*" |
| 2100 | 2110 | |
| 2101 | 2111 | "@types/babel__generator@*": |
| 2102 | - "integrity" "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" | |
| 2103 | - "resolved" "https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.8.tgz" | |
| 2104 | - "version" "7.6.8" | |
| 2112 | + version "7.6.8" | |
| 2113 | + resolved "https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.8.tgz" | |
| 2114 | + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== | |
| 2105 | 2115 | dependencies: |
| 2106 | 2116 | "@babel/types" "^7.0.0" |
| 2107 | 2117 | |
| 2108 | 2118 | "@types/babel__template@*": |
| 2109 | - "integrity" "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" | |
| 2110 | - "resolved" "https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.4.tgz" | |
| 2111 | - "version" "7.4.4" | |
| 2119 | + version "7.4.4" | |
| 2120 | + resolved "https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.4.tgz" | |
| 2121 | + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== | |
| 2112 | 2122 | dependencies: |
| 2113 | 2123 | "@babel/parser" "^7.1.0" |
| 2114 | 2124 | "@babel/types" "^7.0.0" |
| 2115 | 2125 | |
| 2116 | 2126 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": |
| 2117 | - "integrity" "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==" | |
| 2118 | - "resolved" "https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.5.tgz" | |
| 2119 | - "version" "7.20.5" | |
| 2127 | + version "7.20.5" | |
| 2128 | + resolved "https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.5.tgz" | |
| 2129 | + integrity sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ== | |
| 2120 | 2130 | dependencies: |
| 2121 | 2131 | "@babel/types" "^7.20.7" |
| 2122 | 2132 | |
| 2123 | 2133 | "@types/eslint-scope@^3.7.3": |
| 2124 | - "integrity" "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" | |
| 2125 | - "resolved" "https://registry.npmmirror.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz" | |
| 2126 | - "version" "3.7.7" | |
| 2134 | + version "3.7.7" | |
| 2135 | + resolved "https://registry.npmmirror.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz" | |
| 2136 | + integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== | |
| 2127 | 2137 | dependencies: |
| 2128 | 2138 | "@types/eslint" "*" |
| 2129 | 2139 | "@types/estree" "*" |
| 2130 | 2140 | |
| 2131 | 2141 | "@types/eslint@*": |
| 2132 | - "integrity" "sha512-18PLWRzhy9glDQp3+wOgfLYRWlhgX0azxgJ63rdpoUHyrC9z0f5CkFburjQx4uD7ZCruw85ZtMt6K+L+R8fLJQ==" | |
| 2133 | - "resolved" "https://registry.npmmirror.com/@types/eslint/-/eslint-8.56.1.tgz" | |
| 2134 | - "version" "8.56.1" | |
| 2142 | + version "8.56.1" | |
| 2143 | + resolved "https://registry.npmmirror.com/@types/eslint/-/eslint-8.56.1.tgz" | |
| 2144 | + integrity sha512-18PLWRzhy9glDQp3+wOgfLYRWlhgX0azxgJ63rdpoUHyrC9z0f5CkFburjQx4uD7ZCruw85ZtMt6K+L+R8fLJQ== | |
| 2135 | 2145 | dependencies: |
| 2136 | 2146 | "@types/estree" "*" |
| 2137 | 2147 | "@types/json-schema" "*" |
| 2138 | 2148 | |
| 2139 | 2149 | "@types/estree@*", "@types/estree@^1.0.0": |
| 2140 | - "integrity" "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" | |
| 2141 | - "resolved" "https://registry.npmmirror.com/@types/estree/-/estree-1.0.5.tgz" | |
| 2142 | - "version" "1.0.5" | |
| 2150 | + version "1.0.5" | |
| 2151 | + resolved "https://registry.npmmirror.com/@types/estree/-/estree-1.0.5.tgz" | |
| 2152 | + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== | |
| 2143 | 2153 | |
| 2144 | 2154 | "@types/graceful-fs@^4.1.2": |
| 2145 | - "integrity" "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" | |
| 2146 | - "resolved" "https://registry.npmmirror.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz" | |
| 2147 | - "version" "4.1.9" | |
| 2155 | + version "4.1.9" | |
| 2156 | + resolved "https://registry.npmmirror.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz" | |
| 2157 | + integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== | |
| 2148 | 2158 | dependencies: |
| 2149 | 2159 | "@types/node" "*" |
| 2150 | 2160 | |
| 2151 | 2161 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": |
| 2152 | - "integrity" "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" | |
| 2153 | - "resolved" "https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz" | |
| 2154 | - "version" "2.0.6" | |
| 2162 | + version "2.0.6" | |
| 2163 | + resolved "https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz" | |
| 2164 | + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== | |
| 2155 | 2165 | |
| 2156 | 2166 | "@types/istanbul-lib-report@*": |
| 2157 | - "integrity" "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" | |
| 2158 | - "resolved" "https://registry.npmmirror.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz" | |
| 2159 | - "version" "3.0.3" | |
| 2167 | + version "3.0.3" | |
| 2168 | + resolved "https://registry.npmmirror.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz" | |
| 2169 | + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== | |
| 2160 | 2170 | dependencies: |
| 2161 | 2171 | "@types/istanbul-lib-coverage" "*" |
| 2162 | 2172 | |
| 2163 | 2173 | "@types/istanbul-reports@^3.0.0": |
| 2164 | - "integrity" "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" | |
| 2165 | - "resolved" "https://registry.npmmirror.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz" | |
| 2166 | - "version" "3.0.4" | |
| 2174 | + version "3.0.4" | |
| 2175 | + resolved "https://registry.npmmirror.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz" | |
| 2176 | + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== | |
| 2167 | 2177 | dependencies: |
| 2168 | 2178 | "@types/istanbul-lib-report" "*" |
| 2169 | 2179 | |
| 2170 | 2180 | "@types/json-schema@*", "@types/json-schema@^7.0.8": |
| 2171 | - "integrity" "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" | |
| 2172 | - "resolved" "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.15.tgz" | |
| 2173 | - "version" "7.0.15" | |
| 2181 | + version "7.0.15" | |
| 2182 | + resolved "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.15.tgz" | |
| 2183 | + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== | |
| 2174 | 2184 | |
| 2175 | 2185 | "@types/node@*", "@types/node@>= 14": |
| 2176 | - "integrity" "sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==" | |
| 2177 | - "resolved" "https://registry.npmmirror.com/@types/node/-/node-20.10.6.tgz" | |
| 2178 | - "version" "20.10.6" | |
| 2186 | + version "20.10.6" | |
| 2187 | + resolved "https://registry.npmmirror.com/@types/node/-/node-20.10.6.tgz" | |
| 2188 | + integrity sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw== | |
| 2179 | 2189 | dependencies: |
| 2180 | - "undici-types" "~5.26.4" | |
| 2190 | + undici-types "~5.26.4" | |
| 2181 | 2191 | |
| 2182 | 2192 | "@types/prettier@^2.1.5": |
| 2183 | - "integrity" "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" | |
| 2184 | - "resolved" "https://registry.npmmirror.com/@types/prettier/-/prettier-2.7.3.tgz" | |
| 2185 | - "version" "2.7.3" | |
| 2193 | + version "2.7.3" | |
| 2194 | + resolved "https://registry.npmmirror.com/@types/prettier/-/prettier-2.7.3.tgz" | |
| 2195 | + integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== | |
| 2186 | 2196 | |
| 2187 | 2197 | "@types/stack-utils@^2.0.0": |
| 2188 | - "integrity" "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" | |
| 2189 | - "resolved" "https://registry.npmmirror.com/@types/stack-utils/-/stack-utils-2.0.3.tgz" | |
| 2190 | - "version" "2.0.3" | |
| 2198 | + version "2.0.3" | |
| 2199 | + resolved "https://registry.npmmirror.com/@types/stack-utils/-/stack-utils-2.0.3.tgz" | |
| 2200 | + integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== | |
| 2191 | 2201 | |
| 2192 | 2202 | "@types/yargs-parser@*": |
| 2193 | - "integrity" "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" | |
| 2194 | - "resolved" "https://registry.npmmirror.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz" | |
| 2195 | - "version" "21.0.3" | |
| 2203 | + version "21.0.3" | |
| 2204 | + resolved "https://registry.npmmirror.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz" | |
| 2205 | + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== | |
| 2196 | 2206 | |
| 2197 | 2207 | "@types/yargs@^16.0.0": |
| 2198 | - "integrity" "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==" | |
| 2199 | - "resolved" "https://registry.npmmirror.com/@types/yargs/-/yargs-16.0.9.tgz" | |
| 2200 | - "version" "16.0.9" | |
| 2208 | + version "16.0.9" | |
| 2209 | + resolved "https://registry.npmmirror.com/@types/yargs/-/yargs-16.0.9.tgz" | |
| 2210 | + integrity sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA== | |
| 2201 | 2211 | dependencies: |
| 2202 | 2212 | "@types/yargs-parser" "*" |
| 2203 | 2213 | |
| 2204 | 2214 | "@vitejs/plugin-basic-ssl@^1.1.0": |
| 2205 | - "integrity" "sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q==" | |
| 2206 | - "resolved" "https://registry.npmmirror.com/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.2.0.tgz" | |
| 2207 | - "version" "1.2.0" | |
| 2215 | + version "1.2.0" | |
| 2216 | + resolved "https://registry.npmmirror.com/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.2.0.tgz" | |
| 2217 | + integrity sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q== | |
| 2208 | 2218 | |
| 2209 | 2219 | "@vitejs/plugin-legacy@^4.0.3": |
| 2210 | - "integrity" "sha512-um3gbVouD2Q/g19C0qpDfHwveXDCAHzs8OC3e9g6aXpKoD1H14himgs7wkMnhAynBJy7QqUoZNAXDuqN8zLR2g==" | |
| 2211 | - "resolved" "https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-4.1.1.tgz" | |
| 2212 | - "version" "4.1.1" | |
| 2220 | + version "4.1.1" | |
| 2221 | + resolved "https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-4.1.1.tgz" | |
| 2222 | + integrity sha512-um3gbVouD2Q/g19C0qpDfHwveXDCAHzs8OC3e9g6aXpKoD1H14himgs7wkMnhAynBJy7QqUoZNAXDuqN8zLR2g== | |
| 2213 | 2223 | dependencies: |
| 2214 | 2224 | "@babel/core" "^7.22.9" |
| 2215 | 2225 | "@babel/preset-env" "^7.22.9" |
| 2216 | - "browserslist" "^4.21.9" | |
| 2217 | - "core-js" "^3.31.1" | |
| 2218 | - "magic-string" "^0.30.1" | |
| 2219 | - "regenerator-runtime" "^0.13.11" | |
| 2220 | - "systemjs" "^6.14.1" | |
| 2226 | + browserslist "^4.21.9" | |
| 2227 | + core-js "^3.31.1" | |
| 2228 | + magic-string "^0.30.1" | |
| 2229 | + regenerator-runtime "^0.13.11" | |
| 2230 | + systemjs "^6.14.1" | |
| 2221 | 2231 | |
| 2222 | 2232 | "@vitejs/plugin-vue-jsx@^3.0.1": |
| 2223 | - "integrity" "sha512-obF26P2Z4Ogy3cPp07B4VaW6rpiu0ue4OT2Y15UxT5BZZ76haUY9guOsZV3uWh/I6xc+VeiW+ZVabRE82FyzWw==" | |
| 2224 | - "resolved" "https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.0.2.tgz" | |
| 2225 | - "version" "3.0.2" | |
| 2233 | + version "3.0.2" | |
| 2234 | + resolved "https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.0.2.tgz" | |
| 2235 | + integrity sha512-obF26P2Z4Ogy3cPp07B4VaW6rpiu0ue4OT2Y15UxT5BZZ76haUY9guOsZV3uWh/I6xc+VeiW+ZVabRE82FyzWw== | |
| 2226 | 2236 | dependencies: |
| 2227 | 2237 | "@babel/core" "^7.22.10" |
| 2228 | 2238 | "@babel/plugin-transform-typescript" "^7.22.10" |
| 2229 | 2239 | "@vue/babel-plugin-jsx" "^1.1.5" |
| 2230 | 2240 | |
| 2231 | 2241 | "@vitejs/plugin-vue@^4.2.1": |
| 2232 | - "integrity" "sha512-xdguqb+VUwiRpSg+nsc2HtbAUSGak25DXYvpQQi4RVU1Xq1uworyoH/md9Rfd8zMmPR/pSghr309QNcftUVseg==" | |
| 2233 | - "resolved" "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.4.0.tgz" | |
| 2234 | - "version" "4.4.0" | |
| 2242 | + version "4.4.0" | |
| 2243 | + resolved "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.4.0.tgz" | |
| 2244 | + integrity sha512-xdguqb+VUwiRpSg+nsc2HtbAUSGak25DXYvpQQi4RVU1Xq1uworyoH/md9Rfd8zMmPR/pSghr309QNcftUVseg== | |
| 2235 | 2245 | |
| 2236 | 2246 | "@vue/babel-helper-vue-transform-on@^1.1.5": |
| 2237 | - "integrity" "sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==" | |
| 2238 | - "resolved" "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz" | |
| 2239 | - "version" "1.1.5" | |
| 2247 | + version "1.1.5" | |
| 2248 | + resolved "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz" | |
| 2249 | + integrity sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w== | |
| 2240 | 2250 | |
| 2241 | 2251 | "@vue/babel-plugin-jsx@^1.1.5": |
| 2242 | - "integrity" "sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==" | |
| 2243 | - "resolved" "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz" | |
| 2244 | - "version" "1.1.5" | |
| 2252 | + version "1.1.5" | |
| 2253 | + resolved "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz" | |
| 2254 | + integrity sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g== | |
| 2245 | 2255 | dependencies: |
| 2246 | 2256 | "@babel/helper-module-imports" "^7.22.5" |
| 2247 | 2257 | "@babel/plugin-syntax-jsx" "^7.22.5" |
| ... | ... | @@ -2249,32 +2259,32 @@ |
| 2249 | 2259 | "@babel/traverse" "^7.22.5" |
| 2250 | 2260 | "@babel/types" "^7.22.5" |
| 2251 | 2261 | "@vue/babel-helper-vue-transform-on" "^1.1.5" |
| 2252 | - "camelcase" "^6.3.0" | |
| 2253 | - "html-tags" "^3.3.1" | |
| 2254 | - "svg-tags" "^1.0.0" | |
| 2262 | + camelcase "^6.3.0" | |
| 2263 | + html-tags "^3.3.1" | |
| 2264 | + svg-tags "^1.0.0" | |
| 2255 | 2265 | |
| 2256 | 2266 | "@vue/compiler-core@3.2.47": |
| 2257 | - "integrity" "sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==" | |
| 2258 | - "resolved" "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.47.tgz" | |
| 2259 | - "version" "3.2.47" | |
| 2267 | + version "3.2.47" | |
| 2268 | + resolved "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.47.tgz" | |
| 2269 | + integrity sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig== | |
| 2260 | 2270 | dependencies: |
| 2261 | 2271 | "@babel/parser" "^7.16.4" |
| 2262 | 2272 | "@vue/shared" "3.2.47" |
| 2263 | - "estree-walker" "^2.0.2" | |
| 2264 | - "source-map" "^0.6.1" | |
| 2273 | + estree-walker "^2.0.2" | |
| 2274 | + source-map "^0.6.1" | |
| 2265 | 2275 | |
| 2266 | 2276 | "@vue/compiler-dom@3.2.47": |
| 2267 | - "integrity" "sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==" | |
| 2268 | - "resolved" "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz" | |
| 2269 | - "version" "3.2.47" | |
| 2277 | + version "3.2.47" | |
| 2278 | + resolved "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz" | |
| 2279 | + integrity sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ== | |
| 2270 | 2280 | dependencies: |
| 2271 | 2281 | "@vue/compiler-core" "3.2.47" |
| 2272 | 2282 | "@vue/shared" "3.2.47" |
| 2273 | 2283 | |
| 2274 | 2284 | "@vue/compiler-sfc@3.2.47": |
| 2275 | - "integrity" "sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==" | |
| 2276 | - "resolved" "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz" | |
| 2277 | - "version" "3.2.47" | |
| 2285 | + version "3.2.47" | |
| 2286 | + resolved "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz" | |
| 2287 | + integrity sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ== | |
| 2278 | 2288 | dependencies: |
| 2279 | 2289 | "@babel/parser" "^7.16.4" |
| 2280 | 2290 | "@vue/compiler-core" "3.2.47" |
| ... | ... | @@ -2282,133 +2292,133 @@ |
| 2282 | 2292 | "@vue/compiler-ssr" "3.2.47" |
| 2283 | 2293 | "@vue/reactivity-transform" "3.2.47" |
| 2284 | 2294 | "@vue/shared" "3.2.47" |
| 2285 | - "estree-walker" "^2.0.2" | |
| 2286 | - "magic-string" "^0.25.7" | |
| 2287 | - "postcss" "^8.1.10" | |
| 2288 | - "source-map" "^0.6.1" | |
| 2295 | + estree-walker "^2.0.2" | |
| 2296 | + magic-string "^0.25.7" | |
| 2297 | + postcss "^8.1.10" | |
| 2298 | + source-map "^0.6.1" | |
| 2289 | 2299 | |
| 2290 | 2300 | "@vue/compiler-ssr@3.2.47": |
| 2291 | - "integrity" "sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==" | |
| 2292 | - "resolved" "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.47.tgz" | |
| 2293 | - "version" "3.2.47" | |
| 2301 | + version "3.2.47" | |
| 2302 | + resolved "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.47.tgz" | |
| 2303 | + integrity sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw== | |
| 2294 | 2304 | dependencies: |
| 2295 | 2305 | "@vue/compiler-dom" "3.2.47" |
| 2296 | 2306 | "@vue/shared" "3.2.47" |
| 2297 | 2307 | |
| 2298 | 2308 | "@vue/devtools-api@^6.5.0": |
| 2299 | - "integrity" "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==" | |
| 2300 | - "resolved" "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz" | |
| 2301 | - "version" "6.5.1" | |
| 2309 | + version "6.5.1" | |
| 2310 | + resolved "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz" | |
| 2311 | + integrity sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA== | |
| 2302 | 2312 | |
| 2303 | 2313 | "@vue/reactivity-transform@3.2.47": |
| 2304 | - "integrity" "sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==" | |
| 2305 | - "resolved" "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.47.tgz" | |
| 2306 | - "version" "3.2.47" | |
| 2314 | + version "3.2.47" | |
| 2315 | + resolved "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.47.tgz" | |
| 2316 | + integrity sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA== | |
| 2307 | 2317 | dependencies: |
| 2308 | 2318 | "@babel/parser" "^7.16.4" |
| 2309 | 2319 | "@vue/compiler-core" "3.2.47" |
| 2310 | 2320 | "@vue/shared" "3.2.47" |
| 2311 | - "estree-walker" "^2.0.2" | |
| 2312 | - "magic-string" "^0.25.7" | |
| 2321 | + estree-walker "^2.0.2" | |
| 2322 | + magic-string "^0.25.7" | |
| 2313 | 2323 | |
| 2314 | 2324 | "@vue/reactivity@3.2.47": |
| 2315 | - "integrity" "sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==" | |
| 2316 | - "resolved" "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.47.tgz" | |
| 2317 | - "version" "3.2.47" | |
| 2325 | + version "3.2.47" | |
| 2326 | + resolved "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.47.tgz" | |
| 2327 | + integrity sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ== | |
| 2318 | 2328 | dependencies: |
| 2319 | 2329 | "@vue/shared" "3.2.47" |
| 2320 | 2330 | |
| 2321 | 2331 | "@vue/reactivity@3.3.8": |
| 2322 | - "integrity" "sha512-ctLWitmFBu6mtddPyOKpHg8+5ahouoTCRtmAHZAXmolDtuZXfjL2T3OJ6DL6ezBPQB1SmMnpzjiWjCiMYmpIuw==" | |
| 2323 | - "resolved" "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.8.tgz" | |
| 2324 | - "version" "3.3.8" | |
| 2332 | + version "3.3.8" | |
| 2333 | + resolved "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.8.tgz" | |
| 2334 | + integrity sha512-ctLWitmFBu6mtddPyOKpHg8+5ahouoTCRtmAHZAXmolDtuZXfjL2T3OJ6DL6ezBPQB1SmMnpzjiWjCiMYmpIuw== | |
| 2325 | 2335 | dependencies: |
| 2326 | 2336 | "@vue/shared" "3.3.8" |
| 2327 | 2337 | |
| 2328 | 2338 | "@vue/runtime-core@^3.2.45": |
| 2329 | - "integrity" "sha512-qurzOlb6q26KWQ/8IShHkMDOuJkQnQcTIp1sdP4I9MbCf9FJeGVRXJFr2mF+6bXh/3Zjr9TDgURXrsCr9bfjUw==" | |
| 2330 | - "resolved" "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.8.tgz" | |
| 2331 | - "version" "3.3.8" | |
| 2339 | + version "3.3.8" | |
| 2340 | + resolved "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.8.tgz" | |
| 2341 | + integrity sha512-qurzOlb6q26KWQ/8IShHkMDOuJkQnQcTIp1sdP4I9MbCf9FJeGVRXJFr2mF+6bXh/3Zjr9TDgURXrsCr9bfjUw== | |
| 2332 | 2342 | dependencies: |
| 2333 | 2343 | "@vue/reactivity" "3.3.8" |
| 2334 | 2344 | "@vue/shared" "3.3.8" |
| 2335 | 2345 | |
| 2336 | 2346 | "@vue/runtime-core@3.2.47": |
| 2337 | - "integrity" "sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==" | |
| 2338 | - "resolved" "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.47.tgz" | |
| 2339 | - "version" "3.2.47" | |
| 2347 | + version "3.2.47" | |
| 2348 | + resolved "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.47.tgz" | |
| 2349 | + integrity sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA== | |
| 2340 | 2350 | dependencies: |
| 2341 | 2351 | "@vue/reactivity" "3.2.47" |
| 2342 | 2352 | "@vue/shared" "3.2.47" |
| 2343 | 2353 | |
| 2344 | 2354 | "@vue/runtime-dom@3.2.47": |
| 2345 | - "integrity" "sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==" | |
| 2346 | - "resolved" "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.47.tgz" | |
| 2347 | - "version" "3.2.47" | |
| 2355 | + version "3.2.47" | |
| 2356 | + resolved "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.47.tgz" | |
| 2357 | + integrity sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA== | |
| 2348 | 2358 | dependencies: |
| 2349 | 2359 | "@vue/runtime-core" "3.2.47" |
| 2350 | 2360 | "@vue/shared" "3.2.47" |
| 2351 | - "csstype" "^2.6.8" | |
| 2361 | + csstype "^2.6.8" | |
| 2352 | 2362 | |
| 2353 | 2363 | "@vue/server-renderer@3.2.47": |
| 2354 | - "integrity" "sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==" | |
| 2355 | - "resolved" "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.47.tgz" | |
| 2356 | - "version" "3.2.47" | |
| 2364 | + version "3.2.47" | |
| 2365 | + resolved "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.47.tgz" | |
| 2366 | + integrity sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA== | |
| 2357 | 2367 | dependencies: |
| 2358 | 2368 | "@vue/compiler-ssr" "3.2.47" |
| 2359 | 2369 | "@vue/shared" "3.2.47" |
| 2360 | 2370 | |
| 2361 | 2371 | "@vue/shared@3.2.47": |
| 2362 | - "integrity" "sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==" | |
| 2363 | - "resolved" "https://registry.npmmirror.com/@vue/shared/-/shared-3.2.47.tgz" | |
| 2364 | - "version" "3.2.47" | |
| 2372 | + version "3.2.47" | |
| 2373 | + resolved "https://registry.npmmirror.com/@vue/shared/-/shared-3.2.47.tgz" | |
| 2374 | + integrity sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ== | |
| 2365 | 2375 | |
| 2366 | 2376 | "@vue/shared@3.3.8": |
| 2367 | - "integrity" "sha512-8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw==" | |
| 2368 | - "resolved" "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.8.tgz" | |
| 2369 | - "version" "3.3.8" | |
| 2377 | + version "3.3.8" | |
| 2378 | + resolved "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.8.tgz" | |
| 2379 | + integrity sha512-8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw== | |
| 2370 | 2380 | |
| 2371 | 2381 | "@webassemblyjs/ast@^1.11.5", "@webassemblyjs/ast@1.11.6": |
| 2372 | - "integrity" "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" | |
| 2373 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/ast/-/ast-1.11.6.tgz" | |
| 2374 | - "version" "1.11.6" | |
| 2382 | + version "1.11.6" | |
| 2383 | + resolved "https://registry.npmmirror.com/@webassemblyjs/ast/-/ast-1.11.6.tgz" | |
| 2384 | + integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== | |
| 2375 | 2385 | dependencies: |
| 2376 | 2386 | "@webassemblyjs/helper-numbers" "1.11.6" |
| 2377 | 2387 | "@webassemblyjs/helper-wasm-bytecode" "1.11.6" |
| 2378 | 2388 | |
| 2379 | 2389 | "@webassemblyjs/floating-point-hex-parser@1.11.6": |
| 2380 | - "integrity" "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" | |
| 2381 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz" | |
| 2382 | - "version" "1.11.6" | |
| 2390 | + version "1.11.6" | |
| 2391 | + resolved "https://registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz" | |
| 2392 | + integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== | |
| 2383 | 2393 | |
| 2384 | 2394 | "@webassemblyjs/helper-api-error@1.11.6": |
| 2385 | - "integrity" "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" | |
| 2386 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz" | |
| 2387 | - "version" "1.11.6" | |
| 2395 | + version "1.11.6" | |
| 2396 | + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz" | |
| 2397 | + integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== | |
| 2388 | 2398 | |
| 2389 | 2399 | "@webassemblyjs/helper-buffer@1.11.6": |
| 2390 | - "integrity" "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" | |
| 2391 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz" | |
| 2392 | - "version" "1.11.6" | |
| 2400 | + version "1.11.6" | |
| 2401 | + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz" | |
| 2402 | + integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== | |
| 2393 | 2403 | |
| 2394 | 2404 | "@webassemblyjs/helper-numbers@1.11.6": |
| 2395 | - "integrity" "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" | |
| 2396 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz" | |
| 2397 | - "version" "1.11.6" | |
| 2405 | + version "1.11.6" | |
| 2406 | + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz" | |
| 2407 | + integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== | |
| 2398 | 2408 | dependencies: |
| 2399 | 2409 | "@webassemblyjs/floating-point-hex-parser" "1.11.6" |
| 2400 | 2410 | "@webassemblyjs/helper-api-error" "1.11.6" |
| 2401 | 2411 | "@xtuc/long" "4.2.2" |
| 2402 | 2412 | |
| 2403 | 2413 | "@webassemblyjs/helper-wasm-bytecode@1.11.6": |
| 2404 | - "integrity" "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" | |
| 2405 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz" | |
| 2406 | - "version" "1.11.6" | |
| 2414 | + version "1.11.6" | |
| 2415 | + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz" | |
| 2416 | + integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== | |
| 2407 | 2417 | |
| 2408 | 2418 | "@webassemblyjs/helper-wasm-section@1.11.6": |
| 2409 | - "integrity" "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" | |
| 2410 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz" | |
| 2411 | - "version" "1.11.6" | |
| 2419 | + version "1.11.6" | |
| 2420 | + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz" | |
| 2421 | + integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== | |
| 2412 | 2422 | dependencies: |
| 2413 | 2423 | "@webassemblyjs/ast" "1.11.6" |
| 2414 | 2424 | "@webassemblyjs/helper-buffer" "1.11.6" |
| ... | ... | @@ -2416,28 +2426,28 @@ |
| 2416 | 2426 | "@webassemblyjs/wasm-gen" "1.11.6" |
| 2417 | 2427 | |
| 2418 | 2428 | "@webassemblyjs/ieee754@1.11.6": |
| 2419 | - "integrity" "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" | |
| 2420 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz" | |
| 2421 | - "version" "1.11.6" | |
| 2429 | + version "1.11.6" | |
| 2430 | + resolved "https://registry.npmmirror.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz" | |
| 2431 | + integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== | |
| 2422 | 2432 | dependencies: |
| 2423 | 2433 | "@xtuc/ieee754" "^1.2.0" |
| 2424 | 2434 | |
| 2425 | 2435 | "@webassemblyjs/leb128@1.11.6": |
| 2426 | - "integrity" "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" | |
| 2427 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz" | |
| 2428 | - "version" "1.11.6" | |
| 2436 | + version "1.11.6" | |
| 2437 | + resolved "https://registry.npmmirror.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz" | |
| 2438 | + integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== | |
| 2429 | 2439 | dependencies: |
| 2430 | 2440 | "@xtuc/long" "4.2.2" |
| 2431 | 2441 | |
| 2432 | 2442 | "@webassemblyjs/utf8@1.11.6": |
| 2433 | - "integrity" "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" | |
| 2434 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz" | |
| 2435 | - "version" "1.11.6" | |
| 2443 | + version "1.11.6" | |
| 2444 | + resolved "https://registry.npmmirror.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz" | |
| 2445 | + integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== | |
| 2436 | 2446 | |
| 2437 | 2447 | "@webassemblyjs/wasm-edit@^1.11.5": |
| 2438 | - "integrity" "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" | |
| 2439 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz" | |
| 2440 | - "version" "1.11.6" | |
| 2448 | + version "1.11.6" | |
| 2449 | + resolved "https://registry.npmmirror.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz" | |
| 2450 | + integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== | |
| 2441 | 2451 | dependencies: |
| 2442 | 2452 | "@webassemblyjs/ast" "1.11.6" |
| 2443 | 2453 | "@webassemblyjs/helper-buffer" "1.11.6" |
| ... | ... | @@ -2449,9 +2459,9 @@ |
| 2449 | 2459 | "@webassemblyjs/wast-printer" "1.11.6" |
| 2450 | 2460 | |
| 2451 | 2461 | "@webassemblyjs/wasm-gen@1.11.6": |
| 2452 | - "integrity" "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" | |
| 2453 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz" | |
| 2454 | - "version" "1.11.6" | |
| 2462 | + version "1.11.6" | |
| 2463 | + resolved "https://registry.npmmirror.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz" | |
| 2464 | + integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== | |
| 2455 | 2465 | dependencies: |
| 2456 | 2466 | "@webassemblyjs/ast" "1.11.6" |
| 2457 | 2467 | "@webassemblyjs/helper-wasm-bytecode" "1.11.6" |
| ... | ... | @@ -2460,9 +2470,9 @@ |
| 2460 | 2470 | "@webassemblyjs/utf8" "1.11.6" |
| 2461 | 2471 | |
| 2462 | 2472 | "@webassemblyjs/wasm-opt@1.11.6": |
| 2463 | - "integrity" "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" | |
| 2464 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz" | |
| 2465 | - "version" "1.11.6" | |
| 2473 | + version "1.11.6" | |
| 2474 | + resolved "https://registry.npmmirror.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz" | |
| 2475 | + integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== | |
| 2466 | 2476 | dependencies: |
| 2467 | 2477 | "@webassemblyjs/ast" "1.11.6" |
| 2468 | 2478 | "@webassemblyjs/helper-buffer" "1.11.6" |
| ... | ... | @@ -2470,9 +2480,9 @@ |
| 2470 | 2480 | "@webassemblyjs/wasm-parser" "1.11.6" |
| 2471 | 2481 | |
| 2472 | 2482 | "@webassemblyjs/wasm-parser@^1.11.5", "@webassemblyjs/wasm-parser@1.11.6": |
| 2473 | - "integrity" "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" | |
| 2474 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz" | |
| 2475 | - "version" "1.11.6" | |
| 2483 | + version "1.11.6" | |
| 2484 | + resolved "https://registry.npmmirror.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz" | |
| 2485 | + integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== | |
| 2476 | 2486 | dependencies: |
| 2477 | 2487 | "@webassemblyjs/ast" "1.11.6" |
| 2478 | 2488 | "@webassemblyjs/helper-api-error" "1.11.6" |
| ... | ... | @@ -2482,256 +2492,256 @@ |
| 2482 | 2492 | "@webassemblyjs/utf8" "1.11.6" |
| 2483 | 2493 | |
| 2484 | 2494 | "@webassemblyjs/wast-printer@1.11.6": |
| 2485 | - "integrity" "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" | |
| 2486 | - "resolved" "https://registry.npmmirror.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz" | |
| 2487 | - "version" "1.11.6" | |
| 2495 | + version "1.11.6" | |
| 2496 | + resolved "https://registry.npmmirror.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz" | |
| 2497 | + integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== | |
| 2488 | 2498 | dependencies: |
| 2489 | 2499 | "@webassemblyjs/ast" "1.11.6" |
| 2490 | 2500 | "@xtuc/long" "4.2.2" |
| 2491 | 2501 | |
| 2492 | 2502 | "@xtuc/ieee754@^1.2.0": |
| 2493 | - "integrity" "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" | |
| 2494 | - "resolved" "https://registry.npmmirror.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz" | |
| 2495 | - "version" "1.2.0" | |
| 2503 | + version "1.2.0" | |
| 2504 | + resolved "https://registry.npmmirror.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz" | |
| 2505 | + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== | |
| 2496 | 2506 | |
| 2497 | 2507 | "@xtuc/long@4.2.2": |
| 2498 | - "integrity" "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" | |
| 2499 | - "resolved" "https://registry.npmmirror.com/@xtuc/long/-/long-4.2.2.tgz" | |
| 2500 | - "version" "4.2.2" | |
| 2508 | + version "4.2.2" | |
| 2509 | + resolved "https://registry.npmmirror.com/@xtuc/long/-/long-4.2.2.tgz" | |
| 2510 | + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== | |
| 2501 | 2511 | |
| 2502 | 2512 | "@zxing/library@^0.18.4": |
| 2503 | - "integrity" "sha512-bulZ9JHoLFd9W36pi+7e7DnEYNJhljYjZ1UTsKPOoLMU3qtC+REHITeCRNx40zTRJZx18W5TBRXt5pq2Uopjsw==" | |
| 2504 | - "resolved" "https://registry.npmmirror.com/@zxing/library/-/library-0.18.6.tgz" | |
| 2505 | - "version" "0.18.6" | |
| 2513 | + version "0.18.6" | |
| 2514 | + resolved "https://registry.npmmirror.com/@zxing/library/-/library-0.18.6.tgz" | |
| 2515 | + integrity sha512-bulZ9JHoLFd9W36pi+7e7DnEYNJhljYjZ1UTsKPOoLMU3qtC+REHITeCRNx40zTRJZx18W5TBRXt5pq2Uopjsw== | |
| 2506 | 2516 | dependencies: |
| 2507 | - "ts-custom-error" "^3.0.0" | |
| 2517 | + ts-custom-error "^3.0.0" | |
| 2508 | 2518 | optionalDependencies: |
| 2509 | 2519 | "@zxing/text-encoding" "~0.9.0" |
| 2510 | 2520 | |
| 2511 | 2521 | "@zxing/text-encoding@~0.9.0": |
| 2512 | - "integrity" "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==" | |
| 2513 | - "resolved" "https://registry.npmmirror.com/@zxing/text-encoding/-/text-encoding-0.9.0.tgz" | |
| 2514 | - "version" "0.9.0" | |
| 2515 | - | |
| 2516 | -"abab@^2.0.3", "abab@^2.0.5": | |
| 2517 | - "integrity" "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" | |
| 2518 | - "resolved" "https://registry.npmmirror.com/abab/-/abab-2.0.6.tgz" | |
| 2519 | - "version" "2.0.6" | |
| 2520 | - | |
| 2521 | -"accepts@~1.3.8": | |
| 2522 | - "integrity" "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" | |
| 2523 | - "resolved" "https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz" | |
| 2524 | - "version" "1.3.8" | |
| 2525 | - dependencies: | |
| 2526 | - "mime-types" "~2.1.34" | |
| 2527 | - "negotiator" "0.6.3" | |
| 2528 | - | |
| 2529 | -"acorn-globals@^6.0.0": | |
| 2530 | - "integrity" "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==" | |
| 2531 | - "resolved" "https://registry.npmmirror.com/acorn-globals/-/acorn-globals-6.0.0.tgz" | |
| 2532 | - "version" "6.0.0" | |
| 2533 | - dependencies: | |
| 2534 | - "acorn" "^7.1.1" | |
| 2535 | - "acorn-walk" "^7.1.1" | |
| 2536 | - | |
| 2537 | -"acorn-import-assertions@^1.9.0": | |
| 2538 | - "integrity" "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" | |
| 2539 | - "resolved" "https://registry.npmmirror.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz" | |
| 2540 | - "version" "1.9.0" | |
| 2541 | - | |
| 2542 | -"acorn-walk@^7.1.1": | |
| 2543 | - "integrity" "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" | |
| 2544 | - "resolved" "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz" | |
| 2545 | - "version" "7.2.0" | |
| 2546 | - | |
| 2547 | -"acorn@^7.1.1": | |
| 2548 | - "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" | |
| 2549 | - "resolved" "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz" | |
| 2550 | - "version" "7.4.1" | |
| 2551 | - | |
| 2552 | -"acorn@^8", "acorn@^8.2.4", "acorn@^8.7.1", "acorn@^8.8.2": | |
| 2553 | - "integrity" "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==" | |
| 2554 | - "resolved" "https://registry.npmmirror.com/acorn/-/acorn-8.11.2.tgz" | |
| 2555 | - "version" "8.11.2" | |
| 2556 | - | |
| 2557 | -"address@^1.1.2": | |
| 2558 | - "integrity" "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" | |
| 2559 | - "resolved" "https://registry.npmmirror.com/address/-/address-1.2.2.tgz" | |
| 2560 | - "version" "1.2.2" | |
| 2561 | - | |
| 2562 | -"agent-base@6": | |
| 2563 | - "integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" | |
| 2564 | - "resolved" "https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz" | |
| 2565 | - "version" "6.0.2" | |
| 2566 | - dependencies: | |
| 2567 | - "debug" "4" | |
| 2568 | - | |
| 2569 | -"ajv-keywords@^3.5.2": | |
| 2570 | - "integrity" "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" | |
| 2571 | - "resolved" "https://registry.npmmirror.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz" | |
| 2572 | - "version" "3.5.2" | |
| 2573 | - | |
| 2574 | -"ajv@^6.12.5", "ajv@^6.9.1": | |
| 2575 | - "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" | |
| 2576 | - "resolved" "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz" | |
| 2577 | - "version" "6.12.6" | |
| 2578 | - dependencies: | |
| 2579 | - "fast-deep-equal" "^3.1.1" | |
| 2580 | - "fast-json-stable-stringify" "^2.0.0" | |
| 2581 | - "json-schema-traverse" "^0.4.1" | |
| 2582 | - "uri-js" "^4.2.2" | |
| 2583 | - | |
| 2584 | -"ansi-escapes@^4.2.1": | |
| 2585 | - "integrity" "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" | |
| 2586 | - "resolved" "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz" | |
| 2587 | - "version" "4.3.2" | |
| 2588 | - dependencies: | |
| 2589 | - "type-fest" "^0.21.3" | |
| 2590 | - | |
| 2591 | -"ansi-regex@^5.0.1": | |
| 2592 | - "integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" | |
| 2593 | - "resolved" "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" | |
| 2594 | - "version" "5.0.1" | |
| 2595 | - | |
| 2596 | -"ansi-styles@^3.2.1": | |
| 2597 | - "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" | |
| 2598 | - "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz" | |
| 2599 | - "version" "3.2.1" | |
| 2600 | - dependencies: | |
| 2601 | - "color-convert" "^1.9.0" | |
| 2602 | - | |
| 2603 | -"ansi-styles@^4.0.0": | |
| 2604 | - "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" | |
| 2605 | - "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz" | |
| 2606 | - "version" "4.3.0" | |
| 2607 | - dependencies: | |
| 2608 | - "color-convert" "^2.0.1" | |
| 2609 | - | |
| 2610 | -"ansi-styles@^4.1.0": | |
| 2611 | - "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" | |
| 2612 | - "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz" | |
| 2613 | - "version" "4.3.0" | |
| 2614 | - dependencies: | |
| 2615 | - "color-convert" "^2.0.1" | |
| 2616 | - | |
| 2617 | -"ansi-styles@^5.0.0": | |
| 2618 | - "integrity" "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" | |
| 2619 | - "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz" | |
| 2620 | - "version" "5.2.0" | |
| 2621 | - | |
| 2622 | -"any-base@^1.1.0": | |
| 2623 | - "integrity" "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==" | |
| 2624 | - "resolved" "https://registry.npmmirror.com/any-base/-/any-base-1.1.0.tgz" | |
| 2625 | - "version" "1.1.0" | |
| 2626 | - | |
| 2627 | -"anymatch@^3.0.3", "anymatch@~3.1.2": | |
| 2628 | - "integrity" "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" | |
| 2629 | - "resolved" "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz" | |
| 2630 | - "version" "3.1.3" | |
| 2631 | - dependencies: | |
| 2632 | - "normalize-path" "^3.0.0" | |
| 2633 | - "picomatch" "^2.0.4" | |
| 2634 | - | |
| 2635 | -"argparse@^1.0.7": | |
| 2636 | - "integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" | |
| 2637 | - "resolved" "https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz" | |
| 2638 | - "version" "1.0.10" | |
| 2639 | - dependencies: | |
| 2640 | - "sprintf-js" "~1.0.2" | |
| 2641 | - | |
| 2642 | -"array-flatten@1.1.1": | |
| 2643 | - "integrity" "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" | |
| 2644 | - "resolved" "https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz" | |
| 2645 | - "version" "1.1.1" | |
| 2646 | - | |
| 2647 | -"asynckit@^0.4.0": | |
| 2648 | - "integrity" "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" | |
| 2649 | - "resolved" "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz" | |
| 2650 | - "version" "0.4.0" | |
| 2651 | - | |
| 2652 | -"autoprefixer@^10.4.14": | |
| 2653 | - "integrity" "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==" | |
| 2654 | - "resolved" "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.16.tgz" | |
| 2655 | - "version" "10.4.16" | |
| 2656 | - dependencies: | |
| 2657 | - "browserslist" "^4.21.10" | |
| 2658 | - "caniuse-lite" "^1.0.30001538" | |
| 2659 | - "fraction.js" "^4.3.6" | |
| 2660 | - "normalize-range" "^0.1.2" | |
| 2661 | - "picocolors" "^1.0.0" | |
| 2662 | - "postcss-value-parser" "^4.2.0" | |
| 2663 | - | |
| 2664 | -"axios@^0.27.2": | |
| 2665 | - "integrity" "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==" | |
| 2666 | - "resolved" "https://registry.npmmirror.com/axios/-/axios-0.27.2.tgz" | |
| 2667 | - "version" "0.27.2" | |
| 2668 | - dependencies: | |
| 2669 | - "follow-redirects" "^1.14.9" | |
| 2670 | - "form-data" "^4.0.0" | |
| 2671 | - | |
| 2672 | -"babel-jest@^27.5.1": | |
| 2673 | - "integrity" "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==" | |
| 2674 | - "resolved" "https://registry.npmmirror.com/babel-jest/-/babel-jest-27.5.1.tgz" | |
| 2675 | - "version" "27.5.1" | |
| 2522 | + version "0.9.0" | |
| 2523 | + resolved "https://registry.npmmirror.com/@zxing/text-encoding/-/text-encoding-0.9.0.tgz" | |
| 2524 | + integrity sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA== | |
| 2525 | + | |
| 2526 | +abab@^2.0.3, abab@^2.0.5: | |
| 2527 | + version "2.0.6" | |
| 2528 | + resolved "https://registry.npmmirror.com/abab/-/abab-2.0.6.tgz" | |
| 2529 | + integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== | |
| 2530 | + | |
| 2531 | +accepts@~1.3.8: | |
| 2532 | + version "1.3.8" | |
| 2533 | + resolved "https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz" | |
| 2534 | + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== | |
| 2535 | + dependencies: | |
| 2536 | + mime-types "~2.1.34" | |
| 2537 | + negotiator "0.6.3" | |
| 2538 | + | |
| 2539 | +acorn-globals@^6.0.0: | |
| 2540 | + version "6.0.0" | |
| 2541 | + resolved "https://registry.npmmirror.com/acorn-globals/-/acorn-globals-6.0.0.tgz" | |
| 2542 | + integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== | |
| 2543 | + dependencies: | |
| 2544 | + acorn "^7.1.1" | |
| 2545 | + acorn-walk "^7.1.1" | |
| 2546 | + | |
| 2547 | +acorn-import-assertions@^1.9.0: | |
| 2548 | + version "1.9.0" | |
| 2549 | + resolved "https://registry.npmmirror.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz" | |
| 2550 | + integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== | |
| 2551 | + | |
| 2552 | +acorn-walk@^7.1.1: | |
| 2553 | + version "7.2.0" | |
| 2554 | + resolved "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz" | |
| 2555 | + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== | |
| 2556 | + | |
| 2557 | +acorn@^7.1.1: | |
| 2558 | + version "7.4.1" | |
| 2559 | + resolved "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz" | |
| 2560 | + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== | |
| 2561 | + | |
| 2562 | +acorn@^8, acorn@^8.2.4, acorn@^8.7.1, acorn@^8.8.2: | |
| 2563 | + version "8.11.2" | |
| 2564 | + resolved "https://registry.npmmirror.com/acorn/-/acorn-8.11.2.tgz" | |
| 2565 | + integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== | |
| 2566 | + | |
| 2567 | +address@^1.1.2: | |
| 2568 | + version "1.2.2" | |
| 2569 | + resolved "https://registry.npmmirror.com/address/-/address-1.2.2.tgz" | |
| 2570 | + integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== | |
| 2571 | + | |
| 2572 | +agent-base@6: | |
| 2573 | + version "6.0.2" | |
| 2574 | + resolved "https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz" | |
| 2575 | + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== | |
| 2576 | + dependencies: | |
| 2577 | + debug "4" | |
| 2578 | + | |
| 2579 | +ajv-keywords@^3.5.2: | |
| 2580 | + version "3.5.2" | |
| 2581 | + resolved "https://registry.npmmirror.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz" | |
| 2582 | + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== | |
| 2583 | + | |
| 2584 | +ajv@^6.12.5, ajv@^6.9.1: | |
| 2585 | + version "6.12.6" | |
| 2586 | + resolved "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz" | |
| 2587 | + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== | |
| 2588 | + dependencies: | |
| 2589 | + fast-deep-equal "^3.1.1" | |
| 2590 | + fast-json-stable-stringify "^2.0.0" | |
| 2591 | + json-schema-traverse "^0.4.1" | |
| 2592 | + uri-js "^4.2.2" | |
| 2593 | + | |
| 2594 | +ansi-escapes@^4.2.1: | |
| 2595 | + version "4.3.2" | |
| 2596 | + resolved "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz" | |
| 2597 | + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== | |
| 2598 | + dependencies: | |
| 2599 | + type-fest "^0.21.3" | |
| 2600 | + | |
| 2601 | +ansi-regex@^5.0.1: | |
| 2602 | + version "5.0.1" | |
| 2603 | + resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" | |
| 2604 | + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== | |
| 2605 | + | |
| 2606 | +ansi-styles@^3.2.1: | |
| 2607 | + version "3.2.1" | |
| 2608 | + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz" | |
| 2609 | + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== | |
| 2610 | + dependencies: | |
| 2611 | + color-convert "^1.9.0" | |
| 2612 | + | |
| 2613 | +ansi-styles@^4.0.0: | |
| 2614 | + version "4.3.0" | |
| 2615 | + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz" | |
| 2616 | + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== | |
| 2617 | + dependencies: | |
| 2618 | + color-convert "^2.0.1" | |
| 2619 | + | |
| 2620 | +ansi-styles@^4.1.0: | |
| 2621 | + version "4.3.0" | |
| 2622 | + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz" | |
| 2623 | + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== | |
| 2624 | + dependencies: | |
| 2625 | + color-convert "^2.0.1" | |
| 2626 | + | |
| 2627 | +ansi-styles@^5.0.0: | |
| 2628 | + version "5.2.0" | |
| 2629 | + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz" | |
| 2630 | + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== | |
| 2631 | + | |
| 2632 | +any-base@^1.1.0: | |
| 2633 | + version "1.1.0" | |
| 2634 | + resolved "https://registry.npmmirror.com/any-base/-/any-base-1.1.0.tgz" | |
| 2635 | + integrity sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg== | |
| 2636 | + | |
| 2637 | +anymatch@^3.0.3, anymatch@~3.1.2: | |
| 2638 | + version "3.1.3" | |
| 2639 | + resolved "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz" | |
| 2640 | + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== | |
| 2641 | + dependencies: | |
| 2642 | + normalize-path "^3.0.0" | |
| 2643 | + picomatch "^2.0.4" | |
| 2644 | + | |
| 2645 | +argparse@^1.0.7: | |
| 2646 | + version "1.0.10" | |
| 2647 | + resolved "https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz" | |
| 2648 | + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== | |
| 2649 | + dependencies: | |
| 2650 | + sprintf-js "~1.0.2" | |
| 2651 | + | |
| 2652 | +array-flatten@1.1.1: | |
| 2653 | + version "1.1.1" | |
| 2654 | + resolved "https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz" | |
| 2655 | + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== | |
| 2656 | + | |
| 2657 | +asynckit@^0.4.0: | |
| 2658 | + version "0.4.0" | |
| 2659 | + resolved "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz" | |
| 2660 | + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== | |
| 2661 | + | |
| 2662 | +autoprefixer@^10.4.14: | |
| 2663 | + version "10.4.16" | |
| 2664 | + resolved "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.16.tgz" | |
| 2665 | + integrity sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ== | |
| 2666 | + dependencies: | |
| 2667 | + browserslist "^4.21.10" | |
| 2668 | + caniuse-lite "^1.0.30001538" | |
| 2669 | + fraction.js "^4.3.6" | |
| 2670 | + normalize-range "^0.1.2" | |
| 2671 | + picocolors "^1.0.0" | |
| 2672 | + postcss-value-parser "^4.2.0" | |
| 2673 | + | |
| 2674 | +axios@^0.27.2: | |
| 2675 | + version "0.27.2" | |
| 2676 | + resolved "https://registry.npmmirror.com/axios/-/axios-0.27.2.tgz" | |
| 2677 | + integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== | |
| 2678 | + dependencies: | |
| 2679 | + follow-redirects "^1.14.9" | |
| 2680 | + form-data "^4.0.0" | |
| 2681 | + | |
| 2682 | +babel-jest@^27.5.1: | |
| 2683 | + version "27.5.1" | |
| 2684 | + resolved "https://registry.npmmirror.com/babel-jest/-/babel-jest-27.5.1.tgz" | |
| 2685 | + integrity sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg== | |
| 2676 | 2686 | dependencies: |
| 2677 | 2687 | "@jest/transform" "^27.5.1" |
| 2678 | 2688 | "@jest/types" "^27.5.1" |
| 2679 | 2689 | "@types/babel__core" "^7.1.14" |
| 2680 | - "babel-plugin-istanbul" "^6.1.1" | |
| 2681 | - "babel-preset-jest" "^27.5.1" | |
| 2682 | - "chalk" "^4.0.0" | |
| 2683 | - "graceful-fs" "^4.2.9" | |
| 2684 | - "slash" "^3.0.0" | |
| 2690 | + babel-plugin-istanbul "^6.1.1" | |
| 2691 | + babel-preset-jest "^27.5.1" | |
| 2692 | + chalk "^4.0.0" | |
| 2693 | + graceful-fs "^4.2.9" | |
| 2694 | + slash "^3.0.0" | |
| 2685 | 2695 | |
| 2686 | -"babel-plugin-istanbul@^6.1.1": | |
| 2687 | - "integrity" "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" | |
| 2688 | - "resolved" "https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz" | |
| 2689 | - "version" "6.1.1" | |
| 2696 | +babel-plugin-istanbul@^6.1.1: | |
| 2697 | + version "6.1.1" | |
| 2698 | + resolved "https://registry.npmmirror.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz" | |
| 2699 | + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== | |
| 2690 | 2700 | dependencies: |
| 2691 | 2701 | "@babel/helper-plugin-utils" "^7.0.0" |
| 2692 | 2702 | "@istanbuljs/load-nyc-config" "^1.0.0" |
| 2693 | 2703 | "@istanbuljs/schema" "^0.1.2" |
| 2694 | - "istanbul-lib-instrument" "^5.0.4" | |
| 2695 | - "test-exclude" "^6.0.0" | |
| 2704 | + istanbul-lib-instrument "^5.0.4" | |
| 2705 | + test-exclude "^6.0.0" | |
| 2696 | 2706 | |
| 2697 | -"babel-plugin-jest-hoist@^27.5.1": | |
| 2698 | - "integrity" "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==" | |
| 2699 | - "resolved" "https://registry.npmmirror.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz" | |
| 2700 | - "version" "27.5.1" | |
| 2707 | +babel-plugin-jest-hoist@^27.5.1: | |
| 2708 | + version "27.5.1" | |
| 2709 | + resolved "https://registry.npmmirror.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz" | |
| 2710 | + integrity sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ== | |
| 2701 | 2711 | dependencies: |
| 2702 | 2712 | "@babel/template" "^7.3.3" |
| 2703 | 2713 | "@babel/types" "^7.3.3" |
| 2704 | 2714 | "@types/babel__core" "^7.0.0" |
| 2705 | 2715 | "@types/babel__traverse" "^7.0.6" |
| 2706 | 2716 | |
| 2707 | -"babel-plugin-polyfill-corejs2@^0.4.6": | |
| 2708 | - "integrity" "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==" | |
| 2709 | - "resolved" "https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz" | |
| 2710 | - "version" "0.4.6" | |
| 2717 | +babel-plugin-polyfill-corejs2@^0.4.6: | |
| 2718 | + version "0.4.6" | |
| 2719 | + resolved "https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz" | |
| 2720 | + integrity sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q== | |
| 2711 | 2721 | dependencies: |
| 2712 | 2722 | "@babel/compat-data" "^7.22.6" |
| 2713 | 2723 | "@babel/helper-define-polyfill-provider" "^0.4.3" |
| 2714 | - "semver" "^6.3.1" | |
| 2724 | + semver "^6.3.1" | |
| 2715 | 2725 | |
| 2716 | -"babel-plugin-polyfill-corejs3@^0.8.5": | |
| 2717 | - "integrity" "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==" | |
| 2718 | - "resolved" "https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz" | |
| 2719 | - "version" "0.8.6" | |
| 2726 | +babel-plugin-polyfill-corejs3@^0.8.5: | |
| 2727 | + version "0.8.6" | |
| 2728 | + resolved "https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz" | |
| 2729 | + integrity sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ== | |
| 2720 | 2730 | dependencies: |
| 2721 | 2731 | "@babel/helper-define-polyfill-provider" "^0.4.3" |
| 2722 | - "core-js-compat" "^3.33.1" | |
| 2732 | + core-js-compat "^3.33.1" | |
| 2723 | 2733 | |
| 2724 | -"babel-plugin-polyfill-regenerator@^0.5.3": | |
| 2725 | - "integrity" "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==" | |
| 2726 | - "resolved" "https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz" | |
| 2727 | - "version" "0.5.3" | |
| 2734 | +babel-plugin-polyfill-regenerator@^0.5.3: | |
| 2735 | + version "0.5.3" | |
| 2736 | + resolved "https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz" | |
| 2737 | + integrity sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw== | |
| 2728 | 2738 | dependencies: |
| 2729 | 2739 | "@babel/helper-define-polyfill-provider" "^0.4.3" |
| 2730 | 2740 | |
| 2731 | -"babel-preset-current-node-syntax@^1.0.0": | |
| 2732 | - "integrity" "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" | |
| 2733 | - "resolved" "https://registry.npmmirror.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz" | |
| 2734 | - "version" "1.0.1" | |
| 2741 | +babel-preset-current-node-syntax@^1.0.0: | |
| 2742 | + version "1.0.1" | |
| 2743 | + resolved "https://registry.npmmirror.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz" | |
| 2744 | + integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== | |
| 2735 | 2745 | dependencies: |
| 2736 | 2746 | "@babel/plugin-syntax-async-generators" "^7.8.4" |
| 2737 | 2747 | "@babel/plugin-syntax-bigint" "^7.8.3" |
| ... | ... | @@ -2746,611 +2756,611 @@ |
| 2746 | 2756 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" |
| 2747 | 2757 | "@babel/plugin-syntax-top-level-await" "^7.8.3" |
| 2748 | 2758 | |
| 2749 | -"babel-preset-jest@^27.5.1": | |
| 2750 | - "integrity" "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==" | |
| 2751 | - "resolved" "https://registry.npmmirror.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz" | |
| 2752 | - "version" "27.5.1" | |
| 2759 | +babel-preset-jest@^27.5.1: | |
| 2760 | + version "27.5.1" | |
| 2761 | + resolved "https://registry.npmmirror.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz" | |
| 2762 | + integrity sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag== | |
| 2753 | 2763 | dependencies: |
| 2754 | - "babel-plugin-jest-hoist" "^27.5.1" | |
| 2755 | - "babel-preset-current-node-syntax" "^1.0.0" | |
| 2764 | + babel-plugin-jest-hoist "^27.5.1" | |
| 2765 | + babel-preset-current-node-syntax "^1.0.0" | |
| 2756 | 2766 | |
| 2757 | -"balanced-match@^1.0.0": | |
| 2758 | - "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" | |
| 2759 | - "resolved" "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz" | |
| 2760 | - "version" "1.0.2" | |
| 2767 | +balanced-match@^1.0.0: | |
| 2768 | + version "1.0.2" | |
| 2769 | + resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz" | |
| 2770 | + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== | |
| 2761 | 2771 | |
| 2762 | -"barcode-detector@^0.7": | |
| 2763 | - "integrity" "sha512-SJh+LV6e+W5e6QJe70ralFfqcYwvaOUGWyr+GepuQ5swPH4jF2asyTxOIUZNSU9Z5isD3KWI5hlqQ+b/QaFFOg==" | |
| 2764 | - "resolved" "https://registry.npmmirror.com/barcode-detector/-/barcode-detector-0.7.0.tgz" | |
| 2765 | - "version" "0.7.0" | |
| 2772 | +barcode-detector@^0.7: | |
| 2773 | + version "0.7.0" | |
| 2774 | + resolved "https://registry.npmmirror.com/barcode-detector/-/barcode-detector-0.7.0.tgz" | |
| 2775 | + integrity sha512-SJh+LV6e+W5e6QJe70ralFfqcYwvaOUGWyr+GepuQ5swPH4jF2asyTxOIUZNSU9Z5isD3KWI5hlqQ+b/QaFFOg== | |
| 2766 | 2776 | dependencies: |
| 2767 | 2777 | "@zxing/library" "^0.18.4" |
| 2768 | - "jsqr" "^1.3.1" | |
| 2769 | - | |
| 2770 | -"base64-js@^1.3.1": | |
| 2771 | - "integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" | |
| 2772 | - "resolved" "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz" | |
| 2773 | - "version" "1.5.1" | |
| 2774 | - | |
| 2775 | -"base64url@^3.0.1": | |
| 2776 | - "integrity" "sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==" | |
| 2777 | - "resolved" "https://registry.npmmirror.com/base64url/-/base64url-3.0.1.tgz" | |
| 2778 | - "version" "3.0.1" | |
| 2779 | - | |
| 2780 | -"binary-extensions@^2.0.0": | |
| 2781 | - "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" | |
| 2782 | - "resolved" "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz" | |
| 2783 | - "version" "2.2.0" | |
| 2784 | - | |
| 2785 | -"bmp-js@^0.1.0": | |
| 2786 | - "integrity" "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==" | |
| 2787 | - "resolved" "https://registry.npmmirror.com/bmp-js/-/bmp-js-0.1.0.tgz" | |
| 2788 | - "version" "0.1.0" | |
| 2789 | - | |
| 2790 | -"body-parser@1.20.1": | |
| 2791 | - "integrity" "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" | |
| 2792 | - "resolved" "https://registry.npmmirror.com/body-parser/-/body-parser-1.20.1.tgz" | |
| 2793 | - "version" "1.20.1" | |
| 2794 | - dependencies: | |
| 2795 | - "bytes" "3.1.2" | |
| 2796 | - "content-type" "~1.0.4" | |
| 2797 | - "debug" "2.6.9" | |
| 2798 | - "depd" "2.0.0" | |
| 2799 | - "destroy" "1.2.0" | |
| 2800 | - "http-errors" "2.0.0" | |
| 2801 | - "iconv-lite" "0.4.24" | |
| 2802 | - "on-finished" "2.4.1" | |
| 2803 | - "qs" "6.11.0" | |
| 2804 | - "raw-body" "2.5.1" | |
| 2805 | - "type-is" "~1.6.18" | |
| 2806 | - "unpipe" "1.0.0" | |
| 2807 | - | |
| 2808 | -"brace-expansion@^1.1.7": | |
| 2809 | - "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" | |
| 2810 | - "resolved" "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz" | |
| 2811 | - "version" "1.1.11" | |
| 2812 | - dependencies: | |
| 2813 | - "balanced-match" "^1.0.0" | |
| 2814 | - "concat-map" "0.0.1" | |
| 2815 | - | |
| 2816 | -"braces@^3.0.2", "braces@~3.0.2": | |
| 2817 | - "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" | |
| 2818 | - "resolved" "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz" | |
| 2819 | - "version" "3.0.2" | |
| 2820 | - dependencies: | |
| 2821 | - "fill-range" "^7.0.1" | |
| 2822 | - | |
| 2823 | -"browser-process-hrtime@^1.0.0": | |
| 2824 | - "integrity" "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" | |
| 2825 | - "resolved" "https://registry.npmmirror.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" | |
| 2826 | - "version" "1.0.0" | |
| 2827 | - | |
| 2828 | -"browserslist@^4.14.5", "browserslist@^4.21.10", "browserslist@^4.21.9", "browserslist@^4.22.1", "browserslist@>= 4.21.0": | |
| 2829 | - "integrity" "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==" | |
| 2830 | - "resolved" "https://registry.npmmirror.com/browserslist/-/browserslist-4.22.1.tgz" | |
| 2831 | - "version" "4.22.1" | |
| 2832 | - dependencies: | |
| 2833 | - "caniuse-lite" "^1.0.30001541" | |
| 2834 | - "electron-to-chromium" "^1.4.535" | |
| 2835 | - "node-releases" "^2.0.13" | |
| 2836 | - "update-browserslist-db" "^1.0.13" | |
| 2837 | - | |
| 2838 | -"bser@2.1.1": | |
| 2839 | - "integrity" "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" | |
| 2840 | - "resolved" "https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz" | |
| 2841 | - "version" "2.1.1" | |
| 2842 | - dependencies: | |
| 2843 | - "node-int64" "^0.4.0" | |
| 2844 | - | |
| 2845 | -"buffer-equal@0.0.1": | |
| 2846 | - "integrity" "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==" | |
| 2847 | - "resolved" "https://registry.npmmirror.com/buffer-equal/-/buffer-equal-0.0.1.tgz" | |
| 2848 | - "version" "0.0.1" | |
| 2849 | - | |
| 2850 | -"buffer-from@^1.0.0": | |
| 2851 | - "integrity" "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" | |
| 2852 | - "resolved" "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz" | |
| 2853 | - "version" "1.1.2" | |
| 2854 | - | |
| 2855 | -"buffer@^5.2.0": | |
| 2856 | - "integrity" "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" | |
| 2857 | - "resolved" "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz" | |
| 2858 | - "version" "5.7.1" | |
| 2859 | - dependencies: | |
| 2860 | - "base64-js" "^1.3.1" | |
| 2861 | - "ieee754" "^1.1.13" | |
| 2862 | - | |
| 2863 | -"bytes@3.1.2": | |
| 2864 | - "integrity" "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" | |
| 2865 | - "resolved" "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz" | |
| 2866 | - "version" "3.1.2" | |
| 2867 | - | |
| 2868 | -"cac@6.7.9": | |
| 2869 | - "integrity" "sha512-XN5qEpfNQCJ8jRaZgitSkkukjMRCGio+X3Ks5KUbGGlPbV+pSem1l9VuzooCBXOiMFshUZgyYqg6rgN8rjkb/w==" | |
| 2870 | - "resolved" "https://registry.npmmirror.com/cac/-/cac-6.7.9.tgz" | |
| 2871 | - "version" "6.7.9" | |
| 2872 | - | |
| 2873 | -"call-bind-apply-helpers@^1.0.1", "call-bind-apply-helpers@^1.0.2": | |
| 2874 | - "integrity" "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==" | |
| 2875 | - "resolved" "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" | |
| 2876 | - "version" "1.0.2" | |
| 2877 | - dependencies: | |
| 2878 | - "es-errors" "^1.3.0" | |
| 2879 | - "function-bind" "^1.1.2" | |
| 2880 | - | |
| 2881 | -"call-bind@^1.0.0": | |
| 2882 | - "integrity" "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" | |
| 2883 | - "resolved" "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.5.tgz" | |
| 2884 | - "version" "1.0.5" | |
| 2885 | - dependencies: | |
| 2886 | - "function-bind" "^1.1.2" | |
| 2887 | - "get-intrinsic" "^1.2.1" | |
| 2888 | - "set-function-length" "^1.1.1" | |
| 2889 | - | |
| 2890 | -"callforth@^0.4": | |
| 2891 | - "integrity" "sha512-k3kD3OBPRvYs3Sb41Fn1T7l6vvSmTMPq1a0jxh8QKD+wb+17G8oOq48eBi0stn8ahpNVUJtPlrlYwbfv9Cfhpg==" | |
| 2892 | - "resolved" "https://registry.npmmirror.com/callforth/-/callforth-0.4.0.tgz" | |
| 2893 | - "version" "0.4.0" | |
| 2894 | - | |
| 2895 | -"callsites@^3.0.0": | |
| 2896 | - "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" | |
| 2897 | - "resolved" "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz" | |
| 2898 | - "version" "3.1.0" | |
| 2899 | - | |
| 2900 | -"camelcase@^5.3.1": | |
| 2901 | - "integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" | |
| 2902 | - "resolved" "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz" | |
| 2903 | - "version" "5.3.1" | |
| 2904 | - | |
| 2905 | -"camelcase@^6.2.0", "camelcase@^6.3.0": | |
| 2906 | - "integrity" "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" | |
| 2907 | - "resolved" "https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz" | |
| 2908 | - "version" "6.3.0" | |
| 2909 | - | |
| 2910 | -"caniuse-lite@^1.0.30001538", "caniuse-lite@^1.0.30001541": | |
| 2911 | - "integrity" "sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==" | |
| 2912 | - "resolved" "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001617.tgz" | |
| 2913 | - "version" "1.0.30001617" | |
| 2914 | - | |
| 2915 | -"chalk@^2.4.2": | |
| 2916 | - "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" | |
| 2917 | - "resolved" "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz" | |
| 2918 | - "version" "2.4.2" | |
| 2919 | - dependencies: | |
| 2920 | - "ansi-styles" "^3.2.1" | |
| 2921 | - "escape-string-regexp" "^1.0.5" | |
| 2922 | - "supports-color" "^5.3.0" | |
| 2923 | - | |
| 2924 | -"chalk@^4.0.0": | |
| 2925 | - "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" | |
| 2926 | - "resolved" "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz" | |
| 2927 | - "version" "4.1.2" | |
| 2928 | - dependencies: | |
| 2929 | - "ansi-styles" "^4.1.0" | |
| 2930 | - "supports-color" "^7.1.0" | |
| 2931 | - | |
| 2932 | -"char-regex@^1.0.2": | |
| 2933 | - "integrity" "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" | |
| 2934 | - "resolved" "https://registry.npmmirror.com/char-regex/-/char-regex-1.0.2.tgz" | |
| 2935 | - "version" "1.0.2" | |
| 2936 | - | |
| 2937 | -"chokidar@^3.5.3", "chokidar@>=3.0.0 <4.0.0": | |
| 2938 | - "integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" | |
| 2939 | - "resolved" "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz" | |
| 2940 | - "version" "3.5.3" | |
| 2941 | - dependencies: | |
| 2942 | - "anymatch" "~3.1.2" | |
| 2943 | - "braces" "~3.0.2" | |
| 2944 | - "glob-parent" "~5.1.2" | |
| 2945 | - "is-binary-path" "~2.1.0" | |
| 2946 | - "is-glob" "~4.0.1" | |
| 2947 | - "normalize-path" "~3.0.0" | |
| 2948 | - "readdirp" "~3.6.0" | |
| 2778 | + jsqr "^1.3.1" | |
| 2779 | + | |
| 2780 | +base64-js@^1.3.1: | |
| 2781 | + version "1.5.1" | |
| 2782 | + resolved "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz" | |
| 2783 | + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== | |
| 2784 | + | |
| 2785 | +base64url@^3.0.1: | |
| 2786 | + version "3.0.1" | |
| 2787 | + resolved "https://registry.npmmirror.com/base64url/-/base64url-3.0.1.tgz" | |
| 2788 | + integrity sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A== | |
| 2789 | + | |
| 2790 | +binary-extensions@^2.0.0: | |
| 2791 | + version "2.2.0" | |
| 2792 | + resolved "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz" | |
| 2793 | + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== | |
| 2794 | + | |
| 2795 | +bmp-js@^0.1.0: | |
| 2796 | + version "0.1.0" | |
| 2797 | + resolved "https://registry.npmmirror.com/bmp-js/-/bmp-js-0.1.0.tgz" | |
| 2798 | + integrity sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw== | |
| 2799 | + | |
| 2800 | +body-parser@1.20.1: | |
| 2801 | + version "1.20.1" | |
| 2802 | + resolved "https://registry.npmmirror.com/body-parser/-/body-parser-1.20.1.tgz" | |
| 2803 | + integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== | |
| 2804 | + dependencies: | |
| 2805 | + bytes "3.1.2" | |
| 2806 | + content-type "~1.0.4" | |
| 2807 | + debug "2.6.9" | |
| 2808 | + depd "2.0.0" | |
| 2809 | + destroy "1.2.0" | |
| 2810 | + http-errors "2.0.0" | |
| 2811 | + iconv-lite "0.4.24" | |
| 2812 | + on-finished "2.4.1" | |
| 2813 | + qs "6.11.0" | |
| 2814 | + raw-body "2.5.1" | |
| 2815 | + type-is "~1.6.18" | |
| 2816 | + unpipe "1.0.0" | |
| 2817 | + | |
| 2818 | +brace-expansion@^1.1.7: | |
| 2819 | + version "1.1.11" | |
| 2820 | + resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz" | |
| 2821 | + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== | |
| 2822 | + dependencies: | |
| 2823 | + balanced-match "^1.0.0" | |
| 2824 | + concat-map "0.0.1" | |
| 2825 | + | |
| 2826 | +braces@^3.0.2, braces@~3.0.2: | |
| 2827 | + version "3.0.2" | |
| 2828 | + resolved "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz" | |
| 2829 | + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== | |
| 2830 | + dependencies: | |
| 2831 | + fill-range "^7.0.1" | |
| 2832 | + | |
| 2833 | +browser-process-hrtime@^1.0.0: | |
| 2834 | + version "1.0.0" | |
| 2835 | + resolved "https://registry.npmmirror.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" | |
| 2836 | + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== | |
| 2837 | + | |
| 2838 | +browserslist@^4.14.5, browserslist@^4.21.10, browserslist@^4.21.9, browserslist@^4.22.1, "browserslist@>= 4.21.0": | |
| 2839 | + version "4.22.1" | |
| 2840 | + resolved "https://registry.npmmirror.com/browserslist/-/browserslist-4.22.1.tgz" | |
| 2841 | + integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ== | |
| 2842 | + dependencies: | |
| 2843 | + caniuse-lite "^1.0.30001541" | |
| 2844 | + electron-to-chromium "^1.4.535" | |
| 2845 | + node-releases "^2.0.13" | |
| 2846 | + update-browserslist-db "^1.0.13" | |
| 2847 | + | |
| 2848 | +bser@2.1.1: | |
| 2849 | + version "2.1.1" | |
| 2850 | + resolved "https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz" | |
| 2851 | + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== | |
| 2852 | + dependencies: | |
| 2853 | + node-int64 "^0.4.0" | |
| 2854 | + | |
| 2855 | +buffer-equal@0.0.1: | |
| 2856 | + version "0.0.1" | |
| 2857 | + resolved "https://registry.npmmirror.com/buffer-equal/-/buffer-equal-0.0.1.tgz" | |
| 2858 | + integrity sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA== | |
| 2859 | + | |
| 2860 | +buffer-from@^1.0.0: | |
| 2861 | + version "1.1.2" | |
| 2862 | + resolved "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz" | |
| 2863 | + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== | |
| 2864 | + | |
| 2865 | +buffer@^5.2.0: | |
| 2866 | + version "5.7.1" | |
| 2867 | + resolved "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz" | |
| 2868 | + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== | |
| 2869 | + dependencies: | |
| 2870 | + base64-js "^1.3.1" | |
| 2871 | + ieee754 "^1.1.13" | |
| 2872 | + | |
| 2873 | +bytes@3.1.2: | |
| 2874 | + version "3.1.2" | |
| 2875 | + resolved "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz" | |
| 2876 | + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== | |
| 2877 | + | |
| 2878 | +cac@6.7.9: | |
| 2879 | + version "6.7.9" | |
| 2880 | + resolved "https://registry.npmmirror.com/cac/-/cac-6.7.9.tgz" | |
| 2881 | + integrity sha512-XN5qEpfNQCJ8jRaZgitSkkukjMRCGio+X3Ks5KUbGGlPbV+pSem1l9VuzooCBXOiMFshUZgyYqg6rgN8rjkb/w== | |
| 2882 | + | |
| 2883 | +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: | |
| 2884 | + version "1.0.2" | |
| 2885 | + resolved "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" | |
| 2886 | + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== | |
| 2887 | + dependencies: | |
| 2888 | + es-errors "^1.3.0" | |
| 2889 | + function-bind "^1.1.2" | |
| 2890 | + | |
| 2891 | +call-bind@^1.0.0: | |
| 2892 | + version "1.0.5" | |
| 2893 | + resolved "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.5.tgz" | |
| 2894 | + integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ== | |
| 2895 | + dependencies: | |
| 2896 | + function-bind "^1.1.2" | |
| 2897 | + get-intrinsic "^1.2.1" | |
| 2898 | + set-function-length "^1.1.1" | |
| 2899 | + | |
| 2900 | +callforth@^0.4: | |
| 2901 | + version "0.4.0" | |
| 2902 | + resolved "https://registry.npmmirror.com/callforth/-/callforth-0.4.0.tgz" | |
| 2903 | + integrity sha512-k3kD3OBPRvYs3Sb41Fn1T7l6vvSmTMPq1a0jxh8QKD+wb+17G8oOq48eBi0stn8ahpNVUJtPlrlYwbfv9Cfhpg== | |
| 2904 | + | |
| 2905 | +callsites@^3.0.0: | |
| 2906 | + version "3.1.0" | |
| 2907 | + resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz" | |
| 2908 | + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== | |
| 2909 | + | |
| 2910 | +camelcase@^5.3.1: | |
| 2911 | + version "5.3.1" | |
| 2912 | + resolved "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz" | |
| 2913 | + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== | |
| 2914 | + | |
| 2915 | +camelcase@^6.2.0, camelcase@^6.3.0: | |
| 2916 | + version "6.3.0" | |
| 2917 | + resolved "https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz" | |
| 2918 | + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== | |
| 2919 | + | |
| 2920 | +caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001541: | |
| 2921 | + version "1.0.30001617" | |
| 2922 | + resolved "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001617.tgz" | |
| 2923 | + integrity sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA== | |
| 2924 | + | |
| 2925 | +chalk@^2.4.2: | |
| 2926 | + version "2.4.2" | |
| 2927 | + resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz" | |
| 2928 | + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== | |
| 2929 | + dependencies: | |
| 2930 | + ansi-styles "^3.2.1" | |
| 2931 | + escape-string-regexp "^1.0.5" | |
| 2932 | + supports-color "^5.3.0" | |
| 2933 | + | |
| 2934 | +chalk@^4.0.0: | |
| 2935 | + version "4.1.2" | |
| 2936 | + resolved "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz" | |
| 2937 | + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== | |
| 2938 | + dependencies: | |
| 2939 | + ansi-styles "^4.1.0" | |
| 2940 | + supports-color "^7.1.0" | |
| 2941 | + | |
| 2942 | +char-regex@^1.0.2: | |
| 2943 | + version "1.0.2" | |
| 2944 | + resolved "https://registry.npmmirror.com/char-regex/-/char-regex-1.0.2.tgz" | |
| 2945 | + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== | |
| 2946 | + | |
| 2947 | +chokidar@^3.5.3, "chokidar@>=3.0.0 <4.0.0": | |
| 2948 | + version "3.5.3" | |
| 2949 | + resolved "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz" | |
| 2950 | + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== | |
| 2951 | + dependencies: | |
| 2952 | + anymatch "~3.1.2" | |
| 2953 | + braces "~3.0.2" | |
| 2954 | + glob-parent "~5.1.2" | |
| 2955 | + is-binary-path "~2.1.0" | |
| 2956 | + is-glob "~4.0.1" | |
| 2957 | + normalize-path "~3.0.0" | |
| 2958 | + readdirp "~3.6.0" | |
| 2949 | 2959 | optionalDependencies: |
| 2950 | - "fsevents" "~2.3.2" | |
| 2951 | - | |
| 2952 | -"chrome-trace-event@^1.0.2": | |
| 2953 | - "integrity" "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" | |
| 2954 | - "resolved" "https://registry.npmmirror.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" | |
| 2955 | - "version" "1.0.3" | |
| 2956 | - | |
| 2957 | -"ci-info@^3.2.0": | |
| 2958 | - "integrity" "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" | |
| 2959 | - "resolved" "https://registry.npmmirror.com/ci-info/-/ci-info-3.9.0.tgz" | |
| 2960 | - "version" "3.9.0" | |
| 2961 | - | |
| 2962 | -"cjs-module-lexer@^1.0.0": | |
| 2963 | - "integrity" "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" | |
| 2964 | - "resolved" "https://registry.npmmirror.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz" | |
| 2965 | - "version" "1.2.3" | |
| 2966 | - | |
| 2967 | -"clipboard@^2.0.11": | |
| 2968 | - "integrity" "sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==" | |
| 2969 | - "resolved" "https://registry.npmmirror.com/clipboard/-/clipboard-2.0.11.tgz" | |
| 2970 | - "version" "2.0.11" | |
| 2971 | - dependencies: | |
| 2972 | - "good-listener" "^1.2.2" | |
| 2973 | - "select" "^1.1.2" | |
| 2974 | - "tiny-emitter" "^2.0.0" | |
| 2975 | - | |
| 2976 | -"cliui@^7.0.2": | |
| 2977 | - "integrity" "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" | |
| 2978 | - "resolved" "https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz" | |
| 2979 | - "version" "7.0.4" | |
| 2980 | - dependencies: | |
| 2981 | - "string-width" "^4.2.0" | |
| 2982 | - "strip-ansi" "^6.0.0" | |
| 2983 | - "wrap-ansi" "^7.0.0" | |
| 2984 | - | |
| 2985 | -"co@^4.6.0": | |
| 2986 | - "integrity" "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" | |
| 2987 | - "resolved" "https://registry.npmmirror.com/co/-/co-4.6.0.tgz" | |
| 2988 | - "version" "4.6.0" | |
| 2989 | - | |
| 2990 | -"collect-v8-coverage@^1.0.0": | |
| 2991 | - "integrity" "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" | |
| 2992 | - "resolved" "https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz" | |
| 2993 | - "version" "1.0.2" | |
| 2994 | - | |
| 2995 | -"color-convert@^1.9.0": | |
| 2996 | - "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" | |
| 2997 | - "resolved" "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz" | |
| 2998 | - "version" "1.9.3" | |
| 2999 | - dependencies: | |
| 3000 | - "color-name" "1.1.3" | |
| 3001 | - | |
| 3002 | -"color-convert@^2.0.1": | |
| 3003 | - "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" | |
| 3004 | - "resolved" "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz" | |
| 3005 | - "version" "2.0.1" | |
| 3006 | - dependencies: | |
| 3007 | - "color-name" "~1.1.4" | |
| 3008 | - | |
| 3009 | -"color-name@~1.1.4": | |
| 3010 | - "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" | |
| 3011 | - "resolved" "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz" | |
| 3012 | - "version" "1.1.4" | |
| 3013 | - | |
| 3014 | -"color-name@1.1.3": | |
| 3015 | - "integrity" "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" | |
| 3016 | - "resolved" "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz" | |
| 3017 | - "version" "1.1.3" | |
| 3018 | - | |
| 3019 | -"combined-stream@^1.0.8": | |
| 3020 | - "integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" | |
| 3021 | - "resolved" "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz" | |
| 3022 | - "version" "1.0.8" | |
| 3023 | - dependencies: | |
| 3024 | - "delayed-stream" "~1.0.0" | |
| 3025 | - | |
| 3026 | -"commander@^2.20.0": | |
| 3027 | - "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" | |
| 3028 | - "resolved" "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz" | |
| 3029 | - "version" "2.20.3" | |
| 3030 | - | |
| 3031 | -"compare-versions@^3.6.0": | |
| 3032 | - "integrity" "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==" | |
| 3033 | - "resolved" "https://registry.npmmirror.com/compare-versions/-/compare-versions-3.6.0.tgz" | |
| 3034 | - "version" "3.6.0" | |
| 3035 | - | |
| 3036 | -"concat-map@0.0.1": | |
| 3037 | - "integrity" "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" | |
| 3038 | - "resolved" "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz" | |
| 3039 | - "version" "0.0.1" | |
| 3040 | - | |
| 3041 | -"content-disposition@0.5.4": | |
| 3042 | - "integrity" "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" | |
| 3043 | - "resolved" "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz" | |
| 3044 | - "version" "0.5.4" | |
| 3045 | - dependencies: | |
| 3046 | - "safe-buffer" "5.2.1" | |
| 3047 | - | |
| 3048 | -"content-type@~1.0.4": | |
| 3049 | - "integrity" "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" | |
| 3050 | - "resolved" "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz" | |
| 3051 | - "version" "1.0.5" | |
| 3052 | - | |
| 3053 | -"convert-source-map@^1.4.0": | |
| 3054 | - "integrity" "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" | |
| 3055 | - "resolved" "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz" | |
| 3056 | - "version" "1.9.0" | |
| 3057 | - | |
| 3058 | -"convert-source-map@^1.6.0": | |
| 3059 | - "integrity" "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" | |
| 3060 | - "resolved" "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz" | |
| 3061 | - "version" "1.9.0" | |
| 3062 | - | |
| 3063 | -"convert-source-map@^2.0.0": | |
| 3064 | - "integrity" "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" | |
| 3065 | - "resolved" "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz" | |
| 3066 | - "version" "2.0.0" | |
| 3067 | - | |
| 3068 | -"cookie-signature@1.0.6": | |
| 3069 | - "integrity" "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" | |
| 3070 | - "resolved" "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz" | |
| 3071 | - "version" "1.0.6" | |
| 3072 | - | |
| 3073 | -"cookie@0.5.0": | |
| 3074 | - "integrity" "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" | |
| 3075 | - "resolved" "https://registry.npmmirror.com/cookie/-/cookie-0.5.0.tgz" | |
| 3076 | - "version" "0.5.0" | |
| 3077 | - | |
| 3078 | -"copy-text-to-clipboard@^3.0.1": | |
| 3079 | - "integrity" "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==" | |
| 3080 | - "resolved" "https://registry.npmmirror.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz" | |
| 3081 | - "version" "3.2.0" | |
| 3082 | - | |
| 3083 | -"core-js-compat@^3.31.0", "core-js-compat@^3.33.1": | |
| 3084 | - "integrity" "sha512-axfo+wxFVxnqf8RvxTzoAlzW4gRoacrHeoFlc9n0x50+7BEyZL/Rt3hicaED1/CEd7I6tPCPVUYcJwCMO5XUYw==" | |
| 3085 | - "resolved" "https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.33.2.tgz" | |
| 3086 | - "version" "3.33.2" | |
| 3087 | - dependencies: | |
| 3088 | - "browserslist" "^4.22.1" | |
| 3089 | - | |
| 3090 | -"core-js@^3", "core-js@^3.11.0", "core-js@^3.31.1", "core-js@^3.4.1": | |
| 3091 | - "integrity" "sha512-XeBzWI6QL3nJQiHmdzbAOiMYqjrb7hwU7A39Qhvd/POSa/t9E1AeZyEZx3fNvp/vtM8zXwhoL0FsiS0hD0pruQ==" | |
| 3092 | - "resolved" "https://registry.npmmirror.com/core-js/-/core-js-3.33.2.tgz" | |
| 3093 | - "version" "3.33.2" | |
| 3094 | - | |
| 3095 | -"cross-env@^7.0.3": | |
| 3096 | - "integrity" "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==" | |
| 3097 | - "resolved" "https://registry.npmmirror.com/cross-env/-/cross-env-7.0.3.tgz" | |
| 3098 | - "version" "7.0.3" | |
| 3099 | - dependencies: | |
| 3100 | - "cross-spawn" "^7.0.1" | |
| 3101 | - | |
| 3102 | -"cross-spawn@^7.0.1", "cross-spawn@^7.0.3": | |
| 3103 | - "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" | |
| 3104 | - "resolved" "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz" | |
| 3105 | - "version" "7.0.3" | |
| 3106 | - dependencies: | |
| 3107 | - "path-key" "^3.1.0" | |
| 3108 | - "shebang-command" "^2.0.0" | |
| 3109 | - "which" "^2.0.1" | |
| 3110 | - | |
| 3111 | -"css-font-size-keywords@^1.0.0": | |
| 3112 | - "integrity" "sha512-Q+svMDbMlelgCfH/RVDKtTDaf5021O486ZThQPIpahnIjUkMUslC+WuOQSWTgGSrNCH08Y7tYNEmmy0hkfMI8Q==" | |
| 3113 | - "resolved" "https://registry.npmmirror.com/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz" | |
| 3114 | - "version" "1.0.0" | |
| 3115 | - | |
| 3116 | -"css-font-stretch-keywords@^1.0.1": | |
| 3117 | - "integrity" "sha512-KmugPO2BNqoyp9zmBIUGwt58UQSfyk1X5DbOlkb2pckDXFSAfjsD5wenb88fNrD6fvS+vu90a/tsPpb9vb0SLg==" | |
| 3118 | - "resolved" "https://registry.npmmirror.com/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz" | |
| 3119 | - "version" "1.0.1" | |
| 3120 | - | |
| 3121 | -"css-font-style-keywords@^1.0.1": | |
| 3122 | - "integrity" "sha512-0Fn0aTpcDktnR1RzaBYorIxQily85M2KXRpzmxQPgh8pxUN9Fcn00I8u9I3grNr1QXVgCl9T5Imx0ZwKU973Vg==" | |
| 3123 | - "resolved" "https://registry.npmmirror.com/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz" | |
| 3124 | - "version" "1.0.1" | |
| 3125 | - | |
| 3126 | -"css-font-weight-keywords@^1.0.0": | |
| 3127 | - "integrity" "sha512-5So8/NH+oDD+EzsnF4iaG4ZFHQ3vaViePkL1ZbZ5iC/KrsCY+WHq/lvOgrtmuOQ9pBBZ1ADGpaf+A4lj1Z9eYA==" | |
| 3128 | - "resolved" "https://registry.npmmirror.com/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz" | |
| 3129 | - "version" "1.0.0" | |
| 3130 | - | |
| 3131 | -"css-list-helpers@^2.0.0": | |
| 3132 | - "integrity" "sha512-9Bj8tZ0jWbAM3u/U6m/boAzAwLPwtjzFvwivr2piSvyVa3K3rChJzQy4RIHkNkKiZCHrEMWDJWtTR8UyVhdDnQ==" | |
| 3133 | - "resolved" "https://registry.npmmirror.com/css-list-helpers/-/css-list-helpers-2.0.0.tgz" | |
| 3134 | - "version" "2.0.0" | |
| 3135 | - | |
| 3136 | -"css-system-font-keywords@^1.0.0": | |
| 3137 | - "integrity" "sha512-1umTtVd/fXS25ftfjB71eASCrYhilmEsvDEI6wG/QplnmlfmVM5HkZ/ZX46DT5K3eblFPgLUHt5BRCb0YXkSFA==" | |
| 3138 | - "resolved" "https://registry.npmmirror.com/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz" | |
| 3139 | - "version" "1.0.0" | |
| 3140 | - | |
| 3141 | -"cssesc@^3.0.0": | |
| 3142 | - "integrity" "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" | |
| 3143 | - "resolved" "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz" | |
| 3144 | - "version" "3.0.0" | |
| 3145 | - | |
| 3146 | -"cssom@^0.4.4": | |
| 3147 | - "integrity" "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" | |
| 3148 | - "resolved" "https://registry.npmmirror.com/cssom/-/cssom-0.4.4.tgz" | |
| 3149 | - "version" "0.4.4" | |
| 3150 | - | |
| 3151 | -"cssom@~0.3.6": | |
| 3152 | - "integrity" "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" | |
| 3153 | - "resolved" "https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz" | |
| 3154 | - "version" "0.3.8" | |
| 3155 | - | |
| 3156 | -"cssstyle@^2.3.0": | |
| 3157 | - "integrity" "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" | |
| 3158 | - "resolved" "https://registry.npmmirror.com/cssstyle/-/cssstyle-2.3.0.tgz" | |
| 3159 | - "version" "2.3.0" | |
| 3160 | - dependencies: | |
| 3161 | - "cssom" "~0.3.6" | |
| 3162 | - | |
| 3163 | -"csstype@^2.6.8": | |
| 3164 | - "integrity" "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" | |
| 3165 | - "resolved" "https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz" | |
| 3166 | - "version" "2.6.21" | |
| 3167 | - | |
| 3168 | -"data-urls@^2.0.0": | |
| 3169 | - "integrity" "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==" | |
| 3170 | - "resolved" "https://registry.npmmirror.com/data-urls/-/data-urls-2.0.0.tgz" | |
| 3171 | - "version" "2.0.0" | |
| 3172 | - dependencies: | |
| 3173 | - "abab" "^2.0.3" | |
| 3174 | - "whatwg-mimetype" "^2.3.0" | |
| 3175 | - "whatwg-url" "^8.0.0" | |
| 3176 | - | |
| 3177 | -"dayjs@^1.11.10": | |
| 3178 | - "integrity" "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" | |
| 3179 | - "resolved" "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.10.tgz" | |
| 3180 | - "version" "1.11.10" | |
| 3181 | - | |
| 3182 | -"debug@^4.1.0", "debug@^4.1.1", "debug@^4.3.3", "debug@4": | |
| 3183 | - "integrity" "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" | |
| 3184 | - "resolved" "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz" | |
| 3185 | - "version" "4.3.4" | |
| 3186 | - dependencies: | |
| 3187 | - "ms" "2.1.2" | |
| 3188 | - | |
| 3189 | -"debug@2.6.9": | |
| 3190 | - "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" | |
| 3191 | - "resolved" "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz" | |
| 3192 | - "version" "2.6.9" | |
| 3193 | - dependencies: | |
| 3194 | - "ms" "2.0.0" | |
| 3195 | - | |
| 3196 | -"decimal.js@^10.2.1": | |
| 3197 | - "integrity" "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" | |
| 3198 | - "resolved" "https://registry.npmmirror.com/decimal.js/-/decimal.js-10.4.3.tgz" | |
| 3199 | - "version" "10.4.3" | |
| 3200 | - | |
| 3201 | -"dedent@^0.7.0": | |
| 3202 | - "integrity" "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" | |
| 3203 | - "resolved" "https://registry.npmmirror.com/dedent/-/dedent-0.7.0.tgz" | |
| 3204 | - "version" "0.7.0" | |
| 3205 | - | |
| 3206 | -"deepmerge@^4.2.2": | |
| 3207 | - "integrity" "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" | |
| 3208 | - "resolved" "https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz" | |
| 3209 | - "version" "4.3.1" | |
| 3210 | - | |
| 3211 | -"default-gateway@^6.0.3": | |
| 3212 | - "integrity" "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" | |
| 3213 | - "resolved" "https://registry.npmmirror.com/default-gateway/-/default-gateway-6.0.3.tgz" | |
| 3214 | - "version" "6.0.3" | |
| 3215 | - dependencies: | |
| 3216 | - "execa" "^5.0.0" | |
| 3217 | - | |
| 3218 | -"define-data-property@^1.1.1": | |
| 3219 | - "integrity" "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" | |
| 3220 | - "resolved" "https://registry.npmmirror.com/define-data-property/-/define-data-property-1.1.1.tgz" | |
| 3221 | - "version" "1.1.1" | |
| 3222 | - dependencies: | |
| 3223 | - "get-intrinsic" "^1.2.1" | |
| 3224 | - "gopd" "^1.0.1" | |
| 3225 | - "has-property-descriptors" "^1.0.0" | |
| 3226 | - | |
| 3227 | -"delayed-stream@~1.0.0": | |
| 3228 | - "integrity" "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" | |
| 3229 | - "resolved" "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz" | |
| 3230 | - "version" "1.0.0" | |
| 3231 | - | |
| 3232 | -"delegate@^3.1.2": | |
| 3233 | - "integrity" "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" | |
| 3234 | - "resolved" "https://registry.npmmirror.com/delegate/-/delegate-3.2.0.tgz" | |
| 3235 | - "version" "3.2.0" | |
| 3236 | - | |
| 3237 | -"depd@2.0.0": | |
| 3238 | - "integrity" "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" | |
| 3239 | - "resolved" "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz" | |
| 3240 | - "version" "2.0.0" | |
| 3241 | - | |
| 3242 | -"destroy@1.2.0": | |
| 3243 | - "integrity" "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" | |
| 3244 | - "resolved" "https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz" | |
| 3245 | - "version" "1.2.0" | |
| 3246 | - | |
| 3247 | -"detect-newline@^3.0.0": | |
| 3248 | - "integrity" "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" | |
| 3249 | - "resolved" "https://registry.npmmirror.com/detect-newline/-/detect-newline-3.1.0.tgz" | |
| 3250 | - "version" "3.1.0" | |
| 3251 | - | |
| 3252 | -"diff-sequences@^27.5.1": | |
| 3253 | - "integrity" "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==" | |
| 3254 | - "resolved" "https://registry.npmmirror.com/diff-sequences/-/diff-sequences-27.5.1.tgz" | |
| 3255 | - "version" "27.5.1" | |
| 3256 | - | |
| 3257 | -"dom-walk@^0.1.0": | |
| 3258 | - "integrity" "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" | |
| 3259 | - "resolved" "https://registry.npmmirror.com/dom-walk/-/dom-walk-0.1.2.tgz" | |
| 3260 | - "version" "0.1.2" | |
| 3261 | - | |
| 3262 | -"domexception@^2.0.1": | |
| 3263 | - "integrity" "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==" | |
| 3264 | - "resolved" "https://registry.npmmirror.com/domexception/-/domexception-2.0.1.tgz" | |
| 3265 | - "version" "2.0.1" | |
| 3266 | - dependencies: | |
| 3267 | - "webidl-conversions" "^5.0.0" | |
| 3268 | - | |
| 3269 | -"dunder-proto@^1.0.1": | |
| 3270 | - "integrity" "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==" | |
| 3271 | - "resolved" "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz" | |
| 3272 | - "version" "1.0.1" | |
| 3273 | - dependencies: | |
| 3274 | - "call-bind-apply-helpers" "^1.0.1" | |
| 3275 | - "es-errors" "^1.3.0" | |
| 3276 | - "gopd" "^1.2.0" | |
| 3277 | - | |
| 3278 | -"ee-first@1.1.1": | |
| 3279 | - "integrity" "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" | |
| 3280 | - "resolved" "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz" | |
| 3281 | - "version" "1.1.1" | |
| 3282 | - | |
| 3283 | -"electron-to-chromium@^1.4.535": | |
| 3284 | - "integrity" "sha512-V0ZhSu1BQZKfG0yNEL6Dadzik8E1vAzfpVOapdSiT9F6yapEJ3Bk+4tZ4SMPdWiUchCgnM/ByYtBzp5ntzDMIA==" | |
| 3285 | - "resolved" "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.578.tgz" | |
| 3286 | - "version" "1.4.578" | |
| 3287 | - | |
| 3288 | -"emittery@^0.8.1": | |
| 3289 | - "integrity" "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==" | |
| 3290 | - "resolved" "https://registry.npmmirror.com/emittery/-/emittery-0.8.1.tgz" | |
| 3291 | - "version" "0.8.1" | |
| 3292 | - | |
| 3293 | -"emoji-regex@^8.0.0": | |
| 3294 | - "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" | |
| 3295 | - "resolved" "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz" | |
| 3296 | - "version" "8.0.0" | |
| 3297 | - | |
| 3298 | -"encodeurl@~1.0.2": | |
| 3299 | - "integrity" "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" | |
| 3300 | - "resolved" "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz" | |
| 3301 | - "version" "1.0.2" | |
| 3302 | - | |
| 3303 | -"enhanced-resolve@^5.15.0": | |
| 3304 | - "integrity" "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" | |
| 3305 | - "resolved" "https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz" | |
| 3306 | - "version" "5.15.0" | |
| 3307 | - dependencies: | |
| 3308 | - "graceful-fs" "^4.2.4" | |
| 3309 | - "tapable" "^2.2.0" | |
| 3310 | - | |
| 3311 | -"error-ex@^1.3.1": | |
| 3312 | - "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" | |
| 3313 | - "resolved" "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz" | |
| 3314 | - "version" "1.3.2" | |
| 3315 | - dependencies: | |
| 3316 | - "is-arrayish" "^0.2.1" | |
| 3317 | - | |
| 3318 | -"es-define-property@^1.0.1": | |
| 3319 | - "integrity" "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" | |
| 3320 | - "resolved" "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz" | |
| 3321 | - "version" "1.0.1" | |
| 3322 | - | |
| 3323 | -"es-errors@^1.3.0": | |
| 3324 | - "integrity" "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" | |
| 3325 | - "resolved" "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz" | |
| 3326 | - "version" "1.3.0" | |
| 3327 | - | |
| 3328 | -"es-module-lexer@^1.2.1": | |
| 3329 | - "integrity" "sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==" | |
| 3330 | - "resolved" "https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz" | |
| 3331 | - "version" "1.3.1" | |
| 3332 | - | |
| 3333 | -"es-object-atoms@^1.0.0", "es-object-atoms@^1.1.1": | |
| 3334 | - "integrity" "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==" | |
| 3335 | - "resolved" "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz" | |
| 3336 | - "version" "1.1.1" | |
| 3337 | - dependencies: | |
| 3338 | - "es-errors" "^1.3.0" | |
| 3339 | - | |
| 3340 | -"es-set-tostringtag@^2.1.0": | |
| 3341 | - "integrity" "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==" | |
| 3342 | - "resolved" "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz" | |
| 3343 | - "version" "2.1.0" | |
| 3344 | - dependencies: | |
| 3345 | - "es-errors" "^1.3.0" | |
| 3346 | - "get-intrinsic" "^1.2.6" | |
| 3347 | - "has-tostringtag" "^1.0.2" | |
| 3348 | - "hasown" "^2.0.2" | |
| 3349 | - | |
| 3350 | -"esbuild@^0.16.3": | |
| 3351 | - "integrity" "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==" | |
| 3352 | - "resolved" "https://registry.npmmirror.com/esbuild/-/esbuild-0.16.17.tgz" | |
| 3353 | - "version" "0.16.17" | |
| 2960 | + fsevents "~2.3.2" | |
| 2961 | + | |
| 2962 | +chrome-trace-event@^1.0.2: | |
| 2963 | + version "1.0.3" | |
| 2964 | + resolved "https://registry.npmmirror.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" | |
| 2965 | + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== | |
| 2966 | + | |
| 2967 | +ci-info@^3.2.0: | |
| 2968 | + version "3.9.0" | |
| 2969 | + resolved "https://registry.npmmirror.com/ci-info/-/ci-info-3.9.0.tgz" | |
| 2970 | + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== | |
| 2971 | + | |
| 2972 | +cjs-module-lexer@^1.0.0: | |
| 2973 | + version "1.2.3" | |
| 2974 | + resolved "https://registry.npmmirror.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz" | |
| 2975 | + integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== | |
| 2976 | + | |
| 2977 | +clipboard@^2.0.11: | |
| 2978 | + version "2.0.11" | |
| 2979 | + resolved "https://registry.npmmirror.com/clipboard/-/clipboard-2.0.11.tgz" | |
| 2980 | + integrity sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw== | |
| 2981 | + dependencies: | |
| 2982 | + good-listener "^1.2.2" | |
| 2983 | + select "^1.1.2" | |
| 2984 | + tiny-emitter "^2.0.0" | |
| 2985 | + | |
| 2986 | +cliui@^7.0.2: | |
| 2987 | + version "7.0.4" | |
| 2988 | + resolved "https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz" | |
| 2989 | + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== | |
| 2990 | + dependencies: | |
| 2991 | + string-width "^4.2.0" | |
| 2992 | + strip-ansi "^6.0.0" | |
| 2993 | + wrap-ansi "^7.0.0" | |
| 2994 | + | |
| 2995 | +co@^4.6.0: | |
| 2996 | + version "4.6.0" | |
| 2997 | + resolved "https://registry.npmmirror.com/co/-/co-4.6.0.tgz" | |
| 2998 | + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== | |
| 2999 | + | |
| 3000 | +collect-v8-coverage@^1.0.0: | |
| 3001 | + version "1.0.2" | |
| 3002 | + resolved "https://registry.npmmirror.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz" | |
| 3003 | + integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== | |
| 3004 | + | |
| 3005 | +color-convert@^1.9.0: | |
| 3006 | + version "1.9.3" | |
| 3007 | + resolved "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz" | |
| 3008 | + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== | |
| 3009 | + dependencies: | |
| 3010 | + color-name "1.1.3" | |
| 3011 | + | |
| 3012 | +color-convert@^2.0.1: | |
| 3013 | + version "2.0.1" | |
| 3014 | + resolved "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz" | |
| 3015 | + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== | |
| 3016 | + dependencies: | |
| 3017 | + color-name "~1.1.4" | |
| 3018 | + | |
| 3019 | +color-name@~1.1.4: | |
| 3020 | + version "1.1.4" | |
| 3021 | + resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz" | |
| 3022 | + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== | |
| 3023 | + | |
| 3024 | +color-name@1.1.3: | |
| 3025 | + version "1.1.3" | |
| 3026 | + resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz" | |
| 3027 | + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== | |
| 3028 | + | |
| 3029 | +combined-stream@^1.0.8: | |
| 3030 | + version "1.0.8" | |
| 3031 | + resolved "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz" | |
| 3032 | + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== | |
| 3033 | + dependencies: | |
| 3034 | + delayed-stream "~1.0.0" | |
| 3035 | + | |
| 3036 | +commander@^2.20.0: | |
| 3037 | + version "2.20.3" | |
| 3038 | + resolved "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz" | |
| 3039 | + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== | |
| 3040 | + | |
| 3041 | +compare-versions@^3.6.0: | |
| 3042 | + version "3.6.0" | |
| 3043 | + resolved "https://registry.npmmirror.com/compare-versions/-/compare-versions-3.6.0.tgz" | |
| 3044 | + integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== | |
| 3045 | + | |
| 3046 | +concat-map@0.0.1: | |
| 3047 | + version "0.0.1" | |
| 3048 | + resolved "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz" | |
| 3049 | + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== | |
| 3050 | + | |
| 3051 | +content-disposition@0.5.4: | |
| 3052 | + version "0.5.4" | |
| 3053 | + resolved "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz" | |
| 3054 | + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== | |
| 3055 | + dependencies: | |
| 3056 | + safe-buffer "5.2.1" | |
| 3057 | + | |
| 3058 | +content-type@~1.0.4: | |
| 3059 | + version "1.0.5" | |
| 3060 | + resolved "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz" | |
| 3061 | + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== | |
| 3062 | + | |
| 3063 | +convert-source-map@^1.4.0: | |
| 3064 | + version "1.9.0" | |
| 3065 | + resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz" | |
| 3066 | + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== | |
| 3067 | + | |
| 3068 | +convert-source-map@^1.6.0: | |
| 3069 | + version "1.9.0" | |
| 3070 | + resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz" | |
| 3071 | + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== | |
| 3072 | + | |
| 3073 | +convert-source-map@^2.0.0: | |
| 3074 | + version "2.0.0" | |
| 3075 | + resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz" | |
| 3076 | + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== | |
| 3077 | + | |
| 3078 | +cookie-signature@1.0.6: | |
| 3079 | + version "1.0.6" | |
| 3080 | + resolved "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz" | |
| 3081 | + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== | |
| 3082 | + | |
| 3083 | +cookie@0.5.0: | |
| 3084 | + version "0.5.0" | |
| 3085 | + resolved "https://registry.npmmirror.com/cookie/-/cookie-0.5.0.tgz" | |
| 3086 | + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== | |
| 3087 | + | |
| 3088 | +copy-text-to-clipboard@^3.0.1: | |
| 3089 | + version "3.2.0" | |
| 3090 | + resolved "https://registry.npmmirror.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz" | |
| 3091 | + integrity sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q== | |
| 3092 | + | |
| 3093 | +core-js-compat@^3.31.0, core-js-compat@^3.33.1: | |
| 3094 | + version "3.33.2" | |
| 3095 | + resolved "https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.33.2.tgz" | |
| 3096 | + integrity sha512-axfo+wxFVxnqf8RvxTzoAlzW4gRoacrHeoFlc9n0x50+7BEyZL/Rt3hicaED1/CEd7I6tPCPVUYcJwCMO5XUYw== | |
| 3097 | + dependencies: | |
| 3098 | + browserslist "^4.22.1" | |
| 3099 | + | |
| 3100 | +core-js@^3, core-js@^3.11.0, core-js@^3.31.1, core-js@^3.4.1: | |
| 3101 | + version "3.33.2" | |
| 3102 | + resolved "https://registry.npmmirror.com/core-js/-/core-js-3.33.2.tgz" | |
| 3103 | + integrity sha512-XeBzWI6QL3nJQiHmdzbAOiMYqjrb7hwU7A39Qhvd/POSa/t9E1AeZyEZx3fNvp/vtM8zXwhoL0FsiS0hD0pruQ== | |
| 3104 | + | |
| 3105 | +cross-env@^7.0.3: | |
| 3106 | + version "7.0.3" | |
| 3107 | + resolved "https://registry.npmmirror.com/cross-env/-/cross-env-7.0.3.tgz" | |
| 3108 | + integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw== | |
| 3109 | + dependencies: | |
| 3110 | + cross-spawn "^7.0.1" | |
| 3111 | + | |
| 3112 | +cross-spawn@^7.0.1, cross-spawn@^7.0.3: | |
| 3113 | + version "7.0.3" | |
| 3114 | + resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz" | |
| 3115 | + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== | |
| 3116 | + dependencies: | |
| 3117 | + path-key "^3.1.0" | |
| 3118 | + shebang-command "^2.0.0" | |
| 3119 | + which "^2.0.1" | |
| 3120 | + | |
| 3121 | +css-font-size-keywords@^1.0.0: | |
| 3122 | + version "1.0.0" | |
| 3123 | + resolved "https://registry.npmmirror.com/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz" | |
| 3124 | + integrity sha512-Q+svMDbMlelgCfH/RVDKtTDaf5021O486ZThQPIpahnIjUkMUslC+WuOQSWTgGSrNCH08Y7tYNEmmy0hkfMI8Q== | |
| 3125 | + | |
| 3126 | +css-font-stretch-keywords@^1.0.1: | |
| 3127 | + version "1.0.1" | |
| 3128 | + resolved "https://registry.npmmirror.com/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz" | |
| 3129 | + integrity sha512-KmugPO2BNqoyp9zmBIUGwt58UQSfyk1X5DbOlkb2pckDXFSAfjsD5wenb88fNrD6fvS+vu90a/tsPpb9vb0SLg== | |
| 3130 | + | |
| 3131 | +css-font-style-keywords@^1.0.1: | |
| 3132 | + version "1.0.1" | |
| 3133 | + resolved "https://registry.npmmirror.com/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz" | |
| 3134 | + integrity sha512-0Fn0aTpcDktnR1RzaBYorIxQily85M2KXRpzmxQPgh8pxUN9Fcn00I8u9I3grNr1QXVgCl9T5Imx0ZwKU973Vg== | |
| 3135 | + | |
| 3136 | +css-font-weight-keywords@^1.0.0: | |
| 3137 | + version "1.0.0" | |
| 3138 | + resolved "https://registry.npmmirror.com/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz" | |
| 3139 | + integrity sha512-5So8/NH+oDD+EzsnF4iaG4ZFHQ3vaViePkL1ZbZ5iC/KrsCY+WHq/lvOgrtmuOQ9pBBZ1ADGpaf+A4lj1Z9eYA== | |
| 3140 | + | |
| 3141 | +css-list-helpers@^2.0.0: | |
| 3142 | + version "2.0.0" | |
| 3143 | + resolved "https://registry.npmmirror.com/css-list-helpers/-/css-list-helpers-2.0.0.tgz" | |
| 3144 | + integrity sha512-9Bj8tZ0jWbAM3u/U6m/boAzAwLPwtjzFvwivr2piSvyVa3K3rChJzQy4RIHkNkKiZCHrEMWDJWtTR8UyVhdDnQ== | |
| 3145 | + | |
| 3146 | +css-system-font-keywords@^1.0.0: | |
| 3147 | + version "1.0.0" | |
| 3148 | + resolved "https://registry.npmmirror.com/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz" | |
| 3149 | + integrity sha512-1umTtVd/fXS25ftfjB71eASCrYhilmEsvDEI6wG/QplnmlfmVM5HkZ/ZX46DT5K3eblFPgLUHt5BRCb0YXkSFA== | |
| 3150 | + | |
| 3151 | +cssesc@^3.0.0: | |
| 3152 | + version "3.0.0" | |
| 3153 | + resolved "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz" | |
| 3154 | + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== | |
| 3155 | + | |
| 3156 | +cssom@^0.4.4: | |
| 3157 | + version "0.4.4" | |
| 3158 | + resolved "https://registry.npmmirror.com/cssom/-/cssom-0.4.4.tgz" | |
| 3159 | + integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== | |
| 3160 | + | |
| 3161 | +cssom@~0.3.6: | |
| 3162 | + version "0.3.8" | |
| 3163 | + resolved "https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz" | |
| 3164 | + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== | |
| 3165 | + | |
| 3166 | +cssstyle@^2.3.0: | |
| 3167 | + version "2.3.0" | |
| 3168 | + resolved "https://registry.npmmirror.com/cssstyle/-/cssstyle-2.3.0.tgz" | |
| 3169 | + integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== | |
| 3170 | + dependencies: | |
| 3171 | + cssom "~0.3.6" | |
| 3172 | + | |
| 3173 | +csstype@^2.6.8: | |
| 3174 | + version "2.6.21" | |
| 3175 | + resolved "https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz" | |
| 3176 | + integrity sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w== | |
| 3177 | + | |
| 3178 | +data-urls@^2.0.0: | |
| 3179 | + version "2.0.0" | |
| 3180 | + resolved "https://registry.npmmirror.com/data-urls/-/data-urls-2.0.0.tgz" | |
| 3181 | + integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== | |
| 3182 | + dependencies: | |
| 3183 | + abab "^2.0.3" | |
| 3184 | + whatwg-mimetype "^2.3.0" | |
| 3185 | + whatwg-url "^8.0.0" | |
| 3186 | + | |
| 3187 | +dayjs@^1.11.10: | |
| 3188 | + version "1.11.10" | |
| 3189 | + resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.10.tgz" | |
| 3190 | + integrity sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ== | |
| 3191 | + | |
| 3192 | +debug@^4.1.0, debug@^4.1.1, debug@^4.3.3, debug@4: | |
| 3193 | + version "4.3.4" | |
| 3194 | + resolved "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz" | |
| 3195 | + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== | |
| 3196 | + dependencies: | |
| 3197 | + ms "2.1.2" | |
| 3198 | + | |
| 3199 | +debug@2.6.9: | |
| 3200 | + version "2.6.9" | |
| 3201 | + resolved "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz" | |
| 3202 | + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== | |
| 3203 | + dependencies: | |
| 3204 | + ms "2.0.0" | |
| 3205 | + | |
| 3206 | +decimal.js@^10.2.1: | |
| 3207 | + version "10.4.3" | |
| 3208 | + resolved "https://registry.npmmirror.com/decimal.js/-/decimal.js-10.4.3.tgz" | |
| 3209 | + integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== | |
| 3210 | + | |
| 3211 | +dedent@^0.7.0: | |
| 3212 | + version "0.7.0" | |
| 3213 | + resolved "https://registry.npmmirror.com/dedent/-/dedent-0.7.0.tgz" | |
| 3214 | + integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== | |
| 3215 | + | |
| 3216 | +deepmerge@^4.2.2: | |
| 3217 | + version "4.3.1" | |
| 3218 | + resolved "https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz" | |
| 3219 | + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== | |
| 3220 | + | |
| 3221 | +default-gateway@^6.0.3: | |
| 3222 | + version "6.0.3" | |
| 3223 | + resolved "https://registry.npmmirror.com/default-gateway/-/default-gateway-6.0.3.tgz" | |
| 3224 | + integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== | |
| 3225 | + dependencies: | |
| 3226 | + execa "^5.0.0" | |
| 3227 | + | |
| 3228 | +define-data-property@^1.1.1: | |
| 3229 | + version "1.1.1" | |
| 3230 | + resolved "https://registry.npmmirror.com/define-data-property/-/define-data-property-1.1.1.tgz" | |
| 3231 | + integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ== | |
| 3232 | + dependencies: | |
| 3233 | + get-intrinsic "^1.2.1" | |
| 3234 | + gopd "^1.0.1" | |
| 3235 | + has-property-descriptors "^1.0.0" | |
| 3236 | + | |
| 3237 | +delayed-stream@~1.0.0: | |
| 3238 | + version "1.0.0" | |
| 3239 | + resolved "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz" | |
| 3240 | + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== | |
| 3241 | + | |
| 3242 | +delegate@^3.1.2: | |
| 3243 | + version "3.2.0" | |
| 3244 | + resolved "https://registry.npmmirror.com/delegate/-/delegate-3.2.0.tgz" | |
| 3245 | + integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== | |
| 3246 | + | |
| 3247 | +depd@2.0.0: | |
| 3248 | + version "2.0.0" | |
| 3249 | + resolved "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz" | |
| 3250 | + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== | |
| 3251 | + | |
| 3252 | +destroy@1.2.0: | |
| 3253 | + version "1.2.0" | |
| 3254 | + resolved "https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz" | |
| 3255 | + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== | |
| 3256 | + | |
| 3257 | +detect-newline@^3.0.0: | |
| 3258 | + version "3.1.0" | |
| 3259 | + resolved "https://registry.npmmirror.com/detect-newline/-/detect-newline-3.1.0.tgz" | |
| 3260 | + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== | |
| 3261 | + | |
| 3262 | +diff-sequences@^27.5.1: | |
| 3263 | + version "27.5.1" | |
| 3264 | + resolved "https://registry.npmmirror.com/diff-sequences/-/diff-sequences-27.5.1.tgz" | |
| 3265 | + integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== | |
| 3266 | + | |
| 3267 | +dom-walk@^0.1.0: | |
| 3268 | + version "0.1.2" | |
| 3269 | + resolved "https://registry.npmmirror.com/dom-walk/-/dom-walk-0.1.2.tgz" | |
| 3270 | + integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== | |
| 3271 | + | |
| 3272 | +domexception@^2.0.1: | |
| 3273 | + version "2.0.1" | |
| 3274 | + resolved "https://registry.npmmirror.com/domexception/-/domexception-2.0.1.tgz" | |
| 3275 | + integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== | |
| 3276 | + dependencies: | |
| 3277 | + webidl-conversions "^5.0.0" | |
| 3278 | + | |
| 3279 | +dunder-proto@^1.0.1: | |
| 3280 | + version "1.0.1" | |
| 3281 | + resolved "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz" | |
| 3282 | + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== | |
| 3283 | + dependencies: | |
| 3284 | + call-bind-apply-helpers "^1.0.1" | |
| 3285 | + es-errors "^1.3.0" | |
| 3286 | + gopd "^1.2.0" | |
| 3287 | + | |
| 3288 | +ee-first@1.1.1: | |
| 3289 | + version "1.1.1" | |
| 3290 | + resolved "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz" | |
| 3291 | + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== | |
| 3292 | + | |
| 3293 | +electron-to-chromium@^1.4.535: | |
| 3294 | + version "1.4.578" | |
| 3295 | + resolved "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.578.tgz" | |
| 3296 | + integrity sha512-V0ZhSu1BQZKfG0yNEL6Dadzik8E1vAzfpVOapdSiT9F6yapEJ3Bk+4tZ4SMPdWiUchCgnM/ByYtBzp5ntzDMIA== | |
| 3297 | + | |
| 3298 | +emittery@^0.8.1: | |
| 3299 | + version "0.8.1" | |
| 3300 | + resolved "https://registry.npmmirror.com/emittery/-/emittery-0.8.1.tgz" | |
| 3301 | + integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== | |
| 3302 | + | |
| 3303 | +emoji-regex@^8.0.0: | |
| 3304 | + version "8.0.0" | |
| 3305 | + resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz" | |
| 3306 | + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== | |
| 3307 | + | |
| 3308 | +encodeurl@~1.0.2: | |
| 3309 | + version "1.0.2" | |
| 3310 | + resolved "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz" | |
| 3311 | + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== | |
| 3312 | + | |
| 3313 | +enhanced-resolve@^5.15.0: | |
| 3314 | + version "5.15.0" | |
| 3315 | + resolved "https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz" | |
| 3316 | + integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== | |
| 3317 | + dependencies: | |
| 3318 | + graceful-fs "^4.2.4" | |
| 3319 | + tapable "^2.2.0" | |
| 3320 | + | |
| 3321 | +error-ex@^1.3.1: | |
| 3322 | + version "1.3.2" | |
| 3323 | + resolved "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz" | |
| 3324 | + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== | |
| 3325 | + dependencies: | |
| 3326 | + is-arrayish "^0.2.1" | |
| 3327 | + | |
| 3328 | +es-define-property@^1.0.1: | |
| 3329 | + version "1.0.1" | |
| 3330 | + resolved "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz" | |
| 3331 | + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== | |
| 3332 | + | |
| 3333 | +es-errors@^1.3.0: | |
| 3334 | + version "1.3.0" | |
| 3335 | + resolved "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz" | |
| 3336 | + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== | |
| 3337 | + | |
| 3338 | +es-module-lexer@^1.2.1: | |
| 3339 | + version "1.3.1" | |
| 3340 | + resolved "https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz" | |
| 3341 | + integrity sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q== | |
| 3342 | + | |
| 3343 | +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: | |
| 3344 | + version "1.1.1" | |
| 3345 | + resolved "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz" | |
| 3346 | + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== | |
| 3347 | + dependencies: | |
| 3348 | + es-errors "^1.3.0" | |
| 3349 | + | |
| 3350 | +es-set-tostringtag@^2.1.0: | |
| 3351 | + version "2.1.0" | |
| 3352 | + resolved "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz" | |
| 3353 | + integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== | |
| 3354 | + dependencies: | |
| 3355 | + es-errors "^1.3.0" | |
| 3356 | + get-intrinsic "^1.2.6" | |
| 3357 | + has-tostringtag "^1.0.2" | |
| 3358 | + hasown "^2.0.2" | |
| 3359 | + | |
| 3360 | +esbuild@^0.16.3: | |
| 3361 | + version "0.16.17" | |
| 3362 | + resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.16.17.tgz" | |
| 3363 | + integrity sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg== | |
| 3354 | 3364 | optionalDependencies: |
| 3355 | 3365 | "@esbuild/android-arm" "0.16.17" |
| 3356 | 3366 | "@esbuild/android-arm64" "0.16.17" |
| ... | ... | @@ -3375,10 +3385,10 @@ |
| 3375 | 3385 | "@esbuild/win32-ia32" "0.16.17" |
| 3376 | 3386 | "@esbuild/win32-x64" "0.16.17" |
| 3377 | 3387 | |
| 3378 | -"esbuild@^0.17.5": | |
| 3379 | - "integrity" "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==" | |
| 3380 | - "resolved" "https://registry.npmmirror.com/esbuild/-/esbuild-0.17.19.tgz" | |
| 3381 | - "version" "0.17.19" | |
| 3388 | +esbuild@^0.17.5: | |
| 3389 | + version "0.17.19" | |
| 3390 | + resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.17.19.tgz" | |
| 3391 | + integrity sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw== | |
| 3382 | 3392 | optionalDependencies: |
| 3383 | 3393 | "@esbuild/android-arm" "0.17.19" |
| 3384 | 3394 | "@esbuild/android-arm64" "0.17.19" |
| ... | ... | @@ -3403,925 +3413,920 @@ |
| 3403 | 3413 | "@esbuild/win32-ia32" "0.17.19" |
| 3404 | 3414 | "@esbuild/win32-x64" "0.17.19" |
| 3405 | 3415 | |
| 3406 | -"escalade@^3.1.1": | |
| 3407 | - "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" | |
| 3408 | - "resolved" "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz" | |
| 3409 | - "version" "3.1.1" | |
| 3410 | - | |
| 3411 | -"escape-html@~1.0.3": | |
| 3412 | - "integrity" "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" | |
| 3413 | - "resolved" "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz" | |
| 3414 | - "version" "1.0.3" | |
| 3415 | - | |
| 3416 | -"escape-string-regexp@^1.0.5": | |
| 3417 | - "integrity" "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" | |
| 3418 | - "resolved" "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" | |
| 3419 | - "version" "1.0.5" | |
| 3420 | - | |
| 3421 | -"escape-string-regexp@^2.0.0": | |
| 3422 | - "integrity" "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" | |
| 3423 | - "resolved" "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" | |
| 3424 | - "version" "2.0.0" | |
| 3425 | - | |
| 3426 | -"escodegen@^2.0.0": | |
| 3427 | - "integrity" "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" | |
| 3428 | - "resolved" "https://registry.npmmirror.com/escodegen/-/escodegen-2.1.0.tgz" | |
| 3429 | - "version" "2.1.0" | |
| 3430 | - dependencies: | |
| 3431 | - "esprima" "^4.0.1" | |
| 3432 | - "estraverse" "^5.2.0" | |
| 3433 | - "esutils" "^2.0.2" | |
| 3416 | +escalade@^3.1.1: | |
| 3417 | + version "3.1.1" | |
| 3418 | + resolved "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz" | |
| 3419 | + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== | |
| 3420 | + | |
| 3421 | +escape-html@~1.0.3: | |
| 3422 | + version "1.0.3" | |
| 3423 | + resolved "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz" | |
| 3424 | + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== | |
| 3425 | + | |
| 3426 | +escape-string-regexp@^1.0.5: | |
| 3427 | + version "1.0.5" | |
| 3428 | + resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" | |
| 3429 | + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== | |
| 3430 | + | |
| 3431 | +escape-string-regexp@^2.0.0: | |
| 3432 | + version "2.0.0" | |
| 3433 | + resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" | |
| 3434 | + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== | |
| 3435 | + | |
| 3436 | +escodegen@^2.0.0: | |
| 3437 | + version "2.1.0" | |
| 3438 | + resolved "https://registry.npmmirror.com/escodegen/-/escodegen-2.1.0.tgz" | |
| 3439 | + integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== | |
| 3440 | + dependencies: | |
| 3441 | + esprima "^4.0.1" | |
| 3442 | + estraverse "^5.2.0" | |
| 3443 | + esutils "^2.0.2" | |
| 3434 | 3444 | optionalDependencies: |
| 3435 | - "source-map" "~0.6.1" | |
| 3436 | - | |
| 3437 | -"eslint-scope@5.1.1": | |
| 3438 | - "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" | |
| 3439 | - "resolved" "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz" | |
| 3440 | - "version" "5.1.1" | |
| 3441 | - dependencies: | |
| 3442 | - "esrecurse" "^4.3.0" | |
| 3443 | - "estraverse" "^4.1.1" | |
| 3444 | - | |
| 3445 | -"esprima@^4.0.0", "esprima@^4.0.1": | |
| 3446 | - "integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" | |
| 3447 | - "resolved" "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz" | |
| 3448 | - "version" "4.0.1" | |
| 3449 | - | |
| 3450 | -"esrecurse@^4.3.0": | |
| 3451 | - "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" | |
| 3452 | - "resolved" "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz" | |
| 3453 | - "version" "4.3.0" | |
| 3454 | - dependencies: | |
| 3455 | - "estraverse" "^5.2.0" | |
| 3456 | - | |
| 3457 | -"estraverse@^4.1.1": | |
| 3458 | - "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" | |
| 3459 | - "resolved" "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz" | |
| 3460 | - "version" "4.3.0" | |
| 3461 | - | |
| 3462 | -"estraverse@^5.2.0": | |
| 3463 | - "integrity" "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" | |
| 3464 | - "resolved" "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz" | |
| 3465 | - "version" "5.3.0" | |
| 3466 | - | |
| 3467 | -"estree-walker@^2.0.1", "estree-walker@^2.0.2": | |
| 3468 | - "integrity" "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" | |
| 3469 | - "resolved" "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz" | |
| 3470 | - "version" "2.0.2" | |
| 3471 | - | |
| 3472 | -"esutils@^2.0.2": | |
| 3473 | - "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" | |
| 3474 | - "resolved" "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz" | |
| 3475 | - "version" "2.0.3" | |
| 3476 | - | |
| 3477 | -"etag@~1.8.1": | |
| 3478 | - "integrity" "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" | |
| 3479 | - "resolved" "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz" | |
| 3480 | - "version" "1.8.1" | |
| 3481 | - | |
| 3482 | -"events@^3.2.0": | |
| 3483 | - "integrity" "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" | |
| 3484 | - "resolved" "https://registry.npmmirror.com/events/-/events-3.3.0.tgz" | |
| 3485 | - "version" "3.3.0" | |
| 3486 | - | |
| 3487 | -"execa@^5.0.0": | |
| 3488 | - "integrity" "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" | |
| 3489 | - "resolved" "https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz" | |
| 3490 | - "version" "5.1.1" | |
| 3491 | - dependencies: | |
| 3492 | - "cross-spawn" "^7.0.3" | |
| 3493 | - "get-stream" "^6.0.0" | |
| 3494 | - "human-signals" "^2.1.0" | |
| 3495 | - "is-stream" "^2.0.0" | |
| 3496 | - "merge-stream" "^2.0.0" | |
| 3497 | - "npm-run-path" "^4.0.1" | |
| 3498 | - "onetime" "^5.1.2" | |
| 3499 | - "signal-exit" "^3.0.3" | |
| 3500 | - "strip-final-newline" "^2.0.0" | |
| 3501 | - | |
| 3502 | -"exif-parser@^0.1.12": | |
| 3503 | - "integrity" "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==" | |
| 3504 | - "resolved" "https://registry.npmmirror.com/exif-parser/-/exif-parser-0.1.12.tgz" | |
| 3505 | - "version" "0.1.12" | |
| 3506 | - | |
| 3507 | -"exit@^0.1.2": | |
| 3508 | - "integrity" "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" | |
| 3509 | - "resolved" "https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz" | |
| 3510 | - "version" "0.1.2" | |
| 3511 | - | |
| 3512 | -"expect@^27.5.1": | |
| 3513 | - "integrity" "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==" | |
| 3514 | - "resolved" "https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz" | |
| 3515 | - "version" "27.5.1" | |
| 3445 | + source-map "~0.6.1" | |
| 3446 | + | |
| 3447 | +eslint-scope@5.1.1: | |
| 3448 | + version "5.1.1" | |
| 3449 | + resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz" | |
| 3450 | + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== | |
| 3451 | + dependencies: | |
| 3452 | + esrecurse "^4.3.0" | |
| 3453 | + estraverse "^4.1.1" | |
| 3454 | + | |
| 3455 | +esprima@^4.0.0, esprima@^4.0.1: | |
| 3456 | + version "4.0.1" | |
| 3457 | + resolved "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz" | |
| 3458 | + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== | |
| 3459 | + | |
| 3460 | +esrecurse@^4.3.0: | |
| 3461 | + version "4.3.0" | |
| 3462 | + resolved "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz" | |
| 3463 | + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== | |
| 3464 | + dependencies: | |
| 3465 | + estraverse "^5.2.0" | |
| 3466 | + | |
| 3467 | +estraverse@^4.1.1: | |
| 3468 | + version "4.3.0" | |
| 3469 | + resolved "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz" | |
| 3470 | + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== | |
| 3471 | + | |
| 3472 | +estraverse@^5.2.0: | |
| 3473 | + version "5.3.0" | |
| 3474 | + resolved "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz" | |
| 3475 | + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== | |
| 3476 | + | |
| 3477 | +estree-walker@^2.0.1, estree-walker@^2.0.2: | |
| 3478 | + version "2.0.2" | |
| 3479 | + resolved "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz" | |
| 3480 | + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== | |
| 3481 | + | |
| 3482 | +esutils@^2.0.2: | |
| 3483 | + version "2.0.3" | |
| 3484 | + resolved "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz" | |
| 3485 | + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== | |
| 3486 | + | |
| 3487 | +etag@~1.8.1: | |
| 3488 | + version "1.8.1" | |
| 3489 | + resolved "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz" | |
| 3490 | + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== | |
| 3491 | + | |
| 3492 | +events@^3.2.0: | |
| 3493 | + version "3.3.0" | |
| 3494 | + resolved "https://registry.npmmirror.com/events/-/events-3.3.0.tgz" | |
| 3495 | + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== | |
| 3496 | + | |
| 3497 | +execa@^5.0.0: | |
| 3498 | + version "5.1.1" | |
| 3499 | + resolved "https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz" | |
| 3500 | + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== | |
| 3501 | + dependencies: | |
| 3502 | + cross-spawn "^7.0.3" | |
| 3503 | + get-stream "^6.0.0" | |
| 3504 | + human-signals "^2.1.0" | |
| 3505 | + is-stream "^2.0.0" | |
| 3506 | + merge-stream "^2.0.0" | |
| 3507 | + npm-run-path "^4.0.1" | |
| 3508 | + onetime "^5.1.2" | |
| 3509 | + signal-exit "^3.0.3" | |
| 3510 | + strip-final-newline "^2.0.0" | |
| 3511 | + | |
| 3512 | +exif-parser@^0.1.12: | |
| 3513 | + version "0.1.12" | |
| 3514 | + resolved "https://registry.npmmirror.com/exif-parser/-/exif-parser-0.1.12.tgz" | |
| 3515 | + integrity sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw== | |
| 3516 | + | |
| 3517 | +exit@^0.1.2: | |
| 3518 | + version "0.1.2" | |
| 3519 | + resolved "https://registry.npmmirror.com/exit/-/exit-0.1.2.tgz" | |
| 3520 | + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== | |
| 3521 | + | |
| 3522 | +expect@^27.5.1: | |
| 3523 | + version "27.5.1" | |
| 3524 | + resolved "https://registry.npmmirror.com/expect/-/expect-27.5.1.tgz" | |
| 3525 | + integrity sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw== | |
| 3516 | 3526 | dependencies: |
| 3517 | 3527 | "@jest/types" "^27.5.1" |
| 3518 | - "jest-get-type" "^27.5.1" | |
| 3519 | - "jest-matcher-utils" "^27.5.1" | |
| 3520 | - "jest-message-util" "^27.5.1" | |
| 3521 | - | |
| 3522 | -"express@^4.17.1": | |
| 3523 | - "integrity" "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" | |
| 3524 | - "resolved" "https://registry.npmmirror.com/express/-/express-4.18.2.tgz" | |
| 3525 | - "version" "4.18.2" | |
| 3526 | - dependencies: | |
| 3527 | - "accepts" "~1.3.8" | |
| 3528 | - "array-flatten" "1.1.1" | |
| 3529 | - "body-parser" "1.20.1" | |
| 3530 | - "content-disposition" "0.5.4" | |
| 3531 | - "content-type" "~1.0.4" | |
| 3532 | - "cookie" "0.5.0" | |
| 3533 | - "cookie-signature" "1.0.6" | |
| 3534 | - "debug" "2.6.9" | |
| 3535 | - "depd" "2.0.0" | |
| 3536 | - "encodeurl" "~1.0.2" | |
| 3537 | - "escape-html" "~1.0.3" | |
| 3538 | - "etag" "~1.8.1" | |
| 3539 | - "finalhandler" "1.2.0" | |
| 3540 | - "fresh" "0.5.2" | |
| 3541 | - "http-errors" "2.0.0" | |
| 3542 | - "merge-descriptors" "1.0.1" | |
| 3543 | - "methods" "~1.1.2" | |
| 3544 | - "on-finished" "2.4.1" | |
| 3545 | - "parseurl" "~1.3.3" | |
| 3546 | - "path-to-regexp" "0.1.7" | |
| 3547 | - "proxy-addr" "~2.0.7" | |
| 3548 | - "qs" "6.11.0" | |
| 3549 | - "range-parser" "~1.2.1" | |
| 3550 | - "safe-buffer" "5.2.1" | |
| 3551 | - "send" "0.18.0" | |
| 3552 | - "serve-static" "1.15.0" | |
| 3553 | - "setprototypeof" "1.2.0" | |
| 3554 | - "statuses" "2.0.1" | |
| 3555 | - "type-is" "~1.6.18" | |
| 3556 | - "utils-merge" "1.0.1" | |
| 3557 | - "vary" "~1.1.2" | |
| 3558 | - | |
| 3559 | -"fast-deep-equal@^3.1.1": | |
| 3560 | - "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" | |
| 3561 | - "resolved" "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" | |
| 3562 | - "version" "3.1.3" | |
| 3563 | - | |
| 3564 | -"fast-glob@^3.2.11": | |
| 3565 | - "integrity" "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" | |
| 3566 | - "resolved" "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.2.tgz" | |
| 3567 | - "version" "3.3.2" | |
| 3528 | + jest-get-type "^27.5.1" | |
| 3529 | + jest-matcher-utils "^27.5.1" | |
| 3530 | + jest-message-util "^27.5.1" | |
| 3531 | + | |
| 3532 | +express@^4.17.1: | |
| 3533 | + version "4.18.2" | |
| 3534 | + resolved "https://registry.npmmirror.com/express/-/express-4.18.2.tgz" | |
| 3535 | + integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== | |
| 3536 | + dependencies: | |
| 3537 | + accepts "~1.3.8" | |
| 3538 | + array-flatten "1.1.1" | |
| 3539 | + body-parser "1.20.1" | |
| 3540 | + content-disposition "0.5.4" | |
| 3541 | + content-type "~1.0.4" | |
| 3542 | + cookie "0.5.0" | |
| 3543 | + cookie-signature "1.0.6" | |
| 3544 | + debug "2.6.9" | |
| 3545 | + depd "2.0.0" | |
| 3546 | + encodeurl "~1.0.2" | |
| 3547 | + escape-html "~1.0.3" | |
| 3548 | + etag "~1.8.1" | |
| 3549 | + finalhandler "1.2.0" | |
| 3550 | + fresh "0.5.2" | |
| 3551 | + http-errors "2.0.0" | |
| 3552 | + merge-descriptors "1.0.1" | |
| 3553 | + methods "~1.1.2" | |
| 3554 | + on-finished "2.4.1" | |
| 3555 | + parseurl "~1.3.3" | |
| 3556 | + path-to-regexp "0.1.7" | |
| 3557 | + proxy-addr "~2.0.7" | |
| 3558 | + qs "6.11.0" | |
| 3559 | + range-parser "~1.2.1" | |
| 3560 | + safe-buffer "5.2.1" | |
| 3561 | + send "0.18.0" | |
| 3562 | + serve-static "1.15.0" | |
| 3563 | + setprototypeof "1.2.0" | |
| 3564 | + statuses "2.0.1" | |
| 3565 | + type-is "~1.6.18" | |
| 3566 | + utils-merge "1.0.1" | |
| 3567 | + vary "~1.1.2" | |
| 3568 | + | |
| 3569 | +fast-deep-equal@^3.1.1: | |
| 3570 | + version "3.1.3" | |
| 3571 | + resolved "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" | |
| 3572 | + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== | |
| 3573 | + | |
| 3574 | +fast-glob@^3.2.11: | |
| 3575 | + version "3.3.2" | |
| 3576 | + resolved "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.2.tgz" | |
| 3577 | + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== | |
| 3568 | 3578 | dependencies: |
| 3569 | 3579 | "@nodelib/fs.stat" "^2.0.2" |
| 3570 | 3580 | "@nodelib/fs.walk" "^1.2.3" |
| 3571 | - "glob-parent" "^5.1.2" | |
| 3572 | - "merge2" "^1.3.0" | |
| 3573 | - "micromatch" "^4.0.4" | |
| 3574 | - | |
| 3575 | -"fast-json-stable-stringify@^2.0.0": | |
| 3576 | - "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" | |
| 3577 | - "resolved" "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" | |
| 3578 | - "version" "2.1.0" | |
| 3579 | - | |
| 3580 | -"fastq@^1.6.0": | |
| 3581 | - "integrity" "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==" | |
| 3582 | - "resolved" "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz" | |
| 3583 | - "version" "1.15.0" | |
| 3584 | - dependencies: | |
| 3585 | - "reusify" "^1.0.4" | |
| 3586 | - | |
| 3587 | -"fb-watchman@^2.0.0": | |
| 3588 | - "integrity" "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" | |
| 3589 | - "resolved" "https://registry.npmmirror.com/fb-watchman/-/fb-watchman-2.0.2.tgz" | |
| 3590 | - "version" "2.0.2" | |
| 3591 | - dependencies: | |
| 3592 | - "bser" "2.1.1" | |
| 3593 | - | |
| 3594 | -"file-type@^9.0.0": | |
| 3595 | - "integrity" "sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw==" | |
| 3596 | - "resolved" "https://registry.npmmirror.com/file-type/-/file-type-9.0.0.tgz" | |
| 3597 | - "version" "9.0.0" | |
| 3598 | - | |
| 3599 | -"fill-range@^7.0.1": | |
| 3600 | - "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" | |
| 3601 | - "resolved" "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz" | |
| 3602 | - "version" "7.0.1" | |
| 3603 | - dependencies: | |
| 3604 | - "to-regex-range" "^5.0.1" | |
| 3605 | - | |
| 3606 | -"finalhandler@1.2.0": | |
| 3607 | - "integrity" "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" | |
| 3608 | - "resolved" "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.2.0.tgz" | |
| 3609 | - "version" "1.2.0" | |
| 3610 | - dependencies: | |
| 3611 | - "debug" "2.6.9" | |
| 3612 | - "encodeurl" "~1.0.2" | |
| 3613 | - "escape-html" "~1.0.3" | |
| 3614 | - "on-finished" "2.4.1" | |
| 3615 | - "parseurl" "~1.3.3" | |
| 3616 | - "statuses" "2.0.1" | |
| 3617 | - "unpipe" "~1.0.0" | |
| 3618 | - | |
| 3619 | -"find-up@^4.0.0", "find-up@^4.1.0": | |
| 3620 | - "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" | |
| 3621 | - "resolved" "https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz" | |
| 3622 | - "version" "4.1.0" | |
| 3623 | - dependencies: | |
| 3624 | - "locate-path" "^5.0.0" | |
| 3625 | - "path-exists" "^4.0.0" | |
| 3626 | - | |
| 3627 | -"follow-redirects@^1.14.9": | |
| 3628 | - "integrity" "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==" | |
| 3629 | - "resolved" "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.9.tgz" | |
| 3630 | - "version" "1.15.9" | |
| 3631 | - | |
| 3632 | -"form-data@^3.0.0": | |
| 3633 | - "integrity" "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" | |
| 3634 | - "resolved" "https://registry.npmmirror.com/form-data/-/form-data-3.0.1.tgz" | |
| 3635 | - "version" "3.0.1" | |
| 3636 | - dependencies: | |
| 3637 | - "asynckit" "^0.4.0" | |
| 3638 | - "combined-stream" "^1.0.8" | |
| 3639 | - "mime-types" "^2.1.12" | |
| 3640 | - | |
| 3641 | -"form-data@^4.0.0": | |
| 3642 | - "integrity" "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==" | |
| 3643 | - "resolved" "https://registry.npmmirror.com/form-data/-/form-data-4.0.2.tgz" | |
| 3644 | - "version" "4.0.2" | |
| 3645 | - dependencies: | |
| 3646 | - "asynckit" "^0.4.0" | |
| 3647 | - "combined-stream" "^1.0.8" | |
| 3648 | - "es-set-tostringtag" "^2.1.0" | |
| 3649 | - "mime-types" "^2.1.12" | |
| 3650 | - | |
| 3651 | -"forwarded@0.2.0": | |
| 3652 | - "integrity" "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" | |
| 3653 | - "resolved" "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz" | |
| 3654 | - "version" "0.2.0" | |
| 3655 | - | |
| 3656 | -"fraction.js@^4.3.6": | |
| 3657 | - "integrity" "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" | |
| 3658 | - "resolved" "https://registry.npmmirror.com/fraction.js/-/fraction.js-4.3.7.tgz" | |
| 3659 | - "version" "4.3.7" | |
| 3660 | - | |
| 3661 | -"fresh@0.5.2": | |
| 3662 | - "integrity" "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" | |
| 3663 | - "resolved" "https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz" | |
| 3664 | - "version" "0.5.2" | |
| 3665 | - | |
| 3666 | -"fs-extra@^10.0.0": | |
| 3667 | - "integrity" "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" | |
| 3668 | - "resolved" "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" | |
| 3669 | - "version" "10.1.0" | |
| 3670 | - dependencies: | |
| 3671 | - "graceful-fs" "^4.2.0" | |
| 3672 | - "jsonfile" "^6.0.1" | |
| 3673 | - "universalify" "^2.0.0" | |
| 3674 | - | |
| 3675 | -"fs.realpath@^1.0.0": | |
| 3676 | - "integrity" "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" | |
| 3677 | - "resolved" "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz" | |
| 3678 | - "version" "1.0.0" | |
| 3679 | - | |
| 3680 | -"fsevents@^2.3.2", "fsevents@~2.3.2": | |
| 3681 | - "integrity" "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" | |
| 3682 | - "resolved" "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz" | |
| 3683 | - "version" "2.3.3" | |
| 3684 | - | |
| 3685 | -"function-bind@^1.1.2": | |
| 3686 | - "integrity" "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" | |
| 3687 | - "resolved" "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz" | |
| 3688 | - "version" "1.1.2" | |
| 3689 | - | |
| 3690 | -"generic-names@^4.0.0": | |
| 3691 | - "integrity" "sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==" | |
| 3692 | - "resolved" "https://registry.npmmirror.com/generic-names/-/generic-names-4.0.0.tgz" | |
| 3693 | - "version" "4.0.0" | |
| 3694 | - dependencies: | |
| 3695 | - "loader-utils" "^3.2.0" | |
| 3696 | - | |
| 3697 | -"gensync@^1.0.0-beta.2": | |
| 3698 | - "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" | |
| 3699 | - "resolved" "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz" | |
| 3700 | - "version" "1.0.0-beta.2" | |
| 3701 | - | |
| 3702 | -"get-caller-file@^2.0.5": | |
| 3703 | - "integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" | |
| 3704 | - "resolved" "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz" | |
| 3705 | - "version" "2.0.5" | |
| 3706 | - | |
| 3707 | -"get-intrinsic@^1.0.2", "get-intrinsic@^1.2.1", "get-intrinsic@^1.2.2", "get-intrinsic@^1.2.6": | |
| 3708 | - "integrity" "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==" | |
| 3709 | - "resolved" "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz" | |
| 3710 | - "version" "1.3.0" | |
| 3711 | - dependencies: | |
| 3712 | - "call-bind-apply-helpers" "^1.0.2" | |
| 3713 | - "es-define-property" "^1.0.1" | |
| 3714 | - "es-errors" "^1.3.0" | |
| 3715 | - "es-object-atoms" "^1.1.1" | |
| 3716 | - "function-bind" "^1.1.2" | |
| 3717 | - "get-proto" "^1.0.1" | |
| 3718 | - "gopd" "^1.2.0" | |
| 3719 | - "has-symbols" "^1.1.0" | |
| 3720 | - "hasown" "^2.0.2" | |
| 3721 | - "math-intrinsics" "^1.1.0" | |
| 3722 | - | |
| 3723 | -"get-package-type@^0.1.0": | |
| 3724 | - "integrity" "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" | |
| 3725 | - "resolved" "https://registry.npmmirror.com/get-package-type/-/get-package-type-0.1.0.tgz" | |
| 3726 | - "version" "0.1.0" | |
| 3727 | - | |
| 3728 | -"get-proto@^1.0.1": | |
| 3729 | - "integrity" "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==" | |
| 3730 | - "resolved" "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz" | |
| 3731 | - "version" "1.0.1" | |
| 3732 | - dependencies: | |
| 3733 | - "dunder-proto" "^1.0.1" | |
| 3734 | - "es-object-atoms" "^1.0.0" | |
| 3735 | - | |
| 3736 | -"get-stream@^6.0.0": | |
| 3737 | - "integrity" "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" | |
| 3738 | - "resolved" "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz" | |
| 3739 | - "version" "6.0.1" | |
| 3740 | - | |
| 3741 | -"glob-parent@^5.1.2", "glob-parent@~5.1.2": | |
| 3742 | - "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" | |
| 3743 | - "resolved" "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz" | |
| 3744 | - "version" "5.1.2" | |
| 3745 | - dependencies: | |
| 3746 | - "is-glob" "^4.0.1" | |
| 3747 | - | |
| 3748 | -"glob-to-regexp@^0.4.1": | |
| 3749 | - "integrity" "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" | |
| 3750 | - "resolved" "https://registry.npmmirror.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" | |
| 3751 | - "version" "0.4.1" | |
| 3752 | - | |
| 3753 | -"glob@^7.1.1", "glob@^7.1.2", "glob@^7.1.3", "glob@^7.1.4": | |
| 3754 | - "integrity" "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" | |
| 3755 | - "resolved" "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz" | |
| 3756 | - "version" "7.2.3" | |
| 3757 | - dependencies: | |
| 3758 | - "fs.realpath" "^1.0.0" | |
| 3759 | - "inflight" "^1.0.4" | |
| 3760 | - "inherits" "2" | |
| 3761 | - "minimatch" "^3.1.1" | |
| 3762 | - "once" "^1.3.0" | |
| 3763 | - "path-is-absolute" "^1.0.0" | |
| 3764 | - | |
| 3765 | -"global@~4.4.0": | |
| 3766 | - "integrity" "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==" | |
| 3767 | - "resolved" "https://registry.npmmirror.com/global/-/global-4.4.0.tgz" | |
| 3768 | - "version" "4.4.0" | |
| 3769 | - dependencies: | |
| 3770 | - "min-document" "^2.19.0" | |
| 3771 | - "process" "^0.11.10" | |
| 3772 | - | |
| 3773 | -"globals@^11.1.0": | |
| 3774 | - "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" | |
| 3775 | - "resolved" "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz" | |
| 3776 | - "version" "11.12.0" | |
| 3777 | - | |
| 3778 | -"good-listener@^1.2.2": | |
| 3779 | - "integrity" "sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==" | |
| 3780 | - "resolved" "https://registry.npmmirror.com/good-listener/-/good-listener-1.2.2.tgz" | |
| 3781 | - "version" "1.2.2" | |
| 3782 | - dependencies: | |
| 3783 | - "delegate" "^3.1.2" | |
| 3784 | - | |
| 3785 | -"gopd@^1.0.1", "gopd@^1.2.0": | |
| 3786 | - "integrity" "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" | |
| 3787 | - "resolved" "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz" | |
| 3788 | - "version" "1.2.0" | |
| 3789 | - | |
| 3790 | -"graceful-fs@^4.1.2", "graceful-fs@^4.1.6", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4", "graceful-fs@^4.2.9": | |
| 3791 | - "integrity" "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" | |
| 3792 | - "resolved" "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz" | |
| 3793 | - "version" "4.2.11" | |
| 3794 | - | |
| 3795 | -"has-flag@^3.0.0": | |
| 3796 | - "integrity" "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" | |
| 3797 | - "resolved" "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz" | |
| 3798 | - "version" "3.0.0" | |
| 3799 | - | |
| 3800 | -"has-flag@^4.0.0": | |
| 3801 | - "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" | |
| 3802 | - "resolved" "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz" | |
| 3803 | - "version" "4.0.0" | |
| 3804 | - | |
| 3805 | -"has-property-descriptors@^1.0.0": | |
| 3806 | - "integrity" "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" | |
| 3807 | - "resolved" "https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz" | |
| 3808 | - "version" "1.0.1" | |
| 3809 | - dependencies: | |
| 3810 | - "get-intrinsic" "^1.2.2" | |
| 3811 | - | |
| 3812 | -"has-symbols@^1.0.3", "has-symbols@^1.1.0": | |
| 3813 | - "integrity" "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" | |
| 3814 | - "resolved" "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz" | |
| 3815 | - "version" "1.1.0" | |
| 3816 | - | |
| 3817 | -"has-tostringtag@^1.0.2": | |
| 3818 | - "integrity" "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" | |
| 3819 | - "resolved" "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz" | |
| 3820 | - "version" "1.0.2" | |
| 3821 | - dependencies: | |
| 3822 | - "has-symbols" "^1.0.3" | |
| 3823 | - | |
| 3824 | -"hash-sum@^2.0.0": | |
| 3825 | - "integrity" "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" | |
| 3826 | - "resolved" "https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz" | |
| 3827 | - "version" "2.0.0" | |
| 3828 | - | |
| 3829 | -"hasown@^2.0.0", "hasown@^2.0.2": | |
| 3830 | - "integrity" "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" | |
| 3831 | - "resolved" "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz" | |
| 3832 | - "version" "2.0.2" | |
| 3833 | - dependencies: | |
| 3834 | - "function-bind" "^1.1.2" | |
| 3835 | - | |
| 3836 | -"html-encoding-sniffer@^2.0.1": | |
| 3837 | - "integrity" "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==" | |
| 3838 | - "resolved" "https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz" | |
| 3839 | - "version" "2.0.1" | |
| 3840 | - dependencies: | |
| 3841 | - "whatwg-encoding" "^1.0.5" | |
| 3842 | - | |
| 3843 | -"html-escaper@^2.0.0": | |
| 3844 | - "integrity" "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" | |
| 3845 | - "resolved" "https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz" | |
| 3846 | - "version" "2.0.2" | |
| 3847 | - | |
| 3848 | -"html-tags@^3.3.1": | |
| 3849 | - "integrity" "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==" | |
| 3850 | - "resolved" "https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz" | |
| 3851 | - "version" "3.3.1" | |
| 3852 | - | |
| 3853 | -"http-errors@2.0.0": | |
| 3854 | - "integrity" "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" | |
| 3855 | - "resolved" "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.0.tgz" | |
| 3856 | - "version" "2.0.0" | |
| 3857 | - dependencies: | |
| 3858 | - "depd" "2.0.0" | |
| 3859 | - "inherits" "2.0.4" | |
| 3860 | - "setprototypeof" "1.2.0" | |
| 3861 | - "statuses" "2.0.1" | |
| 3862 | - "toidentifier" "1.0.1" | |
| 3863 | - | |
| 3864 | -"http-proxy-agent@^4.0.1": | |
| 3865 | - "integrity" "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" | |
| 3866 | - "resolved" "https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz" | |
| 3867 | - "version" "4.0.1" | |
| 3581 | + glob-parent "^5.1.2" | |
| 3582 | + merge2 "^1.3.0" | |
| 3583 | + micromatch "^4.0.4" | |
| 3584 | + | |
| 3585 | +fast-json-stable-stringify@^2.0.0: | |
| 3586 | + version "2.1.0" | |
| 3587 | + resolved "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" | |
| 3588 | + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== | |
| 3589 | + | |
| 3590 | +fastq@^1.6.0: | |
| 3591 | + version "1.15.0" | |
| 3592 | + resolved "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz" | |
| 3593 | + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== | |
| 3594 | + dependencies: | |
| 3595 | + reusify "^1.0.4" | |
| 3596 | + | |
| 3597 | +fb-watchman@^2.0.0: | |
| 3598 | + version "2.0.2" | |
| 3599 | + resolved "https://registry.npmmirror.com/fb-watchman/-/fb-watchman-2.0.2.tgz" | |
| 3600 | + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== | |
| 3601 | + dependencies: | |
| 3602 | + bser "2.1.1" | |
| 3603 | + | |
| 3604 | +file-type@^9.0.0: | |
| 3605 | + version "9.0.0" | |
| 3606 | + resolved "https://registry.npmmirror.com/file-type/-/file-type-9.0.0.tgz" | |
| 3607 | + integrity sha512-Qe/5NJrgIOlwijpq3B7BEpzPFcgzggOTagZmkXQY4LA6bsXKTUstK7Wp12lEJ/mLKTpvIZxmIuRcLYWT6ov9lw== | |
| 3608 | + | |
| 3609 | +fill-range@^7.0.1: | |
| 3610 | + version "7.0.1" | |
| 3611 | + resolved "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz" | |
| 3612 | + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== | |
| 3613 | + dependencies: | |
| 3614 | + to-regex-range "^5.0.1" | |
| 3615 | + | |
| 3616 | +finalhandler@1.2.0: | |
| 3617 | + version "1.2.0" | |
| 3618 | + resolved "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.2.0.tgz" | |
| 3619 | + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== | |
| 3620 | + dependencies: | |
| 3621 | + debug "2.6.9" | |
| 3622 | + encodeurl "~1.0.2" | |
| 3623 | + escape-html "~1.0.3" | |
| 3624 | + on-finished "2.4.1" | |
| 3625 | + parseurl "~1.3.3" | |
| 3626 | + statuses "2.0.1" | |
| 3627 | + unpipe "~1.0.0" | |
| 3628 | + | |
| 3629 | +find-up@^4.0.0, find-up@^4.1.0: | |
| 3630 | + version "4.1.0" | |
| 3631 | + resolved "https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz" | |
| 3632 | + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== | |
| 3633 | + dependencies: | |
| 3634 | + locate-path "^5.0.0" | |
| 3635 | + path-exists "^4.0.0" | |
| 3636 | + | |
| 3637 | +follow-redirects@^1.14.9: | |
| 3638 | + version "1.15.9" | |
| 3639 | + resolved "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.9.tgz" | |
| 3640 | + integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== | |
| 3641 | + | |
| 3642 | +form-data@^3.0.0: | |
| 3643 | + version "3.0.1" | |
| 3644 | + resolved "https://registry.npmmirror.com/form-data/-/form-data-3.0.1.tgz" | |
| 3645 | + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== | |
| 3646 | + dependencies: | |
| 3647 | + asynckit "^0.4.0" | |
| 3648 | + combined-stream "^1.0.8" | |
| 3649 | + mime-types "^2.1.12" | |
| 3650 | + | |
| 3651 | +form-data@^4.0.0: | |
| 3652 | + version "4.0.2" | |
| 3653 | + resolved "https://registry.npmmirror.com/form-data/-/form-data-4.0.2.tgz" | |
| 3654 | + integrity sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w== | |
| 3655 | + dependencies: | |
| 3656 | + asynckit "^0.4.0" | |
| 3657 | + combined-stream "^1.0.8" | |
| 3658 | + es-set-tostringtag "^2.1.0" | |
| 3659 | + mime-types "^2.1.12" | |
| 3660 | + | |
| 3661 | +forwarded@0.2.0: | |
| 3662 | + version "0.2.0" | |
| 3663 | + resolved "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz" | |
| 3664 | + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== | |
| 3665 | + | |
| 3666 | +fraction.js@^4.3.6: | |
| 3667 | + version "4.3.7" | |
| 3668 | + resolved "https://registry.npmmirror.com/fraction.js/-/fraction.js-4.3.7.tgz" | |
| 3669 | + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== | |
| 3670 | + | |
| 3671 | +fresh@0.5.2: | |
| 3672 | + version "0.5.2" | |
| 3673 | + resolved "https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz" | |
| 3674 | + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== | |
| 3675 | + | |
| 3676 | +fs-extra@^10.0.0: | |
| 3677 | + version "10.1.0" | |
| 3678 | + resolved "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" | |
| 3679 | + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== | |
| 3680 | + dependencies: | |
| 3681 | + graceful-fs "^4.2.0" | |
| 3682 | + jsonfile "^6.0.1" | |
| 3683 | + universalify "^2.0.0" | |
| 3684 | + | |
| 3685 | +fs.realpath@^1.0.0: | |
| 3686 | + version "1.0.0" | |
| 3687 | + resolved "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz" | |
| 3688 | + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== | |
| 3689 | + | |
| 3690 | +function-bind@^1.1.2: | |
| 3691 | + version "1.1.2" | |
| 3692 | + resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz" | |
| 3693 | + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== | |
| 3694 | + | |
| 3695 | +generic-names@^4.0.0: | |
| 3696 | + version "4.0.0" | |
| 3697 | + resolved "https://registry.npmmirror.com/generic-names/-/generic-names-4.0.0.tgz" | |
| 3698 | + integrity sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A== | |
| 3699 | + dependencies: | |
| 3700 | + loader-utils "^3.2.0" | |
| 3701 | + | |
| 3702 | +gensync@^1.0.0-beta.2: | |
| 3703 | + version "1.0.0-beta.2" | |
| 3704 | + resolved "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz" | |
| 3705 | + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== | |
| 3706 | + | |
| 3707 | +get-caller-file@^2.0.5: | |
| 3708 | + version "2.0.5" | |
| 3709 | + resolved "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz" | |
| 3710 | + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== | |
| 3711 | + | |
| 3712 | +get-intrinsic@^1.0.2, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.6: | |
| 3713 | + version "1.3.0" | |
| 3714 | + resolved "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz" | |
| 3715 | + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== | |
| 3716 | + dependencies: | |
| 3717 | + call-bind-apply-helpers "^1.0.2" | |
| 3718 | + es-define-property "^1.0.1" | |
| 3719 | + es-errors "^1.3.0" | |
| 3720 | + es-object-atoms "^1.1.1" | |
| 3721 | + function-bind "^1.1.2" | |
| 3722 | + get-proto "^1.0.1" | |
| 3723 | + gopd "^1.2.0" | |
| 3724 | + has-symbols "^1.1.0" | |
| 3725 | + hasown "^2.0.2" | |
| 3726 | + math-intrinsics "^1.1.0" | |
| 3727 | + | |
| 3728 | +get-package-type@^0.1.0: | |
| 3729 | + version "0.1.0" | |
| 3730 | + resolved "https://registry.npmmirror.com/get-package-type/-/get-package-type-0.1.0.tgz" | |
| 3731 | + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== | |
| 3732 | + | |
| 3733 | +get-proto@^1.0.1: | |
| 3734 | + version "1.0.1" | |
| 3735 | + resolved "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz" | |
| 3736 | + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== | |
| 3737 | + dependencies: | |
| 3738 | + dunder-proto "^1.0.1" | |
| 3739 | + es-object-atoms "^1.0.0" | |
| 3740 | + | |
| 3741 | +get-stream@^6.0.0: | |
| 3742 | + version "6.0.1" | |
| 3743 | + resolved "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz" | |
| 3744 | + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== | |
| 3745 | + | |
| 3746 | +glob-parent@^5.1.2, glob-parent@~5.1.2: | |
| 3747 | + version "5.1.2" | |
| 3748 | + resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz" | |
| 3749 | + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== | |
| 3750 | + dependencies: | |
| 3751 | + is-glob "^4.0.1" | |
| 3752 | + | |
| 3753 | +glob-to-regexp@^0.4.1: | |
| 3754 | + version "0.4.1" | |
| 3755 | + resolved "https://registry.npmmirror.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" | |
| 3756 | + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== | |
| 3757 | + | |
| 3758 | +glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: | |
| 3759 | + version "7.2.3" | |
| 3760 | + resolved "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz" | |
| 3761 | + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== | |
| 3762 | + dependencies: | |
| 3763 | + fs.realpath "^1.0.0" | |
| 3764 | + inflight "^1.0.4" | |
| 3765 | + inherits "2" | |
| 3766 | + minimatch "^3.1.1" | |
| 3767 | + once "^1.3.0" | |
| 3768 | + path-is-absolute "^1.0.0" | |
| 3769 | + | |
| 3770 | +global@~4.4.0: | |
| 3771 | + version "4.4.0" | |
| 3772 | + resolved "https://registry.npmmirror.com/global/-/global-4.4.0.tgz" | |
| 3773 | + integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== | |
| 3774 | + dependencies: | |
| 3775 | + min-document "^2.19.0" | |
| 3776 | + process "^0.11.10" | |
| 3777 | + | |
| 3778 | +globals@^11.1.0: | |
| 3779 | + version "11.12.0" | |
| 3780 | + resolved "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz" | |
| 3781 | + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== | |
| 3782 | + | |
| 3783 | +good-listener@^1.2.2: | |
| 3784 | + version "1.2.2" | |
| 3785 | + resolved "https://registry.npmmirror.com/good-listener/-/good-listener-1.2.2.tgz" | |
| 3786 | + integrity sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw== | |
| 3787 | + dependencies: | |
| 3788 | + delegate "^3.1.2" | |
| 3789 | + | |
| 3790 | +gopd@^1.0.1, gopd@^1.2.0: | |
| 3791 | + version "1.2.0" | |
| 3792 | + resolved "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz" | |
| 3793 | + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== | |
| 3794 | + | |
| 3795 | +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: | |
| 3796 | + version "4.2.11" | |
| 3797 | + resolved "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz" | |
| 3798 | + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== | |
| 3799 | + | |
| 3800 | +has-flag@^3.0.0: | |
| 3801 | + version "3.0.0" | |
| 3802 | + resolved "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz" | |
| 3803 | + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== | |
| 3804 | + | |
| 3805 | +has-flag@^4.0.0: | |
| 3806 | + version "4.0.0" | |
| 3807 | + resolved "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz" | |
| 3808 | + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== | |
| 3809 | + | |
| 3810 | +has-property-descriptors@^1.0.0: | |
| 3811 | + version "1.0.1" | |
| 3812 | + resolved "https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz" | |
| 3813 | + integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg== | |
| 3814 | + dependencies: | |
| 3815 | + get-intrinsic "^1.2.2" | |
| 3816 | + | |
| 3817 | +has-symbols@^1.0.3, has-symbols@^1.1.0: | |
| 3818 | + version "1.1.0" | |
| 3819 | + resolved "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz" | |
| 3820 | + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== | |
| 3821 | + | |
| 3822 | +has-tostringtag@^1.0.2: | |
| 3823 | + version "1.0.2" | |
| 3824 | + resolved "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz" | |
| 3825 | + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== | |
| 3826 | + dependencies: | |
| 3827 | + has-symbols "^1.0.3" | |
| 3828 | + | |
| 3829 | +hash-sum@^2.0.0: | |
| 3830 | + version "2.0.0" | |
| 3831 | + resolved "https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz" | |
| 3832 | + integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== | |
| 3833 | + | |
| 3834 | +hasown@^2.0.0, hasown@^2.0.2: | |
| 3835 | + version "2.0.2" | |
| 3836 | + resolved "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz" | |
| 3837 | + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== | |
| 3838 | + dependencies: | |
| 3839 | + function-bind "^1.1.2" | |
| 3840 | + | |
| 3841 | +html-encoding-sniffer@^2.0.1: | |
| 3842 | + version "2.0.1" | |
| 3843 | + resolved "https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz" | |
| 3844 | + integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== | |
| 3845 | + dependencies: | |
| 3846 | + whatwg-encoding "^1.0.5" | |
| 3847 | + | |
| 3848 | +html-escaper@^2.0.0: | |
| 3849 | + version "2.0.2" | |
| 3850 | + resolved "https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz" | |
| 3851 | + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== | |
| 3852 | + | |
| 3853 | +html-tags@^3.3.1: | |
| 3854 | + version "3.3.1" | |
| 3855 | + resolved "https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz" | |
| 3856 | + integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== | |
| 3857 | + | |
| 3858 | +http-errors@2.0.0: | |
| 3859 | + version "2.0.0" | |
| 3860 | + resolved "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.0.tgz" | |
| 3861 | + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== | |
| 3862 | + dependencies: | |
| 3863 | + depd "2.0.0" | |
| 3864 | + inherits "2.0.4" | |
| 3865 | + setprototypeof "1.2.0" | |
| 3866 | + statuses "2.0.1" | |
| 3867 | + toidentifier "1.0.1" | |
| 3868 | + | |
| 3869 | +http-proxy-agent@^4.0.1: | |
| 3870 | + version "4.0.1" | |
| 3871 | + resolved "https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz" | |
| 3872 | + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== | |
| 3868 | 3873 | dependencies: |
| 3869 | 3874 | "@tootallnate/once" "1" |
| 3870 | - "agent-base" "6" | |
| 3871 | - "debug" "4" | |
| 3872 | - | |
| 3873 | -"https-proxy-agent@^5.0.0": | |
| 3874 | - "integrity" "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" | |
| 3875 | - "resolved" "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" | |
| 3876 | - "version" "5.0.1" | |
| 3877 | - dependencies: | |
| 3878 | - "agent-base" "6" | |
| 3879 | - "debug" "4" | |
| 3880 | - | |
| 3881 | -"human-signals@^2.1.0": | |
| 3882 | - "integrity" "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" | |
| 3883 | - "resolved" "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz" | |
| 3884 | - "version" "2.1.0" | |
| 3885 | - | |
| 3886 | -"iconv-lite@0.4.24": | |
| 3887 | - "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" | |
| 3888 | - "resolved" "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz" | |
| 3889 | - "version" "0.4.24" | |
| 3890 | - dependencies: | |
| 3891 | - "safer-buffer" ">= 2.1.2 < 3" | |
| 3892 | - | |
| 3893 | -"icss-replace-symbols@^1.1.0": | |
| 3894 | - "integrity" "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==" | |
| 3895 | - "resolved" "https://registry.npmmirror.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz" | |
| 3896 | - "version" "1.1.0" | |
| 3897 | - | |
| 3898 | -"icss-utils@^5.0.0": | |
| 3899 | - "integrity" "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" | |
| 3900 | - "resolved" "https://registry.npmmirror.com/icss-utils/-/icss-utils-5.1.0.tgz" | |
| 3901 | - "version" "5.1.0" | |
| 3902 | - | |
| 3903 | -"ieee754@^1.1.13": | |
| 3904 | - "integrity" "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" | |
| 3905 | - "resolved" "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz" | |
| 3906 | - "version" "1.2.1" | |
| 3907 | - | |
| 3908 | -"immutable@^4.0.0": | |
| 3909 | - "integrity" "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==" | |
| 3910 | - "resolved" "https://registry.npmmirror.com/immutable/-/immutable-4.3.4.tgz" | |
| 3911 | - "version" "4.3.4" | |
| 3912 | - | |
| 3913 | -"import-local@^3.0.2": | |
| 3914 | - "integrity" "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" | |
| 3915 | - "resolved" "https://registry.npmmirror.com/import-local/-/import-local-3.1.0.tgz" | |
| 3916 | - "version" "3.1.0" | |
| 3917 | - dependencies: | |
| 3918 | - "pkg-dir" "^4.2.0" | |
| 3919 | - "resolve-cwd" "^3.0.0" | |
| 3920 | - | |
| 3921 | -"imurmurhash@^0.1.4": | |
| 3922 | - "integrity" "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" | |
| 3923 | - "resolved" "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz" | |
| 3924 | - "version" "0.1.4" | |
| 3925 | - | |
| 3926 | -"inflight@^1.0.4": | |
| 3927 | - "integrity" "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" | |
| 3928 | - "resolved" "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz" | |
| 3929 | - "version" "1.0.6" | |
| 3930 | - dependencies: | |
| 3931 | - "once" "^1.3.0" | |
| 3932 | - "wrappy" "1" | |
| 3933 | - | |
| 3934 | -"inherits@2", "inherits@2.0.4": | |
| 3935 | - "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" | |
| 3936 | - "resolved" "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz" | |
| 3937 | - "version" "2.0.4" | |
| 3938 | - | |
| 3939 | -"invert-kv@^3.0.0": | |
| 3940 | - "integrity" "sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==" | |
| 3941 | - "resolved" "https://registry.npmmirror.com/invert-kv/-/invert-kv-3.0.1.tgz" | |
| 3942 | - "version" "3.0.1" | |
| 3943 | - | |
| 3944 | -"ipaddr.js@1.9.1": | |
| 3945 | - "integrity" "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" | |
| 3946 | - "resolved" "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz" | |
| 3947 | - "version" "1.9.1" | |
| 3948 | - | |
| 3949 | -"is-arrayish@^0.2.1": | |
| 3950 | - "integrity" "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" | |
| 3951 | - "resolved" "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz" | |
| 3952 | - "version" "0.2.1" | |
| 3953 | - | |
| 3954 | -"is-binary-path@~2.1.0": | |
| 3955 | - "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" | |
| 3956 | - "resolved" "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz" | |
| 3957 | - "version" "2.1.0" | |
| 3958 | - dependencies: | |
| 3959 | - "binary-extensions" "^2.0.0" | |
| 3960 | - | |
| 3961 | -"is-core-module@^2.13.0": | |
| 3962 | - "integrity" "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" | |
| 3963 | - "resolved" "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.1.tgz" | |
| 3964 | - "version" "2.13.1" | |
| 3965 | - dependencies: | |
| 3966 | - "hasown" "^2.0.0" | |
| 3967 | - | |
| 3968 | -"is-extglob@^2.1.1": | |
| 3969 | - "integrity" "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" | |
| 3970 | - "resolved" "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz" | |
| 3971 | - "version" "2.1.1" | |
| 3972 | - | |
| 3973 | -"is-fullwidth-code-point@^3.0.0": | |
| 3974 | - "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" | |
| 3975 | - "resolved" "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" | |
| 3976 | - "version" "3.0.0" | |
| 3977 | - | |
| 3978 | -"is-function@^1.0.1": | |
| 3979 | - "integrity" "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" | |
| 3980 | - "resolved" "https://registry.npmmirror.com/is-function/-/is-function-1.0.2.tgz" | |
| 3981 | - "version" "1.0.2" | |
| 3982 | - | |
| 3983 | -"is-generator-fn@^2.0.0": | |
| 3984 | - "integrity" "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" | |
| 3985 | - "resolved" "https://registry.npmmirror.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz" | |
| 3986 | - "version" "2.1.0" | |
| 3987 | - | |
| 3988 | -"is-glob@^4.0.1", "is-glob@~4.0.1": | |
| 3989 | - "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" | |
| 3990 | - "resolved" "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz" | |
| 3991 | - "version" "4.0.3" | |
| 3992 | - dependencies: | |
| 3993 | - "is-extglob" "^2.1.1" | |
| 3994 | - | |
| 3995 | -"is-number@^7.0.0": | |
| 3996 | - "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" | |
| 3997 | - "resolved" "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz" | |
| 3998 | - "version" "7.0.0" | |
| 3999 | - | |
| 4000 | -"is-potential-custom-element-name@^1.0.1": | |
| 4001 | - "integrity" "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" | |
| 4002 | - "resolved" "https://registry.npmmirror.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" | |
| 4003 | - "version" "1.0.1" | |
| 4004 | - | |
| 4005 | -"is-stream@^2.0.0": | |
| 4006 | - "integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" | |
| 4007 | - "resolved" "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz" | |
| 4008 | - "version" "2.0.1" | |
| 4009 | - | |
| 4010 | -"is-typedarray@^1.0.0": | |
| 4011 | - "integrity" "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" | |
| 4012 | - "resolved" "https://registry.npmmirror.com/is-typedarray/-/is-typedarray-1.0.0.tgz" | |
| 4013 | - "version" "1.0.0" | |
| 4014 | - | |
| 4015 | -"isexe@^2.0.0": | |
| 4016 | - "integrity" "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" | |
| 4017 | - "resolved" "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz" | |
| 4018 | - "version" "2.0.0" | |
| 4019 | - | |
| 4020 | -"istanbul-lib-coverage@^3.0.0", "istanbul-lib-coverage@^3.2.0": | |
| 4021 | - "integrity" "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" | |
| 4022 | - "resolved" "https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz" | |
| 4023 | - "version" "3.2.2" | |
| 4024 | - | |
| 4025 | -"istanbul-lib-instrument@^5.0.4", "istanbul-lib-instrument@^5.1.0": | |
| 4026 | - "integrity" "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" | |
| 4027 | - "resolved" "https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz" | |
| 4028 | - "version" "5.2.1" | |
| 3875 | + agent-base "6" | |
| 3876 | + debug "4" | |
| 3877 | + | |
| 3878 | +https-proxy-agent@^5.0.0: | |
| 3879 | + version "5.0.1" | |
| 3880 | + resolved "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" | |
| 3881 | + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== | |
| 3882 | + dependencies: | |
| 3883 | + agent-base "6" | |
| 3884 | + debug "4" | |
| 3885 | + | |
| 3886 | +human-signals@^2.1.0: | |
| 3887 | + version "2.1.0" | |
| 3888 | + resolved "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz" | |
| 3889 | + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== | |
| 3890 | + | |
| 3891 | +iconv-lite@0.4.24: | |
| 3892 | + version "0.4.24" | |
| 3893 | + resolved "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz" | |
| 3894 | + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== | |
| 3895 | + dependencies: | |
| 3896 | + safer-buffer ">= 2.1.2 < 3" | |
| 3897 | + | |
| 3898 | +icss-replace-symbols@^1.1.0: | |
| 3899 | + version "1.1.0" | |
| 3900 | + resolved "https://registry.npmmirror.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz" | |
| 3901 | + integrity sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg== | |
| 3902 | + | |
| 3903 | +icss-utils@^5.0.0: | |
| 3904 | + version "5.1.0" | |
| 3905 | + resolved "https://registry.npmmirror.com/icss-utils/-/icss-utils-5.1.0.tgz" | |
| 3906 | + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== | |
| 3907 | + | |
| 3908 | +ieee754@^1.1.13: | |
| 3909 | + version "1.2.1" | |
| 3910 | + resolved "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz" | |
| 3911 | + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== | |
| 3912 | + | |
| 3913 | +immutable@^4.0.0: | |
| 3914 | + version "4.3.4" | |
| 3915 | + resolved "https://registry.npmmirror.com/immutable/-/immutable-4.3.4.tgz" | |
| 3916 | + integrity sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA== | |
| 3917 | + | |
| 3918 | +import-local@^3.0.2: | |
| 3919 | + version "3.1.0" | |
| 3920 | + resolved "https://registry.npmmirror.com/import-local/-/import-local-3.1.0.tgz" | |
| 3921 | + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== | |
| 3922 | + dependencies: | |
| 3923 | + pkg-dir "^4.2.0" | |
| 3924 | + resolve-cwd "^3.0.0" | |
| 3925 | + | |
| 3926 | +imurmurhash@^0.1.4: | |
| 3927 | + version "0.1.4" | |
| 3928 | + resolved "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz" | |
| 3929 | + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== | |
| 3930 | + | |
| 3931 | +inflight@^1.0.4: | |
| 3932 | + version "1.0.6" | |
| 3933 | + resolved "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz" | |
| 3934 | + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== | |
| 3935 | + dependencies: | |
| 3936 | + once "^1.3.0" | |
| 3937 | + wrappy "1" | |
| 3938 | + | |
| 3939 | +inherits@2, inherits@2.0.4: | |
| 3940 | + version "2.0.4" | |
| 3941 | + resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz" | |
| 3942 | + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== | |
| 3943 | + | |
| 3944 | +invert-kv@^3.0.0: | |
| 3945 | + version "3.0.1" | |
| 3946 | + resolved "https://registry.npmmirror.com/invert-kv/-/invert-kv-3.0.1.tgz" | |
| 3947 | + integrity sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw== | |
| 3948 | + | |
| 3949 | +ipaddr.js@1.9.1: | |
| 3950 | + version "1.9.1" | |
| 3951 | + resolved "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz" | |
| 3952 | + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== | |
| 3953 | + | |
| 3954 | +is-arrayish@^0.2.1: | |
| 3955 | + version "0.2.1" | |
| 3956 | + resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz" | |
| 3957 | + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== | |
| 3958 | + | |
| 3959 | +is-binary-path@~2.1.0: | |
| 3960 | + version "2.1.0" | |
| 3961 | + resolved "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz" | |
| 3962 | + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== | |
| 3963 | + dependencies: | |
| 3964 | + binary-extensions "^2.0.0" | |
| 3965 | + | |
| 3966 | +is-core-module@^2.13.0: | |
| 3967 | + version "2.13.1" | |
| 3968 | + resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.1.tgz" | |
| 3969 | + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== | |
| 3970 | + dependencies: | |
| 3971 | + hasown "^2.0.0" | |
| 3972 | + | |
| 3973 | +is-extglob@^2.1.1: | |
| 3974 | + version "2.1.1" | |
| 3975 | + resolved "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz" | |
| 3976 | + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== | |
| 3977 | + | |
| 3978 | +is-fullwidth-code-point@^3.0.0: | |
| 3979 | + version "3.0.0" | |
| 3980 | + resolved "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" | |
| 3981 | + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== | |
| 3982 | + | |
| 3983 | +is-function@^1.0.1: | |
| 3984 | + version "1.0.2" | |
| 3985 | + resolved "https://registry.npmmirror.com/is-function/-/is-function-1.0.2.tgz" | |
| 3986 | + integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== | |
| 3987 | + | |
| 3988 | +is-generator-fn@^2.0.0: | |
| 3989 | + version "2.1.0" | |
| 3990 | + resolved "https://registry.npmmirror.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz" | |
| 3991 | + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== | |
| 3992 | + | |
| 3993 | +is-glob@^4.0.1, is-glob@~4.0.1: | |
| 3994 | + version "4.0.3" | |
| 3995 | + resolved "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz" | |
| 3996 | + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== | |
| 3997 | + dependencies: | |
| 3998 | + is-extglob "^2.1.1" | |
| 3999 | + | |
| 4000 | +is-number@^7.0.0: | |
| 4001 | + version "7.0.0" | |
| 4002 | + resolved "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz" | |
| 4003 | + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== | |
| 4004 | + | |
| 4005 | +is-potential-custom-element-name@^1.0.1: | |
| 4006 | + version "1.0.1" | |
| 4007 | + resolved "https://registry.npmmirror.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" | |
| 4008 | + integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== | |
| 4009 | + | |
| 4010 | +is-stream@^2.0.0: | |
| 4011 | + version "2.0.1" | |
| 4012 | + resolved "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz" | |
| 4013 | + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== | |
| 4014 | + | |
| 4015 | +is-typedarray@^1.0.0: | |
| 4016 | + version "1.0.0" | |
| 4017 | + resolved "https://registry.npmmirror.com/is-typedarray/-/is-typedarray-1.0.0.tgz" | |
| 4018 | + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== | |
| 4019 | + | |
| 4020 | +isexe@^2.0.0: | |
| 4021 | + version "2.0.0" | |
| 4022 | + resolved "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz" | |
| 4023 | + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== | |
| 4024 | + | |
| 4025 | +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: | |
| 4026 | + version "3.2.2" | |
| 4027 | + resolved "https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz" | |
| 4028 | + integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== | |
| 4029 | + | |
| 4030 | +istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: | |
| 4031 | + version "5.2.1" | |
| 4032 | + resolved "https://registry.npmmirror.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz" | |
| 4033 | + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== | |
| 4029 | 4034 | dependencies: |
| 4030 | 4035 | "@babel/core" "^7.12.3" |
| 4031 | 4036 | "@babel/parser" "^7.14.7" |
| 4032 | 4037 | "@istanbuljs/schema" "^0.1.2" |
| 4033 | - "istanbul-lib-coverage" "^3.2.0" | |
| 4034 | - "semver" "^6.3.0" | |
| 4038 | + istanbul-lib-coverage "^3.2.0" | |
| 4039 | + semver "^6.3.0" | |
| 4035 | 4040 | |
| 4036 | -"istanbul-lib-report@^3.0.0": | |
| 4037 | - "integrity" "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" | |
| 4038 | - "resolved" "https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz" | |
| 4039 | - "version" "3.0.1" | |
| 4041 | +istanbul-lib-report@^3.0.0: | |
| 4042 | + version "3.0.1" | |
| 4043 | + resolved "https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz" | |
| 4044 | + integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== | |
| 4040 | 4045 | dependencies: |
| 4041 | - "istanbul-lib-coverage" "^3.0.0" | |
| 4042 | - "make-dir" "^4.0.0" | |
| 4043 | - "supports-color" "^7.1.0" | |
| 4046 | + istanbul-lib-coverage "^3.0.0" | |
| 4047 | + make-dir "^4.0.0" | |
| 4048 | + supports-color "^7.1.0" | |
| 4044 | 4049 | |
| 4045 | -"istanbul-lib-source-maps@^4.0.0": | |
| 4046 | - "integrity" "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" | |
| 4047 | - "resolved" "https://registry.npmmirror.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz" | |
| 4048 | - "version" "4.0.1" | |
| 4050 | +istanbul-lib-source-maps@^4.0.0: | |
| 4051 | + version "4.0.1" | |
| 4052 | + resolved "https://registry.npmmirror.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz" | |
| 4053 | + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== | |
| 4049 | 4054 | dependencies: |
| 4050 | - "debug" "^4.1.1" | |
| 4051 | - "istanbul-lib-coverage" "^3.0.0" | |
| 4052 | - "source-map" "^0.6.1" | |
| 4055 | + debug "^4.1.1" | |
| 4056 | + istanbul-lib-coverage "^3.0.0" | |
| 4057 | + source-map "^0.6.1" | |
| 4053 | 4058 | |
| 4054 | -"istanbul-reports@^3.1.3": | |
| 4055 | - "integrity" "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" | |
| 4056 | - "resolved" "https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz" | |
| 4057 | - "version" "3.1.6" | |
| 4059 | +istanbul-reports@^3.1.3: | |
| 4060 | + version "3.1.6" | |
| 4061 | + resolved "https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz" | |
| 4062 | + integrity sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg== | |
| 4058 | 4063 | dependencies: |
| 4059 | - "html-escaper" "^2.0.0" | |
| 4060 | - "istanbul-lib-report" "^3.0.0" | |
| 4064 | + html-escaper "^2.0.0" | |
| 4065 | + istanbul-lib-report "^3.0.0" | |
| 4061 | 4066 | |
| 4062 | -"jest-changed-files@^27.5.1": | |
| 4063 | - "integrity" "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==" | |
| 4064 | - "resolved" "https://registry.npmmirror.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz" | |
| 4065 | - "version" "27.5.1" | |
| 4067 | +jest-changed-files@^27.5.1: | |
| 4068 | + version "27.5.1" | |
| 4069 | + resolved "https://registry.npmmirror.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz" | |
| 4070 | + integrity sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw== | |
| 4066 | 4071 | dependencies: |
| 4067 | 4072 | "@jest/types" "^27.5.1" |
| 4068 | - "execa" "^5.0.0" | |
| 4069 | - "throat" "^6.0.1" | |
| 4073 | + execa "^5.0.0" | |
| 4074 | + throat "^6.0.1" | |
| 4070 | 4075 | |
| 4071 | -"jest-circus@^27.5.1": | |
| 4072 | - "integrity" "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==" | |
| 4073 | - "resolved" "https://registry.npmmirror.com/jest-circus/-/jest-circus-27.5.1.tgz" | |
| 4074 | - "version" "27.5.1" | |
| 4076 | +jest-circus@^27.5.1: | |
| 4077 | + version "27.5.1" | |
| 4078 | + resolved "https://registry.npmmirror.com/jest-circus/-/jest-circus-27.5.1.tgz" | |
| 4079 | + integrity sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw== | |
| 4075 | 4080 | dependencies: |
| 4076 | 4081 | "@jest/environment" "^27.5.1" |
| 4077 | 4082 | "@jest/test-result" "^27.5.1" |
| 4078 | 4083 | "@jest/types" "^27.5.1" |
| 4079 | 4084 | "@types/node" "*" |
| 4080 | - "chalk" "^4.0.0" | |
| 4081 | - "co" "^4.6.0" | |
| 4082 | - "dedent" "^0.7.0" | |
| 4083 | - "expect" "^27.5.1" | |
| 4084 | - "is-generator-fn" "^2.0.0" | |
| 4085 | - "jest-each" "^27.5.1" | |
| 4086 | - "jest-matcher-utils" "^27.5.1" | |
| 4087 | - "jest-message-util" "^27.5.1" | |
| 4088 | - "jest-runtime" "^27.5.1" | |
| 4089 | - "jest-snapshot" "^27.5.1" | |
| 4090 | - "jest-util" "^27.5.1" | |
| 4091 | - "pretty-format" "^27.5.1" | |
| 4092 | - "slash" "^3.0.0" | |
| 4093 | - "stack-utils" "^2.0.3" | |
| 4094 | - "throat" "^6.0.1" | |
| 4095 | - | |
| 4096 | -"jest-cli@^27.0.4": | |
| 4097 | - "integrity" "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==" | |
| 4098 | - "resolved" "https://registry.npmmirror.com/jest-cli/-/jest-cli-27.5.1.tgz" | |
| 4099 | - "version" "27.5.1" | |
| 4085 | + chalk "^4.0.0" | |
| 4086 | + co "^4.6.0" | |
| 4087 | + dedent "^0.7.0" | |
| 4088 | + expect "^27.5.1" | |
| 4089 | + is-generator-fn "^2.0.0" | |
| 4090 | + jest-each "^27.5.1" | |
| 4091 | + jest-matcher-utils "^27.5.1" | |
| 4092 | + jest-message-util "^27.5.1" | |
| 4093 | + jest-runtime "^27.5.1" | |
| 4094 | + jest-snapshot "^27.5.1" | |
| 4095 | + jest-util "^27.5.1" | |
| 4096 | + pretty-format "^27.5.1" | |
| 4097 | + slash "^3.0.0" | |
| 4098 | + stack-utils "^2.0.3" | |
| 4099 | + throat "^6.0.1" | |
| 4100 | + | |
| 4101 | +jest-cli@^27.0.4: | |
| 4102 | + version "27.5.1" | |
| 4103 | + resolved "https://registry.npmmirror.com/jest-cli/-/jest-cli-27.5.1.tgz" | |
| 4104 | + integrity sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw== | |
| 4100 | 4105 | dependencies: |
| 4101 | 4106 | "@jest/core" "^27.5.1" |
| 4102 | 4107 | "@jest/test-result" "^27.5.1" |
| 4103 | 4108 | "@jest/types" "^27.5.1" |
| 4104 | - "chalk" "^4.0.0" | |
| 4105 | - "exit" "^0.1.2" | |
| 4106 | - "graceful-fs" "^4.2.9" | |
| 4107 | - "import-local" "^3.0.2" | |
| 4108 | - "jest-config" "^27.5.1" | |
| 4109 | - "jest-util" "^27.5.1" | |
| 4110 | - "jest-validate" "^27.5.1" | |
| 4111 | - "prompts" "^2.0.1" | |
| 4112 | - "yargs" "^16.2.0" | |
| 4113 | - | |
| 4114 | -"jest-config@^27.5.1": | |
| 4115 | - "integrity" "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==" | |
| 4116 | - "resolved" "https://registry.npmmirror.com/jest-config/-/jest-config-27.5.1.tgz" | |
| 4117 | - "version" "27.5.1" | |
| 4109 | + chalk "^4.0.0" | |
| 4110 | + exit "^0.1.2" | |
| 4111 | + graceful-fs "^4.2.9" | |
| 4112 | + import-local "^3.0.2" | |
| 4113 | + jest-config "^27.5.1" | |
| 4114 | + jest-util "^27.5.1" | |
| 4115 | + jest-validate "^27.5.1" | |
| 4116 | + prompts "^2.0.1" | |
| 4117 | + yargs "^16.2.0" | |
| 4118 | + | |
| 4119 | +jest-config@^27.5.1: | |
| 4120 | + version "27.5.1" | |
| 4121 | + resolved "https://registry.npmmirror.com/jest-config/-/jest-config-27.5.1.tgz" | |
| 4122 | + integrity sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA== | |
| 4118 | 4123 | dependencies: |
| 4119 | 4124 | "@babel/core" "^7.8.0" |
| 4120 | 4125 | "@jest/test-sequencer" "^27.5.1" |
| 4121 | 4126 | "@jest/types" "^27.5.1" |
| 4122 | - "babel-jest" "^27.5.1" | |
| 4123 | - "chalk" "^4.0.0" | |
| 4124 | - "ci-info" "^3.2.0" | |
| 4125 | - "deepmerge" "^4.2.2" | |
| 4126 | - "glob" "^7.1.1" | |
| 4127 | - "graceful-fs" "^4.2.9" | |
| 4128 | - "jest-circus" "^27.5.1" | |
| 4129 | - "jest-environment-jsdom" "^27.5.1" | |
| 4130 | - "jest-environment-node" "^27.5.1" | |
| 4131 | - "jest-get-type" "^27.5.1" | |
| 4132 | - "jest-jasmine2" "^27.5.1" | |
| 4133 | - "jest-regex-util" "^27.5.1" | |
| 4134 | - "jest-resolve" "^27.5.1" | |
| 4135 | - "jest-runner" "^27.5.1" | |
| 4136 | - "jest-util" "^27.5.1" | |
| 4137 | - "jest-validate" "^27.5.1" | |
| 4138 | - "micromatch" "^4.0.4" | |
| 4139 | - "parse-json" "^5.2.0" | |
| 4140 | - "pretty-format" "^27.5.1" | |
| 4141 | - "slash" "^3.0.0" | |
| 4142 | - "strip-json-comments" "^3.1.1" | |
| 4143 | - | |
| 4144 | -"jest-diff@^27.5.1": | |
| 4145 | - "integrity" "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==" | |
| 4146 | - "resolved" "https://registry.npmmirror.com/jest-diff/-/jest-diff-27.5.1.tgz" | |
| 4147 | - "version" "27.5.1" | |
| 4148 | - dependencies: | |
| 4149 | - "chalk" "^4.0.0" | |
| 4150 | - "diff-sequences" "^27.5.1" | |
| 4151 | - "jest-get-type" "^27.5.1" | |
| 4152 | - "pretty-format" "^27.5.1" | |
| 4153 | - | |
| 4154 | -"jest-docblock@^27.5.1": | |
| 4155 | - "integrity" "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==" | |
| 4156 | - "resolved" "https://registry.npmmirror.com/jest-docblock/-/jest-docblock-27.5.1.tgz" | |
| 4157 | - "version" "27.5.1" | |
| 4158 | - dependencies: | |
| 4159 | - "detect-newline" "^3.0.0" | |
| 4160 | - | |
| 4161 | -"jest-each@^27.5.1": | |
| 4162 | - "integrity" "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==" | |
| 4163 | - "resolved" "https://registry.npmmirror.com/jest-each/-/jest-each-27.5.1.tgz" | |
| 4164 | - "version" "27.5.1" | |
| 4127 | + babel-jest "^27.5.1" | |
| 4128 | + chalk "^4.0.0" | |
| 4129 | + ci-info "^3.2.0" | |
| 4130 | + deepmerge "^4.2.2" | |
| 4131 | + glob "^7.1.1" | |
| 4132 | + graceful-fs "^4.2.9" | |
| 4133 | + jest-circus "^27.5.1" | |
| 4134 | + jest-environment-jsdom "^27.5.1" | |
| 4135 | + jest-environment-node "^27.5.1" | |
| 4136 | + jest-get-type "^27.5.1" | |
| 4137 | + jest-jasmine2 "^27.5.1" | |
| 4138 | + jest-regex-util "^27.5.1" | |
| 4139 | + jest-resolve "^27.5.1" | |
| 4140 | + jest-runner "^27.5.1" | |
| 4141 | + jest-util "^27.5.1" | |
| 4142 | + jest-validate "^27.5.1" | |
| 4143 | + micromatch "^4.0.4" | |
| 4144 | + parse-json "^5.2.0" | |
| 4145 | + pretty-format "^27.5.1" | |
| 4146 | + slash "^3.0.0" | |
| 4147 | + strip-json-comments "^3.1.1" | |
| 4148 | + | |
| 4149 | +jest-diff@^27.5.1: | |
| 4150 | + version "27.5.1" | |
| 4151 | + resolved "https://registry.npmmirror.com/jest-diff/-/jest-diff-27.5.1.tgz" | |
| 4152 | + integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== | |
| 4153 | + dependencies: | |
| 4154 | + chalk "^4.0.0" | |
| 4155 | + diff-sequences "^27.5.1" | |
| 4156 | + jest-get-type "^27.5.1" | |
| 4157 | + pretty-format "^27.5.1" | |
| 4158 | + | |
| 4159 | +jest-docblock@^27.5.1: | |
| 4160 | + version "27.5.1" | |
| 4161 | + resolved "https://registry.npmmirror.com/jest-docblock/-/jest-docblock-27.5.1.tgz" | |
| 4162 | + integrity sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ== | |
| 4163 | + dependencies: | |
| 4164 | + detect-newline "^3.0.0" | |
| 4165 | + | |
| 4166 | +jest-each@^27.5.1: | |
| 4167 | + version "27.5.1" | |
| 4168 | + resolved "https://registry.npmmirror.com/jest-each/-/jest-each-27.5.1.tgz" | |
| 4169 | + integrity sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ== | |
| 4165 | 4170 | dependencies: |
| 4166 | 4171 | "@jest/types" "^27.5.1" |
| 4167 | - "chalk" "^4.0.0" | |
| 4168 | - "jest-get-type" "^27.5.1" | |
| 4169 | - "jest-util" "^27.5.1" | |
| 4170 | - "pretty-format" "^27.5.1" | |
| 4172 | + chalk "^4.0.0" | |
| 4173 | + jest-get-type "^27.5.1" | |
| 4174 | + jest-util "^27.5.1" | |
| 4175 | + pretty-format "^27.5.1" | |
| 4171 | 4176 | |
| 4172 | -"jest-environment-jsdom@^27.5.1": | |
| 4173 | - "integrity" "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==" | |
| 4174 | - "resolved" "https://registry.npmmirror.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz" | |
| 4175 | - "version" "27.5.1" | |
| 4177 | +jest-environment-jsdom@^27.5.1: | |
| 4178 | + version "27.5.1" | |
| 4179 | + resolved "https://registry.npmmirror.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz" | |
| 4180 | + integrity sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw== | |
| 4176 | 4181 | dependencies: |
| 4177 | 4182 | "@jest/environment" "^27.5.1" |
| 4178 | 4183 | "@jest/fake-timers" "^27.5.1" |
| 4179 | 4184 | "@jest/types" "^27.5.1" |
| 4180 | 4185 | "@types/node" "*" |
| 4181 | - "jest-mock" "^27.5.1" | |
| 4182 | - "jest-util" "^27.5.1" | |
| 4183 | - "jsdom" "^16.6.0" | |
| 4186 | + jest-mock "^27.5.1" | |
| 4187 | + jest-util "^27.5.1" | |
| 4188 | + jsdom "^16.6.0" | |
| 4184 | 4189 | |
| 4185 | -"jest-environment-node@^27.5.1", "jest-environment-node@27.5.1": | |
| 4186 | - "integrity" "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==" | |
| 4187 | - "resolved" "https://registry.npmmirror.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz" | |
| 4188 | - "version" "27.5.1" | |
| 4190 | +jest-environment-node@^27.5.1, jest-environment-node@27.5.1: | |
| 4191 | + version "27.5.1" | |
| 4192 | + resolved "https://registry.npmmirror.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz" | |
| 4193 | + integrity sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw== | |
| 4189 | 4194 | dependencies: |
| 4190 | 4195 | "@jest/environment" "^27.5.1" |
| 4191 | 4196 | "@jest/fake-timers" "^27.5.1" |
| 4192 | 4197 | "@jest/types" "^27.5.1" |
| 4193 | 4198 | "@types/node" "*" |
| 4194 | - "jest-mock" "^27.5.1" | |
| 4195 | - "jest-util" "^27.5.1" | |
| 4199 | + jest-mock "^27.5.1" | |
| 4200 | + jest-util "^27.5.1" | |
| 4196 | 4201 | |
| 4197 | -"jest-get-type@^27.5.1": | |
| 4198 | - "integrity" "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==" | |
| 4199 | - "resolved" "https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz" | |
| 4200 | - "version" "27.5.1" | |
| 4202 | +jest-get-type@^27.5.1: | |
| 4203 | + version "27.5.1" | |
| 4204 | + resolved "https://registry.npmmirror.com/jest-get-type/-/jest-get-type-27.5.1.tgz" | |
| 4205 | + integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== | |
| 4201 | 4206 | |
| 4202 | -"jest-haste-map@^27.5.1": | |
| 4203 | - "integrity" "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==" | |
| 4204 | - "resolved" "https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz" | |
| 4205 | - "version" "27.5.1" | |
| 4207 | +jest-haste-map@^27.5.1: | |
| 4208 | + version "27.5.1" | |
| 4209 | + resolved "https://registry.npmmirror.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz" | |
| 4210 | + integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng== | |
| 4206 | 4211 | dependencies: |
| 4207 | 4212 | "@jest/types" "^27.5.1" |
| 4208 | 4213 | "@types/graceful-fs" "^4.1.2" |
| 4209 | 4214 | "@types/node" "*" |
| 4210 | - "anymatch" "^3.0.3" | |
| 4211 | - "fb-watchman" "^2.0.0" | |
| 4212 | - "graceful-fs" "^4.2.9" | |
| 4213 | - "jest-regex-util" "^27.5.1" | |
| 4214 | - "jest-serializer" "^27.5.1" | |
| 4215 | - "jest-util" "^27.5.1" | |
| 4216 | - "jest-worker" "^27.5.1" | |
| 4217 | - "micromatch" "^4.0.4" | |
| 4218 | - "walker" "^1.0.7" | |
| 4215 | + anymatch "^3.0.3" | |
| 4216 | + fb-watchman "^2.0.0" | |
| 4217 | + graceful-fs "^4.2.9" | |
| 4218 | + jest-regex-util "^27.5.1" | |
| 4219 | + jest-serializer "^27.5.1" | |
| 4220 | + jest-util "^27.5.1" | |
| 4221 | + jest-worker "^27.5.1" | |
| 4222 | + micromatch "^4.0.4" | |
| 4223 | + walker "^1.0.7" | |
| 4219 | 4224 | optionalDependencies: |
| 4220 | - "fsevents" "^2.3.2" | |
| 4225 | + fsevents "^2.3.2" | |
| 4221 | 4226 | |
| 4222 | -"jest-jasmine2@^27.5.1": | |
| 4223 | - "integrity" "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==" | |
| 4224 | - "resolved" "https://registry.npmmirror.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz" | |
| 4225 | - "version" "27.5.1" | |
| 4227 | +jest-jasmine2@^27.5.1: | |
| 4228 | + version "27.5.1" | |
| 4229 | + resolved "https://registry.npmmirror.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz" | |
| 4230 | + integrity sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ== | |
| 4226 | 4231 | dependencies: |
| 4227 | 4232 | "@jest/environment" "^27.5.1" |
| 4228 | 4233 | "@jest/source-map" "^27.5.1" |
| 4229 | 4234 | "@jest/test-result" "^27.5.1" |
| 4230 | 4235 | "@jest/types" "^27.5.1" |
| 4231 | 4236 | "@types/node" "*" |
| 4232 | - "chalk" "^4.0.0" | |
| 4233 | - "co" "^4.6.0" | |
| 4234 | - "expect" "^27.5.1" | |
| 4235 | - "is-generator-fn" "^2.0.0" | |
| 4236 | - "jest-each" "^27.5.1" | |
| 4237 | - "jest-matcher-utils" "^27.5.1" | |
| 4238 | - "jest-message-util" "^27.5.1" | |
| 4239 | - "jest-runtime" "^27.5.1" | |
| 4240 | - "jest-snapshot" "^27.5.1" | |
| 4241 | - "jest-util" "^27.5.1" | |
| 4242 | - "pretty-format" "^27.5.1" | |
| 4243 | - "throat" "^6.0.1" | |
| 4244 | - | |
| 4245 | -"jest-leak-detector@^27.5.1": | |
| 4246 | - "integrity" "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==" | |
| 4247 | - "resolved" "https://registry.npmmirror.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz" | |
| 4248 | - "version" "27.5.1" | |
| 4249 | - dependencies: | |
| 4250 | - "jest-get-type" "^27.5.1" | |
| 4251 | - "pretty-format" "^27.5.1" | |
| 4252 | - | |
| 4253 | -"jest-matcher-utils@^27.5.1": | |
| 4254 | - "integrity" "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==" | |
| 4255 | - "resolved" "https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz" | |
| 4256 | - "version" "27.5.1" | |
| 4257 | - dependencies: | |
| 4258 | - "chalk" "^4.0.0" | |
| 4259 | - "jest-diff" "^27.5.1" | |
| 4260 | - "jest-get-type" "^27.5.1" | |
| 4261 | - "pretty-format" "^27.5.1" | |
| 4262 | - | |
| 4263 | -"jest-message-util@^27.5.1": | |
| 4264 | - "integrity" "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==" | |
| 4265 | - "resolved" "https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz" | |
| 4266 | - "version" "27.5.1" | |
| 4237 | + chalk "^4.0.0" | |
| 4238 | + co "^4.6.0" | |
| 4239 | + expect "^27.5.1" | |
| 4240 | + is-generator-fn "^2.0.0" | |
| 4241 | + jest-each "^27.5.1" | |
| 4242 | + jest-matcher-utils "^27.5.1" | |
| 4243 | + jest-message-util "^27.5.1" | |
| 4244 | + jest-runtime "^27.5.1" | |
| 4245 | + jest-snapshot "^27.5.1" | |
| 4246 | + jest-util "^27.5.1" | |
| 4247 | + pretty-format "^27.5.1" | |
| 4248 | + throat "^6.0.1" | |
| 4249 | + | |
| 4250 | +jest-leak-detector@^27.5.1: | |
| 4251 | + version "27.5.1" | |
| 4252 | + resolved "https://registry.npmmirror.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz" | |
| 4253 | + integrity sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ== | |
| 4254 | + dependencies: | |
| 4255 | + jest-get-type "^27.5.1" | |
| 4256 | + pretty-format "^27.5.1" | |
| 4257 | + | |
| 4258 | +jest-matcher-utils@^27.5.1: | |
| 4259 | + version "27.5.1" | |
| 4260 | + resolved "https://registry.npmmirror.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz" | |
| 4261 | + integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== | |
| 4262 | + dependencies: | |
| 4263 | + chalk "^4.0.0" | |
| 4264 | + jest-diff "^27.5.1" | |
| 4265 | + jest-get-type "^27.5.1" | |
| 4266 | + pretty-format "^27.5.1" | |
| 4267 | + | |
| 4268 | +jest-message-util@^27.5.1: | |
| 4269 | + version "27.5.1" | |
| 4270 | + resolved "https://registry.npmmirror.com/jest-message-util/-/jest-message-util-27.5.1.tgz" | |
| 4271 | + integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g== | |
| 4267 | 4272 | dependencies: |
| 4268 | 4273 | "@babel/code-frame" "^7.12.13" |
| 4269 | 4274 | "@jest/types" "^27.5.1" |
| 4270 | 4275 | "@types/stack-utils" "^2.0.0" |
| 4271 | - "chalk" "^4.0.0" | |
| 4272 | - "graceful-fs" "^4.2.9" | |
| 4273 | - "micromatch" "^4.0.4" | |
| 4274 | - "pretty-format" "^27.5.1" | |
| 4275 | - "slash" "^3.0.0" | |
| 4276 | - "stack-utils" "^2.0.3" | |
| 4277 | - | |
| 4278 | -"jest-mock@^27.5.1": | |
| 4279 | - "integrity" "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==" | |
| 4280 | - "resolved" "https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz" | |
| 4281 | - "version" "27.5.1" | |
| 4276 | + chalk "^4.0.0" | |
| 4277 | + graceful-fs "^4.2.9" | |
| 4278 | + micromatch "^4.0.4" | |
| 4279 | + pretty-format "^27.5.1" | |
| 4280 | + slash "^3.0.0" | |
| 4281 | + stack-utils "^2.0.3" | |
| 4282 | + | |
| 4283 | +jest-mock@^27.5.1: | |
| 4284 | + version "27.5.1" | |
| 4285 | + resolved "https://registry.npmmirror.com/jest-mock/-/jest-mock-27.5.1.tgz" | |
| 4286 | + integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== | |
| 4282 | 4287 | dependencies: |
| 4283 | 4288 | "@jest/types" "^27.5.1" |
| 4284 | 4289 | "@types/node" "*" |
| 4285 | 4290 | |
| 4286 | -"jest-pnp-resolver@^1.2.2": | |
| 4287 | - "integrity" "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" | |
| 4288 | - "resolved" "https://registry.npmmirror.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz" | |
| 4289 | - "version" "1.2.3" | |
| 4291 | +jest-pnp-resolver@^1.2.2: | |
| 4292 | + version "1.2.3" | |
| 4293 | + resolved "https://registry.npmmirror.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz" | |
| 4294 | + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== | |
| 4290 | 4295 | |
| 4291 | -"jest-regex-util@^27.5.1": | |
| 4292 | - "integrity" "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==" | |
| 4293 | - "resolved" "https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz" | |
| 4294 | - "version" "27.5.1" | |
| 4296 | +jest-regex-util@^27.5.1: | |
| 4297 | + version "27.5.1" | |
| 4298 | + resolved "https://registry.npmmirror.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz" | |
| 4299 | + integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg== | |
| 4295 | 4300 | |
| 4296 | -"jest-resolve-dependencies@^27.5.1": | |
| 4297 | - "integrity" "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==" | |
| 4298 | - "resolved" "https://registry.npmmirror.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz" | |
| 4299 | - "version" "27.5.1" | |
| 4301 | +jest-resolve-dependencies@^27.5.1: | |
| 4302 | + version "27.5.1" | |
| 4303 | + resolved "https://registry.npmmirror.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz" | |
| 4304 | + integrity sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg== | |
| 4300 | 4305 | dependencies: |
| 4301 | 4306 | "@jest/types" "^27.5.1" |
| 4302 | - "jest-regex-util" "^27.5.1" | |
| 4303 | - "jest-snapshot" "^27.5.1" | |
| 4307 | + jest-regex-util "^27.5.1" | |
| 4308 | + jest-snapshot "^27.5.1" | |
| 4304 | 4309 | |
| 4305 | -"jest-resolve@*", "jest-resolve@^27.5.1": | |
| 4306 | - "integrity" "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==" | |
| 4307 | - "resolved" "https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz" | |
| 4308 | - "version" "27.5.1" | |
| 4310 | +jest-resolve@*, jest-resolve@^27.5.1: | |
| 4311 | + version "27.5.1" | |
| 4312 | + resolved "https://registry.npmmirror.com/jest-resolve/-/jest-resolve-27.5.1.tgz" | |
| 4313 | + integrity sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw== | |
| 4309 | 4314 | dependencies: |
| 4310 | 4315 | "@jest/types" "^27.5.1" |
| 4311 | - "chalk" "^4.0.0" | |
| 4312 | - "graceful-fs" "^4.2.9" | |
| 4313 | - "jest-haste-map" "^27.5.1" | |
| 4314 | - "jest-pnp-resolver" "^1.2.2" | |
| 4315 | - "jest-util" "^27.5.1" | |
| 4316 | - "jest-validate" "^27.5.1" | |
| 4317 | - "resolve" "^1.20.0" | |
| 4318 | - "resolve.exports" "^1.1.0" | |
| 4319 | - "slash" "^3.0.0" | |
| 4320 | - | |
| 4321 | -"jest-runner@^27.5.1": | |
| 4322 | - "integrity" "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==" | |
| 4323 | - "resolved" "https://registry.npmmirror.com/jest-runner/-/jest-runner-27.5.1.tgz" | |
| 4324 | - "version" "27.5.1" | |
| 4316 | + chalk "^4.0.0" | |
| 4317 | + graceful-fs "^4.2.9" | |
| 4318 | + jest-haste-map "^27.5.1" | |
| 4319 | + jest-pnp-resolver "^1.2.2" | |
| 4320 | + jest-util "^27.5.1" | |
| 4321 | + jest-validate "^27.5.1" | |
| 4322 | + resolve "^1.20.0" | |
| 4323 | + resolve.exports "^1.1.0" | |
| 4324 | + slash "^3.0.0" | |
| 4325 | + | |
| 4326 | +jest-runner@^27.5.1: | |
| 4327 | + version "27.5.1" | |
| 4328 | + resolved "https://registry.npmmirror.com/jest-runner/-/jest-runner-27.5.1.tgz" | |
| 4329 | + integrity sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ== | |
| 4325 | 4330 | dependencies: |
| 4326 | 4331 | "@jest/console" "^27.5.1" |
| 4327 | 4332 | "@jest/environment" "^27.5.1" |
| ... | ... | @@ -4329,26 +4334,26 @@ |
| 4329 | 4334 | "@jest/transform" "^27.5.1" |
| 4330 | 4335 | "@jest/types" "^27.5.1" |
| 4331 | 4336 | "@types/node" "*" |
| 4332 | - "chalk" "^4.0.0" | |
| 4333 | - "emittery" "^0.8.1" | |
| 4334 | - "graceful-fs" "^4.2.9" | |
| 4335 | - "jest-docblock" "^27.5.1" | |
| 4336 | - "jest-environment-jsdom" "^27.5.1" | |
| 4337 | - "jest-environment-node" "^27.5.1" | |
| 4338 | - "jest-haste-map" "^27.5.1" | |
| 4339 | - "jest-leak-detector" "^27.5.1" | |
| 4340 | - "jest-message-util" "^27.5.1" | |
| 4341 | - "jest-resolve" "^27.5.1" | |
| 4342 | - "jest-runtime" "^27.5.1" | |
| 4343 | - "jest-util" "^27.5.1" | |
| 4344 | - "jest-worker" "^27.5.1" | |
| 4345 | - "source-map-support" "^0.5.6" | |
| 4346 | - "throat" "^6.0.1" | |
| 4347 | - | |
| 4348 | -"jest-runtime@^27.5.1": | |
| 4349 | - "integrity" "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==" | |
| 4350 | - "resolved" "https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz" | |
| 4351 | - "version" "27.5.1" | |
| 4337 | + chalk "^4.0.0" | |
| 4338 | + emittery "^0.8.1" | |
| 4339 | + graceful-fs "^4.2.9" | |
| 4340 | + jest-docblock "^27.5.1" | |
| 4341 | + jest-environment-jsdom "^27.5.1" | |
| 4342 | + jest-environment-node "^27.5.1" | |
| 4343 | + jest-haste-map "^27.5.1" | |
| 4344 | + jest-leak-detector "^27.5.1" | |
| 4345 | + jest-message-util "^27.5.1" | |
| 4346 | + jest-resolve "^27.5.1" | |
| 4347 | + jest-runtime "^27.5.1" | |
| 4348 | + jest-util "^27.5.1" | |
| 4349 | + jest-worker "^27.5.1" | |
| 4350 | + source-map-support "^0.5.6" | |
| 4351 | + throat "^6.0.1" | |
| 4352 | + | |
| 4353 | +jest-runtime@^27.5.1: | |
| 4354 | + version "27.5.1" | |
| 4355 | + resolved "https://registry.npmmirror.com/jest-runtime/-/jest-runtime-27.5.1.tgz" | |
| 4356 | + integrity sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A== | |
| 4352 | 4357 | dependencies: |
| 4353 | 4358 | "@jest/environment" "^27.5.1" |
| 4354 | 4359 | "@jest/fake-timers" "^27.5.1" |
| ... | ... | @@ -4357,34 +4362,34 @@ |
| 4357 | 4362 | "@jest/test-result" "^27.5.1" |
| 4358 | 4363 | "@jest/transform" "^27.5.1" |
| 4359 | 4364 | "@jest/types" "^27.5.1" |
| 4360 | - "chalk" "^4.0.0" | |
| 4361 | - "cjs-module-lexer" "^1.0.0" | |
| 4362 | - "collect-v8-coverage" "^1.0.0" | |
| 4363 | - "execa" "^5.0.0" | |
| 4364 | - "glob" "^7.1.3" | |
| 4365 | - "graceful-fs" "^4.2.9" | |
| 4366 | - "jest-haste-map" "^27.5.1" | |
| 4367 | - "jest-message-util" "^27.5.1" | |
| 4368 | - "jest-mock" "^27.5.1" | |
| 4369 | - "jest-regex-util" "^27.5.1" | |
| 4370 | - "jest-resolve" "^27.5.1" | |
| 4371 | - "jest-snapshot" "^27.5.1" | |
| 4372 | - "jest-util" "^27.5.1" | |
| 4373 | - "slash" "^3.0.0" | |
| 4374 | - "strip-bom" "^4.0.0" | |
| 4375 | - | |
| 4376 | -"jest-serializer@^27.5.1": | |
| 4377 | - "integrity" "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==" | |
| 4378 | - "resolved" "https://registry.npmmirror.com/jest-serializer/-/jest-serializer-27.5.1.tgz" | |
| 4379 | - "version" "27.5.1" | |
| 4365 | + chalk "^4.0.0" | |
| 4366 | + cjs-module-lexer "^1.0.0" | |
| 4367 | + collect-v8-coverage "^1.0.0" | |
| 4368 | + execa "^5.0.0" | |
| 4369 | + glob "^7.1.3" | |
| 4370 | + graceful-fs "^4.2.9" | |
| 4371 | + jest-haste-map "^27.5.1" | |
| 4372 | + jest-message-util "^27.5.1" | |
| 4373 | + jest-mock "^27.5.1" | |
| 4374 | + jest-regex-util "^27.5.1" | |
| 4375 | + jest-resolve "^27.5.1" | |
| 4376 | + jest-snapshot "^27.5.1" | |
| 4377 | + jest-util "^27.5.1" | |
| 4378 | + slash "^3.0.0" | |
| 4379 | + strip-bom "^4.0.0" | |
| 4380 | + | |
| 4381 | +jest-serializer@^27.5.1: | |
| 4382 | + version "27.5.1" | |
| 4383 | + resolved "https://registry.npmmirror.com/jest-serializer/-/jest-serializer-27.5.1.tgz" | |
| 4384 | + integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w== | |
| 4380 | 4385 | dependencies: |
| 4381 | 4386 | "@types/node" "*" |
| 4382 | - "graceful-fs" "^4.2.9" | |
| 4387 | + graceful-fs "^4.2.9" | |
| 4383 | 4388 | |
| 4384 | -"jest-snapshot@^27.5.1": | |
| 4385 | - "integrity" "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==" | |
| 4386 | - "resolved" "https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz" | |
| 4387 | - "version" "27.5.1" | |
| 4389 | +jest-snapshot@^27.5.1: | |
| 4390 | + version "27.5.1" | |
| 4391 | + resolved "https://registry.npmmirror.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz" | |
| 4392 | + integrity sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA== | |
| 4388 | 4393 | dependencies: |
| 4389 | 4394 | "@babel/core" "^7.7.2" |
| 4390 | 4395 | "@babel/generator" "^7.7.2" |
| ... | ... | @@ -4395,1614 +4400,1614 @@ |
| 4395 | 4400 | "@jest/types" "^27.5.1" |
| 4396 | 4401 | "@types/babel__traverse" "^7.0.4" |
| 4397 | 4402 | "@types/prettier" "^2.1.5" |
| 4398 | - "babel-preset-current-node-syntax" "^1.0.0" | |
| 4399 | - "chalk" "^4.0.0" | |
| 4400 | - "expect" "^27.5.1" | |
| 4401 | - "graceful-fs" "^4.2.9" | |
| 4402 | - "jest-diff" "^27.5.1" | |
| 4403 | - "jest-get-type" "^27.5.1" | |
| 4404 | - "jest-haste-map" "^27.5.1" | |
| 4405 | - "jest-matcher-utils" "^27.5.1" | |
| 4406 | - "jest-message-util" "^27.5.1" | |
| 4407 | - "jest-util" "^27.5.1" | |
| 4408 | - "natural-compare" "^1.4.0" | |
| 4409 | - "pretty-format" "^27.5.1" | |
| 4410 | - "semver" "^7.3.2" | |
| 4411 | - | |
| 4412 | -"jest-util@^27.5.1": | |
| 4413 | - "integrity" "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==" | |
| 4414 | - "resolved" "https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz" | |
| 4415 | - "version" "27.5.1" | |
| 4403 | + babel-preset-current-node-syntax "^1.0.0" | |
| 4404 | + chalk "^4.0.0" | |
| 4405 | + expect "^27.5.1" | |
| 4406 | + graceful-fs "^4.2.9" | |
| 4407 | + jest-diff "^27.5.1" | |
| 4408 | + jest-get-type "^27.5.1" | |
| 4409 | + jest-haste-map "^27.5.1" | |
| 4410 | + jest-matcher-utils "^27.5.1" | |
| 4411 | + jest-message-util "^27.5.1" | |
| 4412 | + jest-util "^27.5.1" | |
| 4413 | + natural-compare "^1.4.0" | |
| 4414 | + pretty-format "^27.5.1" | |
| 4415 | + semver "^7.3.2" | |
| 4416 | + | |
| 4417 | +jest-util@^27.5.1: | |
| 4418 | + version "27.5.1" | |
| 4419 | + resolved "https://registry.npmmirror.com/jest-util/-/jest-util-27.5.1.tgz" | |
| 4420 | + integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw== | |
| 4416 | 4421 | dependencies: |
| 4417 | 4422 | "@jest/types" "^27.5.1" |
| 4418 | 4423 | "@types/node" "*" |
| 4419 | - "chalk" "^4.0.0" | |
| 4420 | - "ci-info" "^3.2.0" | |
| 4421 | - "graceful-fs" "^4.2.9" | |
| 4422 | - "picomatch" "^2.2.3" | |
| 4424 | + chalk "^4.0.0" | |
| 4425 | + ci-info "^3.2.0" | |
| 4426 | + graceful-fs "^4.2.9" | |
| 4427 | + picomatch "^2.2.3" | |
| 4423 | 4428 | |
| 4424 | -"jest-validate@^27.5.1": | |
| 4425 | - "integrity" "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==" | |
| 4426 | - "resolved" "https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz" | |
| 4427 | - "version" "27.5.1" | |
| 4429 | +jest-validate@^27.5.1: | |
| 4430 | + version "27.5.1" | |
| 4431 | + resolved "https://registry.npmmirror.com/jest-validate/-/jest-validate-27.5.1.tgz" | |
| 4432 | + integrity sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ== | |
| 4428 | 4433 | dependencies: |
| 4429 | 4434 | "@jest/types" "^27.5.1" |
| 4430 | - "camelcase" "^6.2.0" | |
| 4431 | - "chalk" "^4.0.0" | |
| 4432 | - "jest-get-type" "^27.5.1" | |
| 4433 | - "leven" "^3.1.0" | |
| 4434 | - "pretty-format" "^27.5.1" | |
| 4435 | + camelcase "^6.2.0" | |
| 4436 | + chalk "^4.0.0" | |
| 4437 | + jest-get-type "^27.5.1" | |
| 4438 | + leven "^3.1.0" | |
| 4439 | + pretty-format "^27.5.1" | |
| 4435 | 4440 | |
| 4436 | -"jest-watcher@^27.5.1": | |
| 4437 | - "integrity" "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==" | |
| 4438 | - "resolved" "https://registry.npmmirror.com/jest-watcher/-/jest-watcher-27.5.1.tgz" | |
| 4439 | - "version" "27.5.1" | |
| 4441 | +jest-watcher@^27.5.1: | |
| 4442 | + version "27.5.1" | |
| 4443 | + resolved "https://registry.npmmirror.com/jest-watcher/-/jest-watcher-27.5.1.tgz" | |
| 4444 | + integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw== | |
| 4440 | 4445 | dependencies: |
| 4441 | 4446 | "@jest/test-result" "^27.5.1" |
| 4442 | 4447 | "@jest/types" "^27.5.1" |
| 4443 | 4448 | "@types/node" "*" |
| 4444 | - "ansi-escapes" "^4.2.1" | |
| 4445 | - "chalk" "^4.0.0" | |
| 4446 | - "jest-util" "^27.5.1" | |
| 4447 | - "string-length" "^4.0.1" | |
| 4449 | + ansi-escapes "^4.2.1" | |
| 4450 | + chalk "^4.0.0" | |
| 4451 | + jest-util "^27.5.1" | |
| 4452 | + string-length "^4.0.1" | |
| 4448 | 4453 | |
| 4449 | -"jest-worker@^27.4.5", "jest-worker@^27.5.1": | |
| 4450 | - "integrity" "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" | |
| 4451 | - "resolved" "https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz" | |
| 4452 | - "version" "27.5.1" | |
| 4454 | +jest-worker@^27.4.5, jest-worker@^27.5.1: | |
| 4455 | + version "27.5.1" | |
| 4456 | + resolved "https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz" | |
| 4457 | + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== | |
| 4453 | 4458 | dependencies: |
| 4454 | 4459 | "@types/node" "*" |
| 4455 | - "merge-stream" "^2.0.0" | |
| 4456 | - "supports-color" "^8.0.0" | |
| 4460 | + merge-stream "^2.0.0" | |
| 4461 | + supports-color "^8.0.0" | |
| 4457 | 4462 | |
| 4458 | -"jest@27.0.4": | |
| 4459 | - "integrity" "sha512-Px1iKFooXgGSkk1H8dJxxBIrM3tsc5SIuI4kfKYK2J+4rvCvPGr/cXktxh0e9zIPQ5g09kOMNfHQEmusBUf/ZA==" | |
| 4460 | - "resolved" "https://registry.npmmirror.com/jest/-/jest-27.0.4.tgz" | |
| 4461 | - "version" "27.0.4" | |
| 4463 | +jest@27.0.4: | |
| 4464 | + version "27.0.4" | |
| 4465 | + resolved "https://registry.npmmirror.com/jest/-/jest-27.0.4.tgz" | |
| 4466 | + integrity sha512-Px1iKFooXgGSkk1H8dJxxBIrM3tsc5SIuI4kfKYK2J+4rvCvPGr/cXktxh0e9zIPQ5g09kOMNfHQEmusBUf/ZA== | |
| 4462 | 4467 | dependencies: |
| 4463 | 4468 | "@jest/core" "^27.0.4" |
| 4464 | - "import-local" "^3.0.2" | |
| 4465 | - "jest-cli" "^27.0.4" | |
| 4469 | + import-local "^3.0.2" | |
| 4470 | + jest-cli "^27.0.4" | |
| 4466 | 4471 | |
| 4467 | -"jimp@^0.10.1": | |
| 4468 | - "integrity" "sha512-meVWmDMtyUG5uYjFkmzu0zBgnCvvxwWNi27c4cg55vWNVC9ES4Lcwb+ogx+uBBQE3Q+dLKjXaLl0JVW+nUNwbQ==" | |
| 4469 | - "resolved" "https://registry.npmmirror.com/jimp/-/jimp-0.10.3.tgz" | |
| 4470 | - "version" "0.10.3" | |
| 4472 | +jimp@^0.10.1: | |
| 4473 | + version "0.10.3" | |
| 4474 | + resolved "https://registry.npmmirror.com/jimp/-/jimp-0.10.3.tgz" | |
| 4475 | + integrity sha512-meVWmDMtyUG5uYjFkmzu0zBgnCvvxwWNi27c4cg55vWNVC9ES4Lcwb+ogx+uBBQE3Q+dLKjXaLl0JVW+nUNwbQ== | |
| 4471 | 4476 | dependencies: |
| 4472 | 4477 | "@babel/runtime" "^7.7.2" |
| 4473 | 4478 | "@jimp/custom" "^0.10.3" |
| 4474 | 4479 | "@jimp/plugins" "^0.10.3" |
| 4475 | 4480 | "@jimp/types" "^0.10.3" |
| 4476 | - "core-js" "^3.4.1" | |
| 4477 | - "regenerator-runtime" "^0.13.3" | |
| 4478 | - | |
| 4479 | -"jpeg-js@^0.3.4": | |
| 4480 | - "integrity" "sha512-9IXdWudL61npZjvLuVe/ktHiA41iE8qFyLB+4VDTblEsWBzeg8WQTlktdUK4CdncUqtUgUg0bbOmTE2bKBKaBQ==" | |
| 4481 | - "resolved" "https://registry.npmmirror.com/jpeg-js/-/jpeg-js-0.3.7.tgz" | |
| 4482 | - "version" "0.3.7" | |
| 4483 | - | |
| 4484 | -"js-md5@^0.8.3": | |
| 4485 | - "integrity" "sha512-qR0HB5uP6wCuRMrWPTrkMaev7MJZwJuuw4fnwAzRgP4J4/F8RwtodOKpGp4XpqsLBFzzgqIO42efFAyz2Et6KQ==" | |
| 4486 | - "resolved" "https://registry.npmmirror.com/js-md5/-/js-md5-0.8.3.tgz" | |
| 4487 | - "version" "0.8.3" | |
| 4488 | - | |
| 4489 | -"js-tokens@^4.0.0": | |
| 4490 | - "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" | |
| 4491 | - "resolved" "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz" | |
| 4492 | - "version" "4.0.0" | |
| 4493 | - | |
| 4494 | -"js-yaml@^3.13.1": | |
| 4495 | - "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" | |
| 4496 | - "resolved" "https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz" | |
| 4497 | - "version" "3.14.1" | |
| 4498 | - dependencies: | |
| 4499 | - "argparse" "^1.0.7" | |
| 4500 | - "esprima" "^4.0.0" | |
| 4501 | - | |
| 4502 | -"jsdom@^16.6.0": | |
| 4503 | - "integrity" "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==" | |
| 4504 | - "resolved" "https://registry.npmmirror.com/jsdom/-/jsdom-16.7.0.tgz" | |
| 4505 | - "version" "16.7.0" | |
| 4506 | - dependencies: | |
| 4507 | - "abab" "^2.0.5" | |
| 4508 | - "acorn" "^8.2.4" | |
| 4509 | - "acorn-globals" "^6.0.0" | |
| 4510 | - "cssom" "^0.4.4" | |
| 4511 | - "cssstyle" "^2.3.0" | |
| 4512 | - "data-urls" "^2.0.0" | |
| 4513 | - "decimal.js" "^10.2.1" | |
| 4514 | - "domexception" "^2.0.1" | |
| 4515 | - "escodegen" "^2.0.0" | |
| 4516 | - "form-data" "^3.0.0" | |
| 4517 | - "html-encoding-sniffer" "^2.0.1" | |
| 4518 | - "http-proxy-agent" "^4.0.1" | |
| 4519 | - "https-proxy-agent" "^5.0.0" | |
| 4520 | - "is-potential-custom-element-name" "^1.0.1" | |
| 4521 | - "nwsapi" "^2.2.0" | |
| 4522 | - "parse5" "6.0.1" | |
| 4523 | - "saxes" "^5.0.1" | |
| 4524 | - "symbol-tree" "^3.2.4" | |
| 4525 | - "tough-cookie" "^4.0.0" | |
| 4526 | - "w3c-hr-time" "^1.0.2" | |
| 4527 | - "w3c-xmlserializer" "^2.0.0" | |
| 4528 | - "webidl-conversions" "^6.1.0" | |
| 4529 | - "whatwg-encoding" "^1.0.5" | |
| 4530 | - "whatwg-mimetype" "^2.3.0" | |
| 4531 | - "whatwg-url" "^8.5.0" | |
| 4532 | - "ws" "^7.4.6" | |
| 4533 | - "xml-name-validator" "^3.0.0" | |
| 4534 | - | |
| 4535 | -"jsesc@^2.5.1": | |
| 4536 | - "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" | |
| 4537 | - "resolved" "https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz" | |
| 4538 | - "version" "2.5.2" | |
| 4539 | - | |
| 4540 | -"jsesc@~0.5.0": | |
| 4541 | - "integrity" "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" | |
| 4542 | - "resolved" "https://registry.npmmirror.com/jsesc/-/jsesc-0.5.0.tgz" | |
| 4543 | - "version" "0.5.0" | |
| 4544 | - | |
| 4545 | -"json-parse-even-better-errors@^2.3.0", "json-parse-even-better-errors@^2.3.1": | |
| 4546 | - "integrity" "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" | |
| 4547 | - "resolved" "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" | |
| 4548 | - "version" "2.3.1" | |
| 4549 | - | |
| 4550 | -"json-schema-traverse@^0.4.1": | |
| 4551 | - "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" | |
| 4552 | - "resolved" "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" | |
| 4553 | - "version" "0.4.1" | |
| 4554 | - | |
| 4555 | -"json5@^2.2.3": | |
| 4556 | - "integrity" "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" | |
| 4557 | - "resolved" "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz" | |
| 4558 | - "version" "2.2.3" | |
| 4559 | - | |
| 4560 | -"jsonc-parser@^3.0.0", "jsonc-parser@^3.2.0": | |
| 4561 | - "integrity" "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" | |
| 4562 | - "resolved" "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz" | |
| 4563 | - "version" "3.2.0" | |
| 4564 | - | |
| 4565 | -"jsonfile@^6.0.1": | |
| 4566 | - "integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" | |
| 4567 | - "resolved" "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz" | |
| 4568 | - "version" "6.1.0" | |
| 4569 | - dependencies: | |
| 4570 | - "universalify" "^2.0.0" | |
| 4481 | + core-js "^3.4.1" | |
| 4482 | + regenerator-runtime "^0.13.3" | |
| 4483 | + | |
| 4484 | +jpeg-js@^0.3.4: | |
| 4485 | + version "0.3.7" | |
| 4486 | + resolved "https://registry.npmmirror.com/jpeg-js/-/jpeg-js-0.3.7.tgz" | |
| 4487 | + integrity sha512-9IXdWudL61npZjvLuVe/ktHiA41iE8qFyLB+4VDTblEsWBzeg8WQTlktdUK4CdncUqtUgUg0bbOmTE2bKBKaBQ== | |
| 4488 | + | |
| 4489 | +js-md5@^0.8.3: | |
| 4490 | + version "0.8.3" | |
| 4491 | + resolved "https://registry.npmmirror.com/js-md5/-/js-md5-0.8.3.tgz" | |
| 4492 | + integrity sha512-qR0HB5uP6wCuRMrWPTrkMaev7MJZwJuuw4fnwAzRgP4J4/F8RwtodOKpGp4XpqsLBFzzgqIO42efFAyz2Et6KQ== | |
| 4493 | + | |
| 4494 | +js-tokens@^4.0.0: | |
| 4495 | + version "4.0.0" | |
| 4496 | + resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz" | |
| 4497 | + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== | |
| 4498 | + | |
| 4499 | +js-yaml@^3.13.1: | |
| 4500 | + version "3.14.1" | |
| 4501 | + resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz" | |
| 4502 | + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== | |
| 4503 | + dependencies: | |
| 4504 | + argparse "^1.0.7" | |
| 4505 | + esprima "^4.0.0" | |
| 4506 | + | |
| 4507 | +jsdom@^16.6.0: | |
| 4508 | + version "16.7.0" | |
| 4509 | + resolved "https://registry.npmmirror.com/jsdom/-/jsdom-16.7.0.tgz" | |
| 4510 | + integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== | |
| 4511 | + dependencies: | |
| 4512 | + abab "^2.0.5" | |
| 4513 | + acorn "^8.2.4" | |
| 4514 | + acorn-globals "^6.0.0" | |
| 4515 | + cssom "^0.4.4" | |
| 4516 | + cssstyle "^2.3.0" | |
| 4517 | + data-urls "^2.0.0" | |
| 4518 | + decimal.js "^10.2.1" | |
| 4519 | + domexception "^2.0.1" | |
| 4520 | + escodegen "^2.0.0" | |
| 4521 | + form-data "^3.0.0" | |
| 4522 | + html-encoding-sniffer "^2.0.1" | |
| 4523 | + http-proxy-agent "^4.0.1" | |
| 4524 | + https-proxy-agent "^5.0.0" | |
| 4525 | + is-potential-custom-element-name "^1.0.1" | |
| 4526 | + nwsapi "^2.2.0" | |
| 4527 | + parse5 "6.0.1" | |
| 4528 | + saxes "^5.0.1" | |
| 4529 | + symbol-tree "^3.2.4" | |
| 4530 | + tough-cookie "^4.0.0" | |
| 4531 | + w3c-hr-time "^1.0.2" | |
| 4532 | + w3c-xmlserializer "^2.0.0" | |
| 4533 | + webidl-conversions "^6.1.0" | |
| 4534 | + whatwg-encoding "^1.0.5" | |
| 4535 | + whatwg-mimetype "^2.3.0" | |
| 4536 | + whatwg-url "^8.5.0" | |
| 4537 | + ws "^7.4.6" | |
| 4538 | + xml-name-validator "^3.0.0" | |
| 4539 | + | |
| 4540 | +jsesc@^2.5.1: | |
| 4541 | + version "2.5.2" | |
| 4542 | + resolved "https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz" | |
| 4543 | + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== | |
| 4544 | + | |
| 4545 | +jsesc@~0.5.0: | |
| 4546 | + version "0.5.0" | |
| 4547 | + resolved "https://registry.npmmirror.com/jsesc/-/jsesc-0.5.0.tgz" | |
| 4548 | + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== | |
| 4549 | + | |
| 4550 | +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: | |
| 4551 | + version "2.3.1" | |
| 4552 | + resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" | |
| 4553 | + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== | |
| 4554 | + | |
| 4555 | +json-schema-traverse@^0.4.1: | |
| 4556 | + version "0.4.1" | |
| 4557 | + resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" | |
| 4558 | + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== | |
| 4559 | + | |
| 4560 | +json5@^2.2.3: | |
| 4561 | + version "2.2.3" | |
| 4562 | + resolved "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz" | |
| 4563 | + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== | |
| 4564 | + | |
| 4565 | +jsonc-parser@^3.0.0, jsonc-parser@^3.2.0: | |
| 4566 | + version "3.2.0" | |
| 4567 | + resolved "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz" | |
| 4568 | + integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== | |
| 4569 | + | |
| 4570 | +jsonfile@^6.0.1: | |
| 4571 | + version "6.1.0" | |
| 4572 | + resolved "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz" | |
| 4573 | + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== | |
| 4574 | + dependencies: | |
| 4575 | + universalify "^2.0.0" | |
| 4571 | 4576 | optionalDependencies: |
| 4572 | - "graceful-fs" "^4.1.6" | |
| 4573 | - | |
| 4574 | -"jsqr@^1.3.1", "jsqr@^1.4.0": | |
| 4575 | - "integrity" "sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A==" | |
| 4576 | - "resolved" "https://registry.npmmirror.com/jsqr/-/jsqr-1.4.0.tgz" | |
| 4577 | - "version" "1.4.0" | |
| 4578 | - | |
| 4579 | -"kleur@^3.0.3": | |
| 4580 | - "integrity" "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" | |
| 4581 | - "resolved" "https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz" | |
| 4582 | - "version" "3.0.3" | |
| 4583 | - | |
| 4584 | -"klona@^2.0.4": | |
| 4585 | - "integrity" "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" | |
| 4586 | - "resolved" "https://registry.npmmirror.com/klona/-/klona-2.0.6.tgz" | |
| 4587 | - "version" "2.0.6" | |
| 4588 | - | |
| 4589 | -"lcid@^3.0.0": | |
| 4590 | - "integrity" "sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==" | |
| 4591 | - "resolved" "https://registry.npmmirror.com/lcid/-/lcid-3.1.1.tgz" | |
| 4592 | - "version" "3.1.1" | |
| 4593 | - dependencies: | |
| 4594 | - "invert-kv" "^3.0.0" | |
| 4595 | - | |
| 4596 | -"leven@^3.1.0": | |
| 4597 | - "integrity" "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" | |
| 4598 | - "resolved" "https://registry.npmmirror.com/leven/-/leven-3.1.0.tgz" | |
| 4599 | - "version" "3.1.0" | |
| 4600 | - | |
| 4601 | -"licia@^1.29.0": | |
| 4602 | - "integrity" "sha512-QsX3fZt88e1KaNdZXTSXqGYNHFXMV8xgfwa3eCTYdv8k4OLQimxwjTdXXej11BdSyUUp0rCZROI8rcTvnZRZ7w==" | |
| 4603 | - "resolved" "https://registry.npmmirror.com/licia/-/licia-1.38.2.tgz" | |
| 4604 | - "version" "1.38.2" | |
| 4605 | - | |
| 4606 | -"lilconfig@^2.0.5": | |
| 4607 | - "integrity" "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" | |
| 4608 | - "resolved" "https://registry.npmmirror.com/lilconfig/-/lilconfig-2.1.0.tgz" | |
| 4609 | - "version" "2.1.0" | |
| 4610 | - | |
| 4611 | -"lines-and-columns@^1.1.6": | |
| 4612 | - "integrity" "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" | |
| 4613 | - "resolved" "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz" | |
| 4614 | - "version" "1.2.4" | |
| 4615 | - | |
| 4616 | -"load-bmfont@^1.3.1", "load-bmfont@^1.4.0": | |
| 4617 | - "integrity" "sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==" | |
| 4618 | - "resolved" "https://registry.npmmirror.com/load-bmfont/-/load-bmfont-1.4.1.tgz" | |
| 4619 | - "version" "1.4.1" | |
| 4620 | - dependencies: | |
| 4621 | - "buffer-equal" "0.0.1" | |
| 4622 | - "mime" "^1.3.4" | |
| 4623 | - "parse-bmfont-ascii" "^1.0.3" | |
| 4624 | - "parse-bmfont-binary" "^1.0.5" | |
| 4625 | - "parse-bmfont-xml" "^1.1.4" | |
| 4626 | - "phin" "^2.9.1" | |
| 4627 | - "xhr" "^2.0.1" | |
| 4628 | - "xtend" "^4.0.0" | |
| 4629 | - | |
| 4630 | -"loader-runner@^4.2.0": | |
| 4631 | - "integrity" "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" | |
| 4632 | - "resolved" "https://registry.npmmirror.com/loader-runner/-/loader-runner-4.3.0.tgz" | |
| 4633 | - "version" "4.3.0" | |
| 4634 | - | |
| 4635 | -"loader-utils@^3.2.0": | |
| 4636 | - "integrity" "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" | |
| 4637 | - "resolved" "https://registry.npmmirror.com/loader-utils/-/loader-utils-3.2.1.tgz" | |
| 4638 | - "version" "3.2.1" | |
| 4639 | - | |
| 4640 | -"localstorage-polyfill@^1.0.1": | |
| 4641 | - "integrity" "sha512-m4iHVZxFH5734oQcPKU08025gIz2+4bjWR9lulP8ZYxEJR0BpA0w32oJmkzh8y3UI9ci7xCBehQDc3oA1X+VHw==" | |
| 4642 | - "resolved" "https://registry.npmmirror.com/localstorage-polyfill/-/localstorage-polyfill-1.0.1.tgz" | |
| 4643 | - "version" "1.0.1" | |
| 4644 | - | |
| 4645 | -"locate-path@^5.0.0": | |
| 4646 | - "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" | |
| 4647 | - "resolved" "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz" | |
| 4648 | - "version" "5.0.0" | |
| 4649 | - dependencies: | |
| 4650 | - "p-locate" "^4.1.0" | |
| 4651 | - | |
| 4652 | -"lodash.camelcase@^4.3.0": | |
| 4653 | - "integrity" "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" | |
| 4654 | - "resolved" "https://registry.npmmirror.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz" | |
| 4655 | - "version" "4.3.0" | |
| 4656 | - | |
| 4657 | -"lodash.debounce@^4.0.8": | |
| 4658 | - "integrity" "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" | |
| 4659 | - "resolved" "https://registry.npmmirror.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz" | |
| 4660 | - "version" "4.0.8" | |
| 4661 | - | |
| 4662 | -"lodash@^4.7.0": | |
| 4663 | - "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" | |
| 4664 | - "resolved" "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz" | |
| 4665 | - "version" "4.17.21" | |
| 4666 | - | |
| 4667 | -"lru-cache@^5.1.1": | |
| 4668 | - "integrity" "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" | |
| 4669 | - "resolved" "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz" | |
| 4670 | - "version" "5.1.1" | |
| 4671 | - dependencies: | |
| 4672 | - "yallist" "^3.0.2" | |
| 4673 | - | |
| 4674 | -"lru-cache@^6.0.0": | |
| 4675 | - "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" | |
| 4676 | - "resolved" "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz" | |
| 4677 | - "version" "6.0.0" | |
| 4678 | - dependencies: | |
| 4679 | - "yallist" "^4.0.0" | |
| 4680 | - | |
| 4681 | -"magic-string@^0.25.7": | |
| 4682 | - "integrity" "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==" | |
| 4683 | - "resolved" "https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz" | |
| 4684 | - "version" "0.25.9" | |
| 4685 | - dependencies: | |
| 4686 | - "sourcemap-codec" "^1.4.8" | |
| 4687 | - | |
| 4688 | -"magic-string@^0.30.0", "magic-string@^0.30.1": | |
| 4689 | - "integrity" "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==" | |
| 4690 | - "resolved" "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.5.tgz" | |
| 4691 | - "version" "0.30.5" | |
| 4577 | + graceful-fs "^4.1.6" | |
| 4578 | + | |
| 4579 | +jsqr@^1.3.1, jsqr@^1.4.0: | |
| 4580 | + version "1.4.0" | |
| 4581 | + resolved "https://registry.npmmirror.com/jsqr/-/jsqr-1.4.0.tgz" | |
| 4582 | + integrity sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A== | |
| 4583 | + | |
| 4584 | +kleur@^3.0.3: | |
| 4585 | + version "3.0.3" | |
| 4586 | + resolved "https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz" | |
| 4587 | + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== | |
| 4588 | + | |
| 4589 | +klona@^2.0.4: | |
| 4590 | + version "2.0.6" | |
| 4591 | + resolved "https://registry.npmmirror.com/klona/-/klona-2.0.6.tgz" | |
| 4592 | + integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== | |
| 4593 | + | |
| 4594 | +lcid@^3.0.0: | |
| 4595 | + version "3.1.1" | |
| 4596 | + resolved "https://registry.npmmirror.com/lcid/-/lcid-3.1.1.tgz" | |
| 4597 | + integrity sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg== | |
| 4598 | + dependencies: | |
| 4599 | + invert-kv "^3.0.0" | |
| 4600 | + | |
| 4601 | +leven@^3.1.0: | |
| 4602 | + version "3.1.0" | |
| 4603 | + resolved "https://registry.npmmirror.com/leven/-/leven-3.1.0.tgz" | |
| 4604 | + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== | |
| 4605 | + | |
| 4606 | +licia@^1.29.0: | |
| 4607 | + version "1.38.2" | |
| 4608 | + resolved "https://registry.npmmirror.com/licia/-/licia-1.38.2.tgz" | |
| 4609 | + integrity sha512-QsX3fZt88e1KaNdZXTSXqGYNHFXMV8xgfwa3eCTYdv8k4OLQimxwjTdXXej11BdSyUUp0rCZROI8rcTvnZRZ7w== | |
| 4610 | + | |
| 4611 | +lilconfig@^2.0.5: | |
| 4612 | + version "2.1.0" | |
| 4613 | + resolved "https://registry.npmmirror.com/lilconfig/-/lilconfig-2.1.0.tgz" | |
| 4614 | + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== | |
| 4615 | + | |
| 4616 | +lines-and-columns@^1.1.6: | |
| 4617 | + version "1.2.4" | |
| 4618 | + resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz" | |
| 4619 | + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== | |
| 4620 | + | |
| 4621 | +load-bmfont@^1.3.1, load-bmfont@^1.4.0: | |
| 4622 | + version "1.4.1" | |
| 4623 | + resolved "https://registry.npmmirror.com/load-bmfont/-/load-bmfont-1.4.1.tgz" | |
| 4624 | + integrity sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA== | |
| 4625 | + dependencies: | |
| 4626 | + buffer-equal "0.0.1" | |
| 4627 | + mime "^1.3.4" | |
| 4628 | + parse-bmfont-ascii "^1.0.3" | |
| 4629 | + parse-bmfont-binary "^1.0.5" | |
| 4630 | + parse-bmfont-xml "^1.1.4" | |
| 4631 | + phin "^2.9.1" | |
| 4632 | + xhr "^2.0.1" | |
| 4633 | + xtend "^4.0.0" | |
| 4634 | + | |
| 4635 | +loader-runner@^4.2.0: | |
| 4636 | + version "4.3.0" | |
| 4637 | + resolved "https://registry.npmmirror.com/loader-runner/-/loader-runner-4.3.0.tgz" | |
| 4638 | + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== | |
| 4639 | + | |
| 4640 | +loader-utils@^3.2.0: | |
| 4641 | + version "3.2.1" | |
| 4642 | + resolved "https://registry.npmmirror.com/loader-utils/-/loader-utils-3.2.1.tgz" | |
| 4643 | + integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== | |
| 4644 | + | |
| 4645 | +localstorage-polyfill@^1.0.1: | |
| 4646 | + version "1.0.1" | |
| 4647 | + resolved "https://registry.npmmirror.com/localstorage-polyfill/-/localstorage-polyfill-1.0.1.tgz" | |
| 4648 | + integrity sha512-m4iHVZxFH5734oQcPKU08025gIz2+4bjWR9lulP8ZYxEJR0BpA0w32oJmkzh8y3UI9ci7xCBehQDc3oA1X+VHw== | |
| 4649 | + | |
| 4650 | +locate-path@^5.0.0: | |
| 4651 | + version "5.0.0" | |
| 4652 | + resolved "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz" | |
| 4653 | + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== | |
| 4654 | + dependencies: | |
| 4655 | + p-locate "^4.1.0" | |
| 4656 | + | |
| 4657 | +lodash.camelcase@^4.3.0: | |
| 4658 | + version "4.3.0" | |
| 4659 | + resolved "https://registry.npmmirror.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz" | |
| 4660 | + integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== | |
| 4661 | + | |
| 4662 | +lodash.debounce@^4.0.8: | |
| 4663 | + version "4.0.8" | |
| 4664 | + resolved "https://registry.npmmirror.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz" | |
| 4665 | + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== | |
| 4666 | + | |
| 4667 | +lodash@^4.7.0: | |
| 4668 | + version "4.17.21" | |
| 4669 | + resolved "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz" | |
| 4670 | + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== | |
| 4671 | + | |
| 4672 | +lru-cache@^5.1.1: | |
| 4673 | + version "5.1.1" | |
| 4674 | + resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz" | |
| 4675 | + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== | |
| 4676 | + dependencies: | |
| 4677 | + yallist "^3.0.2" | |
| 4678 | + | |
| 4679 | +lru-cache@^6.0.0: | |
| 4680 | + version "6.0.0" | |
| 4681 | + resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz" | |
| 4682 | + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== | |
| 4683 | + dependencies: | |
| 4684 | + yallist "^4.0.0" | |
| 4685 | + | |
| 4686 | +magic-string@^0.25.7: | |
| 4687 | + version "0.25.9" | |
| 4688 | + resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz" | |
| 4689 | + integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== | |
| 4690 | + dependencies: | |
| 4691 | + sourcemap-codec "^1.4.8" | |
| 4692 | + | |
| 4693 | +magic-string@^0.30.0, magic-string@^0.30.1: | |
| 4694 | + version "0.30.5" | |
| 4695 | + resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.5.tgz" | |
| 4696 | + integrity sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA== | |
| 4692 | 4697 | dependencies: |
| 4693 | 4698 | "@jridgewell/sourcemap-codec" "^1.4.15" |
| 4694 | 4699 | |
| 4695 | -"make-dir@^4.0.0": | |
| 4696 | - "integrity" "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" | |
| 4697 | - "resolved" "https://registry.npmmirror.com/make-dir/-/make-dir-4.0.0.tgz" | |
| 4698 | - "version" "4.0.0" | |
| 4699 | - dependencies: | |
| 4700 | - "semver" "^7.5.3" | |
| 4701 | - | |
| 4702 | -"makeerror@1.0.12": | |
| 4703 | - "integrity" "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" | |
| 4704 | - "resolved" "https://registry.npmmirror.com/makeerror/-/makeerror-1.0.12.tgz" | |
| 4705 | - "version" "1.0.12" | |
| 4706 | - dependencies: | |
| 4707 | - "tmpl" "1.0.5" | |
| 4708 | - | |
| 4709 | -"math-intrinsics@^1.1.0": | |
| 4710 | - "integrity" "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" | |
| 4711 | - "resolved" "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz" | |
| 4712 | - "version" "1.1.0" | |
| 4713 | - | |
| 4714 | -"media-typer@0.3.0": | |
| 4715 | - "integrity" "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" | |
| 4716 | - "resolved" "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz" | |
| 4717 | - "version" "0.3.0" | |
| 4718 | - | |
| 4719 | -"merge-descriptors@1.0.1": | |
| 4720 | - "integrity" "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" | |
| 4721 | - "resolved" "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz" | |
| 4722 | - "version" "1.0.1" | |
| 4723 | - | |
| 4724 | -"merge-stream@^2.0.0": | |
| 4725 | - "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" | |
| 4726 | - "resolved" "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz" | |
| 4727 | - "version" "2.0.0" | |
| 4728 | - | |
| 4729 | -"merge@^2.1.1": | |
| 4730 | - "integrity" "sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==" | |
| 4731 | - "resolved" "https://registry.npmmirror.com/merge/-/merge-2.1.1.tgz" | |
| 4732 | - "version" "2.1.1" | |
| 4733 | - | |
| 4734 | -"merge2@^1.3.0": | |
| 4735 | - "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" | |
| 4736 | - "resolved" "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz" | |
| 4737 | - "version" "1.4.1" | |
| 4738 | - | |
| 4739 | -"methods@~1.1.2": | |
| 4740 | - "integrity" "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" | |
| 4741 | - "resolved" "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz" | |
| 4742 | - "version" "1.1.2" | |
| 4743 | - | |
| 4744 | -"micromatch@^4.0.4": | |
| 4745 | - "integrity" "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" | |
| 4746 | - "resolved" "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz" | |
| 4747 | - "version" "4.0.5" | |
| 4748 | - dependencies: | |
| 4749 | - "braces" "^3.0.2" | |
| 4750 | - "picomatch" "^2.3.1" | |
| 4751 | - | |
| 4752 | -"mime-db@1.52.0": | |
| 4753 | - "integrity" "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" | |
| 4754 | - "resolved" "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz" | |
| 4755 | - "version" "1.52.0" | |
| 4756 | - | |
| 4757 | -"mime-types@^2.1.12", "mime-types@^2.1.27", "mime-types@~2.1.24", "mime-types@~2.1.34": | |
| 4758 | - "integrity" "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" | |
| 4759 | - "resolved" "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz" | |
| 4760 | - "version" "2.1.35" | |
| 4761 | - dependencies: | |
| 4762 | - "mime-db" "1.52.0" | |
| 4763 | - | |
| 4764 | -"mime@^1.3.4", "mime@1.6.0": | |
| 4765 | - "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" | |
| 4766 | - "resolved" "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz" | |
| 4767 | - "version" "1.6.0" | |
| 4768 | - | |
| 4769 | -"mime@^3.0.0": | |
| 4770 | - "integrity" "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" | |
| 4771 | - "resolved" "https://registry.npmmirror.com/mime/-/mime-3.0.0.tgz" | |
| 4772 | - "version" "3.0.0" | |
| 4773 | - | |
| 4774 | -"mimic-fn@^2.1.0": | |
| 4775 | - "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" | |
| 4776 | - "resolved" "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz" | |
| 4777 | - "version" "2.1.0" | |
| 4778 | - | |
| 4779 | -"min-document@^2.19.0": | |
| 4780 | - "integrity" "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==" | |
| 4781 | - "resolved" "https://registry.npmmirror.com/min-document/-/min-document-2.19.0.tgz" | |
| 4782 | - "version" "2.19.0" | |
| 4783 | - dependencies: | |
| 4784 | - "dom-walk" "^0.1.0" | |
| 4785 | - | |
| 4786 | -"minimatch@^3.0.4", "minimatch@^3.1.1": | |
| 4787 | - "integrity" "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" | |
| 4788 | - "resolved" "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz" | |
| 4789 | - "version" "3.1.2" | |
| 4790 | - dependencies: | |
| 4791 | - "brace-expansion" "^1.1.7" | |
| 4792 | - | |
| 4793 | -"minimist@^1.2.6": | |
| 4794 | - "integrity" "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" | |
| 4795 | - "resolved" "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz" | |
| 4796 | - "version" "1.2.8" | |
| 4797 | - | |
| 4798 | -"mkdirp@^0.5.1": | |
| 4799 | - "integrity" "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" | |
| 4800 | - "resolved" "https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz" | |
| 4801 | - "version" "0.5.6" | |
| 4802 | - dependencies: | |
| 4803 | - "minimist" "^1.2.6" | |
| 4804 | - | |
| 4805 | -"module-alias@^2.2.2": | |
| 4806 | - "integrity" "sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==" | |
| 4807 | - "resolved" "https://registry.npmmirror.com/module-alias/-/module-alias-2.2.3.tgz" | |
| 4808 | - "version" "2.2.3" | |
| 4809 | - | |
| 4810 | -"ms@2.0.0": | |
| 4811 | - "integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" | |
| 4812 | - "resolved" "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz" | |
| 4813 | - "version" "2.0.0" | |
| 4814 | - | |
| 4815 | -"ms@2.1.2": | |
| 4816 | - "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" | |
| 4817 | - "resolved" "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz" | |
| 4818 | - "version" "2.1.2" | |
| 4819 | - | |
| 4820 | -"ms@2.1.3": | |
| 4821 | - "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" | |
| 4822 | - "resolved" "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz" | |
| 4823 | - "version" "2.1.3" | |
| 4824 | - | |
| 4825 | -"mutation-observer@^1.0.3": | |
| 4826 | - "integrity" "sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA==" | |
| 4827 | - "resolved" "https://registry.npmmirror.com/mutation-observer/-/mutation-observer-1.0.3.tgz" | |
| 4828 | - "version" "1.0.3" | |
| 4829 | - | |
| 4830 | -"nanoid@^3.3.6": | |
| 4831 | - "integrity" "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" | |
| 4832 | - "resolved" "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz" | |
| 4833 | - "version" "3.3.7" | |
| 4834 | - | |
| 4835 | -"natural-compare@^1.4.0": | |
| 4836 | - "integrity" "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" | |
| 4837 | - "resolved" "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz" | |
| 4838 | - "version" "1.4.0" | |
| 4839 | - | |
| 4840 | -"negotiator@0.6.3": | |
| 4841 | - "integrity" "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" | |
| 4842 | - "resolved" "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz" | |
| 4843 | - "version" "0.6.3" | |
| 4844 | - | |
| 4845 | -"neo-async@^2.6.2": | |
| 4846 | - "integrity" "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" | |
| 4847 | - "resolved" "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz" | |
| 4848 | - "version" "2.6.2" | |
| 4849 | - | |
| 4850 | -"node-int64@^0.4.0": | |
| 4851 | - "integrity" "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" | |
| 4852 | - "resolved" "https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz" | |
| 4853 | - "version" "0.4.0" | |
| 4854 | - | |
| 4855 | -"node-releases@^2.0.13": | |
| 4856 | - "integrity" "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" | |
| 4857 | - "resolved" "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz" | |
| 4858 | - "version" "2.0.13" | |
| 4859 | - | |
| 4860 | -"normalize-path@^3.0.0", "normalize-path@~3.0.0": | |
| 4861 | - "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" | |
| 4862 | - "resolved" "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz" | |
| 4863 | - "version" "3.0.0" | |
| 4864 | - | |
| 4865 | -"normalize-range@^0.1.2": | |
| 4866 | - "integrity" "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" | |
| 4867 | - "resolved" "https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz" | |
| 4868 | - "version" "0.1.2" | |
| 4869 | - | |
| 4870 | -"npm-run-path@^4.0.1": | |
| 4871 | - "integrity" "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" | |
| 4872 | - "resolved" "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz" | |
| 4873 | - "version" "4.0.1" | |
| 4874 | - dependencies: | |
| 4875 | - "path-key" "^3.0.0" | |
| 4876 | - | |
| 4877 | -"nwsapi@^2.2.0": | |
| 4878 | - "integrity" "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" | |
| 4879 | - "resolved" "https://registry.npmmirror.com/nwsapi/-/nwsapi-2.2.7.tgz" | |
| 4880 | - "version" "2.2.7" | |
| 4881 | - | |
| 4882 | -"object-inspect@^1.9.0": | |
| 4883 | - "integrity" "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" | |
| 4884 | - "resolved" "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.1.tgz" | |
| 4885 | - "version" "1.13.1" | |
| 4886 | - | |
| 4887 | -"omggif@^1.0.9": | |
| 4888 | - "integrity" "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" | |
| 4889 | - "resolved" "https://registry.npmmirror.com/omggif/-/omggif-1.0.10.tgz" | |
| 4890 | - "version" "1.0.10" | |
| 4891 | - | |
| 4892 | -"on-finished@2.4.1": | |
| 4893 | - "integrity" "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" | |
| 4894 | - "resolved" "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz" | |
| 4895 | - "version" "2.4.1" | |
| 4896 | - dependencies: | |
| 4897 | - "ee-first" "1.1.1" | |
| 4898 | - | |
| 4899 | -"once@^1.3.0": | |
| 4900 | - "integrity" "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" | |
| 4901 | - "resolved" "https://registry.npmmirror.com/once/-/once-1.4.0.tgz" | |
| 4902 | - "version" "1.4.0" | |
| 4903 | - dependencies: | |
| 4904 | - "wrappy" "1" | |
| 4905 | - | |
| 4906 | -"onetime@^5.1.2": | |
| 4907 | - "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" | |
| 4908 | - "resolved" "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz" | |
| 4909 | - "version" "5.1.2" | |
| 4910 | - dependencies: | |
| 4911 | - "mimic-fn" "^2.1.0" | |
| 4912 | - | |
| 4913 | -"os-locale-s-fix@^1.0.8-fix-1": | |
| 4914 | - "integrity" "sha512-Sv0OvhPiMutICiwORAUefv02DCPb62IelBmo8ZsSrRHyI3FStqIWZvjqDkvtjU+lcujo7UNir+dCwKSqlEQ/5w==" | |
| 4915 | - "resolved" "https://registry.npmmirror.com/os-locale-s-fix/-/os-locale-s-fix-1.0.8-fix-1.tgz" | |
| 4916 | - "version" "1.0.8-fix-1" | |
| 4917 | - dependencies: | |
| 4918 | - "lcid" "^3.0.0" | |
| 4919 | - | |
| 4920 | -"p-limit@^2.2.0": | |
| 4921 | - "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" | |
| 4922 | - "resolved" "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz" | |
| 4923 | - "version" "2.3.0" | |
| 4924 | - dependencies: | |
| 4925 | - "p-try" "^2.0.0" | |
| 4926 | - | |
| 4927 | -"p-locate@^4.1.0": | |
| 4928 | - "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" | |
| 4929 | - "resolved" "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz" | |
| 4930 | - "version" "4.1.0" | |
| 4931 | - dependencies: | |
| 4932 | - "p-limit" "^2.2.0" | |
| 4933 | - | |
| 4934 | -"p-try@^2.0.0": | |
| 4935 | - "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" | |
| 4936 | - "resolved" "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz" | |
| 4937 | - "version" "2.2.0" | |
| 4938 | - | |
| 4939 | -"pako@^1.0.5": | |
| 4940 | - "integrity" "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" | |
| 4941 | - "resolved" "https://registry.npmmirror.com/pako/-/pako-1.0.11.tgz" | |
| 4942 | - "version" "1.0.11" | |
| 4943 | - | |
| 4944 | -"parse-bmfont-ascii@^1.0.3": | |
| 4945 | - "integrity" "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==" | |
| 4946 | - "resolved" "https://registry.npmmirror.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz" | |
| 4947 | - "version" "1.0.6" | |
| 4948 | - | |
| 4949 | -"parse-bmfont-binary@^1.0.5": | |
| 4950 | - "integrity" "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==" | |
| 4951 | - "resolved" "https://registry.npmmirror.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz" | |
| 4952 | - "version" "1.0.6" | |
| 4953 | - | |
| 4954 | -"parse-bmfont-xml@^1.1.4": | |
| 4955 | - "integrity" "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==" | |
| 4956 | - "resolved" "https://registry.npmmirror.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz" | |
| 4957 | - "version" "1.1.4" | |
| 4958 | - dependencies: | |
| 4959 | - "xml-parse-from-string" "^1.0.0" | |
| 4960 | - "xml2js" "^0.4.5" | |
| 4961 | - | |
| 4962 | -"parse-css-font@^4.0.0": | |
| 4963 | - "integrity" "sha512-lnY7dTUfjRXsSo5G5C639L8RaBBaVSgL+5hacIFKsNHzeCJQ5SFSZv1DZmc7+wZv/22PFGOq2YbaEHLdaCS/mQ==" | |
| 4964 | - "resolved" "https://registry.npmmirror.com/parse-css-font/-/parse-css-font-4.0.0.tgz" | |
| 4965 | - "version" "4.0.0" | |
| 4966 | - dependencies: | |
| 4967 | - "css-font-size-keywords" "^1.0.0" | |
| 4968 | - "css-font-stretch-keywords" "^1.0.1" | |
| 4969 | - "css-font-style-keywords" "^1.0.1" | |
| 4970 | - "css-font-weight-keywords" "^1.0.0" | |
| 4971 | - "css-list-helpers" "^2.0.0" | |
| 4972 | - "css-system-font-keywords" "^1.0.0" | |
| 4973 | - "unquote" "^1.1.1" | |
| 4700 | +make-dir@^4.0.0: | |
| 4701 | + version "4.0.0" | |
| 4702 | + resolved "https://registry.npmmirror.com/make-dir/-/make-dir-4.0.0.tgz" | |
| 4703 | + integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== | |
| 4704 | + dependencies: | |
| 4705 | + semver "^7.5.3" | |
| 4706 | + | |
| 4707 | +makeerror@1.0.12: | |
| 4708 | + version "1.0.12" | |
| 4709 | + resolved "https://registry.npmmirror.com/makeerror/-/makeerror-1.0.12.tgz" | |
| 4710 | + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== | |
| 4711 | + dependencies: | |
| 4712 | + tmpl "1.0.5" | |
| 4713 | + | |
| 4714 | +math-intrinsics@^1.1.0: | |
| 4715 | + version "1.1.0" | |
| 4716 | + resolved "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz" | |
| 4717 | + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== | |
| 4718 | + | |
| 4719 | +media-typer@0.3.0: | |
| 4720 | + version "0.3.0" | |
| 4721 | + resolved "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz" | |
| 4722 | + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== | |
| 4723 | + | |
| 4724 | +merge-descriptors@1.0.1: | |
| 4725 | + version "1.0.1" | |
| 4726 | + resolved "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz" | |
| 4727 | + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== | |
| 4728 | + | |
| 4729 | +merge-stream@^2.0.0: | |
| 4730 | + version "2.0.0" | |
| 4731 | + resolved "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz" | |
| 4732 | + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== | |
| 4733 | + | |
| 4734 | +merge@^2.1.1: | |
| 4735 | + version "2.1.1" | |
| 4736 | + resolved "https://registry.npmmirror.com/merge/-/merge-2.1.1.tgz" | |
| 4737 | + integrity sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w== | |
| 4738 | + | |
| 4739 | +merge2@^1.3.0: | |
| 4740 | + version "1.4.1" | |
| 4741 | + resolved "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz" | |
| 4742 | + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== | |
| 4743 | + | |
| 4744 | +methods@~1.1.2: | |
| 4745 | + version "1.1.2" | |
| 4746 | + resolved "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz" | |
| 4747 | + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== | |
| 4748 | + | |
| 4749 | +micromatch@^4.0.4: | |
| 4750 | + version "4.0.5" | |
| 4751 | + resolved "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz" | |
| 4752 | + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== | |
| 4753 | + dependencies: | |
| 4754 | + braces "^3.0.2" | |
| 4755 | + picomatch "^2.3.1" | |
| 4756 | + | |
| 4757 | +mime-db@1.52.0: | |
| 4758 | + version "1.52.0" | |
| 4759 | + resolved "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz" | |
| 4760 | + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== | |
| 4761 | + | |
| 4762 | +mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.24, mime-types@~2.1.34: | |
| 4763 | + version "2.1.35" | |
| 4764 | + resolved "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz" | |
| 4765 | + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== | |
| 4766 | + dependencies: | |
| 4767 | + mime-db "1.52.0" | |
| 4768 | + | |
| 4769 | +mime@^1.3.4, mime@1.6.0: | |
| 4770 | + version "1.6.0" | |
| 4771 | + resolved "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz" | |
| 4772 | + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== | |
| 4773 | + | |
| 4774 | +mime@^3.0.0: | |
| 4775 | + version "3.0.0" | |
| 4776 | + resolved "https://registry.npmmirror.com/mime/-/mime-3.0.0.tgz" | |
| 4777 | + integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== | |
| 4778 | + | |
| 4779 | +mimic-fn@^2.1.0: | |
| 4780 | + version "2.1.0" | |
| 4781 | + resolved "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz" | |
| 4782 | + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== | |
| 4783 | + | |
| 4784 | +min-document@^2.19.0: | |
| 4785 | + version "2.19.0" | |
| 4786 | + resolved "https://registry.npmmirror.com/min-document/-/min-document-2.19.0.tgz" | |
| 4787 | + integrity sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ== | |
| 4788 | + dependencies: | |
| 4789 | + dom-walk "^0.1.0" | |
| 4790 | + | |
| 4791 | +minimatch@^3.0.4, minimatch@^3.1.1: | |
| 4792 | + version "3.1.2" | |
| 4793 | + resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz" | |
| 4794 | + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== | |
| 4795 | + dependencies: | |
| 4796 | + brace-expansion "^1.1.7" | |
| 4797 | + | |
| 4798 | +minimist@^1.2.6: | |
| 4799 | + version "1.2.8" | |
| 4800 | + resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz" | |
| 4801 | + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== | |
| 4802 | + | |
| 4803 | +mkdirp@^0.5.1: | |
| 4804 | + version "0.5.6" | |
| 4805 | + resolved "https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz" | |
| 4806 | + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== | |
| 4807 | + dependencies: | |
| 4808 | + minimist "^1.2.6" | |
| 4809 | + | |
| 4810 | +module-alias@^2.2.2: | |
| 4811 | + version "2.2.3" | |
| 4812 | + resolved "https://registry.npmmirror.com/module-alias/-/module-alias-2.2.3.tgz" | |
| 4813 | + integrity sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q== | |
| 4814 | + | |
| 4815 | +ms@2.0.0: | |
| 4816 | + version "2.0.0" | |
| 4817 | + resolved "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz" | |
| 4818 | + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== | |
| 4819 | + | |
| 4820 | +ms@2.1.2: | |
| 4821 | + version "2.1.2" | |
| 4822 | + resolved "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz" | |
| 4823 | + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== | |
| 4824 | + | |
| 4825 | +ms@2.1.3: | |
| 4826 | + version "2.1.3" | |
| 4827 | + resolved "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz" | |
| 4828 | + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== | |
| 4829 | + | |
| 4830 | +mutation-observer@^1.0.3: | |
| 4831 | + version "1.0.3" | |
| 4832 | + resolved "https://registry.npmmirror.com/mutation-observer/-/mutation-observer-1.0.3.tgz" | |
| 4833 | + integrity sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA== | |
| 4834 | + | |
| 4835 | +nanoid@^3.3.6: | |
| 4836 | + version "3.3.7" | |
| 4837 | + resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz" | |
| 4838 | + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== | |
| 4839 | + | |
| 4840 | +natural-compare@^1.4.0: | |
| 4841 | + version "1.4.0" | |
| 4842 | + resolved "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz" | |
| 4843 | + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== | |
| 4844 | + | |
| 4845 | +negotiator@0.6.3: | |
| 4846 | + version "0.6.3" | |
| 4847 | + resolved "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz" | |
| 4848 | + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== | |
| 4849 | + | |
| 4850 | +neo-async@^2.6.2: | |
| 4851 | + version "2.6.2" | |
| 4852 | + resolved "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz" | |
| 4853 | + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== | |
| 4854 | + | |
| 4855 | +node-int64@^0.4.0: | |
| 4856 | + version "0.4.0" | |
| 4857 | + resolved "https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz" | |
| 4858 | + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== | |
| 4859 | + | |
| 4860 | +node-releases@^2.0.13: | |
| 4861 | + version "2.0.13" | |
| 4862 | + resolved "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz" | |
| 4863 | + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== | |
| 4864 | + | |
| 4865 | +normalize-path@^3.0.0, normalize-path@~3.0.0: | |
| 4866 | + version "3.0.0" | |
| 4867 | + resolved "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz" | |
| 4868 | + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== | |
| 4869 | + | |
| 4870 | +normalize-range@^0.1.2: | |
| 4871 | + version "0.1.2" | |
| 4872 | + resolved "https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz" | |
| 4873 | + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== | |
| 4874 | + | |
| 4875 | +npm-run-path@^4.0.1: | |
| 4876 | + version "4.0.1" | |
| 4877 | + resolved "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz" | |
| 4878 | + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== | |
| 4879 | + dependencies: | |
| 4880 | + path-key "^3.0.0" | |
| 4881 | + | |
| 4882 | +nwsapi@^2.2.0: | |
| 4883 | + version "2.2.7" | |
| 4884 | + resolved "https://registry.npmmirror.com/nwsapi/-/nwsapi-2.2.7.tgz" | |
| 4885 | + integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== | |
| 4886 | + | |
| 4887 | +object-inspect@^1.9.0: | |
| 4888 | + version "1.13.1" | |
| 4889 | + resolved "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.1.tgz" | |
| 4890 | + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== | |
| 4891 | + | |
| 4892 | +omggif@^1.0.9: | |
| 4893 | + version "1.0.10" | |
| 4894 | + resolved "https://registry.npmmirror.com/omggif/-/omggif-1.0.10.tgz" | |
| 4895 | + integrity sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw== | |
| 4896 | + | |
| 4897 | +on-finished@2.4.1: | |
| 4898 | + version "2.4.1" | |
| 4899 | + resolved "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz" | |
| 4900 | + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== | |
| 4901 | + dependencies: | |
| 4902 | + ee-first "1.1.1" | |
| 4903 | + | |
| 4904 | +once@^1.3.0: | |
| 4905 | + version "1.4.0" | |
| 4906 | + resolved "https://registry.npmmirror.com/once/-/once-1.4.0.tgz" | |
| 4907 | + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== | |
| 4908 | + dependencies: | |
| 4909 | + wrappy "1" | |
| 4910 | + | |
| 4911 | +onetime@^5.1.2: | |
| 4912 | + version "5.1.2" | |
| 4913 | + resolved "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz" | |
| 4914 | + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== | |
| 4915 | + dependencies: | |
| 4916 | + mimic-fn "^2.1.0" | |
| 4917 | + | |
| 4918 | +os-locale-s-fix@^1.0.8-fix-1: | |
| 4919 | + version "1.0.8-fix-1" | |
| 4920 | + resolved "https://registry.npmmirror.com/os-locale-s-fix/-/os-locale-s-fix-1.0.8-fix-1.tgz" | |
| 4921 | + integrity sha512-Sv0OvhPiMutICiwORAUefv02DCPb62IelBmo8ZsSrRHyI3FStqIWZvjqDkvtjU+lcujo7UNir+dCwKSqlEQ/5w== | |
| 4922 | + dependencies: | |
| 4923 | + lcid "^3.0.0" | |
| 4924 | + | |
| 4925 | +p-limit@^2.2.0: | |
| 4926 | + version "2.3.0" | |
| 4927 | + resolved "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz" | |
| 4928 | + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== | |
| 4929 | + dependencies: | |
| 4930 | + p-try "^2.0.0" | |
| 4931 | + | |
| 4932 | +p-locate@^4.1.0: | |
| 4933 | + version "4.1.0" | |
| 4934 | + resolved "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz" | |
| 4935 | + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== | |
| 4936 | + dependencies: | |
| 4937 | + p-limit "^2.2.0" | |
| 4938 | + | |
| 4939 | +p-try@^2.0.0: | |
| 4940 | + version "2.2.0" | |
| 4941 | + resolved "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz" | |
| 4942 | + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== | |
| 4943 | + | |
| 4944 | +pako@^1.0.5: | |
| 4945 | + version "1.0.11" | |
| 4946 | + resolved "https://registry.npmmirror.com/pako/-/pako-1.0.11.tgz" | |
| 4947 | + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== | |
| 4948 | + | |
| 4949 | +parse-bmfont-ascii@^1.0.3: | |
| 4950 | + version "1.0.6" | |
| 4951 | + resolved "https://registry.npmmirror.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz" | |
| 4952 | + integrity sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA== | |
| 4953 | + | |
| 4954 | +parse-bmfont-binary@^1.0.5: | |
| 4955 | + version "1.0.6" | |
| 4956 | + resolved "https://registry.npmmirror.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz" | |
| 4957 | + integrity sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA== | |
| 4958 | + | |
| 4959 | +parse-bmfont-xml@^1.1.4: | |
| 4960 | + version "1.1.4" | |
| 4961 | + resolved "https://registry.npmmirror.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz" | |
| 4962 | + integrity sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ== | |
| 4963 | + dependencies: | |
| 4964 | + xml-parse-from-string "^1.0.0" | |
| 4965 | + xml2js "^0.4.5" | |
| 4966 | + | |
| 4967 | +parse-css-font@^4.0.0: | |
| 4968 | + version "4.0.0" | |
| 4969 | + resolved "https://registry.npmmirror.com/parse-css-font/-/parse-css-font-4.0.0.tgz" | |
| 4970 | + integrity sha512-lnY7dTUfjRXsSo5G5C639L8RaBBaVSgL+5hacIFKsNHzeCJQ5SFSZv1DZmc7+wZv/22PFGOq2YbaEHLdaCS/mQ== | |
| 4971 | + dependencies: | |
| 4972 | + css-font-size-keywords "^1.0.0" | |
| 4973 | + css-font-stretch-keywords "^1.0.1" | |
| 4974 | + css-font-style-keywords "^1.0.1" | |
| 4975 | + css-font-weight-keywords "^1.0.0" | |
| 4976 | + css-list-helpers "^2.0.0" | |
| 4977 | + css-system-font-keywords "^1.0.0" | |
| 4978 | + unquote "^1.1.1" | |
| 4974 | 4979 | |
| 4975 | -"parse-headers@^2.0.0": | |
| 4976 | - "integrity" "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==" | |
| 4977 | - "resolved" "https://registry.npmmirror.com/parse-headers/-/parse-headers-2.0.5.tgz" | |
| 4978 | - "version" "2.0.5" | |
| 4979 | - | |
| 4980 | -"parse-json@^5.2.0": | |
| 4981 | - "integrity" "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" | |
| 4982 | - "resolved" "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz" | |
| 4983 | - "version" "5.2.0" | |
| 4980 | +parse-headers@^2.0.0: | |
| 4981 | + version "2.0.5" | |
| 4982 | + resolved "https://registry.npmmirror.com/parse-headers/-/parse-headers-2.0.5.tgz" | |
| 4983 | + integrity sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA== | |
| 4984 | + | |
| 4985 | +parse-json@^5.2.0: | |
| 4986 | + version "5.2.0" | |
| 4987 | + resolved "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz" | |
| 4988 | + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== | |
| 4984 | 4989 | dependencies: |
| 4985 | 4990 | "@babel/code-frame" "^7.0.0" |
| 4986 | - "error-ex" "^1.3.1" | |
| 4987 | - "json-parse-even-better-errors" "^2.3.0" | |
| 4988 | - "lines-and-columns" "^1.1.6" | |
| 4989 | - | |
| 4990 | -"parse5@6.0.1": | |
| 4991 | - "integrity" "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" | |
| 4992 | - "resolved" "https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz" | |
| 4993 | - "version" "6.0.1" | |
| 4994 | - | |
| 4995 | -"parseurl@~1.3.3": | |
| 4996 | - "integrity" "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" | |
| 4997 | - "resolved" "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz" | |
| 4998 | - "version" "1.3.3" | |
| 4999 | - | |
| 5000 | -"path-exists@^4.0.0": | |
| 5001 | - "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" | |
| 5002 | - "resolved" "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz" | |
| 5003 | - "version" "4.0.0" | |
| 5004 | - | |
| 5005 | -"path-is-absolute@^1.0.0": | |
| 5006 | - "integrity" "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" | |
| 5007 | - "resolved" "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz" | |
| 5008 | - "version" "1.0.1" | |
| 5009 | - | |
| 5010 | -"path-key@^3.0.0", "path-key@^3.1.0": | |
| 5011 | - "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" | |
| 5012 | - "resolved" "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz" | |
| 5013 | - "version" "3.1.1" | |
| 5014 | - | |
| 5015 | -"path-parse@^1.0.7": | |
| 5016 | - "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" | |
| 5017 | - "resolved" "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz" | |
| 5018 | - "version" "1.0.7" | |
| 5019 | - | |
| 5020 | -"path-to-regexp@0.1.7": | |
| 5021 | - "integrity" "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" | |
| 5022 | - "resolved" "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz" | |
| 5023 | - "version" "0.1.7" | |
| 5024 | - | |
| 5025 | -"phin@^2.9.1": | |
| 5026 | - "integrity" "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==" | |
| 5027 | - "resolved" "https://registry.npmmirror.com/phin/-/phin-2.9.3.tgz" | |
| 5028 | - "version" "2.9.3" | |
| 5029 | - | |
| 5030 | -"picocolors@^1.0.0": | |
| 5031 | - "integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" | |
| 5032 | - "resolved" "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz" | |
| 5033 | - "version" "1.0.0" | |
| 5034 | - | |
| 5035 | -"picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.2.2", "picomatch@^2.2.3", "picomatch@^2.3.1": | |
| 5036 | - "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" | |
| 5037 | - "resolved" "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz" | |
| 5038 | - "version" "2.3.1" | |
| 5039 | - | |
| 5040 | -"pify@^2.3.0": | |
| 5041 | - "integrity" "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" | |
| 5042 | - "resolved" "https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz" | |
| 5043 | - "version" "2.3.0" | |
| 5044 | - | |
| 5045 | -"pinia-plugin-persist-uni@^1.2.0": | |
| 5046 | - "integrity" "sha512-9ZLdeB+nfeu0WD7WEv19E1u2cWbnK/J8fDR5w56JPGoQtbU4Uy8VLKSvfHlbuVzGxBaE1DhG4/ulWVm3oAArpg==" | |
| 5047 | - "resolved" "https://registry.npmmirror.com/pinia-plugin-persist-uni/-/pinia-plugin-persist-uni-1.2.0.tgz" | |
| 5048 | - "version" "1.2.0" | |
| 5049 | - dependencies: | |
| 5050 | - "vue-demi" "^0.12.1" | |
| 5051 | - | |
| 5052 | -"pinia@^2.0.0", "pinia@2.0.33": | |
| 5053 | - "integrity" "sha512-HOj1yVV2itw6rNIrR2f7+MirGNxhORjrULL8GWgRwXsGSvEqIQ+SE0MYt6cwtpegzCda3i+rVTZM+AM7CG+kRg==" | |
| 5054 | - "resolved" "https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz" | |
| 5055 | - "version" "2.0.33" | |
| 4991 | + error-ex "^1.3.1" | |
| 4992 | + json-parse-even-better-errors "^2.3.0" | |
| 4993 | + lines-and-columns "^1.1.6" | |
| 4994 | + | |
| 4995 | +parse5@6.0.1: | |
| 4996 | + version "6.0.1" | |
| 4997 | + resolved "https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz" | |
| 4998 | + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== | |
| 4999 | + | |
| 5000 | +parseurl@~1.3.3: | |
| 5001 | + version "1.3.3" | |
| 5002 | + resolved "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz" | |
| 5003 | + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== | |
| 5004 | + | |
| 5005 | +path-exists@^4.0.0: | |
| 5006 | + version "4.0.0" | |
| 5007 | + resolved "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz" | |
| 5008 | + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== | |
| 5009 | + | |
| 5010 | +path-is-absolute@^1.0.0: | |
| 5011 | + version "1.0.1" | |
| 5012 | + resolved "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz" | |
| 5013 | + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== | |
| 5014 | + | |
| 5015 | +path-key@^3.0.0, path-key@^3.1.0: | |
| 5016 | + version "3.1.1" | |
| 5017 | + resolved "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz" | |
| 5018 | + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== | |
| 5019 | + | |
| 5020 | +path-parse@^1.0.7: | |
| 5021 | + version "1.0.7" | |
| 5022 | + resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz" | |
| 5023 | + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== | |
| 5024 | + | |
| 5025 | +path-to-regexp@0.1.7: | |
| 5026 | + version "0.1.7" | |
| 5027 | + resolved "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz" | |
| 5028 | + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== | |
| 5029 | + | |
| 5030 | +phin@^2.9.1: | |
| 5031 | + version "2.9.3" | |
| 5032 | + resolved "https://registry.npmmirror.com/phin/-/phin-2.9.3.tgz" | |
| 5033 | + integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA== | |
| 5034 | + | |
| 5035 | +picocolors@^1.0.0: | |
| 5036 | + version "1.0.0" | |
| 5037 | + resolved "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz" | |
| 5038 | + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== | |
| 5039 | + | |
| 5040 | +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3, picomatch@^2.3.1: | |
| 5041 | + version "2.3.1" | |
| 5042 | + resolved "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz" | |
| 5043 | + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== | |
| 5044 | + | |
| 5045 | +pify@^2.3.0: | |
| 5046 | + version "2.3.0" | |
| 5047 | + resolved "https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz" | |
| 5048 | + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== | |
| 5049 | + | |
| 5050 | +pinia-plugin-persist-uni@^1.2.0: | |
| 5051 | + version "1.2.0" | |
| 5052 | + resolved "https://registry.npmmirror.com/pinia-plugin-persist-uni/-/pinia-plugin-persist-uni-1.2.0.tgz" | |
| 5053 | + integrity sha512-9ZLdeB+nfeu0WD7WEv19E1u2cWbnK/J8fDR5w56JPGoQtbU4Uy8VLKSvfHlbuVzGxBaE1DhG4/ulWVm3oAArpg== | |
| 5054 | + dependencies: | |
| 5055 | + vue-demi "^0.12.1" | |
| 5056 | + | |
| 5057 | +pinia@^2.0.0, pinia@2.0.33: | |
| 5058 | + version "2.0.33" | |
| 5059 | + resolved "https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz" | |
| 5060 | + integrity sha512-HOj1yVV2itw6rNIrR2f7+MirGNxhORjrULL8GWgRwXsGSvEqIQ+SE0MYt6cwtpegzCda3i+rVTZM+AM7CG+kRg== | |
| 5056 | 5061 | dependencies: |
| 5057 | 5062 | "@vue/devtools-api" "^6.5.0" |
| 5058 | - "vue-demi" "*" | |
| 5059 | - | |
| 5060 | -"pirates@^4.0.4": | |
| 5061 | - "integrity" "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" | |
| 5062 | - "resolved" "https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz" | |
| 5063 | - "version" "4.0.6" | |
| 5064 | - | |
| 5065 | -"pixelmatch@^4.0.2": | |
| 5066 | - "integrity" "sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==" | |
| 5067 | - "resolved" "https://registry.npmmirror.com/pixelmatch/-/pixelmatch-4.0.2.tgz" | |
| 5068 | - "version" "4.0.2" | |
| 5069 | - dependencies: | |
| 5070 | - "pngjs" "^3.0.0" | |
| 5071 | - | |
| 5072 | -"pkg-dir@^4.2.0": | |
| 5073 | - "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" | |
| 5074 | - "resolved" "https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz" | |
| 5075 | - "version" "4.2.0" | |
| 5076 | - dependencies: | |
| 5077 | - "find-up" "^4.0.0" | |
| 5078 | - | |
| 5079 | -"pngjs@^3.0.0", "pngjs@^3.3.3": | |
| 5080 | - "integrity" "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" | |
| 5081 | - "resolved" "https://registry.npmmirror.com/pngjs/-/pngjs-3.4.0.tgz" | |
| 5082 | - "version" "3.4.0" | |
| 5083 | - | |
| 5084 | -"postcss-import@^14.0.2": | |
| 5085 | - "integrity" "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" | |
| 5086 | - "resolved" "https://registry.npmmirror.com/postcss-import/-/postcss-import-14.1.0.tgz" | |
| 5087 | - "version" "14.1.0" | |
| 5088 | - dependencies: | |
| 5089 | - "postcss-value-parser" "^4.0.0" | |
| 5090 | - "read-cache" "^1.0.0" | |
| 5091 | - "resolve" "^1.1.7" | |
| 5092 | - | |
| 5093 | -"postcss-load-config@^3.1.1": | |
| 5094 | - "integrity" "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==" | |
| 5095 | - "resolved" "https://registry.npmmirror.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz" | |
| 5096 | - "version" "3.1.4" | |
| 5097 | - dependencies: | |
| 5098 | - "lilconfig" "^2.0.5" | |
| 5099 | - "yaml" "^1.10.2" | |
| 5100 | - | |
| 5101 | -"postcss-modules-extract-imports@^3.0.0": | |
| 5102 | - "integrity" "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" | |
| 5103 | - "resolved" "https://registry.npmmirror.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz" | |
| 5104 | - "version" "3.0.0" | |
| 5105 | - | |
| 5106 | -"postcss-modules-local-by-default@^4.0.0": | |
| 5107 | - "integrity" "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==" | |
| 5108 | - "resolved" "https://registry.npmmirror.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz" | |
| 5109 | - "version" "4.0.3" | |
| 5110 | - dependencies: | |
| 5111 | - "icss-utils" "^5.0.0" | |
| 5112 | - "postcss-selector-parser" "^6.0.2" | |
| 5113 | - "postcss-value-parser" "^4.1.0" | |
| 5114 | - | |
| 5115 | -"postcss-modules-scope@^3.0.0": | |
| 5116 | - "integrity" "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" | |
| 5117 | - "resolved" "https://registry.npmmirror.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz" | |
| 5118 | - "version" "3.0.0" | |
| 5119 | - dependencies: | |
| 5120 | - "postcss-selector-parser" "^6.0.4" | |
| 5121 | - | |
| 5122 | -"postcss-modules-values@^4.0.0": | |
| 5123 | - "integrity" "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" | |
| 5124 | - "resolved" "https://registry.npmmirror.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" | |
| 5125 | - "version" "4.0.0" | |
| 5126 | - dependencies: | |
| 5127 | - "icss-utils" "^5.0.0" | |
| 5128 | - | |
| 5129 | -"postcss-modules@^4.3.0": | |
| 5130 | - "integrity" "sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==" | |
| 5131 | - "resolved" "https://registry.npmmirror.com/postcss-modules/-/postcss-modules-4.3.1.tgz" | |
| 5132 | - "version" "4.3.1" | |
| 5133 | - dependencies: | |
| 5134 | - "generic-names" "^4.0.0" | |
| 5135 | - "icss-replace-symbols" "^1.1.0" | |
| 5136 | - "lodash.camelcase" "^4.3.0" | |
| 5137 | - "postcss-modules-extract-imports" "^3.0.0" | |
| 5138 | - "postcss-modules-local-by-default" "^4.0.0" | |
| 5139 | - "postcss-modules-scope" "^3.0.0" | |
| 5140 | - "postcss-modules-values" "^4.0.0" | |
| 5141 | - "string-hash" "^1.1.1" | |
| 5142 | - | |
| 5143 | -"postcss-selector-parser@^6.0.2", "postcss-selector-parser@^6.0.4", "postcss-selector-parser@^6.0.6": | |
| 5144 | - "integrity" "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==" | |
| 5145 | - "resolved" "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz" | |
| 5146 | - "version" "6.0.13" | |
| 5147 | - dependencies: | |
| 5148 | - "cssesc" "^3.0.0" | |
| 5149 | - "util-deprecate" "^1.0.2" | |
| 5150 | - | |
| 5151 | -"postcss-value-parser@^4.0.0", "postcss-value-parser@^4.1.0", "postcss-value-parser@^4.2.0": | |
| 5152 | - "integrity" "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" | |
| 5153 | - "resolved" "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" | |
| 5154 | - "version" "4.2.0" | |
| 5155 | - | |
| 5156 | -"postcss@^8.0.0", "postcss@^8.1.0", "postcss@^8.1.10", "postcss@^8.4.20", "postcss@^8.4.23", "postcss@>=8.0.9": | |
| 5157 | - "integrity" "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==" | |
| 5158 | - "resolved" "https://registry.npmmirror.com/postcss/-/postcss-8.4.31.tgz" | |
| 5159 | - "version" "8.4.31" | |
| 5160 | - dependencies: | |
| 5161 | - "nanoid" "^3.3.6" | |
| 5162 | - "picocolors" "^1.0.0" | |
| 5163 | - "source-map-js" "^1.0.2" | |
| 5164 | - | |
| 5165 | -"pretty-format@^27.5.1": | |
| 5166 | - "integrity" "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==" | |
| 5167 | - "resolved" "https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz" | |
| 5168 | - "version" "27.5.1" | |
| 5169 | - dependencies: | |
| 5170 | - "ansi-regex" "^5.0.1" | |
| 5171 | - "ansi-styles" "^5.0.0" | |
| 5172 | - "react-is" "^17.0.1" | |
| 5173 | - | |
| 5174 | -"process@^0.11.10": | |
| 5175 | - "integrity" "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" | |
| 5176 | - "resolved" "https://registry.npmmirror.com/process/-/process-0.11.10.tgz" | |
| 5177 | - "version" "0.11.10" | |
| 5178 | - | |
| 5179 | -"prompts@^2.0.1": | |
| 5180 | - "integrity" "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" | |
| 5181 | - "resolved" "https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz" | |
| 5182 | - "version" "2.4.2" | |
| 5183 | - dependencies: | |
| 5184 | - "kleur" "^3.0.3" | |
| 5185 | - "sisteransi" "^1.0.5" | |
| 5186 | - | |
| 5187 | -"proxy-addr@~2.0.7": | |
| 5188 | - "integrity" "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" | |
| 5189 | - "resolved" "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz" | |
| 5190 | - "version" "2.0.7" | |
| 5191 | - dependencies: | |
| 5192 | - "forwarded" "0.2.0" | |
| 5193 | - "ipaddr.js" "1.9.1" | |
| 5194 | - | |
| 5195 | -"psl@^1.1.33": | |
| 5196 | - "integrity" "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" | |
| 5197 | - "resolved" "https://registry.npmmirror.com/psl/-/psl-1.9.0.tgz" | |
| 5198 | - "version" "1.9.0" | |
| 5199 | - | |
| 5200 | -"punycode@^2.1.0", "punycode@^2.1.1": | |
| 5201 | - "integrity" "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" | |
| 5202 | - "resolved" "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz" | |
| 5203 | - "version" "2.3.1" | |
| 5204 | - | |
| 5205 | -"qrcode-reader-vue3@^3.1.2": | |
| 5206 | - "integrity" "sha512-OqhJ4lkKHlyV42Fm5qptm7cdV3X2DRbtCgTNMjcFY7plkMNDqGo+bPxxlGkoPMCHowxXa1pPu9knWPfoqu5mUg==" | |
| 5207 | - "resolved" "https://registry.npmmirror.com/qrcode-reader-vue3/-/qrcode-reader-vue3-3.1.2.tgz" | |
| 5208 | - "version" "3.1.2" | |
| 5209 | - dependencies: | |
| 5210 | - "barcode-detector" "^0.7" | |
| 5211 | - "callforth" "^0.4" | |
| 5212 | - "core-js" "^3" | |
| 5213 | - "vue" "^3" | |
| 5214 | - "webrtc-adapter" "^7" | |
| 5215 | - | |
| 5216 | -"qrcode-reader@^1.0.4": | |
| 5217 | - "integrity" "sha512-rRjALGNh9zVqvweg1j5OKIQKNsw3bLC+7qwlnead5K/9cb1cEIAGkwikt/09U0K+2IDWGD9CC6SP7tHAjUeqvQ==" | |
| 5218 | - "resolved" "https://registry.npmmirror.com/qrcode-reader/-/qrcode-reader-1.0.4.tgz" | |
| 5219 | - "version" "1.0.4" | |
| 5220 | - | |
| 5221 | -"qrcode-terminal@^0.12.0": | |
| 5222 | - "integrity" "sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==" | |
| 5223 | - "resolved" "https://registry.npmmirror.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz" | |
| 5224 | - "version" "0.12.0" | |
| 5225 | - | |
| 5226 | -"qs@6.11.0": | |
| 5227 | - "integrity" "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" | |
| 5228 | - "resolved" "https://registry.npmmirror.com/qs/-/qs-6.11.0.tgz" | |
| 5229 | - "version" "6.11.0" | |
| 5230 | - dependencies: | |
| 5231 | - "side-channel" "^1.0.4" | |
| 5232 | - | |
| 5233 | -"querystringify@^2.1.1": | |
| 5234 | - "integrity" "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" | |
| 5235 | - "resolved" "https://registry.npmmirror.com/querystringify/-/querystringify-2.2.0.tgz" | |
| 5236 | - "version" "2.2.0" | |
| 5237 | - | |
| 5238 | -"queue-microtask@^1.2.2": | |
| 5239 | - "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" | |
| 5240 | - "resolved" "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz" | |
| 5241 | - "version" "1.2.3" | |
| 5242 | - | |
| 5243 | -"randombytes@^2.1.0": | |
| 5244 | - "integrity" "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" | |
| 5245 | - "resolved" "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz" | |
| 5246 | - "version" "2.1.0" | |
| 5247 | - dependencies: | |
| 5248 | - "safe-buffer" "^5.1.0" | |
| 5249 | - | |
| 5250 | -"range-parser@~1.2.1": | |
| 5251 | - "integrity" "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" | |
| 5252 | - "resolved" "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz" | |
| 5253 | - "version" "1.2.1" | |
| 5254 | - | |
| 5255 | -"raw-body@2.5.1": | |
| 5256 | - "integrity" "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" | |
| 5257 | - "resolved" "https://registry.npmmirror.com/raw-body/-/raw-body-2.5.1.tgz" | |
| 5258 | - "version" "2.5.1" | |
| 5259 | - dependencies: | |
| 5260 | - "bytes" "3.1.2" | |
| 5261 | - "http-errors" "2.0.0" | |
| 5262 | - "iconv-lite" "0.4.24" | |
| 5263 | - "unpipe" "1.0.0" | |
| 5264 | - | |
| 5265 | -"react-is@^17.0.1": | |
| 5266 | - "integrity" "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" | |
| 5267 | - "resolved" "https://registry.npmmirror.com/react-is/-/react-is-17.0.2.tgz" | |
| 5268 | - "version" "17.0.2" | |
| 5269 | - | |
| 5270 | -"read-cache@^1.0.0": | |
| 5271 | - "integrity" "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" | |
| 5272 | - "resolved" "https://registry.npmmirror.com/read-cache/-/read-cache-1.0.0.tgz" | |
| 5273 | - "version" "1.0.0" | |
| 5274 | - dependencies: | |
| 5275 | - "pify" "^2.3.0" | |
| 5276 | - | |
| 5277 | -"readdirp@~3.6.0": | |
| 5278 | - "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" | |
| 5279 | - "resolved" "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz" | |
| 5280 | - "version" "3.6.0" | |
| 5281 | - dependencies: | |
| 5282 | - "picomatch" "^2.2.1" | |
| 5283 | - | |
| 5284 | -"regenerate-unicode-properties@^10.1.0": | |
| 5285 | - "integrity" "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" | |
| 5286 | - "resolved" "https://registry.npmmirror.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz" | |
| 5287 | - "version" "10.1.1" | |
| 5288 | - dependencies: | |
| 5289 | - "regenerate" "^1.4.2" | |
| 5290 | - | |
| 5291 | -"regenerate@^1.4.2": | |
| 5292 | - "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" | |
| 5293 | - "resolved" "https://registry.npmmirror.com/regenerate/-/regenerate-1.4.2.tgz" | |
| 5294 | - "version" "1.4.2" | |
| 5295 | - | |
| 5296 | -"regenerator-runtime@^0.13.11", "regenerator-runtime@^0.13.3": | |
| 5297 | - "integrity" "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" | |
| 5298 | - "resolved" "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" | |
| 5299 | - "version" "0.13.11" | |
| 5300 | - | |
| 5301 | -"regenerator-runtime@^0.14.0": | |
| 5302 | - "integrity" "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" | |
| 5303 | - "resolved" "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz" | |
| 5304 | - "version" "0.14.0" | |
| 5305 | - | |
| 5306 | -"regenerator-transform@^0.15.2": | |
| 5307 | - "integrity" "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" | |
| 5308 | - "resolved" "https://registry.npmmirror.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz" | |
| 5309 | - "version" "0.15.2" | |
| 5063 | + vue-demi "*" | |
| 5064 | + | |
| 5065 | +pirates@^4.0.4: | |
| 5066 | + version "4.0.6" | |
| 5067 | + resolved "https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz" | |
| 5068 | + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== | |
| 5069 | + | |
| 5070 | +pixelmatch@^4.0.2: | |
| 5071 | + version "4.0.2" | |
| 5072 | + resolved "https://registry.npmmirror.com/pixelmatch/-/pixelmatch-4.0.2.tgz" | |
| 5073 | + integrity sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA== | |
| 5074 | + dependencies: | |
| 5075 | + pngjs "^3.0.0" | |
| 5076 | + | |
| 5077 | +pkg-dir@^4.2.0: | |
| 5078 | + version "4.2.0" | |
| 5079 | + resolved "https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz" | |
| 5080 | + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== | |
| 5081 | + dependencies: | |
| 5082 | + find-up "^4.0.0" | |
| 5083 | + | |
| 5084 | +pngjs@^3.0.0, pngjs@^3.3.3: | |
| 5085 | + version "3.4.0" | |
| 5086 | + resolved "https://registry.npmmirror.com/pngjs/-/pngjs-3.4.0.tgz" | |
| 5087 | + integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== | |
| 5088 | + | |
| 5089 | +postcss-import@^14.0.2: | |
| 5090 | + version "14.1.0" | |
| 5091 | + resolved "https://registry.npmmirror.com/postcss-import/-/postcss-import-14.1.0.tgz" | |
| 5092 | + integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== | |
| 5093 | + dependencies: | |
| 5094 | + postcss-value-parser "^4.0.0" | |
| 5095 | + read-cache "^1.0.0" | |
| 5096 | + resolve "^1.1.7" | |
| 5097 | + | |
| 5098 | +postcss-load-config@^3.1.1: | |
| 5099 | + version "3.1.4" | |
| 5100 | + resolved "https://registry.npmmirror.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz" | |
| 5101 | + integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== | |
| 5102 | + dependencies: | |
| 5103 | + lilconfig "^2.0.5" | |
| 5104 | + yaml "^1.10.2" | |
| 5105 | + | |
| 5106 | +postcss-modules-extract-imports@^3.0.0: | |
| 5107 | + version "3.0.0" | |
| 5108 | + resolved "https://registry.npmmirror.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz" | |
| 5109 | + integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== | |
| 5110 | + | |
| 5111 | +postcss-modules-local-by-default@^4.0.0: | |
| 5112 | + version "4.0.3" | |
| 5113 | + resolved "https://registry.npmmirror.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz" | |
| 5114 | + integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== | |
| 5115 | + dependencies: | |
| 5116 | + icss-utils "^5.0.0" | |
| 5117 | + postcss-selector-parser "^6.0.2" | |
| 5118 | + postcss-value-parser "^4.1.0" | |
| 5119 | + | |
| 5120 | +postcss-modules-scope@^3.0.0: | |
| 5121 | + version "3.0.0" | |
| 5122 | + resolved "https://registry.npmmirror.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz" | |
| 5123 | + integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== | |
| 5124 | + dependencies: | |
| 5125 | + postcss-selector-parser "^6.0.4" | |
| 5126 | + | |
| 5127 | +postcss-modules-values@^4.0.0: | |
| 5128 | + version "4.0.0" | |
| 5129 | + resolved "https://registry.npmmirror.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" | |
| 5130 | + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== | |
| 5131 | + dependencies: | |
| 5132 | + icss-utils "^5.0.0" | |
| 5133 | + | |
| 5134 | +postcss-modules@^4.3.0: | |
| 5135 | + version "4.3.1" | |
| 5136 | + resolved "https://registry.npmmirror.com/postcss-modules/-/postcss-modules-4.3.1.tgz" | |
| 5137 | + integrity sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q== | |
| 5138 | + dependencies: | |
| 5139 | + generic-names "^4.0.0" | |
| 5140 | + icss-replace-symbols "^1.1.0" | |
| 5141 | + lodash.camelcase "^4.3.0" | |
| 5142 | + postcss-modules-extract-imports "^3.0.0" | |
| 5143 | + postcss-modules-local-by-default "^4.0.0" | |
| 5144 | + postcss-modules-scope "^3.0.0" | |
| 5145 | + postcss-modules-values "^4.0.0" | |
| 5146 | + string-hash "^1.1.1" | |
| 5147 | + | |
| 5148 | +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.6: | |
| 5149 | + version "6.0.13" | |
| 5150 | + resolved "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz" | |
| 5151 | + integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== | |
| 5152 | + dependencies: | |
| 5153 | + cssesc "^3.0.0" | |
| 5154 | + util-deprecate "^1.0.2" | |
| 5155 | + | |
| 5156 | +postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: | |
| 5157 | + version "4.2.0" | |
| 5158 | + resolved "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" | |
| 5159 | + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== | |
| 5160 | + | |
| 5161 | +postcss@^8.0.0, postcss@^8.1.0, postcss@^8.1.10, postcss@^8.4.20, postcss@^8.4.23, postcss@>=8.0.9: | |
| 5162 | + version "8.4.31" | |
| 5163 | + resolved "https://registry.npmmirror.com/postcss/-/postcss-8.4.31.tgz" | |
| 5164 | + integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== | |
| 5165 | + dependencies: | |
| 5166 | + nanoid "^3.3.6" | |
| 5167 | + picocolors "^1.0.0" | |
| 5168 | + source-map-js "^1.0.2" | |
| 5169 | + | |
| 5170 | +pretty-format@^27.5.1: | |
| 5171 | + version "27.5.1" | |
| 5172 | + resolved "https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz" | |
| 5173 | + integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== | |
| 5174 | + dependencies: | |
| 5175 | + ansi-regex "^5.0.1" | |
| 5176 | + ansi-styles "^5.0.0" | |
| 5177 | + react-is "^17.0.1" | |
| 5178 | + | |
| 5179 | +process@^0.11.10: | |
| 5180 | + version "0.11.10" | |
| 5181 | + resolved "https://registry.npmmirror.com/process/-/process-0.11.10.tgz" | |
| 5182 | + integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== | |
| 5183 | + | |
| 5184 | +prompts@^2.0.1: | |
| 5185 | + version "2.4.2" | |
| 5186 | + resolved "https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz" | |
| 5187 | + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== | |
| 5188 | + dependencies: | |
| 5189 | + kleur "^3.0.3" | |
| 5190 | + sisteransi "^1.0.5" | |
| 5191 | + | |
| 5192 | +proxy-addr@~2.0.7: | |
| 5193 | + version "2.0.7" | |
| 5194 | + resolved "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz" | |
| 5195 | + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== | |
| 5196 | + dependencies: | |
| 5197 | + forwarded "0.2.0" | |
| 5198 | + ipaddr.js "1.9.1" | |
| 5199 | + | |
| 5200 | +psl@^1.1.33: | |
| 5201 | + version "1.9.0" | |
| 5202 | + resolved "https://registry.npmmirror.com/psl/-/psl-1.9.0.tgz" | |
| 5203 | + integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== | |
| 5204 | + | |
| 5205 | +punycode@^2.1.0, punycode@^2.1.1: | |
| 5206 | + version "2.3.1" | |
| 5207 | + resolved "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz" | |
| 5208 | + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== | |
| 5209 | + | |
| 5210 | +qrcode-reader-vue3@^3.1.2: | |
| 5211 | + version "3.1.2" | |
| 5212 | + resolved "https://registry.npmmirror.com/qrcode-reader-vue3/-/qrcode-reader-vue3-3.1.2.tgz" | |
| 5213 | + integrity sha512-OqhJ4lkKHlyV42Fm5qptm7cdV3X2DRbtCgTNMjcFY7plkMNDqGo+bPxxlGkoPMCHowxXa1pPu9knWPfoqu5mUg== | |
| 5214 | + dependencies: | |
| 5215 | + barcode-detector "^0.7" | |
| 5216 | + callforth "^0.4" | |
| 5217 | + core-js "^3" | |
| 5218 | + vue "^3" | |
| 5219 | + webrtc-adapter "^7" | |
| 5220 | + | |
| 5221 | +qrcode-reader@^1.0.4: | |
| 5222 | + version "1.0.4" | |
| 5223 | + resolved "https://registry.npmmirror.com/qrcode-reader/-/qrcode-reader-1.0.4.tgz" | |
| 5224 | + integrity sha512-rRjALGNh9zVqvweg1j5OKIQKNsw3bLC+7qwlnead5K/9cb1cEIAGkwikt/09U0K+2IDWGD9CC6SP7tHAjUeqvQ== | |
| 5225 | + | |
| 5226 | +qrcode-terminal@^0.12.0: | |
| 5227 | + version "0.12.0" | |
| 5228 | + resolved "https://registry.npmmirror.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz" | |
| 5229 | + integrity sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ== | |
| 5230 | + | |
| 5231 | +qs@6.11.0: | |
| 5232 | + version "6.11.0" | |
| 5233 | + resolved "https://registry.npmmirror.com/qs/-/qs-6.11.0.tgz" | |
| 5234 | + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== | |
| 5235 | + dependencies: | |
| 5236 | + side-channel "^1.0.4" | |
| 5237 | + | |
| 5238 | +querystringify@^2.1.1: | |
| 5239 | + version "2.2.0" | |
| 5240 | + resolved "https://registry.npmmirror.com/querystringify/-/querystringify-2.2.0.tgz" | |
| 5241 | + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== | |
| 5242 | + | |
| 5243 | +queue-microtask@^1.2.2: | |
| 5244 | + version "1.2.3" | |
| 5245 | + resolved "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz" | |
| 5246 | + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== | |
| 5247 | + | |
| 5248 | +randombytes@^2.1.0: | |
| 5249 | + version "2.1.0" | |
| 5250 | + resolved "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz" | |
| 5251 | + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== | |
| 5252 | + dependencies: | |
| 5253 | + safe-buffer "^5.1.0" | |
| 5254 | + | |
| 5255 | +range-parser@~1.2.1: | |
| 5256 | + version "1.2.1" | |
| 5257 | + resolved "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz" | |
| 5258 | + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== | |
| 5259 | + | |
| 5260 | +raw-body@2.5.1: | |
| 5261 | + version "2.5.1" | |
| 5262 | + resolved "https://registry.npmmirror.com/raw-body/-/raw-body-2.5.1.tgz" | |
| 5263 | + integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== | |
| 5264 | + dependencies: | |
| 5265 | + bytes "3.1.2" | |
| 5266 | + http-errors "2.0.0" | |
| 5267 | + iconv-lite "0.4.24" | |
| 5268 | + unpipe "1.0.0" | |
| 5269 | + | |
| 5270 | +react-is@^17.0.1: | |
| 5271 | + version "17.0.2" | |
| 5272 | + resolved "https://registry.npmmirror.com/react-is/-/react-is-17.0.2.tgz" | |
| 5273 | + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== | |
| 5274 | + | |
| 5275 | +read-cache@^1.0.0: | |
| 5276 | + version "1.0.0" | |
| 5277 | + resolved "https://registry.npmmirror.com/read-cache/-/read-cache-1.0.0.tgz" | |
| 5278 | + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== | |
| 5279 | + dependencies: | |
| 5280 | + pify "^2.3.0" | |
| 5281 | + | |
| 5282 | +readdirp@~3.6.0: | |
| 5283 | + version "3.6.0" | |
| 5284 | + resolved "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz" | |
| 5285 | + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== | |
| 5286 | + dependencies: | |
| 5287 | + picomatch "^2.2.1" | |
| 5288 | + | |
| 5289 | +regenerate-unicode-properties@^10.1.0: | |
| 5290 | + version "10.1.1" | |
| 5291 | + resolved "https://registry.npmmirror.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz" | |
| 5292 | + integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== | |
| 5293 | + dependencies: | |
| 5294 | + regenerate "^1.4.2" | |
| 5295 | + | |
| 5296 | +regenerate@^1.4.2: | |
| 5297 | + version "1.4.2" | |
| 5298 | + resolved "https://registry.npmmirror.com/regenerate/-/regenerate-1.4.2.tgz" | |
| 5299 | + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== | |
| 5300 | + | |
| 5301 | +regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.3: | |
| 5302 | + version "0.13.11" | |
| 5303 | + resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" | |
| 5304 | + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== | |
| 5305 | + | |
| 5306 | +regenerator-runtime@^0.14.0: | |
| 5307 | + version "0.14.0" | |
| 5308 | + resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz" | |
| 5309 | + integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== | |
| 5310 | + | |
| 5311 | +regenerator-transform@^0.15.2: | |
| 5312 | + version "0.15.2" | |
| 5313 | + resolved "https://registry.npmmirror.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz" | |
| 5314 | + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== | |
| 5310 | 5315 | dependencies: |
| 5311 | 5316 | "@babel/runtime" "^7.8.4" |
| 5312 | 5317 | |
| 5313 | -"regexpu-core@^5.3.1": | |
| 5314 | - "integrity" "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" | |
| 5315 | - "resolved" "https://registry.npmmirror.com/regexpu-core/-/regexpu-core-5.3.2.tgz" | |
| 5316 | - "version" "5.3.2" | |
| 5318 | +regexpu-core@^5.3.1: | |
| 5319 | + version "5.3.2" | |
| 5320 | + resolved "https://registry.npmmirror.com/regexpu-core/-/regexpu-core-5.3.2.tgz" | |
| 5321 | + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== | |
| 5317 | 5322 | dependencies: |
| 5318 | 5323 | "@babel/regjsgen" "^0.8.0" |
| 5319 | - "regenerate" "^1.4.2" | |
| 5320 | - "regenerate-unicode-properties" "^10.1.0" | |
| 5321 | - "regjsparser" "^0.9.1" | |
| 5322 | - "unicode-match-property-ecmascript" "^2.0.0" | |
| 5323 | - "unicode-match-property-value-ecmascript" "^2.1.0" | |
| 5324 | - | |
| 5325 | -"regjsparser@^0.9.1": | |
| 5326 | - "integrity" "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" | |
| 5327 | - "resolved" "https://registry.npmmirror.com/regjsparser/-/regjsparser-0.9.1.tgz" | |
| 5328 | - "version" "0.9.1" | |
| 5329 | - dependencies: | |
| 5330 | - "jsesc" "~0.5.0" | |
| 5331 | - | |
| 5332 | -"require-directory@^2.1.1": | |
| 5333 | - "integrity" "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" | |
| 5334 | - "resolved" "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz" | |
| 5335 | - "version" "2.1.1" | |
| 5336 | - | |
| 5337 | -"requires-port@^1.0.0": | |
| 5338 | - "integrity" "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" | |
| 5339 | - "resolved" "https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz" | |
| 5340 | - "version" "1.0.0" | |
| 5341 | - | |
| 5342 | -"resolve-cwd@^3.0.0": | |
| 5343 | - "integrity" "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" | |
| 5344 | - "resolved" "https://registry.npmmirror.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz" | |
| 5345 | - "version" "3.0.0" | |
| 5346 | - dependencies: | |
| 5347 | - "resolve-from" "^5.0.0" | |
| 5348 | - | |
| 5349 | -"resolve-from@^5.0.0": | |
| 5350 | - "integrity" "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" | |
| 5351 | - "resolved" "https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz" | |
| 5352 | - "version" "5.0.0" | |
| 5353 | - | |
| 5354 | -"resolve.exports@^1.1.0": | |
| 5355 | - "integrity" "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==" | |
| 5356 | - "resolved" "https://registry.npmmirror.com/resolve.exports/-/resolve.exports-1.1.1.tgz" | |
| 5357 | - "version" "1.1.1" | |
| 5358 | - | |
| 5359 | -"resolve@^1.1.7", "resolve@^1.14.2", "resolve@^1.20.0", "resolve@^1.22.1": | |
| 5360 | - "integrity" "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" | |
| 5361 | - "resolved" "https://registry.npmmirror.com/resolve/-/resolve-1.22.8.tgz" | |
| 5362 | - "version" "1.22.8" | |
| 5363 | - dependencies: | |
| 5364 | - "is-core-module" "^2.13.0" | |
| 5365 | - "path-parse" "^1.0.7" | |
| 5366 | - "supports-preserve-symlinks-flag" "^1.0.0" | |
| 5367 | - | |
| 5368 | -"reusify@^1.0.4": | |
| 5369 | - "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" | |
| 5370 | - "resolved" "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz" | |
| 5371 | - "version" "1.0.4" | |
| 5372 | - | |
| 5373 | -"rimraf@^3.0.0": | |
| 5374 | - "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" | |
| 5375 | - "resolved" "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz" | |
| 5376 | - "version" "3.0.2" | |
| 5377 | - dependencies: | |
| 5378 | - "glob" "^7.1.3" | |
| 5379 | - | |
| 5380 | -"rollup@^3.7.0": | |
| 5381 | - "integrity" "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==" | |
| 5382 | - "resolved" "https://registry.npmmirror.com/rollup/-/rollup-3.29.4.tgz" | |
| 5383 | - "version" "3.29.4" | |
| 5324 | + regenerate "^1.4.2" | |
| 5325 | + regenerate-unicode-properties "^10.1.0" | |
| 5326 | + regjsparser "^0.9.1" | |
| 5327 | + unicode-match-property-ecmascript "^2.0.0" | |
| 5328 | + unicode-match-property-value-ecmascript "^2.1.0" | |
| 5329 | + | |
| 5330 | +regjsparser@^0.9.1: | |
| 5331 | + version "0.9.1" | |
| 5332 | + resolved "https://registry.npmmirror.com/regjsparser/-/regjsparser-0.9.1.tgz" | |
| 5333 | + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== | |
| 5334 | + dependencies: | |
| 5335 | + jsesc "~0.5.0" | |
| 5336 | + | |
| 5337 | +require-directory@^2.1.1: | |
| 5338 | + version "2.1.1" | |
| 5339 | + resolved "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz" | |
| 5340 | + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== | |
| 5341 | + | |
| 5342 | +requires-port@^1.0.0: | |
| 5343 | + version "1.0.0" | |
| 5344 | + resolved "https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz" | |
| 5345 | + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== | |
| 5346 | + | |
| 5347 | +resolve-cwd@^3.0.0: | |
| 5348 | + version "3.0.0" | |
| 5349 | + resolved "https://registry.npmmirror.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz" | |
| 5350 | + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== | |
| 5351 | + dependencies: | |
| 5352 | + resolve-from "^5.0.0" | |
| 5353 | + | |
| 5354 | +resolve-from@^5.0.0: | |
| 5355 | + version "5.0.0" | |
| 5356 | + resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz" | |
| 5357 | + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== | |
| 5358 | + | |
| 5359 | +resolve.exports@^1.1.0: | |
| 5360 | + version "1.1.1" | |
| 5361 | + resolved "https://registry.npmmirror.com/resolve.exports/-/resolve.exports-1.1.1.tgz" | |
| 5362 | + integrity sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ== | |
| 5363 | + | |
| 5364 | +resolve@^1.1.7, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.1: | |
| 5365 | + version "1.22.8" | |
| 5366 | + resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.8.tgz" | |
| 5367 | + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== | |
| 5368 | + dependencies: | |
| 5369 | + is-core-module "^2.13.0" | |
| 5370 | + path-parse "^1.0.7" | |
| 5371 | + supports-preserve-symlinks-flag "^1.0.0" | |
| 5372 | + | |
| 5373 | +reusify@^1.0.4: | |
| 5374 | + version "1.0.4" | |
| 5375 | + resolved "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz" | |
| 5376 | + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== | |
| 5377 | + | |
| 5378 | +rimraf@^3.0.0: | |
| 5379 | + version "3.0.2" | |
| 5380 | + resolved "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz" | |
| 5381 | + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== | |
| 5382 | + dependencies: | |
| 5383 | + glob "^7.1.3" | |
| 5384 | + | |
| 5385 | +rollup@^3.7.0: | |
| 5386 | + version "3.29.4" | |
| 5387 | + resolved "https://registry.npmmirror.com/rollup/-/rollup-3.29.4.tgz" | |
| 5388 | + integrity sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw== | |
| 5384 | 5389 | optionalDependencies: |
| 5385 | - "fsevents" "~2.3.2" | |
| 5390 | + fsevents "~2.3.2" | |
| 5386 | 5391 | |
| 5387 | -"rtcpeerconnection-shim@^1.2.15": | |
| 5388 | - "integrity" "sha512-C6DxhXt7bssQ1nHb154lqeL0SXz5Dx4RczXZu2Aa/L1NJFnEVDxFwCBo3fqtuljhHIGceg5JKBV4XJ0gW5JKyw==" | |
| 5389 | - "resolved" "https://registry.npmmirror.com/rtcpeerconnection-shim/-/rtcpeerconnection-shim-1.2.15.tgz" | |
| 5390 | - "version" "1.2.15" | |
| 5392 | +rtcpeerconnection-shim@^1.2.15: | |
| 5393 | + version "1.2.15" | |
| 5394 | + resolved "https://registry.npmmirror.com/rtcpeerconnection-shim/-/rtcpeerconnection-shim-1.2.15.tgz" | |
| 5395 | + integrity sha512-C6DxhXt7bssQ1nHb154lqeL0SXz5Dx4RczXZu2Aa/L1NJFnEVDxFwCBo3fqtuljhHIGceg5JKBV4XJ0gW5JKyw== | |
| 5391 | 5396 | dependencies: |
| 5392 | - "sdp" "^2.6.0" | |
| 5397 | + sdp "^2.6.0" | |
| 5393 | 5398 | |
| 5394 | -"run-parallel@^1.1.9": | |
| 5395 | - "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" | |
| 5396 | - "resolved" "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz" | |
| 5397 | - "version" "1.2.0" | |
| 5399 | +run-parallel@^1.1.9: | |
| 5400 | + version "1.2.0" | |
| 5401 | + resolved "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz" | |
| 5402 | + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== | |
| 5398 | 5403 | dependencies: |
| 5399 | - "queue-microtask" "^1.2.2" | |
| 5404 | + queue-microtask "^1.2.2" | |
| 5400 | 5405 | |
| 5401 | -"safe-area-insets@^1.4.1": | |
| 5402 | - "integrity" "sha512-r/nRWTjFGhhm3w1Z6Kd/jY11srN+lHt2mNl1E/emQGW8ic7n3Avu4noibklfSM+Y34peNphHD/BSZecav0sXYQ==" | |
| 5403 | - "resolved" "https://registry.npmmirror.com/safe-area-insets/-/safe-area-insets-1.4.1.tgz" | |
| 5404 | - "version" "1.4.1" | |
| 5406 | +safe-area-insets@^1.4.1: | |
| 5407 | + version "1.4.1" | |
| 5408 | + resolved "https://registry.npmmirror.com/safe-area-insets/-/safe-area-insets-1.4.1.tgz" | |
| 5409 | + integrity sha512-r/nRWTjFGhhm3w1Z6Kd/jY11srN+lHt2mNl1E/emQGW8ic7n3Avu4noibklfSM+Y34peNphHD/BSZecav0sXYQ== | |
| 5405 | 5410 | |
| 5406 | -"safe-buffer@^5.1.0", "safe-buffer@5.2.1": | |
| 5407 | - "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" | |
| 5408 | - "resolved" "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz" | |
| 5409 | - "version" "5.2.1" | |
| 5411 | +safe-buffer@^5.1.0, safe-buffer@5.2.1: | |
| 5412 | + version "5.2.1" | |
| 5413 | + resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz" | |
| 5414 | + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== | |
| 5410 | 5415 | |
| 5411 | 5416 | "safer-buffer@>= 2.1.2 < 3": |
| 5412 | - "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" | |
| 5413 | - "resolved" "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz" | |
| 5414 | - "version" "2.1.2" | |
| 5417 | + version "2.1.2" | |
| 5418 | + resolved "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz" | |
| 5419 | + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== | |
| 5415 | 5420 | |
| 5416 | -"sass-loader@13.2.0": | |
| 5417 | - "integrity" "sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==" | |
| 5418 | - "resolved" "https://registry.npmmirror.com/sass-loader/-/sass-loader-13.2.0.tgz" | |
| 5419 | - "version" "13.2.0" | |
| 5421 | +sass-loader@13.2.0: | |
| 5422 | + version "13.2.0" | |
| 5423 | + resolved "https://registry.npmmirror.com/sass-loader/-/sass-loader-13.2.0.tgz" | |
| 5424 | + integrity sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg== | |
| 5420 | 5425 | dependencies: |
| 5421 | - "klona" "^2.0.4" | |
| 5422 | - "neo-async" "^2.6.2" | |
| 5426 | + klona "^2.0.4" | |
| 5427 | + neo-async "^2.6.2" | |
| 5423 | 5428 | |
| 5424 | -"sass@*", "sass@^1.3.0", "sass@1.58.3": | |
| 5425 | - "integrity" "sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A==" | |
| 5426 | - "resolved" "https://registry.npmmirror.com/sass/-/sass-1.58.3.tgz" | |
| 5427 | - "version" "1.58.3" | |
| 5429 | +sass@*, sass@^1.3.0, sass@1.58.3: | |
| 5430 | + version "1.58.3" | |
| 5431 | + resolved "https://registry.npmmirror.com/sass/-/sass-1.58.3.tgz" | |
| 5432 | + integrity sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A== | |
| 5428 | 5433 | dependencies: |
| 5429 | - "chokidar" ">=3.0.0 <4.0.0" | |
| 5430 | - "immutable" "^4.0.0" | |
| 5431 | - "source-map-js" ">=0.6.2 <2.0.0" | |
| 5434 | + chokidar ">=3.0.0 <4.0.0" | |
| 5435 | + immutable "^4.0.0" | |
| 5436 | + source-map-js ">=0.6.2 <2.0.0" | |
| 5432 | 5437 | |
| 5433 | -"sax@>=0.6.0": | |
| 5434 | - "integrity" "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" | |
| 5435 | - "resolved" "https://registry.npmmirror.com/sax/-/sax-1.3.0.tgz" | |
| 5436 | - "version" "1.3.0" | |
| 5438 | +sax@>=0.6.0: | |
| 5439 | + version "1.3.0" | |
| 5440 | + resolved "https://registry.npmmirror.com/sax/-/sax-1.3.0.tgz" | |
| 5441 | + integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA== | |
| 5437 | 5442 | |
| 5438 | -"saxes@^5.0.1": | |
| 5439 | - "integrity" "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==" | |
| 5440 | - "resolved" "https://registry.npmmirror.com/saxes/-/saxes-5.0.1.tgz" | |
| 5441 | - "version" "5.0.1" | |
| 5443 | +saxes@^5.0.1: | |
| 5444 | + version "5.0.1" | |
| 5445 | + resolved "https://registry.npmmirror.com/saxes/-/saxes-5.0.1.tgz" | |
| 5446 | + integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== | |
| 5442 | 5447 | dependencies: |
| 5443 | - "xmlchars" "^2.2.0" | |
| 5448 | + xmlchars "^2.2.0" | |
| 5444 | 5449 | |
| 5445 | -"schema-utils@^3.1.1", "schema-utils@^3.2.0": | |
| 5446 | - "integrity" "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" | |
| 5447 | - "resolved" "https://registry.npmmirror.com/schema-utils/-/schema-utils-3.3.0.tgz" | |
| 5448 | - "version" "3.3.0" | |
| 5450 | +schema-utils@^3.1.1, schema-utils@^3.2.0: | |
| 5451 | + version "3.3.0" | |
| 5452 | + resolved "https://registry.npmmirror.com/schema-utils/-/schema-utils-3.3.0.tgz" | |
| 5453 | + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== | |
| 5449 | 5454 | dependencies: |
| 5450 | 5455 | "@types/json-schema" "^7.0.8" |
| 5451 | - "ajv" "^6.12.5" | |
| 5452 | - "ajv-keywords" "^3.5.2" | |
| 5453 | - | |
| 5454 | -"sdp@^2.12.0", "sdp@^2.6.0": | |
| 5455 | - "integrity" "sha512-jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw==" | |
| 5456 | - "resolved" "https://registry.npmmirror.com/sdp/-/sdp-2.12.0.tgz" | |
| 5457 | - "version" "2.12.0" | |
| 5458 | - | |
| 5459 | -"select@^1.1.2": | |
| 5460 | - "integrity" "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==" | |
| 5461 | - "resolved" "https://registry.npmmirror.com/select/-/select-1.1.2.tgz" | |
| 5462 | - "version" "1.1.2" | |
| 5463 | - | |
| 5464 | -"semver@^6.3.0", "semver@^6.3.1": | |
| 5465 | - "integrity" "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" | |
| 5466 | - "resolved" "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz" | |
| 5467 | - "version" "6.3.1" | |
| 5468 | - | |
| 5469 | -"semver@^7.3.2": | |
| 5470 | - "integrity" "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" | |
| 5471 | - "resolved" "https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz" | |
| 5472 | - "version" "7.5.4" | |
| 5473 | - dependencies: | |
| 5474 | - "lru-cache" "^6.0.0" | |
| 5475 | - | |
| 5476 | -"semver@^7.5.3": | |
| 5477 | - "integrity" "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" | |
| 5478 | - "resolved" "https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz" | |
| 5479 | - "version" "7.5.4" | |
| 5480 | - dependencies: | |
| 5481 | - "lru-cache" "^6.0.0" | |
| 5482 | - | |
| 5483 | -"send@0.18.0": | |
| 5484 | - "integrity" "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" | |
| 5485 | - "resolved" "https://registry.npmmirror.com/send/-/send-0.18.0.tgz" | |
| 5486 | - "version" "0.18.0" | |
| 5487 | - dependencies: | |
| 5488 | - "debug" "2.6.9" | |
| 5489 | - "depd" "2.0.0" | |
| 5490 | - "destroy" "1.2.0" | |
| 5491 | - "encodeurl" "~1.0.2" | |
| 5492 | - "escape-html" "~1.0.3" | |
| 5493 | - "etag" "~1.8.1" | |
| 5494 | - "fresh" "0.5.2" | |
| 5495 | - "http-errors" "2.0.0" | |
| 5496 | - "mime" "1.6.0" | |
| 5497 | - "ms" "2.1.3" | |
| 5498 | - "on-finished" "2.4.1" | |
| 5499 | - "range-parser" "~1.2.1" | |
| 5500 | - "statuses" "2.0.1" | |
| 5501 | - | |
| 5502 | -"serialize-javascript@^6.0.1": | |
| 5503 | - "integrity" "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" | |
| 5504 | - "resolved" "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz" | |
| 5505 | - "version" "6.0.1" | |
| 5506 | - dependencies: | |
| 5507 | - "randombytes" "^2.1.0" | |
| 5508 | - | |
| 5509 | -"serve-static@1.15.0": | |
| 5510 | - "integrity" "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" | |
| 5511 | - "resolved" "https://registry.npmmirror.com/serve-static/-/serve-static-1.15.0.tgz" | |
| 5512 | - "version" "1.15.0" | |
| 5513 | - dependencies: | |
| 5514 | - "encodeurl" "~1.0.2" | |
| 5515 | - "escape-html" "~1.0.3" | |
| 5516 | - "parseurl" "~1.3.3" | |
| 5517 | - "send" "0.18.0" | |
| 5518 | - | |
| 5519 | -"set-function-length@^1.1.1": | |
| 5520 | - "integrity" "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==" | |
| 5521 | - "resolved" "https://registry.npmmirror.com/set-function-length/-/set-function-length-1.1.1.tgz" | |
| 5522 | - "version" "1.1.1" | |
| 5523 | - dependencies: | |
| 5524 | - "define-data-property" "^1.1.1" | |
| 5525 | - "get-intrinsic" "^1.2.1" | |
| 5526 | - "gopd" "^1.0.1" | |
| 5527 | - "has-property-descriptors" "^1.0.0" | |
| 5528 | - | |
| 5529 | -"setprototypeof@1.2.0": | |
| 5530 | - "integrity" "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" | |
| 5531 | - "resolved" "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz" | |
| 5532 | - "version" "1.2.0" | |
| 5533 | - | |
| 5534 | -"shebang-command@^2.0.0": | |
| 5535 | - "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" | |
| 5536 | - "resolved" "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz" | |
| 5537 | - "version" "2.0.0" | |
| 5538 | - dependencies: | |
| 5539 | - "shebang-regex" "^3.0.0" | |
| 5540 | - | |
| 5541 | -"shebang-regex@^3.0.0": | |
| 5542 | - "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" | |
| 5543 | - "resolved" "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz" | |
| 5544 | - "version" "3.0.0" | |
| 5545 | - | |
| 5546 | -"side-channel@^1.0.4": | |
| 5547 | - "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" | |
| 5548 | - "resolved" "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz" | |
| 5549 | - "version" "1.0.4" | |
| 5550 | - dependencies: | |
| 5551 | - "call-bind" "^1.0.0" | |
| 5552 | - "get-intrinsic" "^1.0.2" | |
| 5553 | - "object-inspect" "^1.9.0" | |
| 5554 | - | |
| 5555 | -"signal-exit@^3.0.2", "signal-exit@^3.0.3": | |
| 5556 | - "integrity" "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" | |
| 5557 | - "resolved" "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz" | |
| 5558 | - "version" "3.0.7" | |
| 5559 | - | |
| 5560 | -"sisteransi@^1.0.5": | |
| 5561 | - "integrity" "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" | |
| 5562 | - "resolved" "https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz" | |
| 5563 | - "version" "1.0.5" | |
| 5564 | - | |
| 5565 | -"slash@^3.0.0": | |
| 5566 | - "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" | |
| 5567 | - "resolved" "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz" | |
| 5568 | - "version" "3.0.0" | |
| 5569 | - | |
| 5570 | -"source-map-js@^1.0.2", "source-map-js@>=0.6.2 <2.0.0": | |
| 5571 | - "integrity" "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" | |
| 5572 | - "resolved" "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz" | |
| 5573 | - "version" "1.0.2" | |
| 5574 | - | |
| 5575 | -"source-map-support@^0.5.6", "source-map-support@~0.5.20": | |
| 5576 | - "integrity" "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" | |
| 5577 | - "resolved" "https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz" | |
| 5578 | - "version" "0.5.21" | |
| 5579 | - dependencies: | |
| 5580 | - "buffer-from" "^1.0.0" | |
| 5581 | - "source-map" "^0.6.0" | |
| 5582 | - | |
| 5583 | -"source-map@^0.6.0", "source-map@^0.6.1", "source-map@~0.6.1", "source-map@0.6.1": | |
| 5584 | - "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" | |
| 5585 | - "resolved" "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz" | |
| 5586 | - "version" "0.6.1" | |
| 5587 | - | |
| 5588 | -"source-map@^0.7.3": | |
| 5589 | - "integrity" "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" | |
| 5590 | - "resolved" "https://registry.npmmirror.com/source-map/-/source-map-0.7.4.tgz" | |
| 5591 | - "version" "0.7.4" | |
| 5592 | - | |
| 5593 | -"sourcemap-codec@^1.4.8": | |
| 5594 | - "integrity" "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" | |
| 5595 | - "resolved" "https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz" | |
| 5596 | - "version" "1.4.8" | |
| 5597 | - | |
| 5598 | -"sprintf-js@~1.0.2": | |
| 5599 | - "integrity" "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" | |
| 5600 | - "resolved" "https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz" | |
| 5601 | - "version" "1.0.3" | |
| 5602 | - | |
| 5603 | -"stack-utils@^2.0.3": | |
| 5604 | - "integrity" "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" | |
| 5605 | - "resolved" "https://registry.npmmirror.com/stack-utils/-/stack-utils-2.0.6.tgz" | |
| 5606 | - "version" "2.0.6" | |
| 5607 | - dependencies: | |
| 5608 | - "escape-string-regexp" "^2.0.0" | |
| 5609 | - | |
| 5610 | -"statuses@2.0.1": | |
| 5611 | - "integrity" "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" | |
| 5612 | - "resolved" "https://registry.npmmirror.com/statuses/-/statuses-2.0.1.tgz" | |
| 5613 | - "version" "2.0.1" | |
| 5614 | - | |
| 5615 | -"string-hash@^1.1.1": | |
| 5616 | - "integrity" "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==" | |
| 5617 | - "resolved" "https://registry.npmmirror.com/string-hash/-/string-hash-1.1.3.tgz" | |
| 5618 | - "version" "1.1.3" | |
| 5619 | - | |
| 5620 | -"string-length@^4.0.1": | |
| 5621 | - "integrity" "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" | |
| 5622 | - "resolved" "https://registry.npmmirror.com/string-length/-/string-length-4.0.2.tgz" | |
| 5623 | - "version" "4.0.2" | |
| 5624 | - dependencies: | |
| 5625 | - "char-regex" "^1.0.2" | |
| 5626 | - "strip-ansi" "^6.0.0" | |
| 5627 | - | |
| 5628 | -"string-width@^4.1.0", "string-width@^4.2.0": | |
| 5629 | - "integrity" "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" | |
| 5630 | - "resolved" "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz" | |
| 5631 | - "version" "4.2.3" | |
| 5632 | - dependencies: | |
| 5633 | - "emoji-regex" "^8.0.0" | |
| 5634 | - "is-fullwidth-code-point" "^3.0.0" | |
| 5635 | - "strip-ansi" "^6.0.1" | |
| 5636 | - | |
| 5637 | -"strip-ansi@^6.0.0", "strip-ansi@^6.0.1": | |
| 5638 | - "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" | |
| 5639 | - "resolved" "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" | |
| 5640 | - "version" "6.0.1" | |
| 5641 | - dependencies: | |
| 5642 | - "ansi-regex" "^5.0.1" | |
| 5643 | - | |
| 5644 | -"strip-bom@^4.0.0": | |
| 5645 | - "integrity" "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" | |
| 5646 | - "resolved" "https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz" | |
| 5647 | - "version" "4.0.0" | |
| 5648 | - | |
| 5649 | -"strip-final-newline@^2.0.0": | |
| 5650 | - "integrity" "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" | |
| 5651 | - "resolved" "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz" | |
| 5652 | - "version" "2.0.0" | |
| 5653 | - | |
| 5654 | -"strip-json-comments@^3.1.1": | |
| 5655 | - "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" | |
| 5656 | - "resolved" "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz" | |
| 5657 | - "version" "3.1.1" | |
| 5658 | - | |
| 5659 | -"supports-color@^5.3.0": | |
| 5660 | - "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" | |
| 5661 | - "resolved" "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz" | |
| 5662 | - "version" "5.5.0" | |
| 5663 | - dependencies: | |
| 5664 | - "has-flag" "^3.0.0" | |
| 5665 | - | |
| 5666 | -"supports-color@^7.0.0": | |
| 5667 | - "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" | |
| 5668 | - "resolved" "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz" | |
| 5669 | - "version" "7.2.0" | |
| 5670 | - dependencies: | |
| 5671 | - "has-flag" "^4.0.0" | |
| 5672 | - | |
| 5673 | -"supports-color@^7.1.0": | |
| 5674 | - "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" | |
| 5675 | - "resolved" "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz" | |
| 5676 | - "version" "7.2.0" | |
| 5677 | - dependencies: | |
| 5678 | - "has-flag" "^4.0.0" | |
| 5679 | - | |
| 5680 | -"supports-color@^8.0.0": | |
| 5681 | - "integrity" "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" | |
| 5682 | - "resolved" "https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz" | |
| 5683 | - "version" "8.1.1" | |
| 5684 | - dependencies: | |
| 5685 | - "has-flag" "^4.0.0" | |
| 5686 | - | |
| 5687 | -"supports-hyperlinks@^2.0.0": | |
| 5688 | - "integrity" "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==" | |
| 5689 | - "resolved" "https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz" | |
| 5690 | - "version" "2.3.0" | |
| 5691 | - dependencies: | |
| 5692 | - "has-flag" "^4.0.0" | |
| 5693 | - "supports-color" "^7.0.0" | |
| 5694 | - | |
| 5695 | -"supports-preserve-symlinks-flag@^1.0.0": | |
| 5696 | - "integrity" "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" | |
| 5697 | - "resolved" "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" | |
| 5698 | - "version" "1.0.0" | |
| 5699 | - | |
| 5700 | -"svg-tags@^1.0.0": | |
| 5701 | - "integrity" "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" | |
| 5702 | - "resolved" "https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz" | |
| 5703 | - "version" "1.0.0" | |
| 5704 | - | |
| 5705 | -"symbol-tree@^3.2.4": | |
| 5706 | - "integrity" "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" | |
| 5707 | - "resolved" "https://registry.npmmirror.com/symbol-tree/-/symbol-tree-3.2.4.tgz" | |
| 5708 | - "version" "3.2.4" | |
| 5709 | - | |
| 5710 | -"systemjs@^6.14.1": | |
| 5711 | - "integrity" "sha512-1TlOwvKWdXxAY9vba+huLu99zrQURDWA8pUTYsRIYDZYQbGyK+pyEP4h4dlySsqo7ozyJBmYD20F+iUHhAltEg==" | |
| 5712 | - "resolved" "https://registry.npmmirror.com/systemjs/-/systemjs-6.14.2.tgz" | |
| 5713 | - "version" "6.14.2" | |
| 5456 | + ajv "^6.12.5" | |
| 5457 | + ajv-keywords "^3.5.2" | |
| 5458 | + | |
| 5459 | +sdp@^2.12.0, sdp@^2.6.0: | |
| 5460 | + version "2.12.0" | |
| 5461 | + resolved "https://registry.npmmirror.com/sdp/-/sdp-2.12.0.tgz" | |
| 5462 | + integrity sha512-jhXqQAQVM+8Xj5EjJGVweuEzgtGWb3tmEEpl3CLP3cStInSbVHSg0QWOGQzNq8pSID4JkpeV2mPqlMDLrm0/Vw== | |
| 5463 | + | |
| 5464 | +select@^1.1.2: | |
| 5465 | + version "1.1.2" | |
| 5466 | + resolved "https://registry.npmmirror.com/select/-/select-1.1.2.tgz" | |
| 5467 | + integrity sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA== | |
| 5468 | + | |
| 5469 | +semver@^6.3.0, semver@^6.3.1: | |
| 5470 | + version "6.3.1" | |
| 5471 | + resolved "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz" | |
| 5472 | + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== | |
| 5473 | + | |
| 5474 | +semver@^7.3.2: | |
| 5475 | + version "7.5.4" | |
| 5476 | + resolved "https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz" | |
| 5477 | + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== | |
| 5478 | + dependencies: | |
| 5479 | + lru-cache "^6.0.0" | |
| 5480 | + | |
| 5481 | +semver@^7.5.3: | |
| 5482 | + version "7.5.4" | |
| 5483 | + resolved "https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz" | |
| 5484 | + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== | |
| 5485 | + dependencies: | |
| 5486 | + lru-cache "^6.0.0" | |
| 5487 | + | |
| 5488 | +send@0.18.0: | |
| 5489 | + version "0.18.0" | |
| 5490 | + resolved "https://registry.npmmirror.com/send/-/send-0.18.0.tgz" | |
| 5491 | + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== | |
| 5492 | + dependencies: | |
| 5493 | + debug "2.6.9" | |
| 5494 | + depd "2.0.0" | |
| 5495 | + destroy "1.2.0" | |
| 5496 | + encodeurl "~1.0.2" | |
| 5497 | + escape-html "~1.0.3" | |
| 5498 | + etag "~1.8.1" | |
| 5499 | + fresh "0.5.2" | |
| 5500 | + http-errors "2.0.0" | |
| 5501 | + mime "1.6.0" | |
| 5502 | + ms "2.1.3" | |
| 5503 | + on-finished "2.4.1" | |
| 5504 | + range-parser "~1.2.1" | |
| 5505 | + statuses "2.0.1" | |
| 5506 | + | |
| 5507 | +serialize-javascript@^6.0.1: | |
| 5508 | + version "6.0.1" | |
| 5509 | + resolved "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz" | |
| 5510 | + integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== | |
| 5511 | + dependencies: | |
| 5512 | + randombytes "^2.1.0" | |
| 5513 | + | |
| 5514 | +serve-static@1.15.0: | |
| 5515 | + version "1.15.0" | |
| 5516 | + resolved "https://registry.npmmirror.com/serve-static/-/serve-static-1.15.0.tgz" | |
| 5517 | + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== | |
| 5518 | + dependencies: | |
| 5519 | + encodeurl "~1.0.2" | |
| 5520 | + escape-html "~1.0.3" | |
| 5521 | + parseurl "~1.3.3" | |
| 5522 | + send "0.18.0" | |
| 5523 | + | |
| 5524 | +set-function-length@^1.1.1: | |
| 5525 | + version "1.1.1" | |
| 5526 | + resolved "https://registry.npmmirror.com/set-function-length/-/set-function-length-1.1.1.tgz" | |
| 5527 | + integrity sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ== | |
| 5528 | + dependencies: | |
| 5529 | + define-data-property "^1.1.1" | |
| 5530 | + get-intrinsic "^1.2.1" | |
| 5531 | + gopd "^1.0.1" | |
| 5532 | + has-property-descriptors "^1.0.0" | |
| 5533 | + | |
| 5534 | +setprototypeof@1.2.0: | |
| 5535 | + version "1.2.0" | |
| 5536 | + resolved "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz" | |
| 5537 | + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== | |
| 5538 | + | |
| 5539 | +shebang-command@^2.0.0: | |
| 5540 | + version "2.0.0" | |
| 5541 | + resolved "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz" | |
| 5542 | + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== | |
| 5543 | + dependencies: | |
| 5544 | + shebang-regex "^3.0.0" | |
| 5545 | + | |
| 5546 | +shebang-regex@^3.0.0: | |
| 5547 | + version "3.0.0" | |
| 5548 | + resolved "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz" | |
| 5549 | + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== | |
| 5550 | + | |
| 5551 | +side-channel@^1.0.4: | |
| 5552 | + version "1.0.4" | |
| 5553 | + resolved "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz" | |
| 5554 | + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== | |
| 5555 | + dependencies: | |
| 5556 | + call-bind "^1.0.0" | |
| 5557 | + get-intrinsic "^1.0.2" | |
| 5558 | + object-inspect "^1.9.0" | |
| 5559 | + | |
| 5560 | +signal-exit@^3.0.2, signal-exit@^3.0.3: | |
| 5561 | + version "3.0.7" | |
| 5562 | + resolved "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz" | |
| 5563 | + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== | |
| 5564 | + | |
| 5565 | +sisteransi@^1.0.5: | |
| 5566 | + version "1.0.5" | |
| 5567 | + resolved "https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz" | |
| 5568 | + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== | |
| 5569 | + | |
| 5570 | +slash@^3.0.0: | |
| 5571 | + version "3.0.0" | |
| 5572 | + resolved "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz" | |
| 5573 | + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== | |
| 5574 | + | |
| 5575 | +source-map-js@^1.0.2, "source-map-js@>=0.6.2 <2.0.0": | |
| 5576 | + version "1.0.2" | |
| 5577 | + resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz" | |
| 5578 | + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== | |
| 5579 | + | |
| 5580 | +source-map-support@^0.5.6, source-map-support@~0.5.20: | |
| 5581 | + version "0.5.21" | |
| 5582 | + resolved "https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz" | |
| 5583 | + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== | |
| 5584 | + dependencies: | |
| 5585 | + buffer-from "^1.0.0" | |
| 5586 | + source-map "^0.6.0" | |
| 5587 | + | |
| 5588 | +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1, source-map@0.6.1: | |
| 5589 | + version "0.6.1" | |
| 5590 | + resolved "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz" | |
| 5591 | + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== | |
| 5592 | + | |
| 5593 | +source-map@^0.7.3: | |
| 5594 | + version "0.7.4" | |
| 5595 | + resolved "https://registry.npmmirror.com/source-map/-/source-map-0.7.4.tgz" | |
| 5596 | + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== | |
| 5597 | + | |
| 5598 | +sourcemap-codec@^1.4.8: | |
| 5599 | + version "1.4.8" | |
| 5600 | + resolved "https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz" | |
| 5601 | + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== | |
| 5602 | + | |
| 5603 | +sprintf-js@~1.0.2: | |
| 5604 | + version "1.0.3" | |
| 5605 | + resolved "https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz" | |
| 5606 | + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== | |
| 5607 | + | |
| 5608 | +stack-utils@^2.0.3: | |
| 5609 | + version "2.0.6" | |
| 5610 | + resolved "https://registry.npmmirror.com/stack-utils/-/stack-utils-2.0.6.tgz" | |
| 5611 | + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== | |
| 5612 | + dependencies: | |
| 5613 | + escape-string-regexp "^2.0.0" | |
| 5614 | + | |
| 5615 | +statuses@2.0.1: | |
| 5616 | + version "2.0.1" | |
| 5617 | + resolved "https://registry.npmmirror.com/statuses/-/statuses-2.0.1.tgz" | |
| 5618 | + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== | |
| 5619 | + | |
| 5620 | +string-hash@^1.1.1: | |
| 5621 | + version "1.1.3" | |
| 5622 | + resolved "https://registry.npmmirror.com/string-hash/-/string-hash-1.1.3.tgz" | |
| 5623 | + integrity sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A== | |
| 5624 | + | |
| 5625 | +string-length@^4.0.1: | |
| 5626 | + version "4.0.2" | |
| 5627 | + resolved "https://registry.npmmirror.com/string-length/-/string-length-4.0.2.tgz" | |
| 5628 | + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== | |
| 5629 | + dependencies: | |
| 5630 | + char-regex "^1.0.2" | |
| 5631 | + strip-ansi "^6.0.0" | |
| 5632 | + | |
| 5633 | +string-width@^4.1.0, string-width@^4.2.0: | |
| 5634 | + version "4.2.3" | |
| 5635 | + resolved "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz" | |
| 5636 | + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== | |
| 5637 | + dependencies: | |
| 5638 | + emoji-regex "^8.0.0" | |
| 5639 | + is-fullwidth-code-point "^3.0.0" | |
| 5640 | + strip-ansi "^6.0.1" | |
| 5641 | + | |
| 5642 | +strip-ansi@^6.0.0, strip-ansi@^6.0.1: | |
| 5643 | + version "6.0.1" | |
| 5644 | + resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" | |
| 5645 | + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== | |
| 5646 | + dependencies: | |
| 5647 | + ansi-regex "^5.0.1" | |
| 5648 | + | |
| 5649 | +strip-bom@^4.0.0: | |
| 5650 | + version "4.0.0" | |
| 5651 | + resolved "https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz" | |
| 5652 | + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== | |
| 5653 | + | |
| 5654 | +strip-final-newline@^2.0.0: | |
| 5655 | + version "2.0.0" | |
| 5656 | + resolved "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz" | |
| 5657 | + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== | |
| 5658 | + | |
| 5659 | +strip-json-comments@^3.1.1: | |
| 5660 | + version "3.1.1" | |
| 5661 | + resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz" | |
| 5662 | + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== | |
| 5663 | + | |
| 5664 | +supports-color@^5.3.0: | |
| 5665 | + version "5.5.0" | |
| 5666 | + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz" | |
| 5667 | + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== | |
| 5668 | + dependencies: | |
| 5669 | + has-flag "^3.0.0" | |
| 5670 | + | |
| 5671 | +supports-color@^7.0.0: | |
| 5672 | + version "7.2.0" | |
| 5673 | + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz" | |
| 5674 | + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== | |
| 5675 | + dependencies: | |
| 5676 | + has-flag "^4.0.0" | |
| 5677 | + | |
| 5678 | +supports-color@^7.1.0: | |
| 5679 | + version "7.2.0" | |
| 5680 | + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz" | |
| 5681 | + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== | |
| 5682 | + dependencies: | |
| 5683 | + has-flag "^4.0.0" | |
| 5684 | + | |
| 5685 | +supports-color@^8.0.0: | |
| 5686 | + version "8.1.1" | |
| 5687 | + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz" | |
| 5688 | + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== | |
| 5689 | + dependencies: | |
| 5690 | + has-flag "^4.0.0" | |
| 5691 | + | |
| 5692 | +supports-hyperlinks@^2.0.0: | |
| 5693 | + version "2.3.0" | |
| 5694 | + resolved "https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz" | |
| 5695 | + integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== | |
| 5696 | + dependencies: | |
| 5697 | + has-flag "^4.0.0" | |
| 5698 | + supports-color "^7.0.0" | |
| 5699 | + | |
| 5700 | +supports-preserve-symlinks-flag@^1.0.0: | |
| 5701 | + version "1.0.0" | |
| 5702 | + resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" | |
| 5703 | + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== | |
| 5704 | + | |
| 5705 | +svg-tags@^1.0.0: | |
| 5706 | + version "1.0.0" | |
| 5707 | + resolved "https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz" | |
| 5708 | + integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== | |
| 5709 | + | |
| 5710 | +symbol-tree@^3.2.4: | |
| 5711 | + version "3.2.4" | |
| 5712 | + resolved "https://registry.npmmirror.com/symbol-tree/-/symbol-tree-3.2.4.tgz" | |
| 5713 | + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== | |
| 5714 | + | |
| 5715 | +systemjs@^6.14.1: | |
| 5716 | + version "6.14.2" | |
| 5717 | + resolved "https://registry.npmmirror.com/systemjs/-/systemjs-6.14.2.tgz" | |
| 5718 | + integrity sha512-1TlOwvKWdXxAY9vba+huLu99zrQURDWA8pUTYsRIYDZYQbGyK+pyEP4h4dlySsqo7ozyJBmYD20F+iUHhAltEg== | |
| 5714 | 5719 | |
| 5715 | -"tapable@^2.1.1", "tapable@^2.2.0": | |
| 5716 | - "integrity" "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" | |
| 5717 | - "resolved" "https://registry.npmmirror.com/tapable/-/tapable-2.2.1.tgz" | |
| 5718 | - "version" "2.2.1" | |
| 5720 | +tapable@^2.1.1, tapable@^2.2.0: | |
| 5721 | + version "2.2.1" | |
| 5722 | + resolved "https://registry.npmmirror.com/tapable/-/tapable-2.2.1.tgz" | |
| 5723 | + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== | |
| 5719 | 5724 | |
| 5720 | -"terminal-link@^2.0.0": | |
| 5721 | - "integrity" "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==" | |
| 5722 | - "resolved" "https://registry.npmmirror.com/terminal-link/-/terminal-link-2.1.1.tgz" | |
| 5723 | - "version" "2.1.1" | |
| 5725 | +terminal-link@^2.0.0: | |
| 5726 | + version "2.1.1" | |
| 5727 | + resolved "https://registry.npmmirror.com/terminal-link/-/terminal-link-2.1.1.tgz" | |
| 5728 | + integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== | |
| 5724 | 5729 | dependencies: |
| 5725 | - "ansi-escapes" "^4.2.1" | |
| 5726 | - "supports-hyperlinks" "^2.0.0" | |
| 5730 | + ansi-escapes "^4.2.1" | |
| 5731 | + supports-hyperlinks "^2.0.0" | |
| 5727 | 5732 | |
| 5728 | -"terser-webpack-plugin@^5.3.7": | |
| 5729 | - "integrity" "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" | |
| 5730 | - "resolved" "https://registry.npmmirror.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz" | |
| 5731 | - "version" "5.3.10" | |
| 5733 | +terser-webpack-plugin@^5.3.7: | |
| 5734 | + version "5.3.10" | |
| 5735 | + resolved "https://registry.npmmirror.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz" | |
| 5736 | + integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== | |
| 5732 | 5737 | dependencies: |
| 5733 | 5738 | "@jridgewell/trace-mapping" "^0.3.20" |
| 5734 | - "jest-worker" "^27.4.5" | |
| 5735 | - "schema-utils" "^3.1.1" | |
| 5736 | - "serialize-javascript" "^6.0.1" | |
| 5737 | - "terser" "^5.26.0" | |
| 5739 | + jest-worker "^27.4.5" | |
| 5740 | + schema-utils "^3.1.1" | |
| 5741 | + serialize-javascript "^6.0.1" | |
| 5742 | + terser "^5.26.0" | |
| 5738 | 5743 | |
| 5739 | -"terser@^5.26.0", "terser@^5.4.0": | |
| 5740 | - "integrity" "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==" | |
| 5741 | - "resolved" "https://registry.npmmirror.com/terser/-/terser-5.26.0.tgz" | |
| 5742 | - "version" "5.26.0" | |
| 5744 | +terser@^5.26.0, terser@^5.4.0: | |
| 5745 | + version "5.26.0" | |
| 5746 | + resolved "https://registry.npmmirror.com/terser/-/terser-5.26.0.tgz" | |
| 5747 | + integrity sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ== | |
| 5743 | 5748 | dependencies: |
| 5744 | 5749 | "@jridgewell/source-map" "^0.3.3" |
| 5745 | - "acorn" "^8.8.2" | |
| 5746 | - "commander" "^2.20.0" | |
| 5747 | - "source-map-support" "~0.5.20" | |
| 5750 | + acorn "^8.8.2" | |
| 5751 | + commander "^2.20.0" | |
| 5752 | + source-map-support "~0.5.20" | |
| 5748 | 5753 | |
| 5749 | -"test-exclude@^6.0.0": | |
| 5750 | - "integrity" "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" | |
| 5751 | - "resolved" "https://registry.npmmirror.com/test-exclude/-/test-exclude-6.0.0.tgz" | |
| 5752 | - "version" "6.0.0" | |
| 5754 | +test-exclude@^6.0.0: | |
| 5755 | + version "6.0.0" | |
| 5756 | + resolved "https://registry.npmmirror.com/test-exclude/-/test-exclude-6.0.0.tgz" | |
| 5757 | + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== | |
| 5753 | 5758 | dependencies: |
| 5754 | 5759 | "@istanbuljs/schema" "^0.1.2" |
| 5755 | - "glob" "^7.1.4" | |
| 5756 | - "minimatch" "^3.0.4" | |
| 5757 | - | |
| 5758 | -"throat@^6.0.1": | |
| 5759 | - "integrity" "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" | |
| 5760 | - "resolved" "https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz" | |
| 5761 | - "version" "6.0.2" | |
| 5762 | - | |
| 5763 | -"timm@^1.6.1": | |
| 5764 | - "integrity" "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==" | |
| 5765 | - "resolved" "https://registry.npmmirror.com/timm/-/timm-1.7.1.tgz" | |
| 5766 | - "version" "1.7.1" | |
| 5767 | - | |
| 5768 | -"tiny-emitter@^2.0.0": | |
| 5769 | - "integrity" "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" | |
| 5770 | - "resolved" "https://registry.npmmirror.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz" | |
| 5771 | - "version" "2.1.0" | |
| 5772 | - | |
| 5773 | -"tinycolor2@^1.4.1": | |
| 5774 | - "integrity" "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" | |
| 5775 | - "resolved" "https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz" | |
| 5776 | - "version" "1.6.0" | |
| 5777 | - | |
| 5778 | -"tmpl@1.0.5": | |
| 5779 | - "integrity" "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" | |
| 5780 | - "resolved" "https://registry.npmmirror.com/tmpl/-/tmpl-1.0.5.tgz" | |
| 5781 | - "version" "1.0.5" | |
| 5782 | - | |
| 5783 | -"to-fast-properties@^2.0.0": | |
| 5784 | - "integrity" "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" | |
| 5785 | - "resolved" "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz" | |
| 5786 | - "version" "2.0.0" | |
| 5787 | - | |
| 5788 | -"to-regex-range@^5.0.1": | |
| 5789 | - "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" | |
| 5790 | - "resolved" "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz" | |
| 5791 | - "version" "5.0.1" | |
| 5792 | - dependencies: | |
| 5793 | - "is-number" "^7.0.0" | |
| 5794 | - | |
| 5795 | -"toidentifier@1.0.1": | |
| 5796 | - "integrity" "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" | |
| 5797 | - "resolved" "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz" | |
| 5798 | - "version" "1.0.1" | |
| 5799 | - | |
| 5800 | -"tough-cookie@^4.0.0": | |
| 5801 | - "integrity" "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" | |
| 5802 | - "resolved" "https://registry.npmmirror.com/tough-cookie/-/tough-cookie-4.1.3.tgz" | |
| 5803 | - "version" "4.1.3" | |
| 5804 | - dependencies: | |
| 5805 | - "psl" "^1.1.33" | |
| 5806 | - "punycode" "^2.1.1" | |
| 5807 | - "universalify" "^0.2.0" | |
| 5808 | - "url-parse" "^1.5.3" | |
| 5809 | - | |
| 5810 | -"tr46@^2.1.0": | |
| 5811 | - "integrity" "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==" | |
| 5812 | - "resolved" "https://registry.npmmirror.com/tr46/-/tr46-2.1.0.tgz" | |
| 5813 | - "version" "2.1.0" | |
| 5814 | - dependencies: | |
| 5815 | - "punycode" "^2.1.1" | |
| 5816 | - | |
| 5817 | -"ts-custom-error@^3.0.0": | |
| 5818 | - "integrity" "sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==" | |
| 5819 | - "resolved" "https://registry.npmmirror.com/ts-custom-error/-/ts-custom-error-3.3.1.tgz" | |
| 5820 | - "version" "3.3.1" | |
| 5821 | - | |
| 5822 | -"type-detect@4.0.8": | |
| 5823 | - "integrity" "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" | |
| 5824 | - "resolved" "https://registry.npmmirror.com/type-detect/-/type-detect-4.0.8.tgz" | |
| 5825 | - "version" "4.0.8" | |
| 5826 | - | |
| 5827 | -"type-fest@^0.21.3": | |
| 5828 | - "integrity" "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" | |
| 5829 | - "resolved" "https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz" | |
| 5830 | - "version" "0.21.3" | |
| 5831 | - | |
| 5832 | -"type-is@~1.6.18": | |
| 5833 | - "integrity" "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" | |
| 5834 | - "resolved" "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz" | |
| 5835 | - "version" "1.6.18" | |
| 5836 | - dependencies: | |
| 5837 | - "media-typer" "0.3.0" | |
| 5838 | - "mime-types" "~2.1.24" | |
| 5839 | - | |
| 5840 | -"typedarray-to-buffer@^3.1.5": | |
| 5841 | - "integrity" "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" | |
| 5842 | - "resolved" "https://registry.npmmirror.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" | |
| 5843 | - "version" "3.1.5" | |
| 5844 | - dependencies: | |
| 5845 | - "is-typedarray" "^1.0.0" | |
| 5846 | - | |
| 5847 | -"undici-types@~5.26.4": | |
| 5848 | - "integrity" "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" | |
| 5849 | - "resolved" "https://registry.npmmirror.com/undici-types/-/undici-types-5.26.5.tgz" | |
| 5850 | - "version" "5.26.5" | |
| 5851 | - | |
| 5852 | -"unicode-canonical-property-names-ecmascript@^2.0.0": | |
| 5853 | - "integrity" "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" | |
| 5854 | - "resolved" "https://registry.npmmirror.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz" | |
| 5855 | - "version" "2.0.0" | |
| 5856 | - | |
| 5857 | -"unicode-match-property-ecmascript@^2.0.0": | |
| 5858 | - "integrity" "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" | |
| 5859 | - "resolved" "https://registry.npmmirror.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" | |
| 5860 | - "version" "2.0.0" | |
| 5861 | - dependencies: | |
| 5862 | - "unicode-canonical-property-names-ecmascript" "^2.0.0" | |
| 5863 | - "unicode-property-aliases-ecmascript" "^2.0.0" | |
| 5864 | - | |
| 5865 | -"unicode-match-property-value-ecmascript@^2.1.0": | |
| 5866 | - "integrity" "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" | |
| 5867 | - "resolved" "https://registry.npmmirror.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz" | |
| 5868 | - "version" "2.1.0" | |
| 5869 | - | |
| 5870 | -"unicode-property-aliases-ecmascript@^2.0.0": | |
| 5871 | - "integrity" "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" | |
| 5872 | - "resolved" "https://registry.npmmirror.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz" | |
| 5873 | - "version" "2.1.0" | |
| 5874 | - | |
| 5875 | -"universalify@^0.2.0": | |
| 5876 | - "integrity" "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" | |
| 5877 | - "resolved" "https://registry.npmmirror.com/universalify/-/universalify-0.2.0.tgz" | |
| 5878 | - "version" "0.2.0" | |
| 5879 | - | |
| 5880 | -"universalify@^2.0.0": | |
| 5881 | - "integrity" "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" | |
| 5882 | - "resolved" "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" | |
| 5883 | - "version" "2.0.1" | |
| 5884 | - | |
| 5885 | -"unpipe@~1.0.0", "unpipe@1.0.0": | |
| 5886 | - "integrity" "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" | |
| 5887 | - "resolved" "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz" | |
| 5888 | - "version" "1.0.0" | |
| 5889 | - | |
| 5890 | -"unquote@^1.1.1": | |
| 5891 | - "integrity" "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" | |
| 5892 | - "resolved" "https://registry.npmmirror.com/unquote/-/unquote-1.1.1.tgz" | |
| 5893 | - "version" "1.1.1" | |
| 5894 | - | |
| 5895 | -"update-browserslist-db@^1.0.13": | |
| 5896 | - "integrity" "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" | |
| 5897 | - "resolved" "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz" | |
| 5898 | - "version" "1.0.13" | |
| 5899 | - dependencies: | |
| 5900 | - "escalade" "^3.1.1" | |
| 5901 | - "picocolors" "^1.0.0" | |
| 5902 | - | |
| 5903 | -"uqrcodejs@^4.0.7": | |
| 5904 | - "integrity" "sha512-84+aZmD2godCVI+93lxE3YUAPNY8zAJvNA7xRS7R7U+q57KzMDepBSfNCwoRUhWOfR6eHFoAOcHRPwsP6ka1cA==" | |
| 5905 | - "resolved" "https://registry.npmmirror.com/uqrcodejs/-/uqrcodejs-4.0.7.tgz" | |
| 5906 | - "version" "4.0.7" | |
| 5907 | - | |
| 5908 | -"uri-js@^4.2.2": | |
| 5909 | - "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" | |
| 5910 | - "resolved" "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz" | |
| 5911 | - "version" "4.4.1" | |
| 5912 | - dependencies: | |
| 5913 | - "punycode" "^2.1.0" | |
| 5914 | - | |
| 5915 | -"url-parse@^1.5.3": | |
| 5916 | - "integrity" "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" | |
| 5917 | - "resolved" "https://registry.npmmirror.com/url-parse/-/url-parse-1.5.10.tgz" | |
| 5918 | - "version" "1.5.10" | |
| 5919 | - dependencies: | |
| 5920 | - "querystringify" "^2.1.1" | |
| 5921 | - "requires-port" "^1.0.0" | |
| 5922 | - | |
| 5923 | -"utif@^2.0.1": | |
| 5924 | - "integrity" "sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==" | |
| 5925 | - "resolved" "https://registry.npmmirror.com/utif/-/utif-2.0.1.tgz" | |
| 5926 | - "version" "2.0.1" | |
| 5927 | - dependencies: | |
| 5928 | - "pako" "^1.0.5" | |
| 5929 | - | |
| 5930 | -"util-deprecate@^1.0.2": | |
| 5931 | - "integrity" "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" | |
| 5932 | - "resolved" "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz" | |
| 5933 | - "version" "1.0.2" | |
| 5934 | - | |
| 5935 | -"utils-merge@1.0.1": | |
| 5936 | - "integrity" "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" | |
| 5937 | - "resolved" "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz" | |
| 5938 | - "version" "1.0.1" | |
| 5939 | - | |
| 5940 | -"v8-to-istanbul@^8.1.0": | |
| 5941 | - "integrity" "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==" | |
| 5942 | - "resolved" "https://registry.npmmirror.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz" | |
| 5943 | - "version" "8.1.1" | |
| 5760 | + glob "^7.1.4" | |
| 5761 | + minimatch "^3.0.4" | |
| 5762 | + | |
| 5763 | +throat@^6.0.1: | |
| 5764 | + version "6.0.2" | |
| 5765 | + resolved "https://registry.npmmirror.com/throat/-/throat-6.0.2.tgz" | |
| 5766 | + integrity sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ== | |
| 5767 | + | |
| 5768 | +timm@^1.6.1: | |
| 5769 | + version "1.7.1" | |
| 5770 | + resolved "https://registry.npmmirror.com/timm/-/timm-1.7.1.tgz" | |
| 5771 | + integrity sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw== | |
| 5772 | + | |
| 5773 | +tiny-emitter@^2.0.0: | |
| 5774 | + version "2.1.0" | |
| 5775 | + resolved "https://registry.npmmirror.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz" | |
| 5776 | + integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== | |
| 5777 | + | |
| 5778 | +tinycolor2@^1.4.1: | |
| 5779 | + version "1.6.0" | |
| 5780 | + resolved "https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz" | |
| 5781 | + integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw== | |
| 5782 | + | |
| 5783 | +tmpl@1.0.5: | |
| 5784 | + version "1.0.5" | |
| 5785 | + resolved "https://registry.npmmirror.com/tmpl/-/tmpl-1.0.5.tgz" | |
| 5786 | + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== | |
| 5787 | + | |
| 5788 | +to-fast-properties@^2.0.0: | |
| 5789 | + version "2.0.0" | |
| 5790 | + resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz" | |
| 5791 | + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== | |
| 5792 | + | |
| 5793 | +to-regex-range@^5.0.1: | |
| 5794 | + version "5.0.1" | |
| 5795 | + resolved "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz" | |
| 5796 | + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== | |
| 5797 | + dependencies: | |
| 5798 | + is-number "^7.0.0" | |
| 5799 | + | |
| 5800 | +toidentifier@1.0.1: | |
| 5801 | + version "1.0.1" | |
| 5802 | + resolved "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz" | |
| 5803 | + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== | |
| 5804 | + | |
| 5805 | +tough-cookie@^4.0.0: | |
| 5806 | + version "4.1.3" | |
| 5807 | + resolved "https://registry.npmmirror.com/tough-cookie/-/tough-cookie-4.1.3.tgz" | |
| 5808 | + integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== | |
| 5809 | + dependencies: | |
| 5810 | + psl "^1.1.33" | |
| 5811 | + punycode "^2.1.1" | |
| 5812 | + universalify "^0.2.0" | |
| 5813 | + url-parse "^1.5.3" | |
| 5814 | + | |
| 5815 | +tr46@^2.1.0: | |
| 5816 | + version "2.1.0" | |
| 5817 | + resolved "https://registry.npmmirror.com/tr46/-/tr46-2.1.0.tgz" | |
| 5818 | + integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== | |
| 5819 | + dependencies: | |
| 5820 | + punycode "^2.1.1" | |
| 5821 | + | |
| 5822 | +ts-custom-error@^3.0.0: | |
| 5823 | + version "3.3.1" | |
| 5824 | + resolved "https://registry.npmmirror.com/ts-custom-error/-/ts-custom-error-3.3.1.tgz" | |
| 5825 | + integrity sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A== | |
| 5826 | + | |
| 5827 | +type-detect@4.0.8: | |
| 5828 | + version "4.0.8" | |
| 5829 | + resolved "https://registry.npmmirror.com/type-detect/-/type-detect-4.0.8.tgz" | |
| 5830 | + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== | |
| 5831 | + | |
| 5832 | +type-fest@^0.21.3: | |
| 5833 | + version "0.21.3" | |
| 5834 | + resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz" | |
| 5835 | + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== | |
| 5836 | + | |
| 5837 | +type-is@~1.6.18: | |
| 5838 | + version "1.6.18" | |
| 5839 | + resolved "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz" | |
| 5840 | + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== | |
| 5841 | + dependencies: | |
| 5842 | + media-typer "0.3.0" | |
| 5843 | + mime-types "~2.1.24" | |
| 5844 | + | |
| 5845 | +typedarray-to-buffer@^3.1.5: | |
| 5846 | + version "3.1.5" | |
| 5847 | + resolved "https://registry.npmmirror.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" | |
| 5848 | + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== | |
| 5849 | + dependencies: | |
| 5850 | + is-typedarray "^1.0.0" | |
| 5851 | + | |
| 5852 | +undici-types@~5.26.4: | |
| 5853 | + version "5.26.5" | |
| 5854 | + resolved "https://registry.npmmirror.com/undici-types/-/undici-types-5.26.5.tgz" | |
| 5855 | + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== | |
| 5856 | + | |
| 5857 | +unicode-canonical-property-names-ecmascript@^2.0.0: | |
| 5858 | + version "2.0.0" | |
| 5859 | + resolved "https://registry.npmmirror.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz" | |
| 5860 | + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== | |
| 5861 | + | |
| 5862 | +unicode-match-property-ecmascript@^2.0.0: | |
| 5863 | + version "2.0.0" | |
| 5864 | + resolved "https://registry.npmmirror.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" | |
| 5865 | + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== | |
| 5866 | + dependencies: | |
| 5867 | + unicode-canonical-property-names-ecmascript "^2.0.0" | |
| 5868 | + unicode-property-aliases-ecmascript "^2.0.0" | |
| 5869 | + | |
| 5870 | +unicode-match-property-value-ecmascript@^2.1.0: | |
| 5871 | + version "2.1.0" | |
| 5872 | + resolved "https://registry.npmmirror.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz" | |
| 5873 | + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== | |
| 5874 | + | |
| 5875 | +unicode-property-aliases-ecmascript@^2.0.0: | |
| 5876 | + version "2.1.0" | |
| 5877 | + resolved "https://registry.npmmirror.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz" | |
| 5878 | + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== | |
| 5879 | + | |
| 5880 | +universalify@^0.2.0: | |
| 5881 | + version "0.2.0" | |
| 5882 | + resolved "https://registry.npmmirror.com/universalify/-/universalify-0.2.0.tgz" | |
| 5883 | + integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== | |
| 5884 | + | |
| 5885 | +universalify@^2.0.0: | |
| 5886 | + version "2.0.1" | |
| 5887 | + resolved "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" | |
| 5888 | + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== | |
| 5889 | + | |
| 5890 | +unpipe@~1.0.0, unpipe@1.0.0: | |
| 5891 | + version "1.0.0" | |
| 5892 | + resolved "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz" | |
| 5893 | + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== | |
| 5894 | + | |
| 5895 | +unquote@^1.1.1: | |
| 5896 | + version "1.1.1" | |
| 5897 | + resolved "https://registry.npmmirror.com/unquote/-/unquote-1.1.1.tgz" | |
| 5898 | + integrity sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg== | |
| 5899 | + | |
| 5900 | +update-browserslist-db@^1.0.13: | |
| 5901 | + version "1.0.13" | |
| 5902 | + resolved "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz" | |
| 5903 | + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== | |
| 5904 | + dependencies: | |
| 5905 | + escalade "^3.1.1" | |
| 5906 | + picocolors "^1.0.0" | |
| 5907 | + | |
| 5908 | +uqrcodejs@^4.0.7: | |
| 5909 | + version "4.0.7" | |
| 5910 | + resolved "https://registry.npmmirror.com/uqrcodejs/-/uqrcodejs-4.0.7.tgz" | |
| 5911 | + integrity sha512-84+aZmD2godCVI+93lxE3YUAPNY8zAJvNA7xRS7R7U+q57KzMDepBSfNCwoRUhWOfR6eHFoAOcHRPwsP6ka1cA== | |
| 5912 | + | |
| 5913 | +uri-js@^4.2.2: | |
| 5914 | + version "4.4.1" | |
| 5915 | + resolved "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz" | |
| 5916 | + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== | |
| 5917 | + dependencies: | |
| 5918 | + punycode "^2.1.0" | |
| 5919 | + | |
| 5920 | +url-parse@^1.5.3: | |
| 5921 | + version "1.5.10" | |
| 5922 | + resolved "https://registry.npmmirror.com/url-parse/-/url-parse-1.5.10.tgz" | |
| 5923 | + integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== | |
| 5924 | + dependencies: | |
| 5925 | + querystringify "^2.1.1" | |
| 5926 | + requires-port "^1.0.0" | |
| 5927 | + | |
| 5928 | +utif@^2.0.1: | |
| 5929 | + version "2.0.1" | |
| 5930 | + resolved "https://registry.npmmirror.com/utif/-/utif-2.0.1.tgz" | |
| 5931 | + integrity sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg== | |
| 5932 | + dependencies: | |
| 5933 | + pako "^1.0.5" | |
| 5934 | + | |
| 5935 | +util-deprecate@^1.0.2: | |
| 5936 | + version "1.0.2" | |
| 5937 | + resolved "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz" | |
| 5938 | + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== | |
| 5939 | + | |
| 5940 | +utils-merge@1.0.1: | |
| 5941 | + version "1.0.1" | |
| 5942 | + resolved "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz" | |
| 5943 | + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== | |
| 5944 | + | |
| 5945 | +v8-to-istanbul@^8.1.0: | |
| 5946 | + version "8.1.1" | |
| 5947 | + resolved "https://registry.npmmirror.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz" | |
| 5948 | + integrity sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w== | |
| 5944 | 5949 | dependencies: |
| 5945 | 5950 | "@types/istanbul-lib-coverage" "^2.0.1" |
| 5946 | - "convert-source-map" "^1.6.0" | |
| 5947 | - "source-map" "^0.7.3" | |
| 5951 | + convert-source-map "^1.6.0" | |
| 5952 | + source-map "^0.7.3" | |
| 5948 | 5953 | |
| 5949 | -"vary@~1.1.2": | |
| 5950 | - "integrity" "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" | |
| 5951 | - "resolved" "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz" | |
| 5952 | - "version" "1.1.2" | |
| 5954 | +vary@~1.1.2: | |
| 5955 | + version "1.1.2" | |
| 5956 | + resolved "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz" | |
| 5957 | + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== | |
| 5953 | 5958 | |
| 5954 | -"vconsole@^3.15.1": | |
| 5955 | - "integrity" "sha512-KH8XLdrq9T5YHJO/ixrjivHfmF2PC2CdVoK6RWZB4yftMykYIaXY1mxZYAic70vADM54kpMQF+dYmvl5NRNy1g==" | |
| 5956 | - "resolved" "https://registry.npmmirror.com/vconsole/-/vconsole-3.15.1.tgz" | |
| 5957 | - "version" "3.15.1" | |
| 5959 | +vconsole@^3.15.1: | |
| 5960 | + version "3.15.1" | |
| 5961 | + resolved "https://registry.npmmirror.com/vconsole/-/vconsole-3.15.1.tgz" | |
| 5962 | + integrity sha512-KH8XLdrq9T5YHJO/ixrjivHfmF2PC2CdVoK6RWZB4yftMykYIaXY1mxZYAic70vADM54kpMQF+dYmvl5NRNy1g== | |
| 5958 | 5963 | dependencies: |
| 5959 | 5964 | "@babel/runtime" "^7.17.2" |
| 5960 | - "copy-text-to-clipboard" "^3.0.1" | |
| 5961 | - "core-js" "^3.11.0" | |
| 5962 | - "mutation-observer" "^1.0.3" | |
| 5963 | - | |
| 5964 | -"vite@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0", "vite@^4.0.0", "vite@4.0.3": | |
| 5965 | - "integrity" "sha512-HvuNv1RdE7deIfQb8mPk51UKjqptO/4RXZ5yXSAvurd5xOckwS/gg8h9Tky3uSbnjYTgUm0hVCet1cyhKd73ZA==" | |
| 5966 | - "resolved" "https://registry.npmmirror.com/vite/-/vite-4.0.3.tgz" | |
| 5967 | - "version" "4.0.3" | |
| 5968 | - dependencies: | |
| 5969 | - "esbuild" "^0.16.3" | |
| 5970 | - "postcss" "^8.4.20" | |
| 5971 | - "resolve" "^1.22.1" | |
| 5972 | - "rollup" "^3.7.0" | |
| 5965 | + copy-text-to-clipboard "^3.0.1" | |
| 5966 | + core-js "^3.11.0" | |
| 5967 | + mutation-observer "^1.0.3" | |
| 5968 | + | |
| 5969 | +"vite@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0", vite@^4.0.0, vite@4.0.3: | |
| 5970 | + version "4.0.3" | |
| 5971 | + resolved "https://registry.npmmirror.com/vite/-/vite-4.0.3.tgz" | |
| 5972 | + integrity sha512-HvuNv1RdE7deIfQb8mPk51UKjqptO/4RXZ5yXSAvurd5xOckwS/gg8h9Tky3uSbnjYTgUm0hVCet1cyhKd73ZA== | |
| 5973 | + dependencies: | |
| 5974 | + esbuild "^0.16.3" | |
| 5975 | + postcss "^8.4.20" | |
| 5976 | + resolve "^1.22.1" | |
| 5977 | + rollup "^3.7.0" | |
| 5973 | 5978 | optionalDependencies: |
| 5974 | - "fsevents" "~2.3.2" | |
| 5979 | + fsevents "~2.3.2" | |
| 5975 | 5980 | |
| 5976 | -"vue-demi@*": | |
| 5977 | - "integrity" "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==" | |
| 5978 | - "resolved" "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz" | |
| 5979 | - "version" "0.14.6" | |
| 5981 | +vue-demi@*: | |
| 5982 | + version "0.14.6" | |
| 5983 | + resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz" | |
| 5984 | + integrity sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w== | |
| 5980 | 5985 | |
| 5981 | -"vue-demi@^0.12.1": | |
| 5982 | - "integrity" "sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q==" | |
| 5983 | - "resolved" "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.12.5.tgz" | |
| 5984 | - "version" "0.12.5" | |
| 5986 | +vue-demi@^0.12.1: | |
| 5987 | + version "0.12.5" | |
| 5988 | + resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.12.5.tgz" | |
| 5989 | + integrity sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q== | |
| 5985 | 5990 | |
| 5986 | -"vue-i18n@^9.1.9": | |
| 5987 | - "integrity" "sha512-dpUEjKHg7pEsaS7ZPPxp1CflaR7bGmsvZJEhnszHPKl9OTNyno5j/DvMtMSo41kpddq4felLA7GK2prjpnXVlw==" | |
| 5988 | - "resolved" "https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.6.5.tgz" | |
| 5989 | - "version" "9.6.5" | |
| 5991 | +vue-i18n@^9.1.9: | |
| 5992 | + version "9.6.5" | |
| 5993 | + resolved "https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.6.5.tgz" | |
| 5994 | + integrity sha512-dpUEjKHg7pEsaS7ZPPxp1CflaR7bGmsvZJEhnszHPKl9OTNyno5j/DvMtMSo41kpddq4felLA7GK2prjpnXVlw== | |
| 5990 | 5995 | dependencies: |
| 5991 | 5996 | "@intlify/core-base" "9.6.5" |
| 5992 | 5997 | "@intlify/shared" "9.6.5" |
| 5993 | 5998 | "@vue/devtools-api" "^6.5.0" |
| 5994 | 5999 | |
| 5995 | -"vue-router@^4.1.6": | |
| 5996 | - "integrity" "sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==" | |
| 5997 | - "resolved" "https://registry.npmmirror.com/vue-router/-/vue-router-4.2.5.tgz" | |
| 5998 | - "version" "4.2.5" | |
| 6000 | +vue-router@^4.1.6: | |
| 6001 | + version "4.2.5" | |
| 6002 | + resolved "https://registry.npmmirror.com/vue-router/-/vue-router-4.2.5.tgz" | |
| 6003 | + integrity sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw== | |
| 5999 | 6004 | dependencies: |
| 6000 | 6005 | "@vue/devtools-api" "^6.5.0" |
| 6001 | 6006 | |
| 6002 | -"vue@^2.0.0 || >=3.0.0", "vue@^2.6.14 || ^3.2.0", "vue@^3", "vue@^3.0.0", "vue@^3.0.0-0 || ^2.6.0", "vue@^3.2.0", "vue@^3.2.25", "vue@^3.2.45", "vue@3.2.47": | |
| 6003 | - "integrity" "sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==" | |
| 6004 | - "resolved" "https://registry.npmmirror.com/vue/-/vue-3.2.47.tgz" | |
| 6005 | - "version" "3.2.47" | |
| 6007 | +"vue@^2.0.0 || >=3.0.0", "vue@^2.6.14 || ^3.2.0", vue@^3, vue@^3.0.0, "vue@^3.0.0-0 || ^2.6.0", vue@^3.2.0, vue@^3.2.25, vue@^3.2.45, vue@3.2.47: | |
| 6008 | + version "3.2.47" | |
| 6009 | + resolved "https://registry.npmmirror.com/vue/-/vue-3.2.47.tgz" | |
| 6010 | + integrity sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ== | |
| 6006 | 6011 | dependencies: |
| 6007 | 6012 | "@vue/compiler-dom" "3.2.47" |
| 6008 | 6013 | "@vue/compiler-sfc" "3.2.47" |
| ... | ... | @@ -6010,244 +6015,244 @@ |
| 6010 | 6015 | "@vue/server-renderer" "3.2.47" |
| 6011 | 6016 | "@vue/shared" "3.2.47" |
| 6012 | 6017 | |
| 6013 | -"vue3-qr-reader@^1.0.0": | |
| 6014 | - "integrity" "sha512-BRgmR+lDPkNwgL6skSaEOGFg4Aup/FLYnOGFCV0knYHxfbAnliJN/+wr//iqD2G3EOBrXw4TPGNfj/5Wxl7wwQ==" | |
| 6015 | - "resolved" "https://registry.npmmirror.com/vue3-qr-reader/-/vue3-qr-reader-1.0.0.tgz" | |
| 6016 | - "version" "1.0.0" | |
| 6018 | +vue3-qr-reader@^1.0.0: | |
| 6019 | + version "1.0.0" | |
| 6020 | + resolved "https://registry.npmmirror.com/vue3-qr-reader/-/vue3-qr-reader-1.0.0.tgz" | |
| 6021 | + integrity sha512-BRgmR+lDPkNwgL6skSaEOGFg4Aup/FLYnOGFCV0knYHxfbAnliJN/+wr//iqD2G3EOBrXw4TPGNfj/5Wxl7wwQ== | |
| 6017 | 6022 | dependencies: |
| 6018 | - "jsqr" "^1.4.0" | |
| 6023 | + jsqr "^1.4.0" | |
| 6019 | 6024 | |
| 6020 | -"w3c-hr-time@^1.0.2": | |
| 6021 | - "integrity" "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==" | |
| 6022 | - "resolved" "https://registry.npmmirror.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" | |
| 6023 | - "version" "1.0.2" | |
| 6025 | +w3c-hr-time@^1.0.2: | |
| 6026 | + version "1.0.2" | |
| 6027 | + resolved "https://registry.npmmirror.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" | |
| 6028 | + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== | |
| 6024 | 6029 | dependencies: |
| 6025 | - "browser-process-hrtime" "^1.0.0" | |
| 6030 | + browser-process-hrtime "^1.0.0" | |
| 6026 | 6031 | |
| 6027 | -"w3c-xmlserializer@^2.0.0": | |
| 6028 | - "integrity" "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==" | |
| 6029 | - "resolved" "https://registry.npmmirror.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz" | |
| 6030 | - "version" "2.0.0" | |
| 6032 | +w3c-xmlserializer@^2.0.0: | |
| 6033 | + version "2.0.0" | |
| 6034 | + resolved "https://registry.npmmirror.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz" | |
| 6035 | + integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== | |
| 6031 | 6036 | dependencies: |
| 6032 | - "xml-name-validator" "^3.0.0" | |
| 6037 | + xml-name-validator "^3.0.0" | |
| 6033 | 6038 | |
| 6034 | -"walker@^1.0.7": | |
| 6035 | - "integrity" "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" | |
| 6036 | - "resolved" "https://registry.npmmirror.com/walker/-/walker-1.0.8.tgz" | |
| 6037 | - "version" "1.0.8" | |
| 6039 | +walker@^1.0.7: | |
| 6040 | + version "1.0.8" | |
| 6041 | + resolved "https://registry.npmmirror.com/walker/-/walker-1.0.8.tgz" | |
| 6042 | + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== | |
| 6038 | 6043 | dependencies: |
| 6039 | - "makeerror" "1.0.12" | |
| 6044 | + makeerror "1.0.12" | |
| 6040 | 6045 | |
| 6041 | -"watchpack@^2.4.0": | |
| 6042 | - "integrity" "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" | |
| 6043 | - "resolved" "https://registry.npmmirror.com/watchpack/-/watchpack-2.4.0.tgz" | |
| 6044 | - "version" "2.4.0" | |
| 6046 | +watchpack@^2.4.0: | |
| 6047 | + version "2.4.0" | |
| 6048 | + resolved "https://registry.npmmirror.com/watchpack/-/watchpack-2.4.0.tgz" | |
| 6049 | + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== | |
| 6045 | 6050 | dependencies: |
| 6046 | - "glob-to-regexp" "^0.4.1" | |
| 6047 | - "graceful-fs" "^4.1.2" | |
| 6051 | + glob-to-regexp "^0.4.1" | |
| 6052 | + graceful-fs "^4.1.2" | |
| 6048 | 6053 | |
| 6049 | -"webidl-conversions@^5.0.0": | |
| 6050 | - "integrity" "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" | |
| 6051 | - "resolved" "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz" | |
| 6052 | - "version" "5.0.0" | |
| 6054 | +webidl-conversions@^5.0.0: | |
| 6055 | + version "5.0.0" | |
| 6056 | + resolved "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz" | |
| 6057 | + integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== | |
| 6053 | 6058 | |
| 6054 | -"webidl-conversions@^6.1.0": | |
| 6055 | - "integrity" "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" | |
| 6056 | - "resolved" "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz" | |
| 6057 | - "version" "6.1.0" | |
| 6059 | +webidl-conversions@^6.1.0: | |
| 6060 | + version "6.1.0" | |
| 6061 | + resolved "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz" | |
| 6062 | + integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== | |
| 6058 | 6063 | |
| 6059 | -"webpack-sources@^3.2.3": | |
| 6060 | - "integrity" "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" | |
| 6061 | - "resolved" "https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz" | |
| 6062 | - "version" "3.2.3" | |
| 6064 | +webpack-sources@^3.2.3: | |
| 6065 | + version "3.2.3" | |
| 6066 | + resolved "https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz" | |
| 6067 | + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== | |
| 6063 | 6068 | |
| 6064 | -"webpack@^5.0.0", "webpack@^5.1.0": | |
| 6065 | - "integrity" "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==" | |
| 6066 | - "resolved" "https://registry.npmmirror.com/webpack/-/webpack-5.89.0.tgz" | |
| 6067 | - "version" "5.89.0" | |
| 6069 | +webpack@^5.0.0, webpack@^5.1.0: | |
| 6070 | + version "5.89.0" | |
| 6071 | + resolved "https://registry.npmmirror.com/webpack/-/webpack-5.89.0.tgz" | |
| 6072 | + integrity sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw== | |
| 6068 | 6073 | dependencies: |
| 6069 | 6074 | "@types/eslint-scope" "^3.7.3" |
| 6070 | 6075 | "@types/estree" "^1.0.0" |
| 6071 | 6076 | "@webassemblyjs/ast" "^1.11.5" |
| 6072 | 6077 | "@webassemblyjs/wasm-edit" "^1.11.5" |
| 6073 | 6078 | "@webassemblyjs/wasm-parser" "^1.11.5" |
| 6074 | - "acorn" "^8.7.1" | |
| 6075 | - "acorn-import-assertions" "^1.9.0" | |
| 6076 | - "browserslist" "^4.14.5" | |
| 6077 | - "chrome-trace-event" "^1.0.2" | |
| 6078 | - "enhanced-resolve" "^5.15.0" | |
| 6079 | - "es-module-lexer" "^1.2.1" | |
| 6080 | - "eslint-scope" "5.1.1" | |
| 6081 | - "events" "^3.2.0" | |
| 6082 | - "glob-to-regexp" "^0.4.1" | |
| 6083 | - "graceful-fs" "^4.2.9" | |
| 6084 | - "json-parse-even-better-errors" "^2.3.1" | |
| 6085 | - "loader-runner" "^4.2.0" | |
| 6086 | - "mime-types" "^2.1.27" | |
| 6087 | - "neo-async" "^2.6.2" | |
| 6088 | - "schema-utils" "^3.2.0" | |
| 6089 | - "tapable" "^2.1.1" | |
| 6090 | - "terser-webpack-plugin" "^5.3.7" | |
| 6091 | - "watchpack" "^2.4.0" | |
| 6092 | - "webpack-sources" "^3.2.3" | |
| 6093 | - | |
| 6094 | -"webrtc-adapter@^7": | |
| 6095 | - "integrity" "sha512-TbrbBmiQBL9n0/5bvDdORc6ZfRY/Z7JnEj+EYOD1ghseZdpJ+nF2yx14k3LgQKc7JZnG7HAcL+zHnY25So9d7A==" | |
| 6096 | - "resolved" "https://registry.npmmirror.com/webrtc-adapter/-/webrtc-adapter-7.7.1.tgz" | |
| 6097 | - "version" "7.7.1" | |
| 6098 | - dependencies: | |
| 6099 | - "rtcpeerconnection-shim" "^1.2.15" | |
| 6100 | - "sdp" "^2.12.0" | |
| 6101 | - | |
| 6102 | -"whatwg-encoding@^1.0.5": | |
| 6103 | - "integrity" "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==" | |
| 6104 | - "resolved" "https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz" | |
| 6105 | - "version" "1.0.5" | |
| 6106 | - dependencies: | |
| 6107 | - "iconv-lite" "0.4.24" | |
| 6108 | - | |
| 6109 | -"whatwg-mimetype@^2.3.0": | |
| 6110 | - "integrity" "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" | |
| 6111 | - "resolved" "https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz" | |
| 6112 | - "version" "2.3.0" | |
| 6113 | - | |
| 6114 | -"whatwg-url@^8.0.0", "whatwg-url@^8.5.0": | |
| 6115 | - "integrity" "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==" | |
| 6116 | - "resolved" "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz" | |
| 6117 | - "version" "8.7.0" | |
| 6118 | - dependencies: | |
| 6119 | - "lodash" "^4.7.0" | |
| 6120 | - "tr46" "^2.1.0" | |
| 6121 | - "webidl-conversions" "^6.1.0" | |
| 6122 | - | |
| 6123 | -"which@^2.0.1": | |
| 6124 | - "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" | |
| 6125 | - "resolved" "https://registry.npmmirror.com/which/-/which-2.0.2.tgz" | |
| 6126 | - "version" "2.0.2" | |
| 6127 | - dependencies: | |
| 6128 | - "isexe" "^2.0.0" | |
| 6129 | - | |
| 6130 | -"wrap-ansi@^7.0.0": | |
| 6131 | - "integrity" "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" | |
| 6132 | - "resolved" "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz" | |
| 6133 | - "version" "7.0.0" | |
| 6134 | - dependencies: | |
| 6135 | - "ansi-styles" "^4.0.0" | |
| 6136 | - "string-width" "^4.1.0" | |
| 6137 | - "strip-ansi" "^6.0.0" | |
| 6138 | - | |
| 6139 | -"wrappy@1": | |
| 6140 | - "integrity" "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" | |
| 6141 | - "resolved" "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz" | |
| 6142 | - "version" "1.0.2" | |
| 6143 | - | |
| 6144 | -"write-file-atomic@^3.0.0": | |
| 6145 | - "integrity" "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" | |
| 6146 | - "resolved" "https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz" | |
| 6147 | - "version" "3.0.3" | |
| 6148 | - dependencies: | |
| 6149 | - "imurmurhash" "^0.1.4" | |
| 6150 | - "is-typedarray" "^1.0.0" | |
| 6151 | - "signal-exit" "^3.0.2" | |
| 6152 | - "typedarray-to-buffer" "^3.1.5" | |
| 6153 | - | |
| 6154 | -"ws@^7.4.6": | |
| 6155 | - "integrity" "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==" | |
| 6156 | - "resolved" "https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz" | |
| 6157 | - "version" "7.5.9" | |
| 6158 | - | |
| 6159 | -"ws@^8.4.2": | |
| 6160 | - "integrity" "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==" | |
| 6161 | - "resolved" "https://registry.npmmirror.com/ws/-/ws-8.14.2.tgz" | |
| 6162 | - "version" "8.14.2" | |
| 6163 | - | |
| 6164 | -"xhr@^2.0.1": | |
| 6165 | - "integrity" "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==" | |
| 6166 | - "resolved" "https://registry.npmmirror.com/xhr/-/xhr-2.6.0.tgz" | |
| 6167 | - "version" "2.6.0" | |
| 6168 | - dependencies: | |
| 6169 | - "global" "~4.4.0" | |
| 6170 | - "is-function" "^1.0.1" | |
| 6171 | - "parse-headers" "^2.0.0" | |
| 6172 | - "xtend" "^4.0.0" | |
| 6173 | - | |
| 6174 | -"xml-name-validator@^3.0.0": | |
| 6175 | - "integrity" "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" | |
| 6176 | - "resolved" "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz" | |
| 6177 | - "version" "3.0.0" | |
| 6178 | - | |
| 6179 | -"xml-parse-from-string@^1.0.0": | |
| 6180 | - "integrity" "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==" | |
| 6181 | - "resolved" "https://registry.npmmirror.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz" | |
| 6182 | - "version" "1.0.1" | |
| 6183 | - | |
| 6184 | -"xml2js@^0.4.5": | |
| 6185 | - "integrity" "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==" | |
| 6186 | - "resolved" "https://registry.npmmirror.com/xml2js/-/xml2js-0.4.23.tgz" | |
| 6187 | - "version" "0.4.23" | |
| 6188 | - dependencies: | |
| 6189 | - "sax" ">=0.6.0" | |
| 6190 | - "xmlbuilder" "~11.0.0" | |
| 6191 | - | |
| 6192 | -"xmlbuilder@~11.0.0": | |
| 6193 | - "integrity" "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" | |
| 6194 | - "resolved" "https://registry.npmmirror.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz" | |
| 6195 | - "version" "11.0.1" | |
| 6196 | - | |
| 6197 | -"xmlchars@^2.2.0": | |
| 6198 | - "integrity" "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" | |
| 6199 | - "resolved" "https://registry.npmmirror.com/xmlchars/-/xmlchars-2.2.0.tgz" | |
| 6200 | - "version" "2.2.0" | |
| 6201 | - | |
| 6202 | -"xmlhttprequest@^1.8.0": | |
| 6203 | - "integrity" "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" | |
| 6204 | - "resolved" "https://registry.npmmirror.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz" | |
| 6205 | - "version" "1.8.0" | |
| 6206 | - | |
| 6207 | -"xregexp@3.1.0": | |
| 6208 | - "integrity" "sha512-4Y1x6DyB8xRoxosooa6PlGWqmmSKatbzhrftZ7Purmm4B8R4qIEJG1A2hZsdz5DhmIqS0msC0I7KEq93GphEVg==" | |
| 6209 | - "resolved" "https://registry.npmmirror.com/xregexp/-/xregexp-3.1.0.tgz" | |
| 6210 | - "version" "3.1.0" | |
| 6211 | - | |
| 6212 | -"xtend@^4.0.0": | |
| 6213 | - "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" | |
| 6214 | - "resolved" "https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz" | |
| 6215 | - "version" "4.0.2" | |
| 6216 | - | |
| 6217 | -"y18n@^5.0.5": | |
| 6218 | - "integrity" "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" | |
| 6219 | - "resolved" "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz" | |
| 6220 | - "version" "5.0.8" | |
| 6221 | - | |
| 6222 | -"yallist@^3.0.2": | |
| 6223 | - "integrity" "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" | |
| 6224 | - "resolved" "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz" | |
| 6225 | - "version" "3.1.1" | |
| 6226 | - | |
| 6227 | -"yallist@^4.0.0": | |
| 6228 | - "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" | |
| 6229 | - "resolved" "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz" | |
| 6230 | - "version" "4.0.0" | |
| 6231 | - | |
| 6232 | -"yaml@^1.10.2": | |
| 6233 | - "integrity" "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" | |
| 6234 | - "resolved" "https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz" | |
| 6235 | - "version" "1.10.2" | |
| 6236 | - | |
| 6237 | -"yargs-parser@^20.2.2": | |
| 6238 | - "integrity" "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" | |
| 6239 | - "resolved" "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz" | |
| 6240 | - "version" "20.2.9" | |
| 6241 | - | |
| 6242 | -"yargs@^16.2.0": | |
| 6243 | - "integrity" "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" | |
| 6244 | - "resolved" "https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz" | |
| 6245 | - "version" "16.2.0" | |
| 6246 | - dependencies: | |
| 6247 | - "cliui" "^7.0.2" | |
| 6248 | - "escalade" "^3.1.1" | |
| 6249 | - "get-caller-file" "^2.0.5" | |
| 6250 | - "require-directory" "^2.1.1" | |
| 6251 | - "string-width" "^4.2.0" | |
| 6252 | - "y18n" "^5.0.5" | |
| 6253 | - "yargs-parser" "^20.2.2" | |
| 6079 | + acorn "^8.7.1" | |
| 6080 | + acorn-import-assertions "^1.9.0" | |
| 6081 | + browserslist "^4.14.5" | |
| 6082 | + chrome-trace-event "^1.0.2" | |
| 6083 | + enhanced-resolve "^5.15.0" | |
| 6084 | + es-module-lexer "^1.2.1" | |
| 6085 | + eslint-scope "5.1.1" | |
| 6086 | + events "^3.2.0" | |
| 6087 | + glob-to-regexp "^0.4.1" | |
| 6088 | + graceful-fs "^4.2.9" | |
| 6089 | + json-parse-even-better-errors "^2.3.1" | |
| 6090 | + loader-runner "^4.2.0" | |
| 6091 | + mime-types "^2.1.27" | |
| 6092 | + neo-async "^2.6.2" | |
| 6093 | + schema-utils "^3.2.0" | |
| 6094 | + tapable "^2.1.1" | |
| 6095 | + terser-webpack-plugin "^5.3.7" | |
| 6096 | + watchpack "^2.4.0" | |
| 6097 | + webpack-sources "^3.2.3" | |
| 6098 | + | |
| 6099 | +webrtc-adapter@^7: | |
| 6100 | + version "7.7.1" | |
| 6101 | + resolved "https://registry.npmmirror.com/webrtc-adapter/-/webrtc-adapter-7.7.1.tgz" | |
| 6102 | + integrity sha512-TbrbBmiQBL9n0/5bvDdORc6ZfRY/Z7JnEj+EYOD1ghseZdpJ+nF2yx14k3LgQKc7JZnG7HAcL+zHnY25So9d7A== | |
| 6103 | + dependencies: | |
| 6104 | + rtcpeerconnection-shim "^1.2.15" | |
| 6105 | + sdp "^2.12.0" | |
| 6106 | + | |
| 6107 | +whatwg-encoding@^1.0.5: | |
| 6108 | + version "1.0.5" | |
| 6109 | + resolved "https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz" | |
| 6110 | + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== | |
| 6111 | + dependencies: | |
| 6112 | + iconv-lite "0.4.24" | |
| 6113 | + | |
| 6114 | +whatwg-mimetype@^2.3.0: | |
| 6115 | + version "2.3.0" | |
| 6116 | + resolved "https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz" | |
| 6117 | + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== | |
| 6118 | + | |
| 6119 | +whatwg-url@^8.0.0, whatwg-url@^8.5.0: | |
| 6120 | + version "8.7.0" | |
| 6121 | + resolved "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-8.7.0.tgz" | |
| 6122 | + integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== | |
| 6123 | + dependencies: | |
| 6124 | + lodash "^4.7.0" | |
| 6125 | + tr46 "^2.1.0" | |
| 6126 | + webidl-conversions "^6.1.0" | |
| 6127 | + | |
| 6128 | +which@^2.0.1: | |
| 6129 | + version "2.0.2" | |
| 6130 | + resolved "https://registry.npmmirror.com/which/-/which-2.0.2.tgz" | |
| 6131 | + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== | |
| 6132 | + dependencies: | |
| 6133 | + isexe "^2.0.0" | |
| 6134 | + | |
| 6135 | +wrap-ansi@^7.0.0: | |
| 6136 | + version "7.0.0" | |
| 6137 | + resolved "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz" | |
| 6138 | + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== | |
| 6139 | + dependencies: | |
| 6140 | + ansi-styles "^4.0.0" | |
| 6141 | + string-width "^4.1.0" | |
| 6142 | + strip-ansi "^6.0.0" | |
| 6143 | + | |
| 6144 | +wrappy@1: | |
| 6145 | + version "1.0.2" | |
| 6146 | + resolved "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz" | |
| 6147 | + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== | |
| 6148 | + | |
| 6149 | +write-file-atomic@^3.0.0: | |
| 6150 | + version "3.0.3" | |
| 6151 | + resolved "https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz" | |
| 6152 | + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== | |
| 6153 | + dependencies: | |
| 6154 | + imurmurhash "^0.1.4" | |
| 6155 | + is-typedarray "^1.0.0" | |
| 6156 | + signal-exit "^3.0.2" | |
| 6157 | + typedarray-to-buffer "^3.1.5" | |
| 6158 | + | |
| 6159 | +ws@^7.4.6: | |
| 6160 | + version "7.5.9" | |
| 6161 | + resolved "https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz" | |
| 6162 | + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== | |
| 6163 | + | |
| 6164 | +ws@^8.4.2: | |
| 6165 | + version "8.14.2" | |
| 6166 | + resolved "https://registry.npmmirror.com/ws/-/ws-8.14.2.tgz" | |
| 6167 | + integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== | |
| 6168 | + | |
| 6169 | +xhr@^2.0.1: | |
| 6170 | + version "2.6.0" | |
| 6171 | + resolved "https://registry.npmmirror.com/xhr/-/xhr-2.6.0.tgz" | |
| 6172 | + integrity sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA== | |
| 6173 | + dependencies: | |
| 6174 | + global "~4.4.0" | |
| 6175 | + is-function "^1.0.1" | |
| 6176 | + parse-headers "^2.0.0" | |
| 6177 | + xtend "^4.0.0" | |
| 6178 | + | |
| 6179 | +xml-name-validator@^3.0.0: | |
| 6180 | + version "3.0.0" | |
| 6181 | + resolved "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz" | |
| 6182 | + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== | |
| 6183 | + | |
| 6184 | +xml-parse-from-string@^1.0.0: | |
| 6185 | + version "1.0.1" | |
| 6186 | + resolved "https://registry.npmmirror.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz" | |
| 6187 | + integrity sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g== | |
| 6188 | + | |
| 6189 | +xml2js@^0.4.5: | |
| 6190 | + version "0.4.23" | |
| 6191 | + resolved "https://registry.npmmirror.com/xml2js/-/xml2js-0.4.23.tgz" | |
| 6192 | + integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== | |
| 6193 | + dependencies: | |
| 6194 | + sax ">=0.6.0" | |
| 6195 | + xmlbuilder "~11.0.0" | |
| 6196 | + | |
| 6197 | +xmlbuilder@~11.0.0: | |
| 6198 | + version "11.0.1" | |
| 6199 | + resolved "https://registry.npmmirror.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz" | |
| 6200 | + integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== | |
| 6201 | + | |
| 6202 | +xmlchars@^2.2.0: | |
| 6203 | + version "2.2.0" | |
| 6204 | + resolved "https://registry.npmmirror.com/xmlchars/-/xmlchars-2.2.0.tgz" | |
| 6205 | + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== | |
| 6206 | + | |
| 6207 | +xmlhttprequest@^1.8.0: | |
| 6208 | + version "1.8.0" | |
| 6209 | + resolved "https://registry.npmmirror.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz" | |
| 6210 | + integrity sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA== | |
| 6211 | + | |
| 6212 | +xregexp@3.1.0: | |
| 6213 | + version "3.1.0" | |
| 6214 | + resolved "https://registry.npmmirror.com/xregexp/-/xregexp-3.1.0.tgz" | |
| 6215 | + integrity sha512-4Y1x6DyB8xRoxosooa6PlGWqmmSKatbzhrftZ7Purmm4B8R4qIEJG1A2hZsdz5DhmIqS0msC0I7KEq93GphEVg== | |
| 6216 | + | |
| 6217 | +xtend@^4.0.0: | |
| 6218 | + version "4.0.2" | |
| 6219 | + resolved "https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz" | |
| 6220 | + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== | |
| 6221 | + | |
| 6222 | +y18n@^5.0.5: | |
| 6223 | + version "5.0.8" | |
| 6224 | + resolved "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz" | |
| 6225 | + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== | |
| 6226 | + | |
| 6227 | +yallist@^3.0.2: | |
| 6228 | + version "3.1.1" | |
| 6229 | + resolved "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz" | |
| 6230 | + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== | |
| 6231 | + | |
| 6232 | +yallist@^4.0.0: | |
| 6233 | + version "4.0.0" | |
| 6234 | + resolved "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz" | |
| 6235 | + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== | |
| 6236 | + | |
| 6237 | +yaml@^1.10.2: | |
| 6238 | + version "1.10.2" | |
| 6239 | + resolved "https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz" | |
| 6240 | + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== | |
| 6241 | + | |
| 6242 | +yargs-parser@^20.2.2: | |
| 6243 | + version "20.2.9" | |
| 6244 | + resolved "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz" | |
| 6245 | + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== | |
| 6246 | + | |
| 6247 | +yargs@^16.2.0: | |
| 6248 | + version "16.2.0" | |
| 6249 | + resolved "https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz" | |
| 6250 | + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== | |
| 6251 | + dependencies: | |
| 6252 | + cliui "^7.0.2" | |
| 6253 | + escalade "^3.1.1" | |
| 6254 | + get-caller-file "^2.0.5" | |
| 6255 | + require-directory "^2.1.1" | |
| 6256 | + string-width "^4.2.0" | |
| 6257 | + y18n "^5.0.5" | |
| 6258 | + yargs-parser "^20.2.2" | ... | ... |