From ec1c7d6a82bee22dd5c26779f92ff2b5aaf2efb5 Mon Sep 17 00:00:00 2001 From: Serhii Date: Mon, 15 Jan 2024 09:51:45 +0200 Subject: [PATCH] fix: ensure "exists" js interpreter returns value depends on parent field existance for nested fields --- packages/js/spec/interpreters.spec.ts | 9 + packages/js/src/interpreters.ts | 5 +- pnpm-lock.yaml | 5605 +++++++++++++++---------- 3 files changed, 3378 insertions(+), 2241 deletions(-) diff --git a/packages/js/spec/interpreters.spec.ts b/packages/js/spec/interpreters.spec.ts index ef9b7a9..1e61df4 100644 --- a/packages/js/spec/interpreters.spec.ts +++ b/packages/js/spec/interpreters.spec.ts @@ -238,6 +238,15 @@ describe('Condition Interpreter', () => { expect(interpret(condition, { address: { building: 1 } })).to.be.true }) + it('can check that nested property does not exist', () => { + const condition = new Field('exists', 'group.objectId', false) + + expect(interpret(condition, {})).to.be.true + expect(interpret(condition, { group: {} })).to.be.true + expect(interpret(condition, { group: null })).to.be.true + expect(interpret(condition, { group: { objectId: 1 } })).to.be.false + }) + it('checks that at least one item from array satisfies condition', () => { const condition = new Field('exists', 'items.age', true) diff --git a/packages/js/src/interpreters.ts b/packages/js/src/interpreters.ts index ab6739e..1a326dc 100644 --- a/packages/js/src/interpreters.ts +++ b/packages/js/src/interpreters.ts @@ -67,7 +67,10 @@ export const exists: Interpret> = (node, object, { get }) => { } const [item, field] = getObjectFieldCursor<{}>(object, node.field, get); - const test = (value: {}) => !!value && value.hasOwnProperty(field) === node.value; + const test = (value: {}) => { + if (value == null) return Boolean(value) === node.value; + return value.hasOwnProperty(field) === node.value; + } return isArrayAndNotNumericField(item, field) ? item.some(test) : test(item); }; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c4a50e7..3363039 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,432 +1,617 @@ -lockfileVersion: 5.4 +lockfileVersion: '6.0' importers: .: - specifiers: - '@babel/core': ^7.10.2 - '@babel/plugin-proposal-class-properties': ^7.10.4 - '@babel/plugin-proposal-object-rest-spread': ^7.10.1 - '@babel/plugin-transform-typescript': ^7.10.1 - '@babel/preset-env': ^7.10.2 - '@rollup/plugin-babel': ^5.0.3 - '@rollup/plugin-commonjs': ^14.0.0 - '@rollup/plugin-node-resolve': ^8.0.1 - '@semantic-release/changelog': ^5.0.1 - '@semantic-release/git': ^9.0.0 - '@semantic-release/github': ^7.0.7 - '@semantic-release/npm': ^7.0.5 - '@types/chai': ^4.2.11 - '@types/chai-spies': ^1.0.1 - '@types/mocha': ^7.0.2 - '@typescript-eslint/eslint-plugin': ^3.6.0 - chai: ^4.2.0 - chai-spies: ^1.0.0 - codecov: ^3.7.0 - eslint: ^7.4.0 - eslint-config-airbnb-base: ^14.2.0 - eslint-config-airbnb-typescript: ^8.0.2 - eslint-plugin-import: ^2.22.0 - husky: ^4.2.5 - lint-staged: ^10.2.11 - mocha: ^8.0.1 - nyc: ^15.1.0 - rollup: ^2.15.0 - rollup-plugin-terser: ^6.1.0 - semantic-release: ^17.4.7 - ts-node: ^8.10.2 - typescript: ^3.9.5 devDependencies: - '@babel/core': 7.10.4 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-object-rest-spread': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-typescript': 7.10.4_@babel+core@7.10.4 - '@babel/preset-env': 7.10.4_@babel+core@7.10.4 - '@rollup/plugin-babel': 5.0.4_r5mhor6zvcty2ccldu7yzgxhye - '@rollup/plugin-commonjs': 14.0.0_rollup@2.18.2 - '@rollup/plugin-node-resolve': 8.1.0_rollup@2.18.2 - '@semantic-release/changelog': 5.0.1_semantic-release@17.4.7 - '@semantic-release/git': 9.0.0_semantic-release@17.4.7 - '@semantic-release/github': 7.0.7_semantic-release@17.4.7 - '@semantic-release/npm': 7.0.5_semantic-release@17.4.7 - '@types/chai': 4.2.11 - '@types/chai-spies': 1.0.1 - '@types/mocha': 7.0.2 - '@typescript-eslint/eslint-plugin': 3.6.0_pgknjxwjsuad5iynciuti3a6xi - chai: 4.2.0 - chai-spies: 1.0.0_chai@4.2.0 - codecov: 3.7.0 - eslint: 7.4.0 - eslint-config-airbnb-base: 14.2.0_y2f3kaloccpvqkc5wroyzrkqom - eslint-config-airbnb-typescript: 8.0.2_cwmmk7gp4cipueklkq2o6ipmda - eslint-plugin-import: 2.22.0_eslint@7.4.0 - husky: 4.2.5 - lint-staged: 10.2.11 - mocha: 8.0.1 - nyc: 15.1.0 - rollup: 2.18.2 - rollup-plugin-terser: 6.1.0_rollup@2.18.2 - semantic-release: 17.4.7 - ts-node: 8.10.2_typescript@3.9.6 - typescript: 3.9.6 + '@babel/core': + specifier: ^7.10.2 + version: 7.10.4 + '@babel/plugin-proposal-class-properties': + specifier: ^7.10.4 + version: 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-object-rest-spread': + specifier: ^7.10.1 + version: 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-typescript': + specifier: ^7.10.1 + version: 7.10.4(@babel/core@7.10.4) + '@babel/preset-env': + specifier: ^7.10.2 + version: 7.10.4(@babel/core@7.10.4) + '@rollup/plugin-babel': + specifier: ^5.0.3 + version: 5.0.4(@babel/core@7.10.4)(rollup@2.18.2) + '@rollup/plugin-commonjs': + specifier: ^14.0.0 + version: 14.0.0(rollup@2.18.2) + '@rollup/plugin-node-resolve': + specifier: ^8.0.1 + version: 8.1.0(rollup@2.18.2) + '@semantic-release/changelog': + specifier: ^5.0.1 + version: 5.0.1(semantic-release@17.4.7) + '@semantic-release/git': + specifier: ^9.0.0 + version: 9.0.0(semantic-release@17.4.7) + '@semantic-release/github': + specifier: ^7.0.7 + version: 7.0.7(semantic-release@17.4.7) + '@semantic-release/npm': + specifier: ^7.0.5 + version: 7.0.5(semantic-release@17.4.7) + '@types/chai': + specifier: ^4.2.11 + version: 4.2.11 + '@types/chai-spies': + specifier: ^1.0.1 + version: 1.0.1 + '@types/mocha': + specifier: ^7.0.2 + version: 7.0.2 + '@typescript-eslint/eslint-plugin': + specifier: ^3.6.0 + version: 3.6.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0)(typescript@3.9.6) + chai: + specifier: ^4.2.0 + version: 4.2.0 + chai-spies: + specifier: ^1.0.0 + version: 1.0.0(chai@4.2.0) + codecov: + specifier: ^3.7.0 + version: 3.7.0 + eslint: + specifier: ^7.4.0 + version: 7.4.0 + eslint-config-airbnb-base: + specifier: ^14.2.0 + version: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.4.0) + eslint-config-airbnb-typescript: + specifier: ^8.0.2 + version: 8.0.2(@typescript-eslint/eslint-plugin@3.6.0)(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.4.0)(typescript@3.9.6) + eslint-plugin-import: + specifier: ^2.22.0 + version: 2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0) + husky: + specifier: ^4.2.5 + version: 4.2.5 + lint-staged: + specifier: ^10.2.11 + version: 10.2.11 + mocha: + specifier: ^8.0.1 + version: 8.0.1 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + rollup: + specifier: ^2.15.0 + version: 2.18.2 + rollup-plugin-terser: + specifier: ^6.1.0 + version: 6.1.0(rollup@2.18.2) + semantic-release: + specifier: ^17.4.7 + version: 17.4.7 + ts-node: + specifier: ^8.10.2 + version: 8.10.2(typescript@3.9.6) + typescript: + specifier: ^3.9.5 + version: 3.9.6 packages/core: - specifiers: - '@babel/core': ^7.10.2 - '@babel/plugin-proposal-class-properties': ^7.10.4 - '@babel/plugin-proposal-object-rest-spread': ^7.10.4 - '@babel/plugin-transform-typescript': ^7.10.1 - '@babel/preset-env': ^7.10.2 - '@rollup/plugin-babel': ^5.0.3 - '@rollup/plugin-commonjs': ^14.0.0 - '@rollup/plugin-node-resolve': ^8.0.1 - '@semantic-release/changelog': ^5.0.1 - '@semantic-release/git': ^9.0.0 - '@semantic-release/github': ^7.0.7 - '@semantic-release/npm': ^7.0.5 - '@types/chai': ^4.2.11 - '@types/chai-spies': ^1.0.1 - '@types/mocha': ^7.0.2 - '@typescript-eslint/eslint-plugin': ^3.6.0 - babel-register: ^6.26.0 - chai: ^4.2.0 - chai-spies: ^1.0.0 - eslint: ^7.4.0 - eslint-config-airbnb-base: ^14.2.0 - eslint-config-airbnb-typescript: ^8.0.2 - eslint-plugin-import: ^2.22.0 - mocha: ^8.0.1 - nyc: ^15.1.0 - rollup: ^2.15.0 - rollup-plugin-terser: ^6.1.0 - semantic-release: ^17.4.7 - ts-node: ^8.10.2 - typescript: ^3.9.5 devDependencies: - '@babel/core': 7.10.4 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-object-rest-spread': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-typescript': 7.10.4_@babel+core@7.10.4 - '@babel/preset-env': 7.10.4_@babel+core@7.10.4 - '@rollup/plugin-babel': 5.0.4_r5mhor6zvcty2ccldu7yzgxhye - '@rollup/plugin-commonjs': 14.0.0_rollup@2.18.2 - '@rollup/plugin-node-resolve': 8.1.0_rollup@2.18.2 - '@semantic-release/changelog': 5.0.1_semantic-release@17.4.7 - '@semantic-release/git': 9.0.0_semantic-release@17.4.7 - '@semantic-release/github': 7.0.7_semantic-release@17.4.7 - '@semantic-release/npm': 7.0.5_semantic-release@17.4.7 - '@types/chai': 4.2.11 - '@types/chai-spies': 1.0.1 - '@types/mocha': 7.0.2 - '@typescript-eslint/eslint-plugin': 3.6.0_pgknjxwjsuad5iynciuti3a6xi - babel-register: 6.26.0 - chai: 4.2.0 - chai-spies: 1.0.0_chai@4.2.0 - eslint: 7.4.0 - eslint-config-airbnb-base: 14.2.0_y2f3kaloccpvqkc5wroyzrkqom - eslint-config-airbnb-typescript: 8.0.2_cwmmk7gp4cipueklkq2o6ipmda - eslint-plugin-import: 2.22.0_eslint@7.4.0 - mocha: 8.0.1 - nyc: 15.1.0 - rollup: 2.18.2 - rollup-plugin-terser: 6.1.0_rollup@2.18.2 - semantic-release: 17.4.7 - ts-node: 8.10.2_typescript@3.9.6 - typescript: 3.9.6 + '@babel/core': + specifier: ^7.10.2 + version: 7.10.4 + '@babel/plugin-proposal-class-properties': + specifier: ^7.10.4 + version: 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-object-rest-spread': + specifier: ^7.10.4 + version: 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-typescript': + specifier: ^7.10.1 + version: 7.10.4(@babel/core@7.10.4) + '@babel/preset-env': + specifier: ^7.10.2 + version: 7.10.4(@babel/core@7.10.4) + '@rollup/plugin-babel': + specifier: ^5.0.3 + version: 5.0.4(@babel/core@7.10.4)(rollup@2.18.2) + '@rollup/plugin-commonjs': + specifier: ^14.0.0 + version: 14.0.0(rollup@2.18.2) + '@rollup/plugin-node-resolve': + specifier: ^8.0.1 + version: 8.1.0(rollup@2.18.2) + '@semantic-release/changelog': + specifier: ^5.0.1 + version: 5.0.1(semantic-release@17.4.7) + '@semantic-release/git': + specifier: ^9.0.0 + version: 9.0.0(semantic-release@17.4.7) + '@semantic-release/github': + specifier: ^7.0.7 + version: 7.0.7(semantic-release@17.4.7) + '@semantic-release/npm': + specifier: ^7.0.5 + version: 7.0.5(semantic-release@17.4.7) + '@types/chai': + specifier: ^4.2.11 + version: 4.2.11 + '@types/chai-spies': + specifier: ^1.0.1 + version: 1.0.1 + '@types/mocha': + specifier: ^7.0.2 + version: 7.0.2 + '@typescript-eslint/eslint-plugin': + specifier: ^3.6.0 + version: 3.6.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0)(typescript@3.9.6) + babel-register: + specifier: ^6.26.0 + version: 6.26.0 + chai: + specifier: ^4.2.0 + version: 4.2.0 + chai-spies: + specifier: ^1.0.0 + version: 1.0.0(chai@4.2.0) + eslint: + specifier: ^7.4.0 + version: 7.4.0 + eslint-config-airbnb-base: + specifier: ^14.2.0 + version: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.4.0) + eslint-config-airbnb-typescript: + specifier: ^8.0.2 + version: 8.0.2(@typescript-eslint/eslint-plugin@3.6.0)(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.4.0)(typescript@3.9.6) + eslint-plugin-import: + specifier: ^2.22.0 + version: 2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0) + mocha: + specifier: ^8.0.1 + version: 8.0.1 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + rollup: + specifier: ^2.15.0 + version: 2.18.2 + rollup-plugin-terser: + specifier: ^6.1.0 + version: 6.1.0(rollup@2.18.2) + semantic-release: + specifier: ^17.4.7 + version: 17.4.7 + ts-node: + specifier: ^8.10.2 + version: 8.10.2(typescript@3.9.6) + typescript: + specifier: ^3.9.5 + version: 3.9.6 packages/js: - specifiers: - '@babel/core': ^7.10.2 - '@babel/plugin-proposal-class-properties': ^7.10.4 - '@babel/plugin-proposal-object-rest-spread': ^7.10.4 - '@babel/plugin-transform-typescript': ^7.10.1 - '@babel/preset-env': ^7.10.2 - '@rollup/plugin-babel': ^5.0.3 - '@rollup/plugin-commonjs': ^14.0.0 - '@rollup/plugin-node-resolve': ^8.0.1 - '@semantic-release/changelog': ^5.0.1 - '@semantic-release/git': ^9.0.0 - '@semantic-release/github': ^7.0.7 - '@semantic-release/npm': ^7.0.5 - '@types/chai': ^4.2.11 - '@types/chai-spies': ^1.0.1 - '@types/mocha': ^7.0.2 - '@typescript-eslint/eslint-plugin': ^3.6.0 - '@ucast/core': ^1.0.0 - chai: ^4.2.0 - chai-spies: ^1.0.0 - eslint: ^7.4.0 - eslint-config-airbnb-base: ^14.2.0 - eslint-config-airbnb-typescript: ^8.0.2 - eslint-plugin-import: ^2.22.0 - mocha: ^8.0.1 - nyc: ^15.1.0 - rollup: ^2.15.0 - rollup-plugin-terser: ^6.1.0 - semantic-release: ^17.4.7 - ts-node: ^8.10.2 - typescript: ^3.9.5 - dependencies: - '@ucast/core': link:../core + dependencies: + '@ucast/core': + specifier: ^1.0.0 + version: link:../core devDependencies: - '@babel/core': 7.10.2 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.10.2 - '@babel/plugin-proposal-object-rest-spread': 7.10.4_@babel+core@7.10.2 - '@babel/plugin-transform-typescript': 7.10.1_@babel+core@7.10.2 - '@babel/preset-env': 7.10.2_@babel+core@7.10.2 - '@rollup/plugin-babel': 5.0.3_5x4mg6uflth5nhnsng3ouhngpe - '@rollup/plugin-commonjs': 14.0.0_rollup@2.15.0 - '@rollup/plugin-node-resolve': 8.0.1_rollup@2.15.0 - '@semantic-release/changelog': 5.0.1_semantic-release@17.4.7 - '@semantic-release/git': 9.0.0_semantic-release@17.4.7 - '@semantic-release/github': 7.0.7_semantic-release@17.4.7 - '@semantic-release/npm': 7.0.5_semantic-release@17.4.7 - '@types/chai': 4.2.11 - '@types/chai-spies': 1.0.1 - '@types/mocha': 7.0.2 - '@typescript-eslint/eslint-plugin': 3.6.0_gwonw44tk7lec3sw7f532sp4i4 - chai: 4.2.0 - chai-spies: 1.0.0_chai@4.2.0 - eslint: 7.4.0 - eslint-config-airbnb-base: 14.2.0_y2f3kaloccpvqkc5wroyzrkqom - eslint-config-airbnb-typescript: 8.0.2_6tkxm5nnxjzqktaxdhnoy7fxzy - eslint-plugin-import: 2.22.0_eslint@7.4.0 - mocha: 8.0.1 - nyc: 15.1.0 - rollup: 2.15.0 - rollup-plugin-terser: 6.1.0_rollup@2.15.0 - semantic-release: 17.4.7 - ts-node: 8.10.2_typescript@3.9.5 - typescript: 3.9.5 + '@babel/core': + specifier: ^7.10.2 + version: 7.10.2 + '@babel/plugin-proposal-class-properties': + specifier: ^7.10.4 + version: 7.10.4(@babel/core@7.10.2) + '@babel/plugin-proposal-object-rest-spread': + specifier: ^7.10.4 + version: 7.10.4(@babel/core@7.10.2) + '@babel/plugin-transform-typescript': + specifier: ^7.10.1 + version: 7.10.1(@babel/core@7.10.2) + '@babel/preset-env': + specifier: ^7.10.2 + version: 7.10.2(@babel/core@7.10.2) + '@rollup/plugin-babel': + specifier: ^5.0.3 + version: 5.0.3(@babel/core@7.10.2)(rollup@2.15.0) + '@rollup/plugin-commonjs': + specifier: ^14.0.0 + version: 14.0.0(rollup@2.15.0) + '@rollup/plugin-node-resolve': + specifier: ^8.0.1 + version: 8.0.1(rollup@2.15.0) + '@semantic-release/changelog': + specifier: ^5.0.1 + version: 5.0.1(semantic-release@17.4.7) + '@semantic-release/git': + specifier: ^9.0.0 + version: 9.0.0(semantic-release@17.4.7) + '@semantic-release/github': + specifier: ^7.0.7 + version: 7.0.7(semantic-release@17.4.7) + '@semantic-release/npm': + specifier: ^7.0.5 + version: 7.0.5(semantic-release@17.4.7) + '@types/chai': + specifier: ^4.2.11 + version: 4.2.11 + '@types/chai-spies': + specifier: ^1.0.1 + version: 1.0.1 + '@types/mocha': + specifier: ^7.0.2 + version: 7.0.2 + '@typescript-eslint/eslint-plugin': + specifier: ^3.6.0 + version: 3.6.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0)(typescript@3.9.5) + chai: + specifier: ^4.2.0 + version: 4.2.0 + chai-spies: + specifier: ^1.0.0 + version: 1.0.0(chai@4.2.0) + eslint: + specifier: ^7.4.0 + version: 7.4.0 + eslint-config-airbnb-base: + specifier: ^14.2.0 + version: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.4.0) + eslint-config-airbnb-typescript: + specifier: ^8.0.2 + version: 8.0.2(@typescript-eslint/eslint-plugin@3.6.0)(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.4.0)(typescript@3.9.5) + eslint-plugin-import: + specifier: ^2.22.0 + version: 2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0) + mocha: + specifier: ^8.0.1 + version: 8.0.1 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + rollup: + specifier: ^2.15.0 + version: 2.15.0 + rollup-plugin-terser: + specifier: ^6.1.0 + version: 6.1.0(rollup@2.15.0) + semantic-release: + specifier: ^17.4.7 + version: 17.4.7 + ts-node: + specifier: ^8.10.2 + version: 8.10.2(typescript@3.9.5) + typescript: + specifier: ^3.9.5 + version: 3.9.5 packages/mongo: - specifiers: - '@babel/core': ^7.10.2 - '@babel/plugin-proposal-class-properties': ^7.10.4 - '@babel/plugin-proposal-object-rest-spread': ^7.10.4 - '@babel/plugin-transform-typescript': ^7.10.1 - '@babel/preset-env': ^7.10.2 - '@rollup/plugin-babel': ^5.0.3 - '@rollup/plugin-commonjs': ^14.0.0 - '@rollup/plugin-node-resolve': ^8.0.1 - '@semantic-release/changelog': ^5.0.1 - '@semantic-release/git': ^9.0.0 - '@semantic-release/github': ^7.0.7 - '@semantic-release/npm': ^7.0.5 - '@types/chai': ^4.2.11 - '@types/chai-spies': ^1.0.1 - '@types/mocha': ^7.0.2 - '@typescript-eslint/eslint-plugin': ^3.6.0 - '@ucast/core': ^1.4.1 - chai: ^4.2.0 - chai-spies: ^1.0.0 - eslint: ^7.4.0 - eslint-config-airbnb-base: ^14.2.0 - eslint-config-airbnb-typescript: ^8.0.2 - eslint-plugin-import: ^2.22.0 - mocha: ^8.0.1 - nyc: ^15.1.0 - rollup: ^2.15.0 - rollup-plugin-terser: ^6.1.0 - semantic-release: ^17.4.7 - ts-node: ^8.10.2 - typescript: ^3.9.5 - dependencies: - '@ucast/core': link:../core + dependencies: + '@ucast/core': + specifier: ^1.4.1 + version: link:../core devDependencies: - '@babel/core': 7.10.2 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.10.2 - '@babel/plugin-proposal-object-rest-spread': 7.10.4_@babel+core@7.10.2 - '@babel/plugin-transform-typescript': 7.10.1_@babel+core@7.10.2 - '@babel/preset-env': 7.10.2_@babel+core@7.10.2 - '@rollup/plugin-babel': 5.0.3_5x4mg6uflth5nhnsng3ouhngpe - '@rollup/plugin-commonjs': 14.0.0_rollup@2.15.0 - '@rollup/plugin-node-resolve': 8.0.1_rollup@2.15.0 - '@semantic-release/changelog': 5.0.1_semantic-release@17.4.7 - '@semantic-release/git': 9.0.0_semantic-release@17.4.7 - '@semantic-release/github': 7.0.7_semantic-release@17.4.7 - '@semantic-release/npm': 7.0.5_semantic-release@17.4.7 - '@types/chai': 4.2.11 - '@types/chai-spies': 1.0.1 - '@types/mocha': 7.0.2 - '@typescript-eslint/eslint-plugin': 3.6.0_gwonw44tk7lec3sw7f532sp4i4 - chai: 4.2.0 - chai-spies: 1.0.0_chai@4.2.0 - eslint: 7.4.0 - eslint-config-airbnb-base: 14.2.0_y2f3kaloccpvqkc5wroyzrkqom - eslint-config-airbnb-typescript: 8.0.2_6tkxm5nnxjzqktaxdhnoy7fxzy - eslint-plugin-import: 2.22.0_eslint@7.4.0 - mocha: 8.0.1 - nyc: 15.1.0 - rollup: 2.15.0 - rollup-plugin-terser: 6.1.0_rollup@2.15.0 - semantic-release: 17.4.7 - ts-node: 8.10.2_typescript@3.9.5 - typescript: 3.9.5 + '@babel/core': + specifier: ^7.10.2 + version: 7.10.2 + '@babel/plugin-proposal-class-properties': + specifier: ^7.10.4 + version: 7.10.4(@babel/core@7.10.2) + '@babel/plugin-proposal-object-rest-spread': + specifier: ^7.10.4 + version: 7.10.4(@babel/core@7.10.2) + '@babel/plugin-transform-typescript': + specifier: ^7.10.1 + version: 7.10.1(@babel/core@7.10.2) + '@babel/preset-env': + specifier: ^7.10.2 + version: 7.10.2(@babel/core@7.10.2) + '@rollup/plugin-babel': + specifier: ^5.0.3 + version: 5.0.3(@babel/core@7.10.2)(rollup@2.15.0) + '@rollup/plugin-commonjs': + specifier: ^14.0.0 + version: 14.0.0(rollup@2.15.0) + '@rollup/plugin-node-resolve': + specifier: ^8.0.1 + version: 8.0.1(rollup@2.15.0) + '@semantic-release/changelog': + specifier: ^5.0.1 + version: 5.0.1(semantic-release@17.4.7) + '@semantic-release/git': + specifier: ^9.0.0 + version: 9.0.0(semantic-release@17.4.7) + '@semantic-release/github': + specifier: ^7.0.7 + version: 7.0.7(semantic-release@17.4.7) + '@semantic-release/npm': + specifier: ^7.0.5 + version: 7.0.5(semantic-release@17.4.7) + '@types/chai': + specifier: ^4.2.11 + version: 4.2.11 + '@types/chai-spies': + specifier: ^1.0.1 + version: 1.0.1 + '@types/mocha': + specifier: ^7.0.2 + version: 7.0.2 + '@typescript-eslint/eslint-plugin': + specifier: ^3.6.0 + version: 3.6.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0)(typescript@3.9.5) + chai: + specifier: ^4.2.0 + version: 4.2.0 + chai-spies: + specifier: ^1.0.0 + version: 1.0.0(chai@4.2.0) + eslint: + specifier: ^7.4.0 + version: 7.4.0 + eslint-config-airbnb-base: + specifier: ^14.2.0 + version: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.4.0) + eslint-config-airbnb-typescript: + specifier: ^8.0.2 + version: 8.0.2(@typescript-eslint/eslint-plugin@3.6.0)(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.4.0)(typescript@3.9.5) + eslint-plugin-import: + specifier: ^2.22.0 + version: 2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0) + mocha: + specifier: ^8.0.1 + version: 8.0.1 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + rollup: + specifier: ^2.15.0 + version: 2.15.0 + rollup-plugin-terser: + specifier: ^6.1.0 + version: 6.1.0(rollup@2.15.0) + semantic-release: + specifier: ^17.4.7 + version: 17.4.7 + ts-node: + specifier: ^8.10.2 + version: 8.10.2(typescript@3.9.5) + typescript: + specifier: ^3.9.5 + version: 3.9.5 packages/mongo2js: - specifiers: - '@babel/core': ^7.12.3 - '@babel/plugin-proposal-class-properties': ^7.12.1 - '@babel/plugin-proposal-object-rest-spread': ^7.12.1 - '@babel/plugin-transform-typescript': ^7.12.1 - '@babel/preset-env': ^7.12.1 - '@rollup/plugin-babel': ^5.2.1 - '@rollup/plugin-commonjs': ^14.0.0 - '@rollup/plugin-node-resolve': ^8.4.0 - '@semantic-release/changelog': ^5.0.1 - '@semantic-release/git': ^9.0.0 - '@semantic-release/github': ^7.1.1 - '@semantic-release/npm': ^7.0.6 - '@types/chai': ^4.2.14 - '@types/chai-spies': ^1.0.2 - '@types/mocha': ^7.0.2 - '@typescript-eslint/eslint-plugin': ^3.10.1 - '@ucast/core': ^1.6.1 - '@ucast/js': ^3.0.0 - '@ucast/mongo': ^2.4.0 - chai: ^4.2.0 - chai-spies: ^1.0.0 - eslint: ^7.12.1 - eslint-config-airbnb-base: ^14.2.0 - eslint-config-airbnb-typescript: ^8.0.2 - eslint-plugin-import: ^2.22.1 - mocha: ^8.2.0 - nyc: ^15.1.0 - rollup: ^2.33.1 - rollup-plugin-terser: ^6.1.0 - semantic-release: ^17.4.7 - ts-node: ^8.10.2 - typescript: ^3.9.7 - dependencies: - '@ucast/core': link:../core - '@ucast/js': link:../js - '@ucast/mongo': link:../mongo + dependencies: + '@ucast/core': + specifier: ^1.6.1 + version: link:../core + '@ucast/js': + specifier: ^3.0.0 + version: link:../js + '@ucast/mongo': + specifier: ^2.4.0 + version: link:../mongo devDependencies: - '@babel/core': 7.12.3 - '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.3 - '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.3 - '@babel/plugin-transform-typescript': 7.12.1_@babel+core@7.12.3 - '@babel/preset-env': 7.12.1_@babel+core@7.12.3 - '@rollup/plugin-babel': 5.2.1_g4eevjgx5bct4c7lfmdy4lgrve - '@rollup/plugin-commonjs': 14.0.0_rollup@2.33.1 - '@rollup/plugin-node-resolve': 8.4.0_rollup@2.33.1 - '@semantic-release/changelog': 5.0.1_semantic-release@17.4.7 - '@semantic-release/git': 9.0.0_semantic-release@17.4.7 - '@semantic-release/github': 7.1.1_semantic-release@17.4.7 - '@semantic-release/npm': 7.0.6_semantic-release@17.4.7 - '@types/chai': 4.2.14 - '@types/chai-spies': 1.0.2 - '@types/mocha': 7.0.2 - '@typescript-eslint/eslint-plugin': 3.10.1_knjh7s5onmjkqs3zs53oemuiqa - chai: 4.2.0 - chai-spies: 1.0.0_chai@4.2.0 - eslint: 7.12.1 - eslint-config-airbnb-base: 14.2.0_hip446klyeu6lh7li2xmdo6kbu - eslint-config-airbnb-typescript: 8.0.2_lworzhnapyfdl6ui3inpu7glsu - eslint-plugin-import: 2.22.1_eslint@7.12.1 - mocha: 8.2.0 - nyc: 15.1.0 - rollup: 2.33.1 - rollup-plugin-terser: 6.1.0_rollup@2.33.1 - semantic-release: 17.4.7 - ts-node: 8.10.2_typescript@3.9.7 - typescript: 3.9.7 + '@babel/core': + specifier: ^7.12.3 + version: 7.12.3 + '@babel/plugin-proposal-class-properties': + specifier: ^7.12.1 + version: 7.12.1(@babel/core@7.12.3) + '@babel/plugin-proposal-object-rest-spread': + specifier: ^7.12.1 + version: 7.12.1(@babel/core@7.12.3) + '@babel/plugin-transform-typescript': + specifier: ^7.12.1 + version: 7.12.1(@babel/core@7.12.3) + '@babel/preset-env': + specifier: ^7.12.1 + version: 7.12.1(@babel/core@7.12.3) + '@rollup/plugin-babel': + specifier: ^5.2.1 + version: 5.2.1(@babel/core@7.12.3)(rollup@2.33.1) + '@rollup/plugin-commonjs': + specifier: ^14.0.0 + version: 14.0.0(rollup@2.33.1) + '@rollup/plugin-node-resolve': + specifier: ^8.4.0 + version: 8.4.0(rollup@2.33.1) + '@semantic-release/changelog': + specifier: ^5.0.1 + version: 5.0.1(semantic-release@17.4.7) + '@semantic-release/git': + specifier: ^9.0.0 + version: 9.0.0(semantic-release@17.4.7) + '@semantic-release/github': + specifier: ^7.1.1 + version: 7.1.1(semantic-release@17.4.7) + '@semantic-release/npm': + specifier: ^7.0.6 + version: 7.0.6(semantic-release@17.4.7) + '@types/chai': + specifier: ^4.2.14 + version: 4.2.14 + '@types/chai-spies': + specifier: ^1.0.2 + version: 1.0.2 + '@types/mocha': + specifier: ^7.0.2 + version: 7.0.2 + '@typescript-eslint/eslint-plugin': + specifier: ^3.10.1 + version: 3.10.1(@typescript-eslint/parser@3.6.0)(eslint@7.12.1)(typescript@3.9.7) + chai: + specifier: ^4.2.0 + version: 4.2.0 + chai-spies: + specifier: ^1.0.0 + version: 1.0.0(chai@4.2.0) + eslint: + specifier: ^7.12.1 + version: 7.12.1 + eslint-config-airbnb-base: + specifier: ^14.2.0 + version: 14.2.0(eslint-plugin-import@2.22.1)(eslint@7.12.1) + eslint-config-airbnb-typescript: + specifier: ^8.0.2 + version: 8.0.2(@typescript-eslint/eslint-plugin@3.10.1)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.12.1)(typescript@3.9.7) + eslint-plugin-import: + specifier: ^2.22.1 + version: 2.22.1(@typescript-eslint/parser@3.6.0)(eslint@7.12.1) + mocha: + specifier: ^8.2.0 + version: 8.2.0 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + rollup: + specifier: ^2.33.1 + version: 2.33.1 + rollup-plugin-terser: + specifier: ^6.1.0 + version: 6.1.0(rollup@2.33.1) + semantic-release: + specifier: ^17.4.7 + version: 17.4.7 + ts-node: + specifier: ^8.10.2 + version: 8.10.2(typescript@3.9.7) + typescript: + specifier: ^3.9.7 + version: 3.9.7 packages/sql: - specifiers: - '@babel/core': ^7.10.2 - '@babel/plugin-proposal-class-properties': ^7.10.4 - '@babel/plugin-proposal-object-rest-spread': ^7.10.4 - '@babel/plugin-transform-typescript': ^7.10.1 - '@babel/preset-env': ^7.10.2 - '@rollup/plugin-babel': ^5.0.3 - '@rollup/plugin-node-resolve': ^8.0.1 - '@semantic-release/changelog': ^5.0.1 - '@semantic-release/git': ^9.0.0 - '@semantic-release/github': ^7.0.7 - '@semantic-release/npm': ^7.0.5 - '@types/bluebird': ^3.5.32 - '@types/chai': ^4.2.11 - '@types/chai-spies': ^1.0.1 - '@types/mocha': ^7.0.2 - '@types/validator': ^13.1.0 - '@typescript-eslint/eslint-plugin': ^3.6.0 - '@ucast/core': ^1.0.0 - chai: ^4.2.0 - chai-spies: ^1.0.0 - eslint: ^7.4.0 - eslint-config-airbnb-base: ^14.2.0 - eslint-config-airbnb-typescript: ^8.0.2 - eslint-plugin-import: ^2.22.0 - knex: ^0.21.2 - mikro-orm: ^3.6.15 - mocha: ^8.0.1 - nyc: ^15.1.0 - objection: ^2.2.1 - rollup: ^2.15.0 - rollup-plugin-terser: ^6.1.0 - semantic-release: ^17.4.7 - sequelize: 6.3.4 - sqlite3: ^5.0.0 - ts-node: ^8.10.2 - typeorm: ^0.2.25 - typescript: ^3.9.5 - dependencies: - '@ucast/core': link:../core + dependencies: + '@ucast/core': + specifier: ^1.0.0 + version: link:../core devDependencies: - '@babel/core': 7.11.1 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.11.1 - '@babel/plugin-transform-typescript': 7.11.0_@babel+core@7.11.1 - '@babel/preset-env': 7.11.0_@babel+core@7.11.1 - '@rollup/plugin-babel': 5.1.0_z7qttwof5il5yprjeohs6m56pq - '@rollup/plugin-node-resolve': 8.4.0_rollup@2.23.1 - '@semantic-release/changelog': 5.0.1_semantic-release@17.4.7 - '@semantic-release/git': 9.0.0_semantic-release@17.4.7 - '@semantic-release/github': 7.0.7_semantic-release@17.4.7 - '@semantic-release/npm': 7.0.5_semantic-release@17.4.7 - '@types/bluebird': 3.5.32 - '@types/chai': 4.2.12 - '@types/chai-spies': 1.0.1 - '@types/mocha': 7.0.2 - '@types/validator': 13.1.0 - '@typescript-eslint/eslint-plugin': 3.9.0_upjsw7ikvvtapwwswbm42lbf2e - chai: 4.2.0 - chai-spies: 1.0.0_chai@4.2.0 - eslint: 7.6.0 - eslint-config-airbnb-base: 14.2.0_fufdw6lwmqabkxeoc6jzjb2uvi - eslint-config-airbnb-typescript: 8.0.2_sqqwqkmt2m4limz5tzrrmupjca - eslint-plugin-import: 2.22.0_eslint@7.6.0 - knex: 0.21.2_sqlite3@5.0.0 - mikro-orm: 3.6.15_sqlite3@5.0.0 - mocha: 8.1.1 - nyc: 15.1.0 - objection: 2.2.1_knex@0.21.2 - rollup: 2.23.1 - rollup-plugin-terser: 6.1.0_rollup@2.23.1 - semantic-release: 17.4.7 - sequelize: 6.3.4_sqlite3@5.0.0 - sqlite3: 5.0.0 - ts-node: 8.10.2_typescript@3.9.7 - typeorm: 0.2.25 - typescript: 3.9.7 + '@babel/core': + specifier: ^7.10.2 + version: 7.11.1 + '@babel/plugin-proposal-class-properties': + specifier: ^7.10.4 + version: 7.10.4(@babel/core@7.11.1) + '@babel/plugin-proposal-object-rest-spread': + specifier: ^7.10.4 + version: 7.11.0(@babel/core@7.11.1) + '@babel/plugin-transform-typescript': + specifier: ^7.10.1 + version: 7.11.0(@babel/core@7.11.1) + '@babel/preset-env': + specifier: ^7.10.2 + version: 7.11.0(@babel/core@7.11.1) + '@rollup/plugin-babel': + specifier: ^5.0.3 + version: 5.1.0(@babel/core@7.11.1)(rollup@2.23.1) + '@rollup/plugin-node-resolve': + specifier: ^8.0.1 + version: 8.4.0(rollup@2.23.1) + '@semantic-release/changelog': + specifier: ^5.0.1 + version: 5.0.1(semantic-release@17.4.7) + '@semantic-release/git': + specifier: ^9.0.0 + version: 9.0.0(semantic-release@17.4.7) + '@semantic-release/github': + specifier: ^7.0.7 + version: 7.0.7(semantic-release@17.4.7) + '@semantic-release/npm': + specifier: ^7.0.5 + version: 7.0.5(semantic-release@17.4.7) + '@types/bluebird': + specifier: ^3.5.32 + version: 3.5.32 + '@types/chai': + specifier: ^4.2.11 + version: 4.2.12 + '@types/chai-spies': + specifier: ^1.0.1 + version: 1.0.1 + '@types/mocha': + specifier: ^7.0.2 + version: 7.0.2 + '@types/validator': + specifier: ^13.1.0 + version: 13.1.0 + '@typescript-eslint/eslint-plugin': + specifier: ^3.6.0 + version: 3.9.0(@typescript-eslint/parser@3.6.0)(eslint@7.6.0)(typescript@3.9.7) + chai: + specifier: ^4.2.0 + version: 4.2.0 + chai-spies: + specifier: ^1.0.0 + version: 1.0.0(chai@4.2.0) + eslint: + specifier: ^7.4.0 + version: 7.6.0 + eslint-config-airbnb-base: + specifier: ^14.2.0 + version: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.6.0) + eslint-config-airbnb-typescript: + specifier: ^8.0.2 + version: 8.0.2(@typescript-eslint/eslint-plugin@3.9.0)(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.6.0)(typescript@3.9.7) + eslint-plugin-import: + specifier: ^2.22.0 + version: 2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.6.0) + knex: + specifier: ^0.21.2 + version: 0.21.2(sqlite3@5.0.0) + mikro-orm: + specifier: ^3.6.15 + version: 3.6.15(sqlite3@5.0.0) + mocha: + specifier: ^8.0.1 + version: 8.1.1 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + objection: + specifier: ^2.2.1 + version: 2.2.1(knex@0.21.2) + rollup: + specifier: ^2.15.0 + version: 2.23.1 + rollup-plugin-terser: + specifier: ^6.1.0 + version: 6.1.0(rollup@2.23.1) + semantic-release: + specifier: ^17.4.7 + version: 17.4.7 + sequelize: + specifier: 6.3.4 + version: 6.3.4(sqlite3@5.0.0) + sqlite3: + specifier: ^5.0.0 + version: 5.0.0 + ts-node: + specifier: ^8.10.2 + version: 8.10.2(typescript@3.9.7) + typeorm: + specifier: ^0.2.25 + version: 0.2.25 + typescript: + specifier: ^3.9.5 + version: 3.9.7 packages: - /@babel/code-frame/7.10.1: + /@babel/code-frame@7.10.1: resolution: {integrity: sha512-IGhtTmpjGbYzcEDOw7DcQtbQSXcG9ftmAXtWTu9V936vDye4xjjekktFAtgZsWpzTj/X01jocB46mTywm/4SZw==} dependencies: '@babel/highlight': 7.10.1 dev: true - /@babel/code-frame/7.10.4: + /@babel/code-frame@7.10.4: resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==} dependencies: '@babel/highlight': 7.10.4 dev: true - /@babel/compat-data/7.10.1: + /@babel/compat-data@7.10.1: resolution: {integrity: sha512-CHvCj7So7iCkGKPRFUfryXIkU2gSBw7VSZFYLsqVhrS47269VK2Hfi9S/YcublPMW8k1u2bQBlbDruoQEm4fgw==} dependencies: browserslist: 4.12.0 @@ -434,7 +619,7 @@ packages: semver: 5.7.1 dev: true - /@babel/compat-data/7.10.4: + /@babel/compat-data@7.10.4: resolution: {integrity: sha512-t+rjExOrSVvjQQXNp5zAIYDp00KjdvGl/TpDX5REPr0S9IAIPQMTilcfG6q8c0QFmj9lSTVySV2VTsyggvtNIw==} dependencies: browserslist: 4.12.2 @@ -442,7 +627,7 @@ packages: semver: 5.7.1 dev: true - /@babel/compat-data/7.11.0: + /@babel/compat-data@7.11.0: resolution: {integrity: sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ==} dependencies: browserslist: 4.14.0 @@ -450,11 +635,11 @@ packages: semver: 5.7.1 dev: true - /@babel/compat-data/7.12.1: + /@babel/compat-data@7.12.1: resolution: {integrity: sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ==} dev: true - /@babel/core/7.10.2: + /@babel/core@7.10.2: resolution: {integrity: sha512-KQmV9yguEjQsXqyOUGKjS4+3K8/DlOCE2pZcq4augdQmtTy5iv5EHtmMSJ7V4c1BIPjuwtZYqYLCq9Ga+hGBRQ==} engines: {node: '>=6.9.0'} dependencies: @@ -478,7 +663,7 @@ packages: - supports-color dev: true - /@babel/core/7.10.4: + /@babel/core@7.10.4: resolution: {integrity: sha512-3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA==} engines: {node: '>=6.9.0'} dependencies: @@ -502,7 +687,7 @@ packages: - supports-color dev: true - /@babel/core/7.11.1: + /@babel/core@7.11.1: resolution: {integrity: sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ==} engines: {node: '>=6.9.0'} dependencies: @@ -526,7 +711,7 @@ packages: - supports-color dev: true - /@babel/core/7.12.3: + /@babel/core@7.12.3: resolution: {integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==} engines: {node: '>=6.9.0'} dependencies: @@ -539,7 +724,7 @@ packages: '@babel/traverse': 7.12.1 '@babel/types': 7.12.1 convert-source-map: 1.7.0 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) gensync: 1.0.0-beta.2 json5: 2.1.3 lodash: 4.17.20 @@ -550,7 +735,7 @@ packages: - supports-color dev: true - /@babel/generator/7.10.2: + /@babel/generator@7.10.2: resolution: {integrity: sha512-AxfBNHNu99DTMvlUPlt1h2+Hn7knPpH5ayJ8OqDWSeLld+Fi2AYBTC/IejWDM9Edcii4UzZRCsbUt0WlSDsDsA==} dependencies: '@babel/types': 7.10.2 @@ -559,7 +744,7 @@ packages: source-map: 0.5.7 dev: true - /@babel/generator/7.10.4: + /@babel/generator@7.10.4: resolution: {integrity: sha512-toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng==} dependencies: '@babel/types': 7.10.4 @@ -568,7 +753,7 @@ packages: source-map: 0.5.7 dev: true - /@babel/generator/7.11.0: + /@babel/generator@7.11.0: resolution: {integrity: sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==} dependencies: '@babel/types': 7.12.1 @@ -576,7 +761,7 @@ packages: source-map: 0.5.7 dev: true - /@babel/generator/7.12.1: + /@babel/generator@7.12.1: resolution: {integrity: sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==} dependencies: '@babel/types': 7.12.1 @@ -584,19 +769,19 @@ packages: source-map: 0.5.7 dev: true - /@babel/helper-annotate-as-pure/7.10.1: + /@babel/helper-annotate-as-pure@7.10.1: resolution: {integrity: sha512-ewp3rvJEwLaHgyWGe4wQssC2vjks3E80WiUe2BpMb0KhreTjMROCbxXcEovTrbeGVdQct5VjQfrv9EgC+xMzCw==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-annotate-as-pure/7.10.4: + /@babel/helper-annotate-as-pure@7.10.4: resolution: {integrity: sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.10.1: + /@babel/helper-builder-binary-assignment-operator-visitor@7.10.1: resolution: {integrity: sha512-cQpVq48EkYxUU0xozpGCLla3wlkdRRqLWu1ksFMXA9CM5KQmyyRpSEsYXbao7JUkOw/tAaYKCaYyZq6HOFYtyw==} dependencies: '@babel/helper-explode-assignable-expression': 7.10.1 @@ -605,14 +790,14 @@ packages: - supports-color dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.10.4: + /@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.12.1 dev: true - /@babel/helper-compilation-targets/7.10.2_@babel+core@7.10.2: + /@babel/helper-compilation-targets@7.10.2(@babel/core@7.10.2): resolution: {integrity: sha512-hYgOhF4To2UTB4LTaZepN/4Pl9LD4gfbJx8A34mqoluT8TLbof1mhUlYuNWTEebONa8+UlCC4X0TEXu7AOUyGA==} peerDependencies: '@babel/core': ^7.0.0 @@ -625,7 +810,7 @@ packages: semver: 5.7.1 dev: true - /@babel/helper-compilation-targets/7.10.4_@babel+core@7.10.4: + /@babel/helper-compilation-targets@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -638,7 +823,7 @@ packages: semver: 5.7.1 dev: true - /@babel/helper-compilation-targets/7.10.4_@babel+core@7.11.1: + /@babel/helper-compilation-targets@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -651,7 +836,7 @@ packages: semver: 5.7.1 dev: true - /@babel/helper-compilation-targets/7.12.1_@babel+core@7.12.3: + /@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 @@ -663,7 +848,7 @@ packages: semver: 5.7.1 dev: true - /@babel/helper-create-class-features-plugin/7.10.2_@babel+core@7.10.2: + /@babel/helper-create-class-features-plugin@7.10.2(@babel/core@7.10.2): resolution: {integrity: sha512-5C/QhkGFh1vqcziq1vAL6SI9ymzUp8BCYjFpvYVhWP4DlATIb3u5q3iUd35mvlyGs8fO7hckkW7i0tmH+5+bvQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -679,7 +864,7 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.10.4_@babel+core@7.10.2: + /@babel/helper-create-class-features-plugin@7.10.4(@babel/core@7.10.2): resolution: {integrity: sha512-9raUiOsXPxzzLjCXeosApJItoMnX3uyT4QdM2UldffuGApNrF8e938MwNpDCK9CPoyxrEoCgT+hObJc3mZa6lQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -695,7 +880,7 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.10.4_@babel+core@7.10.4: + /@babel/helper-create-class-features-plugin@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-9raUiOsXPxzzLjCXeosApJItoMnX3uyT4QdM2UldffuGApNrF8e938MwNpDCK9CPoyxrEoCgT+hObJc3mZa6lQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -711,7 +896,7 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.10.4_@babel+core@7.11.1: + /@babel/helper-create-class-features-plugin@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-9raUiOsXPxzzLjCXeosApJItoMnX3uyT4QdM2UldffuGApNrF8e938MwNpDCK9CPoyxrEoCgT+hObJc3mZa6lQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -727,7 +912,7 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.10.5_@babel+core@7.10.4: + /@babel/helper-create-class-features-plugin@7.10.5(@babel/core@7.10.4): resolution: {integrity: sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==} peerDependencies: '@babel/core': ^7.0.0 @@ -743,7 +928,7 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.10.5_@babel+core@7.11.1: + /@babel/helper-create-class-features-plugin@7.10.5(@babel/core@7.11.1): resolution: {integrity: sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==} peerDependencies: '@babel/core': ^7.0.0 @@ -759,7 +944,7 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.12.3: + /@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 @@ -774,7 +959,7 @@ packages: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.10.1_@babel+core@7.10.2: + /@babel/helper-create-regexp-features-plugin@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-Rx4rHS0pVuJn5pJOqaqcZR4XSgeF9G/pO/79t+4r7380tXFJdzImFnxMU19f83wjSrmKHq6myrM10pFHTGzkUA==} peerDependencies: '@babel/core': ^7.0.0 @@ -785,7 +970,7 @@ packages: regexpu-core: 4.7.0 dev: true - /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.10.2: + /@babel/helper-create-regexp-features-plugin@7.10.4(@babel/core@7.10.2): resolution: {integrity: sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==} peerDependencies: '@babel/core': ^7.0.0 @@ -796,7 +981,7 @@ packages: regexpu-core: 4.7.0 dev: true - /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.10.4: + /@babel/helper-create-regexp-features-plugin@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==} peerDependencies: '@babel/core': ^7.0.0 @@ -807,7 +992,7 @@ packages: regexpu-core: 4.7.0 dev: true - /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.11.1: + /@babel/helper-create-regexp-features-plugin@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==} peerDependencies: '@babel/core': ^7.0.0 @@ -818,7 +1003,7 @@ packages: regexpu-core: 4.7.0 dev: true - /@babel/helper-create-regexp-features-plugin/7.12.1_@babel+core@7.12.3: + /@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 @@ -829,7 +1014,7 @@ packages: regexpu-core: 4.7.1 dev: true - /@babel/helper-define-map/7.10.1: + /@babel/helper-define-map@7.10.1: resolution: {integrity: sha512-+5odWpX+OnvkD0Zmq7panrMuAGQBu6aPUgvMzuMGo4R+jUOvealEj2hiqI6WhxgKrTpFoFj0+VdsuA8KDxHBDg==} dependencies: '@babel/helper-function-name': 7.10.1 @@ -837,7 +1022,7 @@ packages: lodash: 4.17.15 dev: true - /@babel/helper-define-map/7.10.4: + /@babel/helper-define-map@7.10.4: resolution: {integrity: sha512-nIij0oKErfCnLUCWaCaHW0Bmtl2RO9cN7+u2QT8yqTywgALKlyUVOvHDElh+b5DwVC6YB1FOYFOTWcN/+41EDA==} dependencies: '@babel/helper-function-name': 7.10.4 @@ -845,7 +1030,7 @@ packages: lodash: 4.17.19 dev: true - /@babel/helper-define-map/7.10.5: + /@babel/helper-define-map@7.10.5: resolution: {integrity: sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==} dependencies: '@babel/helper-function-name': 7.10.4 @@ -853,7 +1038,7 @@ packages: lodash: 4.17.20 dev: true - /@babel/helper-explode-assignable-expression/7.10.1: + /@babel/helper-explode-assignable-expression@7.10.1: resolution: {integrity: sha512-vcUJ3cDjLjvkKzt6rHrl767FeE7pMEYfPanq5L16GRtrXIoznc0HykNW2aEYkcnP76P0isoqJ34dDMFZwzEpJg==} dependencies: '@babel/traverse': 7.10.1 @@ -862,13 +1047,13 @@ packages: - supports-color dev: true - /@babel/helper-explode-assignable-expression/7.12.1: + /@babel/helper-explode-assignable-expression@7.12.1: resolution: {integrity: sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-function-name/7.10.1: + /@babel/helper-function-name@7.10.1: resolution: {integrity: sha512-fcpumwhs3YyZ/ttd5Rz0xn0TpIwVkN7X0V38B9TWNfVF42KEkhkAAuPCQ3oXmtTRtiPJrmZ0TrfS0GKF0eMaRQ==} dependencies: '@babel/helper-get-function-arity': 7.10.1 @@ -876,7 +1061,7 @@ packages: '@babel/types': 7.12.1 dev: true - /@babel/helper-function-name/7.10.4: + /@babel/helper-function-name@7.10.4: resolution: {integrity: sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==} dependencies: '@babel/helper-get-function-arity': 7.10.4 @@ -884,73 +1069,73 @@ packages: '@babel/types': 7.12.1 dev: true - /@babel/helper-get-function-arity/7.10.1: + /@babel/helper-get-function-arity@7.10.1: resolution: {integrity: sha512-F5qdXkYGOQUb0hpRaPoetF9AnsXknKjWMZ+wmsIRsp5ge5sFh4c3h1eH2pRTTuy9KKAA2+TTYomGXAtEL2fQEw==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-get-function-arity/7.10.4: + /@babel/helper-get-function-arity@7.10.4: resolution: {integrity: sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-hoist-variables/7.10.1: + /@babel/helper-hoist-variables@7.10.1: resolution: {integrity: sha512-vLm5srkU8rI6X3+aQ1rQJyfjvCBLXP8cAGeuw04zeAM2ItKb1e7pmVmLyHb4sDaAYnLL13RHOZPLEtcGZ5xvjg==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-hoist-variables/7.10.4: + /@babel/helper-hoist-variables@7.10.4: resolution: {integrity: sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-member-expression-to-functions/7.10.1: + /@babel/helper-member-expression-to-functions@7.10.1: resolution: {integrity: sha512-u7XLXeM2n50gb6PWJ9hoO5oO7JFPaZtrh35t8RqKLT1jFKj9IWeD1zrcrYp1q1qiZTdEarfDWfTIP8nGsu0h5g==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-member-expression-to-functions/7.10.4: + /@babel/helper-member-expression-to-functions@7.10.4: resolution: {integrity: sha512-m5j85pK/KZhuSdM/8cHUABQTAslV47OjfIB9Cc7P+PvlAoBzdb79BGNfw8RhT5Mq3p+xGd0ZfAKixbrUZx0C7A==} dependencies: '@babel/types': 7.10.4 dev: true - /@babel/helper-member-expression-to-functions/7.11.0: + /@babel/helper-member-expression-to-functions@7.11.0: resolution: {integrity: sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-member-expression-to-functions/7.12.1: + /@babel/helper-member-expression-to-functions@7.12.1: resolution: {integrity: sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-module-imports/7.10.1: + /@babel/helper-module-imports@7.10.1: resolution: {integrity: sha512-SFxgwYmZ3HZPyZwJRiVNLRHWuW2OgE5k2nrVs6D9Iv4PPnXVffuEHy83Sfx/l4SqF+5kyJXjAyUmrG7tNm+qVg==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-module-imports/7.10.4: + /@babel/helper-module-imports@7.10.4: resolution: {integrity: sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-module-imports/7.12.1: + /@babel/helper-module-imports@7.12.1: resolution: {integrity: sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-module-transforms/7.10.1: + /@babel/helper-module-transforms@7.10.1: resolution: {integrity: sha512-RLHRCAzyJe7Q7sF4oy2cB+kRnU4wDZY/H2xJFGof+M+SJEGhZsb+GFj5j1AD8NiSaVBJ+Pf0/WObiXu/zxWpFg==} dependencies: '@babel/helper-module-imports': 7.10.1 @@ -964,7 +1149,7 @@ packages: - supports-color dev: true - /@babel/helper-module-transforms/7.10.4: + /@babel/helper-module-transforms@7.10.4: resolution: {integrity: sha512-Er2FQX0oa3nV7eM1o0tNCTx7izmQtwAQsIiaLRWtavAAEcskb0XJ5OjJbVrYXWOTr8om921Scabn4/tzlx7j1Q==} dependencies: '@babel/helper-module-imports': 7.10.4 @@ -978,7 +1163,7 @@ packages: - supports-color dev: true - /@babel/helper-module-transforms/7.11.0: + /@babel/helper-module-transforms@7.11.0: resolution: {integrity: sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==} dependencies: '@babel/helper-module-imports': 7.10.4 @@ -992,7 +1177,7 @@ packages: - supports-color dev: true - /@babel/helper-module-transforms/7.12.1: + /@babel/helper-module-transforms@7.12.1: resolution: {integrity: sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==} dependencies: '@babel/helper-module-imports': 7.12.1 @@ -1008,45 +1193,45 @@ packages: - supports-color dev: true - /@babel/helper-optimise-call-expression/7.10.1: + /@babel/helper-optimise-call-expression@7.10.1: resolution: {integrity: sha512-a0DjNS1prnBsoKx83dP2falChcs7p3i8VMzdrSbfLhuQra/2ENC4sbri34dz/rWmDADsmF1q5GbfaXydh0Jbjg==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-optimise-call-expression/7.10.4: + /@babel/helper-optimise-call-expression@7.10.4: resolution: {integrity: sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-plugin-utils/7.10.1: + /@babel/helper-plugin-utils@7.10.1: resolution: {integrity: sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA==} dev: true - /@babel/helper-plugin-utils/7.10.4: + /@babel/helper-plugin-utils@7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: true - /@babel/helper-regex/7.10.1: + /@babel/helper-regex@7.10.1: resolution: {integrity: sha512-7isHr19RsIJWWLLFn21ubFt223PjQyg1HY7CZEMRr820HttHPpVvrsIN3bUOo44DEfFV4kBXO7Abbn9KTUZV7g==} dependencies: lodash: 4.17.15 dev: true - /@babel/helper-regex/7.10.4: + /@babel/helper-regex@7.10.4: resolution: {integrity: sha512-inWpnHGgtg5NOF0eyHlC0/74/VkdRITY9dtTpB2PrxKKn+AkVMRiZz/Adrx+Ssg+MLDesi2zohBW6MVq6b4pOQ==} dependencies: lodash: 4.17.19 dev: true - /@babel/helper-regex/7.10.5: + /@babel/helper-regex@7.10.5: resolution: {integrity: sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==} dependencies: lodash: 4.17.20 dev: true - /@babel/helper-remap-async-to-generator/7.10.1: + /@babel/helper-remap-async-to-generator@7.10.1: resolution: {integrity: sha512-RfX1P8HqsfgmJ6CwaXGKMAqbYdlleqglvVtht0HGPMSsy2V6MqLlOJVF/0Qyb/m2ZCi2z3q3+s6Pv7R/dQuZ6A==} dependencies: '@babel/helper-annotate-as-pure': 7.10.1 @@ -1058,7 +1243,7 @@ packages: - supports-color dev: true - /@babel/helper-remap-async-to-generator/7.10.4: + /@babel/helper-remap-async-to-generator@7.10.4: resolution: {integrity: sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg==} dependencies: '@babel/helper-annotate-as-pure': 7.10.4 @@ -1070,7 +1255,7 @@ packages: - supports-color dev: true - /@babel/helper-remap-async-to-generator/7.12.1: + /@babel/helper-remap-async-to-generator@7.12.1: resolution: {integrity: sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==} dependencies: '@babel/helper-annotate-as-pure': 7.10.4 @@ -1080,7 +1265,7 @@ packages: - supports-color dev: true - /@babel/helper-replace-supers/7.10.1: + /@babel/helper-replace-supers@7.10.1: resolution: {integrity: sha512-SOwJzEfpuQwInzzQJGjGaiG578UYmyi2Xw668klPWV5n07B73S0a9btjLk/52Mlcxa+5AdIYqws1KyXRfMoB7A==} dependencies: '@babel/helper-member-expression-to-functions': 7.10.1 @@ -1091,7 +1276,7 @@ packages: - supports-color dev: true - /@babel/helper-replace-supers/7.10.4: + /@babel/helper-replace-supers@7.10.4: resolution: {integrity: sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==} dependencies: '@babel/helper-member-expression-to-functions': 7.11.0 @@ -1102,7 +1287,7 @@ packages: - supports-color dev: true - /@babel/helper-replace-supers/7.12.1: + /@babel/helper-replace-supers@7.12.1: resolution: {integrity: sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==} dependencies: '@babel/helper-member-expression-to-functions': 7.12.1 @@ -1113,69 +1298,69 @@ packages: - supports-color dev: true - /@babel/helper-simple-access/7.10.1: + /@babel/helper-simple-access@7.10.1: resolution: {integrity: sha512-VSWpWzRzn9VtgMJBIWTZ+GP107kZdQ4YplJlCmIrjoLVSi/0upixezHCDG8kpPVTBJpKfxTH01wDhh+jS2zKbw==} dependencies: '@babel/template': 7.10.1 '@babel/types': 7.10.2 dev: true - /@babel/helper-simple-access/7.10.4: + /@babel/helper-simple-access@7.10.4: resolution: {integrity: sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==} dependencies: '@babel/template': 7.10.4 '@babel/types': 7.11.0 dev: true - /@babel/helper-simple-access/7.12.1: + /@babel/helper-simple-access@7.12.1: resolution: {integrity: sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-skip-transparent-expression-wrappers/7.11.0: + /@babel/helper-skip-transparent-expression-wrappers@7.11.0: resolution: {integrity: sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-skip-transparent-expression-wrappers/7.12.1: + /@babel/helper-skip-transparent-expression-wrappers@7.12.1: resolution: {integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-split-export-declaration/7.10.1: + /@babel/helper-split-export-declaration@7.10.1: resolution: {integrity: sha512-UQ1LVBPrYdbchNhLwj6fetj46BcFwfS4NllJo/1aJsT+1dLTEnXJL0qHqtY7gPzF8S2fXBJamf1biAXV3X077g==} dependencies: '@babel/types': 7.10.2 dev: true - /@babel/helper-split-export-declaration/7.10.4: + /@babel/helper-split-export-declaration@7.10.4: resolution: {integrity: sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg==} dependencies: '@babel/types': 7.10.4 dev: true - /@babel/helper-split-export-declaration/7.11.0: + /@babel/helper-split-export-declaration@7.11.0: resolution: {integrity: sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==} dependencies: '@babel/types': 7.12.1 dev: true - /@babel/helper-validator-identifier/7.10.1: + /@babel/helper-validator-identifier@7.10.1: resolution: {integrity: sha512-5vW/JXLALhczRCWP0PnFDMCJAchlBvM7f4uk/jXritBnIa6E1KmqmtrS3yn1LAnxFBypQ3eneLuXjsnfQsgILw==} dev: true - /@babel/helper-validator-identifier/7.10.4: + /@babel/helper-validator-identifier@7.10.4: resolution: {integrity: sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==} dev: true - /@babel/helper-validator-option/7.12.1: + /@babel/helper-validator-option@7.12.1: resolution: {integrity: sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==} dev: true - /@babel/helper-wrap-function/7.10.1: + /@babel/helper-wrap-function@7.10.1: resolution: {integrity: sha512-C0MzRGteVDn+H32/ZgbAv5r56f2o1fZSA/rj/TYo8JEJNHg+9BdSmKBUND0shxWRztWhjlT2cvHYuynpPsVJwQ==} dependencies: '@babel/helper-function-name': 7.10.1 @@ -1186,7 +1371,7 @@ packages: - supports-color dev: true - /@babel/helper-wrap-function/7.10.4: + /@babel/helper-wrap-function@7.10.4: resolution: {integrity: sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug==} dependencies: '@babel/helper-function-name': 7.10.4 @@ -1197,7 +1382,7 @@ packages: - supports-color dev: true - /@babel/helper-wrap-function/7.12.3: + /@babel/helper-wrap-function@7.12.3: resolution: {integrity: sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==} dependencies: '@babel/helper-function-name': 7.10.4 @@ -1208,7 +1393,7 @@ packages: - supports-color dev: true - /@babel/helpers/7.10.1: + /@babel/helpers@7.10.1: resolution: {integrity: sha512-muQNHF+IdU6wGgkaJyhhEmI54MOZBKsFfsXFhboz1ybwJ1Kl7IHlbm2a++4jwrmY5UYsgitt5lfqo1wMFcHmyw==} dependencies: '@babel/template': 7.10.1 @@ -1218,7 +1403,7 @@ packages: - supports-color dev: true - /@babel/helpers/7.10.4: + /@babel/helpers@7.10.4: resolution: {integrity: sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==} dependencies: '@babel/template': 7.10.4 @@ -1228,7 +1413,7 @@ packages: - supports-color dev: true - /@babel/helpers/7.12.1: + /@babel/helpers@7.12.1: resolution: {integrity: sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==} dependencies: '@babel/template': 7.10.4 @@ -1238,7 +1423,7 @@ packages: - supports-color dev: true - /@babel/highlight/7.10.1: + /@babel/highlight@7.10.1: resolution: {integrity: sha512-8rMof+gVP8mxYZApLF/JgNDAkdKa+aJt3ZYxF8z6+j/hpeXL7iMsKCPHa2jNMHu/qqBwzQF4OHNoYi8dMA/rYg==} dependencies: '@babel/helper-validator-identifier': 7.10.1 @@ -1246,7 +1431,7 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/highlight/7.10.4: + /@babel/highlight@7.10.4: resolution: {integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==} dependencies: '@babel/helper-validator-identifier': 7.10.4 @@ -1254,7 +1439,7 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/parser/7.10.2: + /@babel/parser@7.10.2: resolution: {integrity: sha512-PApSXlNMJyB4JiGVhCOlzKIif+TKFTvu0aQAhnTvfP/z3vVSN6ZypH5bfUNwFXXjRQtUEBNFd2PtmCmG2Py3qQ==} engines: {node: '>=6.0.0'} hasBin: true @@ -1262,7 +1447,7 @@ packages: '@babel/types': 7.12.1 dev: true - /@babel/parser/7.10.4: + /@babel/parser@7.10.4: resolution: {integrity: sha512-8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA==} engines: {node: '>=6.0.0'} hasBin: true @@ -1270,7 +1455,7 @@ packages: '@babel/types': 7.12.1 dev: true - /@babel/parser/7.11.3: + /@babel/parser@7.11.3: resolution: {integrity: sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==} engines: {node: '>=6.0.0'} hasBin: true @@ -1278,7 +1463,7 @@ packages: '@babel/types': 7.12.1 dev: true - /@babel/parser/7.12.3: + /@babel/parser@7.12.3: resolution: {integrity: sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw==} engines: {node: '>=6.0.0'} hasBin: true @@ -1286,7 +1471,7 @@ packages: '@babel/types': 7.12.1 dev: true - /@babel/plugin-proposal-async-generator-functions/7.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-async-generator-functions@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-vzZE12ZTdB336POZjmpblWfNNRpMSua45EYnRigE2XsZxcXcIyly2ixnTJasJE4Zq3U7t2d8rRF7XRUuzHxbOw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1294,12 +1479,12 @@ packages: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.1 '@babel/helper-remap-async-to-generator': 7.10.1 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.10.2 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.10.2) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-async-generator-functions/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-async-generator-functions@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-MJbxGSmejEFVOANAezdO39SObkURO5o/8b6fSH6D1pi9RZQt+ldppKPXfqgUWpSQ9asM6xaSaSJIaeWMDRP0Zg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1307,12 +1492,12 @@ packages: '@babel/core': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-remap-async-to-generator': 7.10.4 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.10.4 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.10.4) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-async-generator-functions/7.10.5_@babel+core@7.11.1: + /@babel/plugin-proposal-async-generator-functions@7.10.5(@babel/core@7.11.1): resolution: {integrity: sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1320,12 +1505,12 @@ packages: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-remap-async-to-generator': 7.10.4 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.11.1 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.11.1) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-async-generator-functions/7.12.1_@babel+core@7.12.3: + /@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 @@ -1333,387 +1518,387 @@ packages: '@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 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.3) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-class-properties@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-sqdGWgoXlnOdgMXU+9MbhzwFRgxVLeiGBqTrnuS7LC2IBU31wSsESbTUreT2O418obpfPdGUR2GbEufZF1bpqw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-class-features-plugin': 7.10.2_@babel+core@7.10.2 + '@babel/helper-create-class-features-plugin': 7.10.2(@babel/core@7.10.2) '@babel/helper-plugin-utils': 7.10.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.10.2: + /@babel/plugin-proposal-class-properties@7.10.4(@babel/core@7.10.2): resolution: {integrity: sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-class-features-plugin': 7.10.4_@babel+core@7.10.2 + '@babel/helper-create-class-features-plugin': 7.10.4(@babel/core@7.10.2) '@babel/helper-plugin-utils': 7.10.4 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-class-properties@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 - '@babel/helper-create-class-features-plugin': 7.10.4_@babel+core@7.10.4 + '@babel/helper-create-class-features-plugin': 7.10.4(@babel/core@7.10.4) '@babel/helper-plugin-utils': 7.10.4 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.11.1: + /@babel/plugin-proposal-class-properties@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 - '@babel/helper-create-class-features-plugin': 7.10.4_@babel+core@7.11.1 + '@babel/helper-create-class-features-plugin': 7.10.4(@babel/core@7.11.1) '@babel/helper-plugin-utils': 7.10.4 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.3: + /@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.12.3 - '@babel/helper-create-class-features-plugin': 7.12.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-dynamic-import/7.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-dynamic-import@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-Cpc2yUVHTEGPlmiQzXj026kqwjEQAD9I4ZC16uzdbgWgitg/UHKHLffKNCQZ5+y8jpIZPJcKcwsr2HwPh+w3XA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.1 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.10.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.10.2) dev: true - /@babel/plugin-proposal-dynamic-import/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-dynamic-import@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.10.4 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.10.4) dev: true - /@babel/plugin-proposal-dynamic-import/7.10.4_@babel+core@7.11.1: + /@babel/plugin-proposal-dynamic-import@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.11.1) dev: true - /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.12.3: + /@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.0.0-0 dependencies: '@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 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.3) dev: true - /@babel/plugin-proposal-export-namespace-from/7.10.4_@babel+core@7.11.1: + /@babel/plugin-proposal-export-namespace-from@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.11.1) dev: true - /@babel/plugin-proposal-export-namespace-from/7.12.1_@babel+core@7.12.3: + /@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.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.3) dev: true - /@babel/plugin-proposal-json-strings/7.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-json-strings@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-m8r5BmV+ZLpWPtMY2mOKN7wre6HIO4gfIiV+eOmsnZABNenrt/kzYBwrh+KOfgumSWpnlGs5F70J8afYMSJMBg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.1 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.10.2 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.10.2) dev: true - /@babel/plugin-proposal-json-strings/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-json-strings@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.10.4 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.10.4) dev: true - /@babel/plugin-proposal-json-strings/7.10.4_@babel+core@7.11.1: + /@babel/plugin-proposal-json-strings@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.11.1) dev: true - /@babel/plugin-proposal-json-strings/7.12.1_@babel+core@7.12.3: + /@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.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.3) dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.11.0_@babel+core@7.11.1: + /@babel/plugin-proposal-logical-assignment-operators@7.11.0(@babel/core@7.11.1): resolution: {integrity: sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.11.1) dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.12.1_@babel+core@7.12.3: + /@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.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.3) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-nullish-coalescing-operator@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-56cI/uHYgL2C8HVuHOuvVowihhX0sxb3nnfVRzUeVHTWmRHTZrKuAh/OBIMggGU/S1g/1D2CRCXqP+3u7vX7iA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.1 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.10.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.10.2) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-nullish-coalescing-operator@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.10.4 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.10.4) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.10.4_@babel+core@7.11.1: + /@babel/plugin-proposal-nullish-coalescing-operator@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.11.1) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.3: + /@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.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.3) dev: true - /@babel/plugin-proposal-numeric-separator/7.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-numeric-separator@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-jjfym4N9HtCiNfyyLAVD8WqPYeHUrw4ihxuAynWj6zzp2gf9Ey2f7ImhFm6ikB3CLf5Z/zmcJDri6B4+9j9RsA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.1 - '@babel/plugin-syntax-numeric-separator': 7.10.1_@babel+core@7.10.2 + '@babel/plugin-syntax-numeric-separator': 7.10.1(@babel/core@7.10.2) dev: true - /@babel/plugin-proposal-numeric-separator/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-numeric-separator@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.10.4 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.10.4) dev: true - /@babel/plugin-proposal-numeric-separator/7.10.4_@babel+core@7.11.1: + /@babel/plugin-proposal-numeric-separator@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.11.1) dev: true - /@babel/plugin-proposal-numeric-separator/7.12.1_@babel+core@7.12.3: + /@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.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.3) dev: true - /@babel/plugin-proposal-object-rest-spread/7.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-object-rest-spread@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-Z+Qri55KiQkHh7Fc4BW6o+QBuTagbOp9txE+4U1i79u9oWlf2npkiDx+Rf3iK3lbcHBuNy9UOkwuR5wOMH3LIQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.1 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.10.2 - '@babel/plugin-transform-parameters': 7.10.1_@babel+core@7.10.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.10.2) + '@babel/plugin-transform-parameters': 7.10.1(@babel/core@7.10.2) dev: true - /@babel/plugin-proposal-object-rest-spread/7.10.4_@babel+core@7.10.2: + /@babel/plugin-proposal-object-rest-spread@7.10.4(@babel/core@7.10.2): resolution: {integrity: sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.10.2 - '@babel/plugin-transform-parameters': 7.10.4_@babel+core@7.10.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.10.2) + '@babel/plugin-transform-parameters': 7.10.4(@babel/core@7.10.2) dev: true - /@babel/plugin-proposal-object-rest-spread/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-object-rest-spread@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.10.4 - '@babel/plugin-transform-parameters': 7.10.4_@babel+core@7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.10.4) + '@babel/plugin-transform-parameters': 7.10.4(@babel/core@7.10.4) dev: true - /@babel/plugin-proposal-object-rest-spread/7.11.0_@babel+core@7.11.1: + /@babel/plugin-proposal-object-rest-spread@7.11.0(@babel/core@7.11.1): resolution: {integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.1 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.1) + '@babel/plugin-transform-parameters': 7.10.5(@babel/core@7.11.1) dev: true - /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.3: + /@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/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 + '@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.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-optional-catch-binding@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-VqExgeE62YBqI3ogkGoOJp1R6u12DFZjqwJhqtKc2o5m1YTUuUWnos7bZQFBhwkxIFpWYJ7uB75U7VAPPiKETA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.1 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.10.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.10.2) dev: true - /@babel/plugin-proposal-optional-catch-binding/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-optional-catch-binding@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.10.4 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.10.4) dev: true - /@babel/plugin-proposal-optional-catch-binding/7.10.4_@babel+core@7.11.1: + /@babel/plugin-proposal-optional-catch-binding@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.11.1) dev: true - /@babel/plugin-proposal-optional-catch-binding/7.12.1_@babel+core@7.12.3: + /@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.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.3) dev: true - /@babel/plugin-proposal-optional-chaining/7.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-optional-chaining@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-dqQj475q8+/avvok72CF3AOSV/SGEcH29zT5hhohqqvvZ2+boQoOr7iGldBG5YXTO2qgCgc2B3WvVLUdbeMlGA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.10.2 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.10.2) dev: true - /@babel/plugin-proposal-optional-chaining/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-optional-chaining@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.10.4 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.10.4) dev: true - /@babel/plugin-proposal-optional-chaining/7.11.0_@babel+core@7.11.1: + /@babel/plugin-proposal-optional-chaining@7.11.0(@babel/core@7.11.1): resolution: {integrity: sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1721,10 +1906,10 @@ packages: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-skip-transparent-expression-wrappers': 7.11.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.11.1) dev: true - /@babel/plugin-proposal-optional-chaining/7.12.1_@babel+core@7.12.3: + /@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 @@ -1732,113 +1917,113 @@ packages: '@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 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.3) dev: true - /@babel/plugin-proposal-private-methods/7.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-private-methods@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-RZecFFJjDiQ2z6maFprLgrdnm0OzoC23Mx89xf1CcEsxmHuzuXOdniEuI+S3v7vjQG4F5sa6YtUp+19sZuSxHg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-class-features-plugin': 7.10.2_@babel+core@7.10.2 + '@babel/helper-create-class-features-plugin': 7.10.2(@babel/core@7.10.2) '@babel/helper-plugin-utils': 7.10.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-methods/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-private-methods@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.10.4 + '@babel/helper-create-class-features-plugin': 7.10.5(@babel/core@7.10.4) '@babel/helper-plugin-utils': 7.10.4 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-methods/7.10.4_@babel+core@7.11.1: + /@babel/plugin-proposal-private-methods@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.11.1 + '@babel/helper-create-class-features-plugin': 7.10.5(@babel/core@7.11.1) '@babel/helper-plugin-utils': 7.10.4 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-methods/7.12.1_@babel+core@7.12.3: + /@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.12.3 - '@babel/helper-create-class-features-plugin': 7.12.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.10.1_@babel+core@7.10.2: + /@babel/plugin-proposal-unicode-property-regex@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-JjfngYRvwmPwmnbRZyNiPFI8zxCZb8euzbCG/LxyKdeTb59tVciKo9GK9bi6JYKInk1H11Dq9j/zRqIH4KigfQ==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-regexp-features-plugin': 7.10.1_@babel+core@7.10.2 + '@babel/helper-create-regexp-features-plugin': 7.10.1(@babel/core@7.10.2) '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.10.2: + /@babel/plugin-proposal-unicode-property-regex@7.10.4(@babel/core@7.10.2): resolution: {integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.2 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.10.2) '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.10.4: + /@babel/plugin-proposal-unicode-property-regex@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.4 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.10.4) '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.11.1: + /@babel/plugin-proposal-unicode-property-regex@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.1 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.11.1) '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-proposal-unicode-property-regex/7.12.1_@babel+core@7.12.3: + /@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.12.3 - '@babel/helper-create-regexp-features-plugin': 7.12.1_@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.10.2: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.10.2): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1847,7 +2032,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.10.4: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.10.4): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1856,7 +2041,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.11.1: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.11.1): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1865,7 +2050,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.3: + /@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 @@ -1874,7 +2059,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-class-properties/7.10.1_@babel+core@7.10.2: + /@babel/plugin-syntax-class-properties@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-Gf2Yx/iRs1JREDtVZ56OrjjgFHCaldpTnuy9BHla10qyVT3YkIIGEtoDWhyop0ksu1GvNjHIoYRBqm3zoR1jyQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1883,7 +2068,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-syntax-class-properties/7.10.4_@babel+core@7.10.4: + /@babel/plugin-syntax-class-properties@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1892,7 +2077,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-class-properties/7.10.4_@babel+core@7.11.1: + /@babel/plugin-syntax-class-properties@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1901,7 +2086,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-class-properties/7.12.1_@babel+core@7.12.3: + /@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 @@ -1910,7 +2095,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.10.2: + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.10.2): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1919,7 +2104,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.10.4: + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.10.4): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1928,7 +2113,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.11.1: + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.11.1): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1937,7 +2122,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.3: + /@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 @@ -1946,7 +2131,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.11.1: + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.11.1): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1955,7 +2140,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.3: + /@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 @@ -1964,7 +2149,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.10.2: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.10.2): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1973,7 +2158,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.10.4: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.10.4): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1982,7 +2167,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.11.1: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.11.1): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1991,7 +2176,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.3: + /@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 @@ -2000,7 +2185,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.11.1: + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2009,7 +2194,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.3: + /@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 @@ -2018,7 +2203,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.10.2: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.10.2): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2027,7 +2212,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.10.4: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.10.4): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2036,7 +2221,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.11.1: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.11.1): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2045,7 +2230,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.3: + /@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 @@ -2054,7 +2239,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.1_@babel+core@7.10.2: + /@babel/plugin-syntax-numeric-separator@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-uTd0OsHrpe3tH5gRPTxG8Voh99/WCU78vIm5NMRYPAqC8lR4vajt6KkCAknCHrx24vkPdd/05yfdGSB4EIY2mg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2063,7 +2248,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.10.4: + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2072,7 +2257,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.11.1: + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2081,7 +2266,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.3: + /@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 @@ -2090,7 +2275,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.10.2: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.10.2): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2099,7 +2284,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.10.4: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.10.4): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2108,7 +2293,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.11.1: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.11.1): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2117,7 +2302,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.3: + /@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 @@ -2126,7 +2311,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.10.2: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.10.2): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2135,7 +2320,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.10.4: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.10.4): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2144,7 +2329,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.11.1: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.11.1): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2153,7 +2338,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.3: + /@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 @@ -2162,7 +2347,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.10.2: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.10.2): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2171,7 +2356,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.10.4: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.10.4): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2180,7 +2365,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.11.1: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.11.1): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2189,7 +2374,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.3: + /@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 @@ -2198,7 +2383,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-top-level-await/7.10.1_@babel+core@7.10.2: + /@babel/plugin-syntax-top-level-await@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-hgA5RYkmZm8FTFT3yu2N9Bx7yVVOKYT6yEdXXo6j2JTm0wNxgqaGeQVaSHRjhfnQbX91DtjFB6McRFSlcJH3xQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2207,7 +2392,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-syntax-top-level-await/7.10.4_@babel+core@7.10.4: + /@babel/plugin-syntax-top-level-await@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2216,7 +2401,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-top-level-await/7.10.4_@babel+core@7.11.1: + /@babel/plugin-syntax-top-level-await@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2225,7 +2410,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.12.3: + /@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 @@ -2234,7 +2419,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-typescript/7.10.1_@babel+core@7.10.2: + /@babel/plugin-syntax-typescript@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-X/d8glkrAtra7CaQGMiGs/OGa6XgUzqPcBXCIGFCpCqnfGlT0Wfbzo/B89xHhnInTaItPK8LALblVXcUOEh95Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2243,7 +2428,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-syntax-typescript/7.10.4_@babel+core@7.10.4: + /@babel/plugin-syntax-typescript@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2252,7 +2437,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-typescript/7.10.4_@babel+core@7.11.1: + /@babel/plugin-syntax-typescript@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2261,7 +2446,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-syntax-typescript/7.12.1_@babel+core@7.12.3: + /@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 @@ -2270,7 +2455,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-arrow-functions/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-arrow-functions@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-6AZHgFJKP3DJX0eCNJj01RpytUa3SOGawIxweHkNX2L6PYikOZmoh5B0d7hIHaIgveMjX990IAa/xK7jRTN8OA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2279,7 +2464,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-arrow-functions/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-arrow-functions@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2288,7 +2473,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-arrow-functions/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-arrow-functions@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2297,7 +2482,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-arrow-functions/7.12.1_@babel+core@7.12.3: + /@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 @@ -2306,7 +2491,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-async-to-generator/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-async-to-generator@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-XCgYjJ8TY2slj6SReBUyamJn3k2JLUIiiR5b6t1mNCMSvv7yx+jJpaewakikp0uWFQSF7ChPPoe3dHmXLpISkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2319,7 +2504,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-async-to-generator/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-async-to-generator@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2332,7 +2517,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-async-to-generator/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-async-to-generator@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2345,7 +2530,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-async-to-generator/7.12.1_@babel+core@7.12.3: + /@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 @@ -2358,7 +2543,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-block-scoped-functions@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-B7K15Xp8lv0sOJrdVAoukKlxP9N59HS48V1J3U/JGj+Ad+MHq+am6xJVs85AgXrQn4LV8vaYFOB+pr/yIuzW8Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2367,7 +2552,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-block-scoped-functions@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2376,7 +2561,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-block-scoped-functions@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2385,7 +2570,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-block-scoped-functions/7.12.1_@babel+core@7.12.3: + /@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 @@ -2394,7 +2579,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-block-scoping/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-block-scoping@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-8bpWG6TtF5akdhIm/uWTyjHqENpy13Fx8chg7pFH875aNLwX8JxIxqm08gmAT+Whe6AOmaTeLPe7dpLbXt+xUw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2404,7 +2589,7 @@ packages: lodash: 4.17.15 dev: true - /@babel/plugin-transform-block-scoping/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-block-scoping@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-J3b5CluMg3hPUii2onJDRiaVbPtKFPLEaV5dOPY5OeAbDi1iU/UbbFFTgwb7WnanaDy7bjU35kc26W3eM5Qa0A==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2414,7 +2599,7 @@ packages: lodash: 4.17.15 dev: true - /@babel/plugin-transform-block-scoping/7.11.1_@babel+core@7.11.1: + /@babel/plugin-transform-block-scoping@7.11.1(@babel/core@7.11.1): resolution: {integrity: sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2423,7 +2608,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-block-scoping/7.12.1_@babel+core@7.12.3: + /@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 @@ -2432,7 +2617,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-classes/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-classes@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-P9V0YIh+ln/B3RStPoXpEQ/CoAxQIhRSUn7aXqQ+FZJ2u8+oCtjIXR3+X0vsSD8zv+mb56K7wZW1XiDTDGiDRQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2450,7 +2635,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-classes/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-classes@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2468,7 +2653,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-classes/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-classes@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2486,7 +2671,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.3: + /@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 @@ -2504,7 +2689,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-computed-properties@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-mqSrGjp3IefMsXIenBfGcPXxJxweQe2hEIwMQvjtiDQ9b1IBvDUjkAtV/HMXX47/vXf14qDNedXsIiNd1FmkaQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2513,7 +2698,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-computed-properties@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2522,7 +2707,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-computed-properties@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2531,7 +2716,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-computed-properties/7.12.1_@babel+core@7.12.3: + /@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 @@ -2540,7 +2725,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-destructuring/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-destructuring@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-V/nUc4yGWG71OhaTH705pU8ZSdM6c1KmmLP8ys59oOYbT7RpMYAR3MsVOt6OHL0WzG7BlTU076va9fjJyYzJMA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2549,7 +2734,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-destructuring/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-destructuring@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2558,7 +2743,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-destructuring/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-destructuring@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2567,7 +2752,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-destructuring/7.12.1_@babel+core@7.12.3: + /@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 @@ -2576,57 +2761,57 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-dotall-regex/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-dotall-regex@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-19VIMsD1dp02RvduFUmfzj8uknaO3uiHHF0s3E1OHnVsNj8oge8EQ5RzHRbJjGSetRnkEuBYO7TG1M5kKjGLOA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-regexp-features-plugin': 7.10.1_@babel+core@7.10.2 + '@babel/helper-create-regexp-features-plugin': 7.10.1(@babel/core@7.10.2) '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.10.2: + /@babel/plugin-transform-dotall-regex@7.10.4(@babel/core@7.10.2): resolution: {integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.2 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.10.2) '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-dotall-regex@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.4 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.10.4) '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-dotall-regex@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.1 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.11.1) '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-dotall-regex/7.12.1_@babel+core@7.12.3: + /@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.12.3 - '@babel/helper-create-regexp-features-plugin': 7.12.1_@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.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-duplicate-keys@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-wIEpkX4QvX8Mo9W6XF3EdGttrIPZWozHfEaDTU0WJD/TDnXMvdDh30mzUl/9qWhnf7naicYartcEfUghTCSNpA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2635,7 +2820,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-duplicate-keys/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-duplicate-keys@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2644,7 +2829,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-duplicate-keys/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-duplicate-keys@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2653,7 +2838,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-duplicate-keys/7.12.1_@babel+core@7.12.3: + /@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 @@ -2662,7 +2847,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-exponentiation-operator/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-exponentiation-operator@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-lr/przdAbpEA2BUzRvjXdEDLrArGRRPwbaF9rvayuHRvdQ7lUTTkZnhZrJ4LE2jvgMRFF4f0YuPQ20vhiPYxtA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2674,7 +2859,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-exponentiation-operator/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-exponentiation-operator@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2684,7 +2869,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-exponentiation-operator/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-exponentiation-operator@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2694,7 +2879,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-exponentiation-operator/7.12.1_@babel+core@7.12.3: + /@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 @@ -2704,7 +2889,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-for-of/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-for-of@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-US8KCuxfQcn0LwSCMWMma8M2R5mAjJGsmoCBVwlMygvmDUMkTCykc84IqN1M7t+agSfOmLYTInLCHJM+RUoz+w==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2713,7 +2898,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-for-of/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-for-of@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2722,7 +2907,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-for-of/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-for-of@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2731,7 +2916,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-for-of/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-for-of@7.12.1(@babel/core@7.12.3): resolution: {integrity: sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2740,7 +2925,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-function-name/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-function-name@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-//bsKsKFBJfGd65qSNNh1exBy5Y9gD9ZN+DvrJ8f7HXr4avE5POW6zB7Rj6VnqHV33+0vXWUwJT0wSHubiAQkw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2750,7 +2935,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-function-name/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-function-name@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2760,7 +2945,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-function-name/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-function-name@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2770,7 +2955,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-function-name/7.12.1_@babel+core@7.12.3: + /@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 @@ -2780,7 +2965,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-literals/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-literals@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-qi0+5qgevz1NHLZroObRm5A+8JJtibb7vdcPQF1KQE12+Y/xxl8coJ+TpPW9iRq+Mhw/NKLjm+5SHtAHCC7lAw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2789,7 +2974,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-literals/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-literals@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2798,7 +2983,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-literals/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-literals@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2807,7 +2992,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-literals/7.12.1_@babel+core@7.12.3: + /@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 @@ -2816,7 +3001,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-member-expression-literals/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-member-expression-literals@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-UmaWhDokOFT2GcgU6MkHC11i0NQcL63iqeufXWfRy6pUOGYeCGEKhvfFO6Vz70UfYJYHwveg62GS83Rvpxn+NA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2825,7 +3010,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-member-expression-literals/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-member-expression-literals@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2834,7 +3019,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-member-expression-literals/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-member-expression-literals@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2843,7 +3028,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-member-expression-literals/7.12.1_@babel+core@7.12.3: + /@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 @@ -2852,7 +3037,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-modules-amd/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-modules-amd@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-31+hnWSFRI4/ACFr1qkboBbrTxoBIzj7qA69qlq8HY8p7+YCzkCT6/TvQ1a4B0z27VeWtAeJd6pr5G04dc1iHw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2865,7 +3050,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-amd/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-modules-amd@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-3Fw+H3WLUrTlzi3zMiZWp3AR4xadAEMv6XRCYnd5jAlLM61Rn+CRJaZMaNvIpcJpQ3vs1kyifYvEVPFfoSkKOA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2878,7 +3063,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-amd/7.10.5_@babel+core@7.11.1: + /@babel/plugin-transform-modules-amd@7.10.5(@babel/core@7.11.1): resolution: {integrity: sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2891,7 +3076,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-amd/7.12.1_@babel+core@7.12.3: + /@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 @@ -2904,7 +3089,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-modules-commonjs@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-AQG4fc3KOah0vdITwt7Gi6hD9BtQP/8bhem7OjbaMoRNCH5Djx42O2vYMfau7QnAzQCa+RJnhJBmFFMGpQEzrg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2918,7 +3103,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-modules-commonjs@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2932,7 +3117,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-modules-commonjs@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2946,7 +3131,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.12.1_@babel+core@7.12.3: + /@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 @@ -2960,7 +3145,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-modules-systemjs@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-ewNKcj1TQZDL3YnO85qh9zo1YF1CHgmSTlRQgHqe63oTrMI85cthKtZjAiZSsSNjPQ5NCaYo5QkbYqEw1ZBgZA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2974,7 +3159,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-modules-systemjs@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-Tb28LlfxrTiOTGtZFsvkjpyjCl9IoaRI52AEU/VIwOwvDQWtbNJsAqTXzh+5R7i74e/OZHH2c2w2fsOqAfnQYQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2988,7 +3173,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.10.5_@babel+core@7.11.1: + /@babel/plugin-transform-modules-systemjs@7.10.5(@babel/core@7.11.1): resolution: {integrity: sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3002,7 +3187,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.12.1_@babel+core@7.12.3: + /@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 @@ -3017,7 +3202,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-modules-umd@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-EIuiRNMd6GB6ulcYlETnYYfgv4AxqrswghmBRQbWLHZxN4s7mupxzglnHqk9ZiUpDI4eRWewedJJNj67PWOXKA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3029,7 +3214,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-modules-umd@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3041,7 +3226,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-modules-umd@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3053,7 +3238,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.12.1_@babel+core@7.12.3: + /@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 @@ -3065,43 +3250,43 @@ packages: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-named-capturing-groups-regex@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.10.4 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.4 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.10.4) dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-named-capturing-groups-regex@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.11.1 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.1 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.11.1) dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.12.1_@babel+core@7.12.3: + /@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.12.3 - '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 + '@babel/helper-create-regexp-features-plugin': 7.12.1(@babel/core@7.12.3) dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.8.3_@babel+core@7.10.2: + /@babel/plugin-transform-named-capturing-groups-regex@7.8.3(@babel/core@7.10.2): resolution: {integrity: sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-regexp-features-plugin': 7.10.1_@babel+core@7.10.2 + '@babel/helper-create-regexp-features-plugin': 7.10.1(@babel/core@7.10.2) dev: true - /@babel/plugin-transform-new-target/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-new-target@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-MBlzPc1nJvbmO9rPr1fQwXOM2iGut+JC92ku6PbiJMMK7SnQc1rytgpopveE3Evn47gzvGYeCdgfCDbZo0ecUw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3110,7 +3295,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-new-target/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-new-target@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3119,7 +3304,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-new-target/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-new-target@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3128,7 +3313,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-new-target/7.12.1_@babel+core@7.12.3: + /@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 @@ -3137,7 +3322,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-object-super/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-object-super@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-WnnStUDN5GL+wGQrJylrnnVlFhFmeArINIR9gjhSeYyvroGhBrSAXYg/RHsnfzmsa+onJrTJrEClPzgNmmQ4Gw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3149,7 +3334,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-object-super/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-object-super@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3161,7 +3346,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-object-super/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-object-super@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3173,7 +3358,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-object-super/7.12.1_@babel+core@7.12.3: + /@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 @@ -3185,7 +3370,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-parameters/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-parameters@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-tJ1T0n6g4dXMsL45YsSzzSDZCxiHXAQp/qHrucOq5gEHncTA3xDxnd5+sZcoQp+N1ZbieAaB8r/VUCG0gqseOg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3195,7 +3380,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-parameters/7.10.4_@babel+core@7.10.2: + /@babel/plugin-transform-parameters@7.10.4(@babel/core@7.10.2): resolution: {integrity: sha512-RurVtZ/D5nYfEg0iVERXYKEgDFeesHrHfx8RT05Sq57ucj2eOYAP6eu5fynL4Adju4I/mP/I6SO0DqNWAXjfLQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3205,7 +3390,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-parameters/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-parameters@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-RurVtZ/D5nYfEg0iVERXYKEgDFeesHrHfx8RT05Sq57ucj2eOYAP6eu5fynL4Adju4I/mP/I6SO0DqNWAXjfLQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3215,7 +3400,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-parameters/7.10.5_@babel+core@7.11.1: + /@babel/plugin-transform-parameters@7.10.5(@babel/core@7.11.1): resolution: {integrity: sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3225,7 +3410,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-parameters@7.12.1(@babel/core@7.12.3): resolution: {integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3234,7 +3419,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-property-literals/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-property-literals@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-Kr6+mgag8auNrgEpbfIWzdXYOvqDHZOF0+Bx2xh4H2EDNwcbRb9lY6nkZg8oSjsX+DH9Ebxm9hOqtKW+gRDeNA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3243,7 +3428,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-property-literals/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-property-literals@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3252,7 +3437,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-property-literals/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-property-literals@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3261,7 +3446,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-property-literals/7.12.1_@babel+core@7.12.3: + /@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 @@ -3270,7 +3455,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-regenerator/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-regenerator@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-B3+Y2prScgJ2Bh/2l9LJxKbb8C8kRfsG4AdPT+n7ixBHIxJaIG8bi8tgjxUMege1+WqSJ+7gu1YeoMVO3gPWzw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3279,7 +3464,7 @@ packages: regenerator-transform: 0.14.4 dev: true - /@babel/plugin-transform-regenerator/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-regenerator@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3288,7 +3473,7 @@ packages: regenerator-transform: 0.14.5 dev: true - /@babel/plugin-transform-regenerator/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-regenerator@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3297,7 +3482,7 @@ packages: regenerator-transform: 0.14.5 dev: true - /@babel/plugin-transform-regenerator/7.12.1_@babel+core@7.12.3: + /@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 @@ -3306,7 +3491,7 @@ packages: regenerator-transform: 0.14.5 dev: true - /@babel/plugin-transform-reserved-words/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-reserved-words@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-qN1OMoE2nuqSPmpTqEM7OvJ1FkMEV+BjVeZZm9V9mq/x1JLKQ4pcv8riZJMNN3u2AUGl0ouOMjRr2siecvHqUQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3315,7 +3500,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-reserved-words/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-reserved-words@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3324,7 +3509,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-reserved-words/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-reserved-words@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3333,7 +3518,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-reserved-words/7.12.1_@babel+core@7.12.3: + /@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 @@ -3342,7 +3527,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-shorthand-properties/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-shorthand-properties@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-AR0E/lZMfLstScFwztApGeyTHJ5u3JUKMjneqRItWeEqDdHWZwAOKycvQNCasCK/3r5YXsuNG25funcJDu7Y2g==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3351,7 +3536,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-shorthand-properties/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-shorthand-properties@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3360,7 +3545,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-shorthand-properties/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-shorthand-properties@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3369,7 +3554,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-shorthand-properties/7.12.1_@babel+core@7.12.3: + /@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 @@ -3378,7 +3563,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-spread/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-spread@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-8wTPym6edIrClW8FI2IoaePB91ETOtg36dOkj3bYcNe7aDMN2FXEoUa+WrmPc4xa1u2PQK46fUX2aCb+zo9rfw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3387,7 +3572,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-spread/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-spread@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3396,7 +3581,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-spread/7.11.0_@babel+core@7.11.1: + /@babel/plugin-transform-spread@7.11.0(@babel/core@7.11.1): resolution: {integrity: sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3406,7 +3591,7 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.11.0 dev: true - /@babel/plugin-transform-spread/7.12.1_@babel+core@7.12.3: + /@babel/plugin-transform-spread@7.12.1(@babel/core@7.12.3): resolution: {integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3416,7 +3601,7 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 dev: true - /@babel/plugin-transform-sticky-regex/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-sticky-regex@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-j17ojftKjrL7ufX8ajKvwRilwqTok4q+BjkknmQw9VNHnItTyMP5anPFzxFJdCQs7clLcWpCV3ma+6qZWLnGMA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3426,7 +3611,7 @@ packages: '@babel/helper-regex': 7.10.1 dev: true - /@babel/plugin-transform-sticky-regex/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-sticky-regex@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3436,7 +3621,7 @@ packages: '@babel/helper-regex': 7.10.4 dev: true - /@babel/plugin-transform-sticky-regex/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-sticky-regex@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3446,7 +3631,7 @@ packages: '@babel/helper-regex': 7.10.4 dev: true - /@babel/plugin-transform-sticky-regex/7.12.1_@babel+core@7.12.3: + /@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 @@ -3456,7 +3641,7 @@ packages: '@babel/helper-regex': 7.10.5 dev: true - /@babel/plugin-transform-template-literals/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-template-literals@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-t7B/3MQf5M1T9hPCRG28DNGZUuxAuDqLYS03rJrIk2prj/UV7Z6FOneijhQhnv/Xa039vidXeVbvjK2SK5f7Gg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3466,7 +3651,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-template-literals/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-template-literals@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-4NErciJkAYe+xI5cqfS8pV/0ntlY5N5Ske/4ImxAVX7mk9Rxt2bwDTGv1Msc2BRJvWQcmYEC+yoMLdX22aE4VQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3476,7 +3661,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-template-literals/7.10.5_@babel+core@7.11.1: + /@babel/plugin-transform-template-literals@7.10.5(@babel/core@7.11.1): resolution: {integrity: sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3486,7 +3671,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-template-literals/7.12.1_@babel+core@7.12.3: + /@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 @@ -3495,7 +3680,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-typeof-symbol/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-typeof-symbol@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-qX8KZcmbvA23zDi+lk9s6hC1FM7jgLHYIjuLgULgc8QtYnmB3tAVIYkNoKRQ75qWBeyzcoMoK8ZQmogGtC/w0g==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3504,7 +3689,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-typeof-symbol/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-typeof-symbol@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3513,7 +3698,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-typeof-symbol/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-typeof-symbol@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3522,7 +3707,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-typeof-symbol/7.12.1_@babel+core@7.12.3: + /@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 @@ -3531,59 +3716,59 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-typescript/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-typescript@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-v+QWKlmCnsaimLeqq9vyCsVRMViZG1k2SZTlcZvB+TqyH570Zsij8nvVUZzOASCRiQFUxkLrn9Wg/kH0zgy5OQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-class-features-plugin': 7.10.2_@babel+core@7.10.2 + '@babel/helper-create-class-features-plugin': 7.10.2(@babel/core@7.10.2) '@babel/helper-plugin-utils': 7.10.1 - '@babel/plugin-syntax-typescript': 7.10.1_@babel+core@7.10.2 + '@babel/plugin-syntax-typescript': 7.10.1(@babel/core@7.10.2) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-typescript/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-typescript@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-3WpXIKDJl/MHoAN0fNkSr7iHdUMHZoppXjf2HJ9/ed5Xht5wNIsXllJXdityKOxeA3Z8heYRb1D3p2H5rfCdPw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 - '@babel/helper-create-class-features-plugin': 7.10.4_@babel+core@7.10.4 + '@babel/helper-create-class-features-plugin': 7.10.4(@babel/core@7.10.4) '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-typescript': 7.10.4_@babel+core@7.10.4 + '@babel/plugin-syntax-typescript': 7.10.4(@babel/core@7.10.4) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-typescript/7.11.0_@babel+core@7.11.1: + /@babel/plugin-transform-typescript@7.11.0(@babel/core@7.11.1): resolution: {integrity: sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.11.1 + '@babel/helper-create-class-features-plugin': 7.10.5(@babel/core@7.11.1) '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-typescript': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-syntax-typescript': 7.10.4(@babel/core@7.11.1) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-typescript/7.12.1_@babel+core@7.12.3: + /@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.12.3 - '@babel/helper-create-class-features-plugin': 7.12.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 + '@babel/plugin-syntax-typescript': 7.12.1(@babel/core@7.12.3) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-unicode-escapes@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-zZ0Poh/yy1d4jeDWpx/mNwbKJVwUYJX73q+gyh4bwtG0/iUlzdEu0sLMda8yuDFS6LBQlT/ST1SJAR6zYwXWgw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3592,7 +3777,7 @@ packages: '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-unicode-escapes/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-unicode-escapes@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3601,7 +3786,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-unicode-escapes/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-unicode-escapes@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3610,7 +3795,7 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-unicode-escapes/7.12.1_@babel+core@7.12.3: + /@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 @@ -3619,110 +3804,110 @@ packages: '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-unicode-regex/7.10.1_@babel+core@7.10.2: + /@babel/plugin-transform-unicode-regex@7.10.1(@babel/core@7.10.2): resolution: {integrity: sha512-Y/2a2W299k0VIUdbqYm9X2qS6fE0CUBhhiPpimK6byy7OJ/kORLlIX+J6UrjgNu5awvs62k+6RSslxhcvVw2Tw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 - '@babel/helper-create-regexp-features-plugin': 7.10.1_@babel+core@7.10.2 + '@babel/helper-create-regexp-features-plugin': 7.10.1(@babel/core@7.10.2) '@babel/helper-plugin-utils': 7.10.1 dev: true - /@babel/plugin-transform-unicode-regex/7.10.4_@babel+core@7.10.4: + /@babel/plugin-transform-unicode-regex@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.4 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.10.4) '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-unicode-regex/7.10.4_@babel+core@7.11.1: + /@babel/plugin-transform-unicode-regex@7.10.4(@babel/core@7.11.1): resolution: {integrity: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.1 + '@babel/helper-create-regexp-features-plugin': 7.10.4(@babel/core@7.11.1) '@babel/helper-plugin-utils': 7.10.4 dev: true - /@babel/plugin-transform-unicode-regex/7.12.1_@babel+core@7.12.3: + /@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.12.3 - '@babel/helper-create-regexp-features-plugin': 7.12.1_@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.10.2_@babel+core@7.10.2: + /@babel/preset-env@7.10.2(@babel/core@7.10.2): resolution: {integrity: sha512-MjqhX0RZaEgK/KueRzh+3yPSk30oqDKJ5HP5tqTSB1e2gzGS3PLy7K0BIpnp78+0anFuSwOeuCf1zZO7RzRvEA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.10.1 '@babel/core': 7.10.2 - '@babel/helper-compilation-targets': 7.10.2_@babel+core@7.10.2 + '@babel/helper-compilation-targets': 7.10.2(@babel/core@7.10.2) '@babel/helper-module-imports': 7.10.1 '@babel/helper-plugin-utils': 7.10.1 - '@babel/plugin-proposal-async-generator-functions': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-class-properties': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-dynamic-import': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-json-strings': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-numeric-separator': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-object-rest-spread': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-optional-catch-binding': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-optional-chaining': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-private-methods': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-proposal-unicode-property-regex': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.10.2 - '@babel/plugin-syntax-class-properties': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.10.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.10.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.10.2 - '@babel/plugin-syntax-numeric-separator': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.10.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.10.2 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.10.2 - '@babel/plugin-syntax-top-level-await': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-arrow-functions': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-async-to-generator': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-block-scoped-functions': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-block-scoping': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-classes': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-computed-properties': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-destructuring': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-dotall-regex': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-duplicate-keys': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-exponentiation-operator': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-for-of': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-function-name': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-literals': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-member-expression-literals': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-modules-amd': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-modules-commonjs': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-modules-systemjs': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-modules-umd': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-named-capturing-groups-regex': 7.8.3_@babel+core@7.10.2 - '@babel/plugin-transform-new-target': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-object-super': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-parameters': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-property-literals': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-regenerator': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-reserved-words': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-shorthand-properties': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-spread': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-sticky-regex': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-template-literals': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-typeof-symbol': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-unicode-escapes': 7.10.1_@babel+core@7.10.2 - '@babel/plugin-transform-unicode-regex': 7.10.1_@babel+core@7.10.2 - '@babel/preset-modules': 0.1.3_@babel+core@7.10.2 + '@babel/plugin-proposal-async-generator-functions': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-class-properties': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-dynamic-import': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-json-strings': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-numeric-separator': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-object-rest-spread': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-optional-catch-binding': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-optional-chaining': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-private-methods': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-proposal-unicode-property-regex': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.10.2) + '@babel/plugin-syntax-class-properties': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.10.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.10.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.10.2) + '@babel/plugin-syntax-numeric-separator': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.10.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.10.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.10.2) + '@babel/plugin-syntax-top-level-await': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-arrow-functions': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-async-to-generator': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-block-scoped-functions': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-block-scoping': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-classes': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-computed-properties': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-destructuring': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-dotall-regex': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-duplicate-keys': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-exponentiation-operator': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-for-of': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-function-name': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-literals': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-member-expression-literals': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-modules-amd': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-modules-commonjs': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-modules-systemjs': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-modules-umd': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.8.3(@babel/core@7.10.2) + '@babel/plugin-transform-new-target': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-object-super': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-parameters': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-property-literals': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-regenerator': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-reserved-words': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-shorthand-properties': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-spread': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-sticky-regex': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-template-literals': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-typeof-symbol': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-unicode-escapes': 7.10.1(@babel/core@7.10.2) + '@babel/plugin-transform-unicode-regex': 7.10.1(@babel/core@7.10.2) + '@babel/preset-modules': 0.1.3(@babel/core@7.10.2) '@babel/types': 7.10.2 browserslist: 4.12.0 core-js-compat: 3.6.5 @@ -3733,70 +3918,70 @@ packages: - supports-color dev: true - /@babel/preset-env/7.10.4_@babel+core@7.10.4: + /@babel/preset-env@7.10.4(@babel/core@7.10.4): resolution: {integrity: sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.10.4 '@babel/core': 7.10.4 - '@babel/helper-compilation-targets': 7.10.4_@babel+core@7.10.4 + '@babel/helper-compilation-targets': 7.10.4(@babel/core@7.10.4) '@babel/helper-module-imports': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-async-generator-functions': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-dynamic-import': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-numeric-separator': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-object-rest-spread': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-optional-catch-binding': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-optional-chaining': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-private-methods': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.10.4 - '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.10.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.10.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.10.4 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.10.4 - '@babel/plugin-syntax-top-level-await': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-arrow-functions': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-async-to-generator': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-block-scoped-functions': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-block-scoping': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-computed-properties': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-destructuring': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-duplicate-keys': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-exponentiation-operator': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-for-of': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-function-name': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-literals': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-member-expression-literals': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-modules-amd': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-modules-systemjs': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-modules-umd': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-new-target': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-object-super': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-parameters': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-property-literals': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-regenerator': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-reserved-words': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-shorthand-properties': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-spread': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-sticky-regex': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-template-literals': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-typeof-symbol': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-unicode-escapes': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-unicode-regex': 7.10.4_@babel+core@7.10.4 - '@babel/preset-modules': 0.1.3_@babel+core@7.10.4 + '@babel/plugin-proposal-async-generator-functions': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-class-properties': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-dynamic-import': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-json-strings': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-numeric-separator': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-object-rest-spread': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-optional-catch-binding': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-optional-chaining': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-private-methods': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-proposal-unicode-property-regex': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.10.4) + '@babel/plugin-syntax-class-properties': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.10.4) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.10.4) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.10.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.10.4) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.10.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.10.4) + '@babel/plugin-syntax-top-level-await': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-arrow-functions': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-async-to-generator': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-block-scoped-functions': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-block-scoping': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-classes': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-computed-properties': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-destructuring': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-dotall-regex': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-duplicate-keys': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-exponentiation-operator': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-for-of': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-function-name': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-literals': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-member-expression-literals': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-modules-amd': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-modules-commonjs': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-modules-systemjs': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-modules-umd': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-new-target': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-object-super': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-parameters': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-property-literals': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-regenerator': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-reserved-words': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-shorthand-properties': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-spread': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-sticky-regex': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-template-literals': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-typeof-symbol': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-unicode-escapes': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-unicode-regex': 7.10.4(@babel/core@7.10.4) + '@babel/preset-modules': 0.1.3(@babel/core@7.10.4) '@babel/types': 7.10.4 browserslist: 4.12.2 core-js-compat: 3.6.5 @@ -3807,74 +3992,74 @@ packages: - supports-color dev: true - /@babel/preset-env/7.11.0_@babel+core@7.11.1: + /@babel/preset-env@7.11.0(@babel/core@7.11.1): resolution: {integrity: sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.11.0 '@babel/core': 7.11.1 - '@babel/helper-compilation-targets': 7.10.4_@babel+core@7.11.1 + '@babel/helper-compilation-targets': 7.10.4(@babel/core@7.11.1) '@babel/helper-module-imports': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-async-generator-functions': 7.10.5_@babel+core@7.11.1 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-proposal-dynamic-import': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-proposal-export-namespace-from': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-proposal-logical-assignment-operators': 7.11.0_@babel+core@7.11.1 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-proposal-numeric-separator': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.11.1 - '@babel/plugin-proposal-optional-catch-binding': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-proposal-optional-chaining': 7.11.0_@babel+core@7.11.1 - '@babel/plugin-proposal-private-methods': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.11.1 - '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.1 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.11.1 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.11.1 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.11.1 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.1 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.11.1 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.11.1 - '@babel/plugin-syntax-top-level-await': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-arrow-functions': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-async-to-generator': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-block-scoped-functions': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-block-scoping': 7.11.1_@babel+core@7.11.1 - '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-computed-properties': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-destructuring': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-duplicate-keys': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-exponentiation-operator': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-for-of': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-function-name': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-literals': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-member-expression-literals': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-modules-amd': 7.10.5_@babel+core@7.11.1 - '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-modules-systemjs': 7.10.5_@babel+core@7.11.1 - '@babel/plugin-transform-modules-umd': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-new-target': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-object-super': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.11.1 - '@babel/plugin-transform-property-literals': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-regenerator': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-reserved-words': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-shorthand-properties': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-spread': 7.11.0_@babel+core@7.11.1 - '@babel/plugin-transform-sticky-regex': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.11.1 - '@babel/plugin-transform-typeof-symbol': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-unicode-escapes': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-unicode-regex': 7.10.4_@babel+core@7.11.1 - '@babel/preset-modules': 0.1.3_@babel+core@7.11.1 + '@babel/plugin-proposal-async-generator-functions': 7.10.5(@babel/core@7.11.1) + '@babel/plugin-proposal-class-properties': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-proposal-dynamic-import': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-proposal-export-namespace-from': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-proposal-json-strings': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-proposal-logical-assignment-operators': 7.11.0(@babel/core@7.11.1) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-proposal-numeric-separator': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-proposal-object-rest-spread': 7.11.0(@babel/core@7.11.1) + '@babel/plugin-proposal-optional-catch-binding': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-proposal-optional-chaining': 7.11.0(@babel/core@7.11.1) + '@babel/plugin-proposal-private-methods': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-proposal-unicode-property-regex': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.11.1) + '@babel/plugin-syntax-class-properties': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.11.1) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.11.1) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.11.1) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.11.1) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.11.1) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.11.1) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.11.1) + '@babel/plugin-syntax-top-level-await': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-arrow-functions': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-async-to-generator': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-block-scoped-functions': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-block-scoping': 7.11.1(@babel/core@7.11.1) + '@babel/plugin-transform-classes': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-computed-properties': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-destructuring': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-dotall-regex': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-duplicate-keys': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-exponentiation-operator': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-for-of': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-function-name': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-literals': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-member-expression-literals': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-modules-amd': 7.10.5(@babel/core@7.11.1) + '@babel/plugin-transform-modules-commonjs': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-modules-systemjs': 7.10.5(@babel/core@7.11.1) + '@babel/plugin-transform-modules-umd': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-new-target': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-object-super': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-parameters': 7.10.5(@babel/core@7.11.1) + '@babel/plugin-transform-property-literals': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-regenerator': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-reserved-words': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-shorthand-properties': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-spread': 7.11.0(@babel/core@7.11.1) + '@babel/plugin-transform-sticky-regex': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-template-literals': 7.10.5(@babel/core@7.11.1) + '@babel/plugin-transform-typeof-symbol': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-unicode-escapes': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-unicode-regex': 7.10.4(@babel/core@7.11.1) + '@babel/preset-modules': 0.1.3(@babel/core@7.11.1) '@babel/types': 7.11.0 browserslist: 4.14.0 core-js-compat: 3.6.5 @@ -3885,75 +4070,75 @@ packages: - supports-color dev: true - /@babel/preset-env/7.12.1_@babel+core@7.12.3: + /@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.12.1 '@babel/core': 7.12.3 - '@babel/helper-compilation-targets': 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/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 @@ -3961,71 +4146,78 @@ packages: - supports-color dev: true - /@babel/preset-modules/0.1.3_@babel+core@7.10.2: + /@babel/preset-modules@0.1.3(@babel/core@7.10.2): resolution: {integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.2 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.10.2 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.10.2 + '@babel/plugin-proposal-unicode-property-regex': 7.10.4(@babel/core@7.10.2) + '@babel/plugin-transform-dotall-regex': 7.10.4(@babel/core@7.10.2) '@babel/types': 7.12.1 esutils: 2.0.3 dev: true - /@babel/preset-modules/0.1.3_@babel+core@7.10.4: + /@babel/preset-modules@0.1.3(@babel/core@7.10.4): resolution: {integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.10.4 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.10.4 + '@babel/plugin-proposal-unicode-property-regex': 7.10.4(@babel/core@7.10.4) + '@babel/plugin-transform-dotall-regex': 7.10.4(@babel/core@7.10.4) '@babel/types': 7.12.1 esutils: 2.0.3 dev: true - /@babel/preset-modules/0.1.3_@babel+core@7.11.1: + /@babel/preset-modules@0.1.3(@babel/core@7.11.1): resolution: {integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.11.1 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-unicode-property-regex': 7.10.4(@babel/core@7.11.1) + '@babel/plugin-transform-dotall-regex': 7.10.4(@babel/core@7.11.1) '@babel/types': 7.12.1 esutils: 2.0.3 dev: true - /@babel/preset-modules/0.1.4_@babel+core@7.12.3: + /@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.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/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.12.1 esutils: 2.0.3 dev: true - /@babel/runtime/7.10.2: + /@babel/runtime@7.10.2: resolution: {integrity: sha512-6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg==} dependencies: regenerator-runtime: 0.13.5 dev: true - /@babel/runtime/7.12.1: + /@babel/runtime@7.12.1: resolution: {integrity: sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==} dependencies: regenerator-runtime: 0.13.7 dev: true - /@babel/template/7.10.1: + /@babel/runtime@7.23.8: + resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.14.1 + dev: true + + /@babel/template@7.10.1: resolution: {integrity: sha512-OQDg6SqvFSsc9A0ej6SKINWrpJiNonRIniYondK2ViKhB06i3c0s+76XUft71iqBEe9S1OKsHwPAjfHnuvnCig==} dependencies: '@babel/code-frame': 7.10.1 @@ -4033,7 +4225,7 @@ packages: '@babel/types': 7.10.2 dev: true - /@babel/template/7.10.4: + /@babel/template@7.10.4: resolution: {integrity: sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==} dependencies: '@babel/code-frame': 7.10.4 @@ -4041,7 +4233,7 @@ packages: '@babel/types': 7.12.1 dev: true - /@babel/traverse/7.10.1: + /@babel/traverse@7.10.1: resolution: {integrity: sha512-C/cTuXeKt85K+p08jN6vMDz8vSV0vZcI0wmQ36o6mjbuo++kPMdpOYw23W2XH04dbRt9/nMEfA4W3eR21CD+TQ==} dependencies: '@babel/code-frame': 7.10.1 @@ -4057,7 +4249,7 @@ packages: - supports-color dev: true - /@babel/traverse/7.10.4: + /@babel/traverse@7.10.4: resolution: {integrity: sha512-aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q==} dependencies: '@babel/code-frame': 7.10.4 @@ -4073,7 +4265,7 @@ packages: - supports-color dev: true - /@babel/traverse/7.11.0: + /@babel/traverse@7.11.0: resolution: {integrity: sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==} dependencies: '@babel/code-frame': 7.10.4 @@ -4089,7 +4281,7 @@ packages: - supports-color dev: true - /@babel/traverse/7.12.1: + /@babel/traverse@7.12.1: resolution: {integrity: sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==} dependencies: '@babel/code-frame': 7.10.4 @@ -4098,14 +4290,14 @@ packages: '@babel/helper-split-export-declaration': 7.11.0 '@babel/parser': 7.12.3 '@babel/types': 7.12.1 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) globals: 11.12.0 lodash: 4.17.20 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.10.2: + /@babel/types@7.10.2: resolution: {integrity: sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng==} dependencies: '@babel/helper-validator-identifier': 7.10.1 @@ -4113,7 +4305,7 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types/7.10.4: + /@babel/types@7.10.4: resolution: {integrity: sha512-UTCFOxC3FsFHb7lkRMVvgLzaRVamXuAs2Tz4wajva4WxtVY82eZeaUBtC2Zt95FU9TiznuC0Zk35tsim8jeVpg==} dependencies: '@babel/helper-validator-identifier': 7.10.4 @@ -4121,7 +4313,7 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types/7.11.0: + /@babel/types@7.11.0: resolution: {integrity: sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==} dependencies: '@babel/helper-validator-identifier': 7.10.4 @@ -4129,7 +4321,7 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types/7.12.1: + /@babel/types@7.12.1: resolution: {integrity: sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==} dependencies: '@babel/helper-validator-identifier': 7.10.4 @@ -4137,14 +4329,14 @@ packages: to-fast-properties: 2.0.0 dev: true - /@colors/colors/1.5.0: + /@colors/colors@1.5.0: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} requiresBuild: true dev: true optional: true - /@dsherret/to-absolute-glob/2.0.2: + /@dsherret/to-absolute-glob@2.0.2: resolution: {integrity: sha1-H2R13IvZdM6gei2vOGSzF7HdMyw=} engines: {node: '>=0.10.0'} dependencies: @@ -4152,12 +4344,12 @@ packages: is-negated-glob: 1.0.0 dev: true - /@eslint/eslintrc/0.2.1: + /@eslint/eslintrc@0.2.1: resolution: {integrity: sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: ajv: 6.12.6 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) espree: 7.3.0 globals: 12.4.0 ignore: 4.0.6 @@ -4170,7 +4362,7 @@ packages: - supports-color dev: true - /@istanbuljs/load-nyc-config/1.1.0: + /@istanbuljs/load-nyc-config@1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} dependencies: @@ -4181,12 +4373,12 @@ packages: resolve-from: 5.0.0 dev: true - /@istanbuljs/schema/0.1.2: + /@istanbuljs/schema@0.1.2: resolution: {integrity: sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==} engines: {node: '>=8'} dev: true - /@nodelib/fs.scandir/2.1.3: + /@nodelib/fs.scandir@2.1.3: resolution: {integrity: sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==} engines: {node: '>= 8'} dependencies: @@ -4194,12 +4386,12 @@ packages: run-parallel: 1.1.10 dev: true - /@nodelib/fs.stat/2.0.3: + /@nodelib/fs.stat@2.0.3: resolution: {integrity: sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==} engines: {node: '>= 8'} dev: true - /@nodelib/fs.walk/1.2.4: + /@nodelib/fs.walk@1.2.4: resolution: {integrity: sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==} engines: {node: '>= 8'} dependencies: @@ -4207,13 +4399,13 @@ packages: fastq: 1.9.0 dev: true - /@octokit/auth-token/2.4.3: + /@octokit/auth-token@2.4.3: resolution: {integrity: sha512-fdGoOQ3kQJh+hrilc0Plg50xSfaCKOeYN9t6dpJKXN9BxhhfquL0OzoQXg3spLYymL5rm29uPeI3KEXRaZQ9zg==} dependencies: '@octokit/types': 5.5.0 dev: true - /@octokit/core/2.5.4: + /@octokit/core@2.5.4: resolution: {integrity: sha512-HCp8yKQfTITYK+Nd09MHzAlP1v3Ii/oCohv0/TW9rhSLvzb98BOVs2QmVYuloE6a3l6LsfyGIwb6Pc4ycgWlIQ==} dependencies: '@octokit/auth-token': 2.4.3 @@ -4224,7 +4416,7 @@ packages: universal-user-agent: 5.0.0 dev: true - /@octokit/endpoint/6.0.9: + /@octokit/endpoint@6.0.9: resolution: {integrity: sha512-3VPLbcCuqji4IFTclNUtGdp9v7g+nspWdiCUbK3+iPMjJCZ6LEhn1ts626bWLOn0GiDb6j+uqGvPpqLnY7pBgw==} dependencies: '@octokit/types': 5.5.0 @@ -4232,7 +4424,7 @@ packages: universal-user-agent: 6.0.0 dev: true - /@octokit/graphql/4.5.7: + /@octokit/graphql@4.5.7: resolution: {integrity: sha512-Gk0AR+DcwIK/lK/GX+OQ99UqtenQhcbrhHHfOYlrCQe17ADnX3EKAOKRsAZ9qZvpi5MuwWm/Nm+9aO2kTDSdyA==} dependencies: '@octokit/request': 5.4.10 @@ -4240,7 +4432,7 @@ packages: universal-user-agent: 6.0.0 dev: true - /@octokit/plugin-paginate-rest/2.6.0_@octokit+core@2.5.4: + /@octokit/plugin-paginate-rest@2.6.0(@octokit/core@2.5.4): resolution: {integrity: sha512-o+O8c1PqsC5++BHXfMZabRRsBIVb34tXPWyQLyp2IXq5MmkxdipS7TXM4Y9ldL1PzY9CTrCsn/lzFFJGM3oRRA==} peerDependencies: '@octokit/core': '>=2' @@ -4249,7 +4441,7 @@ packages: '@octokit/types': 5.5.0 dev: true - /@octokit/plugin-request-log/1.0.2_@octokit+core@2.5.4: + /@octokit/plugin-request-log@1.0.2(@octokit/core@2.5.4): resolution: {integrity: sha512-oTJSNAmBqyDR41uSMunLQKMX0jmEXbwD1fpz8FG27lScV3RhtGfBa1/BBLym+PxcC16IBlF7KH9vP1BUYxA+Eg==} peerDependencies: '@octokit/core': '>=3' @@ -4257,14 +4449,14 @@ packages: '@octokit/core': 2.5.4 dev: true - /@octokit/plugin-rest-endpoint-methods/3.17.0: + /@octokit/plugin-rest-endpoint-methods@3.17.0: resolution: {integrity: sha512-NFV3vq7GgoO2TrkyBRUOwflkfTYkFKS0tLAPym7RNpkwLCttqShaEGjthOsPEEL+7LFcYv3mU24+F2yVd3npmg==} dependencies: '@octokit/types': 4.1.10 deprecation: 2.3.1 dev: true - /@octokit/request-error/2.0.3: + /@octokit/request-error@2.0.3: resolution: {integrity: sha512-GgD5z8Btm301i2zfvJLk/mkhvGCdjQ7wT8xF9ov5noQY8WbKZDH9cOBqXzoeKd1mLr1xH2FwbtGso135zGBgTA==} dependencies: '@octokit/types': 5.5.0 @@ -4272,7 +4464,7 @@ packages: once: 1.4.0 dev: true - /@octokit/request/5.4.10: + /@octokit/request@5.4.10: resolution: {integrity: sha512-egA49HkqEORVGDZGav1mh+VD+7uLgOxtn5oODj6guJk0HCy+YBSYapFkSLFgeYj3Fr18ZULKGURkjyhkAChylw==} dependencies: '@octokit/endpoint': 6.0.9 @@ -4285,28 +4477,28 @@ packages: universal-user-agent: 6.0.0 dev: true - /@octokit/rest/17.11.2: + /@octokit/rest@17.11.2: resolution: {integrity: sha512-4jTmn8WossTUaLfNDfXk4fVJgbz5JgZE8eCs4BvIb52lvIH8rpVMD1fgRCrHbSd6LRPE5JFZSfAEtszrOq3ZFQ==} dependencies: '@octokit/core': 2.5.4 - '@octokit/plugin-paginate-rest': 2.6.0_@octokit+core@2.5.4 - '@octokit/plugin-request-log': 1.0.2_@octokit+core@2.5.4 + '@octokit/plugin-paginate-rest': 2.6.0(@octokit/core@2.5.4) + '@octokit/plugin-request-log': 1.0.2(@octokit/core@2.5.4) '@octokit/plugin-rest-endpoint-methods': 3.17.0 dev: true - /@octokit/types/4.1.10: + /@octokit/types@4.1.10: resolution: {integrity: sha512-/wbFy1cUIE5eICcg0wTKGXMlKSbaAxEr00qaBXzscLXpqhcwgXeS6P8O0pkysBhRfyjkKjJaYrvR1ExMO5eOXQ==} dependencies: '@types/node': 14.14.6 dev: true - /@octokit/types/5.5.0: + /@octokit/types@5.5.0: resolution: {integrity: sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ==} dependencies: '@types/node': 14.14.6 dev: true - /@rollup/plugin-babel/5.0.3_5x4mg6uflth5nhnsng3ouhngpe: + /@rollup/plugin-babel@5.0.3(@babel/core@7.10.2)(rollup@2.15.0): resolution: {integrity: sha512-NlaPf4E6YFxeOCbqc+A2PTkB1BSy3rfKu6EJuQ1MGhMHpTVvMqKi6Rf0DlwtnEsTNK9LueUgsGEgp5Occ4KDVA==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -4315,11 +4507,11 @@ packages: dependencies: '@babel/core': 7.10.2 '@babel/helper-module-imports': 7.10.1 - '@rollup/pluginutils': 3.1.0_rollup@2.15.0 + '@rollup/pluginutils': 3.1.0(rollup@2.15.0) rollup: 2.15.0 dev: true - /@rollup/plugin-babel/5.0.4_r5mhor6zvcty2ccldu7yzgxhye: + /@rollup/plugin-babel@5.0.4(@babel/core@7.10.4)(rollup@2.18.2): resolution: {integrity: sha512-MBtNoi5gqBEbqy1gE9jZBfPsi10kbuK2CEu9bx53nk1Z3ATRvBOoZ/GsbhXOeVbS76xXi/DeYM+vYX6EGIDv9A==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -4328,11 +4520,11 @@ packages: dependencies: '@babel/core': 7.10.4 '@babel/helper-module-imports': 7.10.4 - '@rollup/pluginutils': 3.1.0_rollup@2.18.2 + '@rollup/pluginutils': 3.1.0(rollup@2.18.2) rollup: 2.18.2 dev: true - /@rollup/plugin-babel/5.1.0_z7qttwof5il5yprjeohs6m56pq: + /@rollup/plugin-babel@5.1.0(@babel/core@7.11.1)(rollup@2.23.1): resolution: {integrity: sha512-zXBEYmfiLAMvB+ZBa6m/q9hsQYAq1sUFdjuP1F6C2pf6uQcpHwAWQveZgzS63zXdKPUYHD3Dr7BhjCqcr0bbLw==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -4345,11 +4537,11 @@ packages: dependencies: '@babel/core': 7.11.1 '@babel/helper-module-imports': 7.10.4 - '@rollup/pluginutils': 3.1.0_rollup@2.23.1 + '@rollup/pluginutils': 3.1.0(rollup@2.23.1) rollup: 2.23.1 dev: true - /@rollup/plugin-babel/5.2.1_g4eevjgx5bct4c7lfmdy4lgrve: + /@rollup/plugin-babel@5.2.1(@babel/core@7.12.3)(rollup@2.33.1): resolution: {integrity: sha512-Jd7oqFR2dzZJ3NWANDyBjwTtX/lYbZpVcmkHrfQcpvawHs9E4c0nYk5U2mfZ6I/DZcIvy506KZJi54XK/jxH7A==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -4362,17 +4554,17 @@ packages: dependencies: '@babel/core': 7.12.3 '@babel/helper-module-imports': 7.12.1 - '@rollup/pluginutils': 3.1.0_rollup@2.33.1 + '@rollup/pluginutils': 3.1.0(rollup@2.33.1) rollup: 2.33.1 dev: true - /@rollup/plugin-commonjs/14.0.0_rollup@2.15.0: + /@rollup/plugin-commonjs@14.0.0(rollup@2.15.0): 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.15.0 + '@rollup/pluginutils': 3.1.0(rollup@2.15.0) commondir: 1.0.1 estree-walker: 1.0.1 glob: 7.1.6 @@ -4382,13 +4574,13 @@ packages: rollup: 2.15.0 dev: true - /@rollup/plugin-commonjs/14.0.0_rollup@2.18.2: + /@rollup/plugin-commonjs@14.0.0(rollup@2.18.2): 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.18.2 + '@rollup/pluginutils': 3.1.0(rollup@2.18.2) commondir: 1.0.1 estree-walker: 1.0.1 glob: 7.1.6 @@ -4398,13 +4590,13 @@ packages: rollup: 2.18.2 dev: true - /@rollup/plugin-commonjs/14.0.0_rollup@2.33.1: + /@rollup/plugin-commonjs@14.0.0(rollup@2.33.1): 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.33.1 + '@rollup/pluginutils': 3.1.0(rollup@2.33.1) commondir: 1.0.1 estree-walker: 1.0.1 glob: 7.1.6 @@ -4414,13 +4606,13 @@ packages: rollup: 2.33.1 dev: true - /@rollup/plugin-node-resolve/8.0.1_rollup@2.15.0: + /@rollup/plugin-node-resolve@8.0.1(rollup@2.15.0): resolution: {integrity: sha512-KIeAmueDDaYMqMBnUngLVVZhURwxA12nq/YB6nGm5/JpVyOMwI1fCVU3oL/dAnnLBG7oiPXntO5LHOiMrfNXCA==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.15.0 + '@rollup/pluginutils': 3.1.0(rollup@2.15.0) '@types/resolve': 0.0.8 builtin-modules: 3.1.0 deep-freeze: 0.0.1 @@ -4430,13 +4622,13 @@ packages: rollup: 2.15.0 dev: true - /@rollup/plugin-node-resolve/8.1.0_rollup@2.18.2: + /@rollup/plugin-node-resolve@8.1.0(rollup@2.18.2): resolution: {integrity: sha512-ovq7ZM3JJYUUmEjjO+H8tnUdmQmdQudJB7xruX8LFZ1W2q8jXdPUS6SsIYip8ByOApu4RR7729Am9WhCeCMiHA==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.18.2 + '@rollup/pluginutils': 3.1.0(rollup@2.18.2) '@types/resolve': 0.0.8 builtin-modules: 3.1.0 deep-freeze: 0.0.1 @@ -4446,13 +4638,13 @@ packages: rollup: 2.18.2 dev: true - /@rollup/plugin-node-resolve/8.4.0_rollup@2.23.1: + /@rollup/plugin-node-resolve@8.4.0(rollup@2.23.1): 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.23.1 + '@rollup/pluginutils': 3.1.0(rollup@2.23.1) '@types/resolve': 1.17.1 builtin-modules: 3.1.0 deep-freeze: 0.0.1 @@ -4462,13 +4654,13 @@ packages: rollup: 2.23.1 dev: true - /@rollup/plugin-node-resolve/8.4.0_rollup@2.33.1: + /@rollup/plugin-node-resolve@8.4.0(rollup@2.33.1): 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.33.1 + '@rollup/pluginutils': 3.1.0(rollup@2.33.1) '@types/resolve': 1.17.1 builtin-modules: 3.1.0 deep-freeze: 0.0.1 @@ -4478,7 +4670,7 @@ packages: rollup: 2.33.1 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.15.0: + /@rollup/pluginutils@3.1.0(rollup@2.15.0): resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -4490,7 +4682,7 @@ packages: rollup: 2.15.0 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.18.2: + /@rollup/pluginutils@3.1.0(rollup@2.18.2): resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -4502,7 +4694,7 @@ packages: rollup: 2.18.2 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.23.1: + /@rollup/pluginutils@3.1.0(rollup@2.23.1): resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -4514,7 +4706,7 @@ packages: rollup: 2.23.1 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.33.1: + /@rollup/pluginutils@3.1.0(rollup@2.33.1): resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -4526,7 +4718,7 @@ packages: rollup: 2.33.1 dev: true - /@semantic-release/changelog/5.0.1_semantic-release@17.4.7: + /@semantic-release/changelog@5.0.1(semantic-release@17.4.7): resolution: {integrity: sha512-unvqHo5jk4dvAf2nZ3aw4imrlwQ2I50eVVvq9D47Qc3R+keNqepx1vDYwkjF8guFXnOYaYcR28yrZWno1hFbiw==} engines: {node: '>=10.18'} peerDependencies: @@ -4539,7 +4731,7 @@ packages: semantic-release: 17.4.7 dev: true - /@semantic-release/commit-analyzer/8.0.1_semantic-release@17.4.7: + /@semantic-release/commit-analyzer@8.0.1(semantic-release@17.4.7): resolution: {integrity: sha512-5bJma/oB7B4MtwUkZC2Bf7O1MHfi4gWe4mA+MIQ3lsEV0b422Bvl1z5HRpplDnMLHH3EXMoRdEng6Ds5wUqA3A==} engines: {node: '>=10.18'} peerDependencies: @@ -4548,7 +4740,7 @@ packages: conventional-changelog-angular: 5.0.11 conventional-commits-filter: 2.0.6 conventional-commits-parser: 3.1.0 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) import-from: 3.0.0 lodash: 4.17.21 micromatch: 4.0.2 @@ -4557,11 +4749,11 @@ packages: - supports-color dev: true - /@semantic-release/error/2.2.0: + /@semantic-release/error@2.2.0: resolution: {integrity: sha512-9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg==} dev: true - /@semantic-release/git/9.0.0_semantic-release@17.4.7: + /@semantic-release/git@9.0.0(semantic-release@17.4.7): resolution: {integrity: sha512-AZ4Zha5NAPAciIJH3ipzw/WU9qLAn8ENaoVAhD6srRPxTpTzuV3NhNh14rcAo8Paj9dO+5u4rTKcpetOBluYVw==} engines: {node: '>=10.18'} peerDependencies: @@ -4580,7 +4772,7 @@ packages: - supports-color dev: true - /@semantic-release/github/7.0.7_semantic-release@17.4.7: + /@semantic-release/github@7.0.7(semantic-release@17.4.7): resolution: {integrity: sha512-Sai2UucYQ+5rJzKVEVJ4eiZNDdoo0/CzfpValBdeU5h97uJE7t4CoBTmUWkiXlPOx46CSw1+JhI+PHC1PUxVZw==} engines: {node: '>=10.18'} peerDependencies: @@ -4607,7 +4799,7 @@ packages: - supports-color dev: true - /@semantic-release/github/7.1.1_semantic-release@17.4.7: + /@semantic-release/github@7.1.1(semantic-release@17.4.7): resolution: {integrity: sha512-w8CLCvGVKNe2FPOYQ68OFxFVNNha7YRzptnwTZYdjXYtgTDKw0XVfnMSd9NlJeQPYGfQmIhIVPNBU/cA6zUY0A==} engines: {node: '>=10.18'} peerDependencies: @@ -4617,7 +4809,7 @@ packages: '@semantic-release/error': 2.2.0 aggregate-error: 3.1.0 bottleneck: 2.19.5 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) dir-glob: 3.0.1 fs-extra: 9.0.1 globby: 11.0.1 @@ -4634,7 +4826,7 @@ packages: - supports-color dev: true - /@semantic-release/npm/7.0.5_semantic-release@17.4.7: + /@semantic-release/npm@7.0.5(semantic-release@17.4.7): resolution: {integrity: sha512-D+oEmsx9aHE1q806NFQwSC9KdBO8ri/VO99eEz0wWbX2jyLqVyWr7t0IjKC8aSnkkQswg/4KN/ZjfF6iz1XOpw==} engines: {node: '>=10.18'} peerDependencies: @@ -4656,7 +4848,7 @@ packages: tempy: 0.5.0 dev: true - /@semantic-release/npm/7.0.6_semantic-release@17.4.7: + /@semantic-release/npm@7.0.6(semantic-release@17.4.7): resolution: {integrity: sha512-F4judxdeLe8f7+vDva1TkqNc5Tb2tcltZYW0tLtvP2Xt7CD/gGiz7UxAWEOPsXBvIqAP+uTidvGLPl9U3/uRoQ==} engines: {node: '>=10.19'} peerDependencies: @@ -4678,7 +4870,7 @@ packages: tempy: 0.5.0 dev: true - /@semantic-release/release-notes-generator/9.0.1_semantic-release@17.4.7: + /@semantic-release/release-notes-generator@9.0.1(semantic-release@17.4.7): resolution: {integrity: sha512-bOoTiH6SiiR0x2uywSNR7uZcRDl22IpZhj+Q5Bn0v+98MFtOMhCxFhbrKQjhbYoZw7vps1mvMRmFkp/g6R9cvQ==} engines: {node: '>=10.18'} peerDependencies: @@ -4688,7 +4880,7 @@ packages: conventional-changelog-writer: 4.0.17 conventional-commits-filter: 2.0.6 conventional-commits-parser: 3.1.0 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) get-stream: 5.2.0 import-from: 3.0.0 into-stream: 5.1.1 @@ -4699,127 +4891,127 @@ packages: - supports-color dev: true - /@tootallnate/once/1.1.2: + /@tootallnate/once@1.1.2: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} engines: {node: '>= 6'} dev: true - /@types/bluebird/3.5.32: + /@types/bluebird@3.5.32: resolution: {integrity: sha512-dIOxFfI0C+jz89g6lQ+TqhGgPQ0MxSnh/E4xuC0blhFtyW269+mPG5QeLgbdwst/LvdP8o1y0o/Gz5EHXLec/g==} dev: true - /@types/chai-spies/1.0.1: + /@types/chai-spies@1.0.1: resolution: {integrity: sha512-vvlTzisMpzmPZaKDd0pFybCJB5bzx398JEdPsVD9Rwq4a7dcGSUDlNG2PAVhsanRBPl4hezqnlaFtL1/YwBGgw==} dependencies: '@types/chai': 4.2.12 dev: true - /@types/chai-spies/1.0.2: + /@types/chai-spies@1.0.2: resolution: {integrity: sha512-Z04E43GW/dnYdQyj/N868wT5HhMDw2DbfxfPV7DNOX70PqODv9BKXGriFWY508vk1rPAtYcgENaRh/YCikuFtQ==} dependencies: '@types/chai': 4.2.14 dev: true - /@types/chai/4.2.11: + /@types/chai@4.2.11: resolution: {integrity: sha512-t7uW6eFafjO+qJ3BIV2gGUyZs27egcNRkUdalkud+Qa3+kg//f129iuOFivHDXQ+vnU3fDXuwgv0cqMCbcE8sw==} dev: true - /@types/chai/4.2.12: + /@types/chai@4.2.12: resolution: {integrity: sha512-aN5IAC8QNtSUdQzxu7lGBgYAOuU1tmRU4c9dIq5OKGf/SBVjXo+ffM2wEjudAWbgpOhy60nLoAGH1xm8fpCKFQ==} dev: true - /@types/chai/4.2.14: + /@types/chai@4.2.14: resolution: {integrity: sha512-G+ITQPXkwTrslfG5L/BksmbLUA0M1iybEsmCWPqzSxsRRhJZimBKJkoMi8fr/CPygPTj4zO5pJH7I2/cm9M7SQ==} dev: true - /@types/color-name/1.1.1: + /@types/color-name@1.1.1: resolution: {integrity: sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==} dev: true - /@types/eslint-visitor-keys/1.0.0: + /@types/eslint-visitor-keys@1.0.0: resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==} dev: true - /@types/estree/0.0.39: + /@types/estree@0.0.39: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} dev: true - /@types/estree/0.0.45: + /@types/estree@0.0.45: resolution: {integrity: sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g==} dev: true - /@types/glob/7.1.3: + /@types/glob@7.1.3: resolution: {integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==} dependencies: '@types/minimatch': 3.0.3 '@types/node': 14.6.0 dev: true - /@types/json-schema/7.0.5: + /@types/json-schema@7.0.5: resolution: {integrity: sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ==} dev: true - /@types/json-schema/7.0.6: + /@types/json-schema@7.0.6: resolution: {integrity: sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==} dev: true - /@types/json5/0.0.29: + /@types/json5@0.0.29: resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=} dev: true - /@types/minimatch/3.0.3: + /@types/minimatch@3.0.3: resolution: {integrity: sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==} dev: true - /@types/minimist/1.2.0: + /@types/minimist@1.2.0: resolution: {integrity: sha512-BsF2gEVEIOcbQCSwXR6V14fGD6QLLT0yQBK6RpblkxVYP9x8ANNThpxMUxV7h4KKjqMDR8qELlcnqrEoyvsohw==} dev: true - /@types/mocha/7.0.2: + /@types/mocha@7.0.2: resolution: {integrity: sha512-ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w==} dev: true - /@types/node/14.0.14: + /@types/node@14.0.14: resolution: {integrity: sha512-syUgf67ZQpaJj01/tRTknkMNoBBLWJOBODF0Zm4NrXmiSuxjymFrxnTu1QVYRubhVkRcZLYZG8STTwJRdVm/WQ==} dev: true - /@types/node/14.14.6: + /@types/node@14.14.6: resolution: {integrity: sha512-6QlRuqsQ/Ox/aJEQWBEJG7A9+u7oSYl3mem/K8IzxXG/kAGbV1YPD9Bg9Zw3vyxC/YP+zONKwy8hGkSt1jxFMw==} dev: true - /@types/node/14.6.0: + /@types/node@14.6.0: resolution: {integrity: sha512-mikldZQitV94akrc4sCcSjtJfsTKt4p+e/s0AGscVA6XArQ9kFclP+ZiYUMnq987rc6QlYxXv/EivqlfSLxpKA==} dev: true - /@types/normalize-package-data/2.4.0: + /@types/normalize-package-data@2.4.0: resolution: {integrity: sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==} dev: true - /@types/parse-json/4.0.0: + /@types/parse-json@4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: true - /@types/resolve/0.0.8: + /@types/resolve@0.0.8: resolution: {integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==} dependencies: '@types/node': 14.0.14 dev: true - /@types/resolve/1.17.1: + /@types/resolve@1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: '@types/node': 14.14.6 dev: true - /@types/retry/0.12.0: + /@types/retry@0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} dev: true - /@types/validator/13.1.0: + /@types/validator@13.1.0: resolution: {integrity: sha512-gHUHI6pJaANIO2r6WcbT7+WMgbL9GZooR4tWpuBOETpDIqFNxwaJluE+6rj6VGYe8k6OkfhbHz2Fkm8kl06Igw==} dev: true - /@typescript-eslint/eslint-plugin/3.10.1_knjh7s5onmjkqs3zs53oemuiqa: + /@typescript-eslint/eslint-plugin@3.10.1(@typescript-eslint/parser@3.6.0)(eslint@7.12.1)(typescript@3.9.7): resolution: {integrity: sha512-PQg0emRtzZFWq6PxBcdxRH3QIQiyFO3WCVpRL3fgj5oQS3CDs3AeAKfv4DxNhzn8ITdNJGJ4D3Qw8eAJf3lXeQ==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -4830,19 +5022,20 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 3.10.1_knjh7s5onmjkqs3zs53oemuiqa - debug: 4.2.0 + '@typescript-eslint/experimental-utils': 3.10.1(eslint@7.12.1)(typescript@3.9.7) + '@typescript-eslint/parser': 3.6.0(eslint@7.12.1)(typescript@3.9.7) + debug: 4.2.0(supports-color@7.2.0) eslint: 7.12.1 functional-red-black-tree: 1.0.1 regexpp: 3.1.0 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.7 + tsutils: 3.17.1(typescript@3.9.7) typescript: 3.9.7 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/3.6.0_gwonw44tk7lec3sw7f532sp4i4: + /@typescript-eslint/eslint-plugin@3.6.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0)(typescript@3.9.5): resolution: {integrity: sha512-ubHlHVt1lsPQB/CZdEov9XuOFhNG9YRC//kuiS1cMQI6Bs1SsqKrEmZnpgRwthGR09/kEDtr9MywlqXyyYd8GA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -4853,19 +5046,20 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 3.6.0_gwonw44tk7lec3sw7f532sp4i4 + '@typescript-eslint/experimental-utils': 3.6.0(eslint@7.4.0)(typescript@3.9.5) + '@typescript-eslint/parser': 3.6.0(eslint@7.4.0)(typescript@3.9.5) debug: 4.1.1 eslint: 7.4.0 functional-red-black-tree: 1.0.1 regexpp: 3.1.0 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.5 + tsutils: 3.17.1(typescript@3.9.5) typescript: 3.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/3.6.0_pgknjxwjsuad5iynciuti3a6xi: + /@typescript-eslint/eslint-plugin@3.6.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0)(typescript@3.9.6): resolution: {integrity: sha512-ubHlHVt1lsPQB/CZdEov9XuOFhNG9YRC//kuiS1cMQI6Bs1SsqKrEmZnpgRwthGR09/kEDtr9MywlqXyyYd8GA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -4876,19 +5070,20 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 3.6.0_pgknjxwjsuad5iynciuti3a6xi + '@typescript-eslint/experimental-utils': 3.6.0(eslint@7.4.0)(typescript@3.9.6) + '@typescript-eslint/parser': 3.6.0(eslint@7.4.0)(typescript@3.9.6) debug: 4.1.1 eslint: 7.4.0 functional-red-black-tree: 1.0.1 regexpp: 3.1.0 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.6 + tsutils: 3.17.1(typescript@3.9.6) typescript: 3.9.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/3.9.0_upjsw7ikvvtapwwswbm42lbf2e: + /@typescript-eslint/eslint-plugin@3.9.0(@typescript-eslint/parser@3.6.0)(eslint@7.6.0)(typescript@3.9.7): resolution: {integrity: sha512-UD6b4p0/hSe1xdTvRCENSx7iQ+KR6ourlZFfYuPC7FlXEzdHuLPrEmuxZ23b2zW96KJX9Z3w05GE/wNOiEzrVg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -4899,19 +5094,20 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 3.9.0_upjsw7ikvvtapwwswbm42lbf2e + '@typescript-eslint/experimental-utils': 3.9.0(eslint@7.6.0)(typescript@3.9.7) + '@typescript-eslint/parser': 3.6.0(eslint@7.6.0)(typescript@3.9.7) debug: 4.1.1 eslint: 7.6.0 functional-red-black-tree: 1.0.1 regexpp: 3.1.0 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.7 + tsutils: 3.17.1(typescript@3.9.7) typescript: 3.9.7 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/experimental-utils/3.10.1_knjh7s5onmjkqs3zs53oemuiqa: + /@typescript-eslint/experimental-utils@3.10.1(eslint@7.12.1)(typescript@3.9.7): resolution: {integrity: sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -4919,7 +5115,7 @@ packages: dependencies: '@types/json-schema': 7.0.6 '@typescript-eslint/types': 3.10.1 - '@typescript-eslint/typescript-estree': 3.10.1_typescript@3.9.7 + '@typescript-eslint/typescript-estree': 3.10.1(typescript@3.9.7) eslint: 7.12.1 eslint-scope: 5.1.1 eslint-utils: 2.1.0 @@ -4928,7 +5124,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/3.6.0_gwonw44tk7lec3sw7f532sp4i4: + /@typescript-eslint/experimental-utils@3.6.0(eslint@7.12.1)(typescript@3.9.7): resolution: {integrity: sha512-4Vdf2hvYMUnTdkCNZu+yYlFtL2v+N2R7JOynIOkFbPjf9o9wQvRwRkzUdWlFd2YiiUwJLbuuLnl5civNg5ykOQ==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -4936,8 +5132,8 @@ packages: dependencies: '@types/json-schema': 7.0.5 '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.9.5 - eslint: 7.4.0 + '@typescript-eslint/typescript-estree': 3.6.0(typescript@3.9.7) + eslint: 7.12.1 eslint-scope: 5.1.0 eslint-utils: 2.1.0 transitivePeerDependencies: @@ -4945,7 +5141,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/3.6.0_knjh7s5onmjkqs3zs53oemuiqa: + /@typescript-eslint/experimental-utils@3.6.0(eslint@7.4.0)(typescript@3.9.5): resolution: {integrity: sha512-4Vdf2hvYMUnTdkCNZu+yYlFtL2v+N2R7JOynIOkFbPjf9o9wQvRwRkzUdWlFd2YiiUwJLbuuLnl5civNg5ykOQ==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -4953,8 +5149,8 @@ packages: dependencies: '@types/json-schema': 7.0.5 '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.9.7 - eslint: 7.12.1 + '@typescript-eslint/typescript-estree': 3.6.0(typescript@3.9.5) + eslint: 7.4.0 eslint-scope: 5.1.0 eslint-utils: 2.1.0 transitivePeerDependencies: @@ -4962,7 +5158,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/3.6.0_pgknjxwjsuad5iynciuti3a6xi: + /@typescript-eslint/experimental-utils@3.6.0(eslint@7.4.0)(typescript@3.9.6): resolution: {integrity: sha512-4Vdf2hvYMUnTdkCNZu+yYlFtL2v+N2R7JOynIOkFbPjf9o9wQvRwRkzUdWlFd2YiiUwJLbuuLnl5civNg5ykOQ==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -4970,7 +5166,7 @@ packages: dependencies: '@types/json-schema': 7.0.5 '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.9.6 + '@typescript-eslint/typescript-estree': 3.6.0(typescript@3.9.6) eslint: 7.4.0 eslint-scope: 5.1.0 eslint-utils: 2.1.0 @@ -4979,7 +5175,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/3.6.0_upjsw7ikvvtapwwswbm42lbf2e: + /@typescript-eslint/experimental-utils@3.6.0(eslint@7.6.0)(typescript@3.9.7): resolution: {integrity: sha512-4Vdf2hvYMUnTdkCNZu+yYlFtL2v+N2R7JOynIOkFbPjf9o9wQvRwRkzUdWlFd2YiiUwJLbuuLnl5civNg5ykOQ==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -4987,7 +5183,7 @@ packages: dependencies: '@types/json-schema': 7.0.5 '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.9.7 + '@typescript-eslint/typescript-estree': 3.6.0(typescript@3.9.7) eslint: 7.6.0 eslint-scope: 5.1.0 eslint-utils: 2.1.0 @@ -4996,7 +5192,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/3.9.0_upjsw7ikvvtapwwswbm42lbf2e: + /@typescript-eslint/experimental-utils@3.9.0(eslint@7.6.0)(typescript@3.9.7): resolution: {integrity: sha512-/vSHUDYizSOhrOJdjYxPNGfb4a3ibO8zd4nUKo/QBFOmxosT3cVUV7KIg8Dwi6TXlr667G7YPqFK9+VSZOorNA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5004,7 +5200,7 @@ packages: dependencies: '@types/json-schema': 7.0.5 '@typescript-eslint/types': 3.9.0 - '@typescript-eslint/typescript-estree': 3.9.0_typescript@3.9.7 + '@typescript-eslint/typescript-estree': 3.9.0(typescript@3.9.7) eslint: 7.6.0 eslint-scope: 5.1.0 eslint-utils: 2.1.0 @@ -5013,7 +5209,7 @@ packages: - typescript dev: true - /@typescript-eslint/parser/3.6.0_gwonw44tk7lec3sw7f532sp4i4: + /@typescript-eslint/parser@3.6.0(eslint@7.12.1)(typescript@3.9.7): resolution: {integrity: sha512-taghDxuLhbDAD1U5Fk8vF+MnR0yiFE9Z3v2/bYScFb0N1I9SK8eKHkdJl1DAD48OGFDMFTeOTX0z7g0W6SYUXw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5024,17 +5220,17 @@ packages: optional: true dependencies: '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 3.6.0_gwonw44tk7lec3sw7f532sp4i4 + '@typescript-eslint/experimental-utils': 3.6.0(eslint@7.12.1)(typescript@3.9.7) '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.9.5 - eslint: 7.4.0 + '@typescript-eslint/typescript-estree': 3.6.0(typescript@3.9.7) + eslint: 7.12.1 eslint-visitor-keys: 1.3.0 - typescript: 3.9.5 + typescript: 3.9.7 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/3.6.0_knjh7s5onmjkqs3zs53oemuiqa: + /@typescript-eslint/parser@3.6.0(eslint@7.4.0)(typescript@3.9.5): resolution: {integrity: sha512-taghDxuLhbDAD1U5Fk8vF+MnR0yiFE9Z3v2/bYScFb0N1I9SK8eKHkdJl1DAD48OGFDMFTeOTX0z7g0W6SYUXw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5045,17 +5241,17 @@ packages: optional: true dependencies: '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 3.6.0_knjh7s5onmjkqs3zs53oemuiqa + '@typescript-eslint/experimental-utils': 3.6.0(eslint@7.4.0)(typescript@3.9.5) '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.9.7 - eslint: 7.12.1 + '@typescript-eslint/typescript-estree': 3.6.0(typescript@3.9.5) + eslint: 7.4.0 eslint-visitor-keys: 1.3.0 - typescript: 3.9.7 + typescript: 3.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/3.6.0_pgknjxwjsuad5iynciuti3a6xi: + /@typescript-eslint/parser@3.6.0(eslint@7.4.0)(typescript@3.9.6): resolution: {integrity: sha512-taghDxuLhbDAD1U5Fk8vF+MnR0yiFE9Z3v2/bYScFb0N1I9SK8eKHkdJl1DAD48OGFDMFTeOTX0z7g0W6SYUXw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5066,9 +5262,9 @@ packages: optional: true dependencies: '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 3.6.0_pgknjxwjsuad5iynciuti3a6xi + '@typescript-eslint/experimental-utils': 3.6.0(eslint@7.4.0)(typescript@3.9.6) '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.9.6 + '@typescript-eslint/typescript-estree': 3.6.0(typescript@3.9.6) eslint: 7.4.0 eslint-visitor-keys: 1.3.0 typescript: 3.9.6 @@ -5076,7 +5272,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/3.6.0_upjsw7ikvvtapwwswbm42lbf2e: + /@typescript-eslint/parser@3.6.0(eslint@7.6.0)(typescript@3.9.7): resolution: {integrity: sha512-taghDxuLhbDAD1U5Fk8vF+MnR0yiFE9Z3v2/bYScFb0N1I9SK8eKHkdJl1DAD48OGFDMFTeOTX0z7g0W6SYUXw==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5087,9 +5283,9 @@ packages: optional: true dependencies: '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 3.6.0_upjsw7ikvvtapwwswbm42lbf2e + '@typescript-eslint/experimental-utils': 3.6.0(eslint@7.6.0)(typescript@3.9.7) '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.9.7 + '@typescript-eslint/typescript-estree': 3.6.0(typescript@3.9.7) eslint: 7.6.0 eslint-visitor-keys: 1.3.0 typescript: 3.9.7 @@ -5097,22 +5293,22 @@ packages: - supports-color dev: true - /@typescript-eslint/types/3.10.1: + /@typescript-eslint/types@3.10.1: resolution: {integrity: sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: true - /@typescript-eslint/types/3.6.0: + /@typescript-eslint/types@3.6.0: resolution: {integrity: sha512-JwVj74ohUSt0ZPG+LZ7hb95fW8DFOqBuR6gE7qzq55KDI3BepqsCtHfBIoa0+Xi1AI7fq5nCu2VQL8z4eYftqg==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: true - /@typescript-eslint/types/3.9.0: + /@typescript-eslint/types@3.9.0: resolution: {integrity: sha512-rb6LDr+dk9RVVXO/NJE8dT1pGlso3voNdEIN8ugm4CWM5w5GimbThCMiMl4da1t5u3YwPWEwOnKAULCZgBtBHg==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: true - /@typescript-eslint/typescript-estree/3.10.1_typescript@3.9.7: + /@typescript-eslint/typescript-estree@3.10.1(typescript@3.9.7): resolution: {integrity: sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5123,18 +5319,18 @@ packages: dependencies: '@typescript-eslint/types': 3.10.1 '@typescript-eslint/visitor-keys': 3.10.1 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) glob: 7.1.6 is-glob: 4.0.1 lodash: 4.17.20 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.7 + tsutils: 3.17.1(typescript@3.9.7) typescript: 3.9.7 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/3.6.0_typescript@3.9.5: + /@typescript-eslint/typescript-estree@3.6.0(typescript@3.9.5): resolution: {integrity: sha512-G57NDSABHjvob7zVV09ehWyD1K6/YUKjz5+AufObFyjNO4DVmKejj47MHjVHHlZZKgmpJD2yyH9lfCXHrPITFg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5150,13 +5346,13 @@ packages: is-glob: 4.0.1 lodash: 4.17.19 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.5 + tsutils: 3.17.1(typescript@3.9.5) typescript: 3.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/3.6.0_typescript@3.9.6: + /@typescript-eslint/typescript-estree@3.6.0(typescript@3.9.6): resolution: {integrity: sha512-G57NDSABHjvob7zVV09ehWyD1K6/YUKjz5+AufObFyjNO4DVmKejj47MHjVHHlZZKgmpJD2yyH9lfCXHrPITFg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5172,13 +5368,13 @@ packages: is-glob: 4.0.1 lodash: 4.17.19 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.6 + tsutils: 3.17.1(typescript@3.9.6) typescript: 3.9.6 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/3.6.0_typescript@3.9.7: + /@typescript-eslint/typescript-estree@3.6.0(typescript@3.9.7): resolution: {integrity: sha512-G57NDSABHjvob7zVV09ehWyD1K6/YUKjz5+AufObFyjNO4DVmKejj47MHjVHHlZZKgmpJD2yyH9lfCXHrPITFg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5194,13 +5390,13 @@ packages: is-glob: 4.0.1 lodash: 4.17.19 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.7 + tsutils: 3.17.1(typescript@3.9.7) typescript: 3.9.7 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/3.9.0_typescript@3.9.7: + /@typescript-eslint/typescript-estree@3.9.0(typescript@3.9.7): resolution: {integrity: sha512-N+158NKgN4rOmWVfvKOMoMFV5n8XxAliaKkArm/sOypzQ0bUL8MSnOEBW3VFIeffb/K5ce/cAV0yYhR7U4ALAA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -5216,38 +5412,38 @@ packages: is-glob: 4.0.1 lodash: 4.17.19 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.7 + tsutils: 3.17.1(typescript@3.9.7) typescript: 3.9.7 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/visitor-keys/3.10.1: + /@typescript-eslint/visitor-keys@3.10.1: resolution: {integrity: sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: eslint-visitor-keys: 1.3.0 dev: true - /@typescript-eslint/visitor-keys/3.6.0: + /@typescript-eslint/visitor-keys@3.6.0: resolution: {integrity: sha512-p1izllL2Ubwunite0ITjubuMQRBGgjdVYwyG7lXPX8GbrA6qF0uwSRz9MnXZaHMxID4948gX0Ez8v9tUDi/KfQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: eslint-visitor-keys: 1.3.0 dev: true - /@typescript-eslint/visitor-keys/3.9.0: + /@typescript-eslint/visitor-keys@3.9.0: resolution: {integrity: sha512-O1qeoGqDbu0EZUC/MZ6F1WHTIzcBVhGqDj3LhTnj65WUA548RXVxUHbYhAW9bZWfb2rnX9QsbbP5nmeJ5Z4+ng==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: eslint-visitor-keys: 1.3.0 dev: true - /@ungap/promise-all-settled/1.1.2: + /@ungap/promise-all-settled@1.1.2: resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==} dev: true - /JSONStream/1.3.5: + /JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true dependencies: @@ -5255,11 +5451,11 @@ packages: through: 2.3.8 dev: true - /abbrev/1.1.1: + /abbrev@1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} dev: true - /acorn-jsx/5.2.0_acorn@7.3.1: + /acorn-jsx@5.2.0(acorn@7.3.1): resolution: {integrity: sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 @@ -5267,7 +5463,7 @@ packages: acorn: 7.3.1 dev: true - /acorn-jsx/5.2.0_acorn@7.4.0: + /acorn-jsx@5.2.0(acorn@7.4.0): resolution: {integrity: sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 @@ -5275,7 +5471,7 @@ packages: acorn: 7.4.0 dev: true - /acorn-jsx/5.3.1_acorn@7.4.1: + /acorn-jsx@5.3.1(acorn@7.4.1): resolution: {integrity: sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -5283,57 +5479,57 @@ packages: acorn: 7.4.1 dev: true - /acorn-loose/7.1.0: + /acorn-loose@7.1.0: resolution: {integrity: sha512-QBHr9xhpJfVvuJNqKaE0V2DcXJ9UOthhqgKKsr5O8fV553jVW8VoyndfsuBpTsRTAX0BnYt/PamrNj9SLkbSHA==} engines: {node: '>=0.4.0'} dependencies: acorn: 7.4.0 dev: true - /acorn-walk/7.2.0: + /acorn-walk@7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} engines: {node: '>=0.4.0'} dev: true - /acorn/7.3.1: + /acorn@7.3.1: resolution: {integrity: sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA==} engines: {node: '>=0.4.0'} hasBin: true dev: true - /acorn/7.4.0: + /acorn@7.4.0: resolution: {integrity: sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w==} engines: {node: '>=0.4.0'} hasBin: true dev: true - /acorn/7.4.1: + /acorn@7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} hasBin: true dev: true - /acorn/8.8.2: + /acorn@8.8.2: resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} engines: {node: '>=0.4.0'} hasBin: true dev: true - /agent-base/5.1.1: + /agent-base@5.1.1: resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} engines: {node: '>= 6.0.0'} dev: true - /agent-base/6.0.2: + /agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) transitivePeerDependencies: - supports-color dev: true - /aggregate-error/3.0.1: + /aggregate-error@3.0.1: resolution: {integrity: sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==} engines: {node: '>=8'} dependencies: @@ -5341,7 +5537,7 @@ packages: indent-string: 4.0.0 dev: true - /aggregate-error/3.1.0: + /aggregate-error@3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} dependencies: @@ -5349,7 +5545,7 @@ packages: indent-string: 4.0.0 dev: true - /ajv/6.12.3: + /ajv@6.12.3: resolution: {integrity: sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==} dependencies: fast-deep-equal: 3.1.3 @@ -5358,7 +5554,7 @@ packages: uri-js: 4.2.2 dev: true - /ajv/6.12.4: + /ajv@6.12.4: resolution: {integrity: sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==} dependencies: fast-deep-equal: 3.1.3 @@ -5368,7 +5564,7 @@ packages: dev: true optional: true - /ajv/6.12.6: + /ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 @@ -5377,51 +5573,51 @@ packages: uri-js: 4.4.0 dev: true - /ansi-colors/4.1.1: + /ansi-colors@4.1.1: resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} engines: {node: '>=6'} dev: true - /ansi-escapes/4.3.1: + /ansi-escapes@4.3.1: resolution: {integrity: sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==} engines: {node: '>=8'} dependencies: type-fest: 0.11.0 dev: true - /ansi-regex/2.1.1: + /ansi-regex@2.1.1: resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=} engines: {node: '>=0.10.0'} dev: true - /ansi-regex/3.0.0: + /ansi-regex@3.0.0: resolution: {integrity: sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=} engines: {node: '>=4'} dev: true - /ansi-regex/4.1.0: + /ansi-regex@4.1.0: resolution: {integrity: sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==} engines: {node: '>=6'} dev: true - /ansi-regex/5.0.0: + /ansi-regex@5.0.0: resolution: {integrity: sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==} engines: {node: '>=8'} dev: true - /ansi-styles/2.2.1: + /ansi-styles@2.2.1: resolution: {integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=} engines: {node: '>=0.10.0'} dev: true - /ansi-styles/3.2.1: + /ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} dependencies: color-convert: 1.9.3 dev: true - /ansi-styles/4.2.1: + /ansi-styles@4.2.1: resolution: {integrity: sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==} engines: {node: '>=8'} dependencies: @@ -5429,22 +5625,22 @@ packages: color-convert: 2.0.1 dev: true - /ansi-styles/4.3.0: + /ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} dependencies: color-convert: 2.0.1 dev: true - /ansicolors/0.3.2: + /ansicolors@0.3.2: resolution: {integrity: sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=} dev: true - /any-promise/1.3.0: + /any-promise@1.3.0: resolution: {integrity: sha1-q8av7tzqUugJzcA3au0845Y10X8=} dev: true - /anymatch/3.1.1: + /anymatch@3.1.1: resolution: {integrity: sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==} engines: {node: '>= 8'} dependencies: @@ -5452,82 +5648,95 @@ packages: picomatch: 2.2.2 dev: true - /app-root-path/3.0.0: + /app-root-path@3.0.0: resolution: {integrity: sha512-qMcx+Gy2UZynHjOHOIXPNvpf+9cjvk3cWrBBK7zg4gH9+clobJRb9NGzcT7mQTcV/6Gm/1WelUtqxVXnNlrwcw==} engines: {node: '>= 6.0.0'} dev: true - /append-transform/2.0.0: + /append-transform@2.0.0: resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} engines: {node: '>=8'} dependencies: default-require-extensions: 3.0.0 dev: true - /aproba/1.2.0: + /aproba@1.2.0: resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} dev: true - /archy/1.0.0: + /archy@1.0.0: resolution: {integrity: sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=} dev: true - /are-we-there-yet/1.1.5: + /are-we-there-yet@1.1.5: resolution: {integrity: sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==} dependencies: delegates: 1.0.0 readable-stream: 2.3.7 dev: true - /arg/4.1.3: + /arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} dev: true - /argparse/1.0.10: + /argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: sprintf-js: 1.0.3 dev: true - /argv-formatter/1.0.0: + /argv-formatter@1.0.0: resolution: {integrity: sha1-oMoMvCmltz6Dbuvhy/bF4OTrgvk=} dev: true - /argv/0.0.2: + /argv@0.0.2: resolution: {integrity: sha1-7L0W+JSbFXGDcRsb2jNPN4QBhas=} engines: {node: '>=0.6.10'} dev: true - /arr-diff/4.0.0: + /aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + dependencies: + dequal: 2.0.3 + dev: true + + /arr-diff@4.0.0: resolution: {integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=} engines: {node: '>=0.10.0'} dev: true - /arr-flatten/1.1.0: + /arr-flatten@1.1.0: resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} engines: {node: '>=0.10.0'} dev: true - /arr-union/3.1.0: + /arr-union@3.1.0: resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=} engines: {node: '>=0.10.0'} dev: true - /array-differ/3.0.0: + /array-buffer-byte-length@1.0.0: + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + dependencies: + call-bind: 1.0.5 + is-array-buffer: 3.0.2 + dev: true + + /array-differ@3.0.0: resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} engines: {node: '>=8'} dev: true - /array-each/1.0.1: + /array-each@1.0.1: resolution: {integrity: sha1-p5SvDAWrF1KEbudTofIRoFugxE8=} engines: {node: '>=0.10.0'} dev: true - /array-ify/1.0.0: + /array-ify@1.0.0: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true - /array-includes/3.1.1: + /array-includes@3.1.1: resolution: {integrity: sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==} engines: {node: '>= 0.4'} dependencies: @@ -5536,22 +5745,33 @@ packages: is-string: 1.0.5 dev: true - /array-slice/1.1.0: + /array-includes@3.1.7: + resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-string: 1.0.7 + dev: true + + /array-slice@1.1.0: resolution: {integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==} engines: {node: '>=0.10.0'} dev: true - /array-union/2.1.0: + /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} dev: true - /array-unique/0.3.2: + /array-unique@0.3.2: resolution: {integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=} engines: {node: '>=0.10.0'} dev: true - /array.prototype.flat/1.2.3: + /array.prototype.flat@1.2.3: resolution: {integrity: sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==} engines: {node: '>= 0.4'} dependencies: @@ -5559,7 +5779,27 @@ packages: es-abstract: 1.17.7 dev: true - /array.prototype.map/1.0.2: + /array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.map@1.0.2: resolution: {integrity: sha512-Az3OYxgsa1g7xDYp86l0nnN4bcmuEITGe1rbdEBVkrqkzMgDcbdQ2R7r41pNzti+4NMces3H8gMmuioZUilLgw==} engines: {node: '>= 0.4'} dependencies: @@ -5569,75 +5809,124 @@ packages: is-string: 1.0.5 dev: true - /arrify/1.0.1: + /array.prototype.tosorted@1.1.2: + resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 + dev: true + + /arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + dev: true + + /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} dev: true - /arrify/2.0.1: + /arrify@2.0.1: resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} engines: {node: '>=8'} dev: true - /asn1/0.2.4: + /asn1@0.2.4: resolution: {integrity: sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==} dependencies: safer-buffer: 2.1.2 dev: true optional: true - /assert-plus/1.0.0: + /assert-plus@1.0.0: resolution: {integrity: sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=} engines: {node: '>=0.8'} dev: true optional: true - /assertion-error/1.1.0: + /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: true - /assign-symbols/1.0.0: + /assign-symbols@1.0.0: resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=} engines: {node: '>=0.10.0'} dev: true - /astral-regex/1.0.0: + /ast-types-flow@0.0.8: + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + dev: true + + /astral-regex@1.0.0: resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} engines: {node: '>=4'} dev: true - /astral-regex/2.0.0: + /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} dev: true - /asynckit/0.4.0: + /asynciterator.prototype@1.0.0: + resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} + dependencies: + has-symbols: 1.0.3 + dev: true + + /asynckit@0.4.0: resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=} dev: true optional: true - /at-least-node/1.0.0: + /at-least-node@1.0.0: resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} engines: {node: '>= 4.0.0'} dev: true - /atob/2.1.2: + /atob@2.1.2: resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} engines: {node: '>= 4.5.0'} hasBin: true dev: true - /aws-sign2/0.7.0: + /available-typed-arrays@1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + dev: true + + /aws-sign2@0.7.0: resolution: {integrity: sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=} dev: true optional: true - /aws4/1.10.1: + /aws4@1.10.1: resolution: {integrity: sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==} dev: true optional: true - /babel-code-frame/6.26.0: + /axe-core@4.7.0: + resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} + engines: {node: '>=4'} + dev: true + + /axobject-query@3.2.1: + resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} + dependencies: + dequal: 2.0.3 + dev: true + + /babel-code-frame@6.26.0: resolution: {integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=} dependencies: chalk: 1.1.3 @@ -5645,7 +5934,7 @@ packages: js-tokens: 3.0.2 dev: true - /babel-core/6.26.3: + /babel-core@6.26.3: resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==} dependencies: babel-code-frame: 6.26.0 @@ -5671,7 +5960,7 @@ packages: - supports-color dev: true - /babel-generator/6.26.1: + /babel-generator@6.26.1: resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==} dependencies: babel-messages: 6.23.0 @@ -5684,7 +5973,7 @@ packages: trim-right: 1.0.1 dev: true - /babel-helpers/6.24.1: + /babel-helpers@6.24.1: resolution: {integrity: sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=} dependencies: babel-runtime: 6.26.0 @@ -5693,19 +5982,19 @@ packages: - supports-color dev: true - /babel-messages/6.23.0: + /babel-messages@6.23.0: resolution: {integrity: sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=} dependencies: babel-runtime: 6.26.0 dev: true - /babel-plugin-dynamic-import-node/2.3.3: + /babel-plugin-dynamic-import-node@2.3.3: resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} dependencies: object.assign: 4.1.2 dev: true - /babel-register/6.26.0: + /babel-register@6.26.0: resolution: {integrity: sha1-btAhFz4vy0htestFxgCahW9kcHE=} dependencies: babel-core: 6.26.3 @@ -5719,14 +6008,14 @@ packages: - supports-color dev: true - /babel-runtime/6.26.0: + /babel-runtime@6.26.0: resolution: {integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=} dependencies: core-js: 2.6.11 regenerator-runtime: 0.11.1 dev: true - /babel-template/6.26.0: + /babel-template@6.26.0: resolution: {integrity: sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=} dependencies: babel-runtime: 6.26.0 @@ -5738,7 +6027,7 @@ packages: - supports-color dev: true - /babel-traverse/6.26.0: + /babel-traverse@6.26.0: resolution: {integrity: sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=} dependencies: babel-code-frame: 6.26.0 @@ -5754,7 +6043,7 @@ packages: - supports-color dev: true - /babel-types/6.26.0: + /babel-types@6.26.0: resolution: {integrity: sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=} dependencies: babel-runtime: 6.26.0 @@ -5763,16 +6052,20 @@ packages: to-fast-properties: 1.0.3 dev: true - /babylon/6.18.0: + /babylon@6.18.0: resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} hasBin: true dev: true - /balanced-match/1.0.0: + /balanced-match@1.0.0: resolution: {integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=} dev: true - /base/0.11.2: + /base64-js@1.3.1: + resolution: {integrity: sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==} + dev: true + + /base@0.11.2: resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} engines: {node: '>=0.10.0'} dependencies: @@ -5785,27 +6078,23 @@ packages: pascalcase: 0.1.1 dev: true - /base64-js/1.3.1: - resolution: {integrity: sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==} - dev: true - - /bcrypt-pbkdf/1.0.2: + /bcrypt-pbkdf@1.0.2: resolution: {integrity: sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=} dependencies: tweetnacl: 0.14.5 dev: true optional: true - /before-after-hook/2.1.0: + /before-after-hook@2.1.0: resolution: {integrity: sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==} dev: true - /binary-extensions/2.1.0: + /binary-extensions@2.1.0: resolution: {integrity: sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==} engines: {node: '>=8'} dev: true - /block-stream/0.0.9: + /block-stream@0.0.9: resolution: {integrity: sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=} engines: {node: 0.4 || >=0.5.8} dependencies: @@ -5813,22 +6102,22 @@ packages: dev: true optional: true - /bluebird/3.7.2: + /bluebird@3.7.2: resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} dev: true - /bottleneck/2.19.5: + /bottleneck@2.19.5: resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==} dev: true - /brace-expansion/1.1.11: + /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.0 concat-map: 0.0.1 dev: true - /braces/2.3.2: + /braces@2.3.2: resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} engines: {node: '>=0.10.0'} dependencies: @@ -5846,18 +6135,18 @@ packages: - supports-color dev: true - /braces/3.0.2: + /braces@3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} dependencies: fill-range: 7.0.1 dev: true - /browser-stdout/1.3.1: + /browser-stdout@1.3.1: resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} dev: true - /browserslist/4.12.0: + /browserslist@4.12.0: resolution: {integrity: sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==} hasBin: true dependencies: @@ -5867,7 +6156,7 @@ packages: pkg-up: 2.0.0 dev: true - /browserslist/4.12.2: + /browserslist@4.12.2: resolution: {integrity: sha512-MfZaeYqR8StRZdstAK9hCKDd2StvePCYp5rHzQCPicUjfFliDgmuaBNPHYUTpAywBN8+Wc/d7NYVFkO0aqaBUw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -5878,7 +6167,7 @@ packages: node-releases: 1.1.58 dev: true - /browserslist/4.14.0: + /browserslist@4.14.0: resolution: {integrity: sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -5889,7 +6178,7 @@ packages: node-releases: 1.1.60 dev: true - /browserslist/4.14.6: + /browserslist@4.14.6: resolution: {integrity: sha512-zeFYcUo85ENhc/zxHbiIp0LGzzTrE2Pv2JhxvS7kpUb9Q9D38kUX6Bie7pGutJ/5iF5rOxE7CepAuWD56xJ33A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -5900,23 +6189,23 @@ packages: node-releases: 1.1.65 dev: true - /buffer-from/1.1.1: + /buffer-from@1.1.1: resolution: {integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==} dev: true - /buffer/5.6.0: + /buffer@5.6.0: resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==} dependencies: base64-js: 1.3.1 ieee754: 1.1.13 dev: true - /builtin-modules/3.1.0: + /builtin-modules@3.1.0: resolution: {integrity: sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==} engines: {node: '>=6'} dev: true - /cache-base/1.0.1: + /cache-base@1.0.1: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} engines: {node: '>=0.10.0'} dependencies: @@ -5931,7 +6220,7 @@ packages: unset-value: 1.0.0 dev: true - /caching-transform/4.0.0: + /caching-transform@4.0.0: resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} engines: {node: '>=8'} dependencies: @@ -5941,19 +6230,27 @@ packages: write-file-atomic: 3.0.3 dev: true - /call-bind/1.0.0: + /call-bind@1.0.0: resolution: {integrity: sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==} dependencies: function-bind: 1.1.1 get-intrinsic: 1.0.1 dev: true - /callsites/3.1.0: + /call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + dependencies: + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.2.0 + dev: true + + /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} dev: true - /camelcase-keys/6.2.2: + /camelcase-keys@6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} engines: {node: '>=8'} dependencies: @@ -5962,33 +6259,33 @@ packages: quick-lru: 4.0.1 dev: true - /camelcase/5.3.1: + /camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} dev: true - /camelcase/6.2.0: + /camelcase@6.2.0: resolution: {integrity: sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==} engines: {node: '>=10'} dev: true - /caniuse-lite/1.0.30001081: + /caniuse-lite@1.0.30001081: resolution: {integrity: sha512-iZdh3lu09jsUtLE6Bp8NAbJskco4Y3UDtkR3GTCJGsbMowBU5IWDFF79sV2ws7lSqTzWyKazxam2thasHymENQ==} dev: true - /caniuse-lite/1.0.30001093: + /caniuse-lite@1.0.30001093: resolution: {integrity: sha512-0+ODNoOjtWD5eS9aaIpf4K0gQqZfILNY4WSNuYzeT1sXni+lMrrVjc0odEobJt6wrODofDZUX8XYi/5y7+xl8g==} dev: true - /caniuse-lite/1.0.30001113: + /caniuse-lite@1.0.30001113: resolution: {integrity: sha512-qMvjHiKH21zzM/VDZr6oosO6Ri3U0V2tC015jRXjOecwQCJtsU5zklTNTk31jQbIOP8gha0h1ccM/g0ECP+4BA==} dev: true - /caniuse-lite/1.0.30001154: + /caniuse-lite@1.0.30001154: resolution: {integrity: sha512-y9DvdSti8NnYB9Be92ddMZQrcOe04kcQtcxtBx4NkB04+qZ+JUWotnXBJTmxlKudhxNTQ3RRknMwNU2YQl/Org==} dev: true - /cardinal/2.1.1: + /cardinal@2.1.1: resolution: {integrity: sha1-fMEFXYItISlU0HsIXeolHMe8VQU=} hasBin: true dependencies: @@ -5996,12 +6293,12 @@ packages: redeyed: 2.1.1 dev: true - /caseless/0.12.0: + /caseless@0.12.0: resolution: {integrity: sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=} dev: true optional: true - /chai-spies/1.0.0_chai@4.2.0: + /chai-spies@1.0.0(chai@4.2.0): resolution: {integrity: sha512-elF2ZUczBsFoP07qCfMO/zeggs8pqCf3fZGyK5+2X4AndS8jycZYID91ztD9oQ7d/0tnS963dPkd0frQEThDsg==} engines: {node: '>= 4.0.0'} peerDependencies: @@ -6010,7 +6307,7 @@ packages: chai: 4.2.0 dev: true - /chai/4.2.0: + /chai@4.2.0: resolution: {integrity: sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==} engines: {node: '>=4'} dependencies: @@ -6022,7 +6319,7 @@ packages: type-detect: 4.0.8 dev: true - /chalk/1.1.3: + /chalk@1.1.3: resolution: {integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=} engines: {node: '>=0.10.0'} dependencies: @@ -6033,7 +6330,7 @@ packages: supports-color: 2.0.0 dev: true - /chalk/2.4.2: + /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} dependencies: @@ -6042,7 +6339,7 @@ packages: supports-color: 5.5.0 dev: true - /chalk/3.0.0: + /chalk@3.0.0: resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} engines: {node: '>=8'} dependencies: @@ -6050,7 +6347,7 @@ packages: supports-color: 7.1.0 dev: true - /chalk/4.1.0: + /chalk@4.1.0: resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} engines: {node: '>=10'} dependencies: @@ -6058,11 +6355,11 @@ packages: supports-color: 7.2.0 dev: true - /check-error/1.0.2: + /check-error@1.0.2: resolution: {integrity: sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=} dev: true - /chokidar/3.3.1: + /chokidar@3.3.1: resolution: {integrity: sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg==} engines: {node: '>= 8.10.0'} dependencies: @@ -6077,7 +6374,7 @@ packages: fsevents: 2.1.3 dev: true - /chokidar/3.4.3: + /chokidar@3.4.3: resolution: {integrity: sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==} engines: {node: '>= 8.10.0'} dependencies: @@ -6092,15 +6389,15 @@ packages: fsevents: 2.1.3 dev: true - /chownr/1.1.4: + /chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} dev: true - /ci-info/2.0.0: + /ci-info@2.0.0: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} dev: true - /class-utils/0.3.6: + /class-utils@0.3.6: resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} engines: {node: '>=0.10.0'} dependencies: @@ -6110,19 +6407,19 @@ packages: static-extend: 0.1.2 dev: true - /clean-stack/2.2.0: + /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} engines: {node: '>=6'} dev: true - /cli-cursor/3.1.0: + /cli-cursor@3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} dependencies: restore-cursor: 3.1.0 dev: true - /cli-highlight/2.1.4: + /cli-highlight@2.1.4: resolution: {integrity: sha512-s7Zofobm20qriqDoU9sXptQx0t2R9PEgac92mENNm7xaEe1hn71IIMsXMK+6encA6WRCWWxIGQbipr3q998tlQ==} engines: {node: '>=8.0.0', npm: '>=5.0.0'} hasBin: true @@ -6135,7 +6432,7 @@ packages: yargs: 15.4.1 dev: true - /cli-table3/0.5.1: + /cli-table3@0.5.1: resolution: {integrity: sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==} engines: {node: '>=6'} dependencies: @@ -6145,7 +6442,7 @@ packages: colors: 1.4.0 dev: true - /cli-table3/0.6.3: + /cli-table3@0.6.3: resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} engines: {node: 10.* || >= 12.*} dependencies: @@ -6154,7 +6451,7 @@ packages: '@colors/colors': 1.5.0 dev: true - /cli-truncate/2.1.0: + /cli-truncate@2.1.0: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} engines: {node: '>=8'} dependencies: @@ -6162,7 +6459,7 @@ packages: string-width: 4.2.0 dev: true - /cliui/5.0.0: + /cliui@5.0.0: resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} dependencies: string-width: 3.1.0 @@ -6170,7 +6467,7 @@ packages: wrap-ansi: 5.1.0 dev: true - /cliui/6.0.0: + /cliui@6.0.0: resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: string-width: 4.2.0 @@ -6178,7 +6475,7 @@ packages: wrap-ansi: 6.2.0 dev: true - /cliui/7.0.4: + /cliui@7.0.4: resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} dependencies: string-width: 4.2.0 @@ -6186,21 +6483,21 @@ packages: wrap-ansi: 7.0.0 dev: true - /clone/2.1.2: + /clone@2.1.2: resolution: {integrity: sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=} engines: {node: '>=0.8'} dev: true - /code-block-writer/10.1.0: + /code-block-writer@10.1.0: resolution: {integrity: sha512-RG9hpXtWFeUWhuUav1YuP/vGcyncW+t90yJLk9fNZs1De2OuHTHKAKThVCokt29PYq5RoJ0QSZaIZ+rvPO23hA==} dev: true - /code-point-at/1.1.0: + /code-point-at@1.1.0: resolution: {integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=} engines: {node: '>=0.10.0'} dev: true - /codecov/3.7.0: + /codecov@3.7.0: resolution: {integrity: sha512-uIixKofG099NbUDyzRk1HdGtaG8O+PBUAg3wfmjwXw2+ek+PZp+puRvbTohqrVfuudaezivJHFgTtSC3M8MXww==} engines: {node: '>=4.0'} hasBin: true @@ -6214,7 +6511,7 @@ packages: - supports-color dev: true - /collection-visit/1.0.0: + /collection-visit@1.0.0: resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=} engines: {node: '>=0.10.0'} dependencies: @@ -6222,43 +6519,43 @@ packages: object-visit: 1.0.1 dev: true - /color-convert/1.9.3: + /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 dev: true - /color-convert/2.0.1: + /color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 dev: true - /color-name/1.1.3: + /color-name@1.1.3: resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} dev: true - /color-name/1.1.4: + /color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} dev: true - /colorette/1.1.0: + /colorette@1.1.0: resolution: {integrity: sha512-6S062WDQUXi6hOfkO/sBPVwE5ASXY4G2+b4atvhJfSsuUUhIaUKlkjLe9692Ipyt5/a+IPF5aVTu3V5gvXq5cg==} dev: true - /colorette/1.2.1: + /colorette@1.2.1: resolution: {integrity: sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==} dev: true - /colors/1.4.0: + /colors@1.4.0: resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} engines: {node: '>=0.1.90'} requiresBuild: true dev: true optional: true - /combined-stream/1.0.8: + /combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} dependencies: @@ -6266,57 +6563,57 @@ packages: dev: true optional: true - /commander/2.20.3: + /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} dev: true - /commander/4.1.1: + /commander@4.1.1: resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} engines: {node: '>= 6'} dev: true - /commander/5.1.0: + /commander@5.1.0: resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} engines: {node: '>= 6'} dev: true - /commondir/1.0.1: + /commondir@1.0.1: resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=} dev: true - /compare-func/2.0.0: + /compare-func@2.0.0: resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 dev: true - /compare-versions/3.6.0: + /compare-versions@3.6.0: resolution: {integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==} dev: true - /component-emitter/1.3.0: + /component-emitter@1.3.0: resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} dev: true - /concat-map/0.0.1: + /concat-map@0.0.1: resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} dev: true - /confusing-browser-globals/1.0.9: + /confusing-browser-globals@1.0.9: resolution: {integrity: sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw==} dev: true - /console-control-strings/1.1.0: + /console-control-strings@1.1.0: resolution: {integrity: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=} dev: true - /contains-path/0.1.0: + /contains-path@0.1.0: resolution: {integrity: sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=} engines: {node: '>=0.10.0'} dev: true - /conventional-changelog-angular/5.0.11: + /conventional-changelog-angular@5.0.11: resolution: {integrity: sha512-nSLypht/1yEflhuTogC03i7DX7sOrXGsRn14g131Potqi6cbGbGEE9PSDEHKldabB6N76HiSyw9Ph+kLmC04Qw==} engines: {node: '>=10'} dependencies: @@ -6324,7 +6621,7 @@ packages: q: 1.5.1 dev: true - /conventional-changelog-writer/4.0.17: + /conventional-changelog-writer@4.0.17: resolution: {integrity: sha512-IKQuK3bib/n032KWaSb8YlBFds+aLmzENtnKtxJy3+HqDq5kohu3g/UdNbIHeJWygfnEbZjnCKFxAW0y7ArZAw==} engines: {node: '>=10'} hasBin: true @@ -6341,7 +6638,7 @@ packages: through2: 3.0.2 dev: true - /conventional-commits-filter/2.0.6: + /conventional-commits-filter@2.0.6: resolution: {integrity: sha512-4g+sw8+KA50/Qwzfr0hL5k5NWxqtrOVw4DDk3/h6L85a9Gz0/Eqp3oP+CWCNfesBvZZZEFHF7OTEbRe+yYSyKw==} engines: {node: '>=10'} dependencies: @@ -6349,7 +6646,7 @@ packages: modify-values: 1.0.1 dev: true - /conventional-commits-parser/3.1.0: + /conventional-commits-parser@3.1.0: resolution: {integrity: sha512-RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA==} engines: {node: '>=10'} hasBin: true @@ -6363,35 +6660,35 @@ packages: trim-off-newlines: 1.0.1 dev: true - /convert-source-map/1.7.0: + /convert-source-map@1.7.0: resolution: {integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==} dependencies: safe-buffer: 5.1.2 dev: true - /copy-descriptor/0.1.1: + /copy-descriptor@0.1.1: resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=} engines: {node: '>=0.10.0'} dev: true - /core-js-compat/3.6.5: + /core-js-compat@3.6.5: resolution: {integrity: sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==} dependencies: browserslist: 4.14.6 semver: 7.0.0 dev: true - /core-js/2.6.11: + /core-js@2.6.11: resolution: {integrity: sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==} deprecated: core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3. requiresBuild: true dev: true - /core-util-is/1.0.2: + /core-util-is@1.0.2: resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=} dev: true - /cosmiconfig/6.0.0: + /cosmiconfig@6.0.0: resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} engines: {node: '>=8'} dependencies: @@ -6402,7 +6699,7 @@ packages: yaml: 1.10.0 dev: true - /cosmiconfig/7.1.0: + /cosmiconfig@7.1.0: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} dependencies: @@ -6413,7 +6710,7 @@ packages: yaml: 1.10.0 dev: true - /cross-spawn/6.0.5: + /cross-spawn@6.0.5: resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} engines: {node: '>=4.8'} dependencies: @@ -6424,7 +6721,7 @@ packages: which: 1.3.1 dev: true - /cross-spawn/7.0.3: + /cross-spawn@7.0.3: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: @@ -6433,12 +6730,16 @@ packages: which: 2.0.2 dev: true - /crypto-random-string/2.0.0: + /crypto-random-string@2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} dev: true - /dashdash/1.14.1: + /damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + dev: true + + /dashdash@1.14.1: resolution: {integrity: sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=} engines: {node: '>=0.10'} dependencies: @@ -6446,15 +6747,15 @@ packages: dev: true optional: true - /dateformat/3.0.3: + /dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} dev: true - /db-errors/0.2.3: + /db-errors@0.2.3: resolution: {integrity: sha512-OOgqgDuCavHXjYSJoV2yGhv6SeG8nk42aoCSoyXLZUH7VwFG27rxbavU1z+VrZbZjphw5UkDQwUlD21MwZpUng==} dev: true - /debug/2.6.9: + /debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: supports-color: '*' @@ -6465,18 +6766,7 @@ packages: ms: 2.0.0 dev: true - /debug/3.2.6: - resolution: {integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - dev: true - - /debug/3.2.6_supports-color@7.1.0: + /debug@3.2.6(supports-color@7.1.0): resolution: {integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==} peerDependencies: supports-color: '*' @@ -6488,7 +6778,7 @@ packages: supports-color: 7.1.0 dev: true - /debug/4.1.1: + /debug@4.1.1: resolution: {integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==} peerDependencies: supports-color: '*' @@ -6499,20 +6789,7 @@ packages: ms: 2.1.2 dev: true - /debug/4.2.0: - resolution: {integrity: sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==} - engines: {node: '>=6.0'} - deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - dev: true - - /debug/4.2.0_supports-color@7.2.0: + /debug@4.2.0(supports-color@7.2.0): resolution: {integrity: sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==} engines: {node: '>=6.0'} deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) @@ -6526,7 +6803,7 @@ packages: supports-color: 7.2.0 dev: true - /decamelize-keys/1.1.0: + /decamelize-keys@1.1.0: resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} engines: {node: '>=0.10.0'} dependencies: @@ -6534,79 +6811,97 @@ packages: map-obj: 1.0.1 dev: true - /decamelize/1.2.0: + /decamelize@1.2.0: resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=} engines: {node: '>=0.10.0'} dev: true - /decamelize/4.0.0: + /decamelize@4.0.0: resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} engines: {node: '>=10'} dev: true - /decode-uri-component/0.2.0: + /decode-uri-component@0.2.0: resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=} engines: {node: '>=0.10'} dev: true - /dedent/0.7.0: + /dedent@0.7.0: resolution: {integrity: sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=} dev: true - /deep-eql/3.0.1: + /deep-eql@3.0.1: resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==} engines: {node: '>=0.12'} dependencies: type-detect: 4.0.8 dev: true - /deep-extend/0.6.0: + /deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} engines: {node: '>=4.0.0'} dev: true - /deep-freeze/0.0.1: + /deep-freeze@0.0.1: resolution: {integrity: sha1-OgsABd4YZygZ39OM0x+RF5yJPoQ=} dev: true - /deep-is/0.1.3: + /deep-is@0.1.3: resolution: {integrity: sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=} dev: true - /deepmerge/4.2.2: + /deepmerge@4.2.2: resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} engines: {node: '>=0.10.0'} dev: true - /default-require-extensions/3.0.0: + /default-require-extensions@3.0.0: resolution: {integrity: sha512-ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg==} engines: {node: '>=8'} dependencies: strip-bom: 4.0.0 dev: true - /define-properties/1.1.3: + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + 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-property/0.2.5: + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 + object-keys: 1.1.1 + dev: true + + /define-property@0.2.5: resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 0.1.6 dev: true - /define-property/1.0.0: + /define-property@1.0.0: resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.2 dev: true - /define-property/2.0.2: + /define-property@2.0.2: resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} engines: {node: '>=0.10.0'} dependencies: @@ -6614,51 +6909,56 @@ packages: isobject: 3.0.1 dev: true - /delayed-stream/1.0.0: + /delayed-stream@1.0.0: resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=} engines: {node: '>=0.4.0'} dev: true optional: true - /delegates/1.0.0: + /delegates@1.0.0: resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} dev: true - /deprecation/2.3.1: + /deprecation@2.3.1: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} dev: true - /detect-file/1.0.0: + /dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + dev: true + + /detect-file@1.0.0: resolution: {integrity: sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=} engines: {node: '>=0.10.0'} dev: true - /detect-indent/4.0.0: + /detect-indent@4.0.0: resolution: {integrity: sha1-920GQ1LN9Docts5hnE7jqUdd4gg=} engines: {node: '>=0.10.0'} dependencies: repeating: 2.0.1 dev: true - /detect-libc/1.0.3: + /detect-libc@1.0.3: resolution: {integrity: sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=} engines: {node: '>=0.10'} hasBin: true dev: true - /diff/4.0.2: + /diff@4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} dev: true - /dir-glob/3.0.1: + /dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} dependencies: path-type: 4.0.0 dev: true - /doctrine/1.5.0: + /doctrine@1.5.0: resolution: {integrity: sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=} engines: {node: '>=0.10.0'} dependencies: @@ -6666,36 +6966,43 @@ packages: isarray: 1.0.0 dev: true - /doctrine/3.0.0: + /doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine@3.0.0: resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 dev: true - /dot-prop/5.3.0: + /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} dependencies: is-obj: 2.0.0 dev: true - /dotenv/6.2.0: + /dotenv@6.2.0: resolution: {integrity: sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==} engines: {node: '>=6'} dev: true - /dottie/2.0.2: + /dottie@2.0.2: resolution: {integrity: sha512-fmrwR04lsniq/uSr8yikThDTrM7epXHBAAjH9TbeH3rEA8tdCO7mRzB9hdmdGyJCxF8KERo9CITcm3kGuoyMhg==} dev: true - /duplexer2/0.1.4: + /duplexer2@0.1.4: resolution: {integrity: sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=} dependencies: readable-stream: 2.3.7 dev: true - /ecc-jsbn/0.1.2: + /ecc-jsbn@0.1.2: resolution: {integrity: sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=} dependencies: jsbn: 0.1.1 @@ -6703,44 +7010,48 @@ packages: dev: true optional: true - /electron-to-chromium/1.3.467: + /electron-to-chromium@1.3.467: resolution: {integrity: sha512-U+QgsL8TZDU/n+rDnYDa3hY5uy3C4iry9mrJS0PNBBGwnocuQ+aHSfgY44mdlaK9744X5YqrrGUvD9PxCLY1HA==} dev: true - /electron-to-chromium/1.3.487: + /electron-to-chromium@1.3.487: resolution: {integrity: sha512-m4QS3IDShxauFfYFpnEzRCcUI55oKB9acEnHCuY/hSCZMz9Pz2KJj+UBnGHxRxS/mS1aphqOQ5wI6gc3yDZ7ew==} dev: true - /electron-to-chromium/1.3.529: + /electron-to-chromium@1.3.529: resolution: {integrity: sha512-n3sriLldqNyjBlosbnPftjCY+m1dVOY307I1Y0HaHAqDGe3hRvK7ksJwWd+qs599ybR4jobCo1+7zXM9GyNMSA==} dev: true - /electron-to-chromium/1.3.585: + /electron-to-chromium@1.3.585: resolution: {integrity: sha512-xoeqjMQhgHDZM7FiglJAb2aeOxHZWFruUc3MbAGTgE7GB8rr5fTn1Sdh5THGuQtndU3GuXlu91ZKqRivxoCZ/A==} dev: true - /emoji-regex/7.0.3: + /emoji-regex@7.0.3: resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} dev: true - /emoji-regex/8.0.0: + /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: true - /end-of-stream/1.4.4: + /emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + dev: true + + /end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} dependencies: once: 1.4.0 dev: true - /enquirer/2.3.6: + /enquirer@2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.1 dev: true - /env-ci/5.0.2: + /env-ci@5.0.2: resolution: {integrity: sha512-Xc41mKvjouTXD3Oy9AqySz1IeyvJvHZ20Twf5ZLYbNpPPIuCnL/qHCmNlD01LoNy0JTunw9HPYVptD19Ac7Mbw==} engines: {node: '>=10.13'} dependencies: @@ -6748,13 +7059,13 @@ packages: java-properties: 1.0.2 dev: true - /error-ex/1.3.2: + /error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 dev: true - /es-abstract/1.17.6: + /es-abstract@1.17.6: resolution: {integrity: sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==} engines: {node: '>= 0.4'} dependencies: @@ -6771,7 +7082,7 @@ packages: string.prototype.trimstart: 1.0.1 dev: true - /es-abstract/1.17.7: + /es-abstract@1.17.7: resolution: {integrity: sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==} engines: {node: '>= 0.4'} dependencies: @@ -6788,7 +7099,7 @@ packages: string.prototype.trimstart: 1.0.2 dev: true - /es-abstract/1.18.0-next.1: + /es-abstract@1.18.0-next.1: resolution: {integrity: sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==} engines: {node: '>= 0.4'} dependencies: @@ -6806,11 +7117,56 @@ packages: string.prototype.trimstart: 1.0.2 dev: true - /es-array-method-boxes-properly/1.0.0: + /es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + internal-slot: 1.0.6 + is-array-buffer: 3.0.2 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.12 + is-weakref: 1.0.2 + object-inspect: 1.13.1 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 + safe-regex-test: 1.0.2 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.13 + dev: true + + /es-array-method-boxes-properly@1.0.0: resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} dev: true - /es-get-iterator/1.1.0: + /es-get-iterator@1.1.0: resolution: {integrity: sha512-UfrmHuWQlNMTs35e1ypnvikg6jCz3SK8v8ImvmDsh36fCVUR1MqoFDiyn0/k52C8NqO3YsO8Oe0azeesNuqSsQ==} dependencies: es-abstract: 1.17.6 @@ -6822,7 +7178,41 @@ packages: isarray: 2.0.5 dev: true - /es-to-primitive/1.2.1: + /es-iterator-helpers@1.0.15: + resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} + dependencies: + asynciterator.prototype: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-set-tostringtag: 2.0.2 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + has-property-descriptors: 1.0.1 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.6 + iterator.prototype: 1.1.2 + safe-array-concat: 1.0.1 + dev: true + + /es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + has-tostringtag: 1.0.0 + hasown: 2.0.0 + dev: true + + /es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + dependencies: + hasown: 2.0.0 + dev: true + + /es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: @@ -6831,36 +7221,36 @@ packages: is-symbol: 1.0.3 dev: true - /es6-error/4.1.1: + /es6-error@4.1.1: resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} dev: true - /escalade/3.0.1: + /escalade@3.0.1: resolution: {integrity: sha512-DR6NO3h9niOT+MZs7bjxlj2a1k+POu5RN8CLTPX2+i78bRi9eLe7+0zXgUHMnGXWybYcL61E9hGhPKqedy8tQA==} engines: {node: '>=6'} dev: true - /escalade/3.0.2: + /escalade@3.0.2: resolution: {integrity: sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==} engines: {node: '>=6'} dev: true - /escalade/3.1.1: + /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} dev: true - /escape-string-regexp/1.0.5: + /escape-string-regexp@1.0.5: resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} engines: {node: '>=0.8.0'} dev: true - /escape-string-regexp/4.0.0: + /escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} dev: true - /eslint-config-airbnb-base/14.2.0_fufdw6lwmqabkxeoc6jzjb2uvi: + /eslint-config-airbnb-base@14.2.0(eslint-plugin-import@2.22.0)(eslint@7.4.0): resolution: {integrity: sha512-Snswd5oC6nJaevs3nZoLSTvGJBvzTfnBqOIArkf3cbyTyq9UD79wOk8s+RiL6bhca0p/eRO6veczhf6A/7Jy8Q==} engines: {node: '>= 6'} peerDependencies: @@ -6868,13 +7258,13 @@ packages: eslint-plugin-import: ^2.21.2 dependencies: confusing-browser-globals: 1.0.9 - eslint: 7.6.0 - eslint-plugin-import: 2.22.0_eslint@7.6.0 + eslint: 7.4.0 + eslint-plugin-import: 2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0) object.assign: 4.1.0 object.entries: 1.1.2 dev: true - /eslint-config-airbnb-base/14.2.0_hip446klyeu6lh7li2xmdo6kbu: + /eslint-config-airbnb-base@14.2.0(eslint-plugin-import@2.22.0)(eslint@7.6.0): resolution: {integrity: sha512-Snswd5oC6nJaevs3nZoLSTvGJBvzTfnBqOIArkf3cbyTyq9UD79wOk8s+RiL6bhca0p/eRO6veczhf6A/7Jy8Q==} engines: {node: '>= 6'} peerDependencies: @@ -6882,13 +7272,13 @@ packages: eslint-plugin-import: ^2.21.2 dependencies: confusing-browser-globals: 1.0.9 - eslint: 7.12.1 - eslint-plugin-import: 2.22.1_eslint@7.12.1 + eslint: 7.6.0 + eslint-plugin-import: 2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.6.0) object.assign: 4.1.0 object.entries: 1.1.2 dev: true - /eslint-config-airbnb-base/14.2.0_y2f3kaloccpvqkc5wroyzrkqom: + /eslint-config-airbnb-base@14.2.0(eslint-plugin-import@2.22.1)(eslint@7.12.1): resolution: {integrity: sha512-Snswd5oC6nJaevs3nZoLSTvGJBvzTfnBqOIArkf3cbyTyq9UD79wOk8s+RiL6bhca0p/eRO6veczhf6A/7Jy8Q==} engines: {node: '>= 6'} peerDependencies: @@ -6896,21 +7286,21 @@ packages: eslint-plugin-import: ^2.21.2 dependencies: confusing-browser-globals: 1.0.9 - eslint: 7.4.0 - eslint-plugin-import: 2.22.0_eslint@7.4.0 + eslint: 7.12.1 + eslint-plugin-import: 2.22.1(@typescript-eslint/parser@3.6.0)(eslint@7.12.1) object.assign: 4.1.0 object.entries: 1.1.2 dev: true - /eslint-config-airbnb-typescript/8.0.2_6tkxm5nnxjzqktaxdhnoy7fxzy: + /eslint-config-airbnb-typescript@8.0.2(@typescript-eslint/eslint-plugin@3.10.1)(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.12.1)(typescript@3.9.7): resolution: {integrity: sha512-TCOftyCoIogJzzLGSg0Qlxd27qvf+1a3MHyN/PqynTqINS4iFy+SlXy/CrAN+6xkleGMSrvmPbm3pyFEku2+IQ==} peerDependencies: '@typescript-eslint/eslint-plugin': ^3.1.0 dependencies: - '@typescript-eslint/eslint-plugin': 3.6.0_gwonw44tk7lec3sw7f532sp4i4 - '@typescript-eslint/parser': 3.6.0_gwonw44tk7lec3sw7f532sp4i4 - eslint-config-airbnb: 18.2.0_y2f3kaloccpvqkc5wroyzrkqom - eslint-config-airbnb-base: 14.2.0_y2f3kaloccpvqkc5wroyzrkqom + '@typescript-eslint/eslint-plugin': 3.10.1(@typescript-eslint/parser@3.6.0)(eslint@7.12.1)(typescript@3.9.7) + '@typescript-eslint/parser': 3.6.0(eslint@7.12.1)(typescript@3.9.7) + eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.12.1) + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1)(eslint@7.12.1) transitivePeerDependencies: - eslint - eslint-plugin-import @@ -6921,15 +7311,15 @@ packages: - typescript dev: true - /eslint-config-airbnb-typescript/8.0.2_cwmmk7gp4cipueklkq2o6ipmda: + /eslint-config-airbnb-typescript@8.0.2(@typescript-eslint/eslint-plugin@3.6.0)(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.4.0)(typescript@3.9.5): resolution: {integrity: sha512-TCOftyCoIogJzzLGSg0Qlxd27qvf+1a3MHyN/PqynTqINS4iFy+SlXy/CrAN+6xkleGMSrvmPbm3pyFEku2+IQ==} peerDependencies: '@typescript-eslint/eslint-plugin': ^3.1.0 dependencies: - '@typescript-eslint/eslint-plugin': 3.6.0_pgknjxwjsuad5iynciuti3a6xi - '@typescript-eslint/parser': 3.6.0_pgknjxwjsuad5iynciuti3a6xi - eslint-config-airbnb: 18.2.0_y2f3kaloccpvqkc5wroyzrkqom - eslint-config-airbnb-base: 14.2.0_y2f3kaloccpvqkc5wroyzrkqom + '@typescript-eslint/eslint-plugin': 3.6.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0)(typescript@3.9.5) + '@typescript-eslint/parser': 3.6.0(eslint@7.4.0)(typescript@3.9.5) + eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.4.0) + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.4.0) transitivePeerDependencies: - eslint - eslint-plugin-import @@ -6940,15 +7330,15 @@ packages: - typescript dev: true - /eslint-config-airbnb-typescript/8.0.2_lworzhnapyfdl6ui3inpu7glsu: + /eslint-config-airbnb-typescript@8.0.2(@typescript-eslint/eslint-plugin@3.6.0)(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.4.0)(typescript@3.9.6): resolution: {integrity: sha512-TCOftyCoIogJzzLGSg0Qlxd27qvf+1a3MHyN/PqynTqINS4iFy+SlXy/CrAN+6xkleGMSrvmPbm3pyFEku2+IQ==} peerDependencies: '@typescript-eslint/eslint-plugin': ^3.1.0 dependencies: - '@typescript-eslint/eslint-plugin': 3.10.1_knjh7s5onmjkqs3zs53oemuiqa - '@typescript-eslint/parser': 3.6.0_knjh7s5onmjkqs3zs53oemuiqa - eslint-config-airbnb: 18.2.0_hip446klyeu6lh7li2xmdo6kbu - eslint-config-airbnb-base: 14.2.0_hip446klyeu6lh7li2xmdo6kbu + '@typescript-eslint/eslint-plugin': 3.6.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0)(typescript@3.9.6) + '@typescript-eslint/parser': 3.6.0(eslint@7.4.0)(typescript@3.9.6) + eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.4.0) + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.4.0) transitivePeerDependencies: - eslint - eslint-plugin-import @@ -6959,15 +7349,15 @@ packages: - typescript dev: true - /eslint-config-airbnb-typescript/8.0.2_sqqwqkmt2m4limz5tzrrmupjca: + /eslint-config-airbnb-typescript@8.0.2(@typescript-eslint/eslint-plugin@3.9.0)(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.6.0)(typescript@3.9.7): resolution: {integrity: sha512-TCOftyCoIogJzzLGSg0Qlxd27qvf+1a3MHyN/PqynTqINS4iFy+SlXy/CrAN+6xkleGMSrvmPbm3pyFEku2+IQ==} peerDependencies: '@typescript-eslint/eslint-plugin': ^3.1.0 dependencies: - '@typescript-eslint/eslint-plugin': 3.9.0_upjsw7ikvvtapwwswbm42lbf2e - '@typescript-eslint/parser': 3.6.0_upjsw7ikvvtapwwswbm42lbf2e - eslint-config-airbnb: 18.2.0_fufdw6lwmqabkxeoc6jzjb2uvi - eslint-config-airbnb-base: 14.2.0_fufdw6lwmqabkxeoc6jzjb2uvi + '@typescript-eslint/eslint-plugin': 3.9.0(@typescript-eslint/parser@3.6.0)(eslint@7.6.0)(typescript@3.9.7) + '@typescript-eslint/parser': 3.6.0(eslint@7.6.0)(typescript@3.9.7) + eslint-config-airbnb: 18.2.0(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.6.0) + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.6.0) transitivePeerDependencies: - eslint - eslint-plugin-import @@ -6978,7 +7368,7 @@ packages: - typescript dev: true - /eslint-config-airbnb/18.2.0_fufdw6lwmqabkxeoc6jzjb2uvi: + /eslint-config-airbnb@18.2.0(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.4.0): resolution: {integrity: sha512-Fz4JIUKkrhO0du2cg5opdyPKQXOI2MvF8KUvN2710nJMT6jaRUpRE2swrJftAjVGL7T1otLM5ieo5RqS1v9Udg==} engines: {node: '>= 6'} peerDependencies: @@ -6988,14 +7378,17 @@ packages: eslint-plugin-react: ^7.20.0 eslint-plugin-react-hooks: ^4 || ^3 || ^2.3.0 || ^1.7.0 dependencies: - eslint: 7.6.0 - eslint-config-airbnb-base: 14.2.0_fufdw6lwmqabkxeoc6jzjb2uvi - eslint-plugin-import: 2.22.0_eslint@7.6.0 + eslint: 7.4.0 + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.4.0) + eslint-plugin-import: 2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0) + eslint-plugin-jsx-a11y: 6.8.0(eslint@7.4.0) + eslint-plugin-react: 7.33.2(eslint@7.4.0) + eslint-plugin-react-hooks: 4.6.0(eslint@7.4.0) object.assign: 4.1.0 object.entries: 1.1.2 dev: true - /eslint-config-airbnb/18.2.0_hip446klyeu6lh7li2xmdo6kbu: + /eslint-config-airbnb@18.2.0(eslint-plugin-import@2.22.0)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.6.0): resolution: {integrity: sha512-Fz4JIUKkrhO0du2cg5opdyPKQXOI2MvF8KUvN2710nJMT6jaRUpRE2swrJftAjVGL7T1otLM5ieo5RqS1v9Udg==} engines: {node: '>= 6'} peerDependencies: @@ -7005,14 +7398,17 @@ packages: eslint-plugin-react: ^7.20.0 eslint-plugin-react-hooks: ^4 || ^3 || ^2.3.0 || ^1.7.0 dependencies: - eslint: 7.12.1 - eslint-config-airbnb-base: 14.2.0_hip446klyeu6lh7li2xmdo6kbu - eslint-plugin-import: 2.22.1_eslint@7.12.1 + eslint: 7.6.0 + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.0)(eslint@7.6.0) + eslint-plugin-import: 2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.6.0) + eslint-plugin-jsx-a11y: 6.8.0(eslint@7.6.0) + eslint-plugin-react: 7.33.2(eslint@7.6.0) + eslint-plugin-react-hooks: 4.6.0(eslint@7.6.0) object.assign: 4.1.0 object.entries: 1.1.2 dev: true - /eslint-config-airbnb/18.2.0_y2f3kaloccpvqkc5wroyzrkqom: + /eslint-config-airbnb@18.2.0(eslint-plugin-import@2.22.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@7.12.1): resolution: {integrity: sha512-Fz4JIUKkrhO0du2cg5opdyPKQXOI2MvF8KUvN2710nJMT6jaRUpRE2swrJftAjVGL7T1otLM5ieo5RqS1v9Udg==} engines: {node: '>= 6'} peerDependencies: @@ -7022,14 +7418,17 @@ packages: eslint-plugin-react: ^7.20.0 eslint-plugin-react-hooks: ^4 || ^3 || ^2.3.0 || ^1.7.0 dependencies: - eslint: 7.4.0 - eslint-config-airbnb-base: 14.2.0_y2f3kaloccpvqkc5wroyzrkqom - eslint-plugin-import: 2.22.0_eslint@7.4.0 + eslint: 7.12.1 + eslint-config-airbnb-base: 14.2.0(eslint-plugin-import@2.22.1)(eslint@7.12.1) + eslint-plugin-import: 2.22.1(@typescript-eslint/parser@3.6.0)(eslint@7.12.1) + eslint-plugin-jsx-a11y: 6.8.0(eslint@7.12.1) + eslint-plugin-react: 7.33.2(eslint@7.12.1) + eslint-plugin-react-hooks: 4.6.0(eslint@7.12.1) object.assign: 4.1.0 object.entries: 1.1.2 dev: true - /eslint-import-resolver-node/0.3.4: + /eslint-import-resolver-node@0.3.4: resolution: {integrity: sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==} dependencies: debug: 2.6.9 @@ -7038,7 +7437,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.6.0_stdpjldesrblg4m7sdww5hkinq: + /eslint-module-utils@2.6.0(@typescript-eslint/parser@3.6.0)(eslint-import-resolver-node@0.3.4): resolution: {integrity: sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==} engines: {node: '>=4'} peerDependencies: @@ -7056,6 +7455,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: + '@typescript-eslint/parser': 3.6.0(eslint@7.4.0)(typescript@3.9.6) debug: 2.6.9 eslint-import-resolver-node: 0.3.4 pkg-dir: 2.0.0 @@ -7063,7 +7463,7 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.22.0_eslint@7.4.0: + /eslint-plugin-import@2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.4.0): resolution: {integrity: sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg==} engines: {node: '>=4'} peerDependencies: @@ -7073,6 +7473,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: + '@typescript-eslint/parser': 3.6.0(eslint@7.4.0)(typescript@3.9.6) array-includes: 3.1.1 array.prototype.flat: 1.2.3 contains-path: 0.1.0 @@ -7080,7 +7481,7 @@ packages: doctrine: 1.5.0 eslint: 7.4.0 eslint-import-resolver-node: 0.3.4 - eslint-module-utils: 2.6.0_stdpjldesrblg4m7sdww5hkinq + eslint-module-utils: 2.6.0(@typescript-eslint/parser@3.6.0)(eslint-import-resolver-node@0.3.4) has: 1.0.3 minimatch: 3.0.4 object.values: 1.1.1 @@ -7093,7 +7494,7 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.22.0_eslint@7.6.0: + /eslint-plugin-import@2.22.0(@typescript-eslint/parser@3.6.0)(eslint@7.6.0): resolution: {integrity: sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg==} engines: {node: '>=4'} peerDependencies: @@ -7103,6 +7504,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: + '@typescript-eslint/parser': 3.6.0(eslint@7.6.0)(typescript@3.9.7) array-includes: 3.1.1 array.prototype.flat: 1.2.3 contains-path: 0.1.0 @@ -7110,7 +7512,7 @@ packages: doctrine: 1.5.0 eslint: 7.6.0 eslint-import-resolver-node: 0.3.4 - eslint-module-utils: 2.6.0_stdpjldesrblg4m7sdww5hkinq + eslint-module-utils: 2.6.0(@typescript-eslint/parser@3.6.0)(eslint-import-resolver-node@0.3.4) has: 1.0.3 minimatch: 3.0.4 object.values: 1.1.1 @@ -7123,7 +7525,7 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.22.1_eslint@7.12.1: + /eslint-plugin-import@2.22.1(@typescript-eslint/parser@3.6.0)(eslint@7.12.1): resolution: {integrity: sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==} engines: {node: '>=4'} peerDependencies: @@ -7133,6 +7535,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: + '@typescript-eslint/parser': 3.6.0(eslint@7.12.1)(typescript@3.9.7) array-includes: 3.1.1 array.prototype.flat: 1.2.3 contains-path: 0.1.0 @@ -7140,7 +7543,7 @@ packages: doctrine: 1.5.0 eslint: 7.12.1 eslint-import-resolver-node: 0.3.4 - eslint-module-utils: 2.6.0_stdpjldesrblg4m7sdww5hkinq + eslint-module-utils: 2.6.0(@typescript-eslint/parser@3.6.0)(eslint-import-resolver-node@0.3.4) has: 1.0.3 minimatch: 3.0.4 object.values: 1.1.1 @@ -7153,7 +7556,184 @@ packages: - supports-color dev: true - /eslint-scope/5.1.0: + /eslint-plugin-jsx-a11y@6.8.0(eslint@7.12.1): + resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + '@babel/runtime': 7.23.8 + aria-query: 5.3.0 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + ast-types-flow: 0.0.8 + axe-core: 4.7.0 + axobject-query: 3.2.1 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + es-iterator-helpers: 1.0.15 + eslint: 7.12.1 + hasown: 2.0.0 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 + minimatch: 3.1.2 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + dev: true + + /eslint-plugin-jsx-a11y@6.8.0(eslint@7.4.0): + resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + '@babel/runtime': 7.23.8 + aria-query: 5.3.0 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + ast-types-flow: 0.0.8 + axe-core: 4.7.0 + axobject-query: 3.2.1 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + es-iterator-helpers: 1.0.15 + eslint: 7.4.0 + hasown: 2.0.0 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 + minimatch: 3.1.2 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + dev: true + + /eslint-plugin-jsx-a11y@6.8.0(eslint@7.6.0): + resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + '@babel/runtime': 7.23.8 + aria-query: 5.3.0 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + ast-types-flow: 0.0.8 + axe-core: 4.7.0 + axobject-query: 3.2.1 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + es-iterator-helpers: 1.0.15 + eslint: 7.6.0 + hasown: 2.0.0 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 + minimatch: 3.1.2 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + dev: true + + /eslint-plugin-react-hooks@4.6.0(eslint@7.12.1): + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 7.12.1 + dev: true + + /eslint-plugin-react-hooks@4.6.0(eslint@7.4.0): + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 7.4.0 + dev: true + + /eslint-plugin-react-hooks@4.6.0(eslint@7.6.0): + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 7.6.0 + dev: true + + /eslint-plugin-react@7.33.2(eslint@7.12.1): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.15 + eslint: 7.12.1 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.10 + dev: true + + /eslint-plugin-react@7.33.2(eslint@7.4.0): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.15 + eslint: 7.4.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.10 + dev: true + + /eslint-plugin-react@7.33.2(eslint@7.6.0): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.15 + eslint: 7.6.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.10 + dev: true + + /eslint-scope@5.1.0: resolution: {integrity: sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w==} engines: {node: '>=8.0.0'} dependencies: @@ -7161,7 +7741,7 @@ packages: estraverse: 4.3.0 dev: true - /eslint-scope/5.1.1: + /eslint-scope@5.1.1: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} engines: {node: '>=8.0.0'} dependencies: @@ -7169,24 +7749,24 @@ packages: estraverse: 4.3.0 dev: true - /eslint-utils/2.1.0: + /eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} dependencies: eslint-visitor-keys: 1.3.0 dev: true - /eslint-visitor-keys/1.3.0: + /eslint-visitor-keys@1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} dev: true - /eslint-visitor-keys/2.0.0: + /eslint-visitor-keys@2.0.0: resolution: {integrity: sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==} engines: {node: '>=10'} dev: true - /eslint/7.12.1: + /eslint@7.12.1: resolution: {integrity: sha512-HlMTEdr/LicJfN08LB3nM1rRYliDXOmfoO4vj39xN6BLpFzF00hbwBoqHk8UcJ2M/3nlARZWy/mslvGEuZFvsg==} engines: {node: ^10.12.0 || >=12.0.0} hasBin: true @@ -7196,7 +7776,7 @@ packages: ajv: 6.12.6 chalk: 4.1.0 cross-spawn: 7.0.3 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) doctrine: 3.0.0 enquirer: 2.3.6 eslint-scope: 5.1.1 @@ -7232,7 +7812,7 @@ packages: - supports-color dev: true - /eslint/7.4.0: + /eslint@7.4.0: resolution: {integrity: sha512-gU+lxhlPHu45H3JkEGgYhWhkR9wLHHEXC9FbWFnTlEkbKyZKWgWRLgf61E8zWmBuI6g5xKBph9ltg3NtZMVF8g==} engines: {node: ^10.12.0 || >=12.0.0} hasBin: true @@ -7277,7 +7857,7 @@ packages: - supports-color dev: true - /eslint/7.6.0: + /eslint@7.6.0: resolution: {integrity: sha512-QlAManNtqr7sozWm5TF4wIH9gmUm2hE3vNRUvyoYAa4y1l5/jxD/PQStEjBMQtCqZmSep8UxrcecI60hOpe61w==} engines: {node: ^10.12.0 || >=12.0.0} hasBin: true @@ -7322,85 +7902,90 @@ packages: - supports-color dev: true - /esm/3.2.25: + /esm@3.2.25: resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} engines: {node: '>=6'} dev: true - /espree/7.1.0: + /espree@7.1.0: resolution: {integrity: sha512-dcorZSyfmm4WTuTnE5Y7MEN1DyoPYy1ZR783QW1FJoenn7RailyWFsq/UL6ZAAA7uXurN9FIpYyUs3OfiIW+Qw==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: acorn: 7.3.1 - acorn-jsx: 5.2.0_acorn@7.3.1 + acorn-jsx: 5.2.0(acorn@7.3.1) eslint-visitor-keys: 1.3.0 dev: true - /espree/7.2.0: + /espree@7.2.0: resolution: {integrity: sha512-H+cQ3+3JYRMEIOl87e7QdHX70ocly5iW4+dttuR8iYSPr/hXKFb+7dBsZ7+u1adC4VrnPlTkv0+OwuPnDop19g==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: acorn: 7.4.0 - acorn-jsx: 5.2.0_acorn@7.4.0 + acorn-jsx: 5.2.0(acorn@7.4.0) eslint-visitor-keys: 1.3.0 dev: true - /espree/7.3.0: + /espree@7.3.0: resolution: {integrity: sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: acorn: 7.4.1 - acorn-jsx: 5.3.1_acorn@7.4.1 + acorn-jsx: 5.3.1(acorn@7.4.1) eslint-visitor-keys: 1.3.0 dev: true - /esprima/4.0.1: + /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true dev: true - /esquery/1.3.1: + /esquery@1.3.1: resolution: {integrity: sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==} engines: {node: '>=0.10'} dependencies: estraverse: 5.2.0 dev: true - /esrecurse/4.2.1: + /esrecurse@4.2.1: resolution: {integrity: sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==} engines: {node: '>=4.0'} dependencies: estraverse: 4.3.0 dev: true - /esrecurse/4.3.0: + /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} dependencies: estraverse: 5.2.0 dev: true - /estraverse/4.3.0: + /estraverse@4.3.0: resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} engines: {node: '>=4.0'} dev: true - /estraverse/5.2.0: + /estraverse@5.2.0: resolution: {integrity: sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==} engines: {node: '>=4.0'} dev: true - /estree-walker/1.0.1: + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /estree-walker@1.0.1: resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} dev: true - /esutils/2.0.3: + /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} dev: true - /execa/1.0.0: + /execa@1.0.0: resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} engines: {node: '>=6'} dependencies: @@ -7413,7 +7998,7 @@ packages: strip-eof: 1.0.0 dev: true - /execa/4.0.3: + /execa@4.0.3: resolution: {integrity: sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A==} engines: {node: '>=10'} dependencies: @@ -7428,7 +8013,7 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa/4.1.0: + /execa@4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} dependencies: @@ -7443,7 +8028,7 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa/5.1.1: + /execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} dependencies: @@ -7458,7 +8043,7 @@ packages: strip-final-newline: 2.0.0 dev: true - /expand-brackets/2.1.4: + /expand-brackets@2.1.4: resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=} engines: {node: '>=0.10.0'} dependencies: @@ -7473,21 +8058,21 @@ packages: - supports-color dev: true - /expand-tilde/2.0.2: + /expand-tilde@2.0.2: resolution: {integrity: sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=} engines: {node: '>=0.10.0'} dependencies: homedir-polyfill: 1.0.3 dev: true - /extend-shallow/2.0.1: + /extend-shallow@2.0.1: resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=} engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 dev: true - /extend-shallow/3.0.2: + /extend-shallow@3.0.2: resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=} engines: {node: '>=0.10.0'} dependencies: @@ -7495,11 +8080,11 @@ packages: is-extendable: 1.0.1 dev: true - /extend/3.0.2: + /extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} dev: true - /extglob/2.0.4: + /extglob@2.0.4: resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} engines: {node: '>=0.10.0'} dependencies: @@ -7515,17 +8100,17 @@ packages: - supports-color dev: true - /extsprintf/1.3.0: + /extsprintf@1.3.0: resolution: {integrity: sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=} engines: {'0': node >=0.6.0} dev: true optional: true - /fast-deep-equal/3.1.3: + /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true - /fast-glob/3.2.4: + /fast-glob@3.2.4: resolution: {integrity: sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==} engines: {node: '>=8'} dependencies: @@ -7537,47 +8122,47 @@ packages: picomatch: 2.2.2 dev: true - /fast-json-stable-stringify/2.1.0: + /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true - /fast-levenshtein/2.0.6: + /fast-levenshtein@2.0.6: resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} dev: true - /fastq/1.9.0: + /fastq@1.9.0: resolution: {integrity: sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==} dependencies: reusify: 1.0.4 dev: true - /figlet/1.5.0: + /figlet@1.5.0: resolution: {integrity: sha512-ZQJM4aifMpz6H19AW1VqvZ7l4pOE9p7i/3LyxgO2kp+PO/VcDYNqIHEMtkccqIhTXMKci4kjueJr/iCQEaT/Ww==} engines: {node: '>= 0.4.0'} dev: true - /figures/2.0.0: + /figures@2.0.0: resolution: {integrity: sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=} engines: {node: '>=4'} dependencies: escape-string-regexp: 1.0.5 dev: true - /figures/3.2.0: + /figures@3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} dependencies: escape-string-regexp: 1.0.5 dev: true - /file-entry-cache/5.0.1: + /file-entry-cache@5.0.1: resolution: {integrity: sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==} engines: {node: '>=4'} dependencies: flat-cache: 2.0.1 dev: true - /fill-range/4.0.0: + /fill-range@4.0.0: resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=} engines: {node: '>=0.10.0'} dependencies: @@ -7587,14 +8172,14 @@ packages: to-regex-range: 2.1.1 dev: true - /fill-range/7.0.1: + /fill-range@7.0.1: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 dev: true - /find-cache-dir/3.3.1: + /find-cache-dir@3.3.1: resolution: {integrity: sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==} engines: {node: '>=8'} dependencies: @@ -7603,21 +8188,21 @@ packages: pkg-dir: 4.2.0 dev: true - /find-up/2.1.0: + /find-up@2.1.0: resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=} engines: {node: '>=4'} dependencies: locate-path: 2.0.0 dev: true - /find-up/3.0.0: + /find-up@3.0.0: resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} engines: {node: '>=6'} dependencies: locate-path: 3.0.0 dev: true - /find-up/4.1.0: + /find-up@4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} dependencies: @@ -7625,7 +8210,7 @@ packages: path-exists: 4.0.0 dev: true - /find-up/5.0.0: + /find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} engines: {node: '>=10'} dependencies: @@ -7633,21 +8218,21 @@ packages: path-exists: 4.0.0 dev: true - /find-versions/3.2.0: + /find-versions@3.2.0: resolution: {integrity: sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==} engines: {node: '>=6'} dependencies: semver-regex: 2.0.0 dev: true - /find-versions/4.0.0: + /find-versions@4.0.0: resolution: {integrity: sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==} engines: {node: '>=10'} dependencies: semver-regex: 3.1.4 dev: true - /findup-sync/3.0.0: + /findup-sync@3.0.0: resolution: {integrity: sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==} engines: {node: '>= 0.10'} dependencies: @@ -7659,7 +8244,7 @@ packages: - supports-color dev: true - /fined/1.2.0: + /fined@1.2.0: resolution: {integrity: sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==} engines: {node: '>= 0.10'} dependencies: @@ -7670,12 +8255,12 @@ packages: parse-filepath: 1.0.2 dev: true - /flagged-respawn/1.0.1: + /flagged-respawn@1.0.1: resolution: {integrity: sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==} engines: {node: '>= 0.10'} dev: true - /flat-cache/2.0.1: + /flat-cache@2.0.1: resolution: {integrity: sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==} engines: {node: '>=4'} dependencies: @@ -7684,7 +8269,7 @@ packages: write: 1.0.3 dev: true - /flat/4.1.0: + /flat@4.1.0: resolution: {integrity: sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==} deprecated: Fixed a prototype pollution security issue in 4.1.0, please upgrade to ^4.1.1 or ^5.0.1. hasBin: true @@ -7692,28 +8277,34 @@ packages: is-buffer: 2.0.4 dev: true - /flat/5.0.2: + /flat@5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true dev: true - /flatted/2.0.2: + /flatted@2.0.2: resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} dev: true - /for-in/1.0.2: + /for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + dependencies: + is-callable: 1.2.7 + dev: true + + /for-in@1.0.2: resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} engines: {node: '>=0.10.0'} dev: true - /for-own/1.0.0: + /for-own@1.0.0: resolution: {integrity: sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=} engines: {node: '>=0.10.0'} dependencies: for-in: 1.0.2 dev: true - /foreground-child/2.0.0: + /foreground-child@2.0.0: resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} engines: {node: '>=8.0.0'} dependencies: @@ -7721,12 +8312,12 @@ packages: signal-exit: 3.0.3 dev: true - /forever-agent/0.6.1: + /forever-agent@0.6.1: resolution: {integrity: sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=} dev: true optional: true - /form-data/2.3.3: + /form-data@2.3.3: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} engines: {node: '>= 0.12'} dependencies: @@ -7736,25 +8327,25 @@ packages: dev: true optional: true - /fragment-cache/0.2.1: + /fragment-cache@0.2.1: resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=} engines: {node: '>=0.10.0'} dependencies: map-cache: 0.2.2 dev: true - /from2/2.3.0: + /from2@2.3.0: resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==} dependencies: inherits: 2.0.4 readable-stream: 2.3.7 dev: true - /fromentries/1.3.1: + /fromentries@1.3.1: resolution: {integrity: sha512-w4t/zm2J+uAcrpeKyW0VmYiIs3aqe/xKQ+2qwazVNZSCklQHhaVjk6XzKw5GtImq5thgL0IVRjGRAOastb08RQ==} dev: true - /fs-extra/8.1.0: + /fs-extra@8.1.0: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} dependencies: @@ -7763,7 +8354,7 @@ packages: universalify: 0.1.2 dev: true - /fs-extra/9.0.1: + /fs-extra@9.0.1: resolution: {integrity: sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==} engines: {node: '>=10'} dependencies: @@ -7773,17 +8364,17 @@ packages: universalify: 1.0.0 dev: true - /fs-minipass/1.2.7: + /fs-minipass@1.2.7: resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==} dependencies: minipass: 2.9.0 dev: true - /fs.realpath/1.0.0: + /fs.realpath@1.0.0: resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} dev: true - /fsevents/2.1.3: + /fsevents@2.1.3: resolution: {integrity: sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] @@ -7792,7 +8383,7 @@ packages: dev: true optional: true - /fstream/1.0.12: + /fstream@1.0.12: resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==} engines: {node: '>=0.6'} dependencies: @@ -7803,15 +8394,33 @@ packages: dev: true optional: true - /function-bind/1.1.1: + /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} dev: true - /functional-red-black-tree/1.0.1: + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + dev: true + + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + functions-have-names: 1.2.3 + dev: true + + /functional-red-black-tree@1.0.1: resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} dev: true - /gauge/2.7.4: + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /gauge@2.7.4: resolution: {integrity: sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=} dependencies: aproba: 1.2.0 @@ -7824,26 +8433,26 @@ packages: wide-align: 1.1.3 dev: true - /gensync/1.0.0-beta.1: + /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: + /gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} dev: true - /get-caller-file/2.0.5: + /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} dev: true - /get-func-name/2.0.0: + /get-func-name@2.0.0: resolution: {integrity: sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=} dev: true - /get-intrinsic/1.0.1: + /get-intrinsic@1.0.1: resolution: {integrity: sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==} dependencies: function-bind: 1.1.1 @@ -7851,51 +8460,68 @@ packages: has-symbols: 1.0.1 dev: true - /get-own-enumerable-property-symbols/3.0.2: + /get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + dependencies: + function-bind: 1.1.2 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + dev: true + + /get-own-enumerable-property-symbols@3.0.2: resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} dev: true - /get-package-type/0.1.0: + /get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} dev: true - /get-stream/4.1.0: + /get-stream@4.1.0: resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} engines: {node: '>=6'} dependencies: pump: 3.0.0 dev: true - /get-stream/5.2.0: + /get-stream@5.2.0: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} engines: {node: '>=8'} dependencies: pump: 3.0.0 dev: true - /get-stream/6.0.1: + /get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} dev: true - /get-value/2.0.6: + /get-symbol-description@1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + dev: true + + /get-value@2.0.6: resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=} engines: {node: '>=0.10.0'} dev: true - /getopts/2.2.5: + /getopts@2.2.5: resolution: {integrity: sha512-9jb7AW5p3in+IiJWhQiZmmwkpLaR/ccTWdWQCtZM66HJcHHLegowh4q4tSD7gouUyeNvFWRavfK9GXosQHDpFA==} dev: true - /getpass/0.1.7: + /getpass@0.1.7: resolution: {integrity: sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=} dependencies: assert-plus: 1.0.0 dev: true optional: true - /git-log-parser/1.2.0: + /git-log-parser@1.2.0: resolution: {integrity: sha1-LmpMGxP8AAKCB7p5WnrDFme5/Uo=} dependencies: argv-formatter: 1.0.0 @@ -7906,14 +8532,14 @@ packages: traverse: 0.6.6 dev: true - /glob-parent/5.1.1: + /glob-parent@5.1.1: resolution: {integrity: sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==} engines: {node: '>= 6'} dependencies: is-glob: 4.0.1 dev: true - /glob/7.1.6: + /glob@7.1.6: resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} dependencies: fs.realpath: 1.0.0 @@ -7924,7 +8550,7 @@ packages: path-is-absolute: 1.0.1 dev: true - /global-modules/1.0.0: + /global-modules@1.0.0: resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} engines: {node: '>=0.10.0'} dependencies: @@ -7933,7 +8559,7 @@ packages: resolve-dir: 1.0.1 dev: true - /global-prefix/1.0.2: + /global-prefix@1.0.2: resolution: {integrity: sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=} engines: {node: '>=0.10.0'} dependencies: @@ -7944,24 +8570,31 @@ packages: which: 1.3.1 dev: true - /globals/11.12.0: + /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} dev: true - /globals/12.4.0: + /globals@12.4.0: resolution: {integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==} engines: {node: '>=8'} dependencies: type-fest: 0.8.1 dev: true - /globals/9.18.0: + /globals@9.18.0: resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} engines: {node: '>=0.10.0'} dev: true - /globby/10.0.2: + /globalthis@1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.2.1 + dev: true + + /globby@10.0.2: resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==} engines: {node: '>=8'} dependencies: @@ -7975,7 +8608,7 @@ packages: slash: 3.0.0 dev: true - /globby/11.0.1: + /globby@11.0.1: resolution: {integrity: sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==} engines: {node: '>=10'} dependencies: @@ -7987,16 +8620,22 @@ packages: slash: 3.0.0 dev: true - /graceful-fs/4.2.4: + /gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.2.2 + dev: true + + /graceful-fs@4.2.4: resolution: {integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==} dev: true - /growl/1.10.5: + /growl@1.10.5: resolution: {integrity: sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==} engines: {node: '>=4.x'} dev: true - /handlebars/4.7.6: + /handlebars@4.7.6: resolution: {integrity: sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==} engines: {node: '>=0.4.7'} hasBin: true @@ -8009,13 +8648,13 @@ packages: uglify-js: 3.17.4 dev: true - /har-schema/2.0.0: + /har-schema@2.0.0: resolution: {integrity: sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=} engines: {node: '>=4'} dev: true optional: true - /har-validator/5.1.5: + /har-validator@5.1.5: resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} engines: {node: '>=6'} deprecated: this library is no longer supported @@ -8025,38 +8664,65 @@ packages: dev: true optional: true - /hard-rejection/2.1.0: + /hard-rejection@2.1.0: resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} engines: {node: '>=6'} dev: true - /has-ansi/2.0.0: + /has-ansi@2.0.0: resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=} engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 dev: true - /has-flag/3.0.0: + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag@3.0.0: resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} engines: {node: '>=4'} dev: true - /has-flag/4.0.0: + /has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} dev: true - /has-symbols/1.0.1: + /has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + dependencies: + get-intrinsic: 1.2.2 + dev: true + + /has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + dev: true + + /has-symbols@1.0.1: resolution: {integrity: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==} engines: {node: '>= 0.4'} dev: true - /has-unicode/2.0.1: + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag@1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /has-unicode@2.0.1: resolution: {integrity: sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=} dev: true - /has-value/0.3.1: + /has-value@0.3.1: resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=} engines: {node: '>=0.10.0'} dependencies: @@ -8065,7 +8731,7 @@ packages: isobject: 2.1.0 dev: true - /has-value/1.0.0: + /has-value@1.0.0: resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=} engines: {node: '>=0.10.0'} dependencies: @@ -8074,12 +8740,12 @@ packages: isobject: 3.0.1 dev: true - /has-values/0.1.4: + /has-values@0.1.4: resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=} engines: {node: '>=0.10.0'} dev: true - /has-values/1.0.0: + /has-values@1.0.0: resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=} engines: {node: '>=0.10.0'} dependencies: @@ -8087,14 +8753,14 @@ packages: kind-of: 4.0.0 dev: true - /has/1.0.3: + /has@1.0.3: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 dev: true - /hasha/5.2.2: + /hasha@5.2.2: resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} engines: {node: '>=8'} dependencies: @@ -8102,16 +8768,23 @@ packages: type-fest: 0.8.1 dev: true - /he/1.2.0: + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} + dependencies: + function-bind: 1.1.2 + dev: true + + /he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true dev: true - /highlight.js/9.18.3: + /highlight.js@9.18.3: resolution: {integrity: sha512-zBZAmhSupHIl5sITeMqIJnYCDfAEc3Gdkqj65wC1lpI468MMQeeQkhcIAvk+RylAkxrCcI9xy9piHiXeQ1BdzQ==} dev: true - /home-or-tmp/2.0.0: + /home-or-tmp@2.0.0: resolution: {integrity: sha1-42w/LSyufXRqhX440Y1fMqeILbg=} engines: {node: '>=0.10.0'} dependencies: @@ -8119,45 +8792,45 @@ packages: os-tmpdir: 1.0.2 dev: true - /homedir-polyfill/1.0.3: + /homedir-polyfill@1.0.3: resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} engines: {node: '>=0.10.0'} dependencies: parse-passwd: 1.0.0 dev: true - /hook-std/2.0.0: + /hook-std@2.0.0: resolution: {integrity: sha512-zZ6T5WcuBMIUVh49iPQS9t977t7C0l7OtHrpeMb5uk48JdflRX0NSFvCekfYNmGQETnLq9W/isMyHl69kxGi8g==} engines: {node: '>=8'} dev: true - /hosted-git-info/2.8.8: + /hosted-git-info@2.8.8: resolution: {integrity: sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==} dev: true - /hosted-git-info/4.1.0: + /hosted-git-info@4.1.0: resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 dev: true - /html-escaper/2.0.2: + /html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true - /http-proxy-agent/4.0.1: + /http-proxy-agent@4.0.1: resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} engines: {node: '>= 6'} dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) transitivePeerDependencies: - supports-color dev: true - /http-signature/1.2.0: + /http-signature@1.2.0: resolution: {integrity: sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=} engines: {node: '>=0.8', npm: '>=1.3.7'} dependencies: @@ -8167,7 +8840,7 @@ packages: dev: true optional: true - /https-proxy-agent/4.0.0: + /https-proxy-agent@4.0.0: resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} engines: {node: '>= 6.0.0'} dependencies: @@ -8177,27 +8850,27 @@ packages: - supports-color dev: true - /https-proxy-agent/5.0.0: + /https-proxy-agent@5.0.0: resolution: {integrity: sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==} engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) transitivePeerDependencies: - supports-color dev: true - /human-signals/1.1.1: + /human-signals@1.1.1: resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} engines: {node: '>=8.12.0'} dev: true - /human-signals/2.1.0: + /human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} dev: true - /husky/4.2.5: + /husky@4.2.5: resolution: {integrity: sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ==} engines: {node: '>=10'} hasBin: true @@ -8215,34 +8888,34 @@ packages: which-pm-runs: 1.0.0 dev: true - /iconv-lite/0.4.24: + /iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 dev: true - /ieee754/1.1.13: + /ieee754@1.1.13: resolution: {integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==} dev: true - /ignore-walk/3.0.3: + /ignore-walk@3.0.3: resolution: {integrity: sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==} dependencies: minimatch: 3.0.4 dev: true - /ignore/4.0.6: + /ignore@4.0.6: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} dev: true - /ignore/5.1.8: + /ignore@5.1.8: resolution: {integrity: sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==} engines: {node: '>= 4'} dev: true - /import-fresh/3.2.1: + /import-fresh@3.2.1: resolution: {integrity: sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==} engines: {node: '>=6'} dependencies: @@ -8250,7 +8923,7 @@ packages: resolve-from: 4.0.0 dev: true - /import-fresh/3.2.2: + /import-fresh@3.2.2: resolution: {integrity: sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==} engines: {node: '>=6'} dependencies: @@ -8258,49 +8931,58 @@ packages: resolve-from: 4.0.0 dev: true - /import-from/3.0.0: + /import-from@3.0.0: resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 dev: true - /imurmurhash/0.1.4: + /imurmurhash@0.1.4: resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} engines: {node: '>=0.8.19'} dev: true - /indent-string/4.0.0: + /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} dev: true - /inflection/1.12.0: + /inflection@1.12.0: resolution: {integrity: sha1-ogCTVlbW9fa8TcdQLhrstwMihBY=} engines: {'0': node >= 0.4.0} dev: true - /inflight/1.0.6: + /inflight@1.0.6: resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} dependencies: once: 1.4.0 wrappy: 1.0.2 dev: true - /inherits/2.0.4: + /inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} dev: true - /ini/1.3.5: + /ini@1.3.5: resolution: {integrity: sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==} dev: true - /interpret/2.2.0: + /internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + hasown: 2.0.0 + side-channel: 1.0.4 + dev: true + + /interpret@2.2.0: resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} engines: {node: '>= 0.10'} dev: true - /into-stream/5.1.1: + /into-stream@5.1.1: resolution: {integrity: sha512-krrAJ7McQxGGmvaYbB7Q1mcA+cRwg9Ij2RfWIeVesNBgVDZmzY/Fa4IpZUT3bmdRzMzdf/mzltCG2Dq99IZGBA==} engines: {node: '>=8'} dependencies: @@ -8308,13 +8990,13 @@ packages: p-is-promise: 3.0.0 dev: true - /invariant/2.2.4: + /invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} dependencies: loose-envify: 1.4.0 dev: true - /is-absolute/1.0.0: + /is-absolute@1.0.0: resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} engines: {node: '>=0.10.0'} dependencies: @@ -8322,81 +9004,128 @@ packages: is-windows: 1.0.2 dev: true - /is-accessor-descriptor/0.1.6: + /is-accessor-descriptor@0.1.6: resolution: {integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /is-accessor-descriptor/1.0.0: + /is-accessor-descriptor@1.0.0: resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} engines: {node: '>=0.10.0'} dependencies: kind-of: 6.0.3 dev: true - /is-arguments/1.0.4: + /is-arguments@1.0.4: resolution: {integrity: sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==} engines: {node: '>= 0.4'} dev: true - /is-arrayish/0.2.1: + /is-array-buffer@3.0.2: + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /is-arrayish@0.2.1: resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} dev: true - /is-binary-path/2.1.0: + /is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} dependencies: binary-extensions: 2.1.0 dev: true - /is-buffer/1.1.6: + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + has-tostringtag: 1.0.0 + dev: true + + /is-buffer@1.1.6: resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} dev: true - /is-buffer/2.0.4: + /is-buffer@2.0.4: resolution: {integrity: sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==} engines: {node: '>=4'} dev: true - /is-callable/1.2.0: + /is-callable@1.2.0: resolution: {integrity: sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==} engines: {node: '>= 0.4'} dev: true - /is-callable/1.2.2: + /is-callable@1.2.2: resolution: {integrity: sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==} engines: {node: '>= 0.4'} dev: true - /is-core-module/2.0.0: + /is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + dev: true + + /is-core-module@2.0.0: resolution: {integrity: sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==} dependencies: has: 1.0.3 dev: true - /is-data-descriptor/0.1.4: + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + dependencies: + hasown: 2.0.0 + dev: true + + /is-data-descriptor@0.1.4: resolution: {integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /is-data-descriptor/1.0.0: + /is-data-descriptor@1.0.0: resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} engines: {node: '>=0.10.0'} dependencies: kind-of: 6.0.3 dev: true - /is-date-object/1.0.2: + /is-date-object@1.0.2: resolution: {integrity: sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==} engines: {node: '>= 0.4'} dev: true - /is-descriptor/0.1.6: + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-descriptor@0.1.6: resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} engines: {node: '>=0.10.0'} dependencies: @@ -8405,7 +9134,7 @@ packages: kind-of: 5.1.0 dev: true - /is-descriptor/1.0.2: + /is-descriptor@1.0.2: resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} engines: {node: '>=0.10.0'} dependencies: @@ -8414,218 +9143,288 @@ packages: kind-of: 6.0.3 dev: true - /is-extendable/0.1.1: + /is-extendable@0.1.1: resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=} engines: {node: '>=0.10.0'} dev: true - /is-extendable/1.0.1: + /is-extendable@1.0.1: resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} engines: {node: '>=0.10.0'} dependencies: is-plain-object: 2.0.4 dev: true - /is-extglob/2.1.1: + /is-extglob@2.1.1: resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} engines: {node: '>=0.10.0'} dev: true - /is-finite/1.1.0: + /is-finalizationregistry@1.0.2: + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + dependencies: + call-bind: 1.0.5 + dev: true + + /is-finite@1.1.0: resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} engines: {node: '>=0.10.0'} dev: true - /is-fullwidth-code-point/1.0.0: + /is-fullwidth-code-point@1.0.0: resolution: {integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs=} engines: {node: '>=0.10.0'} dependencies: number-is-nan: 1.0.1 dev: true - /is-fullwidth-code-point/2.0.0: + /is-fullwidth-code-point@2.0.0: resolution: {integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=} engines: {node: '>=4'} dev: true - /is-fullwidth-code-point/3.0.0: + /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} dev: true - /is-glob/4.0.1: + /is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + 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-map/2.0.1: + /is-map@2.0.1: resolution: {integrity: sha512-T/S49scO8plUiAOA2DBTBG3JHpn1yiw0kRp6dgiZ0v2/6twi5eiB0rHtHFH9ZIrvlWc6+4O+m4zg5+Z833aXgw==} dev: true - /is-module/1.0.0: + /is-module@1.0.0: resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=} dev: true - /is-negated-glob/1.0.0: + /is-negated-glob@1.0.0: resolution: {integrity: sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=} engines: {node: '>=0.10.0'} dev: true - /is-negative-zero/2.0.0: + /is-negative-zero@2.0.0: resolution: {integrity: sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=} engines: {node: '>= 0.4'} dev: true - /is-number/3.0.0: + /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==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number@3.0.0: resolution: {integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /is-number/7.0.0: + /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} dev: true - /is-obj/1.0.1: + /is-obj@1.0.1: resolution: {integrity: sha1-PkcprB9f3gJc19g6iW2rn09n2w8=} engines: {node: '>=0.10.0'} dev: true - /is-obj/2.0.0: + /is-obj@2.0.0: resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} engines: {node: '>=8'} dev: true - /is-plain-obj/1.1.0: + /is-plain-obj@1.1.0: resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=} engines: {node: '>=0.10.0'} dev: true - /is-plain-obj/2.1.0: + /is-plain-obj@2.1.0: resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} engines: {node: '>=8'} dev: true - /is-plain-object/2.0.4: + /is-plain-object@2.0.4: resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true - /is-plain-object/5.0.0: + /is-plain-object@5.0.0: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} engines: {node: '>=0.10.0'} dev: true - /is-reference/1.2.1: + /is-reference@1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: '@types/estree': 0.0.45 dev: true - /is-regex/1.1.1: + /is-regex@1.1.1: resolution: {integrity: sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.1 dev: true - /is-regexp/1.0.0: + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + has-tostringtag: 1.0.0 + dev: true + + /is-regexp@1.0.0: resolution: {integrity: sha1-/S2INUXEa6xaYz57mgnof6LLUGk=} engines: {node: '>=0.10.0'} dev: true - /is-relative/1.0.0: + /is-relative@1.0.0: resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} engines: {node: '>=0.10.0'} dependencies: is-unc-path: 1.0.0 dev: true - /is-set/2.0.1: + /is-set@2.0.1: resolution: {integrity: sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA==} dev: true - /is-stream/1.1.0: + /is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.5 + dev: true + + /is-stream@1.1.0: resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=} engines: {node: '>=0.10.0'} dev: true - /is-stream/2.0.0: + /is-stream@2.0.0: resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==} engines: {node: '>=8'} dev: true - /is-string/1.0.5: + /is-string@1.0.5: resolution: {integrity: sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==} engines: {node: '>= 0.4'} dev: true - /is-symbol/1.0.3: + /is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol@1.0.3: resolution: {integrity: sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.1 dev: true - /is-text-path/1.0.1: + /is-text-path@1.0.1: resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} engines: {node: '>=0.10.0'} dependencies: text-extensions: 1.9.0 dev: true - /is-typedarray/1.0.0: + /is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} + engines: {node: '>= 0.4'} + dependencies: + which-typed-array: 1.1.13 + dev: true + + /is-typedarray@1.0.0: resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=} dev: true - /is-unc-path/1.0.0: + /is-unc-path@1.0.0: resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} engines: {node: '>=0.10.0'} dependencies: unc-path-regex: 0.1.2 dev: true - /is-windows/1.0.2: + /is-weakmap@2.0.1: + resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} + dev: true + + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.5 + dev: true + + /is-weakset@2.0.2: + resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + dev: true + + /is-windows@1.0.2: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} dev: true - /isarray/1.0.0: + /isarray@1.0.0: resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} dev: true - /isarray/2.0.5: + /isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} dev: true - /isexe/2.0.0: + /isexe@2.0.0: resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} dev: true - /isobject/2.1.0: + /isobject@2.1.0: resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=} engines: {node: '>=0.10.0'} dependencies: isarray: 1.0.0 dev: true - /isobject/3.0.1: + /isobject@3.0.1: resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=} engines: {node: '>=0.10.0'} dev: true - /isstream/0.1.2: + /isstream@0.1.2: resolution: {integrity: sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=} dev: true optional: true - /issue-parser/6.0.0: + /issue-parser@6.0.0: resolution: {integrity: sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==} engines: {node: '>=10.13'} dependencies: @@ -8636,19 +9435,19 @@ packages: lodash.uniqby: 4.7.0 dev: true - /istanbul-lib-coverage/3.0.0: + /istanbul-lib-coverage@3.0.0: resolution: {integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==} engines: {node: '>=8'} dev: true - /istanbul-lib-hook/3.0.0: + /istanbul-lib-hook@3.0.0: resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} engines: {node: '>=8'} dependencies: append-transform: 2.0.0 dev: true - /istanbul-lib-instrument/4.0.3: + /istanbul-lib-instrument@4.0.3: resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} engines: {node: '>=8'} dependencies: @@ -8660,7 +9459,7 @@ packages: - supports-color dev: true - /istanbul-lib-processinfo/2.0.2: + /istanbul-lib-processinfo@2.0.2: resolution: {integrity: sha512-kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw==} engines: {node: '>=8'} dependencies: @@ -8673,7 +9472,7 @@ packages: uuid: 3.4.0 dev: true - /istanbul-lib-report/3.0.0: + /istanbul-lib-report@3.0.0: resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} engines: {node: '>=8'} dependencies: @@ -8682,18 +9481,18 @@ packages: supports-color: 7.2.0 dev: true - /istanbul-lib-source-maps/4.0.0: + /istanbul-lib-source-maps@4.0.0: resolution: {integrity: sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==} engines: {node: '>=8'} dependencies: - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) istanbul-lib-coverage: 3.0.0 source-map: 0.6.1 transitivePeerDependencies: - supports-color dev: true - /istanbul-reports/3.0.2: + /istanbul-reports@3.0.2: resolution: {integrity: sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==} engines: {node: '>=8'} dependencies: @@ -8701,23 +9500,33 @@ packages: istanbul-lib-report: 3.0.0 dev: true - /iterate-iterator/1.0.1: + /iterate-iterator@1.0.1: resolution: {integrity: sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw==} dev: true - /iterate-value/1.0.2: + /iterate-value@1.0.2: resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} dependencies: es-get-iterator: 1.1.0 iterate-iterator: 1.0.1 dev: true - /java-properties/1.0.2: + /iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + dependencies: + define-properties: 1.2.1 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + reflect.getprototypeof: 1.0.4 + set-function-name: 2.0.1 + dev: true + + /java-properties@1.0.2: resolution: {integrity: sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==} engines: {node: '>= 0.6.0'} dev: true - /jest-worker/26.1.0: + /jest-worker@26.1.0: resolution: {integrity: sha512-Z9P5pZ6UC+kakMbNJn+tA2RdVdNX5WH1x+5UCBZ9MxIK24pjYtFt96fK+UwBTrjLYm232g1xz0L3eTh51OW+yQ==} engines: {node: '>= 10.14.2'} dependencies: @@ -8725,15 +9534,15 @@ packages: supports-color: 7.1.0 dev: true - /js-tokens/3.0.2: + /js-tokens@3.0.2: resolution: {integrity: sha1-mGbfOVECEw449/mWvOtlRDIJwls=} dev: true - /js-tokens/4.0.0: + /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} dev: true - /js-yaml/3.13.1: + /js-yaml@3.13.1: resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} hasBin: true dependencies: @@ -8741,7 +9550,7 @@ packages: esprima: 4.0.1 dev: true - /js-yaml/3.14.0: + /js-yaml@3.14.0: resolution: {integrity: sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==} hasBin: true dependencies: @@ -8749,65 +9558,65 @@ packages: esprima: 4.0.1 dev: true - /jsbn/0.1.1: + /jsbn@0.1.1: resolution: {integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM=} dev: true optional: true - /jsesc/0.5.0: + /jsesc@0.5.0: resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=} hasBin: true dev: true - /jsesc/1.3.0: + /jsesc@1.3.0: resolution: {integrity: sha1-RsP+yMGJKxKwgz25vHYiF226s0s=} hasBin: true dev: true - /jsesc/2.5.2: + /jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} hasBin: true dev: true - /json-parse-better-errors/1.0.2: + /json-parse-better-errors@1.0.2: resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} dev: true - /json-parse-even-better-errors/2.3.1: + /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: true - /json-schema-traverse/0.4.1: + /json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} dev: true - /json-schema/0.2.3: + /json-schema@0.2.3: resolution: {integrity: sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=} dev: true optional: true - /json-stable-stringify-without-jsonify/1.0.1: + /json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} dev: true - /json-stringify-safe/5.0.1: + /json-stringify-safe@5.0.1: resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=} dev: true - /json5/0.5.1: + /json5@0.5.1: resolution: {integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=} hasBin: true dev: true - /json5/1.0.1: + /json5@1.0.1: resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} hasBin: true dependencies: minimist: 1.2.5 dev: true - /json5/2.1.3: + /json5@2.1.3: resolution: {integrity: sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==} engines: {node: '>=6'} hasBin: true @@ -8815,13 +9624,13 @@ packages: minimist: 1.2.5 dev: true - /jsonfile/4.0.0: + /jsonfile@4.0.0: resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} optionalDependencies: graceful-fs: 4.2.4 dev: true - /jsonfile/6.1.0: + /jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: universalify: 2.0.0 @@ -8829,12 +9638,12 @@ packages: graceful-fs: 4.2.4 dev: true - /jsonparse/1.3.1: + /jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} dev: true - /jsprim/1.4.1: + /jsprim@1.4.1: resolution: {integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=} engines: {'0': node >=0.6.0} dependencies: @@ -8845,31 +9654,41 @@ packages: dev: true optional: true - /kind-of/3.2.2: + /jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + dependencies: + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 + object.assign: 4.1.5 + object.values: 1.1.7 + dev: true + + /kind-of@3.2.2: resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 dev: true - /kind-of/4.0.0: + /kind-of@4.0.0: resolution: {integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 dev: true - /kind-of/5.1.0: + /kind-of@5.1.0: resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} engines: {node: '>=0.10.0'} dev: true - /kind-of/6.0.3: + /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} dev: true - /knex/0.20.15_sqlite3@5.0.0: + /knex@0.20.15(sqlite3@5.0.0): resolution: {integrity: sha512-WHmvgfQfxA5v8pyb9zbskxCS1L1WmYgUbwBhHojlkmdouUOazvroUWlCr6KIKMQ8anXZh1NXOOtIUMnxENZG5Q==} engines: {node: '>=8'} hasBin: true @@ -8911,7 +9730,7 @@ packages: - supports-color dev: true - /knex/0.21.2_sqlite3@5.0.0: + /knex@0.21.2(sqlite3@5.0.0): resolution: {integrity: sha512-hNp9f3yXCHtMrhV2pVsuCNYmPlgXhyqviMQGLBd9zdF03ZqCO9MPng0oYhNMgIs+vDr55VC6tjEbF1OQ1La7Kg==} engines: {node: '>=10'} hasBin: true @@ -8953,19 +9772,30 @@ packages: - supports-color dev: true - /leven/3.1.0: + /language-subtag-registry@0.3.22: + resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} + dev: true + + /language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + dependencies: + language-subtag-registry: 0.3.22 + dev: true + + /leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} dev: true - /levenary/1.1.1: + /levenary@1.1.1: resolution: {integrity: sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==} engines: {node: '>= 6'} dependencies: leven: 3.1.0 dev: true - /levn/0.4.1: + /levn@0.4.1: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} dependencies: @@ -8973,7 +9803,7 @@ packages: type-check: 0.4.0 dev: true - /liftoff/3.1.0: + /liftoff@3.1.0: resolution: {integrity: sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==} engines: {node: '>= 0.8'} dependencies: @@ -8989,11 +9819,11 @@ packages: - supports-color dev: true - /lines-and-columns/1.1.6: + /lines-and-columns@1.1.6: resolution: {integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=} dev: true - /lint-staged/10.2.11: + /lint-staged@10.2.11: resolution: {integrity: sha512-LRRrSogzbixYaZItE2APaS4l2eJMjjf5MbclRZpLJtcQJShcvUzKXsNeZgsLIZ0H0+fg2tL4B59fU9wHIHtFIA==} hasBin: true dependencies: @@ -9005,7 +9835,7 @@ packages: dedent: 0.7.0 enquirer: 2.3.6 execa: 4.0.3 - listr2: 2.2.0_enquirer@2.3.6 + listr2: 2.2.0(enquirer@2.3.6) log-symbols: 4.0.0 micromatch: 4.0.2 normalize-path: 3.0.0 @@ -9016,7 +9846,7 @@ packages: - supports-color dev: true - /listr2/2.2.0_enquirer@2.3.6: + /listr2@2.2.0(enquirer@2.3.6): resolution: {integrity: sha512-Q8qbd7rgmEwDo1nSyHaWQeztfGsdL6rb4uh7BA+Q80AZiDET5rVntiU1+13mu2ZTDVaBVbvAD1Db11rnu3l9sg==} engines: {node: '>=10.0.0'} peerDependencies: @@ -9033,7 +9863,7 @@ packages: through: 2.3.8 dev: true - /load-json-file/2.0.0: + /load-json-file@2.0.0: resolution: {integrity: sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=} engines: {node: '>=4'} dependencies: @@ -9043,7 +9873,7 @@ packages: strip-bom: 3.0.0 dev: true - /load-json-file/4.0.0: + /load-json-file@4.0.0: resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=} engines: {node: '>=4'} dependencies: @@ -9053,7 +9883,7 @@ packages: strip-bom: 3.0.0 dev: true - /locate-path/2.0.0: + /locate-path@2.0.0: resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=} engines: {node: '>=4'} dependencies: @@ -9061,7 +9891,7 @@ packages: path-exists: 3.0.0 dev: true - /locate-path/3.0.0: + /locate-path@3.0.0: resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} engines: {node: '>=6'} dependencies: @@ -9069,87 +9899,87 @@ packages: path-exists: 3.0.0 dev: true - /locate-path/5.0.0: + /locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} dependencies: p-locate: 4.1.0 dev: true - /locate-path/6.0.0: + /locate-path@6.0.0: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} dependencies: p-locate: 5.0.0 dev: true - /lodash.capitalize/4.2.1: + /lodash.capitalize@4.2.1: resolution: {integrity: sha1-+CbJtOKoUR2E46yinbBeGk87cqk=} dev: true - /lodash.escaperegexp/4.1.2: + /lodash.escaperegexp@4.1.2: resolution: {integrity: sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=} dev: true - /lodash.flattendeep/4.4.0: + /lodash.flattendeep@4.4.0: resolution: {integrity: sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=} dev: true - /lodash.ismatch/4.4.0: + /lodash.ismatch@4.4.0: resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} dev: true - /lodash.isplainobject/4.0.6: + /lodash.isplainobject@4.0.6: resolution: {integrity: sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=} dev: true - /lodash.isstring/4.0.1: + /lodash.isstring@4.0.1: resolution: {integrity: sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=} dev: true - /lodash.toarray/4.4.0: + /lodash.toarray@4.4.0: resolution: {integrity: sha1-JMS/zWsvuji/0FlNsRedjptlZWE=} dev: true - /lodash.uniqby/4.7.0: + /lodash.uniqby@4.7.0: resolution: {integrity: sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=} dev: true - /lodash/4.17.15: + /lodash@4.17.15: resolution: {integrity: sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==} dev: true - /lodash/4.17.17: + /lodash@4.17.17: resolution: {integrity: sha512-/B2DjOphAoqi5BX4Gg2oh4UR0Gy/A7xYAMh3aSECEKzwS3eCDEpS0Cals1Ktvxwlal3bBJNc+5W9kNIcADdw5Q==} dev: true - /lodash/4.17.19: + /lodash@4.17.19: resolution: {integrity: sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==} dev: true - /lodash/4.17.20: + /lodash@4.17.20: resolution: {integrity: sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==} dev: true - /lodash/4.17.21: + /lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} dev: true - /log-symbols/3.0.0: + /log-symbols@3.0.0: resolution: {integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==} engines: {node: '>=8'} dependencies: chalk: 2.4.2 dev: true - /log-symbols/4.0.0: + /log-symbols@4.0.0: resolution: {integrity: sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==} engines: {node: '>=10'} dependencies: chalk: 4.1.0 dev: true - /log-update/4.0.0: + /log-update@4.0.0: resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} engines: {node: '>=10'} dependencies: @@ -9159,72 +9989,72 @@ packages: wrap-ansi: 6.2.0 dev: true - /loose-envify/1.4.0: + /loose-envify@1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true dependencies: js-tokens: 4.0.0 dev: true - /lru-cache/6.0.0: + /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} dependencies: yallist: 4.0.0 dev: true - /macos-release/2.4.1: + /macos-release@2.4.1: resolution: {integrity: sha512-H/QHeBIN1fIGJX517pvK8IEK53yQOW7YcEI55oYtgjDdoCQQz7eJS94qt5kNrscReEyuD/JcdFCm2XBEcGOITg==} engines: {node: '>=6'} dev: true - /magic-string/0.25.7: + /magic-string@0.25.7: resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==} dependencies: sourcemap-codec: 1.4.8 dev: true - /make-dir/3.1.0: + /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: semver: 6.3.0 dev: true - /make-error/1.3.6: + /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} dev: true - /make-iterator/1.0.1: + /make-iterator@1.0.1: resolution: {integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==} engines: {node: '>=0.10.0'} dependencies: kind-of: 6.0.3 dev: true - /map-cache/0.2.2: + /map-cache@0.2.2: resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=} engines: {node: '>=0.10.0'} dev: true - /map-obj/1.0.1: + /map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} engines: {node: '>=0.10.0'} dev: true - /map-obj/4.1.0: + /map-obj@4.1.0: resolution: {integrity: sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==} engines: {node: '>=8'} dev: true - /map-visit/1.0.0: + /map-visit@1.0.0: resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=} engines: {node: '>=0.10.0'} dependencies: object-visit: 1.0.1 dev: true - /marked-terminal/4.2.0_marked@2.1.3: + /marked-terminal@4.2.0(marked@2.1.3): resolution: {integrity: sha512-DQfNRV9svZf0Dm9Cf5x5xaVJ1+XjxQW6XjFJ5HFkVyK52SDpj5PCBzS5X5r2w9nHr3mlB0T5201UMLue9fmhUw==} peerDependencies: marked: ^1.0.0 || ^2.0.0 @@ -9238,13 +10068,13 @@ packages: supports-hyperlinks: 2.1.0 dev: true - /marked/2.1.3: + /marked@2.1.3: resolution: {integrity: sha512-/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA==} engines: {node: '>= 10'} hasBin: true dev: true - /meow/7.1.1: + /meow@7.1.1: resolution: {integrity: sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==} engines: {node: '>=10'} dependencies: @@ -9261,16 +10091,16 @@ packages: yargs-parser: 18.1.3 dev: true - /merge-stream/2.0.0: + /merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} dev: true - /merge2/1.4.1: + /merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} dev: true - /micromatch/3.1.10: + /micromatch@3.1.10: resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} engines: {node: '>=0.10.0'} dependencies: @@ -9291,7 +10121,7 @@ packages: - supports-color dev: true - /micromatch/4.0.2: + /micromatch@4.0.2: resolution: {integrity: sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==} engines: {node: '>=8'} dependencies: @@ -9299,7 +10129,7 @@ packages: picomatch: 2.2.2 dev: true - /mikro-orm/3.6.15_sqlite3@5.0.0: + /mikro-orm@3.6.15(sqlite3@5.0.0): resolution: {integrity: sha512-SFyF+b+S5Dx+hvk3CD1Nxs+AkZKZ1e6Cno03Xd5cOxNzGekbz/hFhPoppEwf/bNRfHslZ1Wtw/50NYKeIObZuA==} engines: {node: '>= 8.9.0'} hasBin: true @@ -9330,7 +10160,7 @@ packages: fast-deep-equal: 3.1.3 fs-extra: 8.1.0 globby: 10.0.2 - knex: 0.20.15_sqlite3@5.0.0 + knex: 0.20.15(sqlite3@5.0.0) reflect-metadata: 0.1.13 sqlite3: 5.0.0 ts-morph: 4.3.3 @@ -9344,13 +10174,13 @@ packages: - supports-color dev: true - /mime-db/1.44.0: + /mime-db@1.44.0: resolution: {integrity: sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==} engines: {node: '>= 0.6'} dev: true optional: true - /mime-types/2.1.27: + /mime-types@2.1.27: resolution: {integrity: sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==} engines: {node: '>= 0.6'} dependencies: @@ -9358,29 +10188,35 @@ packages: dev: true optional: true - /mime/2.4.6: + /mime@2.4.6: resolution: {integrity: sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==} engines: {node: '>=4.0.0'} hasBin: true dev: true - /mimic-fn/2.1.0: + /mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} dev: true - /min-indent/1.0.1: + /min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} dev: true - /minimatch/3.0.4: + /minimatch@3.0.4: resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} dependencies: brace-expansion: 1.1.11 dev: true - /minimist-options/4.1.0: + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} dependencies: @@ -9389,24 +10225,24 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.5: + /minimist@1.2.5: resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} dev: true - /minipass/2.9.0: + /minipass@2.9.0: resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==} dependencies: safe-buffer: 5.2.1 yallist: 3.1.1 dev: true - /minizlib/1.3.3: + /minizlib@1.3.3: resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==} dependencies: minipass: 2.9.0 dev: true - /mixin-deep/1.3.2: + /mixin-deep@1.3.2: resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} engines: {node: '>=0.10.0'} dependencies: @@ -9414,20 +10250,20 @@ packages: is-extendable: 1.0.1 dev: true - /mkdirp/0.5.5: + /mkdirp@0.5.5: resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==} hasBin: true dependencies: minimist: 1.2.5 dev: true - /mkdirp/1.0.4: + /mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} hasBin: true dev: true - /mocha/8.0.1: + /mocha@8.0.1: resolution: {integrity: sha512-vefaXfdYI8+Yo8nPZQQi0QO2o+5q9UIMX1jZ1XMmK3+4+CQjc7+B0hPdUeglXiTlr8IHMVRo63IhO9Mzt6fxOg==} engines: {node: '>= 10.12.0'} hasBin: true @@ -9435,7 +10271,7 @@ packages: ansi-colors: 4.1.1 browser-stdout: 1.3.1 chokidar: 3.3.1 - debug: 3.2.6_supports-color@7.1.0 + debug: 3.2.6(supports-color@7.1.0) diff: 4.0.2 escape-string-regexp: 1.0.5 find-up: 4.1.0 @@ -9459,7 +10295,7 @@ packages: yargs-unparser: 1.6.0 dev: true - /mocha/8.1.1: + /mocha@8.1.1: resolution: {integrity: sha512-p7FuGlYH8t7gaiodlFreseLxEmxTgvyG9RgPHODFPySNhwUehu8NIb0vdSt3WFckSneswZ0Un5typYcWElk7HQ==} engines: {node: '>= 10.12.0'} hasBin: true @@ -9467,7 +10303,7 @@ packages: ansi-colors: 4.1.1 browser-stdout: 1.3.1 chokidar: 3.3.1 - debug: 3.2.6_supports-color@7.1.0 + debug: 3.2.6(supports-color@7.1.0) diff: 4.0.2 escape-string-regexp: 1.0.5 find-up: 4.1.0 @@ -9491,7 +10327,7 @@ packages: yargs-unparser: 1.6.1 dev: true - /mocha/8.2.0: + /mocha@8.2.0: resolution: {integrity: sha512-lEWEMq2LMfNJMKeuEwb5UELi+OgFDollXaytR5ggQcHpzG3NP/R7rvixAvF+9/lLsTWhWG+4yD2M70GsM06nxw==} engines: {node: '>= 10.12.0'} hasBin: true @@ -9500,7 +10336,7 @@ packages: ansi-colors: 4.1.1 browser-stdout: 1.3.1 chokidar: 3.4.3 - debug: 4.2.0_supports-color@7.2.0 + debug: 4.2.0(supports-color@7.2.0) diff: 4.0.2 escape-string-regexp: 4.0.0 find-up: 5.0.0 @@ -9523,30 +10359,30 @@ packages: yargs-unparser: 2.0.0 dev: true - /modify-values/1.0.1: + /modify-values@1.0.1: resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} engines: {node: '>=0.10.0'} dev: true - /moment-timezone/0.5.31: + /moment-timezone@0.5.31: resolution: {integrity: sha512-+GgHNg8xRhMXfEbv81iDtrVeTcWt0kWmTEY1XQK14dICTXnWJnT0dxdlPspwqF3keKMVPXwayEsk1DI0AA/jdA==} dependencies: moment: 2.27.0 dev: true - /moment/2.27.0: + /moment@2.27.0: resolution: {integrity: sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ==} dev: true - /ms/2.0.0: + /ms@2.0.0: resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} dev: true - /ms/2.1.2: + /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} dev: true - /multimatch/4.0.0: + /multimatch@4.0.0: resolution: {integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==} engines: {node: '>=8'} dependencies: @@ -9557,7 +10393,7 @@ packages: minimatch: 3.0.4 dev: true - /mz/2.7.0: + /mz@2.7.0: resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} dependencies: any-promise: 1.3.0 @@ -9565,13 +10401,13 @@ packages: thenify-all: 1.6.0 dev: true - /nanoid/3.1.12: + /nanoid@3.1.12: resolution: {integrity: sha512-1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A==} engines: {node: ^10 || ^12 || >=13.7} hasBin: true dev: true - /nanomatch/1.2.13: + /nanomatch@1.2.13: resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} engines: {node: '>=0.10.0'} dependencies: @@ -9590,55 +10426,55 @@ packages: - supports-color dev: true - /natural-compare/1.4.0: + /natural-compare@1.4.0: resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} dev: true - /needle/2.5.0: + /needle@2.5.0: resolution: {integrity: sha512-o/qITSDR0JCyCKEQ1/1bnUXMmznxabbwi/Y4WwJElf+evwJNFNwIDMCCt5IigFVxgeGBJESLohGtIS9gEzo1fA==} engines: {node: '>= 4.4.x'} hasBin: true dependencies: - debug: 3.2.6 + debug: 3.2.6(supports-color@7.1.0) iconv-lite: 0.4.24 sax: 1.2.4 transitivePeerDependencies: - supports-color dev: true - /neo-async/2.6.2: + /neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} dev: true - /nerf-dart/1.0.0: + /nerf-dart@1.0.0: resolution: {integrity: sha1-5tq3/r9a2Bbqgc9cYpxaDr3nLBo=} dev: true - /nice-try/1.0.5: + /nice-try@1.0.5: resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} dev: true - /node-addon-api/2.0.0: + /node-addon-api@2.0.0: resolution: {integrity: sha512-ASCL5U13as7HhOExbT6OlWJJUV/lLzL2voOSP1UVehpRD8FbSrSDjfScK/KwAvVTI5AS6r4VwbOMlIqtvRidnA==} dev: true - /node-emoji/1.10.0: + /node-emoji@1.10.0: resolution: {integrity: sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==} dependencies: lodash.toarray: 4.4.0 dev: true - /node-fetch/2.6.0: + /node-fetch@2.6.0: resolution: {integrity: sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==} engines: {node: 4.x || >=6.0.0} dev: true - /node-fetch/2.6.1: + /node-fetch@2.6.1: resolution: {integrity: sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==} engines: {node: 4.x || >=6.0.0} dev: true - /node-gyp/3.8.0: + /node-gyp@3.8.0: resolution: {integrity: sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==} engines: {node: '>= 0.8.0'} hasBin: true @@ -9659,7 +10495,7 @@ packages: dev: true optional: true - /node-pre-gyp/0.11.0: + /node-pre-gyp@0.11.0: resolution: {integrity: sha512-TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q==} hasBin: true dependencies: @@ -9677,26 +10513,26 @@ packages: - supports-color dev: true - /node-preload/0.2.1: + /node-preload@0.2.1: resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} engines: {node: '>=8'} dependencies: process-on-spawn: 1.0.0 dev: true - /node-releases/1.1.58: + /node-releases@1.1.58: resolution: {integrity: sha512-NxBudgVKiRh/2aPWMgPR7bPTX0VPmGx5QBwCtdHitnqFE5/O8DeBXuIMH1nwNnw/aMo6AjOrpsHzfY3UbUJ7yg==} dev: true - /node-releases/1.1.60: + /node-releases@1.1.60: resolution: {integrity: sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==} dev: true - /node-releases/1.1.65: + /node-releases@1.1.65: resolution: {integrity: sha512-YpzJOe2WFIW0V4ZkJQd/DGR/zdVwc/pI4Nl1CZrBO19FdRcSTmsuhdttw9rsTzzJLrNcSloLiBbEYx1C4f6gpA==} dev: true - /nopt/3.0.6: + /nopt@3.0.6: resolution: {integrity: sha1-xkZdvwirzU2zWTF/eaxopkayj/k=} hasBin: true dependencies: @@ -9704,7 +10540,7 @@ packages: dev: true optional: true - /nopt/4.0.3: + /nopt@4.0.3: resolution: {integrity: sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==} hasBin: true dependencies: @@ -9712,7 +10548,7 @@ packages: osenv: 0.1.5 dev: true - /normalize-package-data/2.5.0: + /normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.8 @@ -9721,32 +10557,32 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-path/3.0.0: + /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} dev: true - /normalize-url/5.1.0: + /normalize-url@5.1.0: resolution: {integrity: sha512-UxHuSWsSAmzSqN+DSjasaZWQ3QPtEisHdlr4y9MJ5zg0RcImv5fQt8QM0izJSCdsdmhJGK+ubcTpJXwVDmwSVQ==} engines: {node: '>=10'} dev: true - /normalize-url/5.3.0: + /normalize-url@5.3.0: resolution: {integrity: sha512-9/nOVLYYe/dO/eJeQUNaGUF4m4Z5E7cb9oNTKabH+bNf19mqj60txTcveQxL0GlcWLXCxkOu2/LwL8oW0idIDA==} engines: {node: '>=10'} dev: true - /npm-bundled/1.1.1: + /npm-bundled@1.1.1: resolution: {integrity: sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==} dependencies: npm-normalize-package-bin: 1.0.1 dev: true - /npm-normalize-package-bin/1.0.1: + /npm-normalize-package-bin@1.0.1: resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} dev: true - /npm-packlist/1.4.8: + /npm-packlist@1.4.8: resolution: {integrity: sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==} dependencies: ignore-walk: 3.0.3 @@ -9754,21 +10590,21 @@ packages: npm-normalize-package-bin: 1.0.1 dev: true - /npm-run-path/2.0.2: + /npm-run-path@2.0.2: resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=} engines: {node: '>=4'} dependencies: path-key: 2.0.1 dev: true - /npm-run-path/4.0.1: + /npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} dependencies: path-key: 3.1.1 dev: true - /npm/6.14.7: + /npm@6.14.7: resolution: {integrity: sha512-swhsdpNpyXg4GbM6LpOQ6qaloQuIKizZ+Zh6JPXJQc59ka49100Js0WvZx594iaKSoFgkFq2s8uXFHS3/Xy2WQ==} engines: {node: 6 >=6.2.0 || 8 || >=9.3.0} hasBin: true @@ -9898,7 +10734,7 @@ packages: - worker-farm - write-file-atomic - /npm/6.14.8: + /npm@6.14.8: resolution: {integrity: sha512-HBZVBMYs5blsj94GTeQZel7s9odVuuSUHy1+AlZh7rPVux1os2ashvEGLy/STNK7vUjbrCg5Kq9/GXisJgdf6A==} engines: {node: 6 >=6.2.0 || 8 || >=9.3.0} hasBin: true @@ -10028,7 +10864,7 @@ packages: - worker-farm - write-file-atomic - /npmlog/4.1.2: + /npmlog@4.1.2: resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} dependencies: are-we-there-yet: 1.1.5 @@ -10037,12 +10873,12 @@ packages: set-blocking: 2.0.0 dev: true - /number-is-nan/1.0.1: + /number-is-nan@1.0.1: resolution: {integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=} engines: {node: '>=0.10.0'} dev: true - /nyc/15.1.0: + /nyc@15.1.0: resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} engines: {node: '>=8.9'} hasBin: true @@ -10078,17 +10914,17 @@ packages: - supports-color dev: true - /oauth-sign/0.9.0: + /oauth-sign@0.9.0: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} dev: true optional: true - /object-assign/4.1.1: + /object-assign@4.1.1: resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} engines: {node: '>=0.10.0'} dev: true - /object-copy/0.1.0: + /object-copy@0.1.0: resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=} engines: {node: '>=0.10.0'} dependencies: @@ -10097,23 +10933,27 @@ packages: kind-of: 3.2.2 dev: true - /object-inspect/1.8.0: + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + dev: true + + /object-inspect@1.8.0: resolution: {integrity: sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==} dev: true - /object-keys/1.1.1: + /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} dev: true - /object-visit/1.0.1: + /object-visit@1.0.1: resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true - /object.assign/4.1.0: + /object.assign@4.1.0: resolution: {integrity: sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==} engines: {node: '>= 0.4'} dependencies: @@ -10123,7 +10963,7 @@ packages: object-keys: 1.1.1 dev: true - /object.assign/4.1.2: + /object.assign@4.1.2: resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} engines: {node: '>= 0.4'} dependencies: @@ -10133,7 +10973,17 @@ packages: object-keys: 1.1.1 dev: true - /object.defaults/1.1.0: + /object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.defaults@1.1.0: resolution: {integrity: sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=} engines: {node: '>=0.10.0'} dependencies: @@ -10143,7 +10993,7 @@ packages: isobject: 3.0.1 dev: true - /object.entries/1.1.2: + /object.entries@1.1.2: resolution: {integrity: sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==} engines: {node: '>= 0.4'} dependencies: @@ -10152,7 +11002,32 @@ packages: has: 1.0.3 dev: true - /object.map/1.0.1: + /object.entries@1.1.7: + resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /object.fromentries@2.0.7: + resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /object.hasown@1.1.3: + resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} + dependencies: + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /object.map@1.0.1: resolution: {integrity: sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=} engines: {node: '>=0.10.0'} dependencies: @@ -10160,14 +11035,14 @@ packages: make-iterator: 1.0.1 dev: true - /object.pick/1.3.0: + /object.pick@1.3.0: resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true - /object.values/1.1.1: + /object.values@1.1.1: resolution: {integrity: sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==} engines: {node: '>= 0.4'} dependencies: @@ -10177,7 +11052,16 @@ packages: has: 1.0.3 dev: true - /objection/2.2.1_knex@0.21.2: + /object.values@1.1.7: + resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /objection@2.2.1(knex@0.21.2): resolution: {integrity: sha512-VY/OGLlLpHwIHck9/HC9meSpjE9w2b4ufxDu/igVCowyDajmcU3AwRmaqKQP8MhMCLPZKSj8gqIAQ5m5zpV5YA==} engines: {node: '>=8.0.0'} peerDependencies: @@ -10185,35 +11069,35 @@ packages: dependencies: ajv: 6.12.3 db-errors: 0.2.3 - knex: 0.21.2_sqlite3@5.0.0 + knex: 0.21.2(sqlite3@5.0.0) dev: true - /once/1.4.0: + /once@1.4.0: resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} dependencies: wrappy: 1.0.2 dev: true - /onetime/5.1.0: + /onetime@5.1.0: resolution: {integrity: sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==} engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 dev: true - /onetime/5.1.2: + /onetime@5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 dev: true - /opencollective-postinstall/2.0.3: + /opencollective-postinstall@2.0.3: resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==} hasBin: true dev: true - /optionator/0.9.1: + /optionator@0.9.1: resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} engines: {node: '>= 0.8.0'} dependencies: @@ -10225,12 +11109,12 @@ packages: word-wrap: 1.2.3 dev: true - /os-homedir/1.0.2: + /os-homedir@1.0.2: resolution: {integrity: sha1-/7xJiDNuDoM94MFox+8VISGqf7M=} engines: {node: '>=0.10.0'} dev: true - /os-name/3.1.0: + /os-name@3.1.0: resolution: {integrity: sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==} engines: {node: '>=6'} dependencies: @@ -10238,114 +11122,114 @@ packages: windows-release: 3.3.3 dev: true - /os-tmpdir/1.0.2: + /os-tmpdir@1.0.2: resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=} engines: {node: '>=0.10.0'} dev: true - /osenv/0.1.5: + /osenv@0.1.5: resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==} dependencies: os-homedir: 1.0.2 os-tmpdir: 1.0.2 dev: true - /p-each-series/2.1.0: + /p-each-series@2.1.0: resolution: {integrity: sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==} engines: {node: '>=8'} dev: true - /p-filter/2.1.0: + /p-filter@2.1.0: resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} engines: {node: '>=8'} dependencies: p-map: 2.1.0 dev: true - /p-finally/1.0.0: + /p-finally@1.0.0: resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=} engines: {node: '>=4'} dev: true - /p-is-promise/3.0.0: + /p-is-promise@3.0.0: resolution: {integrity: sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==} engines: {node: '>=8'} dev: true - /p-limit/1.3.0: + /p-limit@1.3.0: resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} engines: {node: '>=4'} dependencies: p-try: 1.0.0 dev: true - /p-limit/2.3.0: + /p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} dependencies: p-try: 2.2.0 dev: true - /p-limit/3.0.2: + /p-limit@3.0.2: resolution: {integrity: sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==} engines: {node: '>=10'} dependencies: p-try: 2.2.0 dev: true - /p-locate/2.0.0: + /p-locate@2.0.0: resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} engines: {node: '>=4'} dependencies: p-limit: 1.3.0 dev: true - /p-locate/3.0.0: + /p-locate@3.0.0: resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} engines: {node: '>=6'} dependencies: p-limit: 2.3.0 dev: true - /p-locate/4.1.0: + /p-locate@4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} engines: {node: '>=8'} dependencies: p-limit: 2.3.0 dev: true - /p-locate/5.0.0: + /p-locate@5.0.0: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} dependencies: p-limit: 3.0.2 dev: true - /p-map/2.1.0: + /p-map@2.1.0: resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} engines: {node: '>=6'} dev: true - /p-map/3.0.0: + /p-map@3.0.0: resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} engines: {node: '>=8'} dependencies: aggregate-error: 3.1.0 dev: true - /p-map/4.0.0: + /p-map@4.0.0: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} engines: {node: '>=10'} dependencies: aggregate-error: 3.0.1 dev: true - /p-reduce/2.1.0: + /p-reduce@2.1.0: resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} engines: {node: '>=8'} dev: true - /p-retry/4.2.0: + /p-retry@4.2.0: resolution: {integrity: sha512-jPH38/MRh263KKcq0wBNOGFJbm+U6784RilTmHjB/HM9kH9V8WlCpVUcdOmip9cjXOh6MxZ5yk1z2SjDUJfWmA==} engines: {node: '>=8'} dependencies: @@ -10353,17 +11237,17 @@ packages: retry: 0.12.0 dev: true - /p-try/1.0.0: + /p-try@1.0.0: resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=} engines: {node: '>=4'} dev: true - /p-try/2.2.0: + /p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} dev: true - /package-hash/4.0.0: + /package-hash@4.0.0: resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} engines: {node: '>=8'} dependencies: @@ -10373,19 +11257,19 @@ packages: release-zalgo: 1.0.0 dev: true - /parent-module/1.0.1: + /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} dependencies: callsites: 3.1.0 dev: true - /parent-require/1.0.0: + /parent-require@1.0.0: resolution: {integrity: sha1-dGoWdjgIOoYLDu9nMssn7UbDKXc=} engines: {node: '>= 0.4.0'} dev: true - /parse-filepath/1.0.2: + /parse-filepath@1.0.2: resolution: {integrity: sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=} engines: {node: '>=0.8'} dependencies: @@ -10394,14 +11278,14 @@ packages: path-root: 0.1.1 dev: true - /parse-json/2.2.0: + /parse-json@2.2.0: resolution: {integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=} engines: {node: '>=0.10.0'} dependencies: error-ex: 1.3.2 dev: true - /parse-json/4.0.0: + /parse-json@4.0.0: resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=} engines: {node: '>=4'} dependencies: @@ -10409,7 +11293,7 @@ packages: json-parse-better-errors: 1.0.2 dev: true - /parse-json/5.1.0: + /parse-json@5.1.0: resolution: {integrity: sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==} engines: {node: '>=8'} dependencies: @@ -10419,112 +11303,116 @@ packages: lines-and-columns: 1.1.6 dev: true - /parse-passwd/1.0.0: + /parse-passwd@1.0.0: resolution: {integrity: sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=} engines: {node: '>=0.10.0'} dev: true - /parse5-htmlparser2-tree-adapter/5.1.1: + /parse5-htmlparser2-tree-adapter@5.1.1: resolution: {integrity: sha512-CF+TKjXqoqyDwHqBhFQ+3l5t83xYi6fVT1tQNg+Ye0JRLnTxWvIroCjEp1A0k4lneHNBGnICUf0cfYVYGEazqw==} dependencies: parse5: 5.1.1 dev: true - /parse5/5.1.1: + /parse5@5.1.1: resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} dev: true - /pascalcase/0.1.1: + /pascalcase@0.1.1: resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=} engines: {node: '>=0.10.0'} dev: true - /path-exists/3.0.0: + /path-exists@3.0.0: resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} engines: {node: '>=4'} dev: true - /path-exists/4.0.0: + /path-exists@4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} dev: true - /path-is-absolute/1.0.1: + /path-is-absolute@1.0.1: resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} engines: {node: '>=0.10.0'} dev: true - /path-key/2.0.1: + /path-key@2.0.1: resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=} engines: {node: '>=4'} dev: true - /path-key/3.1.1: + /path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} dev: true - /path-parse/1.0.6: + /path-parse@1.0.6: resolution: {integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==} dev: true - /path-root-regex/0.1.2: + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + + /path-root-regex@0.1.2: resolution: {integrity: sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=} engines: {node: '>=0.10.0'} dev: true - /path-root/0.1.1: + /path-root@0.1.1: resolution: {integrity: sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=} engines: {node: '>=0.10.0'} dependencies: path-root-regex: 0.1.2 dev: true - /path-type/2.0.0: + /path-type@2.0.0: resolution: {integrity: sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=} engines: {node: '>=4'} dependencies: pify: 2.3.0 dev: true - /path-type/4.0.0: + /path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} dev: true - /pathval/1.1.0: + /pathval@1.1.0: resolution: {integrity: sha1-uULm1L3mUwBe9rcTYd74cn0GReA=} dev: true - /performance-now/2.1.0: + /performance-now@2.1.0: resolution: {integrity: sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=} dev: true optional: true - /pg-connection-string/2.1.0: + /pg-connection-string@2.1.0: resolution: {integrity: sha512-bhlV7Eq09JrRIvo1eKngpwuqKtJnNhZdpdOlvrPrA4dxqXPjxSrbNrfnIDmTpwMyRszrcV4kU5ZA4mMsQUrjdg==} dev: true - /pg-connection-string/2.3.0: + /pg-connection-string@2.3.0: resolution: {integrity: sha512-ukMTJXLI7/hZIwTW7hGMZJ0Lj0S2XQBCJ4Shv4y1zgQ/vqVea+FLhzywvPj0ujSuofu+yA4MYHGZPTsgjBgJ+w==} dev: true - /picomatch/2.2.2: + /picomatch@2.2.2: resolution: {integrity: sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==} engines: {node: '>=8.6'} dev: true - /pify/2.3.0: + /pify@2.3.0: resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=} engines: {node: '>=0.10.0'} dev: true - /pify/3.0.0: + /pify@3.0.0: resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=} engines: {node: '>=4'} dev: true - /pkg-conf/2.1.0: + /pkg-conf@2.1.0: resolution: {integrity: sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=} engines: {node: '>=4'} dependencies: @@ -10532,65 +11420,65 @@ packages: load-json-file: 4.0.0 dev: true - /pkg-dir/2.0.0: + /pkg-dir@2.0.0: resolution: {integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=} engines: {node: '>=4'} dependencies: find-up: 2.1.0 dev: true - /pkg-dir/4.2.0: + /pkg-dir@4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} dependencies: find-up: 4.1.0 dev: true - /pkg-up/2.0.0: + /pkg-up@2.0.0: resolution: {integrity: sha1-yBmscoBZpGHKscOImivjxJoATX8=} engines: {node: '>=4'} dependencies: find-up: 2.1.0 dev: true - /please-upgrade-node/3.2.0: + /please-upgrade-node@3.2.0: resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} dependencies: semver-compare: 1.0.0 dev: true - /posix-character-classes/0.1.1: + /posix-character-classes@0.1.1: resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=} engines: {node: '>=0.10.0'} dev: true - /prelude-ls/1.2.1: + /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} dev: true - /private/0.1.8: + /private@0.1.8: resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} engines: {node: '>= 0.6'} dev: true - /process-nextick-args/2.0.1: + /process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} dev: true - /process-on-spawn/1.0.0: + /process-on-spawn@1.0.0: resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} engines: {node: '>=8'} dependencies: fromentries: 1.3.1 dev: true - /progress/2.0.3: + /progress@2.0.3: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} dev: true - /promise.allsettled/1.0.2: + /promise.allsettled@1.0.2: resolution: {integrity: sha512-UpcYW5S1RaNKT6pd+s9jp9K9rlQge1UXKskec0j6Mmuq7UJCvlS2J2/s/yuPN8ehftf9HXMxWlKiPbGGUzpoRg==} engines: {node: '>= 0.4'} dependencies: @@ -10601,46 +11489,54 @@ packages: iterate-value: 1.0.2 dev: true - /psl/1.8.0: + /prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + dev: true + + /psl@1.8.0: resolution: {integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==} dev: true optional: true - /pump/3.0.0: + /pump@3.0.0: resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} dependencies: end-of-stream: 1.4.4 once: 1.4.0 dev: true - /punycode/2.1.1: + /punycode@2.1.1: resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} engines: {node: '>=6'} dev: true - /q/1.5.1: + /q@1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} dev: true - /qs/6.5.2: + /qs@6.5.2: resolution: {integrity: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==} engines: {node: '>=0.6'} dev: true optional: true - /quick-lru/4.0.1: + /quick-lru@4.0.1: resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} engines: {node: '>=8'} dev: true - /randombytes/2.1.0: + /randombytes@2.1.0: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 dev: true - /rc/1.2.8: + /rc@1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true dependencies: @@ -10650,7 +11546,11 @@ packages: strip-json-comments: 2.0.1 dev: true - /read-pkg-up/2.0.0: + /react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + dev: true + + /read-pkg-up@2.0.0: resolution: {integrity: sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=} engines: {node: '>=4'} dependencies: @@ -10658,7 +11558,7 @@ packages: read-pkg: 2.0.0 dev: true - /read-pkg-up/7.0.1: + /read-pkg-up@7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} engines: {node: '>=8'} dependencies: @@ -10667,7 +11567,7 @@ packages: type-fest: 0.8.1 dev: true - /read-pkg/2.0.0: + /read-pkg@2.0.0: resolution: {integrity: sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=} engines: {node: '>=4'} dependencies: @@ -10676,7 +11576,7 @@ packages: path-type: 2.0.0 dev: true - /read-pkg/5.2.0: + /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: @@ -10686,7 +11586,7 @@ packages: type-fest: 0.6.0 dev: true - /readable-stream/2.3.7: + /readable-stream@2.3.7: resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==} dependencies: core-util-is: 1.0.2 @@ -10698,7 +11598,7 @@ packages: util-deprecate: 1.0.2 dev: true - /readable-stream/3.6.0: + /readable-stream@3.6.0: resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} engines: {node: '>= 6'} dependencies: @@ -10707,28 +11607,28 @@ packages: util-deprecate: 1.0.2 dev: true - /readdirp/3.3.0: + /readdirp@3.3.0: resolution: {integrity: sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ==} engines: {node: '>=8.10.0'} dependencies: picomatch: 2.2.2 dev: true - /readdirp/3.5.0: + /readdirp@3.5.0: resolution: {integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==} engines: {node: '>=8.10.0'} dependencies: picomatch: 2.2.2 dev: true - /rechoir/0.6.2: + /rechoir@0.6.2: resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=} engines: {node: '>= 0.10'} dependencies: resolve: 1.17.0 dev: true - /redent/3.0.0: + /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} dependencies: @@ -10736,57 +11636,73 @@ packages: strip-indent: 3.0.0 dev: true - /redeyed/2.1.1: + /redeyed@2.1.1: resolution: {integrity: sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=} dependencies: esprima: 4.0.1 dev: true - /reflect-metadata/0.1.13: + /reflect-metadata@0.1.13: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} dev: true - /regenerate-unicode-properties/8.2.0: + /reflect.getprototypeof@1.0.4: + resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + which-builtin-type: 1.1.3 + dev: true + + /regenerate-unicode-properties@8.2.0: resolution: {integrity: sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 dev: true - /regenerate/1.4.1: + /regenerate@1.4.1: resolution: {integrity: sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==} dev: true - /regenerate/1.4.2: + /regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} dev: true - /regenerator-runtime/0.11.1: + /regenerator-runtime@0.11.1: resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} dev: true - /regenerator-runtime/0.13.5: + /regenerator-runtime@0.13.5: resolution: {integrity: sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==} dev: true - /regenerator-runtime/0.13.7: + /regenerator-runtime@0.13.7: resolution: {integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==} dev: true - /regenerator-transform/0.14.4: + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + dev: true + + /regenerator-transform@0.14.4: resolution: {integrity: sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==} dependencies: '@babel/runtime': 7.10.2 private: 0.1.8 dev: true - /regenerator-transform/0.14.5: + /regenerator-transform@0.14.5: resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==} dependencies: '@babel/runtime': 7.12.1 dev: true - /regex-not/1.0.2: + /regex-not@1.0.2: resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} engines: {node: '>=0.10.0'} dependencies: @@ -10794,12 +11710,21 @@ packages: safe-regex: 1.1.0 dev: true - /regexpp/3.1.0: + /regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 + dev: true + + /regexpp@3.1.0: resolution: {integrity: sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==} engines: {node: '>=8'} dev: true - /regexpu-core/4.7.0: + /regexpu-core@4.7.0: resolution: {integrity: sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==} engines: {node: '>=4'} dependencies: @@ -10811,7 +11736,7 @@ packages: unicode-match-property-value-ecmascript: 1.2.0 dev: true - /regexpu-core/4.7.1: + /regexpu-core@4.7.1: resolution: {integrity: sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==} engines: {node: '>=4'} dependencies: @@ -10823,49 +11748,49 @@ packages: unicode-match-property-value-ecmascript: 1.2.0 dev: true - /registry-auth-token/4.2.0: + /registry-auth-token@4.2.0: resolution: {integrity: sha512-P+lWzPrsgfN+UEpDS3U8AQKg/UjZX6mQSJueZj3EK+vNESoqBSpBUD3gmu4sF9lOsjXWjF11dQKUqemf3veq1w==} engines: {node: '>=6.0.0'} dependencies: rc: 1.2.8 dev: true - /regjsgen/0.5.2: + /regjsgen@0.5.2: resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==} dev: true - /regjsparser/0.6.4: + /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: + /release-zalgo@1.0.0: resolution: {integrity: sha1-CXALflB0Mpc5Mw5TXFqQ+2eFFzA=} engines: {node: '>=4'} dependencies: es6-error: 4.1.1 dev: true - /repeat-element/1.1.3: + /repeat-element@1.1.3: resolution: {integrity: sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==} engines: {node: '>=0.10.0'} dev: true - /repeat-string/1.6.1: + /repeat-string@1.6.1: resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=} engines: {node: '>=0.10'} dev: true - /repeating/2.0.1: + /repeating@2.0.1: resolution: {integrity: sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=} engines: {node: '>=0.10.0'} dependencies: is-finite: 1.1.0 dev: true - /request/2.88.2: + /request@2.88.2: resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} engines: {node: '>= 6'} deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 @@ -10893,16 +11818,16 @@ packages: dev: true optional: true - /require-directory/2.1.1: + /require-directory@2.1.1: resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} engines: {node: '>=0.10.0'} dev: true - /require-main-filename/2.0.0: + /require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} dev: true - /resolve-dir/1.0.1: + /resolve-dir@1.0.1: resolution: {integrity: sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=} engines: {node: '>=0.10.0'} dependencies: @@ -10910,35 +11835,44 @@ packages: global-modules: 1.0.0 dev: true - /resolve-from/4.0.0: + /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} dev: true - /resolve-from/5.0.0: + /resolve-from@5.0.0: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} dev: true - /resolve-url/0.2.1: + /resolve-url@0.2.1: resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=} deprecated: https://github.com/lydell/resolve-url#deprecated dev: true - /resolve/1.17.0: + /resolve@1.17.0: resolution: {integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==} dependencies: path-parse: 1.0.6 dev: true - /resolve/1.18.1: + /resolve@1.18.1: resolution: {integrity: sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==} dependencies: is-core-module: 2.0.0 path-parse: 1.0.6 dev: true - /restore-cursor/3.1.0: + /resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /restore-cursor@3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} dependencies: @@ -10946,49 +11880,49 @@ packages: signal-exit: 3.0.3 dev: true - /ret/0.1.15: + /ret@0.1.15: resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} engines: {node: '>=0.12'} dev: true - /retry-as-promised/3.2.0: + /retry-as-promised@3.2.0: resolution: {integrity: sha512-CybGs60B7oYU/qSQ6kuaFmRd9sTZ6oXSc0toqePvV74Ac6/IFZSI1ReFQmtCN+uvW1Mtqdwpvt/LGOiCBAY2Mg==} dependencies: any-promise: 1.3.0 dev: true - /retry/0.12.0: + /retry@0.12.0: resolution: {integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=} engines: {node: '>= 4'} dev: true - /reusify/1.0.4: + /reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} dev: true - /rimraf/2.6.3: + /rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} hasBin: true dependencies: glob: 7.1.6 dev: true - /rimraf/2.7.1: + /rimraf@2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true dependencies: glob: 7.1.6 dev: true - /rimraf/3.0.2: + /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: glob: 7.1.6 dev: true - /rollup-plugin-terser/6.1.0_rollup@2.15.0: + /rollup-plugin-terser@6.1.0(rollup@2.15.0): resolution: {integrity: sha512-4fB3M9nuoWxrwm39habpd4hvrbrde2W2GG4zEGPQg1YITNkM3Tqur5jSuXlWNzbv/2aMLJ+dZJaySc3GCD8oDw==} peerDependencies: rollup: ^2.0.0 @@ -11000,7 +11934,7 @@ packages: terser: 4.8.0 dev: true - /rollup-plugin-terser/6.1.0_rollup@2.18.2: + /rollup-plugin-terser@6.1.0(rollup@2.18.2): resolution: {integrity: sha512-4fB3M9nuoWxrwm39habpd4hvrbrde2W2GG4zEGPQg1YITNkM3Tqur5jSuXlWNzbv/2aMLJ+dZJaySc3GCD8oDw==} peerDependencies: rollup: ^2.0.0 @@ -11012,7 +11946,7 @@ packages: terser: 4.8.0 dev: true - /rollup-plugin-terser/6.1.0_rollup@2.23.1: + /rollup-plugin-terser@6.1.0(rollup@2.23.1): resolution: {integrity: sha512-4fB3M9nuoWxrwm39habpd4hvrbrde2W2GG4zEGPQg1YITNkM3Tqur5jSuXlWNzbv/2aMLJ+dZJaySc3GCD8oDw==} peerDependencies: rollup: ^2.0.0 @@ -11024,7 +11958,7 @@ packages: terser: 4.8.0 dev: true - /rollup-plugin-terser/6.1.0_rollup@2.33.1: + /rollup-plugin-terser@6.1.0(rollup@2.33.1): resolution: {integrity: sha512-4fB3M9nuoWxrwm39habpd4hvrbrde2W2GG4zEGPQg1YITNkM3Tqur5jSuXlWNzbv/2aMLJ+dZJaySc3GCD8oDw==} peerDependencies: rollup: ^2.0.0 @@ -11036,7 +11970,7 @@ packages: terser: 4.8.0 dev: true - /rollup/2.15.0: + /rollup@2.15.0: resolution: {integrity: sha512-HAk4kyXiV5sdNDnbKWk5zBPnkX/DAgx09Kbp8rRIRDVsTUVN3vnSowR7ZHkV6/lAiE6c2TQ8HtYb72aCPGW4Jw==} engines: {node: '>=10.0.0'} hasBin: true @@ -11044,7 +11978,7 @@ packages: fsevents: 2.1.3 dev: true - /rollup/2.18.2: + /rollup@2.18.2: resolution: {integrity: sha512-+mzyZhL9ZyLB3eHBISxRNTep9Z2qCuwXzAYkUbFyz7yNKaKH03MFKeiGOS1nv2uvPgDb4ASKv+FiS5mC4h5IFQ==} engines: {node: '>=10.0.0'} hasBin: true @@ -11052,7 +11986,7 @@ packages: fsevents: 2.1.3 dev: true - /rollup/2.23.1: + /rollup@2.23.1: resolution: {integrity: sha512-Heyl885+lyN/giQwxA8AYT2GY3U+gOlTqVLrMQYno8Z1X9lAOpfXPiKiZCyPc25e9BLJM3Zlh957dpTlO4pa8A==} engines: {node: '>=10.0.0'} hasBin: true @@ -11060,7 +11994,7 @@ packages: fsevents: 2.1.3 dev: true - /rollup/2.33.1: + /rollup@2.33.1: resolution: {integrity: sha512-uY4O/IoL9oNW8MMcbA5hcOaz6tZTMIh7qJHx/tzIJm+n1wLoY38BLn6fuy7DhR57oNFLMbDQtDeJoFURt5933w==} engines: {node: '>=10.0.0'} hasBin: true @@ -11068,52 +12002,71 @@ packages: fsevents: 2.1.3 dev: true - /run-parallel/1.1.10: + /run-parallel@1.1.10: resolution: {integrity: sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==} dev: true - /rxjs/6.6.0: + /rxjs@6.6.0: resolution: {integrity: sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg==} engines: {npm: '>=2.0.0'} dependencies: tslib: 1.13.0 dev: true - /safe-buffer/5.1.2: + /safe-array-concat@1.0.1: + resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + isarray: 2.0.5 + dev: true + + /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} dev: true - /safe-buffer/5.2.1: + /safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} dev: true - /safe-regex/1.1.0: + /safe-regex-test@1.0.2: + resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-regex: 1.1.4 + dev: true + + /safe-regex@1.1.0: resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=} dependencies: ret: 0.1.15 dev: true - /safer-buffer/2.1.2: + /safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true - /sax/1.2.4: + /sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} dev: true - /semantic-release/17.4.7: + /semantic-release@17.4.7: resolution: {integrity: sha512-3Ghu8mKCJgCG3QzE5xphkYWM19lGE3XjFdOXQIKBM2PBpBvgFQ/lXv31oX0+fuN/UjNFO/dqhNs8ATLBhg6zBg==} engines: {node: '>=10.19'} hasBin: true dependencies: - '@semantic-release/commit-analyzer': 8.0.1_semantic-release@17.4.7 + '@semantic-release/commit-analyzer': 8.0.1(semantic-release@17.4.7) '@semantic-release/error': 2.2.0 - '@semantic-release/github': 7.1.1_semantic-release@17.4.7 - '@semantic-release/npm': 7.0.6_semantic-release@17.4.7 - '@semantic-release/release-notes-generator': 9.0.1_semantic-release@17.4.7 + '@semantic-release/github': 7.1.1(semantic-release@17.4.7) + '@semantic-release/npm': 7.0.6(semantic-release@17.4.7) + '@semantic-release/release-notes-generator': 9.0.1(semantic-release@17.4.7) aggregate-error: 3.1.0 cosmiconfig: 7.1.0 - debug: 4.2.0 + debug: 4.2.0(supports-color@7.2.0) env-ci: 5.0.2 execa: 5.1.1 figures: 3.2.0 @@ -11124,7 +12077,7 @@ packages: hosted-git-info: 4.1.0 lodash: 4.17.21 marked: 2.1.3 - marked-terminal: 4.2.0_marked@2.1.3 + marked-terminal: 4.2.0(marked@2.1.3) micromatch: 4.0.2 p-each-series: 2.1.0 p-reduce: 2.1.0 @@ -11138,60 +12091,65 @@ packages: - supports-color dev: true - /semver-compare/1.0.0: + /semver-compare@1.0.0: resolution: {integrity: sha1-De4hahyUGrN+nvsXiPavxf9VN/w=} dev: true - /semver-diff/3.1.1: + /semver-diff@3.1.1: resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} engines: {node: '>=8'} dependencies: semver: 6.3.0 dev: true - /semver-regex/2.0.0: + /semver-regex@2.0.0: resolution: {integrity: sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==} engines: {node: '>=6'} dev: true - /semver-regex/3.1.4: + /semver-regex@3.1.4: resolution: {integrity: sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==} engines: {node: '>=8'} dev: true - /semver/5.3.0: + /semver@5.3.0: resolution: {integrity: sha1-myzl094C0XxgEq0yaqa00M9U+U8=} hasBin: true dev: true optional: true - /semver/5.7.1: + /semver@5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} hasBin: true dev: true - /semver/6.3.0: + /semver@6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true dev: true - /semver/7.0.0: + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + dev: true + + /semver@7.0.0: resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} hasBin: true dev: true - /semver/7.3.2: + /semver@7.3.2: resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==} engines: {node: '>=10'} hasBin: true dev: true - /sequelize-pool/6.1.0: + /sequelize-pool@6.1.0: resolution: {integrity: sha512-4YwEw3ZgK/tY/so+GfnSgXkdwIJJ1I32uZJztIEgZeAO6HMgj64OzySbWLgxj+tXhZCJnzRfkY9gINw8Ft8ZMg==} engines: {node: '>= 10.0.0'} dev: true - /sequelize/6.3.4_sqlite3@5.0.0: + /sequelize@6.3.4(sqlite3@5.0.0): resolution: {integrity: sha512-W6Y96N5QHTgEz5Q37v2GYbKufSXaw0b3v4rCLTPbcCMfIG0MHI42Ozp7IwiyV9bdNkfFEdY7XP8R6lWrWg4hUw==} engines: {node: '>=10.0.0'} peerDependencies: @@ -11233,33 +12191,53 @@ packages: - supports-color dev: true - /serialize-javascript/3.0.0: + /serialize-javascript@3.0.0: resolution: {integrity: sha512-skZcHYw2vEX4bw90nAr2iTTsz6x2SrHEnfxgKYmZlvJYBEZrvbKtobJWlQ20zczKb3bsHHXXTYt48zBA7ni9cw==} dev: true - /serialize-javascript/3.1.0: + /serialize-javascript@3.1.0: resolution: {integrity: sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg==} dependencies: randombytes: 2.1.0 dev: true - /serialize-javascript/4.0.0: + /serialize-javascript@4.0.0: resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} dependencies: randombytes: 2.1.0 dev: true - /serialize-javascript/5.0.1: + /serialize-javascript@5.0.1: resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} dependencies: randombytes: 2.1.0 dev: true - /set-blocking/2.0.0: + /set-blocking@2.0.0: resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=} dev: true - /set-value/2.0.1: + /set-function-length@1.2.0: + resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + dev: true + + /set-value@2.0.1: resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} engines: {node: '>=0.10.0'} dependencies: @@ -11269,7 +12247,7 @@ packages: split-string: 3.1.0 dev: true - /sha.js/2.4.11: + /sha.js@2.4.11: resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} hasBin: true dependencies: @@ -11277,35 +12255,43 @@ packages: safe-buffer: 5.2.1 dev: true - /shebang-command/1.2.0: + /shebang-command@1.2.0: resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=} engines: {node: '>=0.10.0'} dependencies: shebang-regex: 1.0.0 dev: true - /shebang-command/2.0.0: + /shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 dev: true - /shebang-regex/1.0.0: + /shebang-regex@1.0.0: resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=} engines: {node: '>=0.10.0'} dev: true - /shebang-regex/3.0.0: + /shebang-regex@3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} dev: true - /signal-exit/3.0.3: + /side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 + dev: true + + /signal-exit@3.0.3: resolution: {integrity: sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==} dev: true - /signale/1.4.0: + /signale@1.4.0: resolution: {integrity: sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==} engines: {node: '>=6'} dependencies: @@ -11314,17 +12300,17 @@ packages: pkg-conf: 2.1.0 dev: true - /slash/1.0.0: + /slash@1.0.0: resolution: {integrity: sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=} engines: {node: '>=0.10.0'} dev: true - /slash/3.0.0: + /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} dev: true - /slice-ansi/2.1.0: + /slice-ansi@2.1.0: resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} engines: {node: '>=6'} dependencies: @@ -11333,7 +12319,7 @@ packages: is-fullwidth-code-point: 2.0.0 dev: true - /slice-ansi/3.0.0: + /slice-ansi@3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} engines: {node: '>=8'} dependencies: @@ -11342,7 +12328,7 @@ packages: is-fullwidth-code-point: 3.0.0 dev: true - /slice-ansi/4.0.0: + /slice-ansi@4.0.0: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} engines: {node: '>=10'} dependencies: @@ -11351,7 +12337,7 @@ packages: is-fullwidth-code-point: 3.0.0 dev: true - /snapdragon-node/2.1.1: + /snapdragon-node@2.1.1: resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} engines: {node: '>=0.10.0'} dependencies: @@ -11360,14 +12346,14 @@ packages: snapdragon-util: 3.0.1 dev: true - /snapdragon-util/3.0.1: + /snapdragon-util@3.0.1: resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /snapdragon/0.8.2: + /snapdragon@0.8.2: resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} engines: {node: '>=0.10.0'} dependencies: @@ -11383,7 +12369,7 @@ packages: - supports-color dev: true - /source-map-resolve/0.5.3: + /source-map-resolve@0.5.3: resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} dependencies: atob: 2.1.2 @@ -11393,42 +12379,42 @@ packages: urix: 0.1.0 dev: true - /source-map-support/0.4.18: + /source-map-support@0.4.18: resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==} dependencies: source-map: 0.5.7 dev: true - /source-map-support/0.5.19: + /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-url/0.4.0: + /source-map-url@0.4.0: resolution: {integrity: sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=} dev: true - /source-map/0.5.7: + /source-map@0.5.7: resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=} engines: {node: '>=0.10.0'} dev: true - /source-map/0.6.1: + /source-map@0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} dev: true - /sourcemap-codec/1.4.8: + /sourcemap-codec@1.4.8: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} dev: true - /spawn-error-forwarder/1.0.0: + /spawn-error-forwarder@1.0.0: resolution: {integrity: sha1-Gv2Uc46ZmwNG17n8NzvlXgdXcCk=} dev: true - /spawn-wrap/2.0.0: + /spawn-wrap@2.0.0: resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} engines: {node: '>=8'} dependencies: @@ -11440,58 +12426,58 @@ packages: which: 2.0.2 dev: true - /spdx-correct/3.1.1: + /spdx-correct@3.1.1: resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.6 dev: true - /spdx-exceptions/2.3.0: + /spdx-exceptions@2.3.0: resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} dev: true - /spdx-expression-parse/3.0.1: + /spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.6 dev: true - /spdx-license-ids/3.0.6: + /spdx-license-ids@3.0.6: resolution: {integrity: sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw==} dev: true - /split-string/3.1.0: + /split-string@3.1.0: resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} engines: {node: '>=0.10.0'} dependencies: extend-shallow: 3.0.2 dev: true - /split/1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} - dependencies: - through: 2.3.8 - dev: true - - /split2/1.0.0: + /split2@1.0.0: resolution: {integrity: sha1-UuLiIdiMdfmnP5BVbiY/+WdysxQ=} dependencies: through2: 2.0.5 dev: true - /split2/2.2.0: + /split2@2.2.0: resolution: {integrity: sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==} dependencies: through2: 2.0.5 dev: true - /sprintf-js/1.0.3: + /split@1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + dependencies: + through: 2.3.8 + dev: true + + /sprintf-js@1.0.3: resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} dev: true - /sqlite3/5.0.0: + /sqlite3@5.0.0: resolution: {integrity: sha512-rjvqHFUaSGnzxDy2AHCwhHy6Zp6MNJzCPGYju4kD8yi6bze4d1/zMTg6C7JI49b7/EM7jKMTvyfN/4ylBKdwfw==} requiresBuild: true peerDependenciesMeta: @@ -11506,7 +12492,7 @@ packages: - supports-color dev: true - /sshpk/1.16.1: + /sshpk@1.16.1: resolution: {integrity: sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==} engines: {node: '>=0.10.0'} hasBin: true @@ -11523,7 +12509,7 @@ packages: dev: true optional: true - /static-extend/0.1.2: + /static-extend@0.1.2: resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=} engines: {node: '>=0.10.0'} dependencies: @@ -11531,25 +12517,25 @@ packages: object-copy: 0.1.0 dev: true - /stream-combiner2/1.1.1: + /stream-combiner2@1.1.1: resolution: {integrity: sha1-+02KFCDqNidk4hrUeAOXvry0HL4=} dependencies: duplexer2: 0.1.4 readable-stream: 2.3.7 dev: true - /stream-events/1.0.5: + /stream-events@1.0.5: resolution: {integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==} dependencies: stubs: 3.0.0 dev: true - /string-argv/0.3.1: + /string-argv@0.3.1: resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} engines: {node: '>=0.6.19'} dev: true - /string-width/1.0.2: + /string-width@1.0.2: resolution: {integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=} engines: {node: '>=0.10.0'} dependencies: @@ -11558,7 +12544,7 @@ packages: strip-ansi: 3.0.1 dev: true - /string-width/2.1.1: + /string-width@2.1.1: resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} engines: {node: '>=4'} dependencies: @@ -11566,7 +12552,7 @@ packages: strip-ansi: 4.0.0 dev: true - /string-width/3.1.0: + /string-width@3.1.0: resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} engines: {node: '>=6'} dependencies: @@ -11575,7 +12561,7 @@ packages: strip-ansi: 5.2.0 dev: true - /string-width/4.2.0: + /string-width@4.2.0: resolution: {integrity: sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==} engines: {node: '>=8'} dependencies: @@ -11584,47 +12570,86 @@ packages: strip-ansi: 6.0.0 dev: true - /string.prototype.trimend/1.0.1: + /string.prototype.matchall@4.0.10: + resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + internal-slot: 1.0.6 + regexp.prototype.flags: 1.5.1 + set-function-name: 2.0.1 + side-channel: 1.0.4 + dev: true + + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimend@1.0.1: resolution: {integrity: sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==} dependencies: define-properties: 1.1.3 es-abstract: 1.17.6 dev: true - /string.prototype.trimend/1.0.2: + /string.prototype.trimend@1.0.2: resolution: {integrity: sha512-8oAG/hi14Z4nOVP0z6mdiVZ/wqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw==} dependencies: define-properties: 1.1.3 es-abstract: 1.18.0-next.1 dev: true - /string.prototype.trimstart/1.0.1: + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimstart@1.0.1: resolution: {integrity: sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==} dependencies: define-properties: 1.1.3 es-abstract: 1.17.6 dev: true - /string.prototype.trimstart/1.0.2: + /string.prototype.trimstart@1.0.2: resolution: {integrity: sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg==} dependencies: define-properties: 1.1.3 es-abstract: 1.18.0-next.1 dev: true - /string_decoder/1.1.1: + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 dev: true - /string_decoder/1.3.0: + /string_decoder@1.3.0: resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} dependencies: safe-buffer: 5.2.1 dev: true - /stringify-object/3.3.0: + /stringify-object@3.3.0: resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} engines: {node: '>=4'} dependencies: @@ -11633,112 +12658,112 @@ packages: is-regexp: 1.0.0 dev: true - /strip-ansi/3.0.1: + /strip-ansi@3.0.1: resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=} engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 dev: true - /strip-ansi/4.0.0: + /strip-ansi@4.0.0: resolution: {integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=} engines: {node: '>=4'} dependencies: ansi-regex: 3.0.0 dev: true - /strip-ansi/5.2.0: + /strip-ansi@5.2.0: resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} engines: {node: '>=6'} dependencies: ansi-regex: 4.1.0 dev: true - /strip-ansi/6.0.0: + /strip-ansi@6.0.0: resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==} engines: {node: '>=8'} dependencies: ansi-regex: 5.0.0 dev: true - /strip-bom/3.0.0: + /strip-bom@3.0.0: resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} engines: {node: '>=4'} dev: true - /strip-bom/4.0.0: + /strip-bom@4.0.0: resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} engines: {node: '>=8'} dev: true - /strip-eof/1.0.0: + /strip-eof@1.0.0: resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=} engines: {node: '>=0.10.0'} dev: true - /strip-final-newline/2.0.0: + /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} dev: true - /strip-indent/3.0.0: + /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} dependencies: min-indent: 1.0.1 dev: true - /strip-json-comments/2.0.1: + /strip-json-comments@2.0.1: resolution: {integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=} engines: {node: '>=0.10.0'} dev: true - /strip-json-comments/3.0.1: + /strip-json-comments@3.0.1: resolution: {integrity: sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==} engines: {node: '>=8'} dev: true - /strip-json-comments/3.1.0: + /strip-json-comments@3.1.0: resolution: {integrity: sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w==} engines: {node: '>=8'} dev: true - /strip-json-comments/3.1.1: + /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} dev: true - /stubs/3.0.0: + /stubs@3.0.0: resolution: {integrity: sha1-6NK6H6nJBXAwPAMLaQD31fiavls=} dev: true - /supports-color/2.0.0: + /supports-color@2.0.0: resolution: {integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=} engines: {node: '>=0.8.0'} dev: true - /supports-color/5.5.0: + /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} dependencies: has-flag: 3.0.0 dev: true - /supports-color/7.1.0: + /supports-color@7.1.0: resolution: {integrity: sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 dev: true - /supports-color/7.2.0: + /supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 dev: true - /supports-hyperlinks/2.1.0: + /supports-hyperlinks@2.1.0: resolution: {integrity: sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==} engines: {node: '>=8'} dependencies: @@ -11746,7 +12771,12 @@ packages: supports-color: 7.2.0 dev: true - /table/5.4.6: + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /table@5.4.6: resolution: {integrity: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==} engines: {node: '>=6.0.0'} dependencies: @@ -11756,7 +12786,7 @@ packages: string-width: 3.1.0 dev: true - /tar/2.2.2: + /tar@2.2.2: resolution: {integrity: sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==} dependencies: block-stream: 0.0.9 @@ -11765,7 +12795,7 @@ packages: dev: true optional: true - /tar/4.4.13: + /tar@4.4.13: resolution: {integrity: sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==} engines: {node: '>=4.5'} dependencies: @@ -11778,17 +12808,17 @@ packages: yallist: 3.1.1 dev: true - /tarn/2.0.0: + /tarn@2.0.0: resolution: {integrity: sha512-7rNMCZd3s9bhQh47ksAQd92ADFcJUjjbyOvyFjNLwTPpGieFHMC84S+LOzw0fx1uh6hnDz/19r8CPMnIjJlMMA==} engines: {node: '>=8.0.0'} dev: true - /tarn/3.0.0: + /tarn@3.0.0: resolution: {integrity: sha512-PKUnlDFODZueoA8owLehl8vLcgtA8u4dRuVbZc92tspDYZixjJL6TqYOmryf/PfP/EBX+2rgNcrj96NO+RPkdQ==} engines: {node: '>=8.0.0'} dev: true - /teeny-request/6.0.1: + /teeny-request@6.0.1: resolution: {integrity: sha512-TAK0c9a00ELOqLrZ49cFxvPVogMUFaWY8dUsQc/0CuQPGF+BOxOQzXfE413BAk2kLomwNplvdtMpeaeGWmoc2g==} dependencies: http-proxy-agent: 4.0.1 @@ -11800,12 +12830,12 @@ packages: - supports-color dev: true - /temp-dir/2.0.0: + /temp-dir@2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} engines: {node: '>=8'} dev: true - /tempy/0.5.0: + /tempy@0.5.0: resolution: {integrity: sha512-VEY96x7gbIRfsxqsafy2l5yVxxp3PhwAGoWMyC2D2Zt5DmEv+2tGiPOrquNRpf21hhGnKLVEsuqleqiZmKG/qw==} engines: {node: '>=10'} dependencies: @@ -11815,7 +12845,7 @@ packages: unique-string: 2.0.0 dev: true - /terser/4.8.0: + /terser@4.8.0: resolution: {integrity: sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==} engines: {node: '>=6.0.0'} hasBin: true @@ -11826,7 +12856,7 @@ packages: source-map-support: 0.5.19 dev: true - /test-exclude/6.0.0: + /test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} dependencies: @@ -11835,69 +12865,69 @@ packages: minimatch: 3.0.4 dev: true - /text-extensions/1.9.0: + /text-extensions@1.9.0: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} engines: {node: '>=0.10'} dev: true - /text-table/0.2.0: + /text-table@0.2.0: resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} dev: true - /thenify-all/1.6.0: + /thenify-all@1.6.0: resolution: {integrity: sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=} engines: {node: '>=0.8'} dependencies: thenify: 3.3.1 dev: true - /thenify/3.3.1: + /thenify@3.3.1: resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} dependencies: any-promise: 1.3.0 dev: true - /through/2.3.8: - resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} - dev: true - - /through2/2.0.5: + /through2@2.0.5: resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} dependencies: readable-stream: 2.3.7 xtend: 4.0.2 dev: true - /through2/3.0.2: + /through2@3.0.2: resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==} dependencies: inherits: 2.0.4 readable-stream: 3.6.0 dev: true - /tildify/2.0.0: + /through@2.3.8: + resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} + dev: true + + /tildify@2.0.0: resolution: {integrity: sha512-Cc+OraorugtXNfs50hU9KS369rFXCfgGLpfCfvlc+Ud5u6VWmUQsOAa9HbTvheQdYnrdJqqv1e5oIqXppMYnSw==} engines: {node: '>=8'} dev: true - /to-fast-properties/1.0.3: + /to-fast-properties@1.0.3: resolution: {integrity: sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=} engines: {node: '>=0.10.0'} dev: true - /to-fast-properties/2.0.0: + /to-fast-properties@2.0.0: resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} engines: {node: '>=4'} dev: true - /to-object-path/0.3.0: + /to-object-path@0.3.0: resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /to-regex-range/2.1.1: + /to-regex-range@2.1.1: resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=} engines: {node: '>=0.10.0'} dependencies: @@ -11905,14 +12935,14 @@ packages: repeat-string: 1.6.1 dev: true - /to-regex-range/5.0.1: + /to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 dev: true - /to-regex/3.0.2: + /to-regex@3.0.2: resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} engines: {node: '>=0.10.0'} dependencies: @@ -11922,11 +12952,11 @@ packages: safe-regex: 1.1.0 dev: true - /toposort-class/1.0.1: + /toposort-class@1.0.1: resolution: {integrity: sha1-f/0feMi+KMO6Rc1OGj9e4ZO9mYg=} dev: true - /tough-cookie/2.5.0: + /tough-cookie@2.5.0: resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} engines: {node: '>=0.8'} dependencies: @@ -11935,26 +12965,26 @@ packages: dev: true optional: true - /traverse/0.6.6: + /traverse@0.6.6: resolution: {integrity: sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=} dev: true - /trim-newlines/3.0.0: + /trim-newlines@3.0.0: resolution: {integrity: sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==} engines: {node: '>=8'} dev: true - /trim-off-newlines/1.0.1: + /trim-off-newlines@1.0.1: resolution: {integrity: sha512-cklgulxoLavCJlZSWdKzEuKFRFwyRUS3h4tfvSo8uSGrtrPNcAHeKmftGuA684vonXdvKgdX6cMKF8SBjywN1w==} engines: {node: '>=0.10.0'} dev: true - /trim-right/1.0.1: + /trim-right@1.0.1: resolution: {integrity: sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=} engines: {node: '>=0.10.0'} dev: true - /ts-morph/4.3.3: + /ts-morph@4.3.3: resolution: {integrity: sha512-yauxRJM4Vo+KvpJFgL4Mp9PtFjwZVrt54eP3RkLIXnaaAY5TGVHTLqN2OnLGwf6YjyqkDLAKprZVOUTvVEz6ZQ==} dependencies: '@dsherret/to-absolute-glob': 2.0.2 @@ -11968,7 +12998,7 @@ packages: typescript: 3.6.4 dev: true - /ts-node/8.10.2_typescript@3.9.5: + /ts-node@8.10.2(typescript@3.9.5): resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} engines: {node: '>=6.0.0'} hasBin: true @@ -11983,7 +13013,7 @@ packages: yn: 3.1.1 dev: true - /ts-node/8.10.2_typescript@3.9.6: + /ts-node@8.10.2(typescript@3.9.6): resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} engines: {node: '>=6.0.0'} hasBin: true @@ -11998,7 +13028,7 @@ packages: yn: 3.1.1 dev: true - /ts-node/8.10.2_typescript@3.9.7: + /ts-node@8.10.2(typescript@3.9.7): resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} engines: {node: '>=6.0.0'} hasBin: true @@ -12013,7 +13043,7 @@ packages: yn: 3.1.1 dev: true - /tsconfig-paths/3.9.0: + /tsconfig-paths@3.9.0: resolution: {integrity: sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==} dependencies: '@types/json5': 0.0.29 @@ -12022,11 +13052,11 @@ packages: strip-bom: 3.0.0 dev: true - /tslib/1.13.0: + /tslib@1.13.0: resolution: {integrity: sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==} dev: true - /tsutils/3.17.1_typescript@3.9.5: + /tsutils@3.17.1(typescript@3.9.5): resolution: {integrity: sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==} engines: {node: '>= 6'} peerDependencies: @@ -12036,7 +13066,7 @@ packages: typescript: 3.9.5 dev: true - /tsutils/3.17.1_typescript@3.9.6: + /tsutils@3.17.1(typescript@3.9.6): resolution: {integrity: sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==} engines: {node: '>= 6'} peerDependencies: @@ -12046,7 +13076,7 @@ packages: typescript: 3.9.6 dev: true - /tsutils/3.17.1_typescript@3.9.7: + /tsutils@3.17.1(typescript@3.9.7): resolution: {integrity: sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==} engines: {node: '>= 6'} peerDependencies: @@ -12056,62 +13086,100 @@ packages: typescript: 3.9.7 dev: true - /tunnel-agent/0.6.0: + /tunnel-agent@0.6.0: resolution: {integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=} dependencies: safe-buffer: 5.2.1 dev: true optional: true - /tweetnacl/0.14.5: + /tweetnacl@0.14.5: resolution: {integrity: sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=} dev: true optional: true - /type-check/0.4.0: + /type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 dev: true - /type-detect/4.0.8: + /type-detect@4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} dev: true - /type-fest/0.11.0: + /type-fest@0.11.0: resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==} engines: {node: '>=8'} dev: true - /type-fest/0.12.0: + /type-fest@0.12.0: resolution: {integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==} engines: {node: '>=10'} dev: true - /type-fest/0.13.1: + /type-fest@0.13.1: resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} engines: {node: '>=10'} dev: true - /type-fest/0.6.0: + /type-fest@0.6.0: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} engines: {node: '>=8'} dev: true - /type-fest/0.8.1: + /type-fest@0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} dev: true - /typedarray-to-buffer/3.1.5: + /typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-length@1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + is-typed-array: 1.1.12 + dev: true + + /typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: is-typedarray: 1.0.0 dev: true - /typeorm/0.2.25: + /typeorm@0.2.25: resolution: {integrity: sha512-yzQ995fyDy5wolSLK9cmjUNcmQdixaeEm2TnXB5HN++uKbs9TiR6Y7eYAHpDlAE8s9J1uniDBgytecCZVFergQ==} hasBin: true dependencies: @@ -12134,31 +13202,31 @@ packages: - supports-color dev: true - /typescript/3.6.4: + /typescript@3.6.4: resolution: {integrity: sha512-unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /typescript/3.9.5: + /typescript@3.9.5: resolution: {integrity: sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /typescript/3.9.6: + /typescript@3.9.6: resolution: {integrity: sha512-Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /typescript/3.9.7: + /typescript@3.9.7: resolution: {integrity: sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /uglify-js/3.17.4: + /uglify-js@3.17.4: resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} engines: {node: '>=0.8.0'} hasBin: true @@ -12166,24 +13234,33 @@ packages: dev: true optional: true - /umzug/2.3.0: + /umzug@2.3.0: resolution: {integrity: sha512-Z274K+e8goZK8QJxmbRPhl89HPO1K+ORFtm6rySPhFKfKc5GHhqdzD0SGhSWHkzoXasqJuItdhorSvY7/Cgflw==} engines: {node: '>=6.0.0'} dependencies: bluebird: 3.7.2 dev: true - /unc-path-regex/0.1.2: + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.5 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unc-path-regex@0.1.2: resolution: {integrity: sha1-5z3T17DXxe2G+6xrCufYxqadUPo=} engines: {node: '>=0.10.0'} dev: true - /unicode-canonical-property-names-ecmascript/1.0.4: + /unicode-canonical-property-names-ecmascript@1.0.4: resolution: {integrity: sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==} engines: {node: '>=4'} dev: true - /unicode-match-property-ecmascript/1.0.4: + /unicode-match-property-ecmascript@1.0.4: resolution: {integrity: sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==} engines: {node: '>=4'} dependencies: @@ -12191,17 +13268,17 @@ packages: unicode-property-aliases-ecmascript: 1.1.0 dev: true - /unicode-match-property-value-ecmascript/1.2.0: + /unicode-match-property-value-ecmascript@1.2.0: resolution: {integrity: sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==} engines: {node: '>=4'} dev: true - /unicode-property-aliases-ecmascript/1.1.0: + /unicode-property-aliases-ecmascript@1.1.0: resolution: {integrity: sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==} engines: {node: '>=4'} dev: true - /union-value/1.0.1: + /union-value@1.0.1: resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} engines: {node: '>=0.10.0'} dependencies: @@ -12211,39 +13288,39 @@ packages: set-value: 2.0.1 dev: true - /unique-string/2.0.0: + /unique-string@2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} engines: {node: '>=8'} dependencies: crypto-random-string: 2.0.0 dev: true - /universal-user-agent/5.0.0: + /universal-user-agent@5.0.0: resolution: {integrity: sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q==} dependencies: os-name: 3.1.0 dev: true - /universal-user-agent/6.0.0: + /universal-user-agent@6.0.0: resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} dev: true - /universalify/0.1.2: + /universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} dev: true - /universalify/1.0.0: + /universalify@1.0.0: resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==} engines: {node: '>= 10.0.0'} dev: true - /universalify/2.0.0: + /universalify@2.0.0: resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} engines: {node: '>= 10.0.0'} dev: true - /unset-value/1.0.0: + /unset-value@1.0.0: resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=} engines: {node: '>=0.10.0'} dependencies: @@ -12251,83 +13328,83 @@ packages: isobject: 3.0.1 dev: true - /uri-js/4.2.2: + /uri-js@4.2.2: resolution: {integrity: sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==} dependencies: punycode: 2.1.1 dev: true - /uri-js/4.4.0: + /uri-js@4.4.0: resolution: {integrity: sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==} dependencies: punycode: 2.1.1 dev: true - /urix/0.1.0: + /urix@0.1.0: resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=} deprecated: Please see https://github.com/lydell/urix#deprecated dev: true - /url-join/4.0.1: + /url-join@4.0.1: resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} dev: true - /urlgrey/0.4.4: + /urlgrey@0.4.4: resolution: {integrity: sha1-iS/pWWCAXoVRnxzUOJ8stMu3ZS8=} dev: true - /use/3.1.1: + /use@3.1.1: resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} engines: {node: '>=0.10.0'} dev: true - /util-deprecate/1.0.2: + /util-deprecate@1.0.2: resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} dev: true - /uuid/3.4.0: + /uuid@3.4.0: resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} hasBin: true dev: true - /uuid/7.0.3: + /uuid@7.0.3: resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==} hasBin: true dev: true - /uuid/8.3.0: + /uuid@8.3.0: resolution: {integrity: sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ==} hasBin: true dev: true - /v8-compile-cache/2.1.1: + /v8-compile-cache@2.1.1: resolution: {integrity: sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==} dev: true - /v8-compile-cache/2.2.0: + /v8-compile-cache@2.2.0: resolution: {integrity: sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==} dev: true - /v8flags/3.2.0: + /v8flags@3.2.0: resolution: {integrity: sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==} engines: {node: '>= 0.10'} dependencies: homedir-polyfill: 1.0.3 dev: true - /validate-npm-package-license/3.0.4: + /validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} dependencies: spdx-correct: 3.1.1 spdx-expression-parse: 3.0.1 dev: true - /validator/10.11.0: + /validator@10.11.0: resolution: {integrity: sha512-X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw==} engines: {node: '>= 0.10'} dev: true - /verror/1.10.0: + /verror@1.10.0: resolution: {integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=} engines: {'0': node >=0.6.0} dependencies: @@ -12337,22 +13414,70 @@ packages: dev: true optional: true - /which-module/2.0.0: + /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-string: 1.0.7 + is-symbol: 1.0.3 + dev: true + + /which-builtin-type@1.1.3: + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} + dependencies: + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.0 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.0.2 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.1 + which-typed-array: 1.1.13 + dev: true + + /which-collection@1.0.1: + resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + dependencies: + is-map: 2.0.1 + is-set: 2.0.1 + is-weakmap: 2.0.1 + is-weakset: 2.0.2 + dev: true + + /which-module@2.0.0: resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=} dev: true - /which-pm-runs/1.0.0: + /which-pm-runs@1.0.0: resolution: {integrity: sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=} dev: true - /which/1.3.1: + /which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + + /which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true dependencies: isexe: 2.0.0 dev: true - /which/2.0.2: + /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} hasBin: true @@ -12360,43 +13485,43 @@ packages: isexe: 2.0.0 dev: true - /wide-align/1.1.3: + /wide-align@1.1.3: resolution: {integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==} dependencies: string-width: 2.1.1 dev: true - /windows-release/3.3.3: + /windows-release@3.3.3: resolution: {integrity: sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==} engines: {node: '>=6'} dependencies: execa: 1.0.0 dev: true - /wkx/0.5.0: + /wkx@0.5.0: resolution: {integrity: sha512-Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==} dependencies: '@types/node': 14.6.0 dev: true - /word-wrap/1.2.3: + /word-wrap@1.2.3: resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} engines: {node: '>=0.10.0'} dev: true - /wordwrap/1.0.0: + /wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: true - /workerpool/6.0.0: + /workerpool@6.0.0: resolution: {integrity: sha512-fU2OcNA/GVAJLLyKUoHkAgIhKb0JoCpSjLC/G2vYKxUjVmQwGbRVeoPJ1a8U4pnVofz4AQV5Y/NEw8oKqxEBtA==} dev: true - /workerpool/6.0.2: + /workerpool@6.0.2: resolution: {integrity: sha512-DSNyvOpFKrNusaaUwk+ej6cBj1bmhLcBfj80elGk+ZIo5JSkq+unB1dLKEOcNfJDZgjGICfhQ0Q5TbP0PvF4+Q==} dev: true - /wrap-ansi/5.1.0: + /wrap-ansi@5.1.0: resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} engines: {node: '>=6'} dependencies: @@ -12405,7 +13530,7 @@ packages: strip-ansi: 5.2.0 dev: true - /wrap-ansi/6.2.0: + /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} dependencies: @@ -12414,7 +13539,7 @@ packages: strip-ansi: 6.0.0 dev: true - /wrap-ansi/7.0.0: + /wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} dependencies: @@ -12423,11 +13548,11 @@ packages: strip-ansi: 6.0.0 dev: true - /wrappy/1.0.2: + /wrappy@1.0.2: resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} dev: true - /write-file-atomic/3.0.3: + /write-file-atomic@3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} dependencies: imurmurhash: 0.1.4 @@ -12436,14 +13561,14 @@ packages: typedarray-to-buffer: 3.1.5 dev: true - /write/1.0.3: + /write@1.0.3: resolution: {integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==} engines: {node: '>=4'} dependencies: mkdirp: 0.5.5 dev: true - /xml2js/0.4.23: + /xml2js@0.4.23: resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==} engines: {node: '>=4.0.0'} dependencies: @@ -12451,39 +13576,39 @@ packages: xmlbuilder: 11.0.1 dev: true - /xmlbuilder/11.0.1: + /xmlbuilder@11.0.1: resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} engines: {node: '>=4.0'} dev: true - /xtend/4.0.2: + /xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} dev: true - /y18n/4.0.0: + /y18n@4.0.0: resolution: {integrity: sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==} dev: true - /y18n/5.0.8: + /y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} dev: true - /yallist/3.1.1: + /yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} dev: true - /yallist/4.0.0: + /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true - /yaml/1.10.0: + /yaml@1.10.0: resolution: {integrity: sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==} engines: {node: '>= 6'} dev: true - /yargonaut/1.1.4: + /yargonaut@1.1.4: resolution: {integrity: sha512-rHgFmbgXAAzl+1nngqOcwEljqHGG9uUZoPjsdZEs1w5JW9RXYzrSvH/u70C1JE5qFi0qjsdhnUX/dJRpWqitSA==} dependencies: chalk: 1.1.3 @@ -12491,21 +13616,21 @@ packages: parent-require: 1.0.0 dev: true - /yargs-parser/13.1.2: + /yargs-parser@13.1.2: resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 dev: true - /yargs-parser/15.0.1: + /yargs-parser@15.0.1: resolution: {integrity: sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 dev: true - /yargs-parser/18.1.3: + /yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} dependencies: @@ -12513,12 +13638,12 @@ packages: decamelize: 1.2.0 dev: true - /yargs-parser/20.2.9: + /yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} dev: true - /yargs-unparser/1.6.0: + /yargs-unparser@1.6.0: resolution: {integrity: sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==} engines: {node: '>=6'} dependencies: @@ -12527,7 +13652,7 @@ packages: yargs: 13.3.2 dev: true - /yargs-unparser/1.6.1: + /yargs-unparser@1.6.1: resolution: {integrity: sha512-qZV14lK9MWsGCmcr7u5oXGH0dbGqZAIxTDrWXZDo5zUr6b6iUmelNKO6x6R1dQT24AH3LgRxJpr8meWy2unolA==} engines: {node: '>=6'} dependencies: @@ -12538,7 +13663,7 @@ packages: yargs: 14.2.3 dev: true - /yargs-unparser/2.0.0: + /yargs-unparser@2.0.0: resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} engines: {node: '>=10'} dependencies: @@ -12548,7 +13673,7 @@ packages: is-plain-obj: 2.1.0 dev: true - /yargs/13.3.2: + /yargs@13.3.2: resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} dependencies: cliui: 5.0.0 @@ -12563,7 +13688,7 @@ packages: yargs-parser: 13.1.2 dev: true - /yargs/14.2.3: + /yargs@14.2.3: resolution: {integrity: sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==} dependencies: cliui: 5.0.0 @@ -12579,7 +13704,7 @@ packages: yargs-parser: 15.0.1 dev: true - /yargs/15.4.1: + /yargs@15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} engines: {node: '>=8'} dependencies: @@ -12596,7 +13721,7 @@ packages: yargs-parser: 18.1.3 dev: true - /yargs/16.2.0: + /yargs@16.2.0: resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} engines: {node: '>=10'} dependencies: @@ -12609,7 +13734,7 @@ packages: yargs-parser: 20.2.9 dev: true - /yn/3.1.1: + /yn@3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} engines: {node: '>=6'} dev: true