diff --git a/packages/eslint/README.md b/packages/eslint/README.md
index e7e07c227..1e0073d43 100755
--- a/packages/eslint/README.md
+++ b/packages/eslint/README.md
@@ -1,7 +1,7 @@
-[npm]: https://img.shields.io/npm/v/@rollup/plugin-alias
-[npm-url]: https://www.npmjs.com/package/@rollup/plugin-alias
-[size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-alias
-[size-url]: https://packagephobia.now.sh/result?p=@rollup/plugin-alias
+[npm]: https://img.shields.io/npm/v/@rollup/plugin-eslint
+[npm-url]: https://www.npmjs.com/package/@rollup/plugin-eslint
+[size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-eslint
+[size-url]: https://packagephobia.now.sh/result?p=@rollup/plugin-eslint
[![npm][npm]][npm-url]
[![size][size]][size-url]
@@ -11,6 +11,10 @@
🍣 A Rollup plugin to lint entry points and all imported files with ESLint.
+## Requirements
+
+This plugin requires an [LTS](https://github.com/nodejs/Release) Node version (v14.0.0+) and Rollup v1.20.0+.
+
## Install
Using npm:
@@ -38,51 +42,51 @@ export default {
## Options
-See more options here [eslint-config](http://eslint.org/docs/developer-guide/nodejs-api#cliengine).
+This plugin takes a configuration object intended for the [ESLint constructor](https://eslint.org/docs/developer-guide/nodejs-api#-new-eslintoptions) with the addition of a `throwOnWarning`, `throwOnError`, `formatter`, `include` and `exclude` prop.
You can also use eslint configuration in the form of a `.eslintrc.*` file in your project's root. It will be loaded automatically.
-### fix
+### exclude
-Type: `Boolean`
-Default: `false`
+Type: `String | String[]`
+Default: `node_modules/**`
-If true, will auto fix source code.
+A single [`picomatch`](https://github.com/micromatch/picomatch) pattern or an array of patterns controlling which files this plugin should explicitly include. Gets forwarded to the [`createFilter`](https://github.com/rollup/plugins/tree/master/packages/pluginutils#createfilter) method of `@rollup/pluginutils`.
-### throwOnError
+### fix
Type: `Boolean`
Default: `false`
-If true, will throw an error if any errors were found.
+If true, will auto fix source code.
-### throwOnWarning
+### formatter
-Type: `Boolean`
-Default: `false`
+Type: `Function | String`
+Default: `stylish`
-If true, will throw an error if any warnings were found.
+Custom error formatter, the name of a built-in formatter, or the path to a custom formatter.
### include
-Type: `Array | String`
+Type: `String | String[]`
Default: `[]`
-A single file, or array of files, to include when linting.
+A single [`picomatch`](https://github.com/micromatch/picomatch) pattern or an array of patterns controlling which files this plugin should explicitly include. Gets forwarded to the [`createFilter`](https://github.com/rollup/plugins/tree/master/packages/pluginutils#createfilter) method of `@rollup/pluginutils`.
-### exclude
+### throwOnError
-Type: `Array | String`
-Default: `node_modules/**`
+Type: `Boolean`
+Default: `false`
-A single file, or array of files, to exclude when linting.
+If true, will throw an error and exit the process when ESLint reports any errors.
-### formatter
+### throwOnWarning
-Type: `Function | String`
-Default: `stylish`
+Type: `Boolean`
+Default: `false`
-Custom error formatter or the name of a built-in formatter.
+If true, will throw an error and exit the process when ESLint reports any warnings.
## Meta
diff --git a/packages/eslint/package.json b/packages/eslint/package.json
index 151a6ba3f..81645d42a 100755
--- a/packages/eslint/package.json
+++ b/packages/eslint/package.json
@@ -1,6 +1,6 @@
{
"name": "@rollup/plugin-eslint",
- "version": "8.0.2",
+ "version": "8.0.4",
"publishConfig": {
"access": "public"
},
@@ -13,10 +13,15 @@
"author": "Bogdan Chadkin ",
"homepage": "https://github.com/rollup/plugins/tree/master/packages/eslint#readme",
"bugs": "https://github.com/rollup/plugins/issues",
- "main": "dist/index.js",
- "module": "dist/index.es.js",
+ "main": "./dist/cjs/index.js",
+ "module": "./dist/es/index.js",
+ "exports": {
+ "import": "./dist/es/index.js",
+ "types": "./types/index.d.ts",
+ "default": "./dist/cjs/index.js"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14.0.0"
},
"scripts": {
"build": "rollup -c",
@@ -34,6 +39,7 @@
},
"files": [
"dist",
+ "!dist/**/*.map",
"types",
"README.md",
"LICENSE"
@@ -48,30 +54,26 @@
"lint"
],
"peerDependencies": {
- "rollup": "^1.20.0||^2.0.0"
+ "rollup": "^1.20.0||^2.0.0||^3.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
},
"dependencies": {
- "@rollup/pluginutils": "^4.0.0",
- "eslint": "^7.12.0"
+ "@rollup/pluginutils": "^4.2.1",
+ "eslint": "^8.24.0"
},
"devDependencies": {
- "@rollup/plugin-node-resolve": "^9.0.0",
- "@rollup/plugin-typescript": "^6.0.0",
- "@types/eslint": "^7.2.2",
- "rollup": "^2.67.3",
- "typescript": "^4.1.2"
+ "@rollup/plugin-node-resolve": "^14.1.0",
+ "@rollup/plugin-typescript": "^8.5.0",
+ "@types/eslint": "^8.4.6",
+ "rollup": "^3.0.0-7",
+ "typescript": "^4.8.3"
},
- "types": "types/index.d.ts",
+ "types": "./types/index.d.ts",
"ava": {
- "babel": {
- "compileEnhancements": false
- },
- "extensions": [
- "ts"
- ],
- "require": [
- "ts-node/register"
- ],
"files": [
"!**/fixtures/**",
"!**/helpers/**",
diff --git a/packages/eslint/rollup.config.js b/packages/eslint/rollup.config.js
deleted file mode 100755
index 955a47adf..000000000
--- a/packages/eslint/rollup.config.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import typescript from '@rollup/plugin-typescript';
-
-import pkg from './package.json';
-
-export default {
- input: 'src/index.ts',
- external: [...Object.keys(pkg.dependencies), 'path'],
- output: [
- { file: pkg.main, format: 'cjs', exports: 'auto' },
- { file: pkg.module, format: 'es' }
- ],
- plugins: [typescript({ sourceMap: false })]
-};
diff --git a/packages/eslint/rollup.config.mjs b/packages/eslint/rollup.config.mjs
new file mode 100755
index 000000000..2a28aaaf6
--- /dev/null
+++ b/packages/eslint/rollup.config.mjs
@@ -0,0 +1,7 @@
+import { readFileSync } from 'fs';
+
+import { createConfig } from '../../shared/rollup.config.mjs';
+
+export default createConfig({
+ pkg: JSON.parse(readFileSync(new URL('./package.json', import.meta.url), 'utf8'))
+});
diff --git a/packages/eslint/src/index.ts b/packages/eslint/src/index.ts
index b727b50dc..a69d23e8f 100755
--- a/packages/eslint/src/index.ts
+++ b/packages/eslint/src/index.ts
@@ -1,18 +1,18 @@
-import * as path from 'path';
+import { relative, resolve, sep } from 'path';
import { Plugin } from 'rollup';
import { createFilter } from '@rollup/pluginutils';
-import { CLIEngine } from 'eslint';
+import { ESLint } from 'eslint';
-import { RollupEslintOptions } from '../types';
+import type { RollupEslintOptions } from '../types';
function normalizePath(id: string) {
- return path.relative(process.cwd(), id).split(path.sep).join('/');
+ return relative(process.cwd(), id).split(sep).join('/');
}
export default function eslint(options = {} as RollupEslintOptions): Plugin {
if (typeof options === 'string') {
- const configFile = path.resolve(process.cwd(), options);
+ const configFile = resolve(process.cwd(), options);
// eslint-disable-next-line global-require, import/no-dynamic-require, no-param-reassign
options = require(configFile);
// Tell eslint not to look for configuration files.
@@ -20,62 +20,64 @@ export default function eslint(options = {} as RollupEslintOptions): Plugin {
options.useEslintrc = false;
}
- const cli = new CLIEngine(options);
- let formatter: CLIEngine.Formatter;
-
- switch (typeof options.formatter) {
- case 'string':
- formatter = cli.getFormatter(options.formatter);
- break;
- case 'function':
- ({ formatter } = options);
- break;
- default:
- formatter = cli.getFormatter('stylish');
- }
+ const {
+ include,
+ exclude = /node_modules/,
+ throwOnWarning = false,
+ throwOnError = false,
+ formatter = 'stylish',
+ ...eslintOptions
+ } = options;
- const filter = createFilter(options.include, options.exclude || /node_modules/);
+ const eslintInstance = new ESLint(eslintOptions);
+ const filter = createFilter(include, exclude);
return {
name: 'eslint',
-
- // eslint-disable-next-line consistent-return
- transform(code, id) {
+ async transform(_, id: string) {
const file = normalizePath(id);
- if (!filter(id) || cli.isPathIgnored(file)) {
+ if (!filter(id) || (await eslintInstance.isPathIgnored(file))) {
return null;
}
- const report = cli.executeOnText(code, file);
- const hasWarnings = options.throwOnWarning && report.warningCount !== 0;
- const hasErrors = options.throwOnError && report.errorCount !== 0;
+ const results = await eslintInstance.lintFiles(file);
+ const [result] = results;
- if (options.fix && report) {
- CLIEngine.outputFixes(report);
+ if (eslintOptions.fix) {
+ await ESLint.outputFixes(results);
}
- if (report.warningCount === 0 && report.errorCount === 0) {
+ if (result.warningCount === 0 && result.errorCount === 0) {
return null;
}
- const result = formatter(report.results);
+ const eslintFormatter: ESLint.Formatter =
+ typeof formatter === 'string'
+ ? await eslintInstance.loadFormatter(formatter)
+ : { format: formatter };
+ const output = eslintFormatter.format(results);
- if (result) {
+ if (output) {
// eslint-disable-next-line no-console
- console.log(result);
+ console.log(output);
}
- if (hasWarnings && hasErrors) {
- throw Error('Warnings or errors were found');
+ const errorMessages = [];
+ if (result.warningCount > 0 && throwOnWarning) {
+ errorMessages.push(`${result.warningCount} warning${result.warningCount > 1 ? 's' : ''}`);
}
- if (hasWarnings) {
- throw Error('Warnings were found');
+ if (result.errorCount > 0 && throwOnError) {
+ errorMessages.push(`${result.errorCount} error${result.errorCount > 1 ? 's' : ''}`);
}
- if (hasErrors) {
- throw Error('Errors were found');
+ if (errorMessages.length > 0) {
+ throw new Error(
+ `Found ${errorMessages.join(' and ')} in ${relative('.', result.filePath)}`
+ );
}
+
+ return null;
}
};
}
diff --git a/packages/eslint/test/node_modules/current-package b/packages/eslint/test/node_modules/current-package
new file mode 120000
index 000000000..c25bddb6d
--- /dev/null
+++ b/packages/eslint/test/node_modules/current-package
@@ -0,0 +1 @@
+../..
\ No newline at end of file
diff --git a/packages/eslint/test/test.js b/packages/eslint/test/test.mjs
similarity index 76%
rename from packages/eslint/test/test.js
rename to packages/eslint/test/test.mjs
index 0f8303736..1c14ca0d5 100755
--- a/packages/eslint/test/test.js
+++ b/packages/eslint/test/test.mjs
@@ -1,10 +1,12 @@
import fs from 'fs';
+import { createRequire } from 'module';
+
import test from 'ava';
import nodeResolve from '@rollup/plugin-node-resolve';
import { rollup } from 'rollup';
-import eslint from '../dist';
+import eslint from 'current-package';
test('should lint files', async (t) => {
let count = 0;
@@ -41,7 +43,7 @@ test('should ignore node_modules with exclude option', async (t) => {
plugins: [
nodeResolve({ jsnext: true }),
eslint({
- configFile: './test/fixtures/.eslintrc-babel',
+ overrideConfigFile: './test/fixtures/.eslintrc-babel',
formatter: () => {
count += 1;
}
@@ -82,7 +84,7 @@ test('should fail with enabled throwOnWarning and throwOnError options', async (
]
});
},
- { message: /Warnings or errors were found/ }
+ { message: /Found 1 warning and 1 error/ }
);
});
@@ -99,7 +101,7 @@ test('should fail with enabled throwOnError option', async (t) => {
]
});
},
- { message: /Errors were found/ }
+ { message: /Found 1 error/ }
);
});
@@ -116,7 +118,7 @@ test('should fail with enabled throwOnWarning option', async (t) => {
]
});
},
- { message: /Warnings were found/ }
+ { message: /Found 1 warning/ }
);
});
@@ -135,11 +137,16 @@ test('should not fail with throwOnError and throwOnWarning disabled', async (t)
t.pass();
});
-test('should fail with not found formatter', (t) => {
- t.throws(
- () => {
- eslint({
- formatter: 'not-found-formatter'
+test('should fail with not found formatter', async (t) => {
+ await t.throwsAsync(
+ async () => {
+ await rollup({
+ input: './test/fixtures/use-strict.js',
+ plugins: [
+ eslint({
+ formatter: 'not-found-formatter'
+ })
+ ]
});
},
{ message: /There was a problem loading formatter/ }
@@ -181,3 +188,24 @@ test('should fix source code', async (t) => {
fs.unlinkSync('./test/fixtures/fixable-clone.js');
});
+
+test('works with cjs plugin', async (t) => {
+ const require = createRequire(import.meta.url);
+ const eslintPluginCjs = require('current-package');
+ let count = 0;
+ await rollup({
+ input: './test/fixtures/undeclared.js',
+ plugins: [
+ eslintPluginCjs({
+ formatter: (results) => {
+ count += results[0].messages.length;
+ // eslint-disable-next-line prefer-destructuring
+ const { message } = results[0].messages[0];
+ t.is(message, "'x' is not defined.");
+ }
+ })
+ ]
+ });
+
+ t.is(count, 1);
+});
diff --git a/packages/eslint/types/index.d.ts b/packages/eslint/types/index.d.ts
index 8334cccb9..c0615cdea 100755
--- a/packages/eslint/types/index.d.ts
+++ b/packages/eslint/types/index.d.ts
@@ -1,8 +1,8 @@
import { Plugin } from 'rollup';
-import { CLIEngine } from 'eslint';
+import { CLIEngine, ESLint } from 'eslint';
import { CreateFilter } from '@rollup/pluginutils';
-export interface RollupEslintOptions extends CLIEngine.Options {
+export interface RollupEslintOptions extends ESLint.Options {
/**
* If true, will auto fix source code.
* @default false
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f0cb40dad..1d08f45fe 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -42,34 +42,34 @@ importers:
'@rollup/plugin-typescript': 8.5.0_typescript@4.8.3
'@types/conventional-commits-parser': 3.0.2
'@types/node': 14.18.30
- '@types/semver': 7.3.12
- '@types/source-map-support': 0.5.6
- '@types/yargs-parser': 20.2.2
- '@typescript-eslint/eslint-plugin': 5.38.0_4gkcvl6qsi23tqqawfqgcwtp54
- '@typescript-eslint/parser': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
+ '@types/semver': 7.3.7
+ '@types/source-map-support': 0.5.4
+ '@types/yargs-parser': 20.2.1
+ '@typescript-eslint/eslint-plugin': 5.39.0_tpdaglskdu47lqqe3htxsbxb5y
+ '@typescript-eslint/parser': 5.39.0_7ilbxdl5iguzcjriqqcg2m5cku
ava: 4.3.3
- chalk: 4.1.2
+ chalk: 4.1.0
codecov-lite: 2.0.0
- conventional-commits-parser: 3.2.4
+ conventional-commits-parser: 3.2.1
del-cli: 5.0.0
eslint: 8.24.0
eslint-config-rollup: 3.0.0_typescript@4.8.3
esm: 3.2.25
execa: 5.1.1
- globby: 11.1.0
+ globby: 11.0.1
husky: 8.0.1
lint-staged: 11.0.1
nyc: 15.1.0
pnpm: 7.12.2
prettier: 2.7.1
prettier-plugin-package: 1.3.0_prettier@2.7.1
- semver: 7.3.7
+ semver: 7.3.2
source-map-support: 0.5.21
ts-node: 10.9.1_xq25xj3lsz7fwmieqcpc33ooz4
- tsconfig-paths: 3.14.1
+ tsconfig-paths: 3.9.0
typescript: 4.8.3
write-pkg: 4.0.0
- yaml: 1.10.2
+ yaml: 1.10.0
yargs-parser: 20.2.9
packages/alias:
@@ -84,10 +84,10 @@ importers:
slash: 3.0.0
devDependencies:
'@rollup/plugin-node-resolve': 8.4.0_rollup@2.67.3
- '@rollup/plugin-typescript': 5.0.2_m2cz2zuj3xwmuolb5rf666rpsm
+ '@rollup/plugin-typescript': 5.0.2_2dbihhqkf5a4hxzstxnoyhj6ca
del-cli: 3.0.1
rollup: 2.67.3
- typescript: 4.8.3
+ typescript: 4.1.2
packages/auto-install:
specifiers:
@@ -98,12 +98,12 @@ importers:
rollup: ^2.67.3
typescript: ^4.1.2
devDependencies:
- '@rollup/plugin-node-resolve': 8.4.0_rollup@2.79.1
- '@rollup/plugin-typescript': 5.0.2_5q64ijqsuisqe52alrh6v6njki
+ '@rollup/plugin-node-resolve': 8.4.0_rollup@2.67.3
+ '@rollup/plugin-typescript': 5.0.2_2dbihhqkf5a4hxzstxnoyhj6ca
del: 5.1.0
node-noop: 1.0.0
- rollup: 2.79.1
- typescript: 4.8.3
+ rollup: 2.67.3
+ typescript: 4.1.2
packages/babel:
specifiers:
@@ -121,28 +121,28 @@ importers:
rollup: ^2.67.3
source-map: ^0.7.3
dependencies:
- '@babel/helper-module-imports': 7.18.6
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@babel/helper-module-imports': 7.12.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
devDependencies:
- '@babel/core': 7.19.1
- '@babel/plugin-external-helpers': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-decorators': 7.19.1_@babel+core@7.19.1
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.1
- '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.1
- '@babel/preset-env': 7.19.1_@babel+core@7.19.1
- '@rollup/plugin-json': 4.1.0_rollup@2.79.1
- '@rollup/plugin-node-resolve': 10.0.0_rollup@2.79.1
- '@types/babel__core': 7.1.19
- rollup: 2.79.1
- source-map: 0.7.4
+ '@babel/core': 7.12.3
+ '@babel/plugin-external-helpers': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-decorators': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-transform-runtime': 7.12.1_@babel+core@7.12.3
+ '@babel/preset-env': 7.12.1_@babel+core@7.12.3
+ '@rollup/plugin-json': 4.1.0_rollup@2.67.3
+ '@rollup/plugin-node-resolve': 10.0.0_rollup@2.67.3
+ '@types/babel__core': 7.1.10
+ rollup: 2.67.3
+ source-map: 0.7.3
packages/beep:
specifiers:
rollup: ^2.67.3
strip-ansi: ^6.0.0
devDependencies:
- rollup: 2.79.1
- strip-ansi: 6.0.1
+ rollup: 2.67.3
+ strip-ansi: 6.0.0
packages/buble:
specifiers:
@@ -155,14 +155,14 @@ importers:
source-map: ^0.7.3
typescript: 4.1.2
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
'@types/buble': 0.19.2
buble: 0.20.0
devDependencies:
- '@rollup/plugin-typescript': 5.0.2_4cjbvluduiokxidtfkm6fskiwi
+ '@rollup/plugin-typescript': 5.0.2_2dbihhqkf5a4hxzstxnoyhj6ca
del-cli: 3.0.1
- rollup: 2.79.1
- source-map: 0.7.4
+ rollup: 2.67.3
+ source-map: 0.7.3
typescript: 4.1.2
packages/commonjs:
@@ -184,23 +184,23 @@ importers:
source-map-support: ^0.5.19
typescript: ^3.9.7
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.68.0
commondir: 1.0.1
- estree-walker: 2.0.2
- glob: 7.2.3
+ estree-walker: 2.0.1
+ glob: 7.1.6
is-reference: 1.2.1
- magic-string: 0.25.9
- resolve: 1.22.1
+ magic-string: 0.25.7
+ resolve: 1.18.1
devDependencies:
- '@rollup/plugin-json': 4.1.0_rollup@2.79.1
- '@rollup/plugin-node-resolve': 13.3.0_rollup@2.79.1
+ '@rollup/plugin-json': 4.1.0_rollup@2.68.0
+ '@rollup/plugin-node-resolve': 13.1.3_rollup@2.68.0
locate-character: 2.0.5
require-relative: 0.8.7
- rollup: 2.79.1
- shx: 0.3.4
- source-map: 0.7.4
- source-map-support: 0.5.21
- typescript: 3.9.10
+ rollup: 2.68.0
+ shx: 0.3.3
+ source-map: 0.7.3
+ source-map-support: 0.5.19
+ typescript: 3.9.7
packages/data-uri:
specifiers:
@@ -209,10 +209,10 @@ importers:
rollup: ^2.67.3
typescript: ^4.1.2
devDependencies:
- '@rollup/plugin-typescript': 5.0.2_5q64ijqsuisqe52alrh6v6njki
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- rollup: 2.79.1
- typescript: 4.8.3
+ '@rollup/plugin-typescript': 5.0.2_2dbihhqkf5a4hxzstxnoyhj6ca
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ rollup: 2.67.3
+ typescript: 4.1.2
packages/dsv:
specifiers:
@@ -223,13 +223,13 @@ importers:
rollup: ^2.67.3
tosource: ^1.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
'@types/d3-dsv': 1.2.1
d3-dsv: 1.2.0
tosource: 1.0.0
devDependencies:
del-cli: 3.0.1
- rollup: 2.79.1
+ rollup: 2.67.3
packages/dynamic-import-vars:
specifiers:
@@ -243,32 +243,32 @@ importers:
rollup: ^2.67.3
dependencies:
'@rollup/pluginutils': 4.2.1
- estree-walker: 2.0.2
- fast-glob: 3.2.12
- magic-string: 0.25.9
+ estree-walker: 2.0.1
+ fast-glob: 3.2.7
+ magic-string: 0.25.7
devDependencies:
acorn: 7.4.1
acorn-dynamic-import: 4.0.0_acorn@7.4.1
- prettier: 2.7.1
- rollup: 2.79.1
+ prettier: 2.1.2
+ rollup: 2.67.3
packages/eslint:
specifiers:
- '@rollup/plugin-node-resolve': ^9.0.0
- '@rollup/plugin-typescript': ^6.0.0
- '@rollup/pluginutils': ^4.0.0
- '@types/eslint': ^7.2.2
- eslint: ^7.12.0
- rollup: ^2.67.3
- typescript: ^4.1.2
+ '@rollup/plugin-node-resolve': ^14.1.0
+ '@rollup/plugin-typescript': ^8.5.0
+ '@rollup/pluginutils': ^4.2.1
+ '@types/eslint': ^8.4.6
+ eslint: ^8.24.0
+ rollup: ^3.0.0-7
+ typescript: ^4.8.3
dependencies:
'@rollup/pluginutils': 4.2.1
- eslint: 7.32.0
+ eslint: 8.24.0
devDependencies:
- '@rollup/plugin-node-resolve': 9.0.0_rollup@2.79.1
- '@rollup/plugin-typescript': 6.1.0_5q64ijqsuisqe52alrh6v6njki
- '@types/eslint': 7.29.0
- rollup: 2.79.1
+ '@rollup/plugin-node-resolve': 14.1.0_rollup@3.0.0-7
+ '@rollup/plugin-typescript': 8.5.0_vmpcm5aav5u37diqfc6pdubvhq
+ '@types/eslint': 8.4.6
+ rollup: 3.0.0-7
typescript: 4.8.3
packages/graphql:
@@ -280,11 +280,11 @@ importers:
rollup: ^2.67.3
dependencies:
'@rollup/pluginutils': 4.2.1
- graphql-tag: 2.12.6_graphql@14.7.0
+ graphql-tag: 2.11.0_graphql@14.7.0
devDependencies:
- '@rollup/plugin-buble': 0.21.3_rollup@2.79.1
+ '@rollup/plugin-buble': 0.21.3_rollup@2.67.3
graphql: 14.7.0
- rollup: 2.79.1
+ rollup: 2.67.3
packages/html:
specifiers:
@@ -293,10 +293,10 @@ importers:
rollup-plugin-postcss: ^3.1.8
typescript: ^4.1.2
devDependencies:
- '@rollup/plugin-typescript': 6.1.0_5q64ijqsuisqe52alrh6v6njki
- rollup: 2.79.1
+ '@rollup/plugin-typescript': 6.1.0_2dbihhqkf5a4hxzstxnoyhj6ca
+ rollup: 2.67.3
rollup-plugin-postcss: 3.1.8
- typescript: 4.8.3
+ typescript: 4.1.2
packages/image:
specifiers:
@@ -305,11 +305,11 @@ importers:
mini-svg-data-uri: ^1.2.3
rollup: ^2.67.3
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- mini-svg-data-uri: 1.4.4
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ mini-svg-data-uri: 1.2.3
devDependencies:
- '@rollup/plugin-buble': 0.21.3_rollup@2.79.1
- rollup: 2.79.1
+ '@rollup/plugin-buble': 0.21.3_rollup@2.67.3
+ rollup: 2.67.3
packages/inject:
specifiers:
@@ -323,16 +323,16 @@ importers:
source-map: ^0.7.3
typescript: ^3.9.7
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- estree-walker: 2.0.2
- magic-string: 0.25.9
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ estree-walker: 2.0.1
+ magic-string: 0.25.7
devDependencies:
- '@rollup/plugin-buble': 0.21.3_rollup@2.79.1
+ '@rollup/plugin-buble': 0.21.3_rollup@2.67.3
del-cli: 3.0.1
locate-character: 2.0.5
- rollup: 2.79.1
- source-map: 0.7.4
- typescript: 3.9.10
+ rollup: 2.67.3
+ source-map: 0.7.3
+ typescript: 3.9.7
packages/json:
specifiers:
@@ -342,12 +342,12 @@ importers:
rollup: ^2.67.3
source-map-support: ^0.5.19
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
devDependencies:
- '@rollup/plugin-buble': 0.21.3_rollup@2.79.1
- '@rollup/plugin-node-resolve': 8.4.0_rollup@2.79.1
- rollup: 2.79.1
- source-map-support: 0.5.21
+ '@rollup/plugin-buble': 0.21.3_rollup@2.67.3
+ '@rollup/plugin-node-resolve': 8.4.0_rollup@2.67.3
+ rollup: 2.67.3
+ source-map-support: 0.5.19
packages/legacy:
specifiers:
@@ -358,9 +358,9 @@ importers:
dependencies:
'@rollup/pluginutils': 4.2.1
devDependencies:
- '@rollup/plugin-buble': 0.21.3_rollup@2.79.1
+ '@rollup/plugin-buble': 0.21.3_rollup@2.67.3
del-cli: 3.0.1
- rollup: 2.79.1
+ rollup: 2.67.3
packages/multi-entry:
specifiers:
@@ -368,10 +368,10 @@ importers:
matched: ^5.0.0
rollup: ^2.67.3
dependencies:
- '@rollup/plugin-virtual': 2.1.0_rollup@2.79.1
- matched: 5.0.1
+ '@rollup/plugin-virtual': 2.1.0_rollup@2.67.3
+ matched: 5.0.0
devDependencies:
- rollup: 2.79.1
+ rollup: 2.67.3
packages/node-resolve:
specifiers:
@@ -391,21 +391,21 @@ importers:
source-map: ^0.7.3
string-capitalize: ^1.0.1
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.78.1
'@types/resolve': 1.17.1
deepmerge: 4.2.2
- is-builtin-module: 3.2.0
+ is-builtin-module: 3.1.0
is-module: 1.0.0
- resolve: 1.22.1
+ resolve: 1.19.0
devDependencies:
- '@babel/core': 7.19.1
- '@babel/plugin-transform-typescript': 7.19.1_@babel+core@7.19.1
- '@rollup/plugin-babel': 5.3.1_r56fldxoyazzliugjcx2ns4pma
- '@rollup/plugin-commonjs': 22.0.2_rollup@2.79.1
- '@rollup/plugin-json': 4.1.0_rollup@2.79.1
- es5-ext: 0.10.62
- rollup: 2.79.1
- source-map: 0.7.4
+ '@babel/core': 7.12.3
+ '@babel/plugin-transform-typescript': 7.12.1_@babel+core@7.12.3
+ '@rollup/plugin-babel': 5.3.0_pcb26gospqgsyouccbwgqwmoa4
+ '@rollup/plugin-commonjs': 22.0.2_rollup@2.78.1
+ '@rollup/plugin-json': 4.1.0_rollup@2.78.1
+ es5-ext: 0.10.53
+ rollup: 2.78.1
+ source-map: 0.7.3
string-capitalize: 1.0.1
packages/pluginutils:
@@ -422,18 +422,18 @@ importers:
rollup: ^2.67.3
typescript: ^4.1.2
dependencies:
- estree-walker: 2.0.2
- picomatch: 2.3.1
+ estree-walker: 2.0.1
+ picomatch: 2.2.2
devDependencies:
- '@rollup/plugin-commonjs': 14.0.0_rollup@2.79.1
- '@rollup/plugin-node-resolve': 8.4.0_rollup@2.79.1
- '@rollup/plugin-typescript': 5.0.2_5q64ijqsuisqe52alrh6v6njki
+ '@rollup/plugin-commonjs': 14.0.0_rollup@2.67.3
+ '@rollup/plugin-node-resolve': 8.4.0_rollup@2.67.3
+ '@rollup/plugin-typescript': 5.0.2_2dbihhqkf5a4hxzstxnoyhj6ca
'@types/estree': 0.0.45
- '@types/node': 14.18.30
- '@types/picomatch': 2.3.0
- acorn: 8.8.0
- rollup: 2.79.1
- typescript: 4.8.3
+ '@types/node': 14.14.3
+ '@types/picomatch': 2.2.1
+ acorn: 8.0.4
+ rollup: 2.67.3
+ typescript: 4.1.2
packages/replace:
specifiers:
@@ -446,15 +446,15 @@ importers:
source-map: ^0.7.3
typescript: ^3.9.7
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- magic-string: 0.25.9
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ magic-string: 0.25.7
devDependencies:
- '@rollup/plugin-buble': 0.21.3_rollup@2.79.1
+ '@rollup/plugin-buble': 0.21.3_rollup@2.67.3
del-cli: 3.0.1
locate-character: 2.0.5
- rollup: 2.79.1
- source-map: 0.7.4
- typescript: 3.9.10
+ rollup: 2.67.3
+ source-map: 0.7.3
+ typescript: 3.9.7
packages/run:
specifiers:
@@ -467,11 +467,11 @@ importers:
dependencies:
'@types/node': 14.0.26
devDependencies:
- '@rollup/plugin-typescript': 5.0.2_5q64ijqsuisqe52alrh6v6njki
+ '@rollup/plugin-typescript': 5.0.2_2dbihhqkf5a4hxzstxnoyhj6ca
del: 5.1.0
- rollup: 2.79.1
+ rollup: 2.67.3
sinon: 9.0.2
- typescript: 4.8.3
+ typescript: 4.1.2
packages/strip:
specifiers:
@@ -481,12 +481,12 @@ importers:
magic-string: ^0.25.7
rollup: ^2.67.3
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- estree-walker: 2.0.2
- magic-string: 0.25.9
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ estree-walker: 2.0.1
+ magic-string: 0.25.7
devDependencies:
acorn: 7.4.1
- rollup: 2.79.1
+ rollup: 2.67.3
packages/sucrase:
specifiers:
@@ -496,10 +496,10 @@ importers:
sucrase: ^3.20.0
dependencies:
'@rollup/pluginutils': 4.2.1
- sucrase: 3.27.0
+ sucrase: 3.20.3
devDependencies:
- '@rollup/plugin-alias': 3.1.9_rollup@2.79.1
- rollup: 2.79.1
+ '@rollup/plugin-alias': 3.1.9_rollup@2.67.3
+ rollup: 2.67.3
packages/typescript:
specifiers:
@@ -513,16 +513,16 @@ importers:
rollup: ^2.67.3
typescript: ^4.7.3
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- resolve: 1.22.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ resolve: 1.18.1
devDependencies:
- '@rollup/plugin-buble': 0.21.3_rollup@2.79.1
- '@rollup/plugin-commonjs': 11.1.0_rollup@2.79.1
- '@rollup/plugin-typescript': 5.0.2_5q64ijqsuisqe52alrh6v6njki
- '@types/node': 10.17.60
+ '@rollup/plugin-buble': 0.21.3_rollup@2.67.3
+ '@rollup/plugin-commonjs': 11.1.0_rollup@2.67.3
+ '@rollup/plugin-typescript': 5.0.2_fgliwuqalyymca5qc5u4dmwjqq
+ '@types/node': 10.17.48
buble: 0.20.0
- rollup: 2.79.1
- typescript: 4.8.3
+ rollup: 2.67.3
+ typescript: 4.7.3
packages/url:
specifiers:
@@ -535,11 +535,11 @@ importers:
dependencies:
'@rollup/pluginutils': 4.2.1
make-dir: 3.1.0
- mime: 2.6.0
+ mime: 2.4.6
devDependencies:
del: 5.1.0
- globby: 11.1.0
- rollup: 2.79.1
+ globby: 11.0.1
+ rollup: 2.67.3
packages/virtual:
specifiers:
@@ -548,10 +548,10 @@ importers:
rollup: ^2.67.3
typescript: ^4.1.2
devDependencies:
- '@rollup/plugin-node-resolve': 8.4.0_rollup@2.79.1
- '@rollup/plugin-typescript': 6.1.0_5q64ijqsuisqe52alrh6v6njki
- rollup: 2.79.1
- typescript: 4.8.3
+ '@rollup/plugin-node-resolve': 8.4.0_rollup@2.67.3
+ '@rollup/plugin-typescript': 6.0.0_2dbihhqkf5a4hxzstxnoyhj6ca
+ rollup: 2.67.3
+ typescript: 4.1.2
packages/wasm:
specifiers:
@@ -561,11 +561,11 @@ importers:
source-map: ^0.7.3
typescript: ^4.1.2
devDependencies:
- '@rollup/plugin-typescript': 5.0.2_5q64ijqsuisqe52alrh6v6njki
+ '@rollup/plugin-typescript': 5.0.2_2dbihhqkf5a4hxzstxnoyhj6ca
del-cli: 3.0.1
- rollup: 2.79.1
- source-map: 0.7.4
- typescript: 4.8.3
+ rollup: 2.67.3
+ source-map: 0.7.3
+ typescript: 4.1.2
packages/yaml:
specifiers:
@@ -577,36 +577,28 @@ importers:
source-map-support: ^0.5.19
tosource: ^1.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- js-yaml: 3.14.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ js-yaml: 3.14.0
tosource: 1.0.0
devDependencies:
- '@rollup/plugin-node-resolve': 8.4.0_rollup@2.79.1
+ '@rollup/plugin-node-resolve': 8.4.0_rollup@2.67.3
del-cli: 3.0.1
- rollup: 2.79.1
- source-map-support: 0.5.21
+ rollup: 2.67.3
+ source-map-support: 0.5.19
packages:
- /@ampproject/remapping/2.2.0:
- resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/gen-mapping': 0.1.1
- '@jridgewell/trace-mapping': 0.3.15
- dev: true
-
/@ava/babel/2.0.0:
resolution: {integrity: sha512-50ol1X2AOuX82UskqQYx7XCvv/05GQA2dib/n4XP99sg63fIVtzwpPZ7amLN7mghhGRr2fjXFbuRgJ4+VeDsIg==}
engines: {node: '>=12.22 <13 || >=14.16 <15 || >=16'}
dependencies:
'@ava/require-precompiled': 1.0.0
- '@babel/core': 7.19.1
- '@babel/generator': 7.19.0
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.1
+ '@babel/core': 7.14.6
+ '@babel/generator': 7.14.5
+ '@babel/plugin-proposal-dynamic-import': 7.14.5_@babel+core@7.14.6
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.14.6
+ '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.14.6
+ '@babel/plugin-transform-modules-commonjs': 7.14.5_@babel+core@7.14.6
babel-plugin-espower: 3.0.1
concordance: 5.0.4
convert-source-map: 1.8.0
@@ -630,1222 +622,1334 @@ packages:
engines: {node: '>=10'}
dev: true
- /@babel/code-frame/7.12.11:
- resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
+ /@babel/code-frame/7.10.4:
+ resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
dependencies:
- '@babel/highlight': 7.18.6
- dev: false
+ '@babel/highlight': 7.10.4
+ dev: true
- /@babel/code-frame/7.18.6:
- resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
+ /@babel/code-frame/7.14.5:
+ resolution: {integrity: sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.18.6
+ '@babel/highlight': 7.14.5
dev: true
- /@babel/compat-data/7.19.1:
- resolution: {integrity: sha512-72a9ghR0gnESIa7jBN53U32FOVCEoztyIlKaNoU05zRhEecduGK9L9c3ww7Mp06JiR+0ls0GBPFJQwwtjn9ksg==}
+ /@babel/compat-data/7.12.1:
+ resolution: {integrity: sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ==}
+ dev: true
+
+ /@babel/compat-data/7.14.7:
+ resolution: {integrity: sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/core/7.12.3:
+ resolution: {integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ '@babel/generator': 7.12.1
+ '@babel/helper-module-transforms': 7.12.1
+ '@babel/helpers': 7.12.1
+ '@babel/parser': 7.12.3
+ '@babel/template': 7.10.4
+ '@babel/traverse': 7.12.1
+ '@babel/types': 7.12.1
+ convert-source-map: 1.7.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.1
+ json5: 2.1.3
+ lodash: 4.17.21
+ resolve: 1.18.1
+ semver: 5.7.1
+ source-map: 0.5.7
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/core/7.19.1:
- resolution: {integrity: sha512-1H8VgqXme4UXCRv7/Wa1bq7RVymKOzC7znjyFM8KiEzwFqcKUKYNoQef4GhdklgNvoBXyW4gYhuBNCM5o1zImw==}
+ /@babel/core/7.14.6:
+ resolution: {integrity: sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.19.0
- '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helpers': 7.19.0
- '@babel/parser': 7.19.1
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.1
- '@babel/types': 7.19.0
+ '@babel/code-frame': 7.14.5
+ '@babel/generator': 7.14.5
+ '@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.6
+ '@babel/helper-module-transforms': 7.14.5
+ '@babel/helpers': 7.14.6
+ '@babel/parser': 7.14.7
+ '@babel/template': 7.14.5
+ '@babel/traverse': 7.14.7
+ '@babel/types': 7.14.5
convert-source-map: 1.8.0
debug: 4.3.4
gensync: 1.0.0-beta.2
- json5: 2.2.1
+ json5: 2.2.0
semver: 6.3.0
+ source-map: 0.5.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/generator/7.19.0:
- resolution: {integrity: sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==}
- engines: {node: '>=6.9.0'}
+ /@babel/generator/7.12.1:
+ resolution: {integrity: sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==}
dependencies:
- '@babel/types': 7.19.0
- '@jridgewell/gen-mapping': 0.3.2
+ '@babel/types': 7.14.5
jsesc: 2.5.2
+ source-map: 0.5.7
dev: true
- /@babel/helper-annotate-as-pure/7.18.6:
- resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
+ /@babel/generator/7.14.5:
+ resolution: {integrity: sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
+ jsesc: 2.5.2
+ source-map: 0.5.7
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'}
+ /@babel/helper-annotate-as-pure/7.10.4:
+ resolution: {integrity: sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==}
+ dependencies:
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-builder-binary-assignment-operator-visitor/7.10.4:
+ resolution: {integrity: sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==}
+ dependencies:
+ '@babel/helper-explode-assignable-expression': 7.12.1
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-compilation-targets/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.19.0
+ '@babel/compat-data': 7.12.1
+ '@babel/core': 7.12.3
+ '@babel/helper-validator-option': 7.12.1
+ browserslist: 4.14.5
+ semver: 5.7.1
dev: true
- /@babel/helper-compilation-targets/7.19.1_@babel+core@7.19.1:
- resolution: {integrity: sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==}
+ /@babel/helper-compilation-targets/7.14.5_@babel+core@7.14.6:
+ resolution: {integrity: sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.19.1
- '@babel/core': 7.19.1
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.4
+ '@babel/compat-data': 7.14.7
+ '@babel/core': 7.14.6
+ '@babel/helper-validator-option': 7.14.5
+ browserslist: 4.16.6
semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.1:
- resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-member-expression-to-functions': 7.18.9
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/core': 7.12.3
+ '@babel/helper-function-name': 7.10.4
+ '@babel/helper-member-expression-to-functions': 7.12.1
+ '@babel/helper-optimise-call-expression': 7.10.4
+ '@babel/helper-replace-supers': 7.12.1
+ '@babel/helper-split-export-declaration': 7.11.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.1:
- resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-create-regexp-features-plugin/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.2.1
+ '@babel/core': 7.12.3
+ '@babel/helper-annotate-as-pure': 7.10.4
+ '@babel/helper-regex': 7.10.5
+ regexpu-core: 4.7.1
dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.1:
- resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
+ /@babel/helper-define-map/7.10.5:
+ resolution: {integrity: sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==}
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-function-name': 7.10.4
+ '@babel/types': 7.14.5
+ lodash: 4.17.21
dev: true
- /@babel/helper-environment-visitor/7.18.9:
- resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-explode-assignable-expression/7.12.1:
+ resolution: {integrity: sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==}
+ dependencies:
+ '@babel/types': 7.14.5
dev: true
- /@babel/helper-explode-assignable-expression/7.18.6:
- resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-function-name/7.10.4:
+ resolution: {integrity: sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/helper-get-function-arity': 7.10.4
+ '@babel/template': 7.10.4
+ '@babel/types': 7.14.5
dev: true
- /@babel/helper-function-name/7.19.0:
- resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
+ /@babel/helper-function-name/7.14.5:
+ resolution: {integrity: sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.19.0
+ '@babel/helper-get-function-arity': 7.14.5
+ '@babel/template': 7.14.5
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-get-function-arity/7.10.4:
+ resolution: {integrity: sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==}
+ dependencies:
+ '@babel/types': 7.14.5
dev: true
- /@babel/helper-hoist-variables/7.18.6:
- resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
+ /@babel/helper-get-function-arity/7.14.5:
+ resolution: {integrity: sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-hoist-variables/7.10.4:
+ resolution: {integrity: sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==}
+ dependencies:
+ '@babel/types': 7.14.5
dev: true
- /@babel/helper-member-expression-to-functions/7.18.9:
- resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
+ /@babel/helper-hoist-variables/7.14.5:
+ resolution: {integrity: sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
dev: true
- /@babel/helper-module-imports/7.18.6:
- resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
+ /@babel/helper-member-expression-to-functions/7.12.1:
+ resolution: {integrity: sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==}
+ dependencies:
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-member-expression-to-functions/7.14.7:
+ resolution: {integrity: sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-module-imports/7.12.1:
+ resolution: {integrity: sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==}
+ dependencies:
+ '@babel/types': 7.14.5
- /@babel/helper-module-transforms/7.19.0:
- resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==}
+ /@babel/helper-module-imports/7.14.5:
+ resolution: {integrity: sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==}
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.19.1
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.1
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-module-transforms/7.12.1:
+ resolution: {integrity: sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==}
+ dependencies:
+ '@babel/helper-module-imports': 7.12.1
+ '@babel/helper-replace-supers': 7.12.1
+ '@babel/helper-simple-access': 7.12.1
+ '@babel/helper-split-export-declaration': 7.11.0
+ '@babel/helper-validator-identifier': 7.10.4
+ '@babel/template': 7.10.4
+ '@babel/traverse': 7.12.1
+ '@babel/types': 7.14.5
+ lodash: 4.17.21
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-optimise-call-expression/7.18.6:
- resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
+ /@babel/helper-module-transforms/7.14.5:
+ resolution: {integrity: sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/helper-module-imports': 7.14.5
+ '@babel/helper-replace-supers': 7.14.5
+ '@babel/helper-simple-access': 7.14.5
+ '@babel/helper-split-export-declaration': 7.14.5
+ '@babel/helper-validator-identifier': 7.14.5
+ '@babel/template': 7.14.5
+ '@babel/traverse': 7.14.7
+ '@babel/types': 7.14.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-optimise-call-expression/7.10.4:
+ resolution: {integrity: sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==}
+ dependencies:
+ '@babel/types': 7.14.5
dev: true
- /@babel/helper-plugin-utils/7.19.0:
- resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==}
+ /@babel/helper-optimise-call-expression/7.14.5:
+ resolution: {integrity: sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-plugin-utils/7.10.4:
+ resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
dev: true
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
+ /@babel/helper-plugin-utils/7.14.5:
+ resolution: {integrity: sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
+ dev: true
+
+ /@babel/helper-regex/7.10.5:
+ resolution: {integrity: sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==}
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-wrap-function': 7.19.0
- '@babel/types': 7.19.0
+ lodash: 4.17.21
+ dev: true
+
+ /@babel/helper-remap-async-to-generator/7.12.1:
+ resolution: {integrity: sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==}
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.10.4
+ '@babel/helper-wrap-function': 7.12.3
+ '@babel/types': 7.14.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-replace-supers/7.19.1:
- resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-replace-supers/7.12.1:
+ resolution: {integrity: sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==}
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.19.1
- '@babel/types': 7.19.0
+ '@babel/helper-member-expression-to-functions': 7.12.1
+ '@babel/helper-optimise-call-expression': 7.10.4
+ '@babel/traverse': 7.12.1
+ '@babel/types': 7.14.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-simple-access/7.18.6:
- resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
+ /@babel/helper-replace-supers/7.14.5:
+ resolution: {integrity: sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/helper-member-expression-to-functions': 7.14.7
+ '@babel/helper-optimise-call-expression': 7.14.5
+ '@babel/traverse': 7.14.7
+ '@babel/types': 7.14.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/helper-skip-transparent-expression-wrappers/7.18.9:
- resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==}
- engines: {node: '>=6.9.0'}
+ /@babel/helper-simple-access/7.12.1:
+ resolution: {integrity: sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
dev: true
- /@babel/helper-split-export-declaration/7.18.6:
- resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
+ /@babel/helper-simple-access/7.14.5:
+ resolution: {integrity: sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
dev: true
- /@babel/helper-string-parser/7.18.10:
- resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==}
+ /@babel/helper-skip-transparent-expression-wrappers/7.12.1:
+ resolution: {integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==}
+ dependencies:
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-skip-transparent-expression-wrappers/7.14.5:
+ resolution: {integrity: sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/helper-split-export-declaration/7.11.0:
+ resolution: {integrity: sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==}
+ dependencies:
+ '@babel/types': 7.14.5
+ dev: true
- /@babel/helper-validator-identifier/7.19.1:
- resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
+ /@babel/helper-split-export-declaration/7.14.5:
+ resolution: {integrity: sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==}
engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.14.5
+ dev: true
- /@babel/helper-validator-option/7.18.6:
- resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
+ /@babel/helper-validator-identifier/7.10.4:
+ resolution: {integrity: sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==}
+ dev: true
+
+ /@babel/helper-validator-identifier/7.14.5:
+ resolution: {integrity: sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==}
engines: {node: '>=6.9.0'}
+
+ /@babel/helper-validator-option/7.12.1:
+ resolution: {integrity: sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==}
dev: true
- /@babel/helper-wrap-function/7.19.0:
- resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==}
+ /@babel/helper-validator-option/7.14.5:
+ resolution: {integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==}
engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/helper-wrap-function/7.12.3:
+ resolution: {integrity: sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==}
+ dependencies:
+ '@babel/helper-function-name': 7.10.4
+ '@babel/template': 7.10.4
+ '@babel/traverse': 7.12.1
+ '@babel/types': 7.14.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helpers/7.12.1:
+ resolution: {integrity: sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==}
dependencies:
- '@babel/helper-function-name': 7.19.0
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.1
- '@babel/types': 7.19.0
+ '@babel/template': 7.10.4
+ '@babel/traverse': 7.12.1
+ '@babel/types': 7.14.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helpers/7.19.0:
- resolution: {integrity: sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==}
+ /@babel/helpers/7.14.6:
+ resolution: {integrity: sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.1
- '@babel/types': 7.19.0
+ '@babel/template': 7.14.5
+ '@babel/traverse': 7.14.7
+ '@babel/types': 7.14.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/highlight/7.18.6:
- resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
+ /@babel/highlight/7.10.4:
+ resolution: {integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.14.5
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ dev: true
+
+ /@babel/highlight/7.14.5:
+ resolution: {integrity: sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.14.5
chalk: 2.4.2
js-tokens: 4.0.0
+ dev: true
- /@babel/parser/7.19.1:
- resolution: {integrity: sha512-h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A==}
+ /@babel/parser/7.12.3:
+ resolution: {integrity: sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
+ /@babel/parser/7.14.7:
+ resolution: {integrity: sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/types': 7.14.5
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-external-helpers/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-5VBqan0daXhDSRjrq2miABuELRwWJWFdM42Jvs/CDuhp+Es+fW+ISA5l+co8d+9oN3WLz/N3VvzyeseL3AvjxA==}
peerDependencies:
- '@babel/core': ^7.13.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-external-helpers/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-wNqc87qjLvsD1PIMQBzLn1bMuTlGzqLzM/1VGQ22Wm51cbCWS9k71ydp5iZS4hjwQNuTWSn/xbZkkusNENwtZg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-async-generator-functions/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-remap-async-to-generator': 7.12.1
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.19.1:
- resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-decorators/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-decorators': 7.12.1_@babel+core@7.12.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==}
peerDependencies:
- '@babel/core': ^7.12.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3
dev: true
- /@babel/plugin-proposal-decorators/7.19.1_@babel+core@7.19.1:
- resolution: {integrity: sha512-LfIKNBBY7Q1OX5C4xAgRQffOg2OnhAo9fnbcOHgOC9Yytm2Sw+4XqHufRYU86tHomzepxtvuVaNO+3EVKR4ivw==}
+ /@babel/plugin-proposal-dynamic-import/7.14.5_@babel+core@7.14.6:
+ resolution: {integrity: sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.19.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.14.6
+ '@babel/helper-plugin-utils': 7.14.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.6
dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-export-namespace-from/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-json-strings/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3
dev: true
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-logical-assignment-operators/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.14.5_@babel+core@7.14.6:
+ resolution: {integrity: sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.1
+ '@babel/core': 7.14.6
+ '@babel/helper-plugin-utils': 7.14.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.6
dev: true
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-numeric-separator/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.1
- '@babel/core': 7.19.1
- '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.1
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.3
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-optional-catch-binding/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3
dev: true
- /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-optional-chaining/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3
dev: true
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ /@babel/plugin-proposal-optional-chaining/7.14.5_@babel+core@7.14.6:
+ resolution: {integrity: sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.14.6
+ '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.14.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.14.6
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-private-methods/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
+ /@babel/plugin-proposal-unicode-property-regex/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.1:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.3:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.1:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ /@babel/plugin-syntax-class-properties/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.1:
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-decorators/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.19.1:
- resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.3:
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.1:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.14.6:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.14.6
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.1:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.3:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.3:
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.1:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.3:
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.1:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.3:
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.1:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.14.6:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.14.6
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.1:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.3:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.1:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.3:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.1:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.3:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.1:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.3:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.1:
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.14.6:
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.14.6
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.1:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-typescript/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-arrow-functions/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-async-to-generator/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-module-imports': 7.12.1
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-remap-async-to-generator': 7.12.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-block-scoped-functions/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-block-scoping/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.1:
- resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/core': 7.12.3
+ '@babel/helper-annotate-as-pure': 7.10.4
+ '@babel/helper-define-map': 7.10.5
+ '@babel/helper-function-name': 7.10.4
+ '@babel/helper-optimise-call-expression': 7.10.4
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-replace-supers': 7.12.1
+ '@babel/helper-split-export-declaration': 7.11.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-computed-properties/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.19.1:
- resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-destructuring/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-dotall-regex/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-duplicate-keys/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-exponentiation-operator/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.1:
- resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-for-of/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-function-name/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-function-name': 7.10.4
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-literals/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-member-expression-literals/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-modules-amd/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-module-transforms': 7.12.1
+ '@babel/helper-plugin-utils': 7.10.4
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-modules-commonjs/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-simple-access': 7.18.6
+ '@babel/core': 7.12.3
+ '@babel/helper-module-transforms': 7.12.1
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-simple-access': 7.12.1
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.1:
- resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==}
+ /@babel/plugin-transform-modules-commonjs/7.14.5_@babel+core@7.14.6:
+ resolution: {integrity: sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/core': 7.14.6
+ '@babel/helper-module-transforms': 7.14.5
+ '@babel/helper-plugin-utils': 7.14.5
+ '@babel/helper-simple-access': 7.14.5
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-modules-systemjs/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-hoist-variables': 7.10.4
+ '@babel/helper-module-transforms': 7.12.1
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-validator-identifier': 7.14.5
+ babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.1:
- resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-modules-umd/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.12.3
+ '@babel/helper-module-transforms': 7.12.1
+ '@babel/helper-plugin-utils': 7.10.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-named-capturing-groups-regex/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3
dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-new-target/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-object-super/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-replace-supers': 7.12.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.1:
- resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-property-literals/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-regenerator/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- regenerator-transform: 0.15.0
+ '@babel/core': 7.12.3
+ regenerator-transform: 0.14.5
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-reserved-words/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-runtime/7.19.1_@babel+core@7.19.1:
- resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-runtime/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.1
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.1
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.12.3
+ '@babel/helper-module-imports': 7.12.1
+ '@babel/helper-plugin-utils': 7.10.4
+ resolve: 1.18.1
+ semver: 5.7.1
dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-shorthand-properties/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.1:
- resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-spread/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-skip-transparent-expression-wrappers': 7.12.1
dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-sticky-regex/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-regex': 7.10.5
dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-template-literals/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.1:
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-typeof-symbol/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-typescript/7.19.1_@babel+core@7.19.1:
- resolution: {integrity: sha512-+ILcOU+6mWLlvCwnL920m2Ow3wWx3Wo8n2t5aROQmV55GZt+hOiLvBaa3DNzRjSEHa1aauRs4/YLmkCfFkhhRQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-typescript/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.1
+ '@babel/core': 7.12.3
+ '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-syntax-typescript': 7.12.1_@babel+core@7.12.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.1:
- resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-unicode-escapes/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.1:
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-transform-unicode-regex/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
dev: true
- /@babel/preset-env/7.19.1_@babel+core@7.19.1:
- resolution: {integrity: sha512-c8B2c6D16Lp+Nt6HcD+nHl0VbPKVnNPTpszahuxJJnurfMtKeZ80A+qUv48Y7wqvS+dTFuLuaM9oYxyNHbCLWA==}
- engines: {node: '>=6.9.0'}
+ /@babel/preset-env/7.12.1_@babel+core@7.12.3:
+ resolution: {integrity: sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.1
- '@babel/core': 7.19.1
- '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.19.1
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.1
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.1
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.1
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.1
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.1
- '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.1
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.1
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.1
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.1
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.1
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.1
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.1
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.1
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.1
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.1
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.19.1
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.1
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.19.1
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.19.1
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.1
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.1
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.19.1
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.1
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.1
- '@babel/preset-modules': 0.1.5_@babel+core@7.19.1
- '@babel/types': 7.19.0
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.1
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.1
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.1
- core-js-compat: 3.25.3
- semver: 6.3.0
+ '@babel/compat-data': 7.12.1
+ '@babel/core': 7.12.3
+ '@babel/helper-compilation-targets': 7.12.1_@babel+core@7.12.3
+ '@babel/helper-module-imports': 7.12.1
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/helper-validator-option': 7.12.1
+ '@babel/plugin-proposal-async-generator-functions': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-json-strings': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-logical-assignment-operators': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-numeric-separator': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-optional-catch-binding': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-class-properties': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3
+ '@babel/plugin-syntax-top-level-await': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-async-to-generator': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-block-scoped-functions': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-block-scoping': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-computed-properties': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-duplicate-keys': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-exponentiation-operator': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-function-name': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-literals': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-member-expression-literals': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-modules-amd': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-modules-systemjs': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-modules-umd': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-new-target': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-object-super': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-property-literals': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-regenerator': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-reserved-words': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-sticky-regex': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-typeof-symbol': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-unicode-escapes': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-unicode-regex': 7.12.1_@babel+core@7.12.3
+ '@babel/preset-modules': 0.1.4_@babel+core@7.12.3
+ '@babel/types': 7.12.1
+ core-js-compat: 3.6.5
+ semver: 5.7.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.19.1:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ /@babel/preset-modules/0.1.4_@babel+core@7.12.3:
+ resolution: {integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.1
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.1
- '@babel/types': 7.19.0
+ '@babel/core': 7.12.3
+ '@babel/helper-plugin-utils': 7.10.4
+ '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.3
+ '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.3
+ '@babel/types': 7.14.5
esutils: 2.0.3
dev: true
- /@babel/runtime/7.19.0:
- resolution: {integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==}
+ /@babel/runtime/7.12.1:
+ resolution: {integrity: sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==}
+ dependencies:
+ regenerator-runtime: 0.13.7
+ dev: true
+
+ /@babel/runtime/7.14.6:
+ resolution: {integrity: sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==}
engines: {node: '>=6.9.0'}
dependencies:
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.7
dev: true
- /@babel/template/7.18.10:
- resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
+ /@babel/template/7.10.4:
+ resolution: {integrity: sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==}
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ '@babel/parser': 7.12.3
+ '@babel/types': 7.14.5
+ dev: true
+
+ /@babel/template/7.14.5:
+ resolution: {integrity: sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/parser': 7.19.1
- '@babel/types': 7.19.0
+ '@babel/code-frame': 7.14.5
+ '@babel/parser': 7.14.7
+ '@babel/types': 7.14.5
dev: true
- /@babel/traverse/7.19.1:
- resolution: {integrity: sha512-0j/ZfZMxKukDaag2PtOPDbwuELqIar6lLskVPPJDjXMXjfLb1Obo/1yjxIGqqAJrmfaTIY3z2wFLAQ7qSkLsuA==}
+ /@babel/traverse/7.12.1:
+ resolution: {integrity: sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==}
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ '@babel/generator': 7.12.1
+ '@babel/helper-function-name': 7.10.4
+ '@babel/helper-split-export-declaration': 7.11.0
+ '@babel/parser': 7.12.3
+ '@babel/types': 7.14.5
+ debug: 4.3.4
+ globals: 11.12.0
+ lodash: 4.17.21
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/traverse/7.14.7:
+ resolution: {integrity: sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.19.0
- '@babel/helper-environment-visitor': 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.19.1
- '@babel/types': 7.19.0
+ '@babel/code-frame': 7.14.5
+ '@babel/generator': 7.14.5
+ '@babel/helper-function-name': 7.14.5
+ '@babel/helper-hoist-variables': 7.14.5
+ '@babel/helper-split-export-declaration': 7.14.5
+ '@babel/parser': 7.14.7
+ '@babel/types': 7.14.5
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/types/7.19.0:
- resolution: {integrity: sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==}
+ /@babel/types/7.12.1:
+ resolution: {integrity: sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.10.4
+ lodash: 4.17.21
+ to-fast-properties: 2.0.0
+ dev: true
+
+ /@babel/types/7.14.5:
+ resolution: {integrity: sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-string-parser': 7.18.10
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.14.5
to-fast-properties: 2.0.0
/@cspotcode/source-map-support/0.8.1:
@@ -1855,23 +1959,6 @@ packages:
'@jridgewell/trace-mapping': 0.3.9
dev: true
- /@eslint/eslintrc/0.4.3:
- resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==}
- engines: {node: ^10.12.0 || >=12.0.0}
- dependencies:
- ajv: 6.12.6
- debug: 4.3.4
- espree: 7.3.1
- globals: 13.17.0
- ignore: 4.0.6
- import-fresh: 3.3.0
- js-yaml: 3.14.1
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@eslint/eslintrc/1.3.2:
resolution: {integrity: sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1887,21 +1974,9 @@ packages:
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- dev: true
-
- /@humanwhocodes/config-array/0.10.5:
- resolution: {integrity: sha512-XVVDtp+dVvRxMoxSiSfasYaG02VEe1qH5cKgMQJWhol6HwzbcqoCMJi8dAGoYAO57jhUyhI6cWuRiTcRaDaYug==}
- engines: {node: '>=10.10.0'}
- dependencies:
- '@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@humanwhocodes/config-array/0.5.0:
- resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
+ /@humanwhocodes/config-array/0.10.7:
+ resolution: {integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -1909,16 +1984,13 @@ packages:
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- dev: false
/@humanwhocodes/gitignore-to-minimatch/1.0.2:
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==}
@@ -1934,54 +2006,33 @@ packages:
resolve-from: 5.0.0
dev: true
- /@istanbuljs/schema/0.1.3:
- resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
+ /@istanbuljs/schema/0.1.2:
+ resolution: {integrity: sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==}
engines: {node: '>=8'}
dev: true
- /@jridgewell/gen-mapping/0.1.1:
- resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
+ /@jridgewell/resolve-uri/3.0.7:
+ resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.14
dev: true
- /@jridgewell/gen-mapping/0.3.2:
- resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.14
- '@jridgewell/trace-mapping': 0.3.15
+ /@jridgewell/sourcemap-codec/1.4.13:
+ resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==}
dev: true
- /@jridgewell/resolve-uri/3.1.0:
- resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
- engines: {node: '>=6.0.0'}
- dev: true
-
- /@jridgewell/set-array/1.1.2:
- resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
- engines: {node: '>=6.0.0'}
- dev: true
-
- /@jridgewell/sourcemap-codec/1.4.14:
- resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
- dev: true
-
- /@jridgewell/trace-mapping/0.3.15:
- resolution: {integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==}
+ /@jridgewell/trace-mapping/0.3.9:
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
dependencies:
- '@jridgewell/resolve-uri': 3.1.0
- '@jridgewell/sourcemap-codec': 1.4.14
+ '@jridgewell/resolve-uri': 3.0.7
+ '@jridgewell/sourcemap-codec': 1.4.13
dev: true
- /@jridgewell/trace-mapping/0.3.9:
- resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
+ /@nodelib/fs.scandir/2.1.3:
+ resolution: {integrity: sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==}
+ engines: {node: '>= 8'}
dependencies:
- '@jridgewell/resolve-uri': 3.1.0
- '@jridgewell/sourcemap-codec': 1.4.14
+ '@nodelib/fs.stat': 2.0.3
+ run-parallel: 1.1.9
dev: true
/@nodelib/fs.scandir/2.1.5:
@@ -1991,29 +2042,42 @@ packages:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
+ /@nodelib/fs.stat/2.0.3:
+ resolution: {integrity: sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==}
+ engines: {node: '>= 8'}
+ dev: true
+
/@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
+ /@nodelib/fs.walk/1.2.4:
+ resolution: {integrity: sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==}
+ engines: {node: '>= 8'}
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.3
+ fastq: 1.8.0
+ dev: true
+
/@nodelib/fs.walk/1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.13.0
+ fastq: 1.11.1
- /@rollup/plugin-alias/3.1.9_rollup@2.79.1:
+ /@rollup/plugin-alias/3.1.9_rollup@2.67.3:
resolution: {integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==}
engines: {node: '>=8.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
dependencies:
- rollup: 2.79.1
+ rollup: 2.67.3
slash: 3.0.0
dev: true
- /@rollup/plugin-babel/5.3.1_r56fldxoyazzliugjcx2ns4pma:
- resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
+ /@rollup/plugin-babel/5.3.0_pcb26gospqgsyouccbwgqwmoa4:
+ resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==}
engines: {node: '>= 10.0.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -2023,159 +2087,161 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-module-imports': 7.18.6
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- rollup: 2.79.1
+ '@babel/core': 7.12.3
+ '@babel/helper-module-imports': 7.14.5
+ '@rollup/pluginutils': 3.1.0_rollup@2.78.1
+ rollup: 2.78.1
dev: true
- /@rollup/plugin-buble/0.21.3_rollup@2.79.1:
+ /@rollup/plugin-buble/0.21.3_rollup@2.67.3:
resolution: {integrity: sha512-Iv8cCuFPnMdqV4pcyU+OrfjOfagPArRQ1PyQjx5KgHk3dARedI+8PNTLSMpJts0lQJr8yF2pAU4GxpxCBJ9HYw==}
engines: {node: '>= 8.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
'@types/buble': 0.19.2
buble: 0.20.0
- rollup: 2.79.1
+ rollup: 2.67.3
dev: true
- /@rollup/plugin-commonjs/11.1.0_rollup@2.79.1:
+ /@rollup/plugin-commonjs/11.1.0_rollup@2.67.3:
resolution: {integrity: sha512-Ycr12N3ZPN96Fw2STurD21jMqzKwL9QuFhms3SD7KKRK7oaXUsBU9Zt0jL/rOPHiPYisI21/rXGO3jr9BnLHUA==}
engines: {node: '>= 8.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
commondir: 1.0.1
estree-walker: 1.0.1
- glob: 7.2.3
+ glob: 7.1.6
is-reference: 1.2.1
- magic-string: 0.25.9
- resolve: 1.22.1
- rollup: 2.79.1
+ magic-string: 0.25.7
+ resolve: 1.18.1
+ rollup: 2.67.3
dev: true
- /@rollup/plugin-commonjs/14.0.0_rollup@2.79.1:
+ /@rollup/plugin-commonjs/14.0.0_rollup@2.67.3:
resolution: {integrity: sha512-+PSmD9ePwTAeU106i9FRdc+Zb3XUWyW26mo5Atr2mk82hor8+nPwkztEjFo8/B1fJKfaQDg9aM2bzQkjhi7zOw==}
engines: {node: '>= 8.0.0'}
peerDependencies:
rollup: ^2.3.4
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
commondir: 1.0.1
estree-walker: 1.0.1
- glob: 7.2.3
+ glob: 7.1.6
is-reference: 1.2.1
- magic-string: 0.25.9
- resolve: 1.22.1
- rollup: 2.79.1
+ magic-string: 0.25.7
+ resolve: 1.18.1
+ rollup: 2.67.3
dev: true
- /@rollup/plugin-commonjs/22.0.2_rollup@2.79.1:
+ /@rollup/plugin-commonjs/22.0.2_rollup@2.78.1:
resolution: {integrity: sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==}
engines: {node: '>= 12.0.0'}
peerDependencies:
rollup: ^2.68.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.78.1
commondir: 1.0.1
- estree-walker: 2.0.2
- glob: 7.2.3
+ estree-walker: 2.0.1
+ glob: 7.1.7
is-reference: 1.2.1
- magic-string: 0.25.9
- resolve: 1.22.1
- rollup: 2.79.1
+ magic-string: 0.25.7
+ resolve: 1.20.0
+ rollup: 2.78.1
dev: true
- /@rollup/plugin-json/4.1.0_rollup@2.79.1:
+ /@rollup/plugin-json/4.1.0_rollup@2.67.3:
resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==}
peerDependencies:
rollup: ^1.20.0 || ^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- rollup: 2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ rollup: 2.67.3
dev: true
- /@rollup/plugin-node-resolve/10.0.0_rollup@2.79.1:
+ /@rollup/plugin-json/4.1.0_rollup@2.68.0:
+ resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==}
+ peerDependencies:
+ rollup: ^1.20.0 || ^2.0.0
+ dependencies:
+ '@rollup/pluginutils': 3.1.0_rollup@2.68.0
+ rollup: 2.68.0
+ dev: true
+
+ /@rollup/plugin-json/4.1.0_rollup@2.78.1:
+ resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==}
+ peerDependencies:
+ rollup: ^1.20.0 || ^2.0.0
+ dependencies:
+ '@rollup/pluginutils': 3.1.0_rollup@2.78.1
+ rollup: 2.78.1
+ dev: true
+
+ /@rollup/plugin-node-resolve/10.0.0_rollup@2.67.3:
resolution: {integrity: sha512-sNijGta8fqzwA1VwUEtTvWCx2E7qC70NMsDh4ZG13byAXYigBNZMxALhKUSycBks5gupJdq0lFrKumFrRZ8H3A==}
engines: {node: '>= 10.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
'@types/resolve': 1.17.1
- builtin-modules: 3.3.0
+ builtin-modules: 3.1.0
deepmerge: 4.2.2
is-module: 1.0.0
- resolve: 1.22.1
- rollup: 2.79.1
+ resolve: 1.18.1
+ rollup: 2.67.3
dev: true
- /@rollup/plugin-node-resolve/13.3.0_rollup@2.79.1:
- resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==}
+ /@rollup/plugin-node-resolve/13.1.3_rollup@2.68.0:
+ resolution: {integrity: sha512-BdxNk+LtmElRo5d06MGY4zoepyrXX1tkzX2hrnPEZ53k78GuOMWLqmJDGIIOPwVRIFZrLQOo+Yr6KtCuLIA0AQ==}
engines: {node: '>= 10.0.0'}
peerDependencies:
rollup: ^2.42.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.68.0
'@types/resolve': 1.17.1
+ builtin-modules: 3.2.0
deepmerge: 4.2.2
- is-builtin-module: 3.2.0
is-module: 1.0.0
- resolve: 1.22.1
- rollup: 2.79.1
+ resolve: 1.20.0
+ rollup: 2.68.0
dev: true
- /@rollup/plugin-node-resolve/8.4.0_rollup@2.67.3:
- resolution: {integrity: sha512-LFqKdRLn0ShtQyf6SBYO69bGE1upV6wUhBX0vFOUnLAyzx5cwp8svA0eHUnu8+YU57XOkrMtfG63QOpQx25pHQ==}
- engines: {node: '>= 8.0.0'}
+ /@rollup/plugin-node-resolve/14.1.0_rollup@3.0.0-7:
+ resolution: {integrity: sha512-5G2niJroNCz/1zqwXtk0t9+twOSDlG00k1Wfd7bkbbXmwg8H8dvgHdIWAun53Ps/rckfvOC7scDBjuGFg5OaWw==}
+ engines: {node: '>= 10.0.0'}
peerDependencies:
- rollup: ^1.20.0||^2.0.0
+ rollup: ^2.78.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ '@rollup/pluginutils': 3.1.0_rollup@3.0.0-7
'@types/resolve': 1.17.1
- builtin-modules: 3.3.0
- deep-freeze: 0.0.1
deepmerge: 4.2.2
+ is-builtin-module: 3.1.0
is-module: 1.0.0
- resolve: 1.22.1
- rollup: 2.67.3
+ resolve: 1.20.0
+ rollup: 3.0.0-7
dev: true
- /@rollup/plugin-node-resolve/8.4.0_rollup@2.79.1:
+ /@rollup/plugin-node-resolve/8.4.0_rollup@2.67.3:
resolution: {integrity: sha512-LFqKdRLn0ShtQyf6SBYO69bGE1upV6wUhBX0vFOUnLAyzx5cwp8svA0eHUnu8+YU57XOkrMtfG63QOpQx25pHQ==}
engines: {node: '>= 8.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
'@types/resolve': 1.17.1
- builtin-modules: 3.3.0
+ builtin-modules: 3.1.0
deep-freeze: 0.0.1
deepmerge: 4.2.2
is-module: 1.0.0
- resolve: 1.22.1
- rollup: 2.79.1
- dev: true
-
- /@rollup/plugin-node-resolve/9.0.0_rollup@2.79.1:
- resolution: {integrity: sha512-gPz+utFHLRrd41WMP13Jq5mqqzHL3OXrfj3/MkSyB6UBIcuNt9j60GCbarzMzdf1VHFpOxfQh/ez7wyadLMqkg==}
- engines: {node: '>= 10.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0
- dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- '@types/resolve': 1.17.1
- builtin-modules: 3.3.0
- deepmerge: 4.2.2
- is-module: 1.0.0
- resolve: 1.22.1
- rollup: 2.79.1
+ resolve: 1.18.1
+ rollup: 2.67.3
dev: true
- /@rollup/plugin-typescript/5.0.2_4cjbvluduiokxidtfkm6fskiwi:
+ /@rollup/plugin-typescript/5.0.2_2dbihhqkf5a4hxzstxnoyhj6ca:
resolution: {integrity: sha512-CkS028Itwjqm1uLbFVfpJgtVtnNvZ+og/m6UlNRR5wOOnNTWPcVQzOu5xGdEX+WWJxdvWIqUq2uR/RBt2ZipWg==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -2183,13 +2249,13 @@ packages:
tslib: '*'
typescript: '>=3.4.0'
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- resolve: 1.22.1
- rollup: 2.79.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ resolve: 1.18.1
+ rollup: 2.67.3
typescript: 4.1.2
dev: true
- /@rollup/plugin-typescript/5.0.2_5q64ijqsuisqe52alrh6v6njki:
+ /@rollup/plugin-typescript/5.0.2_fgliwuqalyymca5qc5u4dmwjqq:
resolution: {integrity: sha512-CkS028Itwjqm1uLbFVfpJgtVtnNvZ+og/m6UlNRR5wOOnNTWPcVQzOu5xGdEX+WWJxdvWIqUq2uR/RBt2ZipWg==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -2197,14 +2263,14 @@ packages:
tslib: '*'
typescript: '>=3.4.0'
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- resolve: 1.22.1
- rollup: 2.79.1
- typescript: 4.8.3
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ resolve: 1.18.1
+ rollup: 2.67.3
+ typescript: 4.7.3
dev: true
- /@rollup/plugin-typescript/5.0.2_m2cz2zuj3xwmuolb5rf666rpsm:
- resolution: {integrity: sha512-CkS028Itwjqm1uLbFVfpJgtVtnNvZ+og/m6UlNRR5wOOnNTWPcVQzOu5xGdEX+WWJxdvWIqUq2uR/RBt2ZipWg==}
+ /@rollup/plugin-typescript/6.0.0_2dbihhqkf5a4hxzstxnoyhj6ca:
+ resolution: {integrity: sha512-Y5U2L4eaF3wUSgCZRMdvNmuzWkKMyN3OwvhAdbzAi5sUqedaBk/XbzO4T7RlViDJ78MOPhwAIv2FtId/jhMtbg==}
engines: {node: '>=8.0.0'}
peerDependencies:
rollup: ^2.14.0
@@ -2212,12 +2278,12 @@ packages:
typescript: '>=3.4.0'
dependencies:
'@rollup/pluginutils': 3.1.0_rollup@2.67.3
- resolve: 1.22.1
+ resolve: 1.18.1
rollup: 2.67.3
- typescript: 4.8.3
+ typescript: 4.1.2
dev: true
- /@rollup/plugin-typescript/6.1.0_5q64ijqsuisqe52alrh6v6njki:
+ /@rollup/plugin-typescript/6.1.0_2dbihhqkf5a4hxzstxnoyhj6ca:
resolution: {integrity: sha512-hJxaiE6WyNOsK+fZpbFh9CUijZYqPQuAOWO5khaGTUkM8DYNNyA2TDlgamecE+qLOG1G1+CwbWMAx3rbqpp6xQ==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -2225,10 +2291,10 @@ packages:
tslib: '*'
typescript: '>=3.4.0'
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.1
- resolve: 1.22.1
- rollup: 2.79.1
- typescript: 4.8.3
+ '@rollup/pluginutils': 3.1.0_rollup@2.67.3
+ resolve: 1.20.0
+ rollup: 2.67.3
+ typescript: 4.1.2
dev: true
/@rollup/plugin-typescript/8.5.0_typescript@4.8.3:
@@ -2243,17 +2309,34 @@ packages:
optional: true
dependencies:
'@rollup/pluginutils': 3.1.0
- resolve: 1.22.1
+ resolve: 1.20.0
+ typescript: 4.8.3
+ dev: true
+
+ /@rollup/plugin-typescript/8.5.0_vmpcm5aav5u37diqfc6pdubvhq:
+ resolution: {integrity: sha512-wMv1/scv0m/rXx21wD2IsBbJFba8wGF3ErJIr6IKRfRj49S85Lszbxb4DCo8iILpluTjk2GAAu9CoZt4G3ppgQ==}
+ engines: {node: '>=8.0.0'}
+ peerDependencies:
+ rollup: ^2.14.0
+ tslib: '*'
+ typescript: '>=3.7.0'
+ peerDependenciesMeta:
+ tslib:
+ optional: true
+ dependencies:
+ '@rollup/pluginutils': 3.1.0_rollup@3.0.0-7
+ resolve: 1.20.0
+ rollup: 3.0.0-7
typescript: 4.8.3
dev: true
- /@rollup/plugin-virtual/2.1.0_rollup@2.79.1:
+ /@rollup/plugin-virtual/2.1.0_rollup@2.67.3:
resolution: {integrity: sha512-CPPAtlKT53HFqC8jFHb/V5WErpU8Hrq2TyCR0A7kPQMlF2wNUf0o1xuAc+Qxj8NCZM0Z3Yvl+FbUXfJjVWqDwA==}
engines: {node: '>=8.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
dependencies:
- rollup: 2.79.1
+ rollup: 2.67.3
dev: false
/@rollup/pluginutils/3.1.0:
@@ -2264,7 +2347,7 @@ packages:
dependencies:
'@types/estree': 0.0.39
estree-walker: 1.0.1
- picomatch: 2.3.1
+ picomatch: 2.2.2
dev: true
/@rollup/pluginutils/3.1.0_rollup@2.67.3:
@@ -2275,11 +2358,10 @@ packages:
dependencies:
'@types/estree': 0.0.39
estree-walker: 1.0.1
- picomatch: 2.3.1
+ picomatch: 2.2.2
rollup: 2.67.3
- dev: true
- /@rollup/pluginutils/3.1.0_rollup@2.79.1:
+ /@rollup/pluginutils/3.1.0_rollup@2.68.0:
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
engines: {node: '>= 8.0.0'}
peerDependencies:
@@ -2287,24 +2369,47 @@ packages:
dependencies:
'@types/estree': 0.0.39
estree-walker: 1.0.1
- picomatch: 2.3.1
- rollup: 2.79.1
+ picomatch: 2.2.2
+ rollup: 2.68.0
+
+ /@rollup/pluginutils/3.1.0_rollup@2.78.1:
+ resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
+ engines: {node: '>= 8.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0
+ dependencies:
+ '@types/estree': 0.0.39
+ estree-walker: 1.0.1
+ picomatch: 2.2.2
+ rollup: 2.78.1
+
+ /@rollup/pluginutils/3.1.0_rollup@3.0.0-7:
+ resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
+ engines: {node: '>= 8.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0
+ dependencies:
+ '@types/estree': 0.0.39
+ estree-walker: 1.0.1
+ picomatch: 2.2.2
+ rollup: 3.0.0-7
+ dev: true
/@rollup/pluginutils/4.2.1:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
dependencies:
- estree-walker: 2.0.2
- picomatch: 2.3.1
+ estree-walker: 2.0.1
+ picomatch: 2.3.0
dev: false
- /@sindresorhus/is/4.6.0:
- resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
+ /@sindresorhus/is/4.0.1:
+ resolution: {integrity: sha512-Qm9hBEBu18wt1PO2flE7LPb30BHMQt1eQgbV76YntdNk73XZGpn3izvGTYxbGgzXKgbCjiia0uxTd3aTNQrY/g==}
engines: {node: '>=10'}
dev: true
- /@sinonjs/commons/1.8.3:
- resolution: {integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==}
+ /@sinonjs/commons/1.8.1:
+ resolution: {integrity: sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==}
dependencies:
type-detect: 4.0.8
dev: true
@@ -2312,26 +2417,26 @@ packages:
/@sinonjs/fake-timers/6.0.1:
resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.1
dev: true
/@sinonjs/formatio/5.0.1:
resolution: {integrity: sha512-KaiQ5pBf1MpS09MuA0kp6KBQt2JUOQycqVG1NZXvzeaXe5LGFqAKueIS0bw4w0P9r7KuBSVdUk5QjXsUdu2CxQ==}
dependencies:
- '@sinonjs/commons': 1.8.3
- '@sinonjs/samsam': 5.3.1
+ '@sinonjs/commons': 1.8.1
+ '@sinonjs/samsam': 5.2.0
dev: true
- /@sinonjs/samsam/5.3.1:
- resolution: {integrity: sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==}
+ /@sinonjs/samsam/5.2.0:
+ resolution: {integrity: sha512-CaIcyX5cDsjcW/ab7HposFWzV1kC++4HNsfnEdFJa7cP1QIuILAKV+BgfeqRXhcnSAc76r/Rh/O5C+300BwUIw==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.1
lodash.get: 4.4.2
type-detect: 4.0.8
dev: true
- /@sinonjs/text-encoding/0.7.2:
- resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==}
+ /@sinonjs/text-encoding/0.7.1:
+ resolution: {integrity: sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==}
dev: true
/@szmarczak/http-timer/4.0.6:
@@ -2341,79 +2446,79 @@ packages:
defer-to-connect: 2.0.1
dev: true
- /@tsconfig/node10/1.0.9:
- resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
+ /@tsconfig/node10/1.0.8:
+ resolution: {integrity: sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==}
dev: true
- /@tsconfig/node12/1.0.11:
- resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+ /@tsconfig/node12/1.0.9:
+ resolution: {integrity: sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==}
dev: true
- /@tsconfig/node14/1.0.3:
- resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+ /@tsconfig/node14/1.0.1:
+ resolution: {integrity: sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==}
dev: true
- /@tsconfig/node16/1.0.3:
- resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==}
+ /@tsconfig/node16/1.0.2:
+ resolution: {integrity: sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==}
dev: true
- /@types/babel__core/7.1.19:
- resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==}
+ /@types/babel__core/7.1.10:
+ resolution: {integrity: sha512-x8OM8XzITIMyiwl5Vmo2B1cR1S1Ipkyv4mdlbJjMa1lmuKvKY9FrBbEANIaMlnWn5Rf7uO+rC/VgYabNkE17Hw==}
dependencies:
- '@babel/parser': 7.19.1
- '@babel/types': 7.19.0
- '@types/babel__generator': 7.6.4
- '@types/babel__template': 7.4.1
- '@types/babel__traverse': 7.18.2
+ '@babel/parser': 7.12.3
+ '@babel/types': 7.12.1
+ '@types/babel__generator': 7.6.2
+ '@types/babel__template': 7.0.3
+ '@types/babel__traverse': 7.0.15
dev: true
- /@types/babel__generator/7.6.4:
- resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
+ /@types/babel__generator/7.6.2:
+ resolution: {integrity: sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
dev: true
- /@types/babel__template/7.4.1:
- resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
+ /@types/babel__template/7.0.3:
+ resolution: {integrity: sha512-uCoznIPDmnickEi6D0v11SBpW0OuVqHJCa7syXqQHy5uktSCreIlt0iglsCnmvz8yCb38hGcWeseA8cWJSwv5Q==}
dependencies:
- '@babel/parser': 7.19.1
- '@babel/types': 7.19.0
+ '@babel/parser': 7.12.3
+ '@babel/types': 7.14.5
dev: true
- /@types/babel__traverse/7.18.2:
- resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==}
+ /@types/babel__traverse/7.0.15:
+ resolution: {integrity: sha512-Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A==}
dependencies:
- '@babel/types': 7.19.0
+ '@babel/types': 7.14.5
dev: true
/@types/buble/0.19.2:
resolution: {integrity: sha512-uUD8zIfXMKThmFkahTXDGI3CthFH1kMg2dOm3KLi4GlC5cbARA64bEcUMbbWdWdE73eoc/iBB9PiTMqH0dNS2Q==}
dependencies:
- magic-string: 0.25.9
+ magic-string: 0.25.7
/@types/cacheable-request/6.0.2:
resolution: {integrity: sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==}
dependencies:
'@types/http-cache-semantics': 4.0.1
- '@types/keyv': 3.1.4
- '@types/node': 18.7.21
+ '@types/keyv': 3.1.2
+ '@types/node': 16.11.12
'@types/responselike': 1.0.0
dev: true
/@types/conventional-commits-parser/3.0.2:
resolution: {integrity: sha512-1kVPUHFaart1iGRFxKn8WNXYEDVAgMb+DLatgql2dGg9jTGf3bNxWtN//C/tDG3ckOLg4u7SSx+qcn8VjzI5zg==}
dependencies:
- '@types/node': 18.7.21
+ '@types/node': 16.11.12
dev: true
/@types/d3-dsv/1.2.1:
resolution: {integrity: sha512-LLmJmjiqp/fTNEdij5bIwUJ6P6TVNk5hKM9/uk5RPO2YNgEu9XvKO0dJ7Iqd3psEdmZN1m7gB1bOsjr4HmO2BA==}
dev: false
- /@types/eslint/7.29.0:
- resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==}
+ /@types/eslint/8.4.6:
+ resolution: {integrity: sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g==}
dependencies:
- '@types/estree': 1.0.0
+ '@types/estree': 0.0.45
'@types/json-schema': 7.0.11
dev: true
@@ -2422,16 +2527,12 @@ packages:
/@types/estree/0.0.45:
resolution: {integrity: sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g==}
- dev: true
- /@types/estree/1.0.0:
- resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
-
- /@types/glob/7.2.0:
- resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
+ /@types/glob/7.1.3:
+ resolution: {integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==}
dependencies:
- '@types/minimatch': 5.1.2
- '@types/node': 18.7.21
+ '@types/minimatch': 3.0.3
+ '@types/node': 14.14.3
dev: true
/@types/http-cache-semantics/4.0.1:
@@ -2446,34 +2547,42 @@ packages:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/keyv/3.1.4:
- resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
+ /@types/keyv/3.1.2:
+ resolution: {integrity: sha512-/FvAK2p4jQOaJ6CGDHJTqZcUtbZe820qIeTg7o0Shg7drB4JHeL+V/dhSaly7NXx6u8eSee+r7coT+yuJEvDLg==}
dependencies:
- '@types/node': 18.7.21
+ '@types/node': 16.11.12
+ dev: true
+
+ /@types/minimatch/3.0.3:
+ resolution: {integrity: sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==}
dev: true
- /@types/minimatch/5.1.2:
- resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
+ /@types/minimist/1.2.0:
+ resolution: {integrity: sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=}
dev: true
/@types/minimist/1.2.2:
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
dev: true
- /@types/node/10.17.60:
- resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==}
+ /@types/node/10.17.48:
+ resolution: {integrity: sha512-Agl6xbYP6FOMDeAsr3QVZ+g7Yzg0uhPHWx0j5g4LFdUBHVtqtU+gH660k/lCEe506jJLOGbEzsnqPDTZGJQLag==}
dev: true
/@types/node/14.0.26:
resolution: {integrity: sha512-W+fpe5s91FBGE0pEa0lnqGLL4USgpLgs4nokw16SrBBco/gQxuua7KnArSEOd5iaMqbbSHV10vUDkJYJJqpXKA==}
dev: false
+ /@types/node/14.14.3:
+ resolution: {integrity: sha512-33/L34xS7HVUx23e0wOT2V1qPF1IrHgQccdJVm9uXGTB9vFBrrzBtkQymT8VskeKOxjz55MSqMv0xuLq+u98WQ==}
+ dev: true
+
/@types/node/14.18.30:
resolution: {integrity: sha512-8OEyg4oc/CqN5+LbInKNLA8MfbGzbC+k8lVPePXazuwEVrVeQ9gwMDX00HJwWbC7syc1FWRU6Mow0Lm+mibHAQ==}
dev: true
- /@types/node/18.7.21:
- resolution: {integrity: sha512-rLFzK5bhM0YPyCoTC8bolBjMk7bwnZ8qeZUBslBfjZQou2ssJdWslx9CZ8DGM+Dx7QXQiiTVZ/6QO6kwtHkZCA==}
+ /@types/node/16.11.12:
+ resolution: {integrity: sha512-+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw==}
/@types/normalize-package-data/2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -2483,37 +2592,37 @@ packages:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
dev: true
- /@types/picomatch/2.3.0:
- resolution: {integrity: sha512-O397rnSS9iQI4OirieAtsDqvCj4+3eY1J+EPdNTKuHuRWIfUoGyzX294o8C4KJYaLqgSrd2o60c5EqCU8Zv02g==}
+ /@types/picomatch/2.2.1:
+ resolution: {integrity: sha512-26/tQcDmJXYHiaWAAIjnTVL5nwrT+IVaqFZIbBImAuKk/r/j1r/1hmZ7uaOzG6IknqP3QHcNNQ6QO8Vp28lUoA==}
dev: true
- /@types/q/1.5.5:
- resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==}
+ /@types/q/1.5.4:
+ resolution: {integrity: sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==}
dev: true
/@types/resolve/1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 18.7.21
+ '@types/node': 16.11.12
/@types/responselike/1.0.0:
resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
dependencies:
- '@types/node': 18.7.21
+ '@types/node': 16.11.12
dev: true
- /@types/semver/7.3.12:
- resolution: {integrity: sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==}
+ /@types/semver/7.3.7:
+ resolution: {integrity: sha512-4g1jrL98mdOIwSOUh6LTlB0Cs9I0dQPwINUhBg7C6pN4HLr8GS8xsksJxilW6S6dQHVi2K/o+lQuQcg7LroCnw==}
dev: true
- /@types/source-map-support/0.5.6:
- resolution: {integrity: sha512-b2nJ9YyXmkhGaa2b8VLM0kJ04xxwNyijcq12/kDoomCt43qbHBeK2SLNJ9iJmETaAj+bKUT05PQUu3Q66GvLhQ==}
+ /@types/source-map-support/0.5.4:
+ resolution: {integrity: sha512-9zGujX1sOPg32XLyfgEB/0G9ZnrjthL/Iv1ZfuAjj8LEilHZEpQSQs1scpRXPhHzGYgWiLz9ldF1cI8JhL+yMw==}
dependencies:
source-map: 0.6.1
dev: true
- /@types/yargs-parser/20.2.2:
- resolution: {integrity: sha512-sUWMriymrSqTvxCmCkf+7k392TNDcMJBHI1/rysWJxKnWAan/Zk4gZ/GEieSRo4EqIEPpbGU3Sd/0KTRoIA3pA==}
+ /@types/yargs-parser/20.2.1:
+ resolution: {integrity: sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==}
dev: true
/@typescript-eslint/eslint-plugin/5.33.0_hx3vidjro2o7pqm3xdndlcop3a:
@@ -2543,8 +2652,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/eslint-plugin/5.38.0_4gkcvl6qsi23tqqawfqgcwtp54:
- resolution: {integrity: sha512-GgHi/GNuUbTOeoJiEANi0oI6fF3gBQc3bGFYj40nnAPCbhrtEDf2rjBmefFadweBmO1Du1YovHeDP2h5JLhtTQ==}
+ /@typescript-eslint/eslint-plugin/5.39.0_tpdaglskdu47lqqe3htxsbxb5y:
+ resolution: {integrity: sha512-xVfKOkBm5iWMNGKQ2fwX5GVgBuHmZBO1tCRwXmY5oAIsPscfwm2UADDuNB8ZVYCtpQvJK4xpjrK7jEhcJ0zY9A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -2554,10 +2663,10 @@ packages:
typescript:
optional: true
dependencies:
- '@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
+ '@typescript-eslint/parser': 5.39.0_7ilbxdl5iguzcjriqqcg2m5cku
+ '@typescript-eslint/scope-manager': 5.39.0
+ '@typescript-eslint/type-utils': 5.39.0_7ilbxdl5iguzcjriqqcg2m5cku
+ '@typescript-eslint/utils': 5.39.0_7ilbxdl5iguzcjriqqcg2m5cku
debug: 4.3.4
eslint: 8.24.0
ignore: 5.2.0
@@ -2569,13 +2678,13 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/experimental-utils/5.38.0_iopuwovpd3qd4ttrbpmiexfkga:
- resolution: {integrity: sha512-kzXBRfvGlicgGk4CYuRUqKvwc2s3wHXNssUWWJU18bhMRxriFm3BZWyQ6vEHBRpEIMKB6b7MIQHO+9lYlts19w==}
+ /@typescript-eslint/experimental-utils/5.39.0_iopuwovpd3qd4ttrbpmiexfkga:
+ resolution: {integrity: sha512-n5N9kG/oGu2xXhHzsWzn94s6CWoiUj59FPU2dF2IQZxPftw+q6Jm5sV2vj5qTgAElRooHhrgtl2gxBQDCPt6WA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.38.0_iopuwovpd3qd4ttrbpmiexfkga
+ '@typescript-eslint/utils': 5.39.0_iopuwovpd3qd4ttrbpmiexfkga
eslint: 8.21.0
transitivePeerDependencies:
- supports-color
@@ -2602,8 +2711,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser/5.38.0_7ilbxdl5iguzcjriqqcg2m5cku:
- resolution: {integrity: sha512-/F63giJGLDr0ms1Cr8utDAxP2SPiglaD6V+pCOcG35P2jCqdfR7uuEhz1GIC3oy4hkUF8xA1XSXmd9hOh/a5EA==}
+ /@typescript-eslint/parser/5.39.0_7ilbxdl5iguzcjriqqcg2m5cku:
+ resolution: {integrity: sha512-PhxLjrZnHShe431sBAGHaNe6BDdxAASDySgsBCGxcBecVCi8NQWxQZMcizNA4g0pN51bBAn/FUfkWG3SDVcGlA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -2612,9 +2721,9 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.38.0
- '@typescript-eslint/types': 5.38.0
- '@typescript-eslint/typescript-estree': 5.38.0_typescript@4.8.3
+ '@typescript-eslint/scope-manager': 5.39.0
+ '@typescript-eslint/types': 5.39.0
+ '@typescript-eslint/typescript-estree': 5.39.0_typescript@4.8.3
debug: 4.3.4
eslint: 8.24.0
typescript: 4.8.3
@@ -2630,12 +2739,12 @@ packages:
'@typescript-eslint/visitor-keys': 5.33.0
dev: true
- /@typescript-eslint/scope-manager/5.38.0:
- resolution: {integrity: sha512-ByhHIuNyKD9giwkkLqzezZ9y5bALW8VNY6xXcP+VxoH4JBDKjU5WNnsiD4HJdglHECdV+lyaxhvQjTUbRboiTA==}
+ /@typescript-eslint/scope-manager/5.39.0:
+ resolution: {integrity: sha512-/I13vAqmG3dyqMVSZPjsbuNQlYS082Y7OMkwhCfLXYsmlI0ca4nkL7wJ/4gjX70LD4P8Hnw1JywUVVAwepURBw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.38.0
- '@typescript-eslint/visitor-keys': 5.38.0
+ '@typescript-eslint/types': 5.39.0
+ '@typescript-eslint/visitor-keys': 5.39.0
dev: true
/@typescript-eslint/type-utils/5.33.0_iopuwovpd3qd4ttrbpmiexfkga:
@@ -2657,8 +2766,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/type-utils/5.38.0_7ilbxdl5iguzcjriqqcg2m5cku:
- resolution: {integrity: sha512-iZq5USgybUcj/lfnbuelJ0j3K9dbs1I3RICAJY9NZZpDgBYXmuUlYQGzftpQA9wC8cKgtS6DASTvF3HrXwwozA==}
+ /@typescript-eslint/type-utils/5.39.0_7ilbxdl5iguzcjriqqcg2m5cku:
+ resolution: {integrity: sha512-KJHJkOothljQWzR3t/GunL0TPKY+fGJtnpl+pX+sJ0YiKTz3q2Zr87SGTmFqsCMFrLt5E0+o+S6eQY0FAXj9uA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -2667,8 +2776,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.38.0_typescript@4.8.3
- '@typescript-eslint/utils': 5.38.0_7ilbxdl5iguzcjriqqcg2m5cku
+ '@typescript-eslint/typescript-estree': 5.39.0_typescript@4.8.3
+ '@typescript-eslint/utils': 5.39.0_7ilbxdl5iguzcjriqqcg2m5cku
debug: 4.3.4
eslint: 8.24.0
tsutils: 3.21.0_typescript@4.8.3
@@ -2682,8 +2791,8 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types/5.38.0:
- resolution: {integrity: sha512-HHu4yMjJ7i3Cb+8NUuRCdOGu2VMkfmKyIJsOr9PfkBVYLYrtMCK/Ap50Rpov+iKpxDTfnqvDbuPLgBE5FwUNfA==}
+ /@typescript-eslint/types/5.39.0:
+ resolution: {integrity: sha512-gQMZrnfEBFXK38hYqt8Lkwt8f4U6yq+2H5VDSgP/qiTzC8Nw8JO3OuSUOQ2qW37S/dlwdkHDntkZM6SQhKyPhw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
@@ -2708,8 +2817,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree/5.38.0_typescript@4.8.3:
- resolution: {integrity: sha512-6P0RuphkR+UuV7Avv7MU3hFoWaGcrgOdi8eTe1NwhMp2/GjUJoODBTRWzlHpZh6lFOaPmSvgxGlROa0Sg5Zbyg==}
+ /@typescript-eslint/typescript-estree/5.39.0_typescript@4.8.3:
+ resolution: {integrity: sha512-qLFQP0f398sdnogJoLtd43pUgB18Q50QSA+BTE5h3sUxySzbWDpTSdgt4UyxNSozY/oDK2ta6HVAzvGgq8JYnA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -2717,8 +2826,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.38.0
- '@typescript-eslint/visitor-keys': 5.38.0
+ '@typescript-eslint/types': 5.39.0
+ '@typescript-eslint/visitor-keys': 5.39.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -2747,16 +2856,16 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils/5.38.0_7ilbxdl5iguzcjriqqcg2m5cku:
- resolution: {integrity: sha512-6sdeYaBgk9Fh7N2unEXGz+D+som2QCQGPAf1SxrkEr+Z32gMreQ0rparXTNGRRfYUWk/JzbGdcM8NSSd6oqnTA==}
+ /@typescript-eslint/utils/5.39.0_7ilbxdl5iguzcjriqqcg2m5cku:
+ resolution: {integrity: sha512-+DnY5jkpOpgj+EBtYPyHRjXampJfC0yUZZzfzLuUWVZvCuKqSdJVC8UhdWipIw7VKNTfwfAPiOWzYkAwuIhiAg==}
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.38.0
- '@typescript-eslint/types': 5.38.0
- '@typescript-eslint/typescript-estree': 5.38.0_typescript@4.8.3
+ '@typescript-eslint/scope-manager': 5.39.0
+ '@typescript-eslint/types': 5.39.0
+ '@typescript-eslint/typescript-estree': 5.39.0_typescript@4.8.3
eslint: 8.24.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.24.0
@@ -2765,16 +2874,16 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils/5.38.0_iopuwovpd3qd4ttrbpmiexfkga:
- resolution: {integrity: sha512-6sdeYaBgk9Fh7N2unEXGz+D+som2QCQGPAf1SxrkEr+Z32gMreQ0rparXTNGRRfYUWk/JzbGdcM8NSSd6oqnTA==}
+ /@typescript-eslint/utils/5.39.0_iopuwovpd3qd4ttrbpmiexfkga:
+ resolution: {integrity: sha512-+DnY5jkpOpgj+EBtYPyHRjXampJfC0yUZZzfzLuUWVZvCuKqSdJVC8UhdWipIw7VKNTfwfAPiOWzYkAwuIhiAg==}
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.38.0
- '@typescript-eslint/types': 5.38.0
- '@typescript-eslint/typescript-estree': 5.38.0_typescript@4.8.3
+ '@typescript-eslint/scope-manager': 5.39.0
+ '@typescript-eslint/types': 5.39.0
+ '@typescript-eslint/typescript-estree': 5.39.0_typescript@4.8.3
eslint: 8.21.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.21.0
@@ -2791,11 +2900,11 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@typescript-eslint/visitor-keys/5.38.0:
- resolution: {integrity: sha512-MxnrdIyArnTi+XyFLR+kt/uNAcdOnmT+879os7qDRI+EYySR4crXJq9BXPfRzzLGq0wgxkwidrCJ9WCAoacm1w==}
+ /@typescript-eslint/visitor-keys/5.39.0:
+ resolution: {integrity: sha512-yyE3RPwOG+XJBLrhvsxAidUgybJVQ/hG8BhiJo0k8JSAYfk/CshVcxf0HwP4Jt7WZZ6vLmxdo1p6EyN3tzFTkg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.38.0
+ '@typescript-eslint/types': 5.39.0
eslint-visitor-keys: 3.3.0
dev: true
@@ -2809,7 +2918,6 @@ packages:
/acorn-dynamic-import/4.0.0_acorn@6.4.2:
resolution: {integrity: sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==}
- deprecated: This is probably built in to whatever tool you're using. If you still need it... idk
peerDependencies:
acorn: ^6.0.0
dependencies:
@@ -2817,35 +2925,25 @@ packages:
/acorn-dynamic-import/4.0.0_acorn@7.4.1:
resolution: {integrity: sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==}
- deprecated: This is probably built in to whatever tool you're using. If you still need it... idk
peerDependencies:
acorn: ^6.0.0
dependencies:
acorn: 7.4.1
dev: true
- /acorn-jsx/5.3.2_acorn@6.4.2:
- resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ /acorn-jsx/5.3.1_acorn@6.4.2:
+ resolution: {integrity: sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: 6.4.2
- /acorn-jsx/5.3.2_acorn@7.4.1:
- resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- acorn: 7.4.1
- dev: false
-
/acorn-jsx/5.3.2_acorn@8.8.0:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: 8.8.0
- dev: true
/acorn-walk/8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
@@ -2861,12 +2959,24 @@ packages:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
+ dev: true
+
+ /acorn/8.0.4:
+ resolution: {integrity: sha512-XNP0PqF1XD19ZlLKvB7cMmnZswW4C/03pRHgirB30uSJTaS3A3V1/P4sS3HPvFmjoriPCJQs+JDSbm4bL1TxGQ==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: true
+
+ /acorn/8.7.1:
+ resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: true
/acorn/8.8.0:
resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
/aggregate-error/3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
@@ -2892,22 +3002,14 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ajv/8.11.0:
- resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==}
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
- dev: false
-
/alphanum-sort/1.0.2:
- resolution: {integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==}
+ resolution: {integrity: sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=}
dev: true
- /ansi-colors/4.1.3:
- resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ /ansi-colors/4.1.1:
+ resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
engines: {node: '>=6'}
+ dev: true
/ansi-escapes/4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
@@ -2921,6 +3023,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /ansi-regex/5.0.0:
+ resolution: {integrity: sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==}
+ engines: {node: '>=8'}
+ dev: true
+
/ansi-regex/5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
@@ -2953,7 +3060,7 @@ packages:
dev: true
/any-promise/1.3.0:
- resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
+ resolution: {integrity: sha1-q8av7tzqUugJzcA3au0845Y10X8=}
dev: false
/anymatch/3.1.2:
@@ -2972,7 +3079,7 @@ packages:
dev: true
/archy/1.0.0:
- resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==}
+ resolution: {integrity: sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=}
dev: true
/arg/4.1.3:
@@ -2986,7 +3093,6 @@ packages:
/argparse/2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- dev: true
/array-find-index/1.0.2:
resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==}
@@ -3000,36 +3106,24 @@ packages:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.3
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.1.1
is-string: 1.0.7
dev: true
/array-union/2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- dev: true
/array.prototype.flat/1.3.0:
resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
+ define-properties: 1.1.3
es-abstract: 1.20.3
es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.reduce/1.0.4:
- resolution: {integrity: sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.4
- es-abstract: 1.20.3
- es-array-method-boxes-properly: 1.0.0
- is-string: 1.0.7
- dev: true
-
/arrgv/1.0.2:
resolution: {integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==}
engines: {node: '>=8.0.0'}
@@ -3048,6 +3142,7 @@ packages:
/astral-regex/2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
+ dev: true
/ava/4.3.3:
resolution: {integrity: sha512-9Egq/d9R74ExrWohHeqUlexjDbgZJX5jA1Wq4KCTqc3wIfpGEK79zVy4rBtofJ9YKIxs4PzhJ8BgbW5PlAYe6w==}
@@ -3103,7 +3198,7 @@ packages:
supertap: 3.0.1
temp-dir: 2.0.0
write-file-atomic: 4.0.2
- yargs: 17.5.1
+ yargs: 17.6.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -3117,8 +3212,8 @@ packages:
/babel-plugin-espower/3.0.1:
resolution: {integrity: sha512-Ms49U7VIAtQ/TtcqRbD6UBmJBUCSxiC3+zPc+eGqxKUIFO1lTshyEDRUjhoAbd2rWfwYf3cZ62oXozrd8W6J0A==}
dependencies:
- '@babel/generator': 7.19.0
- '@babel/parser': 7.19.1
+ '@babel/generator': 7.14.5
+ '@babel/parser': 7.14.7
call-matcher: 1.1.0
core-js: 2.6.12
espower-location-detector: 1.0.0
@@ -3126,42 +3221,6 @@ packages:
estraverse: 4.3.0
dev: true
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.1:
- resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.19.1
- '@babel/core': 7.19.1
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.1:
- resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.1
- core-js-compat: 3.25.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.1:
- resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.19.1
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/balanced-match/1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
@@ -3174,12 +3233,12 @@ packages:
engines: {node: '>=8'}
dev: true
- /blueimp-md5/2.19.0:
- resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==}
+ /blueimp-md5/2.18.0:
+ resolution: {integrity: sha512-vE52okJvzsVWhcgUHOv+69OG3Mdg151xyn41aVQN/5W5S+S43qZhxECtYLAEHMSFWX6Mv5IZrzj3T5+JqXfj5Q==}
dev: true
/boolbase/1.0.0:
- resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
+ resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=}
dev: true
/brace-expansion/1.1.11:
@@ -3194,15 +3253,27 @@ packages:
dependencies:
fill-range: 7.0.1
- /browserslist/4.21.4:
- resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==}
+ /browserslist/4.14.5:
+ resolution: {integrity: sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001412
- electron-to-chromium: 1.4.262
- node-releases: 2.0.6
- update-browserslist-db: 1.0.9_browserslist@4.21.4
+ caniuse-lite: 1.0.30001151
+ electron-to-chromium: 1.3.583
+ escalade: 3.1.1
+ node-releases: 1.1.64
+ dev: true
+
+ /browserslist/4.16.6:
+ resolution: {integrity: sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001245
+ colorette: 1.2.2
+ electron-to-chromium: 1.3.776
+ escalade: 3.1.1
+ node-releases: 1.1.73
dev: true
/buble/0.20.0:
@@ -3211,20 +3282,25 @@ packages:
dependencies:
acorn: 6.4.2
acorn-dynamic-import: 4.0.0_acorn@6.4.2
- acorn-jsx: 5.3.2_acorn@6.4.2
+ acorn-jsx: 5.3.1_acorn@6.4.2
chalk: 2.4.2
- magic-string: 0.25.9
- minimist: 1.2.6
+ magic-string: 0.25.7
+ minimist: 1.2.5
regexpu-core: 4.5.4
- /buffer-from/1.1.2:
- resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+ /buffer-from/1.1.1:
+ resolution: {integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==}
dev: true
- /builtin-modules/3.3.0:
- resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
+ /builtin-modules/3.1.0:
+ resolution: {integrity: sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==}
engines: {node: '>=6'}
+ /builtin-modules/3.2.0:
+ resolution: {integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==}
+ engines: {node: '>=6'}
+ dev: true
+
/cacheable-lookup/5.0.4:
resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
engines: {node: '>=10.6.0'}
@@ -3234,13 +3310,13 @@ packages:
resolution: {integrity: sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==}
engines: {node: '>=8'}
dependencies:
- clone-response: 1.0.3
+ clone-response: 1.0.2
get-stream: 5.2.0
http-cache-semantics: 4.1.0
- keyv: 4.5.0
+ keyv: 4.0.3
lowercase-keys: 2.0.0
normalize-url: 6.1.0
- responselike: 2.0.1
+ responselike: 2.0.0
dev: true
/caching-transform/4.0.0:
@@ -3257,7 +3333,7 @@ packages:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.1.1
dev: true
/call-matcher/1.1.0:
@@ -3270,19 +3346,19 @@ packages:
dev: true
/call-signature/0.0.2:
- resolution: {integrity: sha512-qvYvkAVcoae0obt8OsZn0VEBHeEpvYIZDy1gGYtZDJG0fHawew+Mi0dBjieFz8F8dzQ2Kr19+nsDm+T5XFVs+Q==}
+ resolution: {integrity: sha1-qEq8glpV70yysCi9dOIFpluaSZY=}
engines: {node: '>=0.10.0'}
dev: true
/caller-callsite/2.0.0:
- resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
+ resolution: {integrity: sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=}
engines: {node: '>=4'}
dependencies:
callsites: 2.0.0
dev: true
/caller-path/2.0.0:
- resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
+ resolution: {integrity: sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=}
engines: {node: '>=4'}
dependencies:
caller-callsite: 2.0.0
@@ -3307,7 +3383,7 @@ packages:
engines: {node: '>=8'}
dependencies:
camelcase: 5.3.1
- map-obj: 4.3.0
+ map-obj: 4.2.1
quick-lru: 4.0.1
dev: true
@@ -3316,9 +3392,9 @@ packages:
engines: {node: '>=12'}
dependencies:
camelcase: 6.3.0
- map-obj: 4.3.0
+ map-obj: 4.2.1
quick-lru: 5.1.1
- type-fest: 1.4.0
+ type-fest: 1.2.2
dev: true
/camelcase/5.3.1:
@@ -3334,14 +3410,18 @@ packages:
/caniuse-api/3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.21.4
- caniuse-lite: 1.0.30001412
+ browserslist: 4.14.5
+ caniuse-lite: 1.0.30001151
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite/1.0.30001412:
- resolution: {integrity: sha512-+TeEIee1gS5bYOiuf+PS/kp2mrXic37Hl66VY6EAfxasIk5fELTktK2oOezYed12H8w7jt3s512PpulQidPjwA==}
+ /caniuse-lite/1.0.30001151:
+ resolution: {integrity: sha512-Zh3sHqskX6mHNrqUerh+fkf0N72cMxrmflzje/JyVImfpknscMnkeJrlFGJcqTmaa0iszdYptGpWMJCRQDkBVw==}
+ dev: true
+
+ /caniuse-lite/1.0.30001245:
+ resolution: {integrity: sha512-768fM9j1PKXpOCKws6eTo3RHmvTUsG9UrpT4WoREFeZgJBTi4/X9g565azS/rVUGtqb8nt7FjLeF5u4kukERnA==}
dev: true
/cbor/8.1.0:
@@ -3370,8 +3450,16 @@ packages:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- /chalk/4.1.2:
- resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ /chalk/4.1.0:
+ resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==}
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+ dev: true
+
+ /chalk/4.1.1:
+ resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
@@ -3457,16 +3545,17 @@ packages:
wrap-ansi: 6.2.0
dev: true
- /cliui/7.0.4:
- resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
+ /cliui/8.0.1:
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+ engines: {node: '>=12'}
dependencies:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
dev: true
- /clone-response/1.0.3:
- resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
+ /clone-response/1.0.2:
+ resolution: {integrity: sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=}
dependencies:
mimic-response: 1.0.1
dev: true
@@ -3475,7 +3564,7 @@ packages:
resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==}
engines: {node: '>= 4.0'}
dependencies:
- '@types/q': 1.5.5
+ '@types/q': 1.5.4
chalk: 2.4.2
q: 1.5.1
dev: true
@@ -3491,8 +3580,8 @@ packages:
resolution: {integrity: sha512-N2+Umhv+T1HDyti/rwspnT5Y5aaqjPbgyjq6+EPbzCphdM0cFQo4a+U8DsLTNaCqZLIDTk8lGMoWgE5ZFB9Uew==}
engines: {node: '>=12.13.0'}
dependencies:
- '@babel/runtime': 7.19.0
- got: 11.8.5
+ '@babel/runtime': 7.14.6
+ got: 11.8.2
dev: true
/color-convert/1.9.3:
@@ -3512,22 +3601,22 @@ packages:
/color-name/1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- /color-string/1.9.1:
- resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ /color-string/1.5.4:
+ resolution: {integrity: sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==}
dependencies:
color-name: 1.1.4
simple-swizzle: 0.2.2
dev: true
- /color/3.2.1:
- resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
+ /color/3.1.3:
+ resolution: {integrity: sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==}
dependencies:
color-convert: 1.9.3
- color-string: 1.9.1
+ color-string: 1.5.4
dev: true
- /colorette/2.0.19:
- resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
+ /colorette/1.2.2:
+ resolution: {integrity: sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==}
dev: true
/commander/2.20.3:
@@ -3552,7 +3641,7 @@ packages:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
/concat-map/0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
/concat-with-sourcemaps/1.1.0:
resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==}
@@ -3574,8 +3663,8 @@ packages:
well-known-symbols: 2.0.0
dev: true
- /conventional-commits-parser/3.2.4:
- resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==}
+ /conventional-commits-parser/3.2.1:
+ resolution: {integrity: sha512-OG9kQtmMZBJD/32NEw5IhN5+HnBqVjy03eC+I71I0oQRFA5rOgA4OtPOYG7mz1GkCfCNxn3gKIX8EiHJYuf1cA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -3585,6 +3674,13 @@ packages:
meow: 8.1.2
split2: 3.2.2
through2: 4.0.2
+ trim-off-newlines: 1.0.1
+ dev: true
+
+ /convert-source-map/1.7.0:
+ resolution: {integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==}
+ dependencies:
+ safe-buffer: 5.1.2
dev: true
/convert-source-map/1.8.0:
@@ -3598,15 +3694,16 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /core-js-compat/3.25.3:
- resolution: {integrity: sha512-xVtYpJQ5grszDHEUU9O7XbjjcZ0ccX3LgQsyqSvTnjX97ZqEgn9F5srmrwwwMtbKzDllyFPL+O+2OFMl1lU4TQ==}
+ /core-js-compat/3.6.5:
+ resolution: {integrity: sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==}
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.14.5
+ semver: 7.0.0
dev: true
/core-js/2.6.12:
resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
- deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
+ deprecated: core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
requiresBuild: true
dev: true
@@ -3620,15 +3717,15 @@ packages:
parse-json: 4.0.0
dev: true
- /cosmiconfig/7.0.1:
- resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
+ /cosmiconfig/7.0.0:
+ resolution: {integrity: sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==}
engines: {node: '>=10'}
dependencies:
'@types/parse-json': 4.0.0
import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
- yaml: 1.10.2
+ yaml: 1.10.0
dev: true
/create-require/1.1.1:
@@ -3644,19 +3741,19 @@ packages:
which: 2.0.2
/css-color-names/0.0.4:
- resolution: {integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==}
+ resolution: {integrity: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=}
dev: true
/css-declaration-sorter/4.0.1:
resolution: {integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==}
engines: {node: '>4'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
timsort: 0.3.0
dev: true
/css-modules-loader-core/1.1.0:
- resolution: {integrity: sha512-XWOBwgy5nwBn76aA+6ybUGL/3JBnCtBX9Ay9/OWIpzKYWlVHMazvJ+WtHumfi+xxdPF440cWK7JCYtt8xDifew==}
+ resolution: {integrity: sha1-WQhmgpShvs0mGuCkziGwtVHyHRY=}
dependencies:
icss-replace-symbols: 1.1.0
postcss: 6.0.1
@@ -3694,11 +3791,11 @@ packages:
source-map: 0.6.1
dev: true
- /css-tree/1.1.3:
- resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
+ /css-tree/1.0.0-alpha.39:
+ resolution: {integrity: sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==}
engines: {node: '>=8.0.0'}
dependencies:
- mdn-data: 2.0.14
+ mdn-data: 2.0.6
source-map: 0.6.1
dev: true
@@ -3713,13 +3810,13 @@ packages:
hasBin: true
dev: true
- /cssnano-preset-default/4.0.8:
- resolution: {integrity: sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==}
+ /cssnano-preset-default/4.0.7:
+ resolution: {integrity: sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==}
engines: {node: '>=6.9.0'}
dependencies:
css-declaration-sorter: 4.0.1
cssnano-util-raw-cache: 4.0.1
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-calc: 7.0.5
postcss-colormin: 4.0.3
postcss-convert-values: 4.0.1
@@ -3745,17 +3842,17 @@ packages:
postcss-ordered-values: 4.1.2
postcss-reduce-initial: 4.0.3
postcss-reduce-transforms: 4.0.2
- postcss-svgo: 4.0.3
+ postcss-svgo: 4.0.2
postcss-unique-selectors: 4.0.1
dev: true
/cssnano-util-get-arguments/4.0.0:
- resolution: {integrity: sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==}
+ resolution: {integrity: sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=}
engines: {node: '>=6.9.0'}
dev: true
/cssnano-util-get-match/4.0.0:
- resolution: {integrity: sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==}
+ resolution: {integrity: sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=}
engines: {node: '>=6.9.0'}
dev: true
@@ -3763,7 +3860,7 @@ packages:
resolution: {integrity: sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
dev: true
/cssnano-util-same-parent/4.0.1:
@@ -3771,21 +3868,21 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /cssnano/4.1.11:
- resolution: {integrity: sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==}
+ /cssnano/4.1.10:
+ resolution: {integrity: sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==}
engines: {node: '>=6.9.0'}
dependencies:
cosmiconfig: 5.2.1
- cssnano-preset-default: 4.0.8
+ cssnano-preset-default: 4.0.7
is-resolvable: 1.1.0
- postcss: 7.0.39
+ postcss: 7.0.35
dev: true
- /csso/4.2.0:
- resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
+ /csso/4.0.3:
+ resolution: {integrity: sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==}
engines: {node: '>=8.0.0'}
dependencies:
- css-tree: 1.1.3
+ css-tree: 1.0.0-alpha.39
dev: true
/currently-unhandled/0.4.1:
@@ -3798,7 +3895,7 @@ packages:
/d/1.0.1:
resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
dependencies:
- es5-ext: 0.10.62
+ es5-ext: 0.10.53
type: 1.2.0
dev: true
@@ -3840,6 +3937,18 @@ packages:
ms: 2.1.3
dev: true
+ /debug/4.3.2:
+ resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.2
+ dev: true
+
/debug/4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
@@ -3864,8 +3973,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /decamelize/5.0.1:
- resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==}
+ /decamelize/5.0.0:
+ resolution: {integrity: sha512-U75DcT5hrio3KNtvdULAWnLiAPbFUC4191ldxMmj4FA/mRuBnmDwU0boNfPyFRhnan+Jm+haLeSn3P0afcBn4w==}
engines: {node: '>=10'}
dev: true
@@ -3877,14 +3986,14 @@ packages:
dev: true
/dedent/0.7.0:
- resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
+ resolution: {integrity: sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=}
dev: true
/deep-equal/1.1.1:
resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==}
dependencies:
- is-arguments: 1.1.1
- is-date-object: 1.0.5
+ is-arguments: 1.1.0
+ is-date-object: 1.0.4
is-regex: 1.1.4
object-is: 1.1.5
object-keys: 1.1.1
@@ -3892,11 +4001,11 @@ packages:
dev: true
/deep-freeze/0.0.1:
- resolution: {integrity: sha512-Z+z8HiAvsGwmjqlphnHW5oz6yWlOwu6EQfFTjmeTWlDeda3FS2yv3jhq35TX/ewmsnqB+RX2IdsIOyjJCQN5tg==}
+ resolution: {integrity: sha1-OgsABd4YZygZ39OM0x+RF5yJPoQ=}
dev: true
- /deep-is/0.1.4:
- resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ /deep-is/0.1.3:
+ resolution: {integrity: sha512-GtxAN4HvBachZzm4OnWqc45ESpUCMwkYcsjnsPs23FwJbsO+k4t0k9bQCgOmzIlpHO28+WPK/KRbRk0DDHuuDw==}
/deepmerge/4.2.2:
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
@@ -3914,6 +4023,13 @@ packages:
engines: {node: '>=10'}
dev: true
+ /define-properties/1.1.3:
+ resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ object-keys: 1.1.1
+ dev: true
+
/define-properties/1.1.4:
resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
engines: {node: '>= 0.4'}
@@ -3937,7 +4053,7 @@ packages:
hasBin: true
dependencies:
del: 7.0.0
- meow: 10.1.3
+ meow: 10.1.5
dev: true
/del/5.1.0:
@@ -3945,10 +4061,10 @@ packages:
engines: {node: '>=8'}
dependencies:
globby: 10.0.2
- graceful-fs: 4.2.10
- is-glob: 4.0.3
+ graceful-fs: 4.2.4
+ is-glob: 4.0.1
is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
+ is-path-inside: 3.0.2
p-map: 3.0.0
rimraf: 3.0.2
slash: 3.0.0
@@ -3962,7 +4078,7 @@ packages:
graceful-fs: 4.2.10
is-glob: 4.0.3
is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
+ is-path-inside: 3.0.2
p-map: 4.0.0
rimraf: 3.0.2
slash: 3.0.0
@@ -3983,7 +4099,7 @@ packages:
dev: true
/detect-indent/5.0.0:
- resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==}
+ resolution: {integrity: sha1-OHHMCmoALow+Wzz38zYmRnXwa50=}
engines: {node: '>=4'}
dev: true
@@ -3997,7 +4113,6 @@ packages:
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
- dev: true
/doctrine/2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
@@ -4015,16 +4130,16 @@ packages:
/dom-serializer/0.2.2:
resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
dependencies:
- domelementtype: 2.3.0
- entities: 2.2.0
+ domelementtype: 2.0.2
+ entities: 2.1.0
dev: true
/domelementtype/1.3.1:
resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
dev: true
- /domelementtype/2.3.0:
- resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
+ /domelementtype/2.0.2:
+ resolution: {integrity: sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==}
dev: true
/domutils/1.7.0:
@@ -4052,8 +4167,12 @@ packages:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
dev: true
- /electron-to-chromium/1.4.262:
- resolution: {integrity: sha512-Ckn5haqmGh/xS8IbcgK3dnwAVnhDyo/WQnklWn6yaMucYTq7NNxwlGE8ElzEOnonzRLzUCo2Ot3vUb2GYUF2Hw==}
+ /electron-to-chromium/1.3.583:
+ resolution: {integrity: sha512-L9BwLwJohjZW9mQESI79HRzhicPk1DFgM+8hOCfGgGCFEcA3Otpv7QK6SGtYoZvfQfE3wKLh0Hd5ptqUFv3gvQ==}
+ dev: true
+
+ /electron-to-chromium/1.3.776:
+ resolution: {integrity: sha512-V0w7eFSBoFPpdw4xexjVPZ770UDZIevSwkkj4W97XbE3IsCsTRFpa7/yXGZ88EOQAUEA09JMMsWK0xsw0kRAYw==}
dev: true
/emittery/0.11.0:
@@ -4063,6 +4182,7 @@ packages:
/emoji-regex/8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+ dev: true
/emoji-regex/9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
@@ -4090,10 +4210,11 @@ packages:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
dependencies:
- ansi-colors: 4.1.3
+ ansi-colors: 4.1.1
+ dev: true
- /entities/2.2.0:
- resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
+ /entities/2.1.0:
+ resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==}
dev: true
/error-ex/1.3.2:
@@ -4132,10 +4253,6 @@ packages:
unbox-primitive: 1.0.2
dev: true
- /es-array-method-boxes-properly/1.0.0:
- resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
- dev: true
-
/es-shim-unscopables/1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
@@ -4147,18 +4264,16 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
is-callable: 1.2.7
- is-date-object: 1.0.5
+ is-date-object: 1.0.4
is-symbol: 1.0.4
dev: true
- /es5-ext/0.10.62:
- resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==}
- engines: {node: '>=0.10'}
- requiresBuild: true
+ /es5-ext/0.10.53:
+ resolution: {integrity: sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==}
dependencies:
es6-iterator: 2.0.3
es6-symbol: 3.1.3
- next-tick: 1.1.0
+ next-tick: 1.0.0
dev: true
/es6-error/4.1.1:
@@ -4166,10 +4281,10 @@ packages:
dev: true
/es6-iterator/2.0.3:
- resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
+ resolution: {integrity: sha1-p96IkUGgWpSwhUQDstCg+/qY87c=}
dependencies:
d: 1.0.1
- es5-ext: 0.10.62
+ es5-ext: 0.10.53
es6-symbol: 3.1.3
dev: true
@@ -4177,7 +4292,7 @@ packages:
resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
dependencies:
d: 1.0.1
- ext: 1.7.0
+ ext: 1.4.0
dev: true
/escalade/3.1.1:
@@ -4316,7 +4431,7 @@ packages:
eslint: ^5 || ^6 || ^7 || ^8
typescript: ^3 || ^4
dependencies:
- '@typescript-eslint/experimental-utils': 5.38.0_iopuwovpd3qd4ttrbpmiexfkga
+ '@typescript-eslint/experimental-utils': 5.39.0_iopuwovpd3qd4ttrbpmiexfkga
'@typescript-eslint/parser': 5.33.0_iopuwovpd3qd4ttrbpmiexfkga
eslint: 8.21.0
json-schema: 0.4.0
@@ -4332,21 +4447,14 @@ packages:
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
+ dev: true
/eslint-scope/7.1.1:
resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
esrecurse: 4.3.0
- estraverse: 5.3.0
- dev: true
-
- /eslint-utils/2.1.0:
- resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
- engines: {node: '>=6'}
- dependencies:
- eslint-visitor-keys: 1.3.0
- dev: false
+ estraverse: 5.2.0
/eslint-utils/3.0.0_eslint@8.21.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
@@ -4366,12 +4474,6 @@ packages:
dependencies:
eslint: 8.24.0
eslint-visitor-keys: 2.1.0
- dev: true
-
- /eslint-visitor-keys/1.3.0:
- resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
- engines: {node: '>=4'}
- dev: false
/eslint-visitor-keys/2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
@@ -4380,56 +4482,6 @@ packages:
/eslint-visitor-keys/3.3.0:
resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
-
- /eslint/7.32.0:
- resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==}
- engines: {node: ^10.12.0 || >=12.0.0}
- hasBin: true
- dependencies:
- '@babel/code-frame': 7.12.11
- '@eslint/eslintrc': 0.4.3
- '@humanwhocodes/config-array': 0.5.0
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4
- doctrine: 3.0.0
- enquirer: 2.3.6
- escape-string-regexp: 4.0.0
- eslint-scope: 5.1.1
- eslint-utils: 2.1.0
- eslint-visitor-keys: 2.1.0
- espree: 7.3.1
- esquery: 1.4.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
- functional-red-black-tree: 1.0.1
- glob-parent: 5.1.2
- globals: 13.17.0
- ignore: 4.0.6
- import-fresh: 3.3.0
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- js-yaml: 3.14.1
- json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.1
- progress: 2.0.3
- regexpp: 3.2.0
- semver: 7.3.7
- strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
- table: 6.8.0
- text-table: 0.2.0
- v8-compile-cache: 2.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
/eslint/8.21.0:
resolution: {integrity: sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==}
@@ -4437,10 +4489,10 @@ packages:
hasBin: true
dependencies:
'@eslint/eslintrc': 1.3.2
- '@humanwhocodes/config-array': 0.10.5
+ '@humanwhocodes/config-array': 0.10.7
'@humanwhocodes/gitignore-to-minimatch': 1.0.2
ajv: 6.12.6
- chalk: 4.1.2
+ chalk: 4.1.1
cross-spawn: 7.0.3
debug: 4.3.4
doctrine: 3.0.0
@@ -4485,11 +4537,11 @@ packages:
hasBin: true
dependencies:
'@eslint/eslintrc': 1.3.2
- '@humanwhocodes/config-array': 0.10.5
+ '@humanwhocodes/config-array': 0.10.7
'@humanwhocodes/gitignore-to-minimatch': 1.0.2
'@humanwhocodes/module-importer': 1.0.1
ajv: 6.12.6
- chalk: 4.1.2
+ chalk: 4.1.1
cross-spawn: 7.0.3
debug: 4.3.4
doctrine: 3.0.0
@@ -4511,7 +4563,7 @@ packages:
import-fresh: 3.3.0
imurmurhash: 0.1.4
is-glob: 4.0.3
- js-sdsl: 4.1.4
+ js-sdsl: 4.1.5
js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
@@ -4525,7 +4577,6 @@ packages:
text-table: 0.2.0
transitivePeerDependencies:
- supports-color
- dev: true
/esm/3.2.25:
resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
@@ -4533,7 +4584,7 @@ packages:
dev: true
/espower-location-detector/1.0.0:
- resolution: {integrity: sha512-Y/3H6ytYwqC3YcOc0gOU22Lp3eI5GAFGOymTdzFyfaiglKgtsw2dePOgXY3yrV+QcLPMPiVYwBU9RKaDoh2bbQ==}
+ resolution: {integrity: sha1-oXt+zFnTDheeK+9z+0E3cEyzMbU=}
dependencies:
is-url: 1.2.4
path-is-absolute: 1.0.1
@@ -4541,15 +4592,6 @@ packages:
xtend: 4.0.2
dev: true
- /espree/7.3.1:
- resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==}
- engines: {node: ^10.12.0 || >=12.0.0}
- dependencies:
- acorn: 7.4.1
- acorn-jsx: 5.3.2_acorn@7.4.1
- eslint-visitor-keys: 1.3.0
- dev: false
-
/espree/9.4.0:
resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -4557,7 +4599,6 @@ packages:
acorn: 8.8.0
acorn-jsx: 5.3.2_acorn@8.8.0
eslint-visitor-keys: 3.3.0
- dev: true
/esprima/4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
@@ -4574,20 +4615,21 @@ packages:
resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==}
engines: {node: '>=0.10'}
dependencies:
- estraverse: 5.3.0
+ estraverse: 5.2.0
/esrecurse/4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
- estraverse: 5.3.0
+ estraverse: 5.2.0
/estraverse/4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
+ dev: true
- /estraverse/5.3.0:
- resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ /estraverse/5.2.0:
+ resolution: {integrity: sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==}
engines: {node: '>=4.0'}
/estree-walker/0.6.1:
@@ -4597,8 +4639,8 @@ packages:
/estree-walker/1.0.1:
resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
- /estree-walker/2.0.2:
- resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+ /estree-walker/2.0.1:
+ resolution: {integrity: sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg==}
/esutils/2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
@@ -4615,18 +4657,18 @@ packages:
cross-spawn: 7.0.3
get-stream: 6.0.1
human-signals: 2.1.0
- is-stream: 2.0.1
+ is-stream: 2.0.0
merge-stream: 2.0.0
npm-run-path: 4.0.1
onetime: 5.1.2
- signal-exit: 3.0.7
+ signal-exit: 3.0.3
strip-final-newline: 2.0.0
dev: true
- /ext/1.7.0:
- resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
+ /ext/1.4.0:
+ resolution: {integrity: sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==}
dependencies:
- type: 2.7.2
+ type: 2.1.0
dev: true
/fast-deep-equal/3.1.3:
@@ -4644,7 +4686,29 @@ packages:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.4
+
+ /fast-glob/3.2.4:
+ resolution: {integrity: sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@nodelib/fs.stat': 2.0.3
+ '@nodelib/fs.walk': 1.2.4
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.2
+ picomatch: 2.2.2
+ dev: true
+
+ /fast-glob/3.2.7:
+ resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==}
+ engines: {node: '>=8'}
+ 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.4
/fast-json-stable-stringify/2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
@@ -4656,10 +4720,16 @@ packages:
resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
dev: true
- /fastq/1.13.0:
- resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
+ /fastq/1.11.1:
+ resolution: {integrity: sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==}
+ dependencies:
+ reusify: 1.0.4
+
+ /fastq/1.8.0:
+ resolution: {integrity: sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==}
dependencies:
reusify: 1.0.4
+ dev: true
/figures/4.0.1:
resolution: {integrity: sha512-rElJwkA/xS04Vfg+CaZodpso7VqBknOYbzi6I76hI4X80RUjkSxO2oAyPmGbuXUppywjqndOrQDl817hDnI++w==}
@@ -4681,8 +4751,8 @@ packages:
dependencies:
to-regex-range: 5.0.1
- /find-cache-dir/3.3.2:
- resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
+ /find-cache-dir/3.3.1:
+ resolution: {integrity: sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==}
engines: {node: '>=8'}
dependencies:
commondir: 1.0.1
@@ -4711,7 +4781,6 @@ packages:
dependencies:
locate-path: 6.0.0
path-exists: 4.0.0
- dev: true
/find-up/6.3.0:
resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
@@ -4725,11 +4794,11 @@ packages:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flatted: 3.2.7
+ flatted: 3.2.1
rimraf: 3.0.2
- /flatted/3.2.7:
- resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
+ /flatted/3.2.1:
+ resolution: {integrity: sha512-OMQjaErSFHmHqZe+PSidH5n8j3O0F2DdnVh8JB4j4eUQ2k6KvB0qGfrKIhapvez5JerBbmWkaLYUYWISaESoXg==}
/foreground-child/2.0.0:
resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==}
@@ -4739,8 +4808,8 @@ packages:
signal-exit: 3.0.7
dev: true
- /fromentries/1.3.2:
- resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==}
+ /fromentries/1.3.0:
+ resolution: {integrity: sha512-+pKvlQHvpxxSTF+tWZ4DjxD0Sz4G26EjAP4z7D2k8VLJ19hrLbSgaQLx/u2mVQn7hiA2s/3DyutOyFwTuDsRgA==}
dev: true
/fs.realpath/1.0.0:
@@ -4768,6 +4837,7 @@ packages:
/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==}
@@ -4779,6 +4849,11 @@ packages:
loader-utils: 1.4.0
dev: true
+ /gensync/1.0.0-beta.1:
+ resolution: {integrity: sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
/gensync/1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -4789,6 +4864,14 @@ packages:
engines: {node: 6.* || 8.* || >= 10.*}
dev: true
+ /get-intrinsic/1.1.1:
+ resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==}
+ dependencies:
+ function-bind: 1.1.1
+ has: 1.0.3
+ has-symbols: 1.0.2
+ dev: true
+
/get-intrinsic/1.1.3:
resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==}
dependencies:
@@ -4837,7 +4920,6 @@ packages:
engines: {node: '>=10.13.0'}
dependencies:
is-glob: 4.0.3
- dev: true
/glob/7.1.6:
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
@@ -4848,10 +4930,9 @@ packages:
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
- dev: false
- /glob/7.2.3:
- resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ /glob/7.1.7:
+ resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -4875,12 +4956,24 @@ packages:
resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
engines: {node: '>=8'}
dependencies:
- '@types/glob': 7.2.0
+ '@types/glob': 7.1.3
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.12
- glob: 7.2.3
- ignore: 5.2.0
+ fast-glob: 3.2.4
+ glob: 7.1.6
+ ignore: 5.1.8
+ merge2: 1.4.1
+ slash: 3.0.0
+ dev: true
+
+ /globby/11.0.1:
+ resolution: {integrity: sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.2.7
+ ignore: 5.1.8
merge2: 1.4.1
slash: 3.0.0
dev: true
@@ -4895,7 +4988,6 @@ packages:
ignore: 5.2.0
merge2: 1.4.1
slash: 3.0.0
- dev: true
/globby/13.1.2:
resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==}
@@ -4908,11 +5000,11 @@ packages:
slash: 4.0.0
dev: true
- /got/11.8.5:
- resolution: {integrity: sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==}
+ /got/11.8.2:
+ resolution: {integrity: sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==}
engines: {node: '>=10.19.0'}
dependencies:
- '@sindresorhus/is': 4.6.0
+ '@sindresorhus/is': 4.0.1
'@szmarczak/http-timer': 4.0.6
'@types/cacheable-request': 6.0.2
'@types/responselike': 1.0.0
@@ -4922,25 +5014,26 @@ packages:
http2-wrapper: 1.0.3
lowercase-keys: 2.0.0
p-cancelable: 2.1.1
- responselike: 2.0.1
+ responselike: 2.0.0
dev: true
/graceful-fs/4.2.10:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
dev: true
+ /graceful-fs/4.2.4:
+ resolution: {integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==}
+ dev: true
+
/grapheme-splitter/1.0.4:
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
- dev: true
- /graphql-tag/2.12.6_graphql@14.7.0:
- resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==}
- engines: {node: '>=10'}
+ /graphql-tag/2.11.0_graphql@14.7.0:
+ resolution: {integrity: sha512-VmsD5pJqWJnQZMUeRwrDhfgoyqcfwEkvtpANqcoUG8/tOLkwNgU9mzub/Mc78OJMhHjx7gfAMTxzdG43VGg3bA==}
peerDependencies:
- graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+ graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0
dependencies:
graphql: 14.7.0
- tslib: 2.4.0
dev: false
/graphql/14.7.0:
@@ -4955,7 +5048,7 @@ packages:
dev: true
/has-ansi/2.0.0:
- resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
+ resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=}
engines: {node: '>=0.10.0'}
dependencies:
ansi-regex: 2.1.1
@@ -4971,7 +5064,7 @@ packages:
dev: true
/has-flag/3.0.0:
- resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=}
engines: {node: '>=4'}
/has-flag/4.0.0:
@@ -4984,6 +5077,11 @@ packages:
get-intrinsic: 1.1.3
dev: true
+ /has-symbols/1.0.2:
+ resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
/has-symbols/1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
@@ -5006,7 +5104,7 @@ packages:
resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
engines: {node: '>=8'}
dependencies:
- is-stream: 2.0.1
+ is-stream: 2.0.0
type-fest: 0.8.1
dev: true
@@ -5018,19 +5116,23 @@ packages:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
dev: true
- /hosted-git-info/4.1.0:
- resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
+ /hosted-git-info/4.0.2:
+ resolution: {integrity: sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==}
engines: {node: '>=10'}
dependencies:
lru-cache: 6.0.0
dev: true
/hsl-regex/1.0.0:
- resolution: {integrity: sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==}
+ resolution: {integrity: sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=}
dev: true
/hsla-regex/1.0.0:
- resolution: {integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==}
+ resolution: {integrity: sha1-wc56MWjIxmFAM6S194d/OyJfnDg=}
+ dev: true
+
+ /html-comment-regex/1.1.2:
+ resolution: {integrity: sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==}
dev: true
/html-escaper/2.0.2:
@@ -5046,7 +5148,7 @@ packages:
engines: {node: '>=10.19.0'}
dependencies:
quick-lru: 5.1.1
- resolve-alpn: 1.2.1
+ resolve-alpn: 1.1.2
dev: true
/human-signals/2.1.0:
@@ -5068,7 +5170,7 @@ packages:
dev: false
/icss-replace-symbols/1.1.0:
- resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==}
+ resolution: {integrity: sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=}
dev: true
/ignore-by-default/2.1.0:
@@ -5076,18 +5178,17 @@ packages:
engines: {node: '>=10 <11 || >=12 <13 || >=14'}
dev: true
- /ignore/4.0.6:
- resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
+ /ignore/5.1.8:
+ resolution: {integrity: sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==}
engines: {node: '>= 4'}
- dev: false
+ dev: true
/ignore/5.2.0:
resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
engines: {node: '>= 4'}
- dev: true
/import-cwd/2.1.0:
- resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==}
+ resolution: {integrity: sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=}
engines: {node: '>=4'}
dependencies:
import-from: 2.1.0
@@ -5116,7 +5217,7 @@ packages:
resolve-from: 4.0.0
/import-from/2.1.0:
- resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==}
+ resolution: {integrity: sha1-M1238qev/VOqpHHUuAId7ja387E=}
engines: {node: '>=4'}
dependencies:
resolve-from: 3.0.0
@@ -5144,7 +5245,7 @@ packages:
dev: true
/indexes-of/1.0.1:
- resolution: {integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==}
+ resolution: {integrity: sha1-8w9xbI4r00bHtn0985FVZqfAVgc=}
dev: true
/inflight/1.0.6:
@@ -5176,16 +5277,15 @@ packages:
dev: true
/is-absolute-url/2.1.0:
- resolution: {integrity: sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==}
+ resolution: {integrity: sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=}
engines: {node: '>=0.10.0'}
dev: true
- /is-arguments/1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ /is-arguments/1.1.0:
+ resolution: {integrity: sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- has-tostringtag: 1.0.0
dev: true
/is-arrayish/0.2.1:
@@ -5196,10 +5296,8 @@ packages:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
dev: true
- /is-bigint/1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
- dependencies:
- has-bigints: 1.0.2
+ /is-bigint/1.0.2:
+ resolution: {integrity: sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==}
dev: true
/is-binary-path/2.1.0:
@@ -5209,19 +5307,18 @@ packages:
binary-extensions: 2.2.0
dev: true
- /is-boolean-object/1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ /is-boolean-object/1.1.1:
+ resolution: {integrity: sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- has-tostringtag: 1.0.0
dev: true
- /is-builtin-module/3.2.0:
- resolution: {integrity: sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==}
+ /is-builtin-module/3.1.0:
+ resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==}
engines: {node: '>=6'}
dependencies:
- builtin-modules: 3.3.0
+ builtin-modules: 3.1.0
/is-callable/1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
@@ -5229,7 +5326,7 @@ packages:
dev: true
/is-color-stop/1.1.0:
- resolution: {integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==}
+ resolution: {integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=}
dependencies:
css-color-names: 0.0.4
hex-color-regex: 1.1.0
@@ -5239,20 +5336,36 @@ packages:
rgba-regex: 1.0.0
dev: true
+ /is-core-module/2.0.0:
+ resolution: {integrity: sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==}
+ dependencies:
+ has: 1.0.3
+
+ /is-core-module/2.1.0:
+ resolution: {integrity: sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==}
+ dependencies:
+ has: 1.0.3
+ dev: false
+
/is-core-module/2.10.0:
resolution: {integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==}
dependencies:
has: 1.0.3
+ dev: true
- /is-date-object/1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
- engines: {node: '>= 0.4'}
+ /is-core-module/2.5.0:
+ resolution: {integrity: sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==}
dependencies:
- has-tostringtag: 1.0.0
+ has: 1.0.3
+ dev: true
+
+ /is-date-object/1.0.4:
+ resolution: {integrity: sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==}
+ engines: {node: '>= 0.4'}
dev: true
/is-directory/0.3.1:
- resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
+ resolution: {integrity: sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=}
engines: {node: '>=0.10.0'}
dev: true
@@ -5267,12 +5380,20 @@ packages:
/is-fullwidth-code-point/3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
+ dev: true
/is-fullwidth-code-point/4.0.0:
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
engines: {node: '>=12'}
dev: true
+ /is-glob/4.0.1:
+ resolution: {integrity: sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extglob: 2.1.1
+ dev: true
+
/is-glob/4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
@@ -5280,18 +5401,16 @@ packages:
is-extglob: 2.1.1
/is-module/1.0.0:
- resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
+ resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=}
/is-negative-zero/2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
dev: true
- /is-number-object/1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ /is-number-object/1.0.5:
+ resolution: {integrity: sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==}
engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
dev: true
/is-number/7.0.0:
@@ -5299,7 +5418,7 @@ packages:
engines: {node: '>=0.12.0'}
/is-obj/1.0.1:
- resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
+ resolution: {integrity: sha1-PkcprB9f3gJc19g6iW2rn09n2w8=}
engines: {node: '>=0.10.0'}
dev: true
@@ -5318,8 +5437,8 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /is-path-inside/3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+ /is-path-inside/3.0.2:
+ resolution: {integrity: sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==}
engines: {node: '>=8'}
dev: true
@@ -5345,7 +5464,7 @@ packages:
/is-reference/1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
dependencies:
- '@types/estree': 1.0.0
+ '@types/estree': 0.0.45
/is-regex/1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
@@ -5356,7 +5475,7 @@ packages:
dev: true
/is-regexp/1.0.0:
- resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
+ resolution: {integrity: sha1-/S2INUXEa6xaYz57mgnof6LLUGk=}
engines: {node: '>=0.10.0'}
dev: true
@@ -5370,8 +5489,8 @@ packages:
call-bind: 1.0.2
dev: true
- /is-stream/2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
+ /is-stream/2.0.0:
+ resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==}
engines: {node: '>=8'}
dev: true
@@ -5382,6 +5501,13 @@ packages:
has-tostringtag: 1.0.0
dev: true
+ /is-svg/3.0.0:
+ resolution: {integrity: sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ html-comment-regex: 1.1.2
+ dev: true
+
/is-symbol/1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
@@ -5390,14 +5516,14 @@ packages:
dev: true
/is-text-path/1.0.1:
- resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==}
+ resolution: {integrity: sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=}
engines: {node: '>=0.10.0'}
dependencies:
text-extensions: 1.9.0
dev: true
/is-typedarray/1.0.0:
- resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
+ resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=}
dev: true
/is-unicode-supported/0.1.0:
@@ -5415,7 +5541,7 @@ packages:
dev: true
/is-utf8/0.2.1:
- resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==}
+ resolution: {integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=}
dev: true
/is-weakref/1.0.2:
@@ -5430,14 +5556,14 @@ packages:
dev: true
/isarray/0.0.1:
- resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
+ resolution: {integrity: sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=}
dev: true
/isexe/2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- /istanbul-lib-coverage/3.2.0:
- resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
+ /istanbul-lib-coverage/3.0.0:
+ resolution: {integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==}
engines: {node: '>=8'}
dev: true
@@ -5452,48 +5578,49 @@ packages:
resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.19.1
- '@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.0
+ '@babel/core': 7.12.3
+ '@istanbuljs/schema': 0.1.2
+ istanbul-lib-coverage: 3.0.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /istanbul-lib-processinfo/2.0.3:
- resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==}
+ /istanbul-lib-processinfo/2.0.2:
+ resolution: {integrity: sha512-kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw==}
engines: {node: '>=8'}
dependencies:
archy: 1.0.0
cross-spawn: 7.0.3
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.0.0
+ make-dir: 3.1.0
p-map: 3.0.0
rimraf: 3.0.2
- uuid: 8.3.2
+ uuid: 3.4.0
dev: true
/istanbul-lib-report/3.0.0:
resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==}
engines: {node: '>=8'}
dependencies:
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.0.0
make-dir: 3.1.0
supports-color: 7.2.0
dev: true
- /istanbul-lib-source-maps/4.0.1:
- resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
- engines: {node: '>=10'}
+ /istanbul-lib-source-maps/4.0.0:
+ resolution: {integrity: sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==}
+ engines: {node: '>=8'}
dependencies:
debug: 4.3.4
- istanbul-lib-coverage: 3.2.0
+ istanbul-lib-coverage: 3.0.0
source-map: 0.6.1
transitivePeerDependencies:
- supports-color
dev: true
- /istanbul-reports/3.1.5:
- resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==}
+ /istanbul-reports/3.0.2:
+ resolution: {integrity: sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
@@ -5503,9 +5630,8 @@ packages:
/iterall/1.3.0:
resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==}
- /js-sdsl/4.1.4:
- resolution: {integrity: sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==}
- dev: true
+ /js-sdsl/4.1.5:
+ resolution: {integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==}
/js-string-escape/1.0.1:
resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==}
@@ -5514,6 +5640,15 @@ packages:
/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ dev: true
+
+ /js-yaml/3.14.0:
+ resolution: {integrity: sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==}
+ hasBin: true
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+ dev: false
/js-yaml/3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
@@ -5521,16 +5656,16 @@ packages:
dependencies:
argparse: 1.0.10
esprima: 4.0.1
+ dev: true
/js-yaml/4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
dependencies:
argparse: 2.0.1
- dev: true
/jsesc/0.5.0:
- resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
+ resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=}
hasBin: true
/jsesc/2.5.2:
@@ -5554,10 +5689,6 @@ packages:
/json-schema-traverse/0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- /json-schema-traverse/1.0.0:
- resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- dev: false
-
/json-schema/0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
dev: true
@@ -5572,23 +5703,33 @@ packages:
minimist: 1.2.6
dev: true
- /json5/2.2.1:
- resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
+ /json5/2.1.3:
+ resolution: {integrity: sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==}
engines: {node: '>=6'}
hasBin: true
+ dependencies:
+ minimist: 1.2.5
+ dev: true
+
+ /json5/2.2.0:
+ resolution: {integrity: sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.6
dev: true
/jsonparse/1.3.1:
- resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
+ resolution: {integrity: sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=}
engines: {'0': node >= 0.2.0}
dev: true
- /just-extend/4.2.1:
- resolution: {integrity: sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==}
+ /just-extend/4.1.1:
+ resolution: {integrity: sha512-aWgeGFW67BP3e5181Ep1Fv2v8z//iBJfrvyTnq8wG86vEESwmonn1zPBJ0VfmT9CJq2FIT0VsETtrNFm2a+SHA==}
dev: true
- /keyv/4.5.0:
- resolution: {integrity: sha512-2YvuMsA+jnFGtBareKqgANOEKe1mk3HKiXu2fRmAfyxG0MJAywNhi5ttWA3PMjl4NmpyjZNbFifR2vNjW1znfA==}
+ /keyv/4.0.3:
+ resolution: {integrity: sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==}
dependencies:
json-buffer: 3.0.1
dev: true
@@ -5605,24 +5746,24 @@ packages:
prelude-ls: 1.2.1
type-check: 0.4.0
- /lines-and-columns/1.2.4:
- resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+ /lines-and-columns/1.1.6:
+ resolution: {integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=}
/lint-staged/11.0.1:
resolution: {integrity: sha512-RkTA1ulE6jAGFskxpGAwxfVRXjHp7D9gFg/+KMARUWMPiVFP0t28Em2u0gL8sA0w3/ck3TC57F2v2RNeQ5XPnw==}
hasBin: true
dependencies:
- chalk: 4.1.2
+ chalk: 4.1.1
cli-truncate: 2.1.0
commander: 7.2.0
- cosmiconfig: 7.0.1
- debug: 4.3.4
+ cosmiconfig: 7.0.0
+ debug: 4.3.2
dedent: 0.7.0
enquirer: 2.3.6
execa: 5.1.1
- listr2: 3.14.0_enquirer@2.3.6
+ listr2: 3.10.0_enquirer@2.3.6
log-symbols: 4.1.0
- micromatch: 4.0.5
+ micromatch: 4.0.4
normalize-path: 3.0.0
please-upgrade-node: 3.2.0
string-argv: 0.3.1
@@ -5631,22 +5772,18 @@ packages:
- supports-color
dev: true
- /listr2/3.14.0_enquirer@2.3.6:
- resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==}
+ /listr2/3.10.0_enquirer@2.3.6:
+ resolution: {integrity: sha512-eP40ZHihu70sSmqFNbNy2NL1YwImmlMmPh9WO5sLmPDleurMHt3n+SwEWNu2kzKScexZnkyFtc1VI0z/TGlmpw==}
engines: {node: '>=10.0.0'}
peerDependencies:
enquirer: '>= 2.3.0 < 3'
- peerDependenciesMeta:
- enquirer:
- optional: true
dependencies:
cli-truncate: 2.1.0
- colorette: 2.0.19
+ colorette: 1.2.2
enquirer: 2.3.6
log-update: 4.0.0
p-map: 4.0.0
- rfdc: 1.3.0
- rxjs: 7.5.7
+ rxjs: 6.6.7
through: 2.3.8
wrap-ansi: 7.0.0
dev: true
@@ -5700,7 +5837,6 @@ packages:
engines: {node: '>=10'}
dependencies:
p-locate: 5.0.0
- dev: true
/locate-path/7.1.1:
resolution: {integrity: sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg==}
@@ -5710,34 +5846,26 @@ packages:
dev: true
/lodash.camelcase/4.3.0:
- resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
- dev: true
-
- /lodash.debounce/4.0.8:
- resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
+ resolution: {integrity: sha1-soqmKIorn8ZRA1x3EfZathkDMaY=}
dev: true
/lodash.flattendeep/4.4.0:
- resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==}
+ resolution: {integrity: sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=}
dev: true
/lodash.get/4.4.2:
- resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
+ resolution: {integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=}
dev: true
/lodash.memoize/4.1.2:
- resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
+ resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=}
dev: true
/lodash.merge/4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- /lodash.truncate/4.4.2:
- resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
- dev: false
-
/lodash.uniq/4.5.0:
- resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
+ resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=}
dev: true
/lodash/4.17.21:
@@ -5748,7 +5876,7 @@ packages:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
dependencies:
- chalk: 4.1.2
+ chalk: 4.1.1
is-unicode-supported: 0.1.0
dev: true
@@ -5772,9 +5900,10 @@ packages:
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
+ dev: true
- /magic-string/0.25.9:
- resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
+ /magic-string/0.25.7:
+ resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==}
dependencies:
sourcemap-codec: 1.4.8
@@ -5808,17 +5937,17 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /map-obj/4.3.0:
- resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
+ /map-obj/4.2.1:
+ resolution: {integrity: sha512-+WA2/1sPmDj1dlvvJmB5G6JKfY9dpn7EVBUL06+y6PoljPkh+6V1QihwxNkbcGxCRjt2b0F9K0taiCuo7MbdFQ==}
engines: {node: '>=8'}
dev: true
- /matched/5.0.1:
- resolution: {integrity: sha512-E1fhSTPRyhAlNaNvGXAgZQlq1hL0bgYMTk/6bktVlIhzUnX/SZs7296ACdVeNJE8xFNGSuvd9IpI7vSnmcqLvw==}
- engines: {node: '>=10'}
+ /matched/5.0.0:
+ resolution: {integrity: sha512-O0LCuxYYBNBjP2dmAg0i6PME0Mb0dvjulpMC0tTIeMRh6kXYsugOT5GOWpFkSzqjQjgOUs/eiyvpVhXdN2La4g==}
+ engines: {node: '>=12'}
dependencies:
- glob: 7.2.3
- picomatch: 2.3.1
+ glob: 7.1.6
+ picomatch: 2.2.2
dev: false
/matcher/5.0.0:
@@ -5832,17 +5961,17 @@ packages:
resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==}
engines: {node: '>=8'}
dependencies:
- blueimp-md5: 2.19.0
- dev: true
-
- /mdn-data/2.0.14:
- resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
+ blueimp-md5: 2.18.0
dev: true
/mdn-data/2.0.4:
resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==}
dev: true
+ /mdn-data/2.0.6:
+ resolution: {integrity: sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==}
+ dev: true
+
/mem/9.0.2:
resolution: {integrity: sha512-F2t4YIv9XQUBHt6AOJ0y7lSmP1+cY7Fm1DRh9GClTGzKST7UWLMx6ly9WZdLH/G/ppM5RL4MlQfRT71ri9t19A==}
engines: {node: '>=12.20'}
@@ -5851,21 +5980,21 @@ packages:
mimic-fn: 4.0.0
dev: true
- /meow/10.1.3:
- resolution: {integrity: sha512-0WL7RMCPPdUTE00+GxJjL4d5Dm6eUbmAzxlzywJWiRUKCW093owmZ7/q74tH9VI91vxw9KJJNxAcvdpxb2G4iA==}
+ /meow/10.1.5:
+ resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
'@types/minimist': 1.2.2
camelcase-keys: 7.0.2
- decamelize: 5.0.1
+ decamelize: 5.0.0
decamelize-keys: 1.1.0
hard-rejection: 2.1.0
minimist-options: 4.1.0
- normalize-package-data: 3.0.3
+ normalize-package-data: 3.0.2
read-pkg-up: 8.0.0
redent: 4.0.0
trim-newlines: 4.0.2
- type-fest: 1.4.0
+ type-fest: 1.2.2
yargs-parser: 20.2.9
dev: true
@@ -5873,7 +6002,7 @@ packages:
resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==}
engines: {node: '>=8'}
dependencies:
- '@types/minimist': 1.2.2
+ '@types/minimist': 1.2.0
camelcase-keys: 6.2.2
decamelize-keys: 1.1.0
hard-rejection: 2.1.0
@@ -5895,7 +6024,7 @@ packages:
decamelize-keys: 1.1.0
hard-rejection: 2.1.0
minimist-options: 4.1.0
- normalize-package-data: 3.0.3
+ normalize-package-data: 3.0.2
read-pkg-up: 7.0.1
redent: 3.0.0
trim-newlines: 3.0.1
@@ -5911,15 +6040,23 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /micromatch/4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ /micromatch/4.0.2:
+ resolution: {integrity: sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==}
+ engines: {node: '>=8'}
+ dependencies:
+ braces: 3.0.2
+ picomatch: 2.2.2
+ dev: true
+
+ /micromatch/4.0.4:
+ resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.2
picomatch: 2.3.1
- /mime/2.6.0:
- resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
+ /mime/2.4.6:
+ resolution: {integrity: sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==}
engines: {node: '>=4.0.0'}
hasBin: true
dev: false
@@ -5949,9 +6086,8 @@ packages:
engines: {node: '>=4'}
dev: true
- /mini-svg-data-uri/1.4.4:
- resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
- hasBin: true
+ /mini-svg-data-uri/1.2.3:
+ resolution: {integrity: sha512-zd6KCAyXgmq6FV1mR10oKXYtvmA9vRoB6xPSTUJTbFApCtkefDnYueVR1gkof3KcdLZo1Y8mjF2DFmQMIxsHNQ==}
dev: false
/minimatch/3.1.2:
@@ -5968,11 +6104,15 @@ packages:
kind-of: 6.0.3
dev: true
+ /minimist/1.2.5:
+ resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
+
/minimist/1.2.6:
resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
+ dev: true
- /mkdirp/0.5.6:
- resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
+ /mkdirp/0.5.5:
+ resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==}
hasBin: true
dependencies:
minimist: 1.2.6
@@ -6004,20 +6144,25 @@ packages:
/natural-compare/1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- /next-tick/1.1.0:
- resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
+ /next-tick/1.0.0:
+ resolution: {integrity: sha1-yobR/ogoFpsBICCOPchCS524NCw=}
dev: true
- /nise/4.1.0:
- resolution: {integrity: sha512-eQMEmGN/8arp0xsvGoQ+B1qvSkR73B1nWSCh7nOt5neMCtwcQVYQGdzQMhcNscktTsWB54xnlSQFzOAPJD8nXA==}
+ /nise/4.0.4:
+ resolution: {integrity: sha512-bTTRUNlemx6deJa+ZyoCUTRvH3liK5+N6VQZ4NIw90AgDXY6iPnsqplNFf6STcj+ePk0H/xqxnP75Lr0J0Fq3A==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.1
'@sinonjs/fake-timers': 6.0.1
- '@sinonjs/text-encoding': 0.7.2
- just-extend: 4.2.1
+ '@sinonjs/text-encoding': 0.7.1
+ just-extend: 4.1.1
path-to-regexp: 1.8.0
dev: true
+ /node-modules-regexp/1.0.0:
+ resolution: {integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
/node-noop/1.0.0:
resolution: {integrity: sha512-1lpWqKwZ9yUosQfW1uy3jm6St4ZbmeDKKGmdzwzedbyBI4LgHtGyL1ofDdqiSomgaYaSERi+qWtj64huJQjl7g==}
dev: true
@@ -6029,8 +6174,12 @@ packages:
process-on-spawn: 1.0.0
dev: true
- /node-releases/2.0.6:
- resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
+ /node-releases/1.1.64:
+ resolution: {integrity: sha512-Iec8O9166/x2HRMJyLLLWkd0sFFLrFNy+Xf+JQfSQsdBJzPcHpNl3JQ9gD4j+aJxmCa25jNsIbM4bmACtSbkSg==}
+ dev: true
+
+ /node-releases/1.1.73:
+ resolution: {integrity: sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==}
dev: true
/nofilter/3.1.0:
@@ -6047,12 +6196,12 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
- /normalize-package-data/3.0.3:
- resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
+ /normalize-package-data/3.0.2:
+ resolution: {integrity: sha512-6CdZocmfGaKnIHPVFhJJZ3GuR8SsLKvDANFp47Jmy51aKIr8akjAWTSxtpI+MBgBFdSMRyo4hMpDlT6dTffgZg==}
engines: {node: '>=10'}
dependencies:
- hosted-git-info: 4.1.0
- is-core-module: 2.10.0
+ hosted-git-info: 4.0.2
+ resolve: 1.22.1
semver: 7.3.7
validate-npm-package-license: 3.0.4
dev: true
@@ -6091,29 +6240,29 @@ packages:
hasBin: true
dependencies:
'@istanbuljs/load-nyc-config': 1.1.0
- '@istanbuljs/schema': 0.1.3
+ '@istanbuljs/schema': 0.1.2
caching-transform: 4.0.0
- convert-source-map: 1.8.0
+ convert-source-map: 1.7.0
decamelize: 1.2.0
- find-cache-dir: 3.3.2
+ find-cache-dir: 3.3.1
find-up: 4.1.0
foreground-child: 2.0.0
get-package-type: 0.1.0
- glob: 7.2.3
- istanbul-lib-coverage: 3.2.0
+ glob: 7.1.6
+ istanbul-lib-coverage: 3.0.0
istanbul-lib-hook: 3.0.0
istanbul-lib-instrument: 4.0.3
- istanbul-lib-processinfo: 2.0.3
+ istanbul-lib-processinfo: 2.0.2
istanbul-lib-report: 3.0.0
- istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.5
+ istanbul-lib-source-maps: 4.0.0
+ istanbul-reports: 3.0.2
make-dir: 3.1.0
node-preload: 0.2.1
p-map: 3.0.0
process-on-spawn: 1.0.0
resolve-from: 5.0.0
rimraf: 3.0.2
- signal-exit: 3.0.7
+ signal-exit: 3.0.3
spawn-wrap: 2.0.0
test-exclude: 6.0.0
yargs: 15.4.1
@@ -6122,7 +6271,7 @@ packages:
dev: true
/object-assign/4.1.1:
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
engines: {node: '>=0.10.0'}
dev: false
@@ -6153,12 +6302,10 @@ packages:
object-keys: 1.1.1
dev: true
- /object.getownpropertydescriptors/2.1.4:
- resolution: {integrity: sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==}
+ /object.getownpropertydescriptors/2.1.0:
+ resolution: {integrity: sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==}
engines: {node: '>= 0.8'}
dependencies:
- array.prototype.reduce: 1.0.4
- call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.3
dev: true
@@ -6168,7 +6315,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.1.4
+ define-properties: 1.1.3
es-abstract: 1.20.3
dev: true
@@ -6188,7 +6335,7 @@ packages:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
dependencies:
- deep-is: 0.1.4
+ deep-is: 0.1.3
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
@@ -6213,7 +6360,7 @@ packages:
dev: true
/p-finally/1.0.0:
- resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
+ resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=}
engines: {node: '>=4'}
dev: true
@@ -6229,7 +6376,6 @@ packages:
engines: {node: '>=10'}
dependencies:
yocto-queue: 0.1.0
- dev: true
/p-limit/4.0.0:
resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
@@ -6257,7 +6403,6 @@ packages:
engines: {node: '>=10'}
dependencies:
p-limit: 3.1.0
- dev: true
/p-locate/6.0.0:
resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
@@ -6340,10 +6485,10 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.18.6
+ '@babel/code-frame': 7.14.5
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
+ lines-and-columns: 1.1.6
dev: true
/parse-ms/2.1.0:
@@ -6359,7 +6504,6 @@ packages:
/path-exists/4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- dev: true
/path-exists/5.0.0:
resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
@@ -6374,8 +6518,12 @@ packages:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
+ /path-parse/1.0.6:
+ resolution: {integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==}
+
/path-parse/1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+ dev: true
/path-to-regexp/1.8.0:
resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==}
@@ -6386,15 +6534,15 @@ packages:
/path-type/4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- dev: true
- /picocolors/0.2.1:
- resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
- dev: true
+ /picomatch/2.2.2:
+ resolution: {integrity: sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==}
+ engines: {node: '>=8.6'}
- /picocolors/1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- dev: true
+ /picomatch/2.3.0:
+ resolution: {integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==}
+ engines: {node: '>=8.6'}
+ dev: false
/picomatch/2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@@ -6410,9 +6558,11 @@ packages:
engines: {node: '>=10'}
dev: true
- /pirates/4.0.5:
- resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
+ /pirates/4.0.1:
+ resolution: {integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==}
engines: {node: '>= 6'}
+ dependencies:
+ node-modules-regexp: 1.0.0
dev: false
/pkg-conf/3.1.0:
@@ -6460,19 +6610,19 @@ packages:
/postcss-calc/7.0.5:
resolution: {integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==}
dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 6.0.10
- postcss-value-parser: 4.2.0
+ postcss: 7.0.35
+ postcss-selector-parser: 6.0.4
+ postcss-value-parser: 4.1.0
dev: true
/postcss-colormin/4.0.3:
resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.21.4
- color: 3.2.1
+ browserslist: 4.14.5
+ color: 3.1.3
has: 1.0.3
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6480,7 +6630,7 @@ packages:
resolution: {integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6488,28 +6638,28 @@ packages:
resolution: {integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
dev: true
/postcss-discard-duplicates/4.0.2:
resolution: {integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
dev: true
/postcss-discard-empty/4.0.1:
resolution: {integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
dev: true
/postcss-discard-overridden/4.0.1:
resolution: {integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
dev: true
/postcss-load-config/2.1.2:
@@ -6525,7 +6675,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
css-color-names: 0.0.4
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
stylehacks: 4.0.3
dev: true
@@ -6534,10 +6684,10 @@ packages:
resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.14.5
caniuse-api: 3.0.0
cssnano-util-same-parent: 4.0.1
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-selector-parser: 3.1.2
vendors: 1.0.4
dev: true
@@ -6546,7 +6696,7 @@ packages:
resolution: {integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6556,7 +6706,7 @@ packages:
dependencies:
cssnano-util-get-arguments: 4.0.0
is-color-stop: 1.1.0
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6565,9 +6715,9 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
alphanum-sort: 1.0.2
- browserslist: 4.21.4
+ browserslist: 4.14.5
cssnano-util-get-arguments: 4.0.0
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
uniqs: 2.0.0
dev: true
@@ -6578,32 +6728,32 @@ packages:
dependencies:
alphanum-sort: 1.0.2
has: 1.0.3
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-selector-parser: 3.1.2
dev: true
/postcss-modules-extract-imports/1.1.0:
- resolution: {integrity: sha512-zF9+UIEvtpeqMGxhpeT9XaIevQSrBBCz9fi7SwfkmjVacsSj8DY5eFVgn+wY8I9vvdDDwK5xC8Myq4UkoLFIkA==}
+ resolution: {integrity: sha1-thTJcgvmgW6u41+zpfqh26agXds=}
dependencies:
postcss: 6.0.1
dev: true
/postcss-modules-local-by-default/1.2.0:
- resolution: {integrity: sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==}
+ resolution: {integrity: sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=}
dependencies:
css-selector-tokenizer: 0.7.3
postcss: 6.0.1
dev: true
/postcss-modules-scope/1.1.0:
- resolution: {integrity: sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==}
+ resolution: {integrity: sha1-1upkmUx5+XtipytCb75gVqGUu5A=}
dependencies:
css-selector-tokenizer: 0.7.3
postcss: 6.0.1
dev: true
/postcss-modules-values/1.3.0:
- resolution: {integrity: sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==}
+ resolution: {integrity: sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=}
dependencies:
icss-replace-symbols: 1.1.0
postcss: 6.0.1
@@ -6615,7 +6765,7 @@ packages:
css-modules-loader-core: 1.1.0
generic-names: 2.0.1
lodash.camelcase: 4.3.0
- postcss: 7.0.39
+ postcss: 7.0.35
string-hash: 1.1.3
dev: true
@@ -6623,7 +6773,7 @@ packages:
resolution: {integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
dev: true
/postcss-normalize-display-values/4.0.2:
@@ -6631,7 +6781,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
cssnano-util-get-match: 4.0.0
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6641,7 +6791,7 @@ packages:
dependencies:
cssnano-util-get-arguments: 4.0.0
has: 1.0.3
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6651,7 +6801,7 @@ packages:
dependencies:
cssnano-util-get-arguments: 4.0.0
cssnano-util-get-match: 4.0.0
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6660,7 +6810,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
has: 1.0.3
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6669,7 +6819,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
cssnano-util-get-match: 4.0.0
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6677,8 +6827,8 @@ packages:
resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.21.4
- postcss: 7.0.39
+ browserslist: 4.14.5
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6688,7 +6838,7 @@ packages:
dependencies:
is-absolute-url: 2.1.0
normalize-url: 3.3.0
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6696,7 +6846,7 @@ packages:
resolution: {integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6705,7 +6855,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
cssnano-util-get-arguments: 4.0.0
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6713,10 +6863,10 @@ packages:
resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.21.4
+ browserslist: 4.14.5
caniuse-api: 3.0.0
has: 1.0.3
- postcss: 7.0.39
+ postcss: 7.0.35
dev: true
/postcss-reduce-transforms/4.0.2:
@@ -6725,7 +6875,7 @@ packages:
dependencies:
cssnano-util-get-match: 4.0.0
has: 1.0.3
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
dev: true
@@ -6738,19 +6888,22 @@ packages:
uniq: 1.0.1
dev: true
- /postcss-selector-parser/6.0.10:
- resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
+ /postcss-selector-parser/6.0.4:
+ resolution: {integrity: sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
util-deprecate: 1.0.2
dev: true
- /postcss-svgo/4.0.3:
- resolution: {integrity: sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==}
+ /postcss-svgo/4.0.2:
+ resolution: {integrity: sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==}
engines: {node: '>=6.9.0'}
dependencies:
- postcss: 7.0.39
+ is-svg: 3.0.0
+ postcss: 7.0.35
postcss-value-parser: 3.3.1
svgo: 1.3.2
dev: true
@@ -6760,7 +6913,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
alphanum-sort: 1.0.2
- postcss: 7.0.39
+ postcss: 7.0.35
uniqs: 2.0.0
dev: true
@@ -6768,12 +6921,12 @@ packages:
resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==}
dev: true
- /postcss-value-parser/4.2.0:
- resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+ /postcss-value-parser/4.1.0:
+ resolution: {integrity: sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==}
dev: true
/postcss/6.0.1:
- resolution: {integrity: sha512-VbGX1LQgQbf9l3cZ3qbUuC3hGqIEOGQFHAEHQ/Diaeo0yLgpgK5Rb8J+OcamIfQ9PbAU/fzBjVtQX3AhJHUvZw==}
+ resolution: {integrity: sha1-AA29H47vIXqjaLmiEsX8QLKo8/I=}
engines: {node: '>=4.0.0'}
dependencies:
chalk: 1.1.3
@@ -6781,12 +6934,13 @@ packages:
supports-color: 3.2.3
dev: true
- /postcss/7.0.39:
- resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
+ /postcss/7.0.35:
+ resolution: {integrity: sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==}
engines: {node: '>=6.0.0'}
dependencies:
- picocolors: 0.2.1
+ chalk: 2.4.2
source-map: 0.6.1
+ supports-color: 6.1.0
dev: true
/prelude-ls/1.2.1:
@@ -6809,6 +6963,12 @@ packages:
prettier: 2.7.1
dev: true
+ /prettier/2.1.2:
+ resolution: {integrity: sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ dev: true
+
/prettier/2.7.1:
resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==}
engines: {node: '>=10.13.0'}
@@ -6826,16 +6986,11 @@ packages:
resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==}
engines: {node: '>=8'}
dependencies:
- fromentries: 1.3.2
+ fromentries: 1.3.0
dev: true
- /progress/2.0.3:
- resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
- engines: {node: '>=0.4.0'}
- dev: false
-
/promise.series/0.2.0:
- resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==}
+ resolution: {integrity: sha1-LMfr6Vn8OmYZwEq029yeRS2GS70=}
engines: {node: '>=0.12'}
dev: true
@@ -6851,7 +7006,7 @@ packages:
engines: {node: '>=6'}
/q/1.5.1:
- resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
+ resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=}
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
dev: true
@@ -6883,7 +7038,7 @@ packages:
dependencies:
find-up: 5.0.0
read-pkg: 6.0.0
- type-fest: 1.4.0
+ type-fest: 1.2.2
dev: true
/read-pkg/5.2.0:
@@ -6901,9 +7056,9 @@ packages:
engines: {node: '>=12'}
dependencies:
'@types/normalize-package-data': 2.4.1
- normalize-package-data: 3.0.3
+ normalize-package-data: 3.0.2
parse-json: 5.2.0
- type-fest: 1.4.0
+ type-fest: 1.2.2
dev: true
/readable-stream/3.6.0:
@@ -6923,7 +7078,7 @@ packages:
dev: true
/rechoir/0.6.2:
- resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
+ resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=}
engines: {node: '>= 0.10'}
dependencies:
resolve: 1.22.1
@@ -6945,30 +7100,23 @@ packages:
strip-indent: 4.0.0
dev: true
- /regenerate-unicode-properties/10.1.0:
- resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
- engines: {node: '>=4'}
- dependencies:
- regenerate: 1.4.2
- dev: true
-
/regenerate-unicode-properties/8.2.0:
resolution: {integrity: sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==}
engines: {node: '>=4'}
dependencies:
- regenerate: 1.4.2
+ regenerate: 1.4.1
- /regenerate/1.4.2:
- resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
+ /regenerate/1.4.1:
+ resolution: {integrity: sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==}
- /regenerator-runtime/0.13.9:
- resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
+ /regenerator-runtime/0.13.7:
+ resolution: {integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==}
dev: true
- /regenerator-transform/0.15.0:
- resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
+ /regenerator-transform/0.14.5:
+ resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==}
dependencies:
- '@babel/runtime': 7.19.0
+ '@babel/runtime': 7.12.1
dev: true
/regexp.prototype.flags/1.4.3:
@@ -6988,47 +7136,36 @@ packages:
resolution: {integrity: sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==}
engines: {node: '>=4'}
dependencies:
- regenerate: 1.4.2
+ regenerate: 1.4.1
regenerate-unicode-properties: 8.2.0
regjsgen: 0.5.2
- regjsparser: 0.6.9
+ regjsparser: 0.6.4
unicode-match-property-ecmascript: 1.0.4
unicode-match-property-value-ecmascript: 1.2.0
- /regexpu-core/5.2.1:
- resolution: {integrity: sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==}
+ /regexpu-core/4.7.1:
+ resolution: {integrity: sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==}
engines: {node: '>=4'}
dependencies:
- regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.0
- regjsgen: 0.7.1
- regjsparser: 0.9.1
- unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.0.0
+ regenerate: 1.4.1
+ regenerate-unicode-properties: 8.2.0
+ regjsgen: 0.5.2
+ regjsparser: 0.6.4
+ unicode-match-property-ecmascript: 1.0.4
+ unicode-match-property-value-ecmascript: 1.2.0
dev: true
/regjsgen/0.5.2:
resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==}
- /regjsgen/0.7.1:
- resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==}
- dev: true
-
- /regjsparser/0.6.9:
- resolution: {integrity: sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==}
- hasBin: true
- dependencies:
- jsesc: 0.5.0
-
- /regjsparser/0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
+ /regjsparser/0.6.4:
+ resolution: {integrity: sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==}
hasBin: true
dependencies:
jsesc: 0.5.0
- dev: true
/release-zalgo/1.0.0:
- resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==}
+ resolution: {integrity: sha1-CXALflB0Mpc5Mw5TXFqQ+2eFFzA=}
engines: {node: '>=4'}
dependencies:
es6-error: 4.1.1
@@ -7039,21 +7176,16 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /require-from-string/2.0.2:
- resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/require-main-filename/2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
dev: true
/require-relative/0.8.7:
- resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==}
+ resolution: {integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=}
dev: true
- /resolve-alpn/1.2.1:
- resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
+ /resolve-alpn/1.1.2:
+ resolution: {integrity: sha512-8OyfzhAtA32LVUsJSke3auIyINcwdh5l3cvYKdKO0nvsYSKuiLfTM5i78PJswFPT8y6cPW+L1v6/hE95chcpDA==}
dev: true
/resolve-cwd/3.0.0:
@@ -7077,6 +7209,26 @@ packages:
engines: {node: '>=8'}
dev: true
+ /resolve/1.18.1:
+ resolution: {integrity: sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==}
+ dependencies:
+ is-core-module: 2.0.0
+ path-parse: 1.0.6
+
+ /resolve/1.19.0:
+ resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
+ dependencies:
+ is-core-module: 2.1.0
+ path-parse: 1.0.6
+ dev: false
+
+ /resolve/1.20.0:
+ resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==}
+ dependencies:
+ is-core-module: 2.5.0
+ path-parse: 1.0.7
+ dev: true
+
/resolve/1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
@@ -7084,9 +7236,10 @@ packages:
is-core-module: 2.10.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
+ dev: true
- /responselike/2.0.1:
- resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==}
+ /responselike/2.0.0:
+ resolution: {integrity: sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==}
dependencies:
lowercase-keys: 2.0.0
dev: true
@@ -7103,39 +7256,35 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rfdc/1.3.0:
- resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
- dev: true
-
/rgb-regex/1.0.1:
- resolution: {integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==}
+ resolution: {integrity: sha1-wODWiC3w4jviVKR16O3UGRX+rrE=}
dev: true
/rgba-regex/1.0.0:
- resolution: {integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==}
+ resolution: {integrity: sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=}
dev: true
/rimraf/3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
- glob: 7.2.3
+ glob: 7.1.7
/rollup-plugin-postcss/3.1.8:
resolution: {integrity: sha512-JHnGfW8quNc6ePxEkZ05HEZ1YiRxDgY9RKEetMfsrwxR2kh/d90OVScTc6b1c2Q17Cs/5TRYL+1uddG21lQe3w==}
engines: {node: '>=10'}
dependencies:
- chalk: 4.1.2
+ chalk: 4.1.0
concat-with-sourcemaps: 1.1.0
- cssnano: 4.1.11
+ cssnano: 4.1.10
import-cwd: 3.0.0
p-queue: 6.6.2
pify: 5.0.0
- postcss: 7.0.39
+ postcss: 7.0.35
postcss-load-config: 2.1.2
postcss-modules: 2.0.0
promise.series: 0.2.0
- resolve: 1.22.1
+ resolve: 1.18.1
rollup-pluginutils: 2.8.2
safe-identifier: 0.4.2
style-inject: 0.3.0
@@ -7153,28 +7302,47 @@ packages:
hasBin: true
optionalDependencies:
fsevents: 2.3.2
- dev: true
- /rollup/2.79.1:
- resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
+ /rollup/2.68.0:
+ resolution: {integrity: sha512-XrMKOYK7oQcTio4wyTz466mucnd8LzkiZLozZ4Rz0zQD+HeX4nUK4B8GrTX/2EvN2/vBF/i2WnaXboPxo0JylA==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
+
+ /rollup/2.78.1:
+ resolution: {integrity: sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==}
engines: {node: '>=10.0.0'}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
+ /rollup/3.0.0-7:
+ resolution: {integrity: sha512-Hq5hpq9IrR4YfGd4o4zDtsfZnkwoCpjrQ4ZQIZrVF4ryzW6FOgXKBm6N7vJfodIJ6v+51FsqsXD2bxW5wapiuA==}
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
+ /run-parallel/1.1.9:
+ resolution: {integrity: sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==}
+ dev: true
+
/run-parallel/1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
/rw/1.3.3:
- resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
+ resolution: {integrity: sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=}
dev: false
- /rxjs/7.5.7:
- resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==}
+ /rxjs/6.6.7:
+ resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
+ engines: {npm: '>=2.0.0'}
dependencies:
- tslib: 2.4.0
+ tslib: 1.14.1
dev: true
/safe-buffer/5.1.2:
@@ -7206,7 +7374,7 @@ packages:
dev: true
/semver-compare/1.0.0:
- resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
+ resolution: {integrity: sha1-De4hahyUGrN+nvsXiPavxf9VN/w=}
dev: true
/semver/5.7.1:
@@ -7218,12 +7386,24 @@ packages:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
+ /semver/7.0.0:
+ resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
+ hasBin: true
+ dev: true
+
+ /semver/7.3.2:
+ resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dev: true
+
/semver/7.3.7:
resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
+ dev: true
/serialize-error/7.0.1:
resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==}
@@ -7233,7 +7413,7 @@ packages:
dev: true
/set-blocking/2.0.0:
- resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+ resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=}
dev: true
/shebang-command/2.0.0:
@@ -7246,23 +7426,23 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /shelljs/0.8.5:
- resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
+ /shelljs/0.8.4:
+ resolution: {integrity: sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==}
engines: {node: '>=4'}
hasBin: true
dependencies:
- glob: 7.2.3
+ glob: 7.1.6
interpret: 1.4.0
rechoir: 0.6.2
dev: true
- /shx/0.3.4:
- resolution: {integrity: sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==}
+ /shx/0.3.3:
+ resolution: {integrity: sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==}
engines: {node: '>=6'}
hasBin: true
dependencies:
- minimist: 1.2.6
- shelljs: 0.8.5
+ minimist: 1.2.5
+ shelljs: 0.8.4
dev: true
/side-channel/1.0.4:
@@ -7273,12 +7453,16 @@ packages:
object-inspect: 1.12.2
dev: true
+ /signal-exit/3.0.3:
+ resolution: {integrity: sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==}
+ dev: true
+
/signal-exit/3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
dev: true
/simple-swizzle/0.2.2:
- resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ resolution: {integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=}
dependencies:
is-arrayish: 0.3.2
dev: true
@@ -7286,12 +7470,12 @@ packages:
/sinon/9.0.2:
resolution: {integrity: sha512-0uF8Q/QHkizNUmbK3LRFqx5cpTttEVXudywY9Uwzy8bTfZUhljZ7ARzSxnRHWYWtVTeh4Cw+tTb3iU21FQVO9A==}
dependencies:
- '@sinonjs/commons': 1.8.3
+ '@sinonjs/commons': 1.8.1
'@sinonjs/fake-timers': 6.0.1
'@sinonjs/formatio': 5.0.1
- '@sinonjs/samsam': 5.3.1
+ '@sinonjs/samsam': 5.2.0
diff: 4.0.2
- nise: 4.1.0
+ nise: 4.0.4
supports-color: 7.2.0
dev: true
@@ -7320,6 +7504,7 @@ packages:
ansi-styles: 4.3.0
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
+ dev: true
/slice-ansi/5.0.0:
resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
@@ -7330,21 +7515,28 @@ packages:
dev: true
/sort-keys/2.0.0:
- resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==}
+ resolution: {integrity: sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=}
engines: {node: '>=4'}
dependencies:
is-plain-obj: 1.1.0
dev: true
+ /source-map-support/0.5.19:
+ resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==}
+ dependencies:
+ buffer-from: 1.1.1
+ source-map: 0.6.1
+ dev: true
+
/source-map-support/0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
- buffer-from: 1.1.2
+ buffer-from: 1.1.1
source-map: 0.6.1
dev: true
/source-map/0.5.7:
- resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
+ resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=}
engines: {node: '>=0.10.0'}
dev: true
@@ -7353,8 +7545,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /source-map/0.7.4:
- resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
+ /source-map/0.7.3:
+ resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==}
engines: {node: '>= 8'}
dev: true
@@ -7377,7 +7569,7 @@ packages:
resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.12
+ spdx-license-ids: 3.0.9
dev: true
/spdx-exceptions/2.3.0:
@@ -7388,11 +7580,11 @@ packages:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.12
+ spdx-license-ids: 3.0.9
dev: true
- /spdx-license-ids/3.0.12:
- resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==}
+ /spdx-license-ids/3.0.9:
+ resolution: {integrity: sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ==}
dev: true
/split2/3.2.2:
@@ -7402,11 +7594,10 @@ packages:
dev: true
/sprintf-js/1.0.3:
- resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=}
/stable/0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
- deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
dev: true
/stack-utils/2.0.5:
@@ -7422,11 +7613,11 @@ packages:
dev: true
/string-capitalize/1.0.1:
- resolution: {integrity: sha512-WXkJkAylBVtp4epFm7z9VBsV60hxNKJZ+kjfQIIHbhGcY80TllJghXtdB+F80v4RPowZXpQVBVLcK5IpZjg0xg==}
+ resolution: {integrity: sha1-qGZfdzYbTOBKa95tm7shcSu5dJ4=}
dev: true
/string-hash/1.1.3:
- resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==}
+ resolution: {integrity: sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=}
dev: true
/string-width/4.2.3:
@@ -7436,6 +7627,7 @@ packages:
emoji-regex: 8.0.0
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
+ dev: true
/string-width/5.1.2:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
@@ -7484,6 +7676,13 @@ packages:
ansi-regex: 2.1.1
dev: true
+ /strip-ansi/6.0.0:
+ resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-regex: 5.0.0
+ dev: true
+
/strip-ansi/6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
@@ -7545,21 +7744,21 @@ packages:
resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.21.4
- postcss: 7.0.39
+ browserslist: 4.14.5
+ postcss: 7.0.35
postcss-selector-parser: 3.1.2
dev: true
- /sucrase/3.27.0:
- resolution: {integrity: sha512-IjpEeFzOWCGrB/e2DnPawkFajW6ONFFgs+lQT1+Ts5Z5ZM9gPnxpDh0q8tu7HVLt6IfRiUTbSsjfhqjHOP/cwQ==}
+ /sucrase/3.20.3:
+ resolution: {integrity: sha512-azqwq0/Bs6RzLAdb4dXxsCgMtAaD2hzmUr4UhSfsxO46JFPAwMnnb441B/qsudZiS6Ylea3JXZe3Q497lsgXzQ==}
engines: {node: '>=8'}
hasBin: true
dependencies:
commander: 4.1.1
glob: 7.1.6
- lines-and-columns: 1.2.4
+ lines-and-columns: 1.1.6
mz: 2.7.0
- pirates: 4.0.5
+ pirates: 4.0.1
ts-interface-checker: 0.1.13
dev: false
@@ -7591,6 +7790,13 @@ packages:
dependencies:
has-flag: 3.0.0
+ /supports-color/6.1.0:
+ resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ has-flag: 3.0.0
+ dev: true
+
/supports-color/7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
@@ -7600,11 +7806,11 @@ packages:
/supports-preserve-symlinks-flag/1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
+ dev: true
/svgo/1.3.2:
resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==}
engines: {node: '>=4.0.0'}
- deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x.
hasBin: true
dependencies:
chalk: 2.4.2
@@ -7612,9 +7818,9 @@ packages:
css-select: 2.1.0
css-select-base-adapter: 0.1.1
css-tree: 1.0.0-alpha.37
- csso: 4.2.0
+ csso: 4.0.3
js-yaml: 3.14.1
- mkdirp: 0.5.6
+ mkdirp: 0.5.5
object.values: 1.1.5
sax: 1.2.4
stable: 0.1.8
@@ -7622,17 +7828,6 @@ packages:
util.promisify: 1.0.1
dev: true
- /table/6.8.0:
- resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==}
- engines: {node: '>=10.0.0'}
- dependencies:
- ajv: 8.11.0
- lodash.truncate: 4.4.2
- slice-ansi: 4.0.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
- dev: false
-
/temp-dir/2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
@@ -7642,8 +7837,8 @@ packages:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
dependencies:
- '@istanbuljs/schema': 0.1.3
- glob: 7.2.3
+ '@istanbuljs/schema': 0.1.2
+ glob: 7.1.7
minimatch: 3.1.2
dev: true
@@ -7656,7 +7851,7 @@ packages:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
/thenify-all/1.6.0:
- resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
+ resolution: {integrity: sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=}
engines: {node: '>=0.8'}
dependencies:
thenify: 3.3.1
@@ -7669,7 +7864,7 @@ packages:
dev: false
/through/2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=}
dev: true
/through2/4.0.2:
@@ -7684,11 +7879,11 @@ packages:
dev: true
/timsort/0.3.0:
- resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==}
+ resolution: {integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=}
dev: true
/to-fast-properties/2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
+ resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
engines: {node: '>=4'}
/to-regex-range/5.0.1:
@@ -7698,7 +7893,7 @@ packages:
is-number: 7.0.0
/tosource/1.0.0:
- resolution: {integrity: sha512-N6g8eQ1eerw6Y1pBhdgkubWIiPFwXa2POSUrlL8jth5CyyEWNWzoGKRkO3CaO7Jx27hlJP54muB3btIAbx4MPg==}
+ resolution: {integrity: sha1-QtiN0RZhi88A1hBt1URvNCeQL/E=}
engines: {node: '>=0.4.0'}
dev: false
@@ -7712,6 +7907,11 @@ packages:
engines: {node: '>=12'}
dev: true
+ /trim-off-newlines/1.0.1:
+ resolution: {integrity: sha1-n5up2e+odkw4dpi8v+sshI8RrbM=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/ts-interface-checker/0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
dev: false
@@ -7731,12 +7931,12 @@ packages:
optional: true
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.9
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.3
+ '@tsconfig/node10': 1.0.8
+ '@tsconfig/node12': 1.0.9
+ '@tsconfig/node14': 1.0.1
+ '@tsconfig/node16': 1.0.2
'@types/node': 14.18.30
- acorn: 8.8.0
+ acorn: 8.7.1
acorn-walk: 8.2.0
arg: 4.1.3
create-require: 1.1.1
@@ -7756,13 +7956,19 @@ packages:
strip-bom: 3.0.0
dev: true
+ /tsconfig-paths/3.9.0:
+ resolution: {integrity: sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==}
+ dependencies:
+ '@types/json5': 0.0.29
+ json5: 1.0.1
+ minimist: 1.2.5
+ strip-bom: 3.0.0
+ dev: true
+
/tslib/1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
- /tslib/2.4.0:
- resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
-
/tsutils/3.21.0_typescript@4.8.3:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
@@ -7823,8 +8029,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /type-fest/1.4.0:
- resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
+ /type-fest/1.2.2:
+ resolution: {integrity: sha512-pfkPYCcuV0TJoo/jlsUeWNV8rk7uMU6ocnYNvca1Vu+pyKi8Rl8Zo2scPt9O72gCsXIm+dMxOOWuA3VFDSdzWA==}
engines: {node: '>=10'}
dev: true
@@ -7832,8 +8038,8 @@ packages:
resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
dev: true
- /type/2.7.2:
- resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
+ /type/2.1.0:
+ resolution: {integrity: sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==}
dev: true
/typedarray-to-buffer/3.1.5:
@@ -7842,8 +8048,8 @@ packages:
is-typedarray: 1.0.0
dev: true
- /typescript/3.9.10:
- resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
+ /typescript/3.9.7:
+ resolution: {integrity: sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
@@ -7854,6 +8060,12 @@ packages:
hasBin: true
dev: true
+ /typescript/4.7.3:
+ resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
+ dev: true
+
/typescript/4.8.3:
resolution: {integrity: sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==}
engines: {node: '>=4.2.0'}
@@ -7873,11 +8085,6 @@ packages:
resolution: {integrity: sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==}
engines: {node: '>=4'}
- /unicode-canonical-property-names-ecmascript/2.0.0:
- resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
- engines: {node: '>=4'}
- dev: true
-
/unicode-match-property-ecmascript/1.0.4:
resolution: {integrity: sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==}
engines: {node: '>=4'}
@@ -7885,53 +8092,24 @@ packages:
unicode-canonical-property-names-ecmascript: 1.0.4
unicode-property-aliases-ecmascript: 1.1.0
- /unicode-match-property-ecmascript/2.0.0:
- resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
- engines: {node: '>=4'}
- dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.0
- unicode-property-aliases-ecmascript: 2.1.0
- dev: true
-
/unicode-match-property-value-ecmascript/1.2.0:
resolution: {integrity: sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==}
engines: {node: '>=4'}
- /unicode-match-property-value-ecmascript/2.0.0:
- resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==}
- engines: {node: '>=4'}
- dev: true
-
/unicode-property-aliases-ecmascript/1.1.0:
resolution: {integrity: sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==}
engines: {node: '>=4'}
- /unicode-property-aliases-ecmascript/2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
- engines: {node: '>=4'}
- dev: true
-
/uniq/1.0.1:
- resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==}
+ resolution: {integrity: sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=}
dev: true
/uniqs/2.0.0:
- resolution: {integrity: sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==}
+ resolution: {integrity: sha1-/+3ks2slKQaW5uFl1KWe25mOawI=}
dev: true
/unquote/1.1.1:
- resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
- dev: true
-
- /update-browserslist-db/1.0.9_browserslist@4.21.4:
- resolution: {integrity: sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.21.4
- escalade: 3.1.1
- picocolors: 1.0.0
+ resolution: {integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=}
dev: true
/uri-js/4.4.1:
@@ -7940,7 +8118,7 @@ packages:
punycode: 2.1.1
/util-deprecate/1.0.2:
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
dev: true
/util.promisify/1.0.1:
@@ -7949,11 +8127,11 @@ packages:
define-properties: 1.1.4
es-abstract: 1.20.3
has-symbols: 1.0.3
- object.getownpropertydescriptors: 2.1.4
+ object.getownpropertydescriptors: 2.1.0
dev: true
- /uuid/8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
+ /uuid/3.4.0:
+ resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
hasBin: true
dev: true
@@ -7963,6 +8141,7 @@ packages:
/v8-compile-cache/2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
+ dev: true
/validate-npm-package-license/3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
@@ -7983,15 +8162,15 @@ packages:
/which-boxed-primitive/1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
- is-bigint: 1.0.4
- is-boolean-object: 1.1.2
- is-number-object: 1.0.7
+ is-bigint: 1.0.2
+ is-boolean-object: 1.1.1
+ is-number-object: 1.0.5
is-string: 1.0.7
is-symbol: 1.0.4
dev: true
/which-module/2.0.0:
- resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==}
+ resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=}
dev: true
/which/2.0.2:
@@ -8088,9 +8267,10 @@ packages:
/yallist/4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ dev: true
- /yaml/1.10.2:
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+ /yaml/1.10.0:
+ resolution: {integrity: sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==}
engines: {node: '>= 6'}
dev: true
@@ -8129,11 +8309,11 @@ packages:
yargs-parser: 18.1.3
dev: true
- /yargs/17.5.1:
- resolution: {integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==}
+ /yargs/17.6.0:
+ resolution: {integrity: sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==}
engines: {node: '>=12'}
dependencies:
- cliui: 7.0.4
+ cliui: 8.0.1
escalade: 3.1.1
get-caller-file: 2.0.5
require-directory: 2.1.1
@@ -8150,7 +8330,6 @@ packages:
/yocto-queue/0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- dev: true
/yocto-queue/1.0.0:
resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
diff --git a/tsconfig.base.json b/tsconfig.base.json
index 63da44c4e..a198903e5 100644
--- a/tsconfig.base.json
+++ b/tsconfig.base.json
@@ -12,7 +12,7 @@
"pretty": true,
"sourceMap": true,
"strict": true,
- "target": "es2017"
+ "target": "es2019"
},
"exclude": ["dist", "node_modules", "test/types"]
}