diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1254ad5..0e5185db 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## v4.1.0 (2022-09-24)
+
+- Updated Leaflet dependency to v1.9.
+- Fixed `eventHandlers` object being injected in WMS request URL.
+- Added support for dynamic `bounds` props on `ImageOverlay`.
+
## v4.0.2 (2022-08-22)
- Fix typos in getting started docs
diff --git a/package.json b/package.json
index fef39ba2..064dba67 100644
--- a/package.json
+++ b/package.json
@@ -2,45 +2,45 @@
"name": "react-leaflet-repository",
"version": "1.0.0",
"private": true,
- "packageManager": "pnpm@7.5.0",
+ "packageManager": "pnpm@7.12.2",
"scripts": {
"lint": "eslint './packages/**/*.ts' './packages/**/*.tsx'",
"test": "jest",
- "build": "turbo run build:clean && pnpm run build:types && turbo run build:js"
+ "build": "turbo run build:clean && pnpm run -r build:types && turbo run build:js"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@swc/cli": "^0.1.55",
- "@swc/core": "^1.2.241",
+ "@swc/core": "^1.3.3",
"@swc/jest": "^0.2.22",
- "@testing-library/react": "^13.3.0",
+ "@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
- "@types/jest": "^28.1.7",
- "@types/leaflet": "^1.7.11",
+ "@types/jest": "^29.0.3",
+ "@types/leaflet": "^1.8.0",
"@types/warning": "^3.0.0",
- "@typescript-eslint/eslint-plugin": "^5.33.1",
- "@typescript-eslint/parser": "^5.33.1",
+ "@typescript-eslint/eslint-plugin": "^5.38.0",
+ "@typescript-eslint/parser": "^5.38.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
- "eslint": "^8.22.0",
+ "eslint": "^8.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
- "eslint-plugin-promise": "^6.0.0",
- "eslint-plugin-react": "^7.30.1",
+ "eslint-plugin-promise": "^6.0.1",
+ "eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
- "jest": "^28.1.3",
- "jest-environment-jsdom": "^28.1.3",
- "leaflet": "^1.8.0",
+ "jest": "^29.0.3",
+ "jest-environment-jsdom": "^29.0.3",
+ "leaflet": "^1.9.1",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest-resolver": "^2.0.0",
- "turbo": "^1.4.3",
- "typescript": "^4.7.4"
+ "turbo": "^1.5.3",
+ "typescript": "^4.8.3"
},
"jest": {
"projects": [
diff --git a/packages/core/package.json b/packages/core/package.json
index 07f77267..1478383e 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@react-leaflet/core",
- "version": "2.0.1",
+ "version": "2.1.0",
"description": "React Leaflet core",
"repository": {
"type": "git",
@@ -41,12 +41,12 @@
"prepublishOnly": "package-check"
},
"peerDependencies": {
- "leaflet": "^1.8.0",
+ "leaflet": "^1.9.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
- "@types/react": "^18.0.17",
+ "@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6"
},
"jest": {
diff --git a/packages/core/src/circle.ts b/packages/core/src/circle.ts
index fe5050ee..f5b25965 100644
--- a/packages/core/src/circle.ts
+++ b/packages/core/src/circle.ts
@@ -1,6 +1,8 @@
import type {
+ Circle as LeafletCircle,
CircleMarker as LeafletCircleMarker,
CircleMarkerOptions,
+ CircleOptions,
LatLngExpression,
} from 'leaflet'
import type { ReactNode } from 'react'
@@ -12,8 +14,13 @@ export interface CircleMarkerProps extends CircleMarkerOptions, PathProps {
children?: ReactNode
}
-export function updateCircle
(
- layer: LeafletCircleMarker,
+export interface CircleProps extends CircleOptions, PathProps {
+ center: LatLngExpression
+ children?: ReactNode
+}
+
+export function updateCircle
(
+ layer: LeafletCircle
| LeafletCircleMarker
,
props: P,
prevProps: P,
) {
diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts
index ad8507d3..95de4dd2 100644
--- a/packages/core/src/index.ts
+++ b/packages/core/src/index.ts
@@ -1,5 +1,9 @@
export { useAttribution } from './attribution.js'
-export { type CircleMarkerProps, updateCircle } from './circle.js'
+export {
+ type CircleMarkerProps,
+ type CircleProps,
+ updateCircle,
+} from './circle.js'
export {
createContainerComponent,
createDivOverlayComponent,
diff --git a/packages/react-leaflet/__tests__/__snapshots__/Pane.tsx.snap b/packages/react-leaflet/__tests__/__snapshots__/Pane.tsx.snap
index 2c4e0b60..091d4a86 100644
--- a/packages/react-leaflet/__tests__/__snapshots__/Pane.tsx.snap
+++ b/packages/react-leaflet/__tests__/__snapshots__/Pane.tsx.snap
@@ -48,28 +48,24 @@ exports[`Pane can unmount and remount with the same name 1`] = `
@@ -87,28 +83,24 @@ exports[`Pane can unmount and remount with the same name 1`] = `
@@ -329,28 +321,24 @@ exports[`Pane can unmount and remount with the same name 3`] = `
@@ -368,28 +356,24 @@ exports[`Pane can unmount and remount with the same name 3`] = `
@@ -512,28 +496,24 @@ exports[`Pane renders 1`] = `
@@ -656,28 +636,24 @@ exports[`Pane renders in Strict Mode 1`] = `
@@ -804,28 +780,24 @@ exports[`Pane renders nested panes 1`] = `
@@ -843,28 +815,24 @@ exports[`Pane renders nested panes 1`] = `
diff --git a/packages/react-leaflet/__tests__/__snapshots__/TileLayer.tsx.snap b/packages/react-leaflet/__tests__/__snapshots__/TileLayer.tsx.snap
index 32f04148..859790c5 100644
--- a/packages/react-leaflet/__tests__/__snapshots__/TileLayer.tsx.snap
+++ b/packages/react-leaflet/__tests__/__snapshots__/TileLayer.tsx.snap
@@ -25,28 +25,24 @@ exports[`TileLayer renders 1`] = `
diff --git a/packages/react-leaflet/package.json b/packages/react-leaflet/package.json
index 604abacd..05c3455c 100644
--- a/packages/react-leaflet/package.json
+++ b/packages/react-leaflet/package.json
@@ -1,6 +1,6 @@
{
"name": "react-leaflet",
- "version": "4.0.2",
+ "version": "4.1.0",
"description": "React components for Leaflet maps",
"repository": {
"type": "git",
@@ -42,17 +42,17 @@
"prepublishOnly": "package-check"
},
"dependencies": {
- "@react-leaflet/core": "^2.0.1"
+ "@react-leaflet/core": "workspace:^2.1.0"
},
"peerDependencies": {
- "leaflet": "^1.8.0",
+ "leaflet": "^1.9.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/geojson": "^7946.0.10",
- "@types/leaflet": "^1.7.11",
- "@types/react": "^18.0.17",
+ "@types/leaflet": "^1.8.0",
+ "@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6"
},
"jest": {
diff --git a/packages/react-leaflet/src/Circle.tsx b/packages/react-leaflet/src/Circle.tsx
index b390bc07..97d4c23d 100644
--- a/packages/react-leaflet/src/Circle.tsx
+++ b/packages/react-leaflet/src/Circle.tsx
@@ -1,5 +1,5 @@
import {
- type CircleMarkerProps,
+ type CircleProps,
createElementObject,
createPathComponent,
extendContext,
@@ -7,7 +7,7 @@ import {
} from '@react-leaflet/core'
import { Circle as LeafletCircle } from 'leaflet'
-export type CircleProps = CircleMarkerProps
+export type { CircleProps } from '@react-leaflet/core'
export const Circle = createPathComponent(
function createCircle({ center, children: _c, ...options }, ctx) {
diff --git a/packages/react-leaflet/src/ImageOverlay.tsx b/packages/react-leaflet/src/ImageOverlay.tsx
index 73e62b9c..9946d3cd 100644
--- a/packages/react-leaflet/src/ImageOverlay.tsx
+++ b/packages/react-leaflet/src/ImageOverlay.tsx
@@ -5,7 +5,7 @@ import {
extendContext,
updateMediaOverlay,
} from '@react-leaflet/core'
-import { ImageOverlay as LeafletImageOverlay } from 'leaflet'
+import { LatLngBounds, ImageOverlay as LeafletImageOverlay } from 'leaflet'
import type { ReactNode } from 'react'
export interface ImageOverlayProps extends MediaOverlayProps {
@@ -25,6 +25,13 @@ export const ImageOverlay = createLayerComponent<
},
function updateImageOverlay(overlay, props, prevProps) {
updateMediaOverlay(overlay, props, prevProps)
+ if (props.bounds !== props.bounds) {
+ const bounds =
+ props.bounds instanceof LatLngBounds
+ ? props.bounds
+ : new LatLngBounds(props.bounds)
+ overlay.setBounds(bounds)
+ }
if (props.url !== prevProps.url) {
overlay.setUrl(props.url)
}
diff --git a/packages/react-leaflet/src/WMSTileLayer.tsx b/packages/react-leaflet/src/WMSTileLayer.tsx
index 49e28d28..68da18c8 100644
--- a/packages/react-leaflet/src/WMSTileLayer.tsx
+++ b/packages/react-leaflet/src/WMSTileLayer.tsx
@@ -16,7 +16,10 @@ export const WMSTileLayer = createTileLayerComponent<
TileLayer.WMS,
WMSTileLayerProps
>(
- function createWMSTileLayer({ params = {}, url, ...options }, context) {
+ function createWMSTileLayer(
+ { eventHandlers: _eh, params = {}, url, ...options },
+ context,
+ ) {
const layer = new TileLayer.WMS(url, {
...params,
...withPane(options, context),
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a122a11e..901d795d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,91 +6,91 @@ importers:
specifiers:
'@skypack/package-check': ^0.2.2
'@swc/cli': ^0.1.55
- '@swc/core': ^1.2.241
+ '@swc/core': ^1.3.3
'@swc/jest': ^0.2.22
- '@testing-library/react': ^13.3.0
+ '@testing-library/react': ^13.4.0
'@testing-library/react-hooks': ^8.0.1
- '@types/jest': ^28.1.7
- '@types/leaflet': ^1.7.11
+ '@types/jest': ^29.0.3
+ '@types/leaflet': ^1.8.0
'@types/warning': ^3.0.0
- '@typescript-eslint/eslint-plugin': ^5.33.1
- '@typescript-eslint/parser': ^5.33.1
+ '@typescript-eslint/eslint-plugin': ^5.38.0
+ '@typescript-eslint/parser': ^5.38.0
cross-env: ^7.0.3
del-cli: ^5.0.0
- eslint: ^8.22.0
+ eslint: ^8.24.0
eslint-config-prettier: ^8.1.0
eslint-plugin-import: ^2.26.0
eslint-plugin-node: ^11.1.0
eslint-plugin-prettier: ^4.0.0
- eslint-plugin-promise: ^6.0.0
- eslint-plugin-react: ^7.30.1
+ eslint-plugin-promise: ^6.0.1
+ eslint-plugin-react: ^7.31.8
eslint-plugin-react-hooks: ^4.6.0
- jest: ^28.1.3
- jest-environment-jsdom: ^28.1.3
- leaflet: ^1.8.0
+ jest: ^29.0.3
+ jest-environment-jsdom: ^29.0.3
+ leaflet: ^1.9.1
prettier: ^2.7.1
prettier-eslint: ^15.0.1
react: ^18.2.0
react-dom: ^18.2.0
react-test-renderer: ^18.2.0
ts-jest-resolver: ^2.0.0
- turbo: ^1.4.3
- typescript: ^4.7.4
+ turbo: ^1.5.3
+ typescript: ^4.8.3
devDependencies:
'@skypack/package-check': 0.2.2
- '@swc/cli': 0.1.57_@swc+core@1.2.241
- '@swc/core': 1.2.241
- '@swc/jest': 0.2.22_@swc+core@1.2.241
- '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y
+ '@swc/cli': 0.1.57_@swc+core@1.3.3
+ '@swc/core': 1.3.3
+ '@swc/jest': 0.2.22_@swc+core@1.3.3
+ '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y
'@testing-library/react-hooks': 8.0.1_e2ahcdagsdonc2lnwoylqhejci
- '@types/jest': 28.1.7
- '@types/leaflet': 1.7.11
+ '@types/jest': 29.0.3
+ '@types/leaflet': 1.8.0
'@types/warning': 3.0.0
- '@typescript-eslint/eslint-plugin': 5.33.1_vsoshirnpb7xw6mr7xomgfas2i
- '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq
+ '@typescript-eslint/eslint-plugin': 5.38.0_4gkcvl6qsi23tqqawfqgcwtp54
+ '@typescript-eslint/parser': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
cross-env: 7.0.3
del-cli: 5.0.0
- eslint: 8.22.0
- eslint-config-prettier: 8.5.0_eslint@8.22.0
- eslint-plugin-import: 2.26.0_3bh5nkk7utn7e74vrwtv6rxmt4
- eslint-plugin-node: 11.1.0_eslint@8.22.0
- eslint-plugin-prettier: 4.2.1_i2cojdczqdiurzgttlwdgf764e
- eslint-plugin-promise: 6.0.0_eslint@8.22.0
- eslint-plugin-react: 7.30.1_eslint@8.22.0
- eslint-plugin-react-hooks: 4.6.0_eslint@8.22.0
- jest: 28.1.3
- jest-environment-jsdom: 28.1.3
- leaflet: 1.8.0
+ eslint: 8.24.0
+ eslint-config-prettier: 8.5.0_eslint@8.24.0
+ eslint-plugin-import: 2.26.0_2azyxy5wfmd73v3pbt5rvmgcsm
+ eslint-plugin-node: 11.1.0_eslint@8.24.0
+ eslint-plugin-prettier: 4.2.1_cfn5x6ujhhgzv3423d6k7r2zzm
+ eslint-plugin-promise: 6.0.1_eslint@8.24.0
+ eslint-plugin-react: 7.31.8_eslint@8.24.0
+ eslint-plugin-react-hooks: 4.6.0_eslint@8.24.0
+ jest: 29.0.3
+ jest-environment-jsdom: 29.0.3
+ leaflet: 1.9.1
prettier: 2.7.1
prettier-eslint: 15.0.1
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
react-test-renderer: 18.2.0_react@18.2.0
ts-jest-resolver: 2.0.0
- turbo: 1.4.3
- typescript: 4.7.4
+ turbo: 1.5.3
+ typescript: 4.8.3
packages/core:
specifiers:
- '@types/react': ^18.0.17
+ '@types/react': ^18.0.21
'@types/react-dom': ^18.0.6
devDependencies:
- '@types/react': 18.0.17
+ '@types/react': 18.0.21
'@types/react-dom': 18.0.6
packages/react-leaflet:
specifiers:
- '@react-leaflet/core': ^2.0.1
+ '@react-leaflet/core': ^2.1.0
'@types/geojson': ^7946.0.10
- '@types/leaflet': ^1.7.11
- '@types/react': ^18.0.17
+ '@types/leaflet': ^1.8.0
+ '@types/react': ^18.0.21
'@types/react-dom': ^18.0.6
dependencies:
'@react-leaflet/core': link:../core
devDependencies:
'@types/geojson': 7946.0.10
- '@types/leaflet': 1.7.11
- '@types/react': 18.0.17
+ '@types/leaflet': 1.8.0
+ '@types/react': 18.0.21
'@types/react-dom': 18.0.6
packages:
@@ -110,25 +110,25 @@ packages:
'@babel/highlight': 7.18.6
dev: true
- /@babel/compat-data/7.18.8:
- resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==}
+ /@babel/compat-data/7.19.0:
+ resolution: {integrity: sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core/7.18.10:
- resolution: {integrity: sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==}
+ /@babel/core/7.19.0:
+ resolution: {integrity: sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.12
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
- '@babel/helper-module-transforms': 7.18.9
- '@babel/helpers': 7.18.9
- '@babel/parser': 7.18.11
+ '@babel/generator': 7.19.0
+ '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0
+ '@babel/helper-module-transforms': 7.19.0
+ '@babel/helpers': 7.19.0
+ '@babel/parser': 7.19.0
'@babel/template': 7.18.10
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/traverse': 7.19.0
+ '@babel/types': 7.19.0
convert-source-map: 1.8.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -138,23 +138,23 @@ packages:
- supports-color
dev: true
- /@babel/generator/7.18.12:
- resolution: {integrity: sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==}
+ /@babel/generator/7.19.0:
+ resolution: {integrity: sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
dev: true
- /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10:
- resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==}
+ /@babel/helper-compilation-targets/7.19.0_@babel+core@7.19.0:
+ resolution: {integrity: sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.18.8
- '@babel/core': 7.18.10
+ '@babel/compat-data': 7.19.0
+ '@babel/core': 7.19.0
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.3
semver: 6.3.0
@@ -165,46 +165,46 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-function-name/7.18.9:
- resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==}
+ /@babel/helper-function-name/7.19.0:
+ resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: true
/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: true
/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: true
- /@babel/helper-module-transforms/7.18.9:
- resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==}
+ /@babel/helper-module-transforms/7.19.0:
+ resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-module-imports': 7.18.6
'@babel/helper-simple-access': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.18.6
+ '@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.18.10
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/traverse': 7.19.0
+ '@babel/types': 7.19.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-plugin-utils/7.18.9:
- resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
+ /@babel/helper-plugin-utils/7.19.0:
+ resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==}
engines: {node: '>=6.9.0'}
dev: true
@@ -212,14 +212,14 @@ packages:
resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: true
/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: true
/@babel/helper-string-parser/7.18.10:
@@ -227,8 +227,8 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-validator-identifier/7.18.6:
- resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
+ /@babel/helper-validator-identifier/7.19.1:
+ resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
dev: true
@@ -237,13 +237,13 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helpers/7.18.9:
- resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==}
+ /@babel/helpers/7.19.0:
+ resolution: {integrity: sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/traverse': 7.19.0
+ '@babel/types': 7.19.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -252,136 +252,146 @@ packages:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.18.6
+ '@babel/helper-validator-identifier': 7.19.1
chalk: 2.4.2
js-tokens: 4.0.0
dev: true
- /@babel/parser/7.18.11:
- resolution: {integrity: sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==}
+ /@babel/parser/7.19.0:
+ resolution: {integrity: sha512-74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.0:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.0:
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.0:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.10:
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.0:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.0:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10:
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.0:
+ resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.0:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.0:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.0:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.0:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.0:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.0:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.0:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.0:
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.10
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: true
/@babel/runtime/7.18.6:
@@ -391,39 +401,46 @@ packages:
regenerator-runtime: 0.13.9
dev: true
+ /@babel/runtime/7.19.0:
+ resolution: {integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.13.9
+ dev: true
+
/@babel/template/7.18.10:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
dev: true
- /@babel/traverse/7.18.11:
- resolution: {integrity: sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==}
+ /@babel/traverse/7.19.0:
+ resolution: {integrity: sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.12
+ '@babel/generator': 7.19.0
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
+ '@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/types/7.18.10:
- resolution: {integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==}
+ /@babel/types/7.19.0:
+ resolution: {integrity: sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.18.10
- '@babel/helper-validator-identifier': 7.18.6
+ '@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
dev: true
@@ -431,13 +448,13 @@ packages:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
- /@eslint/eslintrc/1.3.0:
- resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==}
+ /@eslint/eslintrc/1.3.2:
+ resolution: {integrity: sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
- espree: 9.3.3
+ espree: 9.4.0
globals: 13.17.0
ignore: 5.2.0
import-fresh: 3.3.0
@@ -448,8 +465,8 @@ packages:
- supports-color
dev: true
- /@humanwhocodes/config-array/0.10.4:
- resolution: {integrity: sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==}
+ /@humanwhocodes/config-array/0.10.5:
+ resolution: {integrity: sha512-XVVDtp+dVvRxMoxSiSfasYaG02VEe1qH5cKgMQJWhol6HwzbcqoCMJi8dAGoYAO57jhUyhI6cWuRiTcRaDaYug==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -463,6 +480,11 @@ packages:
resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==}
dev: true
+ /@humanwhocodes/module-importer/1.0.1:
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
+ dev: true
+
/@humanwhocodes/object-schema/1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
@@ -483,54 +505,53 @@ packages:
engines: {node: '>=8'}
dev: true
- /@jest/console/28.1.3:
- resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/console/29.0.3:
+ resolution: {integrity: sha512-cGg0r+klVHSYnfE977S9wmpuQ9L+iYuYgL+5bPXiUlUynLLYunRxswEmhBzvrSKGof5AKiHuTTmUKAqRcDY9dg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
chalk: 4.1.2
- jest-message-util: 28.1.3
- jest-util: 28.1.3
+ jest-message-util: 29.0.3
+ jest-util: 29.0.3
slash: 3.0.0
dev: true
- /@jest/core/28.1.3:
- resolution: {integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/core/29.0.3:
+ resolution: {integrity: sha512-1d0hLbOrM1qQE3eP3DtakeMbKTcXiXP3afWxqz103xPyddS2NhnNghS7MaXx1dcDt4/6p4nlhmeILo2ofgi8cQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
dependencies:
- '@jest/console': 28.1.3
- '@jest/reporters': 28.1.3
- '@jest/test-result': 28.1.3
- '@jest/transform': 28.1.3
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
+ '@jest/console': 29.0.3
+ '@jest/reporters': 29.0.3
+ '@jest/test-result': 29.0.3
+ '@jest/transform': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
ansi-escapes: 4.3.2
chalk: 4.1.2
- ci-info: 3.3.2
+ ci-info: 3.4.0
exit: 0.1.2
graceful-fs: 4.2.10
- jest-changed-files: 28.1.3
- jest-config: 28.1.3_@types+node@18.7.9
- jest-haste-map: 28.1.3
- jest-message-util: 28.1.3
- jest-regex-util: 28.0.2
- jest-resolve: 28.1.3
- jest-resolve-dependencies: 28.1.3
- jest-runner: 28.1.3
- jest-runtime: 28.1.3
- jest-snapshot: 28.1.3
- jest-util: 28.1.3
- jest-validate: 28.1.3
- jest-watcher: 28.1.3
+ jest-changed-files: 29.0.0
+ jest-config: 29.0.3_@types+node@18.7.16
+ jest-haste-map: 29.0.3
+ jest-message-util: 29.0.3
+ jest-regex-util: 29.0.0
+ jest-resolve: 29.0.3
+ jest-resolve-dependencies: 29.0.3
+ jest-runner: 29.0.3
+ jest-runtime: 29.0.3
+ jest-snapshot: 29.0.3
+ jest-util: 29.0.3
+ jest-validate: 29.0.3
+ jest-watcher: 29.0.3
micromatch: 4.0.5
- pretty-format: 28.1.3
- rimraf: 3.0.2
+ pretty-format: 29.0.3
slash: 3.0.0
strip-ansi: 6.0.1
transitivePeerDependencies:
@@ -545,59 +566,60 @@ packages:
'@jest/types': 27.5.1
dev: true
- /@jest/environment/28.1.3:
- resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/environment/29.0.3:
+ resolution: {integrity: sha512-iKl272NKxYNQNqXMQandAIwjhQaGw5uJfGXduu8dS9llHi8jV2ChWrtOAVPnMbaaoDhnI3wgUGNDvZgHeEJQCA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/fake-timers': 28.1.3
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
- jest-mock: 28.1.3
+ '@jest/fake-timers': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
+ jest-mock: 29.0.3
dev: true
- /@jest/expect-utils/28.1.3:
- resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/expect-utils/29.0.3:
+ resolution: {integrity: sha512-i1xUkau7K/63MpdwiRqaxgZOjxYs4f0WMTGJnYwUKubsNRZSeQbLorS7+I4uXVF9KQ5r61BUPAUMZ7Lf66l64Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- jest-get-type: 28.0.2
+ jest-get-type: 29.0.0
dev: true
- /@jest/expect/28.1.3:
- resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/expect/29.0.3:
+ resolution: {integrity: sha512-6W7K+fsI23FQ01H/BWccPyDZFrnU9QlzDcKOjrNVU5L8yUORFAJJIpmyxWPW70+X624KUNqzZwPThPMX28aXEQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- expect: 28.1.3
- jest-snapshot: 28.1.3
+ expect: 29.0.3
+ jest-snapshot: 29.0.3
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/fake-timers/28.1.3:
- resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/fake-timers/29.0.3:
+ resolution: {integrity: sha512-tmbUIo03x0TdtcZCESQ0oQSakPCpo7+s6+9mU19dd71MptkP4zCwoeZqna23//pgbhtT1Wq02VmA9Z9cNtvtCQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 28.1.3
+ '@jest/types': 29.0.3
'@sinonjs/fake-timers': 9.1.2
- '@types/node': 18.7.9
- jest-message-util: 28.1.3
- jest-mock: 28.1.3
- jest-util: 28.1.3
+ '@types/node': 18.7.16
+ jest-message-util: 29.0.3
+ jest-mock: 29.0.3
+ jest-util: 29.0.3
dev: true
- /@jest/globals/28.1.3:
- resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/globals/29.0.3:
+ resolution: {integrity: sha512-YqGHT65rFY2siPIHHFjuCGUsbzRjdqkwbat+Of6DmYRg5shIXXrLdZoVE/+TJ9O1dsKsFmYhU58JvIbZRU1Z9w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 28.1.3
- '@jest/expect': 28.1.3
- '@jest/types': 28.1.3
+ '@jest/environment': 29.0.3
+ '@jest/expect': 29.0.3
+ '@jest/types': 29.0.3
+ jest-mock: 29.0.3
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/reporters/28.1.3:
- resolution: {integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/reporters/29.0.3:
+ resolution: {integrity: sha512-3+QU3d4aiyOWfmk1obDerie4XNCaD5Xo1IlKNde2yGEi02WQD+ZQD0i5Hgqm1e73sMV7kw6pMlCnprtEwEVwxw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
@@ -605,12 +627,12 @@ packages:
optional: true
dependencies:
'@bcoe/v8-coverage': 0.2.3
- '@jest/console': 28.1.3
- '@jest/test-result': 28.1.3
- '@jest/transform': 28.1.3
- '@jest/types': 28.1.3
+ '@jest/console': 29.0.3
+ '@jest/test-result': 29.0.3
+ '@jest/transform': 29.0.3
+ '@jest/types': 29.0.3
'@jridgewell/trace-mapping': 0.3.15
- '@types/node': 18.7.9
+ '@types/node': 18.7.16
chalk: 4.1.2
collect-v8-coverage: 1.0.1
exit: 0.1.2
@@ -621,9 +643,9 @@ packages:
istanbul-lib-report: 3.0.0
istanbul-lib-source-maps: 4.0.1
istanbul-reports: 3.1.5
- jest-message-util: 28.1.3
- jest-util: 28.1.3
- jest-worker: 28.1.3
+ jest-message-util: 29.0.3
+ jest-util: 29.0.3
+ jest-worker: 29.0.3
slash: 3.0.0
string-length: 4.0.2
strip-ansi: 6.0.1
@@ -633,57 +655,57 @@ packages:
- supports-color
dev: true
- /@jest/schemas/28.1.3:
- resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/schemas/29.0.0:
+ resolution: {integrity: sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@sinclair/typebox': 0.24.28
+ '@sinclair/typebox': 0.24.42
dev: true
- /@jest/source-map/28.1.2:
- resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/source-map/29.0.0:
+ resolution: {integrity: sha512-nOr+0EM8GiHf34mq2GcJyz/gYFyLQ2INDhAylrZJ9mMWoW21mLBfZa0BUVPPMxVYrLjeiRe2Z7kWXOGnS0TFhQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jridgewell/trace-mapping': 0.3.15
callsites: 3.1.0
graceful-fs: 4.2.10
dev: true
- /@jest/test-result/28.1.3:
- resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/test-result/29.0.3:
+ resolution: {integrity: sha512-vViVnQjCgTmbhDKEonKJPtcFe9G/CJO4/Np4XwYJah+lF2oI7KKeRp8t1dFvv44wN2NdbDb/qC6pi++Vpp0Dlg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/console': 28.1.3
- '@jest/types': 28.1.3
+ '@jest/console': 29.0.3
+ '@jest/types': 29.0.3
'@types/istanbul-lib-coverage': 2.0.4
collect-v8-coverage: 1.0.1
dev: true
- /@jest/test-sequencer/28.1.3:
- resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/test-sequencer/29.0.3:
+ resolution: {integrity: sha512-Hf4+xYSWZdxTNnhDykr8JBs0yBN/nxOXyUQWfotBUqqy0LF9vzcFB0jm/EDNZCx587znLWTIgxcokW7WeZMobQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/test-result': 28.1.3
+ '@jest/test-result': 29.0.3
graceful-fs: 4.2.10
- jest-haste-map: 28.1.3
+ jest-haste-map: 29.0.3
slash: 3.0.0
dev: true
- /@jest/transform/28.1.3:
- resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/transform/29.0.3:
+ resolution: {integrity: sha512-C5ihFTRYaGDbi/xbRQRdbo5ddGtI4VSpmL6AIcZxdhwLbXMa7PcXxxqyI91vGOFHnn5aVM3WYnYKCHEqmLVGzg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.18.10
- '@jest/types': 28.1.3
+ '@babel/core': 7.19.0
+ '@jest/types': 29.0.3
'@jridgewell/trace-mapping': 0.3.15
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 1.8.0
fast-json-stable-stringify: 2.1.0
graceful-fs: 4.2.10
- jest-haste-map: 28.1.3
- jest-regex-util: 28.0.2
- jest-util: 28.1.3
+ jest-haste-map: 29.0.3
+ jest-regex-util: 29.0.0
+ jest-util: 29.0.3
micromatch: 4.0.5
pirates: 4.0.5
slash: 3.0.0
@@ -698,20 +720,20 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 18.7.9
+ '@types/node': 18.7.18
'@types/yargs': 16.0.4
chalk: 4.1.2
dev: true
- /@jest/types/28.1.3:
- resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /@jest/types/29.0.3:
+ resolution: {integrity: sha512-coBJmOQvurXjN1Hh5PzF7cmsod0zLIOXpP8KD161mqNlroMhLcwpODiEzi7ZsRl5Z/AIuxpeNm8DCl43F4kz8A==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/schemas': 28.1.3
+ '@jest/schemas': 29.0.0
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 18.7.9
- '@types/yargs': 17.0.11
+ '@types/node': 18.7.16
+ '@types/yargs': 17.0.12
chalk: 4.1.2
dev: true
@@ -774,8 +796,8 @@ packages:
fastq: 1.13.0
dev: true
- /@sinclair/typebox/0.24.28:
- resolution: {integrity: sha512-dgJd3HLOkLmz4Bw50eZx/zJwtBq65nms3N9VBYu5LTjJ883oBFkTyXRlCB/ZGGwqYpJJHA5zW2Ibhl5ngITfow==}
+ /@sinclair/typebox/0.24.42:
+ resolution: {integrity: sha512-d+2AtrHGyWek2u2ITF0lHRIv6Tt7X0dEHW+0rP+5aDCEjC3fiN2RBjrLD0yU0at52BcZbRGxLbAtXiR0hFCjYw==}
dev: true
/@sinonjs/commons/1.8.3:
@@ -798,7 +820,7 @@ packages:
yargs-parser: 20.2.9
dev: true
- /@swc/cli/0.1.57_@swc+core@1.2.241:
+ /@swc/cli/0.1.57_@swc+core@1.3.3:
resolution: {integrity: sha512-HxM8TqYHhAg+zp7+RdTU69bnkl4MWdt1ygyp6BDIPjTiaJVH6Dizn2ezbgDS8mnFZI1FyhKvxU/bbaUs8XhzQg==}
engines: {node: '>= 12.13'}
hasBin: true
@@ -809,15 +831,15 @@ packages:
chokidar:
optional: true
dependencies:
- '@swc/core': 1.2.241
+ '@swc/core': 1.3.3
commander: 7.2.0
fast-glob: 3.2.11
slash: 3.0.0
source-map: 0.7.4
dev: true
- /@swc/core-android-arm-eabi/1.2.241:
- resolution: {integrity: sha512-VfbyFAQ+JT4kl4a7kPFM4pUSLHXnJ/bKIW0gAsVngBIcu73cz59HlylKiOtmx3UtXPsYu0Ort/qfC/UJfeEgrQ==}
+ /@swc/core-android-arm-eabi/1.3.3:
+ resolution: {integrity: sha512-R6MpKXvNx/T/8a0wUTiX1THxfRbURSCmYlSi/JnUaqLYUclQK1N8aCMWz7EYSz6FE0VZBREJYDJcdnfP88E/1Q==}
engines: {node: '>=10'}
cpu: [arm]
os: [android]
@@ -827,8 +849,8 @@ packages:
dev: true
optional: true
- /@swc/core-android-arm64/1.2.241:
- resolution: {integrity: sha512-WAJW542fxtO5iTP/vrBrf64dWfBq6rmWgL0HpM+ENFbqO4ME0xO49ky+5rMRAQdtwnJ5ZNkCvb49J+iIIY6yaw==}
+ /@swc/core-android-arm64/1.3.3:
+ resolution: {integrity: sha512-yZlku4ypVKykwHTS8CETxw2PH23UBeM6VhNB8efF4A4gVWtRZjv1PfjsSqh/X0vjgVTrs2zSaQ+eF6GLVbWrgA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [android]
@@ -838,8 +860,8 @@ packages:
dev: true
optional: true
- /@swc/core-darwin-arm64/1.2.241:
- resolution: {integrity: sha512-5lQaguosciAN6kOfmNY1UeitrwMyPUt4d/Z70A1ac5e1ZFuYlhOxGHuhkz6abEewLkS/b1CGruSAtphEEVGLmw==}
+ /@swc/core-darwin-arm64/1.3.3:
+ resolution: {integrity: sha512-/T8vyikY7t/be6bHd1D9J/bmXYMDMkBo9NA3auDT/hmouzawhJ6E7OqRE4HLuLTflnRw8WmEWgpeRIzMHvNjBQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -847,8 +869,8 @@ packages:
dev: true
optional: true
- /@swc/core-darwin-x64/1.2.241:
- resolution: {integrity: sha512-VtcCBdhOktYPDnEEL0f+pfGmvjIlmXWMZKIb48WTYunxwsehxQk79ZkLXc+TwZ3ur9GEoZHh31RaKqOj4QDHpQ==}
+ /@swc/core-darwin-x64/1.3.3:
+ resolution: {integrity: sha512-hw4o1If986In5m3y3/OimgiBKJh49kbTG9MRWo8msqTic2aBlrtfHjSecMn1g+oP7pdaUUCTkovmT7OpvvQ/Tw==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -856,8 +878,8 @@ packages:
dev: true
optional: true
- /@swc/core-freebsd-x64/1.2.241:
- resolution: {integrity: sha512-i12GxWnm1LuvZ9T0HVB8+CFIhcFzTxu3u2U97LZNb7vbHGHehUwIb6GmTwUbF+wEdFkwsIKWTf3RpvnEejWUsA==}
+ /@swc/core-freebsd-x64/1.3.3:
+ resolution: {integrity: sha512-JFDu3uLa0WMw77o+QNR5D1uErQ5s18HmEwJr5ndOQoDlS+XO2qUG6AxU5LdwLEl5qMf2C99t7gkfzcCZG1PRsw==}
engines: {node: '>=10'}
cpu: [x64]
os: [freebsd]
@@ -867,8 +889,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm-gnueabihf/1.2.241:
- resolution: {integrity: sha512-lTSiPkfEscfYEZxsKLbVqISRvCcatB+h7eENy0+Qdqqyio0yTOMfG7837jZhfy1hCjAwT8x2sh77fbvfQD4dRA==}
+ /@swc/core-linux-arm-gnueabihf/1.3.3:
+ resolution: {integrity: sha512-kJoyNP/ury9KmZnjhpj0QApY6VxC9S4hkgsycm8yTJ23O8WrUbgeDOlgAgFJNyHszhR5CnlssDv7ErCwMZtkgw==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -878,8 +900,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-gnu/1.2.241:
- resolution: {integrity: sha512-H6lTvd6nm4eaOi4Ledo5z1a6LXzJ2WpHTRsf3FssM9qqwFmbvNIz9vCTI4jCR5Y3Ed3jlmQli+znzmWJ/qzLLQ==}
+ /@swc/core-linux-arm64-gnu/1.3.3:
+ resolution: {integrity: sha512-Y+10o78O2snKnrNTbasT9S3Out0wlOyAkLZvq5zqzW1cz2K2Yzm04zQdKQOCRHlfTF0XSmZ++qRWVNol49WsNA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -887,8 +909,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-musl/1.2.241:
- resolution: {integrity: sha512-K8bXA+JtoD0g+w9wDyI3R0VkFaxFokF9KI0ioDVRfwDDNoFWq3slQWyN9fkj0dI9XagK15OcSuMGTH+h9B7veQ==}
+ /@swc/core-linux-arm64-musl/1.3.3:
+ resolution: {integrity: sha512-y6ErPP6Sk0f8exoanUxXeFALvPraTjyoVr8pitpfTqoUd9YcxwOTpPbR5WXI3FWnQ7GS86iH0LvaFDCgHQ1fjg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -896,8 +918,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-gnu/1.2.241:
- resolution: {integrity: sha512-jLr+mtNhHMcSRz0xZ9/R9g59kVmgekcz9RyXIFkO7RzJOGVzXxGxfO3pSsQ+u2tCpYbK9M6rMiaNoRYnQj3yNQ==}
+ /@swc/core-linux-x64-gnu/1.3.3:
+ resolution: {integrity: sha512-sqyvNJkPHKHlK/XLIoMNLiux8YxsCJpAk3UreS0NO+sRNRru2AMyrRwX6wxmnJybhEek9SPKF0pXi+GfcaFKYA==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -905,8 +927,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-musl/1.2.241:
- resolution: {integrity: sha512-yXkhlxTSH6ddcBCxwRHTnpj5TA0GXbWADjPIhhXG8KlM4KGjnEvfSBa1xtSNbJcYT8kBYM1n+jYf0dIX2je5eg==}
+ /@swc/core-linux-x64-musl/1.3.3:
+ resolution: {integrity: sha512-5fjwHdMv+DOgEp7sdNVmvS4Hr2rDaewa0BpDW8RefcjHoJnDpFVButLDMkwv/Yd+v4YN+99kyX/lOI+/OTD99w==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -914,8 +936,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-arm64-msvc/1.2.241:
- resolution: {integrity: sha512-/f3ylWLHfUtRgHFER3FdH5QwDhO7siQ6h5ug0yVKXIDfNJhJVt9Hd+ZjMGJhNGTkzrl+uZmwXWBiklMcaMCtbQ==}
+ /@swc/core-win32-arm64-msvc/1.3.3:
+ resolution: {integrity: sha512-JxcfG89GieqCFXkRl/mtFds/ME6ncEtLRIQ0+RBIREIGisA9ZgJ8EryBzGZyPu5+7kE0vXGVB6A2cfrv4SNW4A==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -925,8 +947,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-ia32-msvc/1.2.241:
- resolution: {integrity: sha512-HC1T9sWC9zuZ6C/WWTFMHdgKYv+qaOfWduIvNVqhECa+FXRcBTPtDgNBhMTc2lpt4biKf5iPHhAVZkP6Za3OOw==}
+ /@swc/core-win32-ia32-msvc/1.3.3:
+ resolution: {integrity: sha512-yqZjTn5V7wYCxMCC5Rg8u87SmGeRSlqYAafHL3IgiFe8hSxOykc2dR1MYNc4WZumYiMlU15VSa6mW8A0pj37FA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -936,8 +958,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-x64-msvc/1.2.241:
- resolution: {integrity: sha512-BW1MHKdmi+DDBH+Z/XlhluIjZj9SMkMheeN95G71Z2Pim5LrvzIHf31UD0kYh6ZWWphP06Jlpzl0oi4stxeETw==}
+ /@swc/core-win32-x64-msvc/1.3.3:
+ resolution: {integrity: sha512-CIuxz9wiHkgG7m3kjgptgO3iHOmrybvLf0rUNGbVTTHwTcrpjznAnS/MnMPiaIQPlxz70KSXAR2QJjw7fGtfbA==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -945,35 +967,35 @@ packages:
dev: true
optional: true
- /@swc/core/1.2.241:
- resolution: {integrity: sha512-zDUpW3ffFllBi2c5ui9JXl7zUjzMOOZGwy9JCAsodWo7DXWjw5pJF4GsTCzaYHDf62XQzQWuL7zGyRnJyMiyAA==}
+ /@swc/core/1.3.3:
+ resolution: {integrity: sha512-OGx3Qpw+czNSaea1ojP2X2wxrGtYicQxH1QnzX4F3rXGEcSUFIllmrae6iJHW91zS4SNcOocnQoRz1IYnrILYw==}
engines: {node: '>=10'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@swc/core-android-arm-eabi': 1.2.241
- '@swc/core-android-arm64': 1.2.241
- '@swc/core-darwin-arm64': 1.2.241
- '@swc/core-darwin-x64': 1.2.241
- '@swc/core-freebsd-x64': 1.2.241
- '@swc/core-linux-arm-gnueabihf': 1.2.241
- '@swc/core-linux-arm64-gnu': 1.2.241
- '@swc/core-linux-arm64-musl': 1.2.241
- '@swc/core-linux-x64-gnu': 1.2.241
- '@swc/core-linux-x64-musl': 1.2.241
- '@swc/core-win32-arm64-msvc': 1.2.241
- '@swc/core-win32-ia32-msvc': 1.2.241
- '@swc/core-win32-x64-msvc': 1.2.241
- dev: true
-
- /@swc/jest/0.2.22_@swc+core@1.2.241:
+ '@swc/core-android-arm-eabi': 1.3.3
+ '@swc/core-android-arm64': 1.3.3
+ '@swc/core-darwin-arm64': 1.3.3
+ '@swc/core-darwin-x64': 1.3.3
+ '@swc/core-freebsd-x64': 1.3.3
+ '@swc/core-linux-arm-gnueabihf': 1.3.3
+ '@swc/core-linux-arm64-gnu': 1.3.3
+ '@swc/core-linux-arm64-musl': 1.3.3
+ '@swc/core-linux-x64-gnu': 1.3.3
+ '@swc/core-linux-x64-musl': 1.3.3
+ '@swc/core-win32-arm64-msvc': 1.3.3
+ '@swc/core-win32-ia32-msvc': 1.3.3
+ '@swc/core-win32-x64-msvc': 1.3.3
+ dev: true
+
+ /@swc/jest/0.2.22_@swc+core@1.3.3:
resolution: {integrity: sha512-PIUIk9IdB1oAVfF9zNIfYoMBoEhahrrSvyryFANas7swC1cF0L5HR0f9X4qfet46oyCHCBtNcSpN0XJEOFIKlw==}
engines: {npm: '>= 7.0.0'}
peerDependencies:
'@swc/core': '*'
dependencies:
'@jest/create-cache-key-function': 27.5.1
- '@swc/core': 1.2.241
+ '@swc/core': 1.3.3
dev: true
/@swc/wasm/1.2.122:
@@ -988,14 +1010,14 @@ packages:
dev: true
optional: true
- /@testing-library/dom/8.14.0:
- resolution: {integrity: sha512-m8FOdUo77iMTwVRCyzWcqxlEIk+GnopbrRI15a0EaLbpZSCinIVI4kSQzWhkShK83GogvEFJSsHF3Ws0z1vrqA==}
+ /@testing-library/dom/8.17.1:
+ resolution: {integrity: sha512-KnH2MnJUzmFNPW6RIKfd+zf2Wue8mEKX0M3cpX6aKl5ZXrJM1/c/Pc8c2xDNYQCnJO48Sm5ITbMXgqTr3h4jxQ==}
engines: {node: '>=12'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/runtime': 7.18.6
+ '@babel/runtime': 7.19.0
'@types/aria-query': 4.2.2
- aria-query: 5.0.0
+ aria-query: 5.0.2
chalk: 4.1.2
dom-accessibility-api: 0.5.14
lz-string: 1.4.4
@@ -1025,15 +1047,15 @@ packages:
react-test-renderer: 18.2.0_react@18.2.0
dev: true
- /@testing-library/react/13.3.0_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ==}
+ /@testing-library/react/13.4.0_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==}
engines: {node: '>=12'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.18.6
- '@testing-library/dom': 8.14.0
+ '@babel/runtime': 7.19.0
+ '@testing-library/dom': 8.17.1
'@types/react-dom': 18.0.6
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -1051,30 +1073,30 @@ packages:
/@types/babel__core/7.1.19:
resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==}
dependencies:
- '@babel/parser': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
- '@types/babel__traverse': 7.18.0
+ '@types/babel__traverse': 7.18.1
dev: true
/@types/babel__generator/7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: true
/@types/babel__template/7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
dev: true
- /@types/babel__traverse/7.18.0:
- resolution: {integrity: sha512-v4Vwdko+pgymgS+A2UIaJru93zQd85vIGWObM5ekZNdXCKtDYqATlEYnWgfo86Q6I1Lh0oXnksDnMU1cwmlPDw==}
+ /@types/babel__traverse/7.18.1:
+ resolution: {integrity: sha512-FSdLaZh2UxaMuLp9lixWaHq/golWTRWOnRsAXzDTDSDOQLuZb1nsdCt6pJSPWSEQt2eFZ2YVk3oYhn+1kLMeMA==}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: true
/@types/eslint/8.4.5:
@@ -1095,7 +1117,7 @@ packages:
/@types/graceful-fs/4.1.5:
resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
dependencies:
- '@types/node': 18.7.9
+ '@types/node': 18.7.16
dev: true
/@types/istanbul-lib-coverage/2.0.4:
@@ -1114,19 +1136,19 @@ packages:
'@types/istanbul-lib-report': 3.0.0
dev: true
- /@types/jest/28.1.7:
- resolution: {integrity: sha512-acDN4VHD40V24tgu0iC44jchXavRNVFXQ/E6Z5XNsswgoSO/4NgsXoEYmPUGookKldlZQyIpmrEXsHI9cA3ZTA==}
+ /@types/jest/29.0.3:
+ resolution: {integrity: sha512-F6ukyCTwbfsEX5F2YmVYmM5TcTHy1q9P5rWlRbrk56KyMh3v9xRGUO3aa8+SkvMi0SHXtASJv1283enXimC0Og==}
dependencies:
- expect: 28.1.3
- pretty-format: 28.1.3
+ expect: 29.0.3
+ pretty-format: 29.0.3
dev: true
- /@types/jsdom/16.2.15:
- resolution: {integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==}
+ /@types/jsdom/20.0.0:
+ resolution: {integrity: sha512-YfAchFs0yM1QPDrLm2VHe+WHGtqms3NXnXAMolrgrVP6fgBHHXy1ozAbo/dFtPNtZC/m66bPiCTWYmqp1F14gA==}
dependencies:
- '@types/node': 18.7.9
- '@types/parse5': 6.0.3
+ '@types/node': 18.7.16
'@types/tough-cookie': 4.0.2
+ parse5: 7.1.1
dev: true
/@types/json-schema/7.0.11:
@@ -1137,8 +1159,8 @@ packages:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/leaflet/1.7.11:
- resolution: {integrity: sha512-VwAYom2pfIAf/pLj1VR5aLltd4tOtHyvfaJlNYCoejzP2nu52PrMi1ehsLRMUS+bgafmIIKBV1cMfKeS+uJ0Vg==}
+ /@types/leaflet/1.8.0:
+ resolution: {integrity: sha512-+sXFmiJTFdhaXXIGFlV5re9AdqtAODoXbGAvxx02e5SHXL3ir7ClP5J7pahO8VmzKY3dth4RUS1nf2BTT+DW1A==}
dependencies:
'@types/geojson': 7946.0.10
dev: true
@@ -1147,16 +1169,16 @@ packages:
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
dev: true
- /@types/node/18.7.9:
- resolution: {integrity: sha512-0N5Y1XAdcl865nDdjbO0m3T6FdmQ4ijE89/urOHLREyTXbpMWbSafx9y7XIsgWGtwUP2iYTinLyyW3FatAxBLQ==}
+ /@types/node/18.7.16:
+ resolution: {integrity: sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==}
dev: true
- /@types/normalize-package-data/2.4.1:
- resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
+ /@types/node/18.7.18:
+ resolution: {integrity: sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg==}
dev: true
- /@types/parse5/6.0.3:
- resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
+ /@types/normalize-package-data/2.4.1:
+ resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
dev: true
/@types/prettier/2.6.3:
@@ -1174,15 +1196,15 @@ packages:
/@types/react-dom/18.0.6:
resolution: {integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==}
dependencies:
- '@types/react': 18.0.17
+ '@types/react': 18.0.21
dev: true
- /@types/react/18.0.17:
- resolution: {integrity: sha512-38ETy4tL+rn4uQQi7mB81G7V1g0u2ryquNmsVIOKUAEIDK+3CUjZ6rSRpdvS99dNBnkLFL83qfmtLacGOTIhwQ==}
+ /@types/react/18.0.21:
+ resolution: {integrity: sha512-7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.2
- csstype: 3.1.0
+ csstype: 3.1.1
dev: true
/@types/scheduler/0.16.2:
@@ -1211,14 +1233,14 @@ packages:
'@types/yargs-parser': 21.0.0
dev: true
- /@types/yargs/17.0.11:
- resolution: {integrity: sha512-aB4y9UDUXTSMxmM4MH+YnuR0g5Cph3FLQBoWoMB21DSvFVAxRVEHEMx3TLh+zUZYMCQtKiqazz0Q4Rre31f/OA==}
+ /@types/yargs/17.0.12:
+ resolution: {integrity: sha512-Nz4MPhecOFArtm81gFQvQqdV7XYCrWKx5uUt6GNHredFHn1i2mtWqXTON7EPXMtNi1qjtjEM/VCHDhcHsAMLXQ==}
dependencies:
'@types/yargs-parser': 21.0.0
dev: true
- /@typescript-eslint/eslint-plugin/5.33.1_vsoshirnpb7xw6mr7xomgfas2i:
- resolution: {integrity: sha512-S1iZIxrTvKkU3+m63YUOxYPKaP+yWDQrdhxTglVDVEVBf+aCSw85+BmJnyUaQQsk5TXFG/LpBu9fa+LrAQ91fQ==}
+ /@typescript-eslint/eslint-plugin/5.38.0_4gkcvl6qsi23tqqawfqgcwtp54:
+ resolution: {integrity: sha512-GgHi/GNuUbTOeoJiEANi0oI6fF3gBQc3bGFYj40nnAPCbhrtEDf2rjBmefFadweBmO1Du1YovHeDP2h5JLhtTQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -1228,24 +1250,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq
- '@typescript-eslint/scope-manager': 5.33.1
- '@typescript-eslint/type-utils': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq
- '@typescript-eslint/utils': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq
+ '@typescript-eslint/parser': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
+ '@typescript-eslint/scope-manager': 5.38.0
+ '@typescript-eslint/type-utils': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
+ '@typescript-eslint/utils': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
debug: 4.3.4
- eslint: 8.22.0
- functional-red-black-tree: 1.0.1
+ eslint: 8.24.0
ignore: 5.2.0
regexpp: 3.2.0
semver: 7.3.7
- tsutils: 3.21.0_typescript@4.7.4
- typescript: 4.7.4
+ tsutils: 3.21.0_typescript@4.8.3
+ typescript: 4.8.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser/5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq:
- resolution: {integrity: sha512-IgLLtW7FOzoDlmaMoXdxG8HOCByTBXrB1V2ZQYSEV1ggMmJfAkMWTwUjjzagS6OkfpySyhKFkBw7A9jYmcHpZA==}
+ /@typescript-eslint/parser/5.38.0_7ilbxdl5iguzcjriqqcg2m5cku:
+ resolution: {integrity: sha512-/F63giJGLDr0ms1Cr8utDAxP2SPiglaD6V+pCOcG35P2jCqdfR7uuEhz1GIC3oy4hkUF8xA1XSXmd9hOh/a5EA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -1254,26 +1275,26 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.33.1
- '@typescript-eslint/types': 5.33.1
- '@typescript-eslint/typescript-estree': 5.33.1_typescript@4.7.4
+ '@typescript-eslint/scope-manager': 5.38.0
+ '@typescript-eslint/types': 5.38.0
+ '@typescript-eslint/typescript-estree': 5.38.0_typescript@4.8.3
debug: 4.3.4
- eslint: 8.22.0
- typescript: 4.7.4
+ eslint: 8.24.0
+ typescript: 4.8.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.33.1:
- resolution: {integrity: sha512-8ibcZSqy4c5m69QpzJn8XQq9NnqAToC8OdH/W6IXPXv83vRyEDPYLdjAlUx8h/rbusq6MkW4YdQzURGOqsn3CA==}
+ /@typescript-eslint/scope-manager/5.38.0:
+ resolution: {integrity: sha512-ByhHIuNyKD9giwkkLqzezZ9y5bALW8VNY6xXcP+VxoH4JBDKjU5WNnsiD4HJdglHECdV+lyaxhvQjTUbRboiTA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.33.1
- '@typescript-eslint/visitor-keys': 5.33.1
+ '@typescript-eslint/types': 5.38.0
+ '@typescript-eslint/visitor-keys': 5.38.0
dev: true
- /@typescript-eslint/type-utils/5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq:
- resolution: {integrity: sha512-X3pGsJsD8OiqhNa5fim41YtlnyiWMF/eKsEZGsHID2HcDqeSC5yr/uLOeph8rNF2/utwuI0IQoAK3fpoxcLl2g==}
+ /@typescript-eslint/type-utils/5.38.0_7ilbxdl5iguzcjriqqcg2m5cku:
+ resolution: {integrity: sha512-iZq5USgybUcj/lfnbuelJ0j3K9dbs1I3RICAJY9NZZpDgBYXmuUlYQGzftpQA9wC8cKgtS6DASTvF3HrXwwozA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -1282,22 +1303,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/utils': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq
+ '@typescript-eslint/typescript-estree': 5.38.0_typescript@4.8.3
+ '@typescript-eslint/utils': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
debug: 4.3.4
- eslint: 8.22.0
- tsutils: 3.21.0_typescript@4.7.4
- typescript: 4.7.4
+ eslint: 8.24.0
+ tsutils: 3.21.0_typescript@4.8.3
+ typescript: 4.8.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types/5.33.1:
- resolution: {integrity: sha512-7K6MoQPQh6WVEkMrMW5QOA5FO+BOwzHSNd0j3+BlBwd6vtzfZceJ8xJ7Um2XDi/O3umS8/qDX6jdy2i7CijkwQ==}
+ /@typescript-eslint/types/5.38.0:
+ resolution: {integrity: sha512-HHu4yMjJ7i3Cb+8NUuRCdOGu2VMkfmKyIJsOr9PfkBVYLYrtMCK/Ap50Rpov+iKpxDTfnqvDbuPLgBE5FwUNfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.33.1_typescript@4.7.4:
- resolution: {integrity: sha512-JOAzJ4pJ+tHzA2pgsWQi4804XisPHOtbvwUyqsuuq8+y5B5GMZs7lI1xDWs6V2d7gE/Ez5bTGojSK12+IIPtXA==}
+ /@typescript-eslint/typescript-estree/5.38.0_typescript@4.8.3:
+ resolution: {integrity: sha512-6P0RuphkR+UuV7Avv7MU3hFoWaGcrgOdi8eTe1NwhMp2/GjUJoODBTRWzlHpZh6lFOaPmSvgxGlROa0Sg5Zbyg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -1305,41 +1327,41 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.33.1
- '@typescript-eslint/visitor-keys': 5.33.1
+ '@typescript-eslint/types': 5.38.0
+ '@typescript-eslint/visitor-keys': 5.38.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.7
- tsutils: 3.21.0_typescript@4.7.4
- typescript: 4.7.4
+ tsutils: 3.21.0_typescript@4.8.3
+ typescript: 4.8.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq:
- resolution: {integrity: sha512-uphZjkMaZ4fE8CR4dU7BquOV6u0doeQAr8n6cQenl/poMaIyJtBu8eys5uk6u5HiDH01Mj5lzbJ5SfeDz7oqMQ==}
+ /@typescript-eslint/utils/5.38.0_7ilbxdl5iguzcjriqqcg2m5cku:
+ resolution: {integrity: sha512-6sdeYaBgk9Fh7N2unEXGz+D+som2QCQGPAf1SxrkEr+Z32gMreQ0rparXTNGRRfYUWk/JzbGdcM8NSSd6oqnTA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.11
- '@typescript-eslint/scope-manager': 5.33.1
- '@typescript-eslint/types': 5.33.1
- '@typescript-eslint/typescript-estree': 5.33.1_typescript@4.7.4
- eslint: 8.22.0
+ '@typescript-eslint/scope-manager': 5.38.0
+ '@typescript-eslint/types': 5.38.0
+ '@typescript-eslint/typescript-estree': 5.38.0_typescript@4.8.3
+ eslint: 8.24.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.22.0
+ eslint-utils: 3.0.0_eslint@8.24.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys/5.33.1:
- resolution: {integrity: sha512-nwIxOK8Z2MPWltLKMLOEZwmfBZReqUdbEoHQXeCpa+sRVARe5twpJGHCB4dk9903Yaf0nMAlGbQfaAH92F60eg==}
+ /@typescript-eslint/visitor-keys/5.38.0:
+ resolution: {integrity: sha512-MxnrdIyArnTi+XyFLR+kt/uNAcdOnmT+879os7qDRI+EYySR4crXJq9BXPfRzzLGq0wgxkwidrCJ9WCAoacm1w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.33.1
+ '@typescript-eslint/types': 5.38.0
eslint-visitor-keys: 3.3.0
dev: true
@@ -1469,8 +1491,8 @@ packages:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
- /aria-query/5.0.0:
- resolution: {integrity: sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==}
+ /aria-query/5.0.2:
+ resolution: {integrity: sha512-eigU3vhqSO+Z8BKDnVLN/ompjhf3pYzecKXz8+whRy+9gZu8n1TCGfwzQUUPnqdHl9ax1Hr9031orZ+UOEYr7Q==}
engines: {node: '>=6.0'}
dev: true
@@ -1506,7 +1528,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.1
+ es-abstract: 1.20.2
es-shim-unscopables: 1.0.0
dev: true
@@ -1519,17 +1541,17 @@ packages:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
dev: true
- /babel-jest/28.1.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /babel-jest/29.0.3_@babel+core@7.19.0:
+ resolution: {integrity: sha512-ApPyHSOhS/sVzwUOQIWJmdvDhBsMG01HX9z7ogtkp1TToHGGUWFlnXJUIzCgKPSfiYLn3ibipCYzsKSURHEwLg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.18.10
- '@jest/transform': 28.1.3
+ '@babel/core': 7.19.0
+ '@jest/transform': 29.0.3
'@types/babel__core': 7.1.19
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 28.1.3_@babel+core@7.18.10
+ babel-preset-jest: 29.0.2_@babel+core@7.19.0
chalk: 4.1.2
graceful-fs: 4.2.10
slash: 3.0.0
@@ -1541,7 +1563,7 @@ packages:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-plugin-utils': 7.19.0
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.0
@@ -1550,45 +1572,45 @@ packages:
- supports-color
dev: true
- /babel-plugin-jest-hoist/28.1.3:
- resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /babel-plugin-jest-hoist/29.0.2:
+ resolution: {integrity: sha512-eBr2ynAEFjcebVvu8Ktx580BD1QKCrBG1XwEUTXJe285p9HA/4hOhfWCFRQhTKSyBV0VzjhG7H91Eifz9s29hg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/template': 7.18.10
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
'@types/babel__core': 7.1.19
- '@types/babel__traverse': 7.18.0
+ '@types/babel__traverse': 7.18.1
dev: true
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.10:
+ /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.0:
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.10
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10
- dev: true
-
- /babel-preset-jest/28.1.3_@babel+core@7.18.10:
- resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ '@babel/core': 7.19.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.0
+ '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.19.0
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.0
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.0
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.0
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.0
+ dev: true
+
+ /babel-preset-jest/29.0.2_@babel+core@7.19.0:
+ resolution: {integrity: sha512-BeVXp7rH5TK96ofyEnHjznjLMQ2nAeDJ+QzxKnHAAMs0RgrQsCywjAN8m4mOm5Di0pxU//3AoEeJJrerMH5UeA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.10
- babel-plugin-jest-hoist: 28.1.3
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10
+ '@babel/core': 7.19.0
+ babel-plugin-jest-hoist: 29.0.2
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0
dev: true
/balanced-match/1.0.2:
@@ -1618,10 +1640,10 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001381
- electron-to-chromium: 1.4.225
+ caniuse-lite: 1.0.30001393
+ electron-to-chromium: 1.4.247
node-releases: 2.0.6
- update-browserslist-db: 1.0.5_browserslist@4.21.3
+ update-browserslist-db: 1.0.7_browserslist@4.21.3
dev: true
/bser/2.1.1:
@@ -1666,8 +1688,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /caniuse-lite/1.0.30001381:
- resolution: {integrity: sha512-fEnkDOKpvp6qc+olg7+NzE1SqyfiyKf4uci7fAU38M3zxs0YOyKOxW/nMZ2l9sJbt7KZHcDIxUnbI0Iime7V4w==}
+ /caniuse-lite/1.0.30001393:
+ resolution: {integrity: sha512-N/od11RX+Gsk+1qY/jbPa0R6zJupEa0lxeBG598EbrtblxVCTJsQwbRBm6+V+rxpc5lHKdsXb9RY83cZIPLseA==}
dev: true
/chalk/1.1.3:
@@ -1703,8 +1725,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /ci-info/3.3.2:
- resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==}
+ /ci-info/3.4.0:
+ resolution: {integrity: sha512-t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug==}
dev: true
/cjs-module-lexer/1.2.2:
@@ -1815,8 +1837,8 @@ packages:
cssom: 0.3.8
dev: true
- /csstype/3.1.0:
- resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
+ /csstype/3.1.1:
+ resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
dev: true
/data-urls/3.0.2:
@@ -1938,9 +1960,9 @@ packages:
engines: {node: '>=8'}
dev: true
- /diff-sequences/28.1.1:
- resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /diff-sequences/29.0.0:
+ resolution: {integrity: sha512-7Qe/zd1wxSDL4D/X/FPjOMB+ZMDt71W94KYaq05I2l0oQqgXgs7s4ftYYmV38gBSrPz2vcygxfs1xn0FT+rKNA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
/dir-glob/3.0.1:
@@ -1979,8 +2001,8 @@ packages:
webidl-conversions: 7.0.0
dev: true
- /electron-to-chromium/1.4.225:
- resolution: {integrity: sha512-ICHvGaCIQR3P88uK8aRtx8gmejbVJyC6bB4LEC3anzBrIzdzC7aiZHY4iFfXhN4st6I7lMO0x4sgBHf/7kBvRw==}
+ /electron-to-chromium/1.4.247:
+ resolution: {integrity: sha512-FLs6R4FQE+1JHM0hh3sfdxnYjKvJpHZyhQDjc2qFq/xFvmmRt/TATNToZhrcGUFzpF2XjeiuozrA8lI0PZmYYw==}
dev: true
/emittery/0.10.2:
@@ -1992,6 +2014,11 @@ packages:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
dev: true
+ /entities/4.4.0:
+ resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
+ engines: {node: '>=0.12'}
+ dev: true
+
/error-ex/1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
@@ -2027,6 +2054,35 @@ packages:
unbox-primitive: 1.0.2
dev: true
+ /es-abstract/1.20.2:
+ resolution: {integrity: sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ es-to-primitive: 1.2.1
+ function-bind: 1.1.1
+ function.prototype.name: 1.1.5
+ get-intrinsic: 1.1.2
+ get-symbol-description: 1.0.0
+ has: 1.0.3
+ has-property-descriptors: 1.0.0
+ has-symbols: 1.0.3
+ internal-slot: 1.0.3
+ is-callable: 1.2.4
+ is-negative-zero: 2.0.2
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ is-string: 1.0.7
+ is-weakref: 1.0.2
+ object-inspect: 1.12.2
+ object-keys: 1.1.1
+ object.assign: 4.1.4
+ regexp.prototype.flags: 1.4.3
+ string.prototype.trimend: 1.0.5
+ string.prototype.trimstart: 1.0.5
+ unbox-primitive: 1.0.2
+ dev: true
+
/es-shim-unscopables/1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
@@ -2080,13 +2136,13 @@ packages:
source-map: 0.6.1
dev: true
- /eslint-config-prettier/8.5.0_eslint@8.22.0:
+ /eslint-config-prettier/8.5.0_eslint@8.24.0:
resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.22.0
+ eslint: 8.24.0
dev: true
/eslint-import-resolver-node/0.3.6:
@@ -2098,7 +2154,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.7.3_bqtl5xx3vbklkgkxkvld3j7ioa:
+ /eslint-module-utils/2.7.3_wksnzkbqgr3q3djac7fn35kbeq:
resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
engines: {node: '>=4'}
peerDependencies:
@@ -2116,7 +2172,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq
+ '@typescript-eslint/parser': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
debug: 3.2.7
eslint-import-resolver-node: 0.3.6
find-up: 2.1.0
@@ -2124,18 +2180,18 @@ packages:
- supports-color
dev: true
- /eslint-plugin-es/3.0.1_eslint@8.22.0:
+ /eslint-plugin-es/3.0.1_eslint@8.24.0:
resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==}
engines: {node: '>=8.10.0'}
peerDependencies:
eslint: '>=4.19.1'
dependencies:
- eslint: 8.22.0
+ eslint: 8.24.0
eslint-utils: 2.1.0
regexpp: 3.2.0
dev: true
- /eslint-plugin-import/2.26.0_3bh5nkk7utn7e74vrwtv6rxmt4:
+ /eslint-plugin-import/2.26.0_2azyxy5wfmd73v3pbt5rvmgcsm:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -2145,14 +2201,14 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq
+ '@typescript-eslint/parser': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
array-includes: 3.1.5
array.prototype.flat: 1.3.0
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.22.0
+ eslint: 8.24.0
eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.3_bqtl5xx3vbklkgkxkvld3j7ioa
+ eslint-module-utils: 2.7.3_wksnzkbqgr3q3djac7fn35kbeq
has: 1.0.3
is-core-module: 2.9.0
is-glob: 4.0.3
@@ -2166,14 +2222,14 @@ packages:
- supports-color
dev: true
- /eslint-plugin-node/11.1.0_eslint@8.22.0:
+ /eslint-plugin-node/11.1.0_eslint@8.24.0:
resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
engines: {node: '>=8.10.0'}
peerDependencies:
eslint: '>=5.16.0'
dependencies:
- eslint: 8.22.0
- eslint-plugin-es: 3.0.1_eslint@8.22.0
+ eslint: 8.24.0
+ eslint-plugin-es: 3.0.1_eslint@8.24.0
eslint-utils: 2.1.0
ignore: 5.2.0
minimatch: 3.1.2
@@ -2181,7 +2237,7 @@ packages:
semver: 6.3.0
dev: true
- /eslint-plugin-prettier/4.2.1_i2cojdczqdiurzgttlwdgf764e:
+ /eslint-plugin-prettier/4.2.1_cfn5x6ujhhgzv3423d6k7r2zzm:
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -2192,32 +2248,32 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.22.0
- eslint-config-prettier: 8.5.0_eslint@8.22.0
+ eslint: 8.24.0
+ eslint-config-prettier: 8.5.0_eslint@8.24.0
prettier: 2.7.1
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-promise/6.0.0_eslint@8.22.0:
- resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==}
+ /eslint-plugin-promise/6.0.1_eslint@8.24.0:
+ resolution: {integrity: sha512-uM4Tgo5u3UWQiroOyDEsYcVMOo7re3zmno0IZmB5auxoaQNIceAbXEkSt8RNrKtaYehARHG06pYK6K1JhtP0Zw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- eslint: 8.22.0
+ eslint: 8.24.0
dev: true
- /eslint-plugin-react-hooks/4.6.0_eslint@8.22.0:
+ /eslint-plugin-react-hooks/4.6.0_eslint@8.24.0:
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.22.0
+ eslint: 8.24.0
dev: true
- /eslint-plugin-react/7.30.1_eslint@8.22.0:
- resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==}
+ /eslint-plugin-react/7.31.8_eslint@8.24.0:
+ resolution: {integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
@@ -2225,9 +2281,9 @@ packages:
array-includes: 3.1.5
array.prototype.flatmap: 1.3.0
doctrine: 2.1.0
- eslint: 8.22.0
+ eslint: 8.24.0
estraverse: 5.3.0
- jsx-ast-utils: 3.3.2
+ jsx-ast-utils: 3.3.3
minimatch: 3.1.2
object.entries: 1.1.5
object.fromentries: 2.0.5
@@ -2262,13 +2318,13 @@ packages:
eslint-visitor-keys: 1.3.0
dev: true
- /eslint-utils/3.0.0_eslint@8.22.0:
+ /eslint-utils/3.0.0_eslint@8.24.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
- eslint: 8.22.0
+ eslint: 8.24.0
eslint-visitor-keys: 2.1.0
dev: true
@@ -2287,14 +2343,15 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/8.22.0:
- resolution: {integrity: sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA==}
+ /eslint/8.24.0:
+ resolution: {integrity: sha512-dWFaPhGhTAiPcCgm3f6LI2MBWbogMnTJzFBbhXVRQDJPkr9pGZvVjlVfXd+vyDcWPA2Ic9L2AXPIQM0+vk/cSQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint/eslintrc': 1.3.0
- '@humanwhocodes/config-array': 0.10.4
+ '@eslint/eslintrc': 1.3.2
+ '@humanwhocodes/config-array': 0.10.5
'@humanwhocodes/gitignore-to-minimatch': 1.0.2
+ '@humanwhocodes/module-importer': 1.0.1
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
@@ -2302,15 +2359,14 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-utils: 3.0.0_eslint@8.22.0
+ eslint-utils: 3.0.0_eslint@8.24.0
eslint-visitor-keys: 3.3.0
- espree: 9.3.3
+ espree: 9.4.0
esquery: 1.4.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
find-up: 5.0.0
- functional-red-black-tree: 1.0.1
glob-parent: 6.0.2
globals: 13.17.0
globby: 11.1.0
@@ -2319,6 +2375,7 @@ packages:
import-fresh: 3.3.0
imurmurhash: 0.1.4
is-glob: 4.0.3
+ js-sdsl: 4.1.4
js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
@@ -2330,13 +2387,12 @@ packages:
strip-ansi: 6.0.1
strip-json-comments: 3.1.1
text-table: 0.2.0
- v8-compile-cache: 2.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /espree/9.3.3:
- resolution: {integrity: sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==}
+ /espree/9.4.0:
+ resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.8.0
@@ -2399,15 +2455,15 @@ packages:
engines: {node: '>= 0.8.0'}
dev: true
- /expect/28.1.3:
- resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /expect/29.0.3:
+ resolution: {integrity: sha512-t8l5DTws3212VbmPL+tBFXhjRHLmctHB0oQbL8eUc6S7NzZtYUhycrFO9mkxA0ZUC6FAWdNi7JchJSkODtcu1Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/expect-utils': 28.1.3
- jest-get-type: 28.0.2
- jest-matcher-utils: 28.1.3
- jest-message-util: 28.1.3
- jest-util: 28.1.3
+ '@jest/expect-utils': 29.0.3
+ jest-get-type: 29.0.0
+ jest-matcher-utils: 29.0.3
+ jest-message-util: 29.0.3
+ jest-util: 29.0.3
dev: true
/fast-deep-equal/3.1.3:
@@ -2429,6 +2485,17 @@ packages:
micromatch: 4.0.5
dev: true
+ /fast-glob/3.2.12:
+ resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
+ engines: {node: '>=8.6.0'}
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.5
+ dev: true
+
/fast-json-stable-stringify/2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: true
@@ -2533,10 +2600,6 @@ packages:
functions-have-names: 1.2.3
dev: true
- /functional-red-black-tree/1.0.1:
- resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
- dev: true
-
/functions-have-names/1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
dev: true
@@ -2620,7 +2683,7 @@ packages:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
ignore: 5.2.0
merge2: 1.4.1
slash: 3.0.0
@@ -2631,7 +2694,7 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
dir-glob: 3.0.1
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
ignore: 5.2.0
merge2: 1.4.1
slash: 4.0.0
@@ -2956,8 +3019,8 @@ packages:
resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.18.10
- '@babel/parser': 7.18.11
+ '@babel/core': 7.19.0
+ '@babel/parser': 7.19.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
@@ -2993,44 +3056,44 @@ packages:
istanbul-lib-report: 3.0.0
dev: true
- /jest-changed-files/28.1.3:
- resolution: {integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-changed-files/29.0.0:
+ resolution: {integrity: sha512-28/iDMDrUpGoCitTURuDqUzWQoWmOmOKOFST1mi2lwh62X4BFf6khgH3uSuo1e49X/UDjuApAj3w0wLOex4VPQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
execa: 5.1.1
p-limit: 3.1.0
dev: true
- /jest-circus/28.1.3:
- resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-circus/29.0.3:
+ resolution: {integrity: sha512-QeGzagC6Hw5pP+df1+aoF8+FBSgkPmraC1UdkeunWh0jmrp7wC0Hr6umdUAOELBQmxtKAOMNC3KAdjmCds92Zg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 28.1.3
- '@jest/expect': 28.1.3
- '@jest/test-result': 28.1.3
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
+ '@jest/environment': 29.0.3
+ '@jest/expect': 29.0.3
+ '@jest/test-result': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
is-generator-fn: 2.1.0
- jest-each: 28.1.3
- jest-matcher-utils: 28.1.3
- jest-message-util: 28.1.3
- jest-runtime: 28.1.3
- jest-snapshot: 28.1.3
- jest-util: 28.1.3
+ jest-each: 29.0.3
+ jest-matcher-utils: 29.0.3
+ jest-message-util: 29.0.3
+ jest-runtime: 29.0.3
+ jest-snapshot: 29.0.3
+ jest-util: 29.0.3
p-limit: 3.1.0
- pretty-format: 28.1.3
+ pretty-format: 29.0.3
slash: 3.0.0
stack-utils: 2.0.5
transitivePeerDependencies:
- supports-color
dev: true
- /jest-cli/28.1.3:
- resolution: {integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-cli/29.0.3:
+ resolution: {integrity: sha512-aUy9Gd/Kut1z80eBzG10jAn6BgS3BoBbXyv+uXEqBJ8wnnuZ5RpNfARoskSrTIy1GY4a8f32YGuCMwibtkl9CQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -3038,16 +3101,16 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 28.1.3
- '@jest/test-result': 28.1.3
- '@jest/types': 28.1.3
+ '@jest/core': 29.0.3
+ '@jest/test-result': 29.0.3
+ '@jest/types': 29.0.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.10
import-local: 3.1.0
- jest-config: 28.1.3
- jest-util: 28.1.3
- jest-validate: 28.1.3
+ jest-config: 29.0.3
+ jest-util: 29.0.3
+ jest-validate: 29.0.3
prompts: 2.4.2
yargs: 17.5.1
transitivePeerDependencies:
@@ -3056,9 +3119,9 @@ packages:
- ts-node
dev: true
- /jest-config/28.1.3:
- resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-config/29.0.3:
+ resolution: {integrity: sha512-U5qkc82HHVYe3fNu2CRXLN4g761Na26rWKf7CjM8LlZB3In1jadEkZdMwsE37rd9RSPV0NfYaCjHdk/gu3v+Ew==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@types/node': '*'
ts-node: '>=9.0.0'
@@ -3068,35 +3131,35 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.18.10
- '@jest/test-sequencer': 28.1.3
- '@jest/types': 28.1.3
- babel-jest: 28.1.3_@babel+core@7.18.10
+ '@babel/core': 7.19.0
+ '@jest/test-sequencer': 29.0.3
+ '@jest/types': 29.0.3
+ babel-jest: 29.0.3_@babel+core@7.19.0
chalk: 4.1.2
- ci-info: 3.3.2
+ ci-info: 3.4.0
deepmerge: 4.2.2
glob: 7.2.3
graceful-fs: 4.2.10
- jest-circus: 28.1.3
- jest-environment-node: 28.1.3
- jest-get-type: 28.0.2
- jest-regex-util: 28.0.2
- jest-resolve: 28.1.3
- jest-runner: 28.1.3
- jest-util: 28.1.3
- jest-validate: 28.1.3
+ jest-circus: 29.0.3
+ jest-environment-node: 29.0.3
+ jest-get-type: 29.0.0
+ jest-regex-util: 29.0.0
+ jest-resolve: 29.0.3
+ jest-runner: 29.0.3
+ jest-util: 29.0.3
+ jest-validate: 29.0.3
micromatch: 4.0.5
parse-json: 5.2.0
- pretty-format: 28.1.3
+ pretty-format: 29.0.3
slash: 3.0.0
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
dev: true
- /jest-config/28.1.3_@types+node@18.7.9:
- resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-config/29.0.3_@types+node@18.7.16:
+ resolution: {integrity: sha512-U5qkc82HHVYe3fNu2CRXLN4g761Na26rWKf7CjM8LlZB3In1jadEkZdMwsE37rd9RSPV0NfYaCjHdk/gu3v+Ew==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@types/node': '*'
ts-node: '>=9.0.0'
@@ -3106,73 +3169,73 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.18.10
- '@jest/test-sequencer': 28.1.3
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
- babel-jest: 28.1.3_@babel+core@7.18.10
+ '@babel/core': 7.19.0
+ '@jest/test-sequencer': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
+ babel-jest: 29.0.3_@babel+core@7.19.0
chalk: 4.1.2
- ci-info: 3.3.2
+ ci-info: 3.4.0
deepmerge: 4.2.2
glob: 7.2.3
graceful-fs: 4.2.10
- jest-circus: 28.1.3
- jest-environment-node: 28.1.3
- jest-get-type: 28.0.2
- jest-regex-util: 28.0.2
- jest-resolve: 28.1.3
- jest-runner: 28.1.3
- jest-util: 28.1.3
- jest-validate: 28.1.3
+ jest-circus: 29.0.3
+ jest-environment-node: 29.0.3
+ jest-get-type: 29.0.0
+ jest-regex-util: 29.0.0
+ jest-resolve: 29.0.3
+ jest-runner: 29.0.3
+ jest-util: 29.0.3
+ jest-validate: 29.0.3
micromatch: 4.0.5
parse-json: 5.2.0
- pretty-format: 28.1.3
+ pretty-format: 29.0.3
slash: 3.0.0
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
dev: true
- /jest-diff/28.1.3:
- resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-diff/29.0.3:
+ resolution: {integrity: sha512-+X/AIF5G/vX9fWK+Db9bi9BQas7M9oBME7egU7psbn4jlszLFCu0dW63UgeE6cs/GANq4fLaT+8sGHQQ0eCUfg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
- diff-sequences: 28.1.1
- jest-get-type: 28.0.2
- pretty-format: 28.1.3
+ diff-sequences: 29.0.0
+ jest-get-type: 29.0.0
+ pretty-format: 29.0.3
dev: true
- /jest-docblock/28.1.1:
- resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-docblock/29.0.0:
+ resolution: {integrity: sha512-s5Kpra/kLzbqu9dEjov30kj1n4tfu3e7Pl8v+f8jOkeWNqM6Ds8jRaJfZow3ducoQUrf2Z4rs2N5S3zXnb83gw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
detect-newline: 3.1.0
dev: true
- /jest-each/28.1.3:
- resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-each/29.0.3:
+ resolution: {integrity: sha512-wILhZfESURHHBNvPMJ0lZlYZrvOQJxAo3wNHi+ycr90V7M+uGR9Gh4+4a/BmaZF0XTyZsk4OiYEf3GJN7Ltqzg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 28.1.3
+ '@jest/types': 29.0.3
chalk: 4.1.2
- jest-get-type: 28.0.2
- jest-util: 28.1.3
- pretty-format: 28.1.3
- dev: true
-
- /jest-environment-jsdom/28.1.3:
- resolution: {integrity: sha512-HnlGUmZRdxfCByd3GM2F100DgQOajUBzEitjGqIREcb45kGjZvRrKUdlaF6escXBdcXNl0OBh+1ZrfeZT3GnAg==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/environment': 28.1.3
- '@jest/fake-timers': 28.1.3
- '@jest/types': 28.1.3
- '@types/jsdom': 16.2.15
- '@types/node': 18.7.9
- jest-mock: 28.1.3
- jest-util: 28.1.3
- jsdom: 19.0.0
+ jest-get-type: 29.0.0
+ jest-util: 29.0.3
+ pretty-format: 29.0.3
+ dev: true
+
+ /jest-environment-jsdom/29.0.3:
+ resolution: {integrity: sha512-KIGvpm12c71hoYTjL4wC2c8K6KfhOHJqJtaHc1IApu5rG047YWZoEP13BlbucWfzGISBrmli8KFqdhdQEa8Wnw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@jest/environment': 29.0.3
+ '@jest/fake-timers': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/jsdom': 20.0.0
+ '@types/node': 18.7.16
+ jest-mock: 29.0.3
+ jest-util: 29.0.3
+ jsdom: 20.0.0
transitivePeerDependencies:
- bufferutil
- canvas
@@ -3180,16 +3243,16 @@ packages:
- utf-8-validate
dev: true
- /jest-environment-node/28.1.3:
- resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-environment-node/29.0.3:
+ resolution: {integrity: sha512-cdZqRCnmIlTXC+9vtvmfiY/40Cj6s2T0czXuq1whvQdmpzAnj4sbqVYuZ4zFHk766xTTJ+Ij3uUqkk8KCfXoyg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 28.1.3
- '@jest/fake-timers': 28.1.3
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
- jest-mock: 28.1.3
- jest-util: 28.1.3
+ '@jest/environment': 29.0.3
+ '@jest/fake-timers': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
+ jest-mock: 29.0.3
+ jest-util: 29.0.3
dev: true
/jest-get-type/27.5.1:
@@ -3197,9 +3260,9 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dev: true
- /jest-get-type/28.0.2:
- resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-get-type/29.0.0:
+ resolution: {integrity: sha512-83X19z/HuLKYXYHskZlBAShO7UfLFXu/vWajw9ZNJASN32li8yHMaVGAQqxFW1RCFOkB7cubaL6FaJVQqqJLSw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
/jest-haste-map/27.5.1:
@@ -3208,7 +3271,7 @@ packages:
dependencies:
'@jest/types': 27.5.1
'@types/graceful-fs': 4.1.5
- '@types/node': 18.7.9
+ '@types/node': 18.7.18
anymatch: 3.1.2
fb-watchman: 2.0.1
graceful-fs: 4.2.10
@@ -3222,64 +3285,64 @@ packages:
fsevents: 2.3.2
dev: true
- /jest-haste-map/28.1.3:
- resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-haste-map/29.0.3:
+ resolution: {integrity: sha512-uMqR99+GuBHo0RjRhOE4iA6LmsxEwRdgiIAQgMU/wdT2XebsLDz5obIwLZm/Psj+GwSEQhw9AfAVKGYbh2G55A==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 28.1.3
+ '@jest/types': 29.0.3
'@types/graceful-fs': 4.1.5
- '@types/node': 18.7.9
+ '@types/node': 18.7.16
anymatch: 3.1.2
fb-watchman: 2.0.1
graceful-fs: 4.2.10
- jest-regex-util: 28.0.2
- jest-util: 28.1.3
- jest-worker: 28.1.3
+ jest-regex-util: 29.0.0
+ jest-util: 29.0.3
+ jest-worker: 29.0.3
micromatch: 4.0.5
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.2
dev: true
- /jest-leak-detector/28.1.3:
- resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-leak-detector/29.0.3:
+ resolution: {integrity: sha512-YfW/G63dAuiuQ3QmQlh8hnqLDe25WFY3eQhuc/Ev1AGmkw5zREblTh7TCSKLoheyggu6G9gxO2hY8p9o6xbaRQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- jest-get-type: 28.0.2
- pretty-format: 28.1.3
+ jest-get-type: 29.0.0
+ pretty-format: 29.0.3
dev: true
- /jest-matcher-utils/28.1.3:
- resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-matcher-utils/29.0.3:
+ resolution: {integrity: sha512-RsR1+cZ6p1hDV4GSCQTg+9qjeotQCgkaleIKLK7dm+U4V/H2bWedU3RAtLm8+mANzZ7eDV33dMar4pejd7047w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
- jest-diff: 28.1.3
- jest-get-type: 28.0.2
- pretty-format: 28.1.3
+ jest-diff: 29.0.3
+ jest-get-type: 29.0.0
+ pretty-format: 29.0.3
dev: true
- /jest-message-util/28.1.3:
- resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-message-util/29.0.3:
+ resolution: {integrity: sha512-7T8JiUTtDfppojosORAflABfLsLKMLkBHSWkjNQrjIltGoDzNGn7wEPOSfjqYAGTYME65esQzMJxGDjuLBKdOg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/code-frame': 7.18.6
- '@jest/types': 28.1.3
+ '@jest/types': 29.0.3
'@types/stack-utils': 2.0.1
chalk: 4.1.2
graceful-fs: 4.2.10
micromatch: 4.0.5
- pretty-format: 28.1.3
+ pretty-format: 29.0.3
slash: 3.0.0
stack-utils: 2.0.5
dev: true
- /jest-mock/28.1.3:
- resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-mock/29.0.3:
+ resolution: {integrity: sha512-ort9pYowltbcrCVR43wdlqfAiFJXBx8l4uJDsD8U72LgBcetvEp+Qxj1W9ZYgMRoeAo+ov5cnAGF2B6+Oth+ww==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
dev: true
/jest-pnp-resolver/1.2.2_jest-resolve@27.5.1:
@@ -3294,7 +3357,7 @@ packages:
jest-resolve: 27.5.1
dev: true
- /jest-pnp-resolver/1.2.2_jest-resolve@28.1.3:
+ /jest-pnp-resolver/1.2.2_jest-resolve@29.0.3:
resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==}
engines: {node: '>=6'}
peerDependencies:
@@ -3303,7 +3366,7 @@ packages:
jest-resolve:
optional: true
dependencies:
- jest-resolve: 28.1.3
+ jest-resolve: 29.0.3
dev: true
/jest-regex-util/27.5.1:
@@ -3311,17 +3374,17 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dev: true
- /jest-regex-util/28.0.2:
- resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-regex-util/29.0.0:
+ resolution: {integrity: sha512-BV7VW7Sy0fInHWN93MMPtlClweYv2qrSCwfeFWmpribGZtQPWNvRSq9XOVgOEjU1iBGRKXUZil0o2AH7Iy9Lug==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
- /jest-resolve-dependencies/28.1.3:
- resolution: {integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-resolve-dependencies/29.0.3:
+ resolution: {integrity: sha512-KzuBnXqNvbuCdoJpv8EanbIGObk7vUBNt/PwQPPx2aMhlv/jaXpUJsqWYRpP/0a50faMBY7WFFP8S3/CCzwfDw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- jest-regex-util: 28.0.2
- jest-snapshot: 28.1.3
+ jest-regex-util: 29.0.0
+ jest-snapshot: 29.0.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -3342,74 +3405,74 @@ packages:
slash: 3.0.0
dev: true
- /jest-resolve/28.1.3:
- resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-resolve/29.0.3:
+ resolution: {integrity: sha512-toVkia85Y/BPAjJasTC9zIPY6MmVXQPtrCk8SmiheC4MwVFE/CMFlOtMN6jrwPMC6TtNh8+sTMllasFeu1wMPg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.10
- jest-haste-map: 28.1.3
- jest-pnp-resolver: 1.2.2_jest-resolve@28.1.3
- jest-util: 28.1.3
- jest-validate: 28.1.3
+ jest-haste-map: 29.0.3
+ jest-pnp-resolver: 1.2.2_jest-resolve@29.0.3
+ jest-util: 29.0.3
+ jest-validate: 29.0.3
resolve: 1.22.1
resolve.exports: 1.1.0
slash: 3.0.0
dev: true
- /jest-runner/28.1.3:
- resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-runner/29.0.3:
+ resolution: {integrity: sha512-Usu6VlTOZlCZoNuh3b2Tv/yzDpKqtiNAetG9t3kJuHfUyVMNW7ipCCJOUojzKkjPoaN7Bl1f7Buu6PE0sGpQxw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/console': 28.1.3
- '@jest/environment': 28.1.3
- '@jest/test-result': 28.1.3
- '@jest/transform': 28.1.3
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
+ '@jest/console': 29.0.3
+ '@jest/environment': 29.0.3
+ '@jest/test-result': 29.0.3
+ '@jest/transform': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
chalk: 4.1.2
emittery: 0.10.2
graceful-fs: 4.2.10
- jest-docblock: 28.1.1
- jest-environment-node: 28.1.3
- jest-haste-map: 28.1.3
- jest-leak-detector: 28.1.3
- jest-message-util: 28.1.3
- jest-resolve: 28.1.3
- jest-runtime: 28.1.3
- jest-util: 28.1.3
- jest-watcher: 28.1.3
- jest-worker: 28.1.3
+ jest-docblock: 29.0.0
+ jest-environment-node: 29.0.3
+ jest-haste-map: 29.0.3
+ jest-leak-detector: 29.0.3
+ jest-message-util: 29.0.3
+ jest-resolve: 29.0.3
+ jest-runtime: 29.0.3
+ jest-util: 29.0.3
+ jest-watcher: 29.0.3
+ jest-worker: 29.0.3
p-limit: 3.1.0
source-map-support: 0.5.13
transitivePeerDependencies:
- supports-color
dev: true
- /jest-runtime/28.1.3:
- resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-runtime/29.0.3:
+ resolution: {integrity: sha512-12gZXRQ7ozEeEHKTY45a+YLqzNDR/x4c//X6AqwKwKJPpWM8FY4vwn4VQJOcLRS3Nd1fWwgP7LU4SoynhuUMHQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 28.1.3
- '@jest/fake-timers': 28.1.3
- '@jest/globals': 28.1.3
- '@jest/source-map': 28.1.2
- '@jest/test-result': 28.1.3
- '@jest/transform': 28.1.3
- '@jest/types': 28.1.3
+ '@jest/environment': 29.0.3
+ '@jest/fake-timers': 29.0.3
+ '@jest/globals': 29.0.3
+ '@jest/source-map': 29.0.0
+ '@jest/test-result': 29.0.3
+ '@jest/transform': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
chalk: 4.1.2
cjs-module-lexer: 1.2.2
collect-v8-coverage: 1.0.1
- execa: 5.1.1
glob: 7.2.3
graceful-fs: 4.2.10
- jest-haste-map: 28.1.3
- jest-message-util: 28.1.3
- jest-mock: 28.1.3
- jest-regex-util: 28.0.2
- jest-resolve: 28.1.3
- jest-snapshot: 28.1.3
- jest-util: 28.1.3
+ jest-haste-map: 29.0.3
+ jest-message-util: 29.0.3
+ jest-mock: 29.0.3
+ jest-regex-util: 29.0.0
+ jest-resolve: 29.0.3
+ jest-snapshot: 29.0.3
+ jest-util: 29.0.3
slash: 3.0.0
strip-bom: 4.0.0
transitivePeerDependencies:
@@ -3420,36 +3483,37 @@ packages:
resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@types/node': 18.7.9
+ '@types/node': 18.7.18
graceful-fs: 4.2.10
dev: true
- /jest-snapshot/28.1.3:
- resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@babel/core': 7.18.10
- '@babel/generator': 7.18.12
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.10
- '@babel/traverse': 7.18.11
- '@babel/types': 7.18.10
- '@jest/expect-utils': 28.1.3
- '@jest/transform': 28.1.3
- '@jest/types': 28.1.3
- '@types/babel__traverse': 7.18.0
+ /jest-snapshot/29.0.3:
+ resolution: {integrity: sha512-52q6JChm04U3deq+mkQ7R/7uy7YyfVIrebMi6ZkBoDJ85yEjm/sJwdr1P0LOIEHmpyLlXrxy3QP0Zf5J2kj0ew==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ dependencies:
+ '@babel/core': 7.19.0
+ '@babel/generator': 7.19.0
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.0
+ '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.0
+ '@babel/traverse': 7.19.0
+ '@babel/types': 7.19.0
+ '@jest/expect-utils': 29.0.3
+ '@jest/transform': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/babel__traverse': 7.18.1
'@types/prettier': 2.7.0
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0
chalk: 4.1.2
- expect: 28.1.3
+ expect: 29.0.3
graceful-fs: 4.2.10
- jest-diff: 28.1.3
- jest-get-type: 28.0.2
- jest-haste-map: 28.1.3
- jest-matcher-utils: 28.1.3
- jest-message-util: 28.1.3
- jest-util: 28.1.3
+ jest-diff: 29.0.3
+ jest-get-type: 29.0.0
+ jest-haste-map: 29.0.3
+ jest-matcher-utils: 29.0.3
+ jest-message-util: 29.0.3
+ jest-util: 29.0.3
natural-compare: 1.4.0
- pretty-format: 28.1.3
+ pretty-format: 29.0.3
semver: 7.3.7
transitivePeerDependencies:
- supports-color
@@ -3460,21 +3524,21 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 18.7.9
+ '@types/node': 18.7.18
chalk: 4.1.2
- ci-info: 3.3.2
+ ci-info: 3.4.0
graceful-fs: 4.2.10
picomatch: 2.3.1
dev: true
- /jest-util/28.1.3:
- resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-util/29.0.3:
+ resolution: {integrity: sha512-Q0xaG3YRG8QiTC4R6fHjHQPaPpz9pJBEi0AeOE4mQh/FuWOijFjGXMMOfQEaU9i3z76cNR7FobZZUQnL6IyfdQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.18
chalk: 4.1.2
- ci-info: 3.3.2
+ ci-info: 3.4.0
graceful-fs: 4.2.10
picomatch: 2.3.1
dev: true
@@ -3491,29 +3555,29 @@ packages:
pretty-format: 27.5.1
dev: true
- /jest-validate/28.1.3:
- resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-validate/29.0.3:
+ resolution: {integrity: sha512-OebiqqT6lK8cbMPtrSoS3aZP4juID762lZvpf1u+smZnwTEBCBInan0GAIIhv36MxGaJvmq5uJm7dl5gVt+Zrw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 28.1.3
+ '@jest/types': 29.0.3
camelcase: 6.3.0
chalk: 4.1.2
- jest-get-type: 28.0.2
+ jest-get-type: 29.0.0
leven: 3.1.0
- pretty-format: 28.1.3
+ pretty-format: 29.0.3
dev: true
- /jest-watcher/28.1.3:
- resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-watcher/29.0.3:
+ resolution: {integrity: sha512-tQX9lU91A+9tyUQKUMp0Ns8xAcdhC9fo73eqA3LFxP2bSgiF49TNcc+vf3qgGYYK9qRjFpXW9+4RgF/mbxyOOw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/test-result': 28.1.3
- '@jest/types': 28.1.3
- '@types/node': 18.7.9
+ '@jest/test-result': 29.0.3
+ '@jest/types': 29.0.3
+ '@types/node': 18.7.16
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.10.2
- jest-util: 28.1.3
+ jest-util: 29.0.3
string-length: 4.0.2
dev: true
@@ -3521,23 +3585,23 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.7.9
+ '@types/node': 18.7.18
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest-worker/28.1.3:
- resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest-worker/29.0.3:
+ resolution: {integrity: sha512-Tl/YWUugQOjoTYwjKdfJWkSOfhufJHO5LhXTSZC3TRoQKO+fuXnZAdoXXBlpLXKGODBL3OvdUasfDD4PcMe6ng==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.7.9
+ '@types/node': 18.7.16
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest/28.1.3:
- resolution: {integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /jest/29.0.3:
+ resolution: {integrity: sha512-ElgUtJBLgXM1E8L6K1RW1T96R897YY/3lRYqq9uVcPWtP2AAl/nQ16IYDh/FzQOOQ12VEuLdcPU83mbhG2C3PQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -3545,16 +3609,20 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 28.1.3
- '@jest/types': 28.1.3
+ '@jest/core': 29.0.3
+ '@jest/types': 29.0.3
import-local: 3.1.0
- jest-cli: 28.1.3
+ jest-cli: 29.0.3
transitivePeerDependencies:
- '@types/node'
- supports-color
- ts-node
dev: true
+ /js-sdsl/4.1.4:
+ resolution: {integrity: sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==}
+ dev: true
+
/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
dev: true
@@ -3574,9 +3642,9 @@ packages:
argparse: 2.0.1
dev: true
- /jsdom/19.0.0:
- resolution: {integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==}
- engines: {node: '>=12'}
+ /jsdom/20.0.0:
+ resolution: {integrity: sha512-x4a6CKCgx00uCmP+QakBDFXwjAJ69IkkIWHmtmjd3wvXPcdOS44hfX2vqkOQrVrq8l9DhNNADZRXaCEWvgXtVA==}
+ engines: {node: '>=14'}
peerDependencies:
canvas: ^2.5.0
peerDependenciesMeta:
@@ -3597,17 +3665,17 @@ packages:
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.1
- parse5: 6.0.1
- saxes: 5.0.1
+ nwsapi: 2.2.2
+ parse5: 7.1.1
+ saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.0.0
+ tough-cookie: 4.1.2
w3c-hr-time: 1.0.2
w3c-xmlserializer: 3.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
- whatwg-url: 10.0.0
+ whatwg-url: 11.0.0
ws: 8.8.1
xml-name-validator: 4.0.0
transitivePeerDependencies:
@@ -3647,12 +3715,12 @@ packages:
hasBin: true
dev: true
- /jsx-ast-utils/3.3.2:
- resolution: {integrity: sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==}
+ /jsx-ast-utils/3.3.3:
+ resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
engines: {node: '>=4.0'}
dependencies:
array-includes: 3.1.5
- object.assign: 4.1.2
+ object.assign: 4.1.4
dev: true
/kind-of/6.0.3:
@@ -3670,8 +3738,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /leaflet/1.8.0:
- resolution: {integrity: sha512-gwhMjFCQiYs3x/Sf+d49f10ERXaEFCPr+nVTryhAW8DWbMGqJqt9G4XuIaHmFW08zYvhgdzqXGr8AlW8v8dQkA==}
+ /leaflet/1.9.1:
+ resolution: {integrity: sha512-5FcDAMTLAuOq0RisQQbTFatl8Sl4bM0gMrBfuHbl7CYbYJv45BfCS8oU3T644MLjleBq1Ncq541QEA1pqUGTFA==}
dev: true
/leven/3.1.0:
@@ -3905,8 +3973,8 @@ packages:
path-key: 3.1.1
dev: true
- /nwsapi/2.2.1:
- resolution: {integrity: sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==}
+ /nwsapi/2.2.2:
+ resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==}
dev: true
/object-assign/4.1.1:
@@ -3933,13 +4001,23 @@ packages:
object-keys: 1.1.1
dev: true
+ /object.assign/4.1.4:
+ resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ has-symbols: 1.0.3
+ object-keys: 1.1.1
+ dev: true
+
/object.entries/1.1.5:
resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.1
+ es-abstract: 1.20.2
dev: true
/object.fromentries/2.0.5:
@@ -3948,14 +4026,14 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.1
+ es-abstract: 1.20.2
dev: true
/object.hasown/1.1.1:
resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==}
dependencies:
define-properties: 1.1.4
- es-abstract: 1.20.1
+ es-abstract: 1.20.2
dev: true
/object.values/1.1.5:
@@ -4080,8 +4158,10 @@ packages:
lines-and-columns: 1.2.4
dev: true
- /parse5/6.0.1:
- resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
+ /parse5/7.1.1:
+ resolution: {integrity: sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg==}
+ dependencies:
+ entities: 4.4.0
dev: true
/path-exists/3.0.0:
@@ -4150,18 +4230,18 @@ packages:
dependencies:
'@types/eslint': 8.4.5
'@types/prettier': 2.6.3
- '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq
+ '@typescript-eslint/parser': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
common-tags: 1.8.2
dlv: 1.1.3
- eslint: 8.22.0
+ eslint: 8.24.0
indent-string: 4.0.0
lodash.merge: 4.6.2
loglevel-colored-level-prefix: 1.0.0
prettier: 2.7.1
pretty-format: 23.6.0
require-relative: 0.8.7
- typescript: 4.7.4
- vue-eslint-parser: 8.3.0_eslint@8.22.0
+ typescript: 4.8.3
+ vue-eslint-parser: 8.3.0_eslint@8.24.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -4195,12 +4275,11 @@ packages:
react-is: 17.0.2
dev: true
- /pretty-format/28.1.3:
- resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
+ /pretty-format/29.0.3:
+ resolution: {integrity: sha512-cHudsvQr1K5vNVLbvYF/nv3Qy/F/BcEKxGuIeMiVMRHxPOO1RxXooP8g/ZrwAp7Dx+KdMZoOc7NxLHhMrP2f9Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/schemas': 28.1.3
- ansi-regex: 5.0.1
+ '@jest/schemas': 29.0.0
ansi-styles: 5.2.0
react-is: 18.2.0
dev: true
@@ -4230,6 +4309,10 @@ packages:
engines: {node: '>=6'}
dev: true
+ /querystringify/2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+ dev: true
+
/queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
dev: true
@@ -4353,6 +4436,10 @@ packages:
resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==}
dev: true
+ /requires-port/1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ dev: true
+
/resolve-cwd/3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
@@ -4388,7 +4475,7 @@ packages:
resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
hasBin: true
dependencies:
- is-core-module: 2.9.0
+ is-core-module: 2.10.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
dev: true
@@ -4419,9 +4506,9 @@ packages:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
dev: true
- /saxes/5.0.1:
- resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
- engines: {node: '>=10'}
+ /saxes/6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
dependencies:
xmlchars: 2.2.0
dev: true
@@ -4555,7 +4642,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.1
+ es-abstract: 1.20.2
get-intrinsic: 1.1.2
has-symbols: 1.0.3
internal-slot: 1.0.3
@@ -4646,8 +4733,8 @@ packages:
has-flag: 4.0.0
dev: true
- /supports-hyperlinks/2.2.0:
- resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==}
+ /supports-hyperlinks/2.3.0:
+ resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
@@ -4668,7 +4755,7 @@ packages:
engines: {node: '>=8'}
dependencies:
ansi-escapes: 4.3.2
- supports-hyperlinks: 2.2.0
+ supports-hyperlinks: 2.3.0
dev: true
/test-exclude/6.0.0:
@@ -4700,13 +4787,14 @@ packages:
is-number: 7.0.0
dev: true
- /tough-cookie/4.0.0:
- resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==}
+ /tough-cookie/4.1.2:
+ resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==}
engines: {node: '>=6'}
dependencies:
psl: 1.9.0
punycode: 2.1.1
- universalify: 0.1.2
+ universalify: 0.2.0
+ url-parse: 1.5.10
dev: true
/tr46/3.0.0:
@@ -4740,147 +4828,75 @@ packages:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
- /tsutils/3.21.0_typescript@4.7.4:
+ /tsutils/3.21.0_typescript@4.8.3:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 4.7.4
+ typescript: 4.8.3
dev: true
- /turbo-android-arm64/1.4.3:
- resolution: {integrity: sha512-ZUvdoEHJkTkOFOO9PKWYrdONDBVqkNsvwEMufTVf07RXgqmbXDPkznzT4hcQm6xXyqWqJdjgSAMdlm+2nNE1Og==}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-darwin-64/1.4.3:
- resolution: {integrity: sha512-gapoVm5qbu2TJS4lJ6fM3o2eAkLyXSxHihw/4NRAYmwHCH3at1/cIAnRcctB/HLL3ZaB/p3HKb8mnI7k6xNHOw==}
+ /turbo-darwin-64/1.5.3:
+ resolution: {integrity: sha512-MBS8b/3DuMY6v3ljEX9qssHGQXnI4VDWLqvQ6FGfZFMp8lqa7mfoXv1U/MNR9OhSczaftsIS1e9mnD9m/qv7TQ==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-darwin-arm64/1.4.3:
- resolution: {integrity: sha512-XUe6FTsHamEH7FfNslYYO04yecAaguhZuwW4kE9B/BAP8MUYsmVqONauLPyE/YqM6pf2K0xwVe+RlEGf53CWbg==}
+ /turbo-darwin-arm64/1.5.3:
+ resolution: {integrity: sha512-XNSV6SaxS8dAvGx2BF3H7MsKZ4zchj2kP/eXTss/vUcSRsS+zx0urZcEgxeGUeMk7V7fJq/5Ow7thApNojpwpw==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-freebsd-64/1.4.3:
- resolution: {integrity: sha512-1CAjXmDClgMXdWZXreUfAbGBB2WB9TZHfJIdsgnDqt4fIcFGChknzYqc+Fj3tGHAczMpinGjBbWIzFuxOq/ofQ==}
+ /turbo-linux-64/1.5.3:
+ resolution: {integrity: sha512-YhYu50CUvy5m80l6dEXEgC3CvjjTelQb14fknAzIXoKztbWhBZqUCucR6jLRZpKgODwP4Fo4LUzz478EMwqy/Q==}
cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-freebsd-arm64/1.4.3:
- resolution: {integrity: sha512-j5C7j/vwabPKpr5d6YlLgHGHBZCOcXj3HdkBshDHTQ0wghH0NuCUUaesYxI3wva/4/Ec0dhIrb20Laa/HMxXLA==}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-linux-32/1.4.3:
- resolution: {integrity: sha512-vnc+StXIoQEnxIU43j7rEz/J+v+RV4dbUdUolBq0k9gkUV8KMCcqPkIa753K47E2KLNGKXMaYDI6AHQX1GAQZg==}
- cpu: [ia32]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-64/1.4.3:
- resolution: {integrity: sha512-KAUeIa8Ejt6BLrBGbVurlrjDxqh62tu75D4cqKqKfzWspcbEtmdqlV6qthXfm8SlzGSNuQXX0+qXEWds2FIZXg==}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-linux-arm/1.4.3:
- resolution: {integrity: sha512-zZNoHUK5ioFyxAngh8tHe763Dzb22ne3LJkaZn0ExkFHJtWClWv536lPcDuQPpIH9W9iz5OwPKtN32DNpNwk8A==}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-linux-arm64/1.4.3:
- resolution: {integrity: sha512-rzB7w+RHCQkKr8aDxxozv/IzdN976CYyBiRocSf9QGU73uyAg8pCo3i0MiENSRjDC+tUbdbu2lEUwGXf9ziB9Q==}
+ /turbo-linux-arm64/1.5.3:
+ resolution: {integrity: sha512-JjJjxy0kkr/xAWAAE8t7UaTBc3GUc5Tz/Bupbve2VzG0w75md0LqXUV34WpyxMiNTNLmK8Dq7bIczG6OkJ29xQ==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-mips64le/1.4.3:
- resolution: {integrity: sha512-Ztr1BM5NiUsHWjB7zpkP2RpRDA/fjbLaCbkyfyGlLmVkrSkh05NFBD03IWs2LSLy/wb6vRpL3MQ4FKcb97Tn8w==}
- cpu: [mipsel]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-linux-ppc64le/1.4.3:
- resolution: {integrity: sha512-tJaFJWxwfy/iLd69VHZj6JcXy9hO8LQ+ZUOna/p/wiy5WrFVgEYlD+4gfECfRZ+52EIelMgXl97vACaN1WMhLw==}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-windows-32/1.4.3:
- resolution: {integrity: sha512-w9LyYd+DW3PYFXu9vQiie5lfdqmVIKLV0h181C49hempkIXfgQAosXfaugYWDwBc0GEBoBIQB0vGQKE7gt5nzA==}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /turbo-windows-64/1.4.3:
- resolution: {integrity: sha512-qPCqemxxOrXyqqig3fVQozRkOwo5oJSsQ3FTZE5YlNu2NwwWvY1mC0X4WTZIDsbj4oHqr0riqC7RGKbjQm1IIQ==}
+ /turbo-windows-64/1.5.3:
+ resolution: {integrity: sha512-PS7+Isy7OX9xWWvtg2FKmh/eN4fTNR2r6RW5m+b+zR7t04QLWYOya1R8CeqgA6GyeFpn4KUxC+AeZ0wOi8RSPw==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-arm64/1.4.3:
- resolution: {integrity: sha512-djnOOBjw33AnUx2SR6TMOpDr3nKLnVD+HcZvnQz70HyE331AKWjBoEE4rtUOteLAfViWAp3afbiljFSOnbU00Q==}
+ /turbo-windows-arm64/1.5.3:
+ resolution: {integrity: sha512-DQzjFbPRd/Db5kkJtCER5DNcbY4ez5Bh8usemNlPZQ7I/5XwEUl9Rn3ss2LJsiv/pR7PkY92TUvmyFtBnqao8Q==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo/1.4.3:
- resolution: {integrity: sha512-g08eD2HdO/XW5xGHnXr0cXGiWnrgFBI6pN/3u0EOTeerKAsWIZU0ZrpSnl3whRtImeBB/gQu7Eu1waM2VOxzgw==}
+ /turbo/1.5.3:
+ resolution: {integrity: sha512-/94cswfhXr6wWD6CFyF7E8bjEdjar4O+gzCJ3d49X9t9u9aDYFoQH/TlYTSNbAwXYiGqzJoodhf3kXRyrAiqSg==}
hasBin: true
requiresBuild: true
optionalDependencies:
- turbo-android-arm64: 1.4.3
- turbo-darwin-64: 1.4.3
- turbo-darwin-arm64: 1.4.3
- turbo-freebsd-64: 1.4.3
- turbo-freebsd-arm64: 1.4.3
- turbo-linux-32: 1.4.3
- turbo-linux-64: 1.4.3
- turbo-linux-arm: 1.4.3
- turbo-linux-arm64: 1.4.3
- turbo-linux-mips64le: 1.4.3
- turbo-linux-ppc64le: 1.4.3
- turbo-windows-32: 1.4.3
- turbo-windows-64: 1.4.3
- turbo-windows-arm64: 1.4.3
+ turbo-darwin-64: 1.5.3
+ turbo-darwin-arm64: 1.5.3
+ turbo-linux-64: 1.5.3
+ turbo-linux-arm64: 1.5.3
+ turbo-windows-64: 1.5.3
+ turbo-windows-arm64: 1.5.3
dev: true
/type-check/0.3.2:
@@ -4917,8 +4933,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /typescript/4.7.4:
- resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==}
+ /typescript/4.8.3:
+ resolution: {integrity: sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
@@ -4932,13 +4948,13 @@ packages:
which-boxed-primitive: 1.0.2
dev: true
- /universalify/0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ /universalify/0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
engines: {node: '>= 4.0.0'}
dev: true
- /update-browserslist-db/1.0.5_browserslist@4.21.3:
- resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==}
+ /update-browserslist-db/1.0.7_browserslist@4.21.3:
+ resolution: {integrity: sha512-iN/XYesmZ2RmmWAiI4Z5rq0YqSiv0brj9Ce9CfhNE4xIW2h+MFxcgkxIzZ+ShkFPUkjU3gQ+3oypadD3RAMtrg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -4954,8 +4970,11 @@ packages:
punycode: 2.1.1
dev: true
- /v8-compile-cache/2.3.0:
- resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
+ /url-parse/1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+ dependencies:
+ querystringify: 2.2.0
+ requires-port: 1.0.0
dev: true
/v8-to-istanbul/9.0.1:
@@ -4974,17 +4993,17 @@ packages:
spdx-expression-parse: 3.0.1
dev: true
- /vue-eslint-parser/8.3.0_eslint@8.22.0:
+ /vue-eslint-parser/8.3.0_eslint@8.24.0:
resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.4
- eslint: 8.22.0
+ eslint: 8.24.0
eslint-scope: 7.1.1
eslint-visitor-keys: 3.3.0
- espree: 9.3.3
+ espree: 9.4.0
esquery: 1.4.0
lodash: 4.17.21
semver: 7.3.7
@@ -5028,14 +5047,6 @@ packages:
engines: {node: '>=12'}
dev: true
- /whatwg-url/10.0.0:
- resolution: {integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==}
- engines: {node: '>=12'}
- dependencies:
- tr46: 3.0.0
- webidl-conversions: 7.0.0
- dev: true
-
/whatwg-url/11.0.0:
resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
engines: {node: '>=12'}