Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
ydl-packages
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
许振钊
ydl-packages
Commits
1b75b6ab
Commit
1b75b6ab
authored
Aug 19, 2022
by
xuzhenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(custom): add babel to transform mathjs
parent
e8f0d8f8
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1116 additions
and
98 deletions
+1116
-98
babel.config.json
packages/toolkit/babel.config.json
+16
-0
package.json
packages/toolkit/package.json
+3
-0
rollup.config.js
packages/toolkit/rollup.config.js
+9
-3
Payment.ts
packages/toolkit/src/Payment/Payment.ts
+0
-0
index.ts
packages/toolkit/src/index.ts
+2
-2
tsconfig.json
packages/toolkit/tsconfig.json
+4
-4
pnpm-lock.yaml
pnpm-lock.yaml
+1082
-89
No files found.
packages/toolkit/babel.config.json
0 → 100644
View file @
1b75b6ab
{
"presets"
:
[
[
"@babel/preset-env"
,
{
"useBuiltIns"
:
"entry"
,
"corejs"
:
"3.22"
,
"targets"
:
{
"chrome"
:
"58"
,
"ie"
:
"11"
}
}
]
]
}
\ No newline at end of file
packages/toolkit/package.json
View file @
1b75b6ab
...
@@ -38,7 +38,10 @@
...
@@ -38,7 +38,10 @@
"regenerator-runtime"
:
"^0.13.9"
"regenerator-runtime"
:
"^0.13.9"
},
},
"devDependencies"
:
{
"devDependencies"
:
{
"@babel/core"
:
"^7.18.10"
,
"@babel/preset-env"
:
"^7.18.10"
,
"@jest/globals"
:
"^28.1.3"
,
"@jest/globals"
:
"^28.1.3"
,
"@rollup/plugin-babel"
:
"^5.3.1"
,
"@rollup/plugin-commonjs"
:
"^22.0.2"
,
"@rollup/plugin-commonjs"
:
"^22.0.2"
,
"@rollup/plugin-json"
:
"^4.1.0"
,
"@rollup/plugin-json"
:
"^4.1.0"
,
"@rollup/plugin-node-resolve"
:
"^13.3.0"
,
"@rollup/plugin-node-resolve"
:
"^13.3.0"
,
...
...
packages/toolkit/rollup.config.js
View file @
1b75b6ab
...
@@ -2,6 +2,7 @@ import typescript from 'rollup-plugin-typescript2'
...
@@ -2,6 +2,7 @@ import typescript from 'rollup-plugin-typescript2'
import
json
from
'@rollup/plugin-json'
;
import
json
from
'@rollup/plugin-json'
;
import
commonjs
from
'@rollup/plugin-commonjs'
;
import
commonjs
from
'@rollup/plugin-commonjs'
;
import
{
nodeResolve
}
from
'@rollup/plugin-node-resolve'
;
import
{
nodeResolve
}
from
'@rollup/plugin-node-resolve'
;
import
{
babel
}
from
'@rollup/plugin-babel'
;
export
default
[
export
default
[
{
{
...
@@ -14,6 +15,9 @@ export default [
...
@@ -14,6 +15,9 @@ export default [
typescript
()
typescript
()
]
]
},
},
/**
* umd 版本兼容es5
*/
{
{
input
:
'src/index.ts'
,
input
:
'src/index.ts'
,
output
:
{
output
:
{
...
@@ -23,11 +27,12 @@ export default [
...
@@ -23,11 +27,12 @@ export default [
},
},
plugins
:
[
plugins
:
[
typescript
(),
typescript
(),
commonjs
(),
json
(),
nodeResolve
({
nodeResolve
({
dedupe
:
[
'mathjs'
]
dedupe
:
[
'mathjs'
]
})
}),
commonjs
(),
json
(),
babel
()
]
]
}
}
]
]
\ No newline at end of file
packages/toolkit/src/Payment/Payment.ts
View file @
1b75b6ab
packages/toolkit/src/index.ts
View file @
1b75b6ab
export
{
Payment
}
from
'./Payment/Payment'
export
{
Payment
}
from
'./Payment/Payment'
\ No newline at end of file
\ No newline at end of file
packages/toolkit/tsconfig.json
View file @
1b75b6ab
...
@@ -11,8 +11,8 @@
...
@@ -11,8 +11,8 @@
//
"disableReferencedProjectLoad"
:
true
,
/*
Reduce
the
number
of
projects
loaded
automatically
by
TypeScript.
*/
//
"disableReferencedProjectLoad"
:
true
,
/*
Reduce
the
number
of
projects
loaded
automatically
by
TypeScript.
*/
/*
Language
and
Environment
*/
/*
Language
and
Environment
*/
"target"
:
"es
5
"
,
/*
Set
the
JavaScript
language
version
for
emitted
JavaScript
and
include
compatible
library
declarations.
*/
"target"
:
"es
6
"
,
/*
Set
the
JavaScript
language
version
for
emitted
JavaScript
and
include
compatible
library
declarations.
*/
"lib"
:
[
"es
5
"
,
"DOM"
],
/*
Specify
a
set
of
bundled
library
declaration
files
that
describe
the
target
runtime
environment.
*/
"lib"
:
[
"es
next
"
,
"DOM"
],
/*
Specify
a
set
of
bundled
library
declaration
files
that
describe
the
target
runtime
environment.
*/
//
"jsx"
:
"preserve"
,
/*
Specify
what
JSX
code
is
generated.
*/
//
"jsx"
:
"preserve"
,
/*
Specify
what
JSX
code
is
generated.
*/
//
"experimentalDecorators"
:
true
,
/*
Enable
experimental
support
for
TC
39
stage
2
draft
decorators.
*/
//
"experimentalDecorators"
:
true
,
/*
Enable
experimental
support
for
TC
39
stage
2
draft
decorators.
*/
//
"emitDecoratorMetadata"
:
true
,
/*
Emit
design-type
metadata
for
decorated
declarations
in
source
files.
*/
//
"emitDecoratorMetadata"
:
true
,
/*
Emit
design-type
metadata
for
decorated
declarations
in
source
files.
*/
...
@@ -54,9 +54,9 @@
...
@@ -54,9 +54,9 @@
"outDir"
:
"./dist"
,
/*
Specify
an
output
folder
for
all
emitted
files.
*/
"outDir"
:
"./dist"
,
/*
Specify
an
output
folder
for
all
emitted
files.
*/
//
"removeComments"
:
true
,
/*
Disable
emitting
comments.
*/
//
"removeComments"
:
true
,
/*
Disable
emitting
comments.
*/
//
"noEmit"
:
true
,
/*
Disable
emitting
files
from
a
compilation.
*/
//
"noEmit"
:
true
,
/*
Disable
emitting
files
from
a
compilation.
*/
//
"importHelpers"
:
true
,
/*
Allow
importing
helper
functions
from
tslib
once
per
project
,
instead
of
including
them
per-file.
*/
"importHelpers"
:
true
,
/*
Allow
importing
helper
functions
from
tslib
once
per
project
,
instead
of
including
them
per-file.
*/
//
"importsNotUsedAsValues"
:
"remove"
,
/*
Specify
emit/checking
behavior
for
imports
that
are
only
used
for
types.
*/
//
"importsNotUsedAsValues"
:
"remove"
,
/*
Specify
emit/checking
behavior
for
imports
that
are
only
used
for
types.
*/
//
"downlevelIteration"
:
true
,
/*
Emit
more
compliant
,
but
verbose
and
less
performant
JavaScript
for
iteration.
*/
"downlevelIteration"
:
true
,
/*
Emit
more
compliant
,
but
verbose
and
less
performant
JavaScript
for
iteration.
*/
//
"sourceRoot"
:
""
,
/*
Specify
the
root
path
for
debuggers
to
find
the
reference
source
code.
*/
//
"sourceRoot"
:
""
,
/*
Specify
the
root
path
for
debuggers
to
find
the
reference
source
code.
*/
//
"mapRoot"
:
""
,
/*
Specify
the
location
where
debugger
should
locate
map
files
instead
of
generated
locations.
*/
//
"mapRoot"
:
""
,
/*
Specify
the
location
where
debugger
should
locate
map
files
instead
of
generated
locations.
*/
//
"inlineSourceMap"
:
true
,
/*
Include
sourcemap
files
inside
the
emitted
JavaScript.
*/
//
"inlineSourceMap"
:
true
,
/*
Include
sourcemap
files
inside
the
emitted
JavaScript.
*/
...
...
pnpm-lock.yaml
View file @
1b75b6ab
...
@@ -17,7 +17,10 @@ importers:
...
@@ -17,7 +17,10 @@ importers:
packages/toolkit
:
packages/toolkit
:
specifiers
:
specifiers
:
'
@babel/core'
:
^7.18.10
'
@babel/preset-env'
:
^7.18.10
'
@jest/globals'
:
^28.1.3
'
@jest/globals'
:
^28.1.3
'
@rollup/plugin-babel'
:
^5.3.1
'
@rollup/plugin-commonjs'
:
^22.0.2
'
@rollup/plugin-commonjs'
:
^22.0.2
'
@rollup/plugin-json'
:
^4.1.0
'
@rollup/plugin-json'
:
^4.1.0
'
@rollup/plugin-node-resolve'
:
^13.3.0
'
@rollup/plugin-node-resolve'
:
^13.3.0
...
@@ -53,7 +56,10 @@ importers:
...
@@ -53,7 +56,10 @@ importers:
qs
:
6.11.0
qs
:
6.11.0
regenerator-runtime
:
0.13.9
regenerator-runtime
:
0.13.9
devDependencies
:
devDependencies
:
'
@babel/core'
:
7.18.10
'
@babel/preset-env'
:
7.18.10_@babel+core@7.18.10
'
@jest/globals'
:
28.1.3
'
@jest/globals'
:
28.1.3
'
@rollup/plugin-babel'
:
5.3.1_4ce4roknt3navmu3q3hwcigmqq
'
@rollup/plugin-commonjs'
:
22.0.2_rollup@2.78.1
'
@rollup/plugin-commonjs'
:
22.0.2_rollup@2.78.1
'
@rollup/plugin-json'
:
4.1.0_rollup@2.78.1
'
@rollup/plugin-json'
:
4.1.0_rollup@2.78.1
'
@rollup/plugin-node-resolve'
:
13.3.0_rollup@2.78.1
'
@rollup/plugin-node-resolve'
:
13.3.0_rollup@2.78.1
...
@@ -67,7 +73,7 @@ importers:
...
@@ -67,7 +73,7 @@ importers:
jest-environment-jsdom
:
28.1.3
jest-environment-jsdom
:
28.1.3
rollup
:
2.78.1
rollup
:
2.78.1
rollup-plugin-typescript2
:
0.32.1_accrhai6qopda76wnqb3pkewpq
rollup-plugin-typescript2
:
0.32.1_accrhai6qopda76wnqb3pkewpq
ts-jest
:
28.0.7_
bi2kohzqnxavgozw3csgny5hju
ts-jest
:
28.0.7_
m5noci3hdgjcbp5i3skppiufvq
ts-node
:
10.9.1_cvilj4l3ytrlnvtlqw3tscihve
ts-node
:
10.9.1_cvilj4l3ytrlnvtlqw3tscihve
tslib
:
2.4.0
tslib
:
2.4.0
typedoc
:
0.23.10_typescript@4.7.4
typedoc
:
0.23.10_typescript@4.7.4
...
@@ -128,6 +134,21 @@ packages:
...
@@ -128,6 +134,21 @@ packages:
jsesc
:
2.5.2
jsesc
:
2.5.2
dev
:
true
dev
:
true
/@babel/helper-annotate-as-pure/7.18.6
:
resolution
:
{
integrity
:
sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/types'
:
7.18.10
dev
:
true
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9
:
resolution
:
{
integrity
:
sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/helper-explode-assignable-expression'
:
7.18.6
'
@babel/types'
:
7.18.10
dev
:
true
/@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10
:
/@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==
}
resolution
:
{
integrity
:
sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
...
@@ -141,113 +162,849 @@ packages:
...
@@ -141,113 +162,849 @@ packages:
semver
:
6.3.0
semver
:
6.3.0
dev
:
true
dev
:
true
/@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-annotate-as-pure'
:
7.18.6
'
@babel/helper-environment-visitor'
:
7.18.9
'
@babel/helper-function-name'
:
7.18.9
'
@babel/helper-member-expression-to-functions'
:
7.18.9
'
@babel/helper-optimise-call-expression'
:
7.18.6
'
@babel/helper-replace-supers'
:
7.18.9
'
@babel/helper-split-export-declaration'
:
7.18.6
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-annotate-as-pure'
:
7.18.6
regexpu-core
:
5.1.0
dev
:
true
/@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==
}
peerDependencies
:
'
@babel/core'
:
^7.4.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-compilation-targets'
:
7.18.9_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
debug
:
4.3.4
lodash.debounce
:
4.0.8
resolve
:
1.22.1
semver
:
6.3.0
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/helper-environment-visitor/7.18.9
:
/@babel/helper-environment-visitor/7.18.9
:
resolution
:
{
integrity
:
sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
}
resolution
:
{
integrity
:
sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
dev
:
true
dev
:
true
/@babel/helper-function-name/7.18.9
:
/@babel/helper-explode-assignable-expression/7.18.6
:
resolution
:
{
integrity
:
sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==
}
resolution
:
{
integrity
:
sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/types'
:
7.18.10
dev
:
true
/@babel/helper-function-name/7.18.9
:
resolution
:
{
integrity
:
sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/template'
:
7.18.10
'
@babel/types'
:
7.18.10
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
dev
:
true
/@babel/helper-member-expression-to-functions/7.18.9
:
resolution
:
{
integrity
:
sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/types'
:
7.18.10
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
dev
:
true
/@babel/helper-module-transforms/7.18.9
:
resolution
:
{
integrity
:
sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==
}
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/template'
:
7.18.10
'
@babel/traverse'
:
7.18.11
'
@babel/types'
:
7.18.10
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/helper-optimise-call-expression/7.18.6
:
resolution
:
{
integrity
:
sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/types'
:
7.18.10
dev
:
true
/@babel/helper-plugin-utils/7.18.9
:
resolution
:
{
integrity
:
sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==
}
engines
:
{
node
:
'
>=6.9.0'
}
dev
:
true
/@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-annotate-as-pure'
:
7.18.6
'
@babel/helper-environment-visitor'
:
7.18.9
'
@babel/helper-wrap-function'
:
7.18.11
'
@babel/types'
:
7.18.10
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/helper-replace-supers/7.18.9
:
resolution
:
{
integrity
:
sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/helper-environment-visitor'
:
7.18.9
'
@babel/helper-member-expression-to-functions'
:
7.18.9
'
@babel/helper-optimise-call-expression'
:
7.18.6
'
@babel/traverse'
:
7.18.11
'
@babel/types'
:
7.18.10
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/helper-simple-access/7.18.6
:
resolution
:
{
integrity
:
sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/types'
:
7.18.10
dev
:
true
/@babel/helper-skip-transparent-expression-wrappers/7.18.9
:
resolution
:
{
integrity
:
sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/types'
:
7.18.10
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
dev
:
true
/@babel/helper-string-parser/7.18.10
:
resolution
:
{
integrity
:
sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==
}
engines
:
{
node
:
'
>=6.9.0'
}
dev
:
true
/@babel/helper-validator-identifier/7.18.6
:
resolution
:
{
integrity
:
sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==
}
engines
:
{
node
:
'
>=6.9.0'
}
dev
:
true
/@babel/helper-validator-option/7.18.6
:
resolution
:
{
integrity
:
sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
}
engines
:
{
node
:
'
>=6.9.0'
}
dev
:
true
/@babel/helper-wrap-function/7.18.11
:
resolution
:
{
integrity
:
sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/helper-function-name'
:
7.18.9
'
@babel/template'
:
7.18.10
'
@babel/traverse'
:
7.18.11
'
@babel/types'
:
7.18.10
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/helpers/7.18.9
:
resolution
:
{
integrity
:
sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/template'
:
7.18.10
'
@babel/traverse'
:
7.18.11
'
@babel/types'
:
7.18.10
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/highlight/7.18.6
:
resolution
:
{
integrity
:
sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/helper-validator-identifier'
:
7.18.6
chalk
:
2.4.2
js-tokens
:
4.0.0
dev
:
true
/@babel/parser/7.18.11
:
resolution
:
{
integrity
:
sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==
}
engines
:
{
node
:
'
>=6.0.0'
}
hasBin
:
true
dependencies
:
'
@babel/types'
:
7.18.10
dev
:
true
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.13.0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-skip-transparent-expression-wrappers'
:
7.18.9
'
@babel/plugin-proposal-optional-chaining'
:
7.18.9_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-environment-visitor'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-remap-async-to-generator'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-syntax-async-generators'
:
7.8.4_@babel+core@7.18.10
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-create-class-features-plugin'
:
7.18.9_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.12.0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-create-class-features-plugin'
:
7.18.9_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/plugin-syntax-class-static-block'
:
7.14.5_@babel+core@7.18.10
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==
}
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/plugin-syntax-dynamic-import'
:
7.8.3_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==
}
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/plugin-syntax-export-namespace-from'
:
7.8.3_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==
}
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/plugin-syntax-json-strings'
:
7.8.3_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==
}
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/plugin-syntax-logical-assignment-operators'
:
7.10.4_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
}
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/plugin-syntax-nullish-coalescing-operator'
:
7.8.3_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==
}
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/plugin-syntax-numeric-separator'
:
7.10.4_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/compat-data'
:
7.18.8
'
@babel/core'
:
7.18.10
'
@babel/helper-compilation-targets'
:
7.18.9_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/plugin-syntax-object-rest-spread'
:
7.8.3_@babel+core@7.18.10
'
@babel/plugin-transform-parameters'
:
7.18.8_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==
}
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/plugin-syntax-optional-catch-binding'
:
7.8.3_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==
}
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/helper-skip-transparent-expression-wrappers'
:
7.18.9
'
@babel/plugin-syntax-optional-chaining'
:
7.8.3_@babel+core@7.18.10
dev
:
true
/@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-create-class-features-plugin'
:
7.18.9_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-annotate-as-pure'
:
7.18.6
'
@babel/helper-create-class-features-plugin'
:
7.18.9_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/plugin-syntax-private-property-in-object'
:
7.14.5_@babel+core@7.18.10
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
}
engines
:
{
node
:
'
>=4'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-create-regexp-features-plugin'
:
7.18.6_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=
}
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
dev
:
true
/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-AolkqbqA28CUyRXEh618TnpmRlo=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==
}
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
dev
:
true
/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-ypHvRjA1MESLkGZSusLp/plB9pk=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0=
}
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
dev
:
true
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=
}
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
dev
:
true
/@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.10
:
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
dev
:
true
/@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==
}
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
dev
:
true
/@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-module-imports'
:
7.18.6
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-remap-async-to-generator'
:
7.18.9_@babel+core@7.18.10
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==
}
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
dev
:
true
/@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==
}
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
dev
:
true
/@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-annotate-as-pure'
:
7.18.6
'
@babel/helper-environment-visitor'
:
7.18.9
'
@babel/helper-function-name'
:
7.18.9
'
@babel/helper-optimise-call-expression'
:
7.18.6
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-replace-supers'
:
7.18.9
'
@babel/helper-split-export-declaration'
:
7.18.6
globals
:
11.12.0
transitivePeerDependencies
:
-
supports-color
dev
:
true
/@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==
}
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
dev
:
true
/@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==
}
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
dev
:
true
/@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-create-regexp-features-plugin'
:
7.18.6_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==
}
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
dev
:
true
/@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-builder-binary-assignment-operator-visitor'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
}
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
dev
:
true
/@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-compilation-targets'
:
7.18.9_@babel+core@7.18.10
'
@babel/helper-function-name'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
/@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/
templat
e'
:
7.18.10
'
@babel/
cor
e'
:
7.18.10
'
@babel/
types'
:
7.18.10
'
@babel/
helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/
helper-hoist-variables/7.18.6
:
/@babel/
plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-
UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q
==
}
resolution
:
{
integrity
:
sha512-
qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA
==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/types'
:
7.18.10
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/
helper-module-imports/7.18.6
:
/@babel/
plugin-transform-modules-amd/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-
0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA
==
}
resolution
:
{
integrity
:
sha512-
Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg
==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/types'
:
7.18.10
'
@babel/core'
:
7.18.10
'
@babel/helper-module-transforms'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
babel-plugin-dynamic-import-node
:
2.3.3
transitivePeerDependencies
:
-
supports-color
dev
:
true
dev
:
true
/@babel/
helper-module-transforms/7.18.9
:
/@babel/
plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-
KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g
==
}
resolution
:
{
integrity
:
sha512-
Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q
==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/helper-environment-visitor'
:
7.18.9
'
@babel/core'
:
7.18.10
'
@babel/helper-module-imports'
:
7.18.6
'
@babel/helper-module-transforms'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-simple-access'
:
7.18.6
'
@babel/helper-simple-access'
:
7.18.6
'
@babel/helper-split-export-declaration'
:
7.18.6
babel-plugin-dynamic-import-node
:
2.3.3
'
@babel/helper-validator-identifier'
:
7.18.6
'
@babel/template'
:
7.18.10
'
@babel/traverse'
:
7.18.11
'
@babel/types'
:
7.18.10
transitivePeerDependencies
:
transitivePeerDependencies
:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/@babel/helper-plugin-utils/7.18.9
:
/@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==
}
resolution
:
{
integrity
:
sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==
}
engines
:
{
node
:
'
>=6.9.0'
}
dev
:
true
/@babel/helper-simple-access/7.18.6
:
resolution
:
{
integrity
:
sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/types'
:
7.18.10
'
@babel/core'
:
7.18.10
'
@babel/helper-hoist-variables'
:
7.18.6
'
@babel/helper-module-transforms'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-validator-identifier'
:
7.18.6
babel-plugin-dynamic-import-node
:
2.3.3
transitivePeerDependencies
:
-
supports-color
dev
:
true
dev
:
true
/@babel/
helper-split-export-declaration/7.18.6
:
/@babel/
plugin-transform-modules-umd/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-
bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA
==
}
resolution
:
{
integrity
:
sha512-
dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ
==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/types'
:
7.18.10
'
@babel/core'
:
7.18.10
dev
:
true
'
@babel/helper-module-transforms'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
/@babel/helper-string-parser/7.18.10
:
transitivePeerDependencies
:
resolution
:
{
integrity
:
sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==
}
-
supports-color
engines
:
{
node
:
'
>=6.9.0'
}
dev
:
true
dev
:
true
/@babel/
helper-validator-identifier/7.18.6
:
/@babel/
plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-
MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9
g==
}
resolution
:
{
integrity
:
sha512-
UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYh
g==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-create-regexp-features-plugin'
:
7.18.6_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/
helper-validator-option/7.18.6
:
/@babel/
plugin-transform-new-target/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-
XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQ
w==
}
resolution
:
{
integrity
:
sha512-
DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXR
w==
}
engines
:
{
node
:
'
>=6.9.0'
}
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
dev
:
true
dev
:
true
/@babel/
helpers/7.18.9
:
/@babel/
plugin-transform-object-super/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-
Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ
==
}
resolution
:
{
integrity
:
sha512-
uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA
==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/
templat
e'
:
7.18.10
'
@babel/
cor
e'
:
7.18.10
'
@babel/
traverse'
:
7.18.11
'
@babel/
helper-plugin-utils'
:
7.18.9
'
@babel/
types'
:
7.18.10
'
@babel/
helper-replace-supers'
:
7.18.9
transitivePeerDependencies
:
transitivePeerDependencies
:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/@babel/
highlight/7.18.6
:
/@babel/
plugin-transform-parameters/7.18.8_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-
u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3
g==
}
resolution
:
{
integrity
:
sha512-
ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkF
g==
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
dependencies
:
'
@babel/helper-validator-identifier'
:
7.18.6
chalk
:
2.4.2
js-tokens
:
4.0.0
dev
:
true
/@babel/parser/7.18.11
:
resolution
:
{
integrity
:
sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==
}
engines
:
{
node
:
'
>=6.0.0'
}
hasBin
:
true
dependencies
:
'
@babel/types'
:
7.18.10
dev
:
true
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
...
@@ -255,8 +1012,9 @@ packages:
...
@@ -255,8 +1012,9 @@ packages:
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.10
:
/@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo=
}
resolution
:
{
integrity
:
sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
...
@@ -264,17 +1022,20 @@ packages:
...
@@ -264,17 +1022,20 @@ packages:
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10
:
/@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=
}
resolution
:
{
integrity
:
sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
regenerator-transform
:
0.15.0
dev
:
true
dev
:
true
/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.10
:
/@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=
}
resolution
:
{
integrity
:
sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
...
@@ -282,8 +1043,9 @@ packages:
...
@@ -282,8 +1043,9 @@ packages:
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10
:
/@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=
}
resolution
:
{
integrity
:
sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
...
@@ -291,17 +1053,20 @@ packages:
...
@@ -291,17 +1053,20 @@ packages:
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10
:
/@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-ypHvRjA1MESLkGZSusLp/plB9pk=
}
resolution
:
{
integrity
:
sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-skip-transparent-expression-wrappers'
:
7.18.9
dev
:
true
dev
:
true
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10
:
/@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=
}
resolution
:
{
integrity
:
sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
...
@@ -309,8 +1074,9 @@ packages:
...
@@ -309,8 +1074,9 @@ packages:
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10
:
/@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=
}
resolution
:
{
integrity
:
sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
...
@@ -318,8 +1084,9 @@ packages:
...
@@ -318,8 +1084,9 @@ packages:
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10
:
/@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=
}
resolution
:
{
integrity
:
sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
...
@@ -327,8 +1094,9 @@ packages:
...
@@ -327,8 +1094,9 @@ packages:
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10
:
/@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=
}
resolution
:
{
integrity
:
sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
...
@@ -336,33 +1104,114 @@ packages:
...
@@ -336,33 +1104,114 @@ packages:
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10
:
/@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=
}
resolution
:
{
integrity
:
sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/core'
:
7.18.10
'
@babel/helper-create-regexp-features-plugin'
:
7.18.6_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
dev
:
true
dev
:
true
/@babel/p
lugin-syntax-top-level-await/7.14.5
_@babel+core@7.18.10
:
/@babel/p
reset-env/7.18.10
_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha
1-wc/a3DWmRiQAAfBhOCR7dBw02Uw
=
}
resolution
:
{
integrity
:
sha
512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA=
=
}
engines
:
{
node
:
'
>=6.9.0'
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/compat-data'
:
7.18.8
'
@babel/core'
:
7.18.10
'
@babel/core'
:
7.18.10
'
@babel/helper-compilation-targets'
:
7.18.9_@babel+core@7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-validator-option'
:
7.18.6
'
@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-proposal-async-generator-functions'
:
7.18.10_@babel+core@7.18.10
'
@babel/plugin-proposal-class-properties'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-proposal-class-static-block'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-proposal-dynamic-import'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-proposal-export-namespace-from'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-proposal-json-strings'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-proposal-logical-assignment-operators'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-proposal-nullish-coalescing-operator'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-proposal-numeric-separator'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-proposal-object-rest-spread'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-proposal-optional-catch-binding'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-proposal-optional-chaining'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-proposal-private-methods'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-proposal-private-property-in-object'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-proposal-unicode-property-regex'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-syntax-async-generators'
:
7.8.4_@babel+core@7.18.10
'
@babel/plugin-syntax-class-properties'
:
7.12.13_@babel+core@7.18.10
'
@babel/plugin-syntax-class-static-block'
:
7.14.5_@babel+core@7.18.10
'
@babel/plugin-syntax-dynamic-import'
:
7.8.3_@babel+core@7.18.10
'
@babel/plugin-syntax-export-namespace-from'
:
7.8.3_@babel+core@7.18.10
'
@babel/plugin-syntax-import-assertions'
:
7.18.6_@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-private-property-in-object'
:
7.14.5_@babel+core@7.18.10
'
@babel/plugin-syntax-top-level-await'
:
7.14.5_@babel+core@7.18.10
'
@babel/plugin-transform-arrow-functions'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-async-to-generator'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-block-scoped-functions'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-block-scoping'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-classes'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-computed-properties'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-destructuring'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-dotall-regex'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-duplicate-keys'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-exponentiation-operator'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-for-of'
:
7.18.8_@babel+core@7.18.10
'
@babel/plugin-transform-function-name'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-literals'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-member-expression-literals'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-modules-amd'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-modules-commonjs'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-modules-systemjs'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-modules-umd'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-named-capturing-groups-regex'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-new-target'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-object-super'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-parameters'
:
7.18.8_@babel+core@7.18.10
'
@babel/plugin-transform-property-literals'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-regenerator'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-reserved-words'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-shorthand-properties'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-spread'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-sticky-regex'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-template-literals'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-typeof-symbol'
:
7.18.9_@babel+core@7.18.10
'
@babel/plugin-transform-unicode-escapes'
:
7.18.10_@babel+core@7.18.10
'
@babel/plugin-transform-unicode-regex'
:
7.18.6_@babel+core@7.18.10
'
@babel/preset-modules'
:
0.1.5_@babel+core@7.18.10
'
@babel/types'
:
7.18.10
babel-plugin-polyfill-corejs2
:
0.3.2_@babel+core@7.18.10
babel-plugin-polyfill-corejs3
:
0.5.3_@babel+core@7.18.10
babel-plugin-polyfill-regenerator
:
0.4.0_@babel+core@7.18.10
core-js-compat
:
3.24.1
semver
:
6.3.0
transitivePeerDependencies
:
-
supports-color
dev
:
true
dev
:
true
/@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.10
:
/@babel/preset-modules/0.1.5_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==
}
resolution
:
{
integrity
:
sha1-75Odbn8miCfhhBY43G/5VRXhFdk=
}
engines
:
{
node
:
'
>=6.9.0'
}
peerDependencies
:
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
'
@babel/core'
:
^7.0.0-0
dependencies
:
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/core'
:
7.18.10
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/helper-plugin-utils'
:
7.18.9
'
@babel/plugin-proposal-unicode-property-regex'
:
7.18.6_@babel+core@7.18.10
'
@babel/plugin-transform-dotall-regex'
:
7.18.6_@babel+core@7.18.10
'
@babel/types'
:
7.18.10
esutils
:
2.0.3
dev
:
true
dev
:
true
/@babel/runtime/7.18.9
:
/@babel/runtime/7.18.9
:
...
@@ -926,6 +1775,23 @@ packages:
...
@@ -926,6 +1775,23 @@ packages:
fastq
:
1.13.0
fastq
:
1.13.0
dev
:
true
dev
:
true
/@rollup/plugin-babel/5.3.1_4ce4roknt3navmu3q3hwcigmqq
:
resolution
:
{
integrity
:
sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==
}
engines
:
{
node
:
'
>=
10.0.0'
}
peerDependencies
:
'
@babel/core'
:
^7.0.0
'
@types/babel__core'
:
^7.1.9
rollup
:
^1.20.0||^2.0.0
peerDependenciesMeta
:
'
@types/babel__core'
:
optional
:
true
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-module-imports'
:
7.18.6
'
@rollup/pluginutils'
:
3.1.0_rollup@2.78.1
rollup
:
2.78.1
dev
:
true
/@rollup/plugin-commonjs/22.0.2_rollup@2.78.1
:
/@rollup/plugin-commonjs/22.0.2_rollup@2.78.1
:
resolution
:
{
integrity
:
sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==
}
resolution
:
{
integrity
:
sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==
}
engines
:
{
node
:
'
>=
12.0.0'
}
engines
:
{
node
:
'
>=
12.0.0'
}
...
@@ -1316,6 +2182,12 @@ packages:
...
@@ -1316,6 +2182,12 @@ packages:
-
supports-color
-
supports-color
dev
:
true
dev
:
true
/babel-plugin-dynamic-import-node/2.3.3
:
resolution
:
{
integrity
:
sha1-hP2hnJduxcbe/vV/lCez3vZuF6M=
}
dependencies
:
object.assign
:
4.1.3
dev
:
true
/babel-plugin-istanbul/6.1.1
:
/babel-plugin-istanbul/6.1.1
:
resolution
:
{
integrity
:
sha1-+ojsWSMv2bTjbbvFQKjsmptH2nM=
}
resolution
:
{
integrity
:
sha1-+ojsWSMv2bTjbbvFQKjsmptH2nM=
}
engines
:
{
node
:
'
>=8'
}
engines
:
{
node
:
'
>=8'
}
...
@@ -1339,6 +2211,42 @@ packages:
...
@@ -1339,6 +2211,42 @@ packages:
'
@types/babel__traverse'
:
7.18.0
'
@types/babel__traverse'
:
7.18.0
dev
:
true
dev
:
true
/babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/compat-data'
:
7.18.8
'
@babel/core'
:
7.18.10
'
@babel/helper-define-polyfill-provider'
:
0.3.2_@babel+core@7.18.10
semver
:
6.3.0
transitivePeerDependencies
:
-
supports-color
dev
:
true
/babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-define-polyfill-provider'
:
0.3.2_@babel+core@7.18.10
core-js-compat
:
3.24.1
transitivePeerDependencies
:
-
supports-color
dev
:
true
/babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.18.10
:
resolution
:
{
integrity
:
sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==
}
peerDependencies
:
'
@babel/core'
:
^7.0.0-0
dependencies
:
'
@babel/core'
:
7.18.10
'
@babel/helper-define-polyfill-provider'
:
0.3.2_@babel+core@7.18.10
transitivePeerDependencies
:
-
supports-color
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.18.10
:
resolution
:
{
integrity
:
sha1-tDmSObibKgEfndvj5PQB/EDP9zs=
}
resolution
:
{
integrity
:
sha1-tDmSObibKgEfndvj5PQB/EDP9zs=
}
peerDependencies
:
peerDependencies
:
...
@@ -1630,6 +2538,13 @@ packages:
...
@@ -1630,6 +2538,13 @@ packages:
safe-buffer
:
5.1.2
safe-buffer
:
5.1.2
dev
:
true
dev
:
true
/core-js-compat/3.24.1
:
resolution
:
{
integrity
:
sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw==
}
dependencies
:
browserslist
:
4.21.3
semver
:
7.0.0
dev
:
true
/create-require/1.1.1
:
/create-require/1.1.1
:
resolution
:
{
integrity
:
sha1-wdfo8eX2z8n/ZfnNNS03NIdWwzM=
}
resolution
:
{
integrity
:
sha1-wdfo8eX2z8n/ZfnNNS03NIdWwzM=
}
dev
:
true
dev
:
true
...
@@ -3301,6 +4216,11 @@ packages:
...
@@ -3301,6 +4216,11 @@ packages:
-
utf-8-validate
-
utf-8-validate
dev
:
true
dev
:
true
/jsesc/0.5.0
:
resolution
:
{
integrity
:
sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
}
hasBin
:
true
dev
:
true
/jsesc/2.5.2
:
/jsesc/2.5.2
:
resolution
:
{
integrity
:
sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=
}
resolution
:
{
integrity
:
sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=
}
engines
:
{
node
:
'
>=4'
}
engines
:
{
node
:
'
>=4'
}
...
@@ -3391,6 +4311,10 @@ packages:
...
@@ -3391,6 +4311,10 @@ packages:
p-locate
:
5.0.0
p-locate
:
5.0.0
dev
:
true
dev
:
true
/lodash.debounce/4.0.8
:
resolution
:
{
integrity
:
sha1-gteb/zCmfEAF/9XiUVMArZyk168=
}
dev
:
true
/lodash.memoize/4.1.2
:
/lodash.memoize/4.1.2
:
resolution
:
{
integrity
:
sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
}
resolution
:
{
integrity
:
sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
}
dev
:
true
dev
:
true
...
@@ -3939,9 +4863,26 @@ packages:
...
@@ -3939,9 +4863,26 @@ packages:
strip-indent
:
3.0.0
strip-indent
:
3.0.0
dev
:
true
dev
:
true
/regenerate-unicode-properties/10.0.1
:
resolution
:
{
integrity
:
sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==
}
engines
:
{
node
:
'
>=4'
}
dependencies
:
regenerate
:
1.4.2
dev
:
true
/regenerate/1.4.2
:
resolution
:
{
integrity
:
sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=
}
dev
:
true
/regenerator-runtime/0.13.9
:
/regenerator-runtime/0.13.9
:
resolution
:
{
integrity
:
sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I=
}
resolution
:
{
integrity
:
sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I=
}
/regenerator-transform/0.15.0
:
resolution
:
{
integrity
:
sha1-y9nq1dd/rhpI2VfPiJrQWGrbZTc=
}
dependencies
:
'
@babel/runtime'
:
7.18.9
dev
:
true
/regexp.prototype.flags/1.4.3
:
/regexp.prototype.flags/1.4.3
:
resolution
:
{
integrity
:
sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
}
resolution
:
{
integrity
:
sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
}
engines
:
{
node
:
'
>=
0.4'
}
engines
:
{
node
:
'
>=
0.4'
}
...
@@ -3951,6 +4892,29 @@ packages:
...
@@ -3951,6 +4892,29 @@ packages:
functions-have-names
:
1.2.3
functions-have-names
:
1.2.3
dev
:
true
dev
:
true
/regexpu-core/5.1.0
:
resolution
:
{
integrity
:
sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==
}
engines
:
{
node
:
'
>=4'
}
dependencies
:
regenerate
:
1.4.2
regenerate-unicode-properties
:
10.0.1
regjsgen
:
0.6.0
regjsparser
:
0.8.4
unicode-match-property-ecmascript
:
2.0.0
unicode-match-property-value-ecmascript
:
2.0.0
dev
:
true
/regjsgen/0.6.0
:
resolution
:
{
integrity
:
sha1-g0FMU1Sv19ZiexavXxD0HE5xgI0=
}
dev
:
true
/regjsparser/0.8.4
:
resolution
:
{
integrity
:
sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==
}
hasBin
:
true
dependencies
:
jsesc
:
0.5.0
dev
:
true
/require-directory/2.1.1
:
/require-directory/2.1.1
:
resolution
:
{
integrity
:
sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
}
resolution
:
{
integrity
:
sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
}
engines
:
{
node
:
'
>=0.10.0'
}
engines
:
{
node
:
'
>=0.10.0'
}
...
@@ -4093,6 +5057,11 @@ packages:
...
@@ -4093,6 +5057,11 @@ packages:
hasBin
:
true
hasBin
:
true
dev
:
true
dev
:
true
/semver/7.0.0
:
resolution
:
{
integrity
:
sha1-XzyjV2HkfgWyBsba/yz4FPAxa44=
}
hasBin
:
true
dev
:
true
/semver/7.3.7
:
/semver/7.3.7
:
resolution
:
{
integrity
:
sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
}
resolution
:
{
integrity
:
sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
}
engines
:
{
node
:
'
>=10'
}
engines
:
{
node
:
'
>=10'
}
...
@@ -4429,7 +5398,7 @@ packages:
...
@@ -4429,7 +5398,7 @@ packages:
engines
:
{
node
:
'
>=8'
}
engines
:
{
node
:
'
>=8'
}
dev
:
true
dev
:
true
/ts-jest/28.0.7_
bi2kohzqnxavgozw3csgny5hju
:
/ts-jest/28.0.7_
m5noci3hdgjcbp5i3skppiufvq
:
resolution
:
{
integrity
:
sha512-wWXCSmTwBVmdvWrOpYhal79bDpioDy4rTT+0vyUnE3ZzM7LOAAGG9NXwzkEL/a516rQEgnMmS/WKP9jBPCVJyA==
}
resolution
:
{
integrity
:
sha512-wWXCSmTwBVmdvWrOpYhal79bDpioDy4rTT+0vyUnE3ZzM7LOAAGG9NXwzkEL/a516rQEgnMmS/WKP9jBPCVJyA==
}
engines
:
{
node
:
^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0
}
engines
:
{
node
:
^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0
}
hasBin
:
true
hasBin
:
true
...
@@ -4450,6 +5419,7 @@ packages:
...
@@ -4450,6 +5419,7 @@ packages:
esbuild
:
esbuild
:
optional
:
true
optional
:
true
dependencies
:
dependencies
:
'
@babel/core'
:
7.18.10
bs-logger
:
0.2.6
bs-logger
:
0.2.6
fast-json-stable-stringify
:
2.1.0
fast-json-stable-stringify
:
2.1.0
jest
:
28.1.3_ubchvo7cxgdavyfa6mg2b5a4oe
jest
:
28.1.3_ubchvo7cxgdavyfa6mg2b5a4oe
...
@@ -4586,6 +5556,29 @@ packages:
...
@@ -4586,6 +5556,29 @@ packages:
which-boxed-primitive
:
1.0.2
which-boxed-primitive
:
1.0.2
dev
:
true
dev
:
true
/unicode-canonical-property-names-ecmascript/2.0.0
:
resolution
:
{
integrity
:
sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=
}
engines
:
{
node
:
'
>=4'
}
dev
:
true
/unicode-match-property-ecmascript/2.0.0
:
resolution
:
{
integrity
:
sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=
}
engines
:
{
node
:
'
>=4'
}
dependencies
:
unicode-canonical-property-names-ecmascript
:
2.0.0
unicode-property-aliases-ecmascript
:
2.0.0
dev
:
true
/unicode-match-property-value-ecmascript/2.0.0
:
resolution
:
{
integrity
:
sha1-GgGqVyR8FMVouJd1pUk4eIGJpxQ=
}
engines
:
{
node
:
'
>=4'
}
dev
:
true
/unicode-property-aliases-ecmascript/2.0.0
:
resolution
:
{
integrity
:
sha1-CjbLmlhcT2q9Ua0d7dsoXBZSl8g=
}
engines
:
{
node
:
'
>=4'
}
dev
:
true
/universalify/0.1.2
:
/universalify/0.1.2
:
resolution
:
{
integrity
:
sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=
}
resolution
:
{
integrity
:
sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=
}
engines
:
{
node
:
'
>=
4.0.0'
}
engines
:
{
node
:
'
>=
4.0.0'
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment