diff --git a/.eslintignore b/.eslintignore index 09a8422ef..a9ba028ce 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1 +1 @@ -!.eslintrc.js +.eslintrc.js diff --git a/package.json b/package.json index 7c4642556..c4c53c253 100644 --- a/package.json +++ b/package.json @@ -7,9 +7,9 @@ "ci:lint": "node scripts/run-changed.js ci:lint", "ci:test": "node scripts/run-changed.js ci:test", "lint": "pnpm run lint:docs && npm run lint:json && pnpm run lint:package && node scripts/run-changed.js lint", - "lint:docs": "prettier --single-quote --write README.md", + "lint:docs": "prettier --single-quote --arrow-parens avoid --write README.md", "lint:js": "eslint scripts util", - "lint:json": "prettier --single-quote --write tsconfig.*.json codecov.yml pnpm-workspace.yaml", + "lint:json": "prettier --write tsconfig.*.json codecov.yml pnpm-workspace.yaml", "lint:package": "prettier --write package.json --plugin=prettier-plugin-package", "preinstall": "node scripts/disallow-npm.js", "pub": "node scripts/pub.js", @@ -19,30 +19,31 @@ }, "dependencies": { "conventional-commits-parser": "^3.1.0", - "semver": "^7.1.1", + "semver": "^7.3.2", "write-pkg": "^4.0.0" }, "devDependencies": { - "@typescript-eslint/eslint-plugin": "^3.5.0", - "@typescript-eslint/parser": "^3.5.0", - "ava": "^2.4.0", - "chalk": "^2.4.2", - "codecov-lite": "^0.3.1", - "del-cli": "^3.0.0", + "@ava/babel": "^1.0.1", + "@typescript-eslint/eslint-plugin": "^3.7.1", + "@typescript-eslint/parser": "^3.7.1", + "ava": "^3.11.0", + "chalk": "^4.1.0", + "codecov-lite": "^1.0.3", + "del-cli": "^3.0.1", "eslint-config-rollup": "^0.1.0", - "execa": "^2.1.0", - "globby": "^10.0.1", - "husky": "^3.1.0", - "lint-staged": "^9.5.0", - "nyc": "^14.1.1", - "pnpm": "^4.13.0", - "prettier": "^1.19.1", - "prettier-plugin-package": "^0.3.1", - "ts-node": "^8.5.4", + "execa": "^4.0.3", + "globby": "^11.0.1", + "husky": "^4.2.5", + "lint-staged": "^10.2.11", + "nyc": "^15.1.0", + "pnpm": "^5.4.6", + "prettier": "^2.0.5", + "prettier-plugin-package": "^1.0.0", + "ts-node": "^8.10.2", "tsconfig-paths": "^3.9.0", - "tslib": "^1.10.0", - "typescript": "^3.7.4", - "yaml": "^1.7.2" + "tslib": "^2.0.0", + "typescript": "^3.9.7", + "yaml": "^1.10.0" }, "ava": { "files": [ @@ -59,16 +60,13 @@ }, "lint-staged": { "*.{ts,js}": [ - "eslint --fix", - "git add" + "eslint --fix" ], "*.md": [ - "prettier --single-quote --write", - "git add" + "prettier --single-quote --write" ], "*package.json": [ - "prettier --write --plugin=prettier-plugin-package", - "git add" + "prettier --write --plugin=prettier-plugin-package" ] }, "nyc": { diff --git a/packages/alias/package.json b/packages/alias/package.json index 35960a39f..e3fdc0b52 100755 --- a/packages/alias/package.json +++ b/packages/alias/package.json @@ -11,6 +11,7 @@ "homepage": "https://github.com/rollup/plugins/tree/master/packages/alias#readme", "bugs": "https://github.com/rollup/plugins/issues", "main": "dist/index.js", + "module": "dist/index.es.js", "engines": { "node": ">=8.0.0" }, @@ -21,7 +22,7 @@ "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", "ci:test": "pnpm run test -- --verbose", "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package", - "lint:docs": "prettier --single-quote --write README.md", + "lint:docs": "prettier --single-quote --arrow-parens avoid --write README.md", "lint:js": "eslint --fix --cache src test types --ext .js,.ts", "lint:package": "prettier --write package.json --plugin=prettier-plugin-package", "prebuild": "del-cli dist", @@ -49,13 +50,16 @@ "slash": "^3.0.0" }, "devDependencies": { - "@rollup/plugin-node-resolve": "^7.0.0", - "@rollup/plugin-typescript": "^3.0.0", - "del-cli": "^3.0.0", - "rollup": "^2.0.0" + "@rollup/plugin-node-resolve": "^8.4.0", + "@rollup/plugin-typescript": "^5.0.2", + "del-cli": "^3.0.1", + "rollup": "^2.23.0" }, + "types": "types/index.d.ts", "ava": { - "compileEnhancements": false, + "babel": { + "compileEnhancements": false + }, "extensions": [ "ts" ], @@ -69,7 +73,5 @@ "!**/recipes/**", "!**/types.ts" ] - }, - "module": "dist/index.es.js", - "types": "types/index.d.ts" + } } diff --git a/packages/alias/rollup.config.js b/packages/alias/rollup.config.js index 576f0790e..461d4f1c6 100755 --- a/packages/alias/rollup.config.js +++ b/packages/alias/rollup.config.js @@ -6,8 +6,8 @@ export default { input: 'src/index.ts', external: [...Object.keys(pkg.dependencies), 'os'], output: [ - { file: pkg.main, format: 'cjs' }, + { file: pkg.main, format: 'cjs', exports: 'auto' }, { file: pkg.module, format: 'es' } ], - plugins: [typescript()] + plugins: [typescript({ sourceMap: false })] }; diff --git a/packages/alias/test/test.js b/packages/alias/test/test.js index 9f69f6700..378e6b429 100755 --- a/packages/alias/test/test.js +++ b/packages/alias/test/test.js @@ -118,13 +118,22 @@ test('RegExp aliasing', (t) => { entries: [ { find: /f(o+)bar/, replacement: 'f$1bar2019' }, - { find: new RegExp('.*pony.*'), replacement: 'i/am/a/barbie/girl' }, + { + find: new RegExp('.*pony.*'), + replacement: 'i/am/a/barbie/girl' + }, { find: /^test\/$/, replacement: 'this/is/strict' } ] }, [ - { source: 'fooooooooobar', importer: '/src/importer.js' }, - { source: 'im/a/little/pony/yes', importer: '/src/importer.js' }, + { + source: 'fooooooooobar', + importer: '/src/importer.js' + }, + { + source: 'im/a/little/pony/yes', + importer: '/src/importer.js' + }, { source: './test', importer: '/src/importer.js' }, { source: 'test', importer: '/src/importer.js' }, { source: 'test/', importer: '/src/importer.js' } @@ -143,8 +152,14 @@ test('Will not confuse modules with similar names', (t) => }, [ { source: 'foo2', importer: '/src/importer.js' }, - { source: './fooze/bar', importer: '/src/importer.js' }, - { source: './someFile.foo', importer: '/src/importer.js' } + { + source: './fooze/bar', + importer: '/src/importer.js' + }, + { + source: './someFile.foo', + importer: '/src/importer.js' + } ] ).then((result) => t.deepEqual(result, [null, null, null]))); @@ -175,7 +190,12 @@ test('Windows absolute path aliasing', (t) => } ] }, - [{ source: 'resolve', importer: posix.resolve(DIRNAME, './fixtures/index.js') }] + [ + { + source: 'resolve', + importer: posix.resolve(DIRNAME, './fixtures/index.js') + } + ] ).then((result) => t.deepEqual(result, [normalizePath('E:\\react\\node_modules\\fbjs\\lib\\warning')]) )); @@ -211,9 +231,15 @@ test('Works in rollup with non fake input', (t) => alias({ entries: [ { find: 'fancyNumber', replacement: './aliasMe' }, - { find: './anotherFancyNumber', replacement: './localAliasMe' }, + { + find: './anotherFancyNumber', + replacement: './localAliasMe' + }, { find: 'numberFolder', replacement: './folder' }, - { find: './numberFolder', replacement: './folder' } + { + find: './numberFolder', + replacement: './folder' + } ] }) ] @@ -252,7 +278,12 @@ test('Global customResolver function', (t) => { ], customResolver: () => customResult }, - [{ source: 'test', importer: posix.resolve(DIRNAME, './files/index.js') }] + [ + { + source: 'test', + importer: posix.resolve(DIRNAME, './files/index.js') + } + ] ).then((result) => t.deepEqual(result, [customResult])); }); @@ -271,7 +302,12 @@ test('Local customResolver function', (t) => { ], customResolver: () => customResult }, - [{ source: 'test', importer: posix.resolve(DIRNAME, './files/index.js') }] + [ + { + source: 'test', + importer: posix.resolve(DIRNAME, './files/index.js') + } + ] ).then((result) => t.deepEqual(result, [localCustomResult])); }); @@ -288,7 +324,12 @@ test('Global customResolver plugin-like object', (t) => { ], customResolver: { resolveId: () => customResult } }, - [{ source: 'test', importer: posix.resolve(DIRNAME, './files/index.js') }] + [ + { + source: 'test', + importer: posix.resolve(DIRNAME, './files/index.js') + } + ] ).then((result) => t.deepEqual(result, [customResult])); }); @@ -302,12 +343,19 @@ test('Local customResolver plugin-like object', (t) => { { find: 'test', replacement: path.resolve('./test/files/folder/hipster.jsx'), - customResolver: { resolveId: () => localCustomResult } + customResolver: { + resolveId: () => localCustomResult + } } ], customResolver: { resolveId: () => customResult } }, - [{ source: 'test', importer: posix.resolve(DIRNAME, './files/index.js') }] + [ + { + source: 'test', + importer: posix.resolve(DIRNAME, './files/index.js') + } + ] ).then((result) => t.deepEqual(result, [localCustomResult])); }); @@ -328,8 +376,14 @@ test('supports node-resolve as a custom resolver', (t) => customResolver: nodeResolvePlugin() }, [ - { source: 'local-resolver', importer: posix.resolve(DIRNAME, './files/index.js') }, - { source: 'global-resolver', importer: posix.resolve(DIRNAME, './files/index.js') } + { + source: 'local-resolver', + importer: posix.resolve(DIRNAME, './files/index.js') + }, + { + source: 'global-resolver', + importer: posix.resolve(DIRNAME, './files/index.js') + } ] ).then((result) => t.deepEqual(result, [ @@ -345,9 +399,18 @@ test('Alias + rollup-plugin-node-resolve', (t) => alias({ entries: [ { find: 'fancyNumber', replacement: './aliasMe' }, - { find: './anotherFancyNumber', replacement: './localAliasMe' }, - { find: 'numberFolder/anotherNumber', replacement: './folder' }, - { find: './numberFolder', replacement: './folder' }, + { + find: './anotherFancyNumber', + replacement: './localAliasMe' + }, + { + find: 'numberFolder/anotherNumber', + replacement: './folder' + }, + { + find: './numberFolder', + replacement: './folder' + }, { find: 'superdeep', replacement: './deep/deep2' } ] }), diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b23fe1932..00adaf9b2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,63 +5,65 @@ importers: semver: 7.3.2 write-pkg: 4.0.0 devDependencies: - '@typescript-eslint/eslint-plugin': 3.6.0_1cd0d21f7cfbad5ac6106263f5332fb7 - '@typescript-eslint/parser': 3.6.0_typescript@3.8.3 - ava: 2.4.0 - chalk: 2.4.2 - codecov-lite: 0.3.1 - del-cli: 3.0.0 + '@ava/babel': 1.0.1 + '@typescript-eslint/eslint-plugin': 3.7.1_fdf7ae5f472a827bd9d9601df74d9b89 + '@typescript-eslint/parser': 3.7.1_typescript@3.9.7 + ava: 3.11.0 + chalk: 4.1.0 + codecov-lite: 1.0.3 + del-cli: 3.0.1 eslint-config-rollup: 0.1.0 - execa: 2.1.0 - globby: 10.0.2 - husky: 3.1.0 - lint-staged: 9.5.0 - nyc: 14.1.1 - pnpm: 4.14.0 - prettier: 1.19.1 - prettier-plugin-package: 0.3.1_prettier@1.19.1 - ts-node: 8.9.1_typescript@3.8.3 + execa: 4.0.3 + globby: 11.0.1 + husky: 4.2.5 + lint-staged: 10.2.11 + nyc: 15.1.0 + pnpm: 5.4.6 + prettier: 2.0.5 + prettier-plugin-package: 1.0.0_prettier@2.0.5 + ts-node: 8.10.2_typescript@3.9.7 tsconfig-paths: 3.9.0 - tslib: 1.11.1 - typescript: 3.8.3 - yaml: 1.9.2 + tslib: 2.0.0 + typescript: 3.9.7 + yaml: 1.10.0 specifiers: - '@typescript-eslint/eslint-plugin': ^3.5.0 - '@typescript-eslint/parser': ^3.5.0 - ava: ^2.4.0 - chalk: ^2.4.2 - codecov-lite: ^0.3.1 + '@ava/babel': ^1.0.1 + '@typescript-eslint/eslint-plugin': ^3.7.1 + '@typescript-eslint/parser': ^3.7.1 + ava: ^3.11.0 + chalk: ^4.1.0 + codecov-lite: ^1.0.3 conventional-commits-parser: ^3.1.0 - del-cli: ^3.0.0 + del-cli: ^3.0.1 eslint-config-rollup: ^0.1.0 - execa: ^2.1.0 - globby: ^10.0.1 - husky: ^3.1.0 - lint-staged: ^9.5.0 - nyc: ^14.1.1 - pnpm: ^4.13.0 - prettier: ^1.19.1 - prettier-plugin-package: ^0.3.1 - semver: ^7.1.1 - ts-node: ^8.5.4 + execa: ^4.0.3 + globby: ^11.0.1 + husky: ^4.2.5 + lint-staged: ^10.2.11 + nyc: ^15.1.0 + pnpm: ^5.4.6 + prettier: ^2.0.5 + prettier-plugin-package: ^1.0.0 + semver: ^7.3.2 + ts-node: ^8.10.2 tsconfig-paths: ^3.9.0 - tslib: ^1.10.0 - typescript: ^3.7.4 + tslib: ^2.0.0 + typescript: ^3.9.7 write-pkg: ^4.0.0 - yaml: ^1.7.2 + yaml: ^1.10.0 packages/alias: dependencies: slash: 3.0.0 devDependencies: - '@rollup/plugin-node-resolve': 7.1.1_rollup@2.2.0 - '@rollup/plugin-typescript': 3.0.0_rollup@2.2.0 - del-cli: 3.0.0 - rollup: 2.2.0 + '@rollup/plugin-node-resolve': 8.4.0_rollup@2.23.0 + '@rollup/plugin-typescript': 5.0.2_rollup@2.23.0 + del-cli: 3.0.1 + rollup: 2.23.0 specifiers: - '@rollup/plugin-node-resolve': ^7.0.0 - '@rollup/plugin-typescript': ^3.0.0 - del-cli: ^3.0.0 - rollup: ^2.0.0 + '@rollup/plugin-node-resolve': ^8.4.0 + '@rollup/plugin-typescript': ^5.0.2 + del-cli: ^3.0.1 + rollup: ^2.23.0 slash: ^3.0.0 packages/auto-install: devDependencies: @@ -78,31 +80,31 @@ importers: rollup: ^2.0.0 packages/babel: dependencies: - '@babel/helper-module-imports': 7.8.3 - '@rollup/pluginutils': 3.1.0_rollup@2.2.0 + '@babel/helper-module-imports': 7.10.4 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 devDependencies: - '@babel/core': 7.8.3 - '@babel/plugin-external-helpers': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-proposal-decorators': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-runtime': 7.9.0_@babel+core@7.8.3 - '@babel/preset-env': 7.9.5_@babel+core@7.8.3 - '@rollup/plugin-json': 4.1.0_rollup@2.2.0 + '@babel/core': 7.10.5 + '@babel/plugin-external-helpers': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-decorators': 7.10.5_@babel+core@7.10.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-transform-runtime': 7.10.5_@babel+core@7.10.5 + '@babel/preset-env': 7.10.4_@babel+core@7.10.5 + '@rollup/plugin-json': 4.1.0_rollup@2.23.0 '@types/babel__core': 7.1.9 - rollup: 2.2.0 + rollup: 2.23.0 source-map: 0.6.1 specifiers: - '@babel/core': ^7.7.4 - '@babel/helper-module-imports': ^7.7.4 - '@babel/plugin-external-helpers': ^7.7.4 - '@babel/plugin-proposal-decorators': ^7.7.4 - '@babel/plugin-syntax-dynamic-import': ^7.7.4 - '@babel/plugin-transform-runtime': ^7.7.4 - '@babel/preset-env': ^7.9.0 - '@rollup/plugin-json': ^4.0.0 - '@rollup/pluginutils': ^3.0.8 + '@babel/core': ^7.10.5 + '@babel/helper-module-imports': ^7.10.4 + '@babel/plugin-external-helpers': ^7.10.4 + '@babel/plugin-proposal-decorators': ^7.10.5 + '@babel/plugin-syntax-dynamic-import': ^7.8.3 + '@babel/plugin-transform-runtime': ^7.10.5 + '@babel/preset-env': ^7.10.4 + '@rollup/plugin-json': ^4.1.0 + '@rollup/pluginutils': ^3.1.0 '@types/babel__core': ^7.1.9 - rollup: ^2.0.0 + rollup: ^2.23.0 source-map: ^0.6.1 packages/beep: devDependencies: @@ -113,24 +115,24 @@ importers: strip-ansi: ^5.2.0 packages/buble: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.2.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 '@types/buble': 0.19.2 buble: 0.20.0 devDependencies: - '@rollup/plugin-typescript': 3.0.0_rollup@2.2.0+typescript@3.7.5 - del-cli: 3.0.0 - rollup: 2.2.0 + '@rollup/plugin-typescript': 3.1.1_rollup@2.23.0+typescript@3.9.7 + del-cli: 3.0.1 + rollup: 2.23.0 source-map: 0.7.3 - typescript: 3.7.5 + typescript: 3.9.7 specifiers: - '@rollup/plugin-typescript': ^3.0.0 - '@rollup/pluginutils': ^3.0.8 + '@rollup/plugin-typescript': ^3.1.1 + '@rollup/pluginutils': ^3.1.0 '@types/buble': ^0.19.2 buble: ^0.20.0 - del-cli: ^3.0.0 - rollup: ^2.0.0 + del-cli: ^3.0.1 + rollup: ^2.23.0 source-map: ^0.7.3 - typescript: ^3.7.4 + typescript: ^3.9.7 packages/commonjs: dependencies: '@rollup/pluginutils': 3.1.0_rollup@2.22.0 @@ -184,17 +186,17 @@ importers: typescript: ^3.7.4 packages/dsv: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.2.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 d3-dsv: 1.2.0 tosource: 1.0.0 devDependencies: - del-cli: 3.0.0 - rollup: 2.2.0 + del-cli: 3.0.1 + rollup: 2.23.0 specifiers: - '@rollup/pluginutils': ^3.0.4 + '@rollup/pluginutils': ^3.1.0 d3-dsv: 1.2.0 - del-cli: ^3.0.0 - rollup: ^2.0.0 + del-cli: ^3.0.1 + rollup: ^2.23.0 tosource: ^1.0.0 packages/dynamic-import-vars: dependencies: @@ -205,14 +207,12 @@ importers: devDependencies: acorn: 7.1.1 acorn-dynamic-import: 4.0.0_acorn@7.1.1 - ava: 2.4.0 prettier: 2.0.5 rollup: 2.16.1 specifiers: '@rollup/pluginutils': ^3.0.9 acorn: ^7.1.1 acorn-dynamic-import: ^4.0.0 - ava: ^2.4.0 estree-walker: ^2.0.1 globby: ^11.0.0 magic-string: ^0.25.7 @@ -220,17 +220,17 @@ importers: rollup: ^2.7.5 packages/html: devDependencies: - rollup: 2.2.0 - rollup-plugin-postcss: 2.0.3 + rollup: 2.23.0 + rollup-plugin-postcss: 3.1.3 specifiers: - rollup: ^2.0.0 - rollup-plugin-postcss: ^2.0.3 + rollup: ^2.23.0 + rollup-plugin-postcss: ^3.1.3 packages/image: dependencies: '@rollup/pluginutils': 3.1.0_rollup@2.2.0 mini-svg-data-uri: 1.1.3 devDependencies: - '@rollup/plugin-buble': 0.21.0_rollup@2.2.0 + '@rollup/plugin-buble': 0.21.3_rollup@2.2.0 rollup: 2.2.0 specifiers: '@rollup/plugin-buble': ^0.21.0 @@ -239,31 +239,31 @@ importers: rollup: ^2.0.0 packages/inject: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.2.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 estree-walker: 1.0.1 - magic-string: 0.25.6 + magic-string: 0.25.7 devDependencies: - '@rollup/plugin-buble': 0.21.0_rollup@2.2.0 - del-cli: 3.0.0 + '@rollup/plugin-buble': 0.21.3_rollup@2.23.0 + del-cli: 3.0.1 locate-character: 2.0.5 - rollup: 2.2.0 + rollup: 2.23.0 source-map: 0.7.3 - typescript: 3.7.5 + typescript: 3.9.7 specifiers: - '@rollup/plugin-buble': ^0.21.0 - '@rollup/pluginutils': ^3.0.4 - del-cli: ^3.0.0 + '@rollup/plugin-buble': ^0.21.3 + '@rollup/pluginutils': ^3.1.0 + del-cli: ^3.0.1 estree-walker: ^1.0.1 locate-character: ^2.0.5 - magic-string: ^0.25.5 - rollup: ^2.0.0 + magic-string: ^0.25.7 + rollup: ^2.23.0 source-map: ^0.7.3 - typescript: ^3.7.4 + typescript: ^3.9.7 packages/json: dependencies: '@rollup/pluginutils': 3.1.0 devDependencies: - '@rollup/plugin-buble': 0.21.0 + '@rollup/plugin-buble': 0.21.3 '@rollup/plugin-node-resolve': 7.1.1 source-map-support: 0.5.16 specifiers: @@ -273,30 +273,30 @@ importers: source-map-support: ^0.5.16 packages/legacy: devDependencies: - '@rollup/plugin-buble': 0.20.0_rollup@2.2.0 - del-cli: 3.0.0 - rollup: 2.2.0 + '@rollup/plugin-buble': 0.20.0_rollup@2.23.0 + del-cli: 3.0.1 + rollup: 2.23.0 specifiers: '@rollup/plugin-buble': ^0.20.0 - del-cli: ^3.0.0 - rollup: ^2.0.0 + del-cli: ^3.0.1 + rollup: ^2.23.0 packages/multi-entry: dependencies: matched: 1.0.2 devDependencies: - '@babel/core': 7.9.0 - '@babel/preset-env': 7.9.5_@babel+core@7.9.0 - rollup: 2.2.0 - rollup-plugin-babel: 4.4.0_@babel+core@7.9.0+rollup@2.2.0 + '@babel/core': 7.10.5 + '@babel/preset-env': 7.10.4_@babel+core@7.10.5 + rollup: 2.23.0 + rollup-plugin-babel: 4.4.0_@babel+core@7.10.5+rollup@2.23.0 specifiers: - '@babel/core': ^7.9.0 - '@babel/preset-env': ^7.9.0 + '@babel/core': ^7.10.5 + '@babel/preset-env': ^7.10.4 matched: ^1.0.2 - rollup: ^2.0.0 + rollup: ^2.23.0 rollup-plugin-babel: ^4.4.0 packages/node-resolve: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.12.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 '@types/resolve': 1.17.1 builtin-modules: 3.1.0 deep-freeze: 0.0.1 @@ -304,22 +304,22 @@ importers: is-module: 1.0.0 resolve: 1.17.0 devDependencies: - '@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.1.0_@babel+core@7.10.4+rollup@2.12.0 - '@rollup/plugin-commonjs': 13.0.0_rollup@2.12.0 - '@rollup/plugin-json': 4.1.0_rollup@2.12.0 + '@babel/core': 7.10.5 + '@babel/plugin-transform-typescript': 7.10.5_@babel+core@7.10.5 + '@babel/preset-env': 7.10.4_@babel+core@7.10.5 + '@rollup/plugin-babel': 5.1.0_@babel+core@7.10.5+rollup@2.23.0 + '@rollup/plugin-commonjs': 13.0.2_rollup@2.23.0 + '@rollup/plugin-json': 4.1.0_rollup@2.23.0 es5-ext: 0.10.53 - rollup: 2.12.0 + rollup: 2.23.0 source-map: 0.7.3 string-capitalize: 1.0.1 specifiers: - '@babel/core': ^7.10.4 - '@babel/plugin-transform-typescript': ^7.10.4 + '@babel/core': ^7.10.5 + '@babel/plugin-transform-typescript': ^7.10.5 '@babel/preset-env': ^7.10.4 - '@rollup/plugin-babel': ^5.0.4 - '@rollup/plugin-commonjs': ^13.0.0 + '@rollup/plugin-babel': ^5.1.0 + '@rollup/plugin-commonjs': ^13.0.2 '@rollup/plugin-json': ^4.1.0 '@rollup/pluginutils': ^3.1.0 '@types/resolve': 1.17.1 @@ -329,7 +329,7 @@ importers: es5-ext: ^0.10.53 is-module: ^1.0.0 resolve: ^1.17.0 - rollup: ^2.12.0 + rollup: ^2.23.0 source-map: ^0.7.3 string-capitalize: ^1.0.1 packages/pluginutils: @@ -358,24 +358,24 @@ importers: typescript: ^3.7.5 packages/replace: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.2.0 - magic-string: 0.25.6 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + magic-string: 0.25.7 devDependencies: - '@rollup/plugin-buble': 0.21.0_rollup@2.2.0 - del-cli: 3.0.0 + '@rollup/plugin-buble': 0.21.3_rollup@2.23.0 + del-cli: 3.0.1 locate-character: 2.0.5 - rollup: 2.2.0 + rollup: 2.23.0 source-map: 0.7.3 - typescript: 3.7.5 + typescript: 3.9.7 specifiers: - '@rollup/plugin-buble': ^0.21.0 - '@rollup/pluginutils': ^3.0.8 - del-cli: ^3.0.0 + '@rollup/plugin-buble': ^0.21.3 + '@rollup/pluginutils': ^3.1.0 + del-cli: ^3.0.1 locate-character: ^2.0.5 - magic-string: ^0.25.5 - rollup: ^2.0.0 + magic-string: ^0.25.7 + rollup: ^2.23.0 source-map: ^0.7.3 - typescript: ^3.7.4 + typescript: ^3.9.7 packages/run: dependencies: '@types/node': 13.1.6 @@ -392,18 +392,18 @@ importers: sinon: 8.0.4 packages/strip: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.2.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 estree-walker: 1.0.1 - magic-string: 0.25.6 + magic-string: 0.25.7 devDependencies: - acorn: 7.1.0 - rollup: 2.2.0 + acorn: 7.3.1 + rollup: 2.23.0 specifiers: - '@rollup/pluginutils': ^3.0.4 - acorn: 7.1.0 + '@rollup/pluginutils': ^3.1.0 + acorn: ^7.3.1 estree-walker: ^1.0.1 - magic-string: ^0.25.5 - rollup: ^2.0.0 + magic-string: ^0.25.7 + rollup: ^2.23.0 packages/sucrase: dependencies: '@rollup/pluginutils': 3.1.0_rollup@2.2.0 @@ -418,50 +418,50 @@ importers: sucrase: ^3.10.1 packages/typescript: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.16.1 - resolve: 1.15.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + resolve: 1.17.0 devDependencies: - '@rollup/plugin-buble': 0.21.0_rollup@2.16.1 - '@rollup/plugin-commonjs': 11.0.2_rollup@2.16.1 - '@rollup/plugin-typescript': 3.0.0_b7ed8cf084a78b83114da7b845e0a30a + '@rollup/plugin-buble': 0.21.3_rollup@2.23.0 + '@rollup/plugin-commonjs': 11.1.0_rollup@2.23.0 + '@rollup/plugin-typescript': 3.1.1_60bfa7538fbe764c4bb3afdf832138ad buble: 0.19.8 - rollup: 2.16.1 - tslib: 1.10.0 - typescript: 3.7.5 + rollup: 2.23.0 + tslib: 1.13.0 + typescript: 3.9.7 specifiers: - '@rollup/plugin-buble': ^0.21.0 - '@rollup/plugin-commonjs': ^11.0.1 - '@rollup/plugin-typescript': ^3.0.0 - '@rollup/pluginutils': ^3.0.1 + '@rollup/plugin-buble': ^0.21.3 + '@rollup/plugin-commonjs': ^11.1.0 + '@rollup/plugin-typescript': ^3.1.1 + '@rollup/pluginutils': ^3.1.0 buble: ^0.19.8 - resolve: ^1.14.1 + resolve: ^1.17.0 rollup: ^2.14.0 - tslib: ^1.10.0 - typescript: ^3.7.4 + tslib: ^1.13.0 + typescript: ^3.9.7 packages/url: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.2.0 - make-dir: 3.0.0 - mime: 2.4.4 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + make-dir: 3.1.0 + mime: 2.4.6 devDependencies: - '@babel/core': 7.9.0 - '@babel/preset-env': 7.9.5_@babel+core@7.9.0 - '@babel/register': 7.9.0_@babel+core@7.9.0 + '@babel/core': 7.10.5 + '@babel/preset-env': 7.10.4_@babel+core@7.10.5 + '@babel/register': 7.10.5_@babel+core@7.10.5 del: 5.1.0 globby: 10.0.2 - rollup: 2.2.0 - rollup-plugin-babel: 4.3.3_@babel+core@7.9.0+rollup@2.2.0 + rollup: 2.23.0 + rollup-plugin-babel: 4.4.0_@babel+core@7.10.5+rollup@2.23.0 specifiers: - '@babel/core': ^7.9.0 - '@babel/preset-env': ^7.9.0 - '@babel/register': ^7.9.0 - '@rollup/pluginutils': ^3.0.4 + '@babel/core': ^7.10.5 + '@babel/preset-env': ^7.10.4 + '@babel/register': ^7.10.5 + '@rollup/pluginutils': ^3.1.0 del: ^5.1.0 - globby: ^10.0.1 - make-dir: ^3.0.0 - mime: ^2.4.4 - rollup: ^2.0.0 - rollup-plugin-babel: ^4.3.3 + globby: ^10.0.2 + make-dir: ^3.1.0 + mime: ^2.4.6 + rollup: ^2.23.0 + rollup-plugin-babel: ^4.4.0 packages/virtual: devDependencies: '@rollup/plugin-node-resolve': 7.1.1_rollup@2.2.0 @@ -471,112 +471,103 @@ importers: rollup: ^2.0.0 packages/wasm: devDependencies: - '@rollup/plugin-typescript': 4.1.1_rollup@2.2.0 - del-cli: 3.0.0 - rollup: 2.2.0 + '@rollup/plugin-typescript': 4.1.2_rollup@2.23.0 + del-cli: 3.0.1 + rollup: 2.23.0 source-map: 0.7.3 specifiers: - '@rollup/plugin-typescript': ^4.1.1 - del-cli: ^3.0.0 - rollup: ^2.0.0 + '@rollup/plugin-typescript': ^4.1.2 + del-cli: ^3.0.1 + rollup: ^2.23.0 source-map: ^0.7.3 packages/yaml: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.2.0 - js-yaml: 3.13.1 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + js-yaml: 3.14.0 tosource: 1.0.0 devDependencies: - '@babel/core': 7.9.0 - '@babel/preset-env': 7.9.5_@babel+core@7.9.0 - '@rollup/plugin-node-resolve': 7.1.1_rollup@2.2.0 - del-cli: 3.0.0 - rollup: 2.2.0 - rollup-plugin-babel: 4.3.3_@babel+core@7.9.0+rollup@2.2.0 - source-map-support: 0.5.16 + '@babel/core': 7.10.5 + '@babel/preset-env': 7.10.4_@babel+core@7.10.5 + '@rollup/plugin-node-resolve': 7.1.3_rollup@2.23.0 + del-cli: 3.0.1 + rollup: 2.23.0 + rollup-plugin-babel: 4.4.0_@babel+core@7.10.5+rollup@2.23.0 + source-map-support: 0.5.19 specifiers: - '@babel/core': ^7.9.0 - '@babel/preset-env': ^7.9.0 - '@rollup/plugin-node-resolve': ^7.1.1 - '@rollup/pluginutils': ^3.0.1 - del-cli: ^3.0.0 - js-yaml: ^3.13.1 - rollup: ^2.0.0 - rollup-plugin-babel: ^4.3.3 - source-map-support: ^0.5.16 + '@babel/core': ^7.10.5 + '@babel/preset-env': ^7.10.4 + '@rollup/plugin-node-resolve': ^7.1.3 + '@rollup/pluginutils': ^3.1.0 + del-cli: ^3.0.1 + js-yaml: ^3.14.0 + rollup: ^2.23.0 + rollup-plugin-babel: ^4.4.0 + source-map-support: ^0.5.19 tosource: ^1.0.0 lockfileVersion: 5.1 packages: - /@ava/babel-plugin-throws-helper/4.0.0: - dev: true - engines: - node: '>=8.9.4 <9 || >=10.0.0 <11 || >=12.0.0' - resolution: - integrity: sha512-3diBLIVBPPh3j4+hb5lo0I1D+S/O/VDJPI4Y502apBxmwEqjyXG4gTSPFUlm41sSZeZzMarT/Gzovw9kV7An0w== - /@ava/babel-preset-stage-4/4.0.0_@babel+core@7.9.0: + /@ava/babel/1.0.1: dependencies: - '@babel/plugin-proposal-async-generator-functions': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-dynamic-import': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-optional-catch-binding': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-dotall-regex': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-modules-commonjs': 7.9.0_@babel+core@7.9.0 + '@ava/require-precompiled': 1.0.0 + '@babel/core': 7.10.5 + '@babel/generator': 7.10.5 + '@babel/plugin-proposal-dynamic-import': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-optional-chaining': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.10.5 + babel-plugin-espower: 3.0.1 + concordance: 4.0.0 + convert-source-map: 1.7.0 + dot-prop: 5.2.0 + empower-core: 1.2.0 + escape-string-regexp: 2.0.0 + find-up: 4.1.0 + is-plain-object: 3.0.1 + md5-hex: 3.0.1 + package-hash: 4.0.0 + pkg-conf: 3.1.0 + source-map-support: 0.5.19 + strip-bom-buf: 2.0.0 + write-file-atomic: 3.0.3 dev: true engines: - node: '>=8.9.4 <9 || >=10.0.0 <11 || >=12.0.0' - peerDependencies: - '@babel/core': '*' + node: '>=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0' resolution: - integrity: sha512-lZEV1ZANzfzSYBU6WHSErsy7jLPbD1iIgAboASPMcKo7woVni5/5IKWeT0RxC8rY802MFktur3OKEw2JY1Tv2w== - /@ava/babel-preset-transform-test-files/6.0.0: - dependencies: - '@ava/babel-plugin-throws-helper': 4.0.0 - babel-plugin-espower: 3.0.1 + integrity: sha512-mGKpGeT6J4UjK2sxPjvwWl/GtsF9+eNyn2HHa7OknWWWYuw+rof/UaTAn1CA0z4sTw4Mruik/ihEasMw+JM6aQ== + /@ava/require-precompiled/1.0.0: dev: true engines: - node: '>=8.9.4 <9 || >=10.0.0 <11 || >=12.0.0' + node: '>=10' resolution: - integrity: sha512-8eKhFzZp7Qcq1VLfoC75ggGT8nQs9q8fIxltU47yCB7Wi7Y8Qf6oqY1Bm0z04fIec24vEgr0ENhDHEOUGVDqnA== + integrity: sha512-N7w4g+P/SUL8SF+HC4Z4e/ctV6nQ5AERC90K90r4xZQ8WVrJux9albvfyYAzygyU47CSqMWh6yJwFs8DYaeWmg== /@babel/code-frame/7.10.4: dependencies: '@babel/highlight': 7.10.4 - dev: true resolution: integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== - /@babel/code-frame/7.8.3: - dependencies: - '@babel/highlight': 7.9.0 - resolution: - integrity: sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== - /@babel/compat-data/7.10.4: - dependencies: - browserslist: 4.12.0 - invariant: 2.2.4 - semver: 5.7.1 - dev: true - resolution: - integrity: sha512-t+rjExOrSVvjQQXNp5zAIYDp00KjdvGl/TpDX5REPr0S9IAIPQMTilcfG6q8c0QFmj9lSTVySV2VTsyggvtNIw== - /@babel/compat-data/7.9.0: + /@babel/compat-data/7.10.5: dependencies: - browserslist: 4.12.0 + browserslist: 4.13.0 invariant: 2.2.4 semver: 5.7.1 dev: true resolution: - integrity: sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g== - /@babel/core/7.10.4: + integrity: sha512-mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw== + /@babel/core/7.10.5: dependencies: '@babel/code-frame': 7.10.4 - '@babel/generator': 7.10.4 - '@babel/helper-module-transforms': 7.10.4 + '@babel/generator': 7.10.5 + '@babel/helper-module-transforms': 7.10.5 '@babel/helpers': 7.10.4 - '@babel/parser': 7.10.4 + '@babel/parser': 7.10.5 '@babel/template': 7.10.4 - '@babel/traverse': 7.10.4 - '@babel/types': 7.10.4 + '@babel/traverse': 7.10.5 + '@babel/types': 7.10.5 convert-source-map: 1.7.0 debug: 4.1.1 gensync: 1.0.0-beta.1 json5: 2.1.3 - lodash: 4.17.15 + lodash: 4.17.19 resolve: 1.17.0 semver: 5.7.1 source-map: 0.5.7 @@ -584,61 +575,7 @@ packages: engines: node: '>=6.9.0' resolution: - integrity: sha512-3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA== - /@babel/core/7.8.3: - dependencies: - '@babel/code-frame': 7.8.3 - '@babel/generator': 7.9.5 - '@babel/helpers': 7.9.2 - '@babel/parser': 7.9.4 - '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 - convert-source-map: 1.7.0 - debug: 4.1.1 - gensync: 1.0.0-beta.1 - json5: 2.1.3 - lodash: 4.17.15 - resolve: 1.15.0 - semver: 5.7.1 - source-map: 0.5.7 - dev: true - engines: - node: '>=6.9.0' - resolution: - integrity: sha512-4XFkf8AwyrEG7Ziu3L2L0Cv+WyY47Tcsp70JFmpftbAA1K7YL/sgE9jh9HyNj08Y/U50ItUchpN0w6HxAoX1rA== - /@babel/core/7.9.0: - dependencies: - '@babel/code-frame': 7.8.3 - '@babel/generator': 7.9.5 - '@babel/helper-module-transforms': 7.9.0 - '@babel/helpers': 7.9.2 - '@babel/parser': 7.9.4 - '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 - convert-source-map: 1.7.0 - debug: 4.1.1 - gensync: 1.0.0-beta.1 - json5: 2.1.3 - lodash: 4.17.15 - resolve: 1.15.0 - semver: 5.7.1 - source-map: 0.5.7 - dev: true - engines: - node: '>=6.9.0' - resolution: - integrity: sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w== - /@babel/generator/7.10.4: - dependencies: - '@babel/types': 7.10.4 - jsesc: 2.5.2 - lodash: 4.17.15 - source-map: 0.5.7 - dev: true - resolution: - integrity: sha512-toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng== + integrity: sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w== /@babel/generator/7.10.5: dependencies: '@babel/types': 7.10.5 @@ -647,27 +584,12 @@ packages: dev: true resolution: integrity: sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig== - /@babel/generator/7.9.5: - dependencies: - '@babel/types': 7.9.5 - jsesc: 2.5.2 - lodash: 4.17.15 - source-map: 0.5.7 - dev: true - resolution: - integrity: sha512-GbNIxVB3ZJe3tLeDm1HSn2AhuD/mVcyLDpgtLXa5tplmWrJdF/elxB56XNqCuD6szyNkDi6wuoKXln3QeBmCHQ== /@babel/helper-annotate-as-pure/7.10.4: dependencies: '@babel/types': 7.10.5 dev: true resolution: integrity: sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== - /@babel/helper-annotate-as-pure/7.8.3: - dependencies: - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw== /@babel/helper-builder-binary-assignment-operator-visitor/7.10.4: dependencies: '@babel/helper-explode-assignable-expression': 7.10.4 @@ -675,18 +597,11 @@ packages: dev: true resolution: integrity: sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== - /@babel/helper-builder-binary-assignment-operator-visitor/7.8.3: + /@babel/helper-compilation-targets/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/helper-explode-assignable-expression': 7.8.3 - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw== - /@babel/helper-compilation-targets/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/compat-data': 7.10.4 - '@babel/core': 7.10.4 - browserslist: 4.12.0 + '@babel/compat-data': 7.10.5 + '@babel/core': 7.10.5 + browserslist: 4.13.0 invariant: 2.2.4 levenary: 1.1.1 semver: 5.7.1 @@ -695,37 +610,11 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== - /@babel/helper-compilation-targets/7.8.7_@babel+core@7.8.3: + /@babel/helper-create-class-features-plugin/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/compat-data': 7.9.0 - '@babel/core': 7.8.3 - browserslist: 4.12.0 - invariant: 2.2.4 - levenary: 1.1.1 - semver: 5.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw== - /@babel/helper-compilation-targets/7.8.7_@babel+core@7.9.0: - dependencies: - '@babel/compat-data': 7.9.0 - '@babel/core': 7.9.0 - browserslist: 4.12.0 - invariant: 2.2.4 - levenary: 1.1.1 - semver: 5.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw== - /@babel/helper-create-class-features-plugin/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-function-name': 7.10.4 - '@babel/helper-member-expression-to-functions': 7.10.4 + '@babel/helper-member-expression-to-functions': 7.10.5 '@babel/helper-optimise-call-expression': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-replace-supers': 7.10.4 @@ -734,92 +623,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-9raUiOsXPxzzLjCXeosApJItoMnX3uyT4QdM2UldffuGApNrF8e938MwNpDCK9CPoyxrEoCgT+hObJc3mZa6lQ== - /@babel/helper-create-class-features-plugin/7.9.5_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-function-name': 7.9.5 - '@babel/helper-member-expression-to-functions': 7.8.3 - '@babel/helper-optimise-call-expression': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-replace-supers': 7.8.6 - '@babel/helper-split-export-declaration': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-IipaxGaQmW4TfWoXdqjY0TzoXQ1HRS0kPpEgvjosb3u7Uedcq297xFqDQiCcQtRRwzIMif+N1MLVI8C5a4/PAA== - /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/helper-regex': 7.10.4 - regexpu-core: 4.7.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== - /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/helper-regex': 7.10.4 - regexpu-core: 4.7.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== - /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.9.0: + integrity: sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== + /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.10.5 '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/helper-regex': 7.10.4 + '@babel/helper-regex': 7.10.5 regexpu-core: 4.7.0 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: integrity: sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== - /@babel/helper-create-regexp-features-plugin/7.8.8_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-annotate-as-pure': 7.8.3 - '@babel/helper-regex': 7.8.3 - regexpu-core: 4.7.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg== - /@babel/helper-create-regexp-features-plugin/7.8.8_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-annotate-as-pure': 7.8.3 - '@babel/helper-regex': 7.8.3 - regexpu-core: 4.7.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg== - /@babel/helper-define-map/7.10.4: + /@babel/helper-define-map/7.10.5: dependencies: '@babel/helper-function-name': 7.10.4 - '@babel/types': 7.10.4 - lodash: 4.17.15 - dev: true - resolution: - integrity: sha512-nIij0oKErfCnLUCWaCaHW0Bmtl2RO9cN7+u2QT8yqTywgALKlyUVOvHDElh+b5DwVC6YB1FOYFOTWcN/+41EDA== - /@babel/helper-define-map/7.8.3: - dependencies: - '@babel/helper-function-name': 7.9.5 - '@babel/types': 7.9.5 - lodash: 4.17.15 + '@babel/types': 7.10.5 + lodash: 4.17.19 dev: true resolution: - integrity: sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g== + integrity: sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== /@babel/helper-explode-assignable-expression/7.10.4: dependencies: '@babel/traverse': 7.10.5 @@ -827,13 +650,6 @@ packages: dev: true resolution: integrity: sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A== - /@babel/helper-explode-assignable-expression/7.8.3: - dependencies: - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw== /@babel/helper-function-name/7.10.4: dependencies: '@babel/helper-get-function-arity': 7.10.4 @@ -842,123 +658,57 @@ packages: dev: true resolution: integrity: sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== - /@babel/helper-function-name/7.9.5: - dependencies: - '@babel/helper-get-function-arity': 7.8.3 - '@babel/template': 7.8.6 - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw== /@babel/helper-get-function-arity/7.10.4: dependencies: '@babel/types': 7.10.5 dev: true resolution: integrity: sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== - /@babel/helper-get-function-arity/7.8.3: - dependencies: - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA== /@babel/helper-hoist-variables/7.10.4: dependencies: '@babel/types': 7.10.5 dev: true resolution: integrity: sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== - /@babel/helper-hoist-variables/7.8.3: - dependencies: - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg== - /@babel/helper-member-expression-to-functions/7.10.4: - dependencies: - '@babel/types': 7.10.4 - dev: true - resolution: - integrity: sha512-m5j85pK/KZhuSdM/8cHUABQTAslV47OjfIB9Cc7P+PvlAoBzdb79BGNfw8RhT5Mq3p+xGd0ZfAKixbrUZx0C7A== /@babel/helper-member-expression-to-functions/7.10.5: dependencies: '@babel/types': 7.10.5 dev: true resolution: integrity: sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA== - /@babel/helper-member-expression-to-functions/7.8.3: - dependencies: - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA== /@babel/helper-module-imports/7.10.4: dependencies: '@babel/types': 7.10.5 - dev: true resolution: integrity: sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== - /@babel/helper-module-imports/7.8.3: - dependencies: - '@babel/types': 7.9.5 - resolution: - integrity: sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== - /@babel/helper-module-transforms/7.10.4: + /@babel/helper-module-transforms/7.10.5: dependencies: '@babel/helper-module-imports': 7.10.4 '@babel/helper-replace-supers': 7.10.4 '@babel/helper-simple-access': 7.10.4 '@babel/helper-split-export-declaration': 7.10.4 '@babel/template': 7.10.4 - '@babel/types': 7.10.4 - lodash: 4.17.15 - dev: true - resolution: - integrity: sha512-Er2FQX0oa3nV7eM1o0tNCTx7izmQtwAQsIiaLRWtavAAEcskb0XJ5OjJbVrYXWOTr8om921Scabn4/tzlx7j1Q== - /@babel/helper-module-transforms/7.9.0: - dependencies: - '@babel/helper-module-imports': 7.8.3 - '@babel/helper-replace-supers': 7.8.6 - '@babel/helper-simple-access': 7.8.3 - '@babel/helper-split-export-declaration': 7.8.3 - '@babel/template': 7.8.6 - '@babel/types': 7.9.5 - lodash: 4.17.15 + '@babel/types': 7.10.5 + lodash: 4.17.19 dev: true resolution: - integrity: sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA== + integrity: sha512-4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA== /@babel/helper-optimise-call-expression/7.10.4: dependencies: '@babel/types': 7.10.5 dev: true resolution: integrity: sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== - /@babel/helper-optimise-call-expression/7.8.3: - dependencies: - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ== /@babel/helper-plugin-utils/7.10.4: dev: true resolution: integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== - /@babel/helper-plugin-utils/7.8.3: - dev: true - resolution: - integrity: sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== - /@babel/helper-regex/7.10.4: - dependencies: - lodash: 4.17.15 - dev: true - resolution: - integrity: sha512-inWpnHGgtg5NOF0eyHlC0/74/VkdRITY9dtTpB2PrxKKn+AkVMRiZz/Adrx+Ssg+MLDesi2zohBW6MVq6b4pOQ== - /@babel/helper-regex/7.8.3: + /@babel/helper-regex/7.10.5: dependencies: - lodash: 4.17.15 + lodash: 4.17.19 dev: true resolution: - integrity: sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ== + integrity: sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== /@babel/helper-remap-async-to-generator/7.10.4: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 @@ -969,16 +719,6 @@ packages: dev: true resolution: integrity: sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg== - /@babel/helper-remap-async-to-generator/7.8.3: - dependencies: - '@babel/helper-annotate-as-pure': 7.8.3 - '@babel/helper-wrap-function': 7.8.3 - '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA== /@babel/helper-replace-supers/7.10.4: dependencies: '@babel/helper-member-expression-to-functions': 7.10.5 @@ -988,15 +728,6 @@ packages: dev: true resolution: integrity: sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== - /@babel/helper-replace-supers/7.8.6: - dependencies: - '@babel/helper-member-expression-to-functions': 7.8.3 - '@babel/helper-optimise-call-expression': 7.8.3 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA== /@babel/helper-simple-access/7.10.4: dependencies: '@babel/template': 7.10.4 @@ -1004,32 +735,15 @@ packages: dev: true resolution: integrity: sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== - /@babel/helper-simple-access/7.8.3: - dependencies: - '@babel/template': 7.8.6 - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw== /@babel/helper-split-export-declaration/7.10.4: dependencies: '@babel/types': 7.10.5 dev: true resolution: integrity: sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg== - /@babel/helper-split-export-declaration/7.8.3: - dependencies: - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA== /@babel/helper-validator-identifier/7.10.4: - dev: true resolution: integrity: sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== - /@babel/helper-validator-identifier/7.9.5: - resolution: - integrity: sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g== /@babel/helper-wrap-function/7.10.4: dependencies: '@babel/helper-function-name': 7.10.4 @@ -1039,15 +753,6 @@ packages: dev: true resolution: integrity: sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== - /@babel/helper-wrap-function/7.8.3: - dependencies: - '@babel/helper-function-name': 7.9.5 - '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ== /@babel/helpers/7.10.4: dependencies: '@babel/template': 7.10.4 @@ -1056,36 +761,13 @@ packages: dev: true resolution: integrity: sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== - /@babel/helpers/7.9.2: - dependencies: - '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA== /@babel/highlight/7.10.4: dependencies: '@babel/helper-validator-identifier': 7.10.4 chalk: 2.4.2 js-tokens: 4.0.0 - dev: true resolution: integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== - /@babel/highlight/7.9.0: - dependencies: - '@babel/helper-validator-identifier': 7.9.5 - chalk: 2.4.2 - js-tokens: 4.0.0 - resolution: - integrity: sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== - /@babel/parser/7.10.4: - dev: true - engines: - node: '>=6.0.0' - hasBin: true - resolution: - integrity: sha512-8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA== /@babel/parser/7.10.5: dev: true engines: @@ -1093,1895 +775,697 @@ packages: hasBin: true resolution: integrity: sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ== - /@babel/parser/7.9.4: - dev: true - engines: - node: '>=6.0.0' - hasBin: true - resolution: - integrity: sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA== - /@babel/plugin-external-helpers/7.8.3_@babel+core@7.8.3: + /@babel/plugin-external-helpers/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw== - /@babel/plugin-proposal-async-generator-functions/7.10.4_@babel+core@7.10.4: + integrity: sha512-5mASqSthmRNYVXOphYzlqmR3Y8yp5SZMZhtKDh2DGV3R2PWGLEmP7qOahw66//6m4hjhlpV1bVM7xIJHt1F77Q== + /@babel/plugin-proposal-async-generator-functions/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@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 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-MJbxGSmejEFVOANAezdO39SObkURO5o/8b6fSH6D1pi9RZQt+ldppKPXfqgUWpSQ9asM6xaSaSJIaeWMDRP0Zg== - /@babel/plugin-proposal-async-generator-functions/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-remap-async-to-generator': 7.8.3 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw== - /@babel/plugin-proposal-async-generator-functions/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-remap-async-to-generator': 7.8.3 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.10.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw== - /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.10.4: + integrity: sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== + /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 - '@babel/helper-create-class-features-plugin': 7.10.4_@babel+core@7.10.4 + '@babel/core': 7.10.5 + '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== - /@babel/plugin-proposal-decorators/7.8.3_@babel+core@7.8.3: + /@babel/plugin-proposal-decorators/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-create-class-features-plugin': 7.9.5_@babel+core@7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-decorators': 7.8.3_@babel+core@7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.10.5 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-decorators': 7.10.4_@babel+core@7.10.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w== - /@babel/plugin-proposal-dynamic-import/7.10.4_@babel+core@7.10.4: + integrity: sha512-Sc5TAQSZuLzgY0664mMDn24Vw2P8g/VhyLyGPaWiHahhgLqeZvcGeyBZOrJW0oSKIK2mvQ22a1ENXBIQLhrEiQ== + /@babel/plugin-proposal-dynamic-import/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@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.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== - /@babel/plugin-proposal-dynamic-import/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w== - /@babel/plugin-proposal-dynamic-import/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w== - /@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.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@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.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== - /@babel/plugin-proposal-json-strings/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q== - /@babel/plugin-proposal-json-strings/7.8.3_@babel+core@7.9.0: + /@babel/plugin-proposal-nullish-coalescing-operator/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q== - /@babel/plugin-proposal-nullish-coalescing-operator/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@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.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== - /@babel/plugin-proposal-nullish-coalescing-operator/7.8.3_@babel+core@7.8.3: + /@babel/plugin-proposal-numeric-separator/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.10.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== - /@babel/plugin-proposal-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0: + integrity: sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== + /@babel/plugin-proposal-object-rest-spread/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.10.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== - /@babel/plugin-proposal-numeric-separator/7.10.4_@babel+core@7.10.4: + integrity: sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA== + /@babel/plugin-proposal-optional-catch-binding/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.10.4 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.10.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== - /@babel/plugin-proposal-numeric-separator/7.8.3_@babel+core@7.8.3: + integrity: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== + /@babel/plugin-proposal-optional-chaining/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-numeric-separator': 7.8.3_@babel+core@7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.10.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ== - /@babel/plugin-proposal-numeric-separator/7.8.3_@babel+core@7.9.0: + integrity: sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ== + /@babel/plugin-proposal-private-methods/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-numeric-separator': 7.8.3_@babel+core@7.9.0 + '@babel/core': 7.10.5 + '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ== - /@babel/plugin-proposal-object-rest-spread/7.10.4_@babel+core@7.10.4: + integrity: sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== + /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 + '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.5 '@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 dev: true + engines: + node: '>=4' peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA== - /@babel/plugin-proposal-object-rest-spread/7.9.5_@babel+core@7.8.3: + integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-parameters': 7.9.5_@babel+core@7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-VP2oXvAf7KCYTthbUHwBlewbl1Iq059f6seJGsxMizaCdgHIeczOr7FBqELhSqfkIl04Fi8okzWzl63UKbQmmg== - /@babel/plugin-proposal-object-rest-spread/7.9.5_@babel+core@7.9.0: + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + /@babel/plugin-syntax-class-properties/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-parameters': 7.9.5_@babel+core@7.9.0 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-VP2oXvAf7KCYTthbUHwBlewbl1Iq059f6seJGsxMizaCdgHIeczOr7FBqELhSqfkIl04Fi8okzWzl63UKbQmmg== - /@babel/plugin-proposal-optional-catch-binding/7.10.4_@babel+core@7.10.4: + integrity: sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== + /@babel/plugin-syntax-decorators/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== - /@babel/plugin-proposal-optional-catch-binding/7.8.3_@babel+core@7.8.3: + integrity: sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw== + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== - /@babel/plugin-proposal-optional-catch-binding/7.8.3_@babel+core@7.9.0: + integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== - /@babel/plugin-proposal-optional-chaining/7.10.4_@babel+core@7.10.4: + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ== - /@babel/plugin-proposal-optional-chaining/7.9.0_@babel+core@7.8.3: + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== - /@babel/plugin-proposal-optional-chaining/7.9.0_@babel+core@7.9.0: + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== - /@babel/plugin-proposal-private-methods/7.10.4_@babel+core@7.10.4: + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 - '@babel/helper-create-class-features-plugin': 7.10.4_@babel+core@7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.10.4: + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true - engines: - node: '>=4' peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.8.3: + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + /@babel/plugin-syntax-top-level-await/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.8.3 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true - engines: - node: '>=4' peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.9.0: + integrity: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== + /@babel/plugin-syntax-typescript/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.9.0 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true - engines: - node: '>=4' peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== - /@babel/plugin-proposal-unicode-property-regex/7.8.8_@babel+core@7.8.3: + integrity: sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== + /@babel/plugin-transform-arrow-functions/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.8.3 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true - engines: - node: '>=4' peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A== - /@babel/plugin-proposal-unicode-property-regex/7.8.8_@babel+core@7.9.0: + integrity: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== + /@babel/plugin-transform-async-to-generator/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.0 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-module-imports': 7.10.4 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/helper-remap-async-to-generator': 7.10.4 dev: true - engines: - node: '>=4' peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A== - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.10.4: + integrity: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== + /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.8.3: + integrity: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== + /@babel/plugin-transform-block-scoping/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.9.0: + integrity: sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg== + /@babel/plugin-transform-classes/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.10.5 + '@babel/helper-annotate-as-pure': 7.10.4 + '@babel/helper-define-map': 7.10.5 + '@babel/helper-function-name': 7.10.4 + '@babel/helper-optimise-call-expression': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 + '@babel/helper-replace-supers': 7.10.4 + '@babel/helper-split-export-declaration': 7.10.4 + globals: 11.12.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - /@babel/plugin-syntax-class-properties/7.10.4_@babel+core@7.10.4: + integrity: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== + /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== - /@babel/plugin-syntax-decorators/7.8.3_@babel+core@7.8.3: + integrity: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== + /@babel/plugin-transform-destructuring/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-8Hg4dNNT9/LcA1zQlfwuKR8BUc/if7Q7NkTam9sGTcJphLwpf2g4S42uhspQrIrR+dpzE0dtTqBVFoHl8GtnnQ== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.10.4: + integrity: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== + /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.8.3: + integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== + /@babel/plugin-transform-duplicate-keys/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.9.0: + integrity: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== + /@babel/plugin-transform-exponentiation-operator/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.10.4: + integrity: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== + /@babel/plugin-transform-for-of/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.8.3: + integrity: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== + /@babel/plugin-transform-function-name/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-function-name': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.9.0: + integrity: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== + /@babel/plugin-transform-literals/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.10.4: + integrity: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== + /@babel/plugin-transform-member-expression-literals/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.8.3: + integrity: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== + /@babel/plugin-transform-modules-amd/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-module-transforms': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 + babel-plugin-dynamic-import-node: 2.3.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0: + integrity: sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== + /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.10.5 + '@babel/helper-module-transforms': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 + '@babel/helper-simple-access': 7.10.4 + babel-plugin-dynamic-import-node: 2.3.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.10.4: + integrity: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== + /@babel/plugin-transform-modules-systemjs/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 + '@babel/helper-hoist-variables': 7.10.4 + '@babel/helper-module-transforms': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 + babel-plugin-dynamic-import-node: 2.3.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - /@babel/plugin-syntax-numeric-separator/7.8.3_@babel+core@7.8.3: + integrity: sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== + /@babel/plugin-transform-modules-umd/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-module-transforms': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw== - /@babel/plugin-syntax-numeric-separator/7.8.3_@babel+core@7.9.0: + integrity: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== + /@babel/plugin-transform-named-capturing-groups-regex/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.5 dev: true peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0 resolution: - integrity: sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw== - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.10.4: + integrity: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== + /@babel/plugin-transform-new-target/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.8.3: + integrity: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== + /@babel/plugin-transform-object-super/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 + '@babel/helper-replace-supers': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.9.0: + integrity: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== + /@babel/plugin-transform-parameters/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.10.5 + '@babel/helper-get-function-arity': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.10.4: + integrity: sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== + /@babel/plugin-transform-property-literals/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.8.3: + integrity: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== + /@babel/plugin-transform-regenerator/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.10.4 + '@babel/core': 7.10.5 + regenerator-transform: 0.14.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.9.0: + integrity: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== + /@babel/plugin-transform-reserved-words/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.10.4: + integrity: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== + /@babel/plugin-transform-runtime/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 + '@babel/helper-module-imports': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 + resolve: 1.17.0 + semver: 5.7.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.8.3: + integrity: sha512-tV4V/FjElJ9lQtyjr5xD2IFFbgY46r7EeVu5a8CpEKT5laheHKSlFeHjpkPppW3PqzGLAuv5k2qZX5LgVZIX5w== + /@babel/plugin-transform-shorthand-properties/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.9.0: + integrity: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== + /@babel/plugin-transform-spread/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-top-level-await/7.10.4_@babel+core@7.10.4: + integrity: sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ== + /@babel/plugin-transform-sticky-regex/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 + '@babel/helper-regex': 7.10.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== - /@babel/plugin-syntax-top-level-await/7.8.3_@babel+core@7.8.3: + integrity: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== + /@babel/plugin-transform-template-literals/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-annotate-as-pure': 7.10.4 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g== - /@babel/plugin-syntax-top-level-await/7.8.3_@babel+core@7.9.0: + integrity: sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== + /@babel/plugin-transform-typeof-symbol/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g== - /@babel/plugin-syntax-typescript/7.10.4_@babel+core@7.10.4: + integrity: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== + /@babel/plugin-transform-typescript/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 + '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.10.5 '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-typescript': 7.10.4_@babel+core@7.10.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== - /@babel/plugin-transform-arrow-functions/7.10.4_@babel+core@7.10.4: + integrity: sha512-YCyYsFrrRMZ3qR7wRwtSSJovPG5vGyG4ZdcSAivGwTfoasMp3VOB/AKhohu3dFtmB4cCDcsndCSxGtrdliCsZQ== + /@babel/plugin-transform-unicode-escapes/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== - /@babel/plugin-transform-arrow-functions/7.8.3_@babel+core@7.8.3: + integrity: sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== + /@babel/plugin-transform-unicode-regex/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/core': 7.10.5 + '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.5 + '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== - /@babel/plugin-transform-arrow-functions/7.8.3_@babel+core@7.9.0: + integrity: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== + /@babel/preset-env/7.10.4_@babel+core@7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 + '@babel/compat-data': 7.10.5 + '@babel/core': 7.10.5 + '@babel/helper-compilation-targets': 7.10.4_@babel+core@7.10.5 + '@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.10.5 + '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-dynamic-import': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-numeric-separator': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-object-rest-spread': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-optional-catch-binding': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-optional-chaining': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-private-methods': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.10.5 + '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-top-level-await': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-arrow-functions': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-async-to-generator': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-block-scoped-functions': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-block-scoping': 7.10.5_@babel+core@7.10.5 + '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-computed-properties': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-destructuring': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-duplicate-keys': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-exponentiation-operator': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-for-of': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-function-name': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-literals': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-member-expression-literals': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-modules-amd': 7.10.5_@babel+core@7.10.5 + '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-modules-systemjs': 7.10.5_@babel+core@7.10.5 + '@babel/plugin-transform-modules-umd': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-new-target': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-object-super': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.10.5 + '@babel/plugin-transform-property-literals': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-regenerator': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-reserved-words': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-shorthand-properties': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-spread': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-sticky-regex': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.10.5 + '@babel/plugin-transform-typeof-symbol': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-unicode-escapes': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-unicode-regex': 7.10.4_@babel+core@7.10.5 + '@babel/preset-modules': 0.1.3_@babel+core@7.10.5 + '@babel/types': 7.10.5 + browserslist: 4.13.0 + core-js-compat: 3.6.5 + invariant: 2.2.4 + levenary: 1.1.1 + semver: 5.7.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== - /@babel/plugin-transform-async-to-generator/7.10.4_@babel+core@7.10.4: + integrity: sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw== + /@babel/preset-modules/0.1.3_@babel+core@7.10.5: dependencies: - '@babel/core': 7.10.4 - '@babel/helper-module-imports': 7.10.4 + '@babel/core': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-remap-async-to-generator': 7.10.4 + '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.10.5 + '@babel/types': 7.10.5 + esutils: 2.0.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== - /@babel/plugin-transform-async-to-generator/7.8.3_@babel+core@7.8.3: + integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== + /@babel/register/7.10.5_@babel+core@7.10.5: dependencies: - '@babel/core': 7.8.3 - '@babel/helper-module-imports': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-remap-async-to-generator': 7.8.3 + '@babel/core': 7.10.5 + find-cache-dir: 2.1.0 + lodash: 4.17.19 + make-dir: 2.1.0 + pirates: 4.0.1 + source-map-support: 0.5.19 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== - /@babel/plugin-transform-async-to-generator/7.8.3_@babel+core@7.9.0: + integrity: sha512-eYHdLv43nyvmPn9bfNfrcC4+iYNwdQ8Pxk1MFJuU/U5LpSYl/PH4dFMazCYZDFVi8ueG3shvO+AQfLrxpYulQw== + /@babel/runtime/7.10.5: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-module-imports': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-remap-async-to-generator': 7.8.3 + regenerator-runtime: 0.13.7 dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== - /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.10.4: + integrity: sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg== + /@babel/template/7.10.4: dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== - /@babel/plugin-transform-block-scoped-functions/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== - /@babel/plugin-transform-block-scoped-functions/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== - /@babel/plugin-transform-block-scoping/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - lodash: 4.17.15 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-J3b5CluMg3hPUii2onJDRiaVbPtKFPLEaV5dOPY5OeAbDi1iU/UbbFFTgwb7WnanaDy7bjU35kc26W3eM5Qa0A== - /@babel/plugin-transform-block-scoping/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - lodash: 4.17.15 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== - /@babel/plugin-transform-block-scoping/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - lodash: 4.17.15 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== - /@babel/plugin-transform-classes/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/helper-define-map': 7.10.4 - '@babel/helper-function-name': 7.10.4 - '@babel/helper-optimise-call-expression': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.10.4 - '@babel/helper-split-export-declaration': 7.10.4 - globals: 11.12.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== - /@babel/plugin-transform-classes/7.9.5_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-annotate-as-pure': 7.8.3 - '@babel/helper-define-map': 7.8.3 - '@babel/helper-function-name': 7.9.5 - '@babel/helper-optimise-call-expression': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-replace-supers': 7.8.6 - '@babel/helper-split-export-declaration': 7.8.3 - globals: 11.12.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg== - /@babel/plugin-transform-classes/7.9.5_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-annotate-as-pure': 7.8.3 - '@babel/helper-define-map': 7.8.3 - '@babel/helper-function-name': 7.9.5 - '@babel/helper-optimise-call-expression': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-replace-supers': 7.8.6 - '@babel/helper-split-export-declaration': 7.8.3 - globals: 11.12.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg== - /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== - /@babel/plugin-transform-computed-properties/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== - /@babel/plugin-transform-computed-properties/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== - /@babel/plugin-transform-destructuring/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== - /@babel/plugin-transform-destructuring/7.9.5_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q== - /@babel/plugin-transform-destructuring/7.9.5_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q== - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.10.4: - dependencies: - '@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 - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.8.3 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.9.0 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== - /@babel/plugin-transform-dotall-regex/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== - /@babel/plugin-transform-dotall-regex/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== - /@babel/plugin-transform-duplicate-keys/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== - /@babel/plugin-transform-duplicate-keys/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ== - /@babel/plugin-transform-duplicate-keys/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ== - /@babel/plugin-transform-exponentiation-operator/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== - /@babel/plugin-transform-exponentiation-operator/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== - /@babel/plugin-transform-exponentiation-operator/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== - /@babel/plugin-transform-for-of/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== - /@babel/plugin-transform-for-of/7.9.0_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== - /@babel/plugin-transform-for-of/7.9.0_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== - /@babel/plugin-transform-function-name/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-function-name': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== - /@babel/plugin-transform-function-name/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-function-name': 7.9.5 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== - /@babel/plugin-transform-function-name/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-function-name': 7.9.5 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== - /@babel/plugin-transform-literals/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== - /@babel/plugin-transform-literals/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== - /@babel/plugin-transform-literals/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== - /@babel/plugin-transform-member-expression-literals/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== - /@babel/plugin-transform-member-expression-literals/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== - /@babel/plugin-transform-member-expression-literals/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== - /@babel/plugin-transform-modules-amd/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-module-transforms': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-3Fw+H3WLUrTlzi3zMiZWp3AR4xadAEMv6XRCYnd5jAlLM61Rn+CRJaZMaNvIpcJpQ3vs1kyifYvEVPFfoSkKOA== - /@babel/plugin-transform-modules-amd/7.9.0_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-module-transforms': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q== - /@babel/plugin-transform-modules-amd/7.9.0_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-module-transforms': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q== - /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-module-transforms': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-simple-access': 7.10.4 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== - /@babel/plugin-transform-modules-commonjs/7.9.0_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-module-transforms': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-simple-access': 7.8.3 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g== - /@babel/plugin-transform-modules-commonjs/7.9.0_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-module-transforms': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-simple-access': 7.8.3 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g== - /@babel/plugin-transform-modules-systemjs/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-hoist-variables': 7.10.4 - '@babel/helper-module-transforms': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Tb28LlfxrTiOTGtZFsvkjpyjCl9IoaRI52AEU/VIwOwvDQWtbNJsAqTXzh+5R7i74e/OZHH2c2w2fsOqAfnQYQ== - /@babel/plugin-transform-modules-systemjs/7.9.0_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-hoist-variables': 7.8.3 - '@babel/helper-module-transforms': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ== - /@babel/plugin-transform-modules-systemjs/7.9.0_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-hoist-variables': 7.8.3 - '@babel/helper-module-transforms': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - babel-plugin-dynamic-import-node: 2.3.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ== - /@babel/plugin-transform-modules-umd/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-module-transforms': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== - /@babel/plugin-transform-modules-umd/7.9.0_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-module-transforms': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ== - /@babel/plugin-transform-modules-umd/7.9.0_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-module-transforms': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ== - /@babel/plugin-transform-named-capturing-groups-regex/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== - /@babel/plugin-transform-named-capturing-groups-regex/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw== - /@babel/plugin-transform-named-capturing-groups-regex/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.0 - dev: true - peerDependencies: - '@babel/core': ^7.0.0 - resolution: - integrity: sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw== - /@babel/plugin-transform-new-target/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== - /@babel/plugin-transform-new-target/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw== - /@babel/plugin-transform-new-target/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw== - /@babel/plugin-transform-object-super/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== - /@babel/plugin-transform-object-super/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-replace-supers': 7.8.6 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== - /@babel/plugin-transform-object-super/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-replace-supers': 7.8.6 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== - /@babel/plugin-transform-parameters/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-get-function-arity': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-RurVtZ/D5nYfEg0iVERXYKEgDFeesHrHfx8RT05Sq57ucj2eOYAP6eu5fynL4Adju4I/mP/I6SO0DqNWAXjfLQ== - /@babel/plugin-transform-parameters/7.9.5_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-get-function-arity': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA== - /@babel/plugin-transform-parameters/7.9.5_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-get-function-arity': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA== - /@babel/plugin-transform-property-literals/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== - /@babel/plugin-transform-property-literals/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== - /@babel/plugin-transform-property-literals/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== - /@babel/plugin-transform-regenerator/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - regenerator-transform: 0.14.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== - /@babel/plugin-transform-regenerator/7.8.7_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - regenerator-transform: 0.14.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== - /@babel/plugin-transform-regenerator/7.8.7_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - regenerator-transform: 0.14.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== - /@babel/plugin-transform-reserved-words/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== - /@babel/plugin-transform-reserved-words/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A== - /@babel/plugin-transform-reserved-words/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A== - /@babel/plugin-transform-runtime/7.9.0_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-module-imports': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - resolve: 1.15.0 - semver: 5.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw== - /@babel/plugin-transform-shorthand-properties/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== - /@babel/plugin-transform-shorthand-properties/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== - /@babel/plugin-transform-shorthand-properties/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== - /@babel/plugin-transform-spread/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ== - /@babel/plugin-transform-spread/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== - /@babel/plugin-transform-spread/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== - /@babel/plugin-transform-sticky-regex/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-regex': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== - /@babel/plugin-transform-sticky-regex/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-regex': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== - /@babel/plugin-transform-sticky-regex/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/helper-regex': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== - /@babel/plugin-transform-template-literals/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-4NErciJkAYe+xI5cqfS8pV/0ntlY5N5Ske/4ImxAVX7mk9Rxt2bwDTGv1Msc2BRJvWQcmYEC+yoMLdX22aE4VQ== - /@babel/plugin-transform-template-literals/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-annotate-as-pure': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== - /@babel/plugin-transform-template-literals/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-annotate-as-pure': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== - /@babel/plugin-transform-typeof-symbol/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== - /@babel/plugin-transform-typeof-symbol/7.8.4_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg== - /@babel/plugin-transform-typeof-symbol/7.8.4_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg== - /@babel/plugin-transform-typescript/7.10.4_@babel+core@7.10.4: - dependencies: - '@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 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-3WpXIKDJl/MHoAN0fNkSr7iHdUMHZoppXjf2HJ9/ed5Xht5wNIsXllJXdityKOxeA3Z8heYRb1D3p2H5rfCdPw== - /@babel/plugin-transform-unicode-escapes/7.10.4_@babel+core@7.10.4: - dependencies: - '@babel/core': 7.10.4 - '@babel/helper-plugin-utils': 7.10.4 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== - /@babel/plugin-transform-unicode-regex/7.10.4_@babel+core@7.10.4: - dependencies: - '@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 - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== - /@babel/plugin-transform-unicode-regex/7.8.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== - /@babel/plugin-transform-unicode-regex/7.8.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.0 - '@babel/helper-plugin-utils': 7.8.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== - /@babel/preset-env/7.10.4_@babel+core@7.10.4: - 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-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/types': 7.10.4 - browserslist: 4.12.0 - core-js-compat: 3.6.5 - invariant: 2.2.4 - levenary: 1.1.1 - semver: 5.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw== - /@babel/preset-env/7.9.5_@babel+core@7.8.3: - dependencies: - '@babel/compat-data': 7.9.0 - '@babel/core': 7.8.3 - '@babel/helper-compilation-targets': 7.8.7_@babel+core@7.8.3 - '@babel/helper-module-imports': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-proposal-async-generator-functions': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-proposal-dynamic-import': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-proposal-json-strings': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-proposal-object-rest-spread': 7.9.5_@babel+core@7.8.3 - '@babel/plugin-proposal-optional-catch-binding': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.8.3 - '@babel/plugin-proposal-unicode-property-regex': 7.8.8_@babel+core@7.8.3 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.8.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-syntax-numeric-separator': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-syntax-top-level-await': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-arrow-functions': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-async-to-generator': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-block-scoped-functions': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-block-scoping': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-classes': 7.9.5_@babel+core@7.8.3 - '@babel/plugin-transform-computed-properties': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-destructuring': 7.9.5_@babel+core@7.8.3 - '@babel/plugin-transform-dotall-regex': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-duplicate-keys': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-exponentiation-operator': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-for-of': 7.9.0_@babel+core@7.8.3 - '@babel/plugin-transform-function-name': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-literals': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-member-expression-literals': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-modules-amd': 7.9.0_@babel+core@7.8.3 - '@babel/plugin-transform-modules-commonjs': 7.9.0_@babel+core@7.8.3 - '@babel/plugin-transform-modules-systemjs': 7.9.0_@babel+core@7.8.3 - '@babel/plugin-transform-modules-umd': 7.9.0_@babel+core@7.8.3 - '@babel/plugin-transform-named-capturing-groups-regex': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-new-target': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-object-super': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-parameters': 7.9.5_@babel+core@7.8.3 - '@babel/plugin-transform-property-literals': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-regenerator': 7.8.7_@babel+core@7.8.3 - '@babel/plugin-transform-reserved-words': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-shorthand-properties': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-spread': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-sticky-regex': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-template-literals': 7.8.3_@babel+core@7.8.3 - '@babel/plugin-transform-typeof-symbol': 7.8.4_@babel+core@7.8.3 - '@babel/plugin-transform-unicode-regex': 7.8.3_@babel+core@7.8.3 - '@babel/preset-modules': 0.1.3_@babel+core@7.8.3 - '@babel/types': 7.9.5 - browserslist: 4.12.0 - core-js-compat: 3.6.5 - invariant: 2.2.4 - levenary: 1.1.1 - semver: 5.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-eWGYeADTlPJH+wq1F0wNfPbVS1w1wtmMJiYk55Td5Yu28AsdR9AsC97sZ0Qq8fHqQuslVSIYSGJMcblr345GfQ== - /@babel/preset-env/7.9.5_@babel+core@7.9.0: - dependencies: - '@babel/compat-data': 7.9.0 - '@babel/core': 7.9.0 - '@babel/helper-compilation-targets': 7.8.7_@babel+core@7.9.0 - '@babel/helper-module-imports': 7.8.3 - '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-proposal-async-generator-functions': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-dynamic-import': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-json-strings': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-object-rest-spread': 7.9.5_@babel+core@7.9.0 - '@babel/plugin-proposal-optional-catch-binding': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-proposal-unicode-property-regex': 7.8.8_@babel+core@7.9.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-numeric-separator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-top-level-await': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-arrow-functions': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-async-to-generator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-block-scoped-functions': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-block-scoping': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-classes': 7.9.5_@babel+core@7.9.0 - '@babel/plugin-transform-computed-properties': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-destructuring': 7.9.5_@babel+core@7.9.0 - '@babel/plugin-transform-dotall-regex': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-duplicate-keys': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-exponentiation-operator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-for-of': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-function-name': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-literals': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-member-expression-literals': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-modules-amd': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-modules-commonjs': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-modules-systemjs': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-modules-umd': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-new-target': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-object-super': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-parameters': 7.9.5_@babel+core@7.9.0 - '@babel/plugin-transform-property-literals': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-regenerator': 7.8.7_@babel+core@7.9.0 - '@babel/plugin-transform-reserved-words': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-shorthand-properties': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-spread': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-sticky-regex': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-template-literals': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-typeof-symbol': 7.8.4_@babel+core@7.9.0 - '@babel/plugin-transform-unicode-regex': 7.8.3_@babel+core@7.9.0 - '@babel/preset-modules': 0.1.3_@babel+core@7.9.0 - '@babel/types': 7.9.5 - browserslist: 4.12.0 - core-js-compat: 3.6.5 - invariant: 2.2.4 - levenary: 1.1.1 - semver: 5.7.1 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-eWGYeADTlPJH+wq1F0wNfPbVS1w1wtmMJiYk55Td5Yu28AsdR9AsC97sZ0Qq8fHqQuslVSIYSGJMcblr345GfQ== - /@babel/preset-modules/0.1.3_@babel+core@7.10.4: - 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/types': 7.10.4 - esutils: 2.0.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== - /@babel/preset-modules/0.1.3_@babel+core@7.8.3: - dependencies: - '@babel/core': 7.8.3 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.8.3 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.8.3 - '@babel/types': 7.10.4 - esutils: 2.0.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== - /@babel/preset-modules/0.1.3_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.9.0 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.9.0 - '@babel/types': 7.10.4 - esutils: 2.0.3 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== - /@babel/register/7.9.0_@babel+core@7.9.0: - dependencies: - '@babel/core': 7.9.0 - find-cache-dir: 2.1.0 - lodash: 4.17.15 - make-dir: 2.1.0 - pirates: 4.0.1 - source-map-support: 0.5.16 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-Tv8Zyi2J2VRR8g7pC5gTeIN8Ihultbmk0ocyNz8H2nEZbmhp1N6q0A1UGsQbDvGP/sNinQKUHf3SqXwqjtFv4Q== - /@babel/runtime/7.9.2: - dependencies: - regenerator-runtime: 0.13.5 - dev: true - resolution: - integrity: sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== - /@babel/template/7.10.4: - dependencies: - '@babel/code-frame': 7.10.4 - '@babel/parser': 7.10.5 - '@babel/types': 7.10.5 + '@babel/code-frame': 7.10.4 + '@babel/parser': 7.10.5 + '@babel/types': 7.10.5 dev: true resolution: integrity: sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== - /@babel/template/7.8.6: - dependencies: - '@babel/code-frame': 7.8.3 - '@babel/parser': 7.9.4 - '@babel/types': 7.9.5 - dev: true - resolution: - integrity: sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== - /@babel/traverse/7.10.4: - dependencies: - '@babel/code-frame': 7.10.4 - '@babel/generator': 7.10.4 - '@babel/helper-function-name': 7.10.4 - '@babel/helper-split-export-declaration': 7.10.4 - '@babel/parser': 7.10.4 - '@babel/types': 7.10.4 - debug: 4.1.1 - globals: 11.12.0 - lodash: 4.17.15 - dev: true - resolution: - integrity: sha512-aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q== /@babel/traverse/7.10.5: dependencies: '@babel/code-frame': 7.10.4 @@ -2996,51 +1480,39 @@ packages: dev: true resolution: integrity: sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ== - /@babel/traverse/7.9.5: - dependencies: - '@babel/code-frame': 7.8.3 - '@babel/generator': 7.9.5 - '@babel/helper-function-name': 7.9.5 - '@babel/helper-split-export-declaration': 7.8.3 - '@babel/parser': 7.9.4 - '@babel/types': 7.9.5 - debug: 4.1.1 - globals: 11.12.0 - lodash: 4.17.15 - dev: true - resolution: - integrity: sha512-c4gH3jsvSuGUezlP6rzSJ6jf8fYjLj3hsMZRx/nX0h+fmHN0w+ekubRrHPqnMec0meycA2nwCsJ7dC8IPem2FQ== - /@babel/types/7.10.4: - dependencies: - '@babel/helper-validator-identifier': 7.10.4 - lodash: 4.17.15 - to-fast-properties: 2.0.0 - dev: true - resolution: - integrity: sha512-UTCFOxC3FsFHb7lkRMVvgLzaRVamXuAs2Tz4wajva4WxtVY82eZeaUBtC2Zt95FU9TiznuC0Zk35tsim8jeVpg== /@babel/types/7.10.5: dependencies: '@babel/helper-validator-identifier': 7.10.4 lodash: 4.17.19 to-fast-properties: 2.0.0 - dev: true resolution: integrity: sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q== - /@babel/types/7.9.5: - dependencies: - '@babel/helper-validator-identifier': 7.9.5 - lodash: 4.17.15 - to-fast-properties: 2.0.0 - resolution: - integrity: sha512-XjnvNqenk818r5zMaba+sLQjnbda31UfUURv3ei0qPQw4u+j2jMyJ5b11y8ZHYTRSI3NnInQkkkRT4fLqqPdHg== /@concordance/react/2.0.0: dependencies: arrify: 1.0.1 dev: true engines: - node: '>=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0' + node: '>=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0' + resolution: + integrity: sha512-huLSkUuM2/P+U0uy2WwlKuixMsTODD8p4JVQBI4VKeopkiN0C7M3N9XYVawb4M+4spN5RrO/eLhk7KoQX6nsfA== + /@istanbuljs/load-nyc-config/1.1.0: + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.0 + resolve-from: 5.0.0 + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + /@istanbuljs/schema/0.1.2: + dev: true + engines: + node: '>=8' resolution: - integrity: sha512-huLSkUuM2/P+U0uy2WwlKuixMsTODD8p4JVQBI4VKeopkiN0C7M3N9XYVawb4M+4spN5RrO/eLhk7KoQX6nsfA== + integrity: sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== /@jest/types/24.9.0: dependencies: '@types/istanbul-lib-coverage': 2.0.1 @@ -3067,7 +1539,7 @@ packages: /@nodelib/fs.walk/1.2.4: dependencies: '@nodelib/fs.scandir': 2.1.3 - fastq: 1.6.0 + fastq: 1.8.0 engines: node: '>= 8' resolution: @@ -3083,12 +1555,12 @@ packages: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-IzoejtAqdfwAvx4D0bztAJFoL5Js36kJgnbO00zfI1B9jf9G80vWysyG0C4+E6w5uG5hz0EeetPpoBWKdNktCQ== - /@rollup/plugin-babel/5.1.0_@babel+core@7.10.4+rollup@2.12.0: + /@rollup/plugin-babel/5.1.0_@babel+core@7.10.5+rollup@2.23.0: dependencies: - '@babel/core': 7.10.4 - '@babel/helper-module-imports': 7.8.3 - '@rollup/pluginutils': 3.1.0_rollup@2.12.0 - rollup: 2.12.0 + '@babel/core': 7.10.5 + '@babel/helper-module-imports': 7.10.4 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + rollup: 2.23.0 dev: true engines: node: '>= 10.0.0' @@ -3101,49 +1573,55 @@ packages: optional: true resolution: integrity: sha512-zXBEYmfiLAMvB+ZBa6m/q9hsQYAq1sUFdjuP1F6C2pf6uQcpHwAWQveZgzS63zXdKPUYHD3Dr7BhjCqcr0bbLw== - /@rollup/plugin-buble/0.20.0_rollup@2.2.0: + /@rollup/plugin-buble/0.20.0_rollup@2.23.0: dependencies: buble: 0.19.8 - rollup: 2.2.0 + rollup: 2.23.0 rollup-pluginutils: 2.8.2 - typescript: 3.7.5 + typescript: 3.9.7 dev: true peerDependencies: rollup: ^1.20.0 resolution: integrity: sha512-3Qkoa3n+6NjQggLkN5R6ouVL3/jveyqjJjJXxbk04HEig/97YyOwoimWYIOC5vlQ60Z+xLhnAvGd6mM0gFY2wQ== - /@rollup/plugin-buble/0.21.0: + /@rollup/plugin-buble/0.21.3: dependencies: + '@rollup/pluginutils': 3.1.0 '@types/buble': 0.19.2 - buble: 0.19.8 - rollup-pluginutils: 2.8.2 + buble: 0.20.0 dev: true + engines: + node: '>= 8.0.0' peerDependencies: - rollup: ^1.20.0 + rollup: ^1.20.0||^2.0.0 resolution: - integrity: sha512-n6N311RCrVvnsWGyo/if6K2kFoDW+x9r+/hkp+fI73MryLFGxN50Y3zJDg3k0ZTDjRHmveVzM6Nzwv9+plWiLA== - /@rollup/plugin-buble/0.21.0_rollup@2.16.1: + integrity: sha512-Iv8cCuFPnMdqV4pcyU+OrfjOfagPArRQ1PyQjx5KgHk3dARedI+8PNTLSMpJts0lQJr8yF2pAU4GxpxCBJ9HYw== + /@rollup/plugin-buble/0.21.3_rollup@2.2.0: dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.2.0 '@types/buble': 0.19.2 - buble: 0.19.8 - rollup: 2.16.1 - rollup-pluginutils: 2.8.2 + buble: 0.20.0 + rollup: 2.2.0 dev: true + engines: + node: '>= 8.0.0' peerDependencies: - rollup: ^1.20.0 + rollup: ^1.20.0||^2.0.0 resolution: - integrity: sha512-n6N311RCrVvnsWGyo/if6K2kFoDW+x9r+/hkp+fI73MryLFGxN50Y3zJDg3k0ZTDjRHmveVzM6Nzwv9+plWiLA== - /@rollup/plugin-buble/0.21.0_rollup@2.2.0: + integrity: sha512-Iv8cCuFPnMdqV4pcyU+OrfjOfagPArRQ1PyQjx5KgHk3dARedI+8PNTLSMpJts0lQJr8yF2pAU4GxpxCBJ9HYw== + /@rollup/plugin-buble/0.21.3_rollup@2.23.0: dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 '@types/buble': 0.19.2 - buble: 0.19.8 - rollup: 2.2.0 - rollup-pluginutils: 2.8.2 + buble: 0.20.0 + rollup: 2.23.0 dev: true + engines: + node: '>= 8.0.0' peerDependencies: - rollup: ^1.20.0 + rollup: ^1.20.0||^2.0.0 resolution: - integrity: sha512-n6N311RCrVvnsWGyo/if6K2kFoDW+x9r+/hkp+fI73MryLFGxN50Y3zJDg3k0ZTDjRHmveVzM6Nzwv9+plWiLA== + integrity: sha512-Iv8cCuFPnMdqV4pcyU+OrfjOfagPArRQ1PyQjx5KgHk3dARedI+8PNTLSMpJts0lQJr8yF2pAU4GxpxCBJ9HYw== /@rollup/plugin-commonjs/11.0.2: dependencies: '@rollup/pluginutils': 3.0.8 @@ -3158,60 +1636,53 @@ packages: rollup: ^1.20.0 resolution: integrity: sha512-MPYGZr0qdbV5zZj8/2AuomVpnRVXRU5XKXb3HVniwRoRCreGlf5kOE081isNWeiLIi6IYkwTX9zE0/c7V8g81g== - /@rollup/plugin-commonjs/11.0.2_rollup@2.16.1: + /@rollup/plugin-commonjs/11.1.0_rollup@2.23.0: dependencies: - '@rollup/pluginutils': 3.0.8_rollup@2.16.1 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + commondir: 1.0.1 estree-walker: 1.0.1 - is-reference: 1.1.4 + glob: 7.1.6 + is-reference: 1.2.1 magic-string: 0.25.7 - resolve: 1.15.0 - rollup: 2.16.1 + resolve: 1.17.0 + rollup: 2.23.0 dev: true engines: node: '>= 8.0.0' peerDependencies: - rollup: ^1.20.0 + rollup: ^1.20.0||^2.0.0 resolution: - integrity: sha512-MPYGZr0qdbV5zZj8/2AuomVpnRVXRU5XKXb3HVniwRoRCreGlf5kOE081isNWeiLIi6IYkwTX9zE0/c7V8g81g== - /@rollup/plugin-commonjs/13.0.0_rollup@2.12.0: + integrity: sha512-Ycr12N3ZPN96Fw2STurD21jMqzKwL9QuFhms3SD7KKRK7oaXUsBU9Zt0jL/rOPHiPYisI21/rXGO3jr9BnLHUA== + /@rollup/plugin-commonjs/13.0.2_rollup@2.23.0: dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.12.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 commondir: 1.0.1 estree-walker: 1.0.1 glob: 7.1.6 - is-reference: 1.1.4 + is-reference: 1.2.1 magic-string: 0.25.7 resolve: 1.17.0 - rollup: 2.12.0 + rollup: 2.23.0 dev: true engines: node: '>= 8.0.0' peerDependencies: rollup: ^2.3.4 resolution: - integrity: sha512-Anxc3qgkAi7peAyesTqGYidG5GRim9jtg8xhmykNaZkImtvjA7Wsqep08D2mYsqw1IF7rA3lYfciLgzUSgRoqw== - /@rollup/plugin-json/4.1.0_rollup@2.12.0: - dependencies: - '@rollup/pluginutils': 3.0.10_rollup@2.12.0 - rollup: 2.12.0 - dev: true - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - resolution: - integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== - /@rollup/plugin-json/4.1.0_rollup@2.2.0: + integrity: sha512-9JXf2k8xqvMYfqmhgtB6eCgMN9fbxwF1XDF3mGKJc6pkAmt0jnsqurxQ0tC1akQKNSXCm7c3unQxa3zuxtZ7mQ== + /@rollup/plugin-json/4.1.0_rollup@2.22.0: dependencies: - '@rollup/pluginutils': 3.0.10_rollup@2.2.0 - rollup: 2.2.0 + '@rollup/pluginutils': 3.1.0_rollup@2.22.0 + rollup: 2.22.0 dev: true peerDependencies: rollup: ^1.20.0 || ^2.0.0 resolution: integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== - /@rollup/plugin-json/4.1.0_rollup@2.22.0: + /@rollup/plugin-json/4.1.0_rollup@2.23.0: dependencies: - '@rollup/pluginutils': 3.0.10_rollup@2.22.0 - rollup: 2.22.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + rollup: 2.23.0 dev: true peerDependencies: rollup: ^1.20.0 || ^2.0.0 @@ -3246,6 +1717,21 @@ packages: rollup: ^1.20.0 resolution: integrity: sha512-14ddhD7TnemeHE97a4rLOhobfYvUVcaYuqTnL8Ti7Jxi9V9Jr5LY7Gko4HZ5k4h4vqQM0gBQt6tsp9xXW94WPA== + /@rollup/plugin-node-resolve/7.1.3_rollup@2.23.0: + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + '@types/resolve': 0.0.8 + builtin-modules: 3.1.0 + is-module: 1.0.0 + resolve: 1.17.0 + rollup: 2.23.0 + dev: true + engines: + node: '>= 8.0.0' + peerDependencies: + rollup: ^1.20.0||^2.0.0 + resolution: + integrity: sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q== /@rollup/plugin-node-resolve/8.4.0_rollup@2.22.0: dependencies: '@rollup/pluginutils': 3.1.0_rollup@2.22.0 @@ -3263,22 +1749,23 @@ packages: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-LFqKdRLn0ShtQyf6SBYO69bGE1upV6wUhBX0vFOUnLAyzx5cwp8svA0eHUnu8+YU57XOkrMtfG63QOpQx25pHQ== - /@rollup/plugin-typescript/3.0.0_b7ed8cf084a78b83114da7b845e0a30a: + /@rollup/plugin-node-resolve/8.4.0_rollup@2.23.0: dependencies: - '@rollup/pluginutils': 3.0.8_rollup@2.16.1 - resolve: 1.15.0 - rollup: 2.16.1 - tslib: 1.10.0 - typescript: 3.7.5 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + '@types/resolve': 1.17.1 + builtin-modules: 3.1.0 + deep-freeze: 0.0.1 + deepmerge: 4.2.2 + is-module: 1.0.0 + resolve: 1.17.0 + rollup: 2.23.0 dev: true engines: - node: '>=8.0.0' + node: '>= 8.0.0' peerDependencies: - rollup: ^1.20.0 - tslib: '*' - typescript: '>=2.1.0' + rollup: ^1.20.0||^2.0.0 resolution: - integrity: sha512-O6915Ril3+Q0B4P898PULAcPFZfPuatEB/4nox7bnK48ekGrmamMYhMB5tOqWjihEWrw4oz/NL+c+/kS3Fk95g== + integrity: sha512-LFqKdRLn0ShtQyf6SBYO69bGE1upV6wUhBX0vFOUnLAyzx5cwp8svA0eHUnu8+YU57XOkrMtfG63QOpQx25pHQ== /@rollup/plugin-typescript/3.0.0_rollup@2.2.0: dependencies: '@rollup/pluginutils': 3.0.8_rollup@2.2.0 @@ -3322,59 +1809,65 @@ packages: typescript: '>=2.1.0' resolution: integrity: sha512-O6915Ril3+Q0B4P898PULAcPFZfPuatEB/4nox7bnK48ekGrmamMYhMB5tOqWjihEWrw4oz/NL+c+/kS3Fk95g== - /@rollup/plugin-typescript/4.1.1_rollup@2.2.0: + /@rollup/plugin-typescript/3.1.1_60bfa7538fbe764c4bb3afdf832138ad: dependencies: - '@rollup/pluginutils': 3.0.10_rollup@2.2.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 resolve: 1.17.0 - rollup: 2.2.0 + rollup: 2.23.0 + tslib: 1.13.0 + typescript: 3.9.7 dev: true engines: node: '>=8.0.0' peerDependencies: - rollup: ^1.20.0||^2.0.0 + rollup: ^1.20.0 tslib: '*' typescript: '>=2.1.0' resolution: - integrity: sha512-KYZCn1Iw9hZWkeEPqPs5YjlmvSjR7UdezVca8z0e8rm/29wU24UD9Y4IZHhnc9tm749hzsgBTiOUxA85gfShEQ== - /@rollup/pluginutils/3.0.10_rollup@2.12.0: + integrity: sha512-VPY1MbzIJT+obpav9Kns4MlipVJ1FuefwzO4s1uCVXAzVWya+bhhNauOmmqR/hy1zj7tePfh3t9iBN+HbIzyRA== + /@rollup/plugin-typescript/3.1.1_rollup@2.23.0+typescript@3.9.7: dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.2.2 - rollup: 2.12.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + resolve: 1.17.0 + rollup: 2.23.0 + typescript: 3.9.7 dev: true engines: - node: '>= 8.0.0' + node: '>=8.0.0' peerDependencies: - rollup: ^1.20.0||^2.0.0 + rollup: ^1.20.0 + tslib: '*' + typescript: '>=2.1.0' resolution: - integrity: sha512-d44M7t+PjmMrASHbhgpSbVgtL6EFyX7J4mYxwQ/c5eoaE6N2VgCgEcWVzNnwycIloti+/MpwFr8qfw+nRw00sw== - /@rollup/pluginutils/3.0.10_rollup@2.2.0: + integrity: sha512-VPY1MbzIJT+obpav9Kns4MlipVJ1FuefwzO4s1uCVXAzVWya+bhhNauOmmqR/hy1zj7tePfh3t9iBN+HbIzyRA== + /@rollup/plugin-typescript/4.1.2_rollup@2.23.0: dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.2.2 - rollup: 2.2.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + resolve: 1.17.0 + rollup: 2.23.0 dev: true engines: - node: '>= 8.0.0' + node: '>=8.0.0' peerDependencies: rollup: ^1.20.0||^2.0.0 + tslib: '*' + typescript: '>=2.1.0' resolution: - integrity: sha512-d44M7t+PjmMrASHbhgpSbVgtL6EFyX7J4mYxwQ/c5eoaE6N2VgCgEcWVzNnwycIloti+/MpwFr8qfw+nRw00sw== - /@rollup/pluginutils/3.0.10_rollup@2.22.0: + integrity: sha512-+7UlGat/99e2JbmGNnIauxwEhYLwrL7adO/tSJxUN57xrrS3Ps+ZzYpLCDGPZJ57j+ZJTZLLN89KXW9JMEB+jg== + /@rollup/plugin-typescript/5.0.2_rollup@2.23.0: dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.2.2 - rollup: 2.22.0 + '@rollup/pluginutils': 3.1.0_rollup@2.23.0 + resolve: 1.17.0 + rollup: 2.23.0 dev: true engines: - node: '>= 8.0.0' + node: '>=8.0.0' peerDependencies: - rollup: ^1.20.0||^2.0.0 + rollup: ^2.14.0 + tslib: '*' + typescript: '>=3.4.0' resolution: - integrity: sha512-d44M7t+PjmMrASHbhgpSbVgtL6EFyX7J4mYxwQ/c5eoaE6N2VgCgEcWVzNnwycIloti+/MpwFr8qfw+nRw00sw== + integrity: sha512-CkS028Itwjqm1uLbFVfpJgtVtnNvZ+og/m6UlNRR5wOOnNTWPcVQzOu5xGdEX+WWJxdvWIqUq2uR/RBt2ZipWg== /@rollup/pluginutils/3.0.8: dependencies: estree-walker: 1.0.1 @@ -3385,17 +1878,6 @@ packages: rollup: ^1.20.0 resolution: integrity: sha512-rYGeAc4sxcZ+kPG/Tw4/fwJODC3IXHYDH4qusdN/b6aLw5LPUbzpecYbEJh4sVQGPFJxd2dBU4kc1H3oy9/bnw== - /@rollup/pluginutils/3.0.8_rollup@2.16.1: - dependencies: - estree-walker: 1.0.1 - rollup: 2.16.1 - dev: true - engines: - node: '>= 8.0.0' - peerDependencies: - rollup: ^1.20.0 - resolution: - integrity: sha512-rYGeAc4sxcZ+kPG/Tw4/fwJODC3IXHYDH4qusdN/b6aLw5LPUbzpecYbEJh4sVQGPFJxd2dBU4kc1H3oy9/bnw== /@rollup/pluginutils/3.0.8_rollup@2.2.0: dependencies: estree-walker: 1.0.1 @@ -3412,76 +1894,73 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - dev: false engines: node: '>= 8.0.0' peerDependencies: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - /@rollup/pluginutils/3.1.0_rollup@2.12.0: + /@rollup/pluginutils/3.1.0_rollup@2.16.1: dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - rollup: 2.12.0 + rollup: 2.16.1 + dev: false engines: node: '>= 8.0.0' peerDependencies: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - /@rollup/pluginutils/3.1.0_rollup@2.16.1: + /@rollup/pluginutils/3.1.0_rollup@2.2.0: dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - rollup: 2.16.1 - dev: false + rollup: 2.2.0 engines: node: '>= 8.0.0' peerDependencies: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - /@rollup/pluginutils/3.1.0_rollup@2.2.0: + /@rollup/pluginutils/3.1.0_rollup@2.22.0: dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - rollup: 2.2.0 + rollup: 2.22.0 engines: node: '>= 8.0.0' peerDependencies: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - /@rollup/pluginutils/3.1.0_rollup@2.22.0: + /@rollup/pluginutils/3.1.0_rollup@2.23.0: dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.2.2 - rollup: 2.22.0 + rollup: 2.23.0 engines: node: '>= 8.0.0' peerDependencies: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - /@samverschueren/stream-to-observable/0.3.0: - dependencies: - any-observable: 0.3.0 + /@sindresorhus/is/0.14.0: dev: true engines: node: '>=6' resolution: - integrity: sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg== - /@sindresorhus/is/0.14.0: + integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== + /@sindresorhus/is/2.1.1: dev: true engines: - node: '>=6' + node: '>=10' resolution: - integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== + integrity: sha512-/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg== /@sinonjs/commons/1.7.0: dependencies: type-detect: 4.0.8 @@ -3515,40 +1994,57 @@ packages: node: '>=6' resolution: integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== + /@szmarczak/http-timer/4.0.5: + dependencies: + defer-to-connect: 2.0.0 + dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ== /@types/babel__core/7.1.9: dependencies: - '@babel/parser': 7.9.4 - '@babel/types': 7.9.5 + '@babel/parser': 7.10.5 + '@babel/types': 7.10.5 '@types/babel__generator': 7.6.1 '@types/babel__template': 7.0.2 - '@types/babel__traverse': 7.0.12 + '@types/babel__traverse': 7.0.13 dev: true resolution: integrity: sha512-sY2RsIJ5rpER1u3/aQ8OFSI7qGIy8o1NEEbgb2UaJcvOtXOMpd39ko723NBpjQFg9SIX7TXtjejZVGeIMLhoOw== /@types/babel__generator/7.6.1: dependencies: - '@babel/types': 7.9.5 + '@babel/types': 7.10.5 dev: true resolution: integrity: sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew== /@types/babel__template/7.0.2: dependencies: - '@babel/parser': 7.9.4 - '@babel/types': 7.9.5 + '@babel/parser': 7.10.5 + '@babel/types': 7.10.5 dev: true resolution: integrity: sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== - /@types/babel__traverse/7.0.12: + /@types/babel__traverse/7.0.13: dependencies: - '@babel/types': 7.9.5 + '@babel/types': 7.10.5 dev: true resolution: - integrity: sha512-t4CoEokHTfcyfb4hUaF9oOHu9RmmNWnm1CP0YmMqOOfClKascOmvlEM736vlqeScuGvBDsHkf8R2INd4DWreQA== + integrity: sha512-i+zS7t6/s9cdQvbqKDARrcbrPvtJGlbYsMkazo03nTAK3RX9FNrLllXys22uiTGJapPOTZTQ35nHh4ISph4SLQ== /@types/buble/0.19.2: dependencies: magic-string: 0.25.7 resolution: integrity: sha512-uUD8zIfXMKThmFkahTXDGI3CthFH1kMg2dOm3KLi4GlC5cbARA64bEcUMbbWdWdE73eoc/iBB9PiTMqH0dNS2Q== + /@types/cacheable-request/6.0.1: + dependencies: + '@types/http-cache-semantics': 4.0.0 + '@types/keyv': 3.1.1 + '@types/node': 14.0.26 + '@types/responselike': 1.0.0 + dev: true + resolution: + integrity: sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ== /@types/color-name/1.1.1: dev: true resolution: @@ -3561,21 +2057,19 @@ packages: resolution: integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== /@types/estree/0.0.45: - dev: false resolution: integrity: sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== - /@types/events/3.0.0: - dev: true - resolution: - integrity: sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== - /@types/glob/7.1.1: + /@types/glob/7.1.3: dependencies: - '@types/events': 3.0.0 '@types/minimatch': 3.0.3 - '@types/node': 13.13.4 + '@types/node': 14.0.26 + dev: true + resolution: + integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== + /@types/http-cache-semantics/4.0.0: dev: true resolution: - integrity: sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== + integrity: sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A== /@types/istanbul-lib-coverage/2.0.1: dev: true resolution: @@ -3599,20 +2093,25 @@ packages: dev: true resolution: integrity: sha512-dXvuABY9nM1xgsXlOtLQXJKdacxZJd7AtvLsKZ/0b57ruMXDKCOXAC/M75GbllQX6o1pcZ5hAG4JzYy7Z/wM2w== - /@types/json-schema/7.0.4: + /@types/json-schema/7.0.5: dev: true resolution: - integrity: sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA== + integrity: sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== /@types/json5/0.0.29: dev: true resolution: integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4= + /@types/keyv/3.1.1: + dependencies: + '@types/node': 14.0.26 + dev: true + resolution: + integrity: sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw== /@types/minimatch/3.0.3: dev: true resolution: integrity: sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== /@types/minimist/1.2.0: - dev: false resolution: integrity: sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY= /@types/node/12.12.28: @@ -3623,35 +2122,41 @@ packages: dev: false resolution: integrity: sha512-Jg1F+bmxcpENHP23sVKkNuU3uaxPnsBMW0cLjleiikFKomJQbsn0Cqk2yDvQArqzZN6ABfBkZ0To7pQ8sLdWDg== - /@types/node/13.13.4: - dev: true - resolution: - integrity: sha512-x26ur3dSXgv5AwKS0lNfbjpCakGIduWU1DU91Zz58ONRWrIKGunmZBNv4P7N+e27sJkiGDsw/3fT4AtsqQBrBA== - /@types/node/14.0.23: + /@types/node/14.0.26: resolution: - integrity: sha512-Z4U8yDAl5TFkmYsZdFPdjeMa57NOvnaf1tljHzhouaPEp7LCj2JKkejpI1ODviIAQuW4CcQmxkQ77rnLsOOoKw== + integrity: sha512-W+fpe5s91FBGE0pEa0lnqGLL4USgpLgs4nokw16SrBBco/gQxuua7KnArSEOd5iaMqbbSHV10vUDkJYJJqpXKA== /@types/normalize-package-data/2.4.0: resolution: integrity: sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== + /@types/parse-json/4.0.0: + dev: true + resolution: + integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== /@types/picomatch/2.2.1: dev: true resolution: integrity: sha512-26/tQcDmJXYHiaWAAIjnTVL5nwrT+IVaqFZIbBImAuKk/r/j1r/1hmZ7uaOzG6IknqP3QHcNNQ6QO8Vp28lUoA== - /@types/q/1.5.2: + /@types/q/1.5.4: dev: true resolution: - integrity: sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== + integrity: sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== /@types/resolve/0.0.8: dependencies: - '@types/node': 14.0.23 + '@types/node': 14.0.26 dev: true resolution: integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== /@types/resolve/1.17.1: dependencies: - '@types/node': 14.0.23 + '@types/node': 14.0.26 resolution: integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== + /@types/responselike/1.0.0: + dependencies: + '@types/node': 14.0.26 + dev: true + resolution: + integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA== /@types/yargs-parser/15.0.0: dev: true resolution: @@ -3662,16 +2167,16 @@ packages: dev: true resolution: integrity: sha512-CF/+sxTO7FOwbIRL4wMv0ZYLCRfMid2HQpzDRyViH7kSpfoAFiMdGqKIxb1PxWfjtQXQhnQuD33lvRHNwr809Q== - /@typescript-eslint/eslint-plugin/3.6.0_1cd0d21f7cfbad5ac6106263f5332fb7: + /@typescript-eslint/eslint-plugin/3.7.1_fdf7ae5f472a827bd9d9601df74d9b89: dependencies: - '@typescript-eslint/experimental-utils': 3.6.0_typescript@3.8.3 - '@typescript-eslint/parser': 3.6.0_typescript@3.8.3 + '@typescript-eslint/experimental-utils': 3.7.1_typescript@3.9.7 + '@typescript-eslint/parser': 3.7.1_typescript@3.9.7 debug: 4.1.1 functional-red-black-tree: 1.0.1 regexpp: 3.1.0 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.8.3 - typescript: 3.8.3 + tsutils: 3.17.1_typescript@3.9.7 + typescript: 3.9.7 dev: true engines: node: ^10.12.0 || >=12.0.0 @@ -3683,14 +2188,14 @@ packages: typescript: optional: true resolution: - integrity: sha512-ubHlHVt1lsPQB/CZdEov9XuOFhNG9YRC//kuiS1cMQI6Bs1SsqKrEmZnpgRwthGR09/kEDtr9MywlqXyyYd8GA== - /@typescript-eslint/experimental-utils/3.6.0_typescript@3.8.3: + integrity: sha512-3DB9JDYkMrc8Au00rGFiJLK2Ja9CoMP6Ut0sHsXp3ZtSugjNxvSSHTnKLfo4o+QmjYBJqEznDqsG1zj4F2xnsg== + /@typescript-eslint/experimental-utils/3.7.1_typescript@3.9.7: dependencies: - '@types/json-schema': 7.0.4 - '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.8.3 - eslint-scope: 5.0.0 - eslint-utils: 2.0.0 + '@types/json-schema': 7.0.5 + '@typescript-eslint/types': 3.7.1 + '@typescript-eslint/typescript-estree': 3.7.1_typescript@3.9.7 + eslint-scope: 5.1.0 + eslint-utils: 2.1.0 dev: true engines: node: ^10.12.0 || >=12.0.0 @@ -3698,15 +2203,15 @@ packages: eslint: '*' typescript: '*' resolution: - integrity: sha512-4Vdf2hvYMUnTdkCNZu+yYlFtL2v+N2R7JOynIOkFbPjf9o9wQvRwRkzUdWlFd2YiiUwJLbuuLnl5civNg5ykOQ== - /@typescript-eslint/parser/3.6.0_typescript@3.8.3: + integrity: sha512-TqE97pv7HrqWcGJbLbZt1v59tcqsSVpWTOf1AqrWK7n8nok2sGgVtYRuGXeNeLw3wXlLEbY1MKP3saB2HsO/Ng== + /@typescript-eslint/parser/3.7.1_typescript@3.9.7: dependencies: '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 3.6.0_typescript@3.8.3 - '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/typescript-estree': 3.6.0_typescript@3.8.3 - eslint-visitor-keys: 1.1.0 - typescript: 3.8.3 + '@typescript-eslint/experimental-utils': 3.7.1_typescript@3.9.7 + '@typescript-eslint/types': 3.7.1 + '@typescript-eslint/typescript-estree': 3.7.1_typescript@3.9.7 + eslint-visitor-keys: 1.3.0 + typescript: 3.9.7 dev: true engines: node: ^10.12.0 || >=12.0.0 @@ -3717,24 +2222,24 @@ packages: typescript: optional: true resolution: - integrity: sha512-taghDxuLhbDAD1U5Fk8vF+MnR0yiFE9Z3v2/bYScFb0N1I9SK8eKHkdJl1DAD48OGFDMFTeOTX0z7g0W6SYUXw== - /@typescript-eslint/types/3.6.0: + integrity: sha512-W4QV/gXvfIsccN8225784LNOorcm7ch68Fi3V4Wg7gmkWSQRKevO4RrRqWo6N/Z/myK1QAiGgeaXN57m+R/8iQ== + /@typescript-eslint/types/3.7.1: dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 resolution: - integrity: sha512-JwVj74ohUSt0ZPG+LZ7hb95fW8DFOqBuR6gE7qzq55KDI3BepqsCtHfBIoa0+Xi1AI7fq5nCu2VQL8z4eYftqg== - /@typescript-eslint/typescript-estree/3.6.0_typescript@3.8.3: + integrity: sha512-PZe8twm5Z4b61jt7GAQDor6KiMhgPgf4XmUb9zdrwTbgtC/Sj29gXP1dws9yEn4+aJeyXrjsD9XN7AWFhmnUfg== + /@typescript-eslint/typescript-estree/3.7.1_typescript@3.9.7: dependencies: - '@typescript-eslint/types': 3.6.0 - '@typescript-eslint/visitor-keys': 3.6.0 + '@typescript-eslint/types': 3.7.1 + '@typescript-eslint/visitor-keys': 3.7.1 debug: 4.1.1 glob: 7.1.6 is-glob: 4.0.1 - lodash: 4.17.15 + lodash: 4.17.19 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.8.3 - typescript: 3.8.3 + tsutils: 3.17.1_typescript@3.9.7 + typescript: 3.9.7 dev: true engines: node: ^10.12.0 || >=12.0.0 @@ -3744,15 +2249,15 @@ packages: typescript: optional: true resolution: - integrity: sha512-G57NDSABHjvob7zVV09ehWyD1K6/YUKjz5+AufObFyjNO4DVmKejj47MHjVHHlZZKgmpJD2yyH9lfCXHrPITFg== - /@typescript-eslint/visitor-keys/3.6.0: + integrity: sha512-m97vNZkI08dunYOr2lVZOHoyfpqRs0KDpd6qkGaIcLGhQ2WPtgHOd/eVbsJZ0VYCQvupKrObAGTOvk3tfpybYA== + /@typescript-eslint/visitor-keys/3.7.1: dependencies: - eslint-visitor-keys: 1.1.0 + eslint-visitor-keys: 1.3.0 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 resolution: - integrity: sha512-p1izllL2Ubwunite0ITjubuMQRBGgjdVYwyG7lXPX8GbrA6qF0uwSRz9MnXZaHMxID4948gX0Ez8v9tUDi/KfQ== + integrity: sha512-xn22sQbEya+Utj2IqJHGLA3i1jDzR43RzWupxojbSWnj3nnPLavaQmWe5utw03CwYao3r00qzXfgJMGNkrzrAA== /JSONStream/1.3.5: dependencies: jsonparse: 1.3.1 @@ -3761,18 +2266,9 @@ packages: hasBin: true resolution: integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - /acorn-dynamic-import/4.0.0_acorn@6.4.0: - dependencies: - acorn: 6.4.0 - dev: true - peerDependencies: - acorn: ^6.0.0 - resolution: - integrity: sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== /acorn-dynamic-import/4.0.0_acorn@6.4.1: dependencies: acorn: 6.4.1 - dev: false peerDependencies: acorn: ^6.0.0 resolution: @@ -3785,51 +2281,33 @@ packages: acorn: ^6.0.0 resolution: integrity: sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== - /acorn-jsx/5.1.0_acorn@6.4.0: - dependencies: - acorn: 6.4.0 - dev: true - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 - resolution: - integrity: sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw== /acorn-jsx/5.2.0_acorn@6.4.1: dependencies: acorn: 6.4.1 - dev: false peerDependencies: acorn: ^6.0.0 || ^7.0.0 resolution: integrity: sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== - /acorn-jsx/5.2.0_acorn@7.1.1: + /acorn-jsx/5.2.0_acorn@7.3.1: dependencies: - acorn: 7.1.1 + acorn: 7.3.1 dev: true peerDependencies: acorn: ^6.0.0 || ^7.0.0 resolution: integrity: sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== - /acorn/6.4.0: + /acorn-walk/7.2.0: dev: true engines: node: '>=0.4.0' - hasBin: true resolution: - integrity: sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw== + integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== /acorn/6.4.1: - dev: false engines: node: '>=0.4.0' hasBin: true resolution: integrity: sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== - /acorn/7.1.0: - dev: true - engines: - node: '>=0.4.0' - hasBin: true - resolution: - integrity: sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ== /acorn/7.1.1: dev: true engines: @@ -3853,15 +2331,15 @@ packages: node: '>=8' resolution: integrity: sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== - /ajv/6.12.2: + /ajv/6.12.3: dependencies: - fast-deep-equal: 3.1.1 + fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.2.2 dev: true resolution: - integrity: sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== + integrity: sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA== /alphanum-sort/1.0.2: dev: true resolution: @@ -3872,12 +2350,12 @@ packages: dev: true resolution: integrity: sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw== - /ansi-escapes/3.2.0: + /ansi-colors/4.1.1: dev: true engines: - node: '>=4' + node: '>=6' resolution: - integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== /ansi-escapes/4.3.1: dependencies: type-fest: 0.11.0 @@ -3932,12 +2410,6 @@ packages: node: '>=8' resolution: integrity: sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== - /any-observable/0.3.0: - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== /any-promise/1.3.0: dev: false resolution: @@ -3951,14 +2423,14 @@ packages: node: '>= 8' resolution: integrity: sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== - /append-transform/1.0.0: + /append-transform/2.0.0: dependencies: - default-require-extensions: 2.0.0 + default-require-extensions: 3.0.0 dev: true engines: - node: '>=4' + node: '>=8' resolution: - integrity: sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw== + integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg== /archy/1.0.0: dev: true resolution: @@ -3972,12 +2444,6 @@ packages: sprintf-js: 1.0.3 resolution: integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - /arr-flatten/1.1.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== /arr-union/3.1.0: dev: false engines: @@ -3993,47 +2459,33 @@ packages: /array-includes/3.1.1: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.5 + es-abstract: 1.17.6 is-string: 1.0.5 dev: true engines: node: '>= 0.4' resolution: integrity: sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== - /array-union/1.0.2: - dependencies: - array-uniq: 1.0.3 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= /array-union/2.1.0: engines: node: '>=8' resolution: integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - /array-uniq/1.0.3: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= - /array-uniq/2.1.0: - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-bdHxtev7FN6+MXI1YFW0Q8mQ8dTJc2S8AMfju+ZR77pbg2yAdVyDlwkaUI7Har0LyOMRFPHrJ9lYdyjZZswdlQ== /array.prototype.flat/1.2.3: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.5 + es-abstract: 1.17.6 dev: true engines: node: '>= 0.4' resolution: integrity: sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== + /arrgv/1.0.2: + dev: true + engines: + node: '>=8.0.0' + resolution: + integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw== /arrify/1.0.1: engines: node: '>=0.10.0' @@ -4062,87 +2514,69 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-yL4BCitc0A3qlsgRFgNGk9/dgtE= - /ava/2.4.0: + /ava/3.11.0: dependencies: - '@ava/babel-preset-stage-4': 4.0.0_@babel+core@7.9.0 - '@ava/babel-preset-transform-test-files': 6.0.0 - '@babel/core': 7.9.0 - '@babel/generator': 7.9.5 '@concordance/react': 2.0.0 - ansi-escapes: 4.3.1 + acorn: 7.3.1 + acorn-walk: 7.2.0 ansi-styles: 4.2.1 - arr-flatten: 1.1.0 - array-union: 2.1.0 - array-uniq: 2.1.0 + arrgv: 1.0.2 arrify: 2.0.1 - bluebird: 3.7.2 - chalk: 2.4.2 - chokidar: 3.4.0 - chunkd: 1.0.0 - ci-parallel-vars: 1.0.0 - clean-stack: 2.2.0 + callsites: 3.1.0 + chalk: 4.1.0 + chokidar: 3.4.1 + chunkd: 2.0.1 + ci-info: 2.0.0 + ci-parallel-vars: 1.0.1 clean-yaml-object: 0.1.0 cli-cursor: 3.1.0 cli-truncate: 2.1.0 - code-excerpt: 2.1.1 - common-path-prefix: 1.0.0 - concordance: 4.0.0 + code-excerpt: 3.0.0 + common-path-prefix: 3.0.0 + concordance: 5.0.0 convert-source-map: 1.7.0 currently-unhandled: 0.4.1 debug: 4.1.1 - del: 4.1.1 - dot-prop: 5.2.0 - emittery: 0.4.1 - empower-core: 1.2.0 + del: 5.1.0 + emittery: 0.7.1 equal-length: 1.0.1 - escape-string-regexp: 2.0.0 - esm: 3.2.25 figures: 3.2.0 - find-up: 4.1.0 - get-port: 5.1.1 - globby: 10.0.2 - ignore-by-default: 1.0.1 + globby: 11.0.1 + ignore-by-default: 2.0.0 import-local: 3.0.2 indent-string: 4.0.0 - is-ci: 2.0.0 is-error: 2.2.2 - is-observable: 2.0.0 - is-plain-object: 3.0.0 - is-promise: 2.2.2 - lodash: 4.17.15 - loud-rejection: 2.2.0 - make-dir: 3.1.0 - matcher: 2.1.0 + is-plain-object: 4.1.1 + is-promise: 4.0.0 + lodash: 4.17.19 + matcher: 3.0.0 md5-hex: 3.0.1 - meow: 5.0.0 - micromatch: 4.0.2 + mem: 6.1.0 ms: 2.1.2 - observable-to-promise: 1.0.0 - ora: 3.4.0 - package-hash: 4.0.0 + ora: 4.0.5 + p-map: 4.0.0 + picomatch: 2.2.2 pkg-conf: 3.1.0 - plur: 3.1.1 - pretty-ms: 5.1.0 - require-precompiled: 0.1.0 + plur: 4.0.0 + pretty-ms: 7.0.0 + read-pkg: 5.2.0 resolve-cwd: 3.0.0 slash: 3.0.0 source-map-support: 0.5.19 - stack-utils: 1.0.2 - strip-ansi: 5.2.0 - strip-bom-buf: 2.0.0 + stack-utils: 2.0.2 + strip-ansi: 6.0.0 supertap: 1.0.0 - supports-color: 7.1.0 + temp-dir: 2.0.0 trim-off-newlines: 1.0.1 - trim-right: 1.0.1 - unique-temp-dir: 1.0.0 - update-notifier: 3.0.1 + update-notifier: 4.1.0 write-file-atomic: 3.0.3 + yargs: 15.4.1 dev: true engines: - node: '>=8.9.4 <9 || >=10.0.0 <11 || >=12.0.0' + node: '>=10.18.0 <11 || >=12.14.0 <12.17.0 || >=12.17.0 <13 || >=14.0.0' hasBin: true resolution: - integrity: sha512-CQWtzZZZeU2g4StojRv6MO9RIRi4sLxGSB9+3C3hv0ttUEG1tkJLTLyrBQeFS4WEeK12Z4ovE3f2iPVhSy8elA== + integrity: sha512-y5U8BGeSRjs/OypsC4CJxr+L1KtLKU5kUyHr5hcghXn7HNr2f4LE/4gvl0Q5lNkLX1obdRW1oODphNdU/glwmA== /babel-plugin-dynamic-import-node/2.3.3: dependencies: object.assign: 4.1.0 @@ -4151,8 +2585,8 @@ packages: integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== /babel-plugin-espower/3.0.1: dependencies: - '@babel/generator': 7.9.5 - '@babel/parser': 7.9.4 + '@babel/generator': 7.10.5 + '@babel/parser': 7.10.5 call-matcher: 1.1.0 core-js: 2.6.11 espower-location-detector: 1.0.0 @@ -4168,39 +2602,35 @@ packages: dev: true resolution: integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - /binary-extensions/2.0.0: + /binary-extensions/2.1.0: dev: true engines: node: '>=8' resolution: - integrity: sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== - /bluebird/3.7.2: - dev: true - resolution: - integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - /blueimp-md5/2.13.0: + integrity: sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== + /blueimp-md5/2.17.0: dev: true resolution: - integrity: sha512-lmp0m647R5e77ORduxLW5mISIDcvgJZa52vMBv5uVI3UmSWTQjkJsZVBfaFqQPw/QFogJwvY6e3Gl9nP+Loe+Q== + integrity: sha512-x5PKJHY5rHQYaADj6NwPUR2QRCUVSggPzrUKkeENpj871o9l9IefJbO2jkT5UvYykeOK9dx0VmkIo6dZ+vThYw== /boolbase/1.0.0: dev: true resolution: integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24= - /boxen/3.2.0: + /boxen/4.2.0: dependencies: ansi-align: 3.0.0 camelcase: 5.3.1 - chalk: 2.4.2 + chalk: 3.0.0 cli-boxes: 2.2.0 - string-width: 3.1.0 - term-size: 1.2.0 - type-fest: 0.3.1 - widest-line: 2.0.1 + string-width: 4.2.0 + term-size: 2.2.0 + type-fest: 0.8.1 + widest-line: 3.1.0 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-cU4J/+NodM3IHdSL2yN8bqYqnmlBTidDR4RC7nJs61ZmtGz8VZzM3HLQX0zY5mrSmPtR3xWwsq2jOUQqFZN8+A== + integrity: sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ== /brace-expansion/1.1.11: dependencies: balanced-match: 1.0.0 @@ -4214,22 +2644,12 @@ packages: node: '>=8' resolution: integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - /browserslist/4.12.0: - dependencies: - caniuse-lite: 1.0.30001048 - electron-to-chromium: 1.3.418 - node-releases: 1.1.53 - pkg-up: 2.0.0 - dev: true - hasBin: true - resolution: - integrity: sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg== /browserslist/4.13.0: dependencies: - caniuse-lite: 1.0.30001102 - electron-to-chromium: 1.3.500 + caniuse-lite: 1.0.30001107 + electron-to-chromium: 1.3.509 escalade: 3.0.2 - node-releases: 1.1.59 + node-releases: 1.1.60 dev: true engines: node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 @@ -4238,14 +2658,14 @@ packages: integrity: sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ== /buble/0.19.8: dependencies: - acorn: 6.4.0 - acorn-dynamic-import: 4.0.0_acorn@6.4.0 - acorn-jsx: 5.1.0_acorn@6.4.0 + acorn: 6.4.1 + acorn-dynamic-import: 4.0.0_acorn@6.4.1 + acorn-jsx: 5.2.0_acorn@6.4.1 chalk: 2.4.2 - magic-string: 0.25.6 + magic-string: 0.25.7 minimist: 1.2.5 os-homedir: 2.0.0 - regexpu-core: 4.6.0 + regexpu-core: 4.7.0 dev: true hasBin: true resolution: @@ -4259,7 +2679,6 @@ packages: magic-string: 0.25.7 minimist: 1.2.5 regexpu-core: 4.5.4 - dev: false hasBin: true resolution: integrity: sha512-/1gnaMQE8xvd5qsNBl+iTuyjJ9XxeaVxAMF86dQ4EyxFJOZtsgOS8Ra+7WHgZTam5IFDtt4BguN0sH0tVTKrOw== @@ -4272,6 +2691,15 @@ packages: node: '>=6' resolution: integrity: sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== + /cacheable-lookup/2.0.1: + dependencies: + '@types/keyv': 3.1.1 + keyv: 4.0.1 + dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-EMMbsiOTcdngM/K6gV/OxF2x0t07+vMOWxZNSCRQMjO2MY2nhZQ6OYhOOpyQrbhqsgtvKGI7hcq6xjnA92USjg== /cacheable-request/6.1.0: dependencies: clone-response: 1.0.2 @@ -4286,17 +2714,31 @@ packages: node: '>=8' resolution: integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== - /caching-transform/3.0.2: + /cacheable-request/7.0.1: dependencies: - hasha: 3.0.0 - make-dir: 2.1.0 - package-hash: 3.0.0 - write-file-atomic: 2.4.3 + clone-response: 1.0.2 + get-stream: 5.1.0 + http-cache-semantics: 4.1.0 + keyv: 4.0.1 + lowercase-keys: 2.0.0 + normalize-url: 4.5.0 + responselike: 2.0.0 dev: true engines: - node: '>=6' + node: '>=8' + resolution: + integrity: sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw== + /caching-transform/4.0.0: + dependencies: + hasha: 5.2.0 + make-dir: 3.1.0 + package-hash: 4.0.0 + write-file-atomic: 3.0.3 + dev: true + engines: + node: '>=8' resolution: - integrity: sha512-Mtgcv3lh3U0zRii/6qVgQODdPA4G3zhG+jtbCWj39RXuUFTMzH0vcdMtaJS1jPowd+It2Pqr6y3NJMQqOqCE2w== + integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA== /call-matcher/1.1.0: dependencies: core-js: 2.6.11 @@ -4340,32 +2782,15 @@ packages: node: '>=6' resolution: integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - /camelcase-keys/4.2.0: - dependencies: - camelcase: 4.1.0 - map-obj: 2.0.0 - quick-lru: 1.1.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-oqpfsa9oh1glnDLBQUJteJI7m3c= /camelcase-keys/6.2.2: dependencies: camelcase: 5.3.1 map-obj: 4.1.0 quick-lru: 4.0.1 - dev: false engines: node: '>=8' resolution: integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== - /camelcase/4.1.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= /camelcase/5.3.1: engines: node: '>=6' @@ -4379,25 +2804,17 @@ packages: integrity: sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w== /caniuse-api/3.0.0: dependencies: - browserslist: 4.12.0 - caniuse-lite: 1.0.30001021 + browserslist: 4.13.0 + caniuse-lite: 1.0.30001107 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true resolution: integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== - /caniuse-lite/1.0.30001021: + /caniuse-lite/1.0.30001107: dev: true resolution: - integrity: sha512-wuMhT7/hwkgd8gldgp2jcrUjOU9RXJ4XxGumQeOsUr91l3WwmM68Cpa/ymCnWEDqakwFXhuDQbaKNHXBPgeE9g== - /caniuse-lite/1.0.30001048: - dev: true - resolution: - integrity: sha512-g1iSHKVxornw0K8LG9LLdf+Fxnv7T1Z+mMsf0/YYLclQX4Cd522Ap0Lrw6NFqHgezit78dtyWxzlV2Xfc7vgRg== - /caniuse-lite/1.0.30001102: - dev: true - resolution: - integrity: sha512-fOjqRmHjRXv1H1YD6QVLb96iKqnu17TjcLSaX64TwhGYed0P1E1CCWZ9OujbbK4Z/7zax7zAzvQidzdtjx8RcA== + integrity: sha512-86rCH+G8onCmdN4VZzJet5uPELII59cUzDphko3thQFgAQG1RNa+sVLDoALIhRYmflo5iSIzWY3vu1XTWtNMQQ== /chalk/1.1.3: dependencies: ansi-styles: 2.2.1 @@ -4428,11 +2845,20 @@ packages: node: '>=8' resolution: integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + /chalk/4.1.0: + dependencies: + ansi-styles: 4.2.1 + supports-color: 7.1.0 + dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== /chardet/0.7.0: dev: true resolution: integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - /chokidar/3.4.0: + /chokidar/3.4.1: dependencies: anymatch: 3.1.1 braces: 3.0.2 @@ -4447,19 +2873,19 @@ packages: optionalDependencies: fsevents: 2.1.3 resolution: - integrity: sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== - /chunkd/1.0.0: + integrity: sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g== + /chunkd/2.0.1: dev: true resolution: - integrity: sha512-xx3Pb5VF9QaqCotolyZ1ywFBgyuJmu6+9dLiqBxgelEse9Xsr3yUlpoX3O4Oh11M00GT2kYMsRByTKIMJW2Lkg== + integrity: sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ== /ci-info/2.0.0: dev: true resolution: integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - /ci-parallel-vars/1.0.0: + /ci-parallel-vars/1.0.1: dev: true resolution: - integrity: sha512-u6dx20FBXm+apMi+5x7UVm6EH7BL1gc4XrcnQewjcB7HWRcor/V5qWc3RG2HwpgDJ26gIi2DSEu3B7sXynAw/g== + integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg== /clean-stack/2.2.0: dev: true engines: @@ -4478,14 +2904,6 @@ packages: node: '>=6' resolution: integrity: sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== - /cli-cursor/2.1.0: - dependencies: - restore-cursor: 2.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= /cli-cursor/3.1.0: dependencies: restore-cursor: 3.1.0 @@ -4494,21 +2912,12 @@ packages: node: '>=8' resolution: integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - /cli-spinners/2.3.0: + /cli-spinners/2.4.0: dev: true engines: node: '>=6' resolution: - integrity: sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w== - /cli-truncate/0.2.1: - dependencies: - slice-ansi: 0.0.4 - string-width: 1.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ= + integrity: sha512-sJAofoarcm76ZGpuooaO0eDy8saEy+YoZBLjC4h8srt4jeBnkYeOgqxgsJQTpyt2LjI5PTfLJHSL+41Yu4fEJA== /cli-truncate/2.1.0: dependencies: slice-ansi: 3.0.0 @@ -4518,18 +2927,20 @@ packages: node: '>=8' resolution: integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== - /cli-width/2.2.1: + /cli-width/3.0.0: dev: true + engines: + node: '>= 10' resolution: - integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== - /cliui/5.0.0: + integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + /cliui/6.0.0: dependencies: - string-width: 3.1.0 - strip-ansi: 5.2.0 - wrap-ansi: 5.1.0 + string-width: 4.2.0 + strip-ansi: 6.0.0 + wrap-ansi: 6.2.0 dev: true resolution: - integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== /clone-response/1.0.2: dependencies: mimic-response: 1.0.1 @@ -4544,7 +2955,7 @@ packages: integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4= /coa/2.0.2: dependencies: - '@types/q': 1.5.2 + '@types/q': 1.5.4 chalk: 2.4.2 q: 1.5.1 dev: true @@ -4552,29 +2963,23 @@ packages: node: '>= 4.0' resolution: integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== - /code-excerpt/2.1.1: + /code-excerpt/3.0.0: dependencies: convert-to-spaces: 1.0.2 dev: true engines: - node: '>=4' - resolution: - integrity: sha512-tJLhH3EpFm/1x7heIW0hemXJTUU5EWl2V0EIX558jp05Mt1U6DVryCgkp3l37cxqs+DNbNgxG43SkwJXpQ14Jw== - /code-point-at/1.1.0: - dev: true - engines: - node: '>=0.10.0' + node: '>=10' resolution: - integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= - /codecov-lite/0.3.1: + integrity: sha512-VHNTVhd7KsLGOqfX3SyeO8RyYPMp1GJOg194VITk04WMYCv4plV68YWe6TJZxd9MhobjtpMRnVky01gqZsalaw== + /codecov-lite/1.0.3: dependencies: - '@babel/runtime': 7.9.2 - got: 9.6.0 + '@babel/runtime': 7.10.5 + got: 10.7.0 dev: true engines: - node: '>=8.6.0' + node: '>=10.13.0' resolution: - integrity: sha512-AVLT4qyljd6lkzvUszA1tilsPj1fIBE1fL9/X/Q90qm+kTZh5JL2L1n+Ak9cPwUe/ZpSr0rzzJpH1kqlsi2i/g== + integrity: sha512-GXInsZH2PYwOvLk6bCBXdgiTIWXRbmb0B1H+RqIBzyfWd6CwQfJQ4PS8GUIy4ukViJIZqjebjbe3mDo5dAG+fA== /color-convert/1.9.3: dependencies: color-name: 1.1.3 @@ -4610,6 +3015,7 @@ packages: resolution: integrity: sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== /commander/2.20.3: + dev: false resolution: integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== /commander/4.1.0: @@ -4618,13 +3024,23 @@ packages: node: '>= 6' resolution: integrity: sha512-NIQrwvv9V39FHgGFm36+U9SMQzbiHvU79k+iADraJTpmrFFfx7Ds0IvDoAdZsDrknlkRk14OYoWXb57uTh7/sw== - /common-path-prefix/1.0.0: + /commander/5.1.0: + dev: true + engines: + node: '>= 6' + resolution: + integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== + /common-path-prefix/3.0.0: dev: true resolution: - integrity: sha1-zVL28HEuC6q5fW+XModPIvR3UsA= + integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== /commondir/1.0.1: resolution: integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= + /compare-versions/3.6.0: + dev: true + resolution: + integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== /concat-map/0.0.1: resolution: integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= @@ -4652,19 +3068,34 @@ packages: node: '>=6.12.3 <7 || >=8.9.4 <9 || >=10.0.0' resolution: integrity: sha512-l0RFuB8RLfCS0Pt2Id39/oCPykE01pyxgAFypWTlaGRgvLkZrtczZ8atEHpTeEIW+zYWXTBuA9cCSeEOScxReQ== - /configstore/4.0.0: + /concordance/5.0.0: dependencies: - dot-prop: 4.2.0 - graceful-fs: 4.2.3 - make-dir: 1.3.0 - unique-string: 1.0.0 - write-file-atomic: 2.4.3 - xdg-basedir: 3.0.0 + date-time: 3.1.0 + esutils: 2.0.3 + fast-diff: 1.2.0 + js-string-escape: 1.0.1 + lodash: 4.17.19 + md5-hex: 3.0.1 + semver: 7.3.2 + well-known-symbols: 2.0.0 dev: true engines: - node: '>=6' + node: '>=10.18.0 <11 || >=12.14.0 <13 || >=13.5.0' + resolution: + integrity: sha512-stOCz9ffg0+rytwTaL2njUOIyMfANwfwmqc9Dr4vTUS/x/KkVFlWx9Zlzu6tHYtjKxxaCF/cEAZgPDac+n35sg== + /configstore/5.0.1: + dependencies: + dot-prop: 5.2.0 + graceful-fs: 4.2.4 + make-dir: 3.1.0 + unique-string: 2.0.0 + write-file-atomic: 3.0.3 + xdg-basedir: 4.0.0 + dev: true + engines: + node: '>=8' resolution: - integrity: sha512-CmquAXFBocrzaSM8mtGPMM/HiWmyIpr4CcJl/rgY2uCObZ/S7cKU0silxslqJejl+t/T9HS8E0PUNQD81JGUEQ== + integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== /contains-path/0.1.0: dev: true engines: @@ -4675,10 +3106,10 @@ packages: dependencies: JSONStream: 1.3.5 is-text-path: 1.0.1 - lodash: 4.17.15 + lodash: 4.17.19 meow: 7.0.1 split2: 2.2.0 - through2: 3.0.1 + through2: 3.0.2 trim-off-newlines: 1.0.1 dev: false engines: @@ -4719,40 +3150,25 @@ packages: dependencies: import-fresh: 2.0.0 is-directory: 0.3.1 - js-yaml: 3.13.1 + js-yaml: 3.14.0 parse-json: 4.0.0 dev: true engines: node: '>=4' resolution: integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== - /cp-file/6.2.0: + /cosmiconfig/6.0.0: dependencies: - graceful-fs: 4.2.3 - make-dir: 2.1.0 - nested-error-stacks: 2.1.0 - pify: 4.0.1 - safe-buffer: 5.2.0 + '@types/parse-json': 4.0.0 + import-fresh: 3.2.1 + parse-json: 5.0.1 + path-type: 4.0.0 + yaml: 1.10.0 dev: true engines: - node: '>=6' - resolution: - integrity: sha512-fmvV4caBnofhPe8kOcitBwSn2f39QLjnAnGq3gO9dfd75mUytzKNZB1hde6QHunW2Rt+OwuBOMc3i1tNElbszA== - /cross-spawn/4.0.2: - dependencies: - lru-cache: 4.1.5 - which: 1.3.1 - dev: true - resolution: - integrity: sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE= - /cross-spawn/5.1.0: - dependencies: - lru-cache: 4.1.5 - shebang-command: 1.2.0 - which: 1.3.1 - dev: true + node: '>=8' resolution: - integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== /cross-spawn/6.0.5: dependencies: nice-try: 1.0.5 @@ -4765,7 +3181,7 @@ packages: node: '>=4.8' resolution: integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - /cross-spawn/7.0.2: + /cross-spawn/7.0.3: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 @@ -4774,20 +3190,20 @@ packages: engines: node: '>= 8' resolution: - integrity: sha512-PD6G8QG3S4FK/XCGFbEQrDqO2AnMMsy0meR7lerlIOHAAbkuavGU/pOqprrlvfTNjvowivTeBsjebAL0NSoMxw== - /crypto-random-string/1.0.0: + integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + /crypto-random-string/2.0.0: dev: true engines: - node: '>=4' + node: '>=8' resolution: - integrity: sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= + integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== /css-color-names/0.0.4: dev: true resolution: integrity: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= /css-declaration-sorter/4.0.1: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 timsort: 0.3.0 dev: true engines: @@ -4812,20 +3228,19 @@ packages: /css-select/2.1.0: dependencies: boolbase: 1.0.0 - css-what: 3.2.1 + css-what: 3.3.0 domutils: 1.7.0 nth-check: 1.0.2 dev: true resolution: integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== - /css-selector-tokenizer/0.7.1: + /css-selector-tokenizer/0.7.3: dependencies: - cssesc: 0.1.0 + cssesc: 3.0.0 fastparse: 1.1.2 - regexpu-core: 1.0.0 dev: true resolution: - integrity: sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA== + integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg== /css-tree/1.0.0-alpha.37: dependencies: mdn-data: 2.0.4 @@ -4835,34 +3250,34 @@ packages: node: '>=8.0.0' resolution: integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== - /css-unit-converter/1.1.1: + /css-tree/1.0.0-alpha.39: + dependencies: + mdn-data: 2.0.6 + source-map: 0.6.1 dev: true + engines: + node: '>=8.0.0' resolution: - integrity: sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY= - /css-what/3.2.1: + integrity: sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA== + /css-what/3.3.0: dev: true engines: node: '>= 6' resolution: - integrity: sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw== - /cssesc/0.1.0: - dev: true - hasBin: true - resolution: - integrity: sha1-yBSQPkViM3GgR3tAEJqq++6t27Q= - /cssesc/2.0.0: + integrity: sha512-pv9JPyatiPaQ6pf4OvD/dbfm0o5LviWmwxNWzblYf/1u9QZd0ihV+PMwy5jdQWQ3349kZmKEx9WXuSka2dM4cg== + /cssesc/3.0.0: dev: true engines: node: '>=4' hasBin: true resolution: - integrity: sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== /cssnano-preset-default/4.0.7: dependencies: css-declaration-sorter: 4.0.1 cssnano-util-raw-cache: 4.0.1 - postcss: 7.0.26 - postcss-calc: 7.0.1 + postcss: 7.0.32 + postcss-calc: 7.0.2 postcss-colormin: 4.0.3 postcss-convert-values: 4.0.1 postcss-discard-comments: 4.0.2 @@ -4908,7 +3323,7 @@ packages: integrity: sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= /cssnano-util-raw-cache/4.0.1: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 dev: true engines: node: '>=6.9.0' @@ -4925,20 +3340,20 @@ packages: cosmiconfig: 5.2.1 cssnano-preset-default: 4.0.7 is-resolvable: 1.1.0 - postcss: 7.0.26 + postcss: 7.0.32 dev: true engines: node: '>=6.9.0' resolution: integrity: sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== - /csso/4.0.2: + /csso/4.0.3: dependencies: - css-tree: 1.0.0-alpha.37 + css-tree: 1.0.0-alpha.39 dev: true engines: node: '>=8.0.0' resolution: - integrity: sha512-kS7/oeNVXkHWxby5tHVxlhjizRCSv8QdU7hB2FpdAibDU8FjTAolhNjKNTiLzXtUrKT6HwClE81yXwEk1309wg== + integrity: sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ== /currently-unhandled/0.4.1: dependencies: array-find-index: 1.0.2 @@ -4963,10 +3378,6 @@ packages: hasBin: true resolution: integrity: sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g== - /date-fns/1.30.1: - dev: true - resolution: - integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== /date-time/2.1.0: dependencies: time-zone: 1.0.0 @@ -4975,6 +3386,14 @@ packages: node: '>=4' resolution: integrity: sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g== + /date-time/3.1.0: + dependencies: + time-zone: 1.0.0 + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg== /debug/2.6.9: dependencies: ms: 2.0.0 @@ -5008,6 +3427,14 @@ packages: node: '>=4' resolution: integrity: sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= + /decompress-response/5.0.0: + dependencies: + mimic-response: 2.1.0 + dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw== /dedent/0.7.0: dev: true resolution: @@ -5016,7 +3443,7 @@ packages: dependencies: is-arguments: 1.0.4 is-date-object: 1.0.2 - is-regex: 1.0.5 + is-regex: 1.1.0 object-is: 1.1.2 object-keys: 1.1.1 regexp.prototype.flags: 1.3.0 @@ -5041,14 +3468,14 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== - /default-require-extensions/2.0.0: + /default-require-extensions/3.0.0: dependencies: - strip-bom: 3.0.0 + strip-bom: 4.0.0 dev: true engines: - node: '>=4' + node: '>=8' resolution: - integrity: sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc= + integrity: sha512-ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg== /defaults/1.0.3: dependencies: clone: 1.0.4 @@ -5059,6 +3486,12 @@ packages: dev: true resolution: integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== + /defer-to-connect/2.0.0: + dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg== /define-properties/1.1.3: dependencies: object-keys: 1.1.1 @@ -5067,39 +3500,25 @@ packages: node: '>= 0.4' resolution: integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - /del-cli/3.0.0: + /del-cli/3.0.1: dependencies: del: 5.1.0 - meow: 5.0.0 + meow: 6.1.1 dev: true engines: node: '>=8' hasBin: true resolution: - integrity: sha512-J4HDC2mpcN5aopya4VdkyiFXZaqAoo7ua9VpKbciX3DDUSbtJbPMc3ivggJsAAgS6EqonmbenIiMhBGtJPW9FA== - /del/4.1.1: - dependencies: - '@types/glob': 7.1.1 - globby: 6.1.0 - is-path-cwd: 2.2.0 - is-path-in-cwd: 2.1.0 - p-map: 2.1.0 - pify: 4.0.1 - rimraf: 2.7.1 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ== + integrity: sha512-BLHItGr82rUbHhjMu41d+vw9Md49i81jmZSV00HdTq4t+RTHywmEht/23mNFpUl2YeLYJZJyGz4rdlMAyOxNeg== /del/5.1.0: dependencies: globby: 10.0.2 - graceful-fs: 4.2.3 + graceful-fs: 4.2.4 is-glob: 4.0.1 is-path-cwd: 2.2.0 is-path-inside: 3.0.2 p-map: 3.0.0 - rimraf: 3.0.0 + rimraf: 3.0.2 slash: 3.0.0 dev: true engines: @@ -5151,7 +3570,7 @@ packages: /dom-serializer/0.2.2: dependencies: domelementtype: 2.0.1 - entities: 2.0.0 + entities: 2.0.3 dev: true resolution: integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== @@ -5170,14 +3589,6 @@ packages: dev: true resolution: integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== - /dot-prop/4.2.0: - dependencies: - is-obj: 1.0.1 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== /dot-prop/5.2.0: dependencies: is-obj: 2.0.0 @@ -5190,26 +3601,16 @@ packages: dev: true resolution: integrity: sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= - /electron-to-chromium/1.3.418: - dev: true - resolution: - integrity: sha512-i2QrQtHes5fK/F9QGG5XacM5WKEuR322fxTYF9e8O9Gu0mc0WmjjwGpV8c7Htso6Zf2Di18lc3SIPxmMeRFBug== - /electron-to-chromium/1.3.500: - dev: true - resolution: - integrity: sha512-Zz8BZh4Ssb/rZBaicqpi+GOQ0uu3y+24+MxBLCk0UYt8EGoZRP4cYzYHHwXGZfrSbCU4VDjbWN+Tg+TPgOUX6Q== - /elegant-spinner/1.0.1: + /electron-to-chromium/1.3.509: dev: true - engines: - node: '>=0.10.0' resolution: - integrity: sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= - /emittery/0.4.1: + integrity: sha512-cN4lkjNRuTG8rtAqTOVgwpecEC2kbKA04PG6YijcKGHK/kD0xLjiqExcAOmLUwtXZRF8cBeam2I0VZcih919Ug== + /emittery/0.7.1: dev: true engines: - node: '>=6' + node: '>=10' resolution: - integrity: sha512-r4eRSeStEGf6M5SKdrQhhLK5bOwOBxQhIE3YSTnZE3GpKiLfnnhE+tPtrJE79+eDJgm39BM6LSoI8SCx4HbwlQ== + integrity: sha512-d34LN4L6h18Bzz9xpoku2nPwKxCPlPMr3EEKTkoEBi+1/+b0lcRkRJ1UVyyZaKNeqGR3swcGl6s390DNO4YVgQ== /emoji-regex/7.0.3: dev: true resolution: @@ -5218,12 +3619,12 @@ packages: dev: true resolution: integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - /emojis-list/2.1.0: + /emojis-list/3.0.0: dev: true engines: - node: '>= 0.10' + node: '>= 4' resolution: - integrity: sha1-TapNnbAPmBmIDHn6RXrlsJof04k= + integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== /empower-core/1.2.0: dependencies: call-signature: 0.0.2 @@ -5237,10 +3638,18 @@ packages: dev: true resolution: integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - /entities/2.0.0: + /enquirer/2.3.6: + dependencies: + ansi-colors: 4.1.1 + dev: true + engines: + node: '>=8.6' + resolution: + integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + /entities/2.0.3: dev: true resolution: - integrity: sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== + integrity: sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== /equal-length/1.0.1: dev: true engines: @@ -5252,45 +3661,27 @@ packages: is-arrayish: 0.2.1 resolution: integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - /es-abstract/1.17.2: - dependencies: - es-to-primitive: 1.2.1 - function-bind: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.1 - is-callable: 1.1.5 - is-regex: 1.0.5 - object-inspect: 1.7.0 - object-keys: 1.1.1 - object.assign: 4.1.0 - string.prototype.trimleft: 2.1.1 - string.prototype.trimright: 2.1.1 - dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-YoKuru3Lyoy7yVTBSH2j7UxTqe/je3dWAruC0sHvZX1GNd5zX8SSLvQqEgO9b3Ex8IW+goFI9arEEsFIbulhOw== - /es-abstract/1.17.5: + /es-abstract/1.17.6: dependencies: es-to-primitive: 1.2.1 function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.1 - is-callable: 1.1.5 - is-regex: 1.0.5 - object-inspect: 1.7.0 + is-callable: 1.2.0 + is-regex: 1.1.0 + object-inspect: 1.8.0 object-keys: 1.1.1 object.assign: 4.1.0 - string.prototype.trimleft: 2.1.2 - string.prototype.trimright: 2.1.2 + string.prototype.trimend: 1.0.1 + string.prototype.trimstart: 1.0.1 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== + integrity: sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== /es-to-primitive/1.2.1: dependencies: - is-callable: 1.1.5 + is-callable: 1.2.0 is-date-object: 1.0.2 is-symbol: 1.0.3 dev: true @@ -5335,6 +3726,12 @@ packages: node: '>=6' resolution: integrity: sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ== + /escape-goat/2.1.1: + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== /escape-string-regexp/1.0.5: engines: node: '>=0.8.0' @@ -5346,24 +3743,30 @@ packages: node: '>=8' resolution: integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + /escape-string-regexp/4.0.0: + dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== /eslint-config-rollup/0.1.0: dependencies: eslint: 6.8.0 - eslint-plugin-import: 2.20.2_eslint@6.8.0 - eslint-plugin-prettier: 3.1.3_eslint@6.8.0+prettier@1.19.1 + eslint-plugin-import: 2.22.0_eslint@6.8.0 + eslint-plugin-prettier: 3.1.4_eslint@6.8.0+prettier@1.19.1 prettier: 1.19.1 dev: true engines: node: '>=8.0.0' resolution: integrity: sha512-DXJTAX33Kq+iqV1MUEH78IKj3BZIqKR9jUy1ABHcx4fCryY0G2WUFttUVpuwED0XwAIXBVOiISStoly2rtvdKA== - /eslint-import-resolver-node/0.3.3: + /eslint-import-resolver-node/0.3.4: dependencies: debug: 2.6.9 resolve: 1.17.0 dev: true resolution: - integrity: sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg== + integrity: sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== /eslint-module-utils/2.6.0: dependencies: debug: 2.6.9 @@ -5373,7 +3776,7 @@ packages: node: '>=4' resolution: integrity: sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== - /eslint-plugin-import/2.20.2_eslint@6.8.0: + /eslint-plugin-import/2.22.0_eslint@6.8.0: dependencies: array-includes: 3.1.1 array.prototype.flat: 1.2.3 @@ -5381,21 +3784,22 @@ packages: debug: 2.6.9 doctrine: 1.5.0 eslint: 6.8.0 - eslint-import-resolver-node: 0.3.3 + eslint-import-resolver-node: 0.3.4 eslint-module-utils: 2.6.0 has: 1.0.3 minimatch: 3.0.4 object.values: 1.1.1 read-pkg-up: 2.0.0 resolve: 1.17.0 + tsconfig-paths: 3.9.0 dev: true engines: node: '>=4' peerDependencies: - eslint: 2.x - 6.x + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 resolution: - integrity: sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg== - /eslint-plugin-prettier/3.1.3_eslint@6.8.0+prettier@1.19.1: + integrity: sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg== + /eslint-plugin-prettier/3.1.4_eslint@6.8.0+prettier@1.19.1: dependencies: eslint: 6.8.0 prettier: 1.19.1 @@ -5404,11 +3808,11 @@ packages: engines: node: '>=6.0.0' peerDependencies: - eslint: '>= 5.0.0' - prettier: '>= 1.13.0' + eslint: '>=5.0.0' + prettier: '>=1.13.0' resolution: - integrity: sha512-+HG5jmu/dN3ZV3T6eCD7a4BlAySdN7mLIbJYo0z1cFQuI+r2DiTJEFeF68ots93PsnrMxbzIZ2S/ieX+mkrBeQ== - /eslint-scope/5.0.0: + integrity: sha512-jZDa8z76klRqo+TdGDTFJSavwbnWK2ZpqGKNZ+VvweMW516pDUMmQ2koXvxEE4JhzNvTv+radye/bWGBmA6jmg== + /eslint-scope/5.1.0: dependencies: esrecurse: 4.2.1 estraverse: 4.3.0 @@ -5416,40 +3820,40 @@ packages: engines: node: '>=8.0.0' resolution: - integrity: sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw== + integrity: sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w== /eslint-utils/1.4.3: dependencies: - eslint-visitor-keys: 1.1.0 + eslint-visitor-keys: 1.3.0 dev: true engines: node: '>=6' resolution: integrity: sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== - /eslint-utils/2.0.0: + /eslint-utils/2.1.0: dependencies: - eslint-visitor-keys: 1.1.0 + eslint-visitor-keys: 1.3.0 dev: true engines: node: '>=6' resolution: - integrity: sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA== - /eslint-visitor-keys/1.1.0: + integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + /eslint-visitor-keys/1.3.0: dev: true engines: node: '>=4' resolution: - integrity: sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== + integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== /eslint/6.8.0: dependencies: - '@babel/code-frame': 7.8.3 - ajv: 6.12.2 + '@babel/code-frame': 7.10.4 + ajv: 6.12.3 chalk: 2.4.2 cross-spawn: 6.0.5 debug: 4.1.1 doctrine: 3.0.0 - eslint-scope: 5.0.0 + eslint-scope: 5.1.0 eslint-utils: 1.4.3 - eslint-visitor-keys: 1.1.0 + eslint-visitor-keys: 1.3.0 espree: 6.2.1 esquery: 1.3.1 esutils: 2.0.3 @@ -5460,12 +3864,12 @@ packages: ignore: 4.0.6 import-fresh: 3.2.1 imurmurhash: 0.1.4 - inquirer: 7.1.0 + inquirer: 7.3.3 is-glob: 4.0.1 - js-yaml: 3.13.1 + js-yaml: 3.14.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.3.0 - lodash: 4.17.15 + lodash: 4.17.19 minimatch: 3.0.4 mkdirp: 0.5.5 natural-compare: 1.4.0 @@ -5474,22 +3878,16 @@ packages: regexpp: 2.0.1 semver: 6.3.0 strip-ansi: 5.2.0 - strip-json-comments: 3.1.0 + strip-json-comments: 3.1.1 table: 5.4.6 text-table: 0.2.0 - v8-compile-cache: 2.1.0 + v8-compile-cache: 2.1.1 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 hasBin: true resolution: integrity: sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== - /esm/3.2.25: - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA== /espower-location-detector/1.0.0: dependencies: is-url: 1.2.4 @@ -5501,9 +3899,9 @@ packages: integrity: sha1-oXt+zFnTDheeK+9z+0E3cEyzMbU= /espree/6.2.1: dependencies: - acorn: 7.1.1 - acorn-jsx: 5.2.0_acorn@7.1.1 - eslint-visitor-keys: 1.1.0 + acorn: 7.3.1 + acorn-jsx: 5.2.0_acorn@7.3.1 + eslint-visitor-keys: 1.3.0 dev: true engines: node: '>=6.0.0' @@ -5566,50 +3964,26 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - /execa/0.7.0: - dependencies: - cross-spawn: 5.1.0 - get-stream: 3.0.0 - is-stream: 1.1.0 - npm-run-path: 2.0.2 - p-finally: 1.0.0 - signal-exit: 3.0.3 - strip-eof: 1.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= - /execa/1.0.0: - dependencies: - cross-spawn: 6.0.5 - get-stream: 4.1.0 - is-stream: 1.1.0 - npm-run-path: 2.0.2 - p-finally: 1.0.0 - signal-exit: 3.0.3 - strip-eof: 1.0.0 + /eventemitter3/4.0.4: dev: true - engines: - node: '>=6' resolution: - integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - /execa/2.1.0: + integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== + /execa/4.0.3: dependencies: - cross-spawn: 7.0.2 + cross-spawn: 7.0.3 get-stream: 5.1.0 + human-signals: 1.1.1 is-stream: 2.0.0 merge-stream: 2.0.0 - npm-run-path: 3.1.0 + npm-run-path: 4.0.1 onetime: 5.1.0 - p-finally: 2.0.1 signal-exit: 3.0.3 strip-final-newline: 2.0.0 dev: true engines: - node: ^8.12.0 || >=9.7.0 + node: '>=10' resolution: - integrity: sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw== + integrity: sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A== /expand-tilde/2.0.2: dependencies: homedir-polyfill: 1.0.3 @@ -5634,25 +4008,26 @@ packages: node: '>=4' resolution: integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - /fast-deep-equal/3.1.1: + /fast-deep-equal/3.1.3: dev: true resolution: - integrity: sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== /fast-diff/1.2.0: dev: true resolution: integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== - /fast-glob/3.1.1: + /fast-glob/3.2.4: dependencies: '@nodelib/fs.stat': 2.0.3 '@nodelib/fs.walk': 1.2.4 - glob-parent: 5.1.0 - merge2: 1.3.0 + glob-parent: 5.1.1 + merge2: 1.4.1 micromatch: 4.0.2 + picomatch: 2.2.2 engines: node: '>=8' resolution: - integrity: sha512-nTCREpBY8w8r+boyFYAx21iL6faSsQynliPHM4Uf56SbkyohCNxpVPEH9xrF5TXKy+IsjkPUHDKiUkzBVRXn9g== + integrity: sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ== /fast-json-stable-stringify/2.1.0: dev: true resolution: @@ -5665,28 +4040,11 @@ packages: dev: true resolution: integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== - /fastq/1.6.0: + /fastq/1.8.0: dependencies: reusify: 1.0.4 resolution: - integrity: sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA== - /figures/1.7.0: - dependencies: - escape-string-regexp: 1.0.5 - object-assign: 4.1.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= - /figures/2.0.0: - dependencies: - escape-string-regexp: 1.0.5 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= + integrity: sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q== /figures/3.2.0: dependencies: escape-string-regexp: 1.0.5 @@ -5720,6 +4078,16 @@ packages: node: '>=6' resolution: integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + /find-cache-dir/3.3.1: + dependencies: + commondir: 1.0.1 + make-dir: 3.1.0 + pkg-dir: 4.2.0 + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== /find-up/2.1.0: dependencies: locate-path: 2.0.0 @@ -5744,6 +4112,14 @@ packages: node: '>=8' resolution: integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + /find-versions/3.2.0: + dependencies: + semver-regex: 2.0.0 + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== /flat-cache/2.0.1: dependencies: flatted: 2.0.2 @@ -5758,13 +4134,19 @@ packages: dev: true resolution: integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== - /foreground-child/1.5.6: + /foreground-child/2.0.0: dependencies: - cross-spawn: 4.0.2 + cross-spawn: 7.0.3 signal-exit: 3.0.3 dev: true + engines: + node: '>=8.0.0' + resolution: + integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== + /fromentries/1.2.1: + dev: true resolution: - integrity: sha1-T9ca0t/elnibmApcCilZN8svXOk= + integrity: sha512-Xu2Qh8yqYuDhQGOhD5iJGninErSfI9A3FrriD3tjUgV5VbJFeH8vfgZ9HnC6jWN80QDVNQK5vmxRAmEAp7Mevw== /fs.realpath/1.0.0: resolution: integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8= @@ -5794,7 +4176,7 @@ packages: integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= /generic-names/2.0.1: dependencies: - loader-utils: 1.2.3 + loader-utils: 1.4.0 dev: true resolution: integrity: sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ== @@ -5814,24 +4196,12 @@ packages: dev: true resolution: integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== - /get-port/5.1.1: - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== - /get-stdin/7.0.0: - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ== - /get-stream/3.0.0: + /get-package-type/0.1.0: dev: true engines: - node: '>=4' + node: '>=8.0.0' resolution: - integrity: sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== /get-stream/4.1.0: dependencies: pump: 3.0.0 @@ -5848,17 +4218,9 @@ packages: node: '>=8' resolution: integrity: sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== - /glob-parent/5.1.0: - dependencies: - is-glob: 4.0.1 - engines: - node: '>= 6' - resolution: - integrity: sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw== /glob-parent/5.1.1: dependencies: is-glob: 4.0.1 - dev: true engines: node: '>= 6' resolution: @@ -5873,14 +4235,14 @@ packages: path-is-absolute: 1.0.1 resolution: integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - /global-dirs/0.1.1: + /global-dirs/2.0.1: dependencies: ini: 1.3.5 dev: true engines: - node: '>=4' + node: '>=8' resolution: - integrity: sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= + integrity: sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A== /global-modules/1.0.0: dependencies: global-prefix: 1.0.2 @@ -5919,13 +4281,13 @@ packages: integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== /globby/10.0.2: dependencies: - '@types/glob': 7.1.1 + '@types/glob': 7.1.3 array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.1.1 + fast-glob: 3.2.4 glob: 7.1.6 - ignore: 5.1.4 - merge2: 1.3.0 + ignore: 5.1.8 + merge2: 1.4.1 slash: 3.0.0 dev: true engines: @@ -5936,27 +4298,36 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.1.1 - ignore: 5.1.4 - merge2: 1.3.0 + fast-glob: 3.2.4 + ignore: 5.1.8 + merge2: 1.4.1 slash: 3.0.0 - dev: false engines: node: '>=10' resolution: integrity: sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ== - /globby/6.1.0: - dependencies: - array-union: 1.0.2 - glob: 7.1.6 - object-assign: 4.1.1 - pify: 2.3.0 - pinkie-promise: 2.0.1 + /got/10.7.0: + dependencies: + '@sindresorhus/is': 2.1.1 + '@szmarczak/http-timer': 4.0.5 + '@types/cacheable-request': 6.0.1 + cacheable-lookup: 2.0.1 + cacheable-request: 7.0.1 + decompress-response: 5.0.0 + duplexer3: 0.1.4 + get-stream: 5.1.0 + lowercase-keys: 2.0.0 + mimic-response: 2.1.0 + p-cancelable: 2.0.0 + p-event: 4.2.0 + responselike: 2.0.0 + to-readable-stream: 2.1.0 + type-fest: 0.10.0 dev: true engines: - node: '>=0.10.0' + node: '>=10' resolution: - integrity: sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= + integrity: sha512-aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg== /got/9.6.0: dependencies: '@sindresorhus/is': 0.14.0 @@ -5975,11 +4346,10 @@ packages: node: '>=8.6' resolution: integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== - /graceful-fs/4.2.3: + /graceful-fs/4.2.4: resolution: - integrity: sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== + integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== /hard-rejection/2.1.0: - dev: false engines: node: '>=6' resolution: @@ -6037,14 +4407,6 @@ packages: node: '>= 0.4.0' resolution: integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - /hasha/3.0.0: - dependencies: - is-stream: 1.1.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-UqMvq4Vp1BymmmH/GiFPjrfIvTk= /hasha/5.2.0: dependencies: is-stream: 2.0.0 @@ -6089,26 +4451,31 @@ packages: dev: true resolution: integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== - /husky/3.1.0: + /human-signals/1.1.1: + dev: true + engines: + node: '>=8.12.0' + resolution: + integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== + /husky/4.2.5: dependencies: - chalk: 2.4.2 + chalk: 4.1.0 ci-info: 2.0.0 - cosmiconfig: 5.2.1 - execa: 1.0.0 - get-stdin: 7.0.0 - opencollective-postinstall: 2.0.2 + compare-versions: 3.6.0 + cosmiconfig: 6.0.0 + find-versions: 3.2.0 + opencollective-postinstall: 2.0.3 pkg-dir: 4.2.0 please-upgrade-node: 3.2.0 - read-pkg: 5.2.0 - run-node: 1.0.0 slash: 3.0.0 + which-pm-runs: 1.0.0 dev: true engines: - node: '>=8.6.0' + node: '>=10' hasBin: true requiresBuild: true resolution: - integrity: sha512-FJkPoHHB+6s4a+jwPqBudBDvYZsoQW5/HBuMSehC8qDiCe50kpcxeqFoDSlow+9I6wg47YxBoT3WxaURlrDIIQ== + integrity: sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ== /iconv-lite/0.4.24: dependencies: safer-buffer: 2.1.2 @@ -6120,21 +4487,23 @@ packages: dev: true resolution: integrity: sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= - /ignore-by-default/1.0.1: + /ignore-by-default/2.0.0: dev: true + engines: + node: '>=10 <11 || >=12 <13 || >=14' resolution: - integrity: sha1-SMptcvbGo68Aqa1K5odr44ieKwk= + integrity: sha512-+mQSgMRiFD3L3AOxLYOCxjIq4OnAmo5CIuC+lj5ehCJcPtV++QacEV7FdpzvYxH6DaOySWzQU6RR0lPLy37ckA== /ignore/4.0.6: dev: true engines: node: '>= 4' resolution: integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== - /ignore/5.1.4: + /ignore/5.1.8: engines: node: '>= 4' resolution: - integrity: sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A== + integrity: sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== /import-cwd/2.1.0: dependencies: import-from: 2.1.0 @@ -6143,6 +4512,14 @@ packages: node: '>=4' resolution: integrity: sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= + /import-cwd/3.0.0: + dependencies: + import-from: 3.0.0 + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== /import-fresh/2.0.0: dependencies: caller-path: 2.0.0 @@ -6169,6 +4546,14 @@ packages: node: '>=4' resolution: integrity: sha1-M1238qev/VOqpHHUuAId7ja387E= + /import-from/3.0.0: + dependencies: + resolve-from: 5.0.0 + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== /import-lazy/2.1.0: dev: true engines: @@ -6217,26 +4602,26 @@ packages: /ini/1.3.5: resolution: integrity: sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== - /inquirer/7.1.0: + /inquirer/7.3.3: dependencies: ansi-escapes: 4.3.1 - chalk: 3.0.0 + chalk: 4.1.0 cli-cursor: 3.1.0 - cli-width: 2.2.1 + cli-width: 3.0.0 external-editor: 3.1.0 figures: 3.2.0 - lodash: 4.17.15 + lodash: 4.17.19 mute-stream: 0.0.8 - run-async: 2.4.0 - rxjs: 6.5.5 + run-async: 2.4.1 + rxjs: 6.6.0 string-width: 4.2.0 strip-ansi: 6.0.0 through: 2.3.8 dev: true engines: - node: '>=6.0.0' + node: '>=8.0.0' resolution: - integrity: sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== + integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== /interpret/1.4.0: dev: true engines: @@ -6249,12 +4634,12 @@ packages: dev: true resolution: integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - /irregular-plurals/2.0.0: + /irregular-plurals/3.2.0: dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-Y75zBYLkh0lJ9qxeHlMjQ7bSbyiSqNW/UOPWDmzC7cXskL1hekSITh1Oc6JV0XCWWZ9DE8VYSB71xocLk3gmGw== + integrity: sha512-YqTdPLfwP7YFN0SsD3QUVCkm9ZG2VzOXv3DOrw5G5mkMbVwptTwVcFv7/C0vOpBmgTxAeTG19XpUs1E522LW9Q== /is-absolute-url/2.1.0: dev: true engines: @@ -6276,18 +4661,18 @@ packages: integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== /is-binary-path/2.1.0: dependencies: - binary-extensions: 2.0.0 + binary-extensions: 2.1.0 dev: true engines: node: '>=8' resolution: integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - /is-callable/1.1.5: + /is-callable/1.2.0: dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== + integrity: sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== /is-ci/2.0.0: dependencies: ci-info: 2.0.0 @@ -6327,14 +4712,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= - /is-fullwidth-code-point/1.0.0: - dependencies: - number-is-nan: 1.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs= /is-fullwidth-code-point/2.0.0: dev: true engines: @@ -6362,24 +4739,30 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== - /is-installed-globally/0.1.0: + /is-installed-globally/0.3.2: dependencies: - global-dirs: 0.1.1 - is-path-inside: 1.0.1 + global-dirs: 2.0.1 + is-path-inside: 3.0.2 dev: true engines: - node: '>=4' + node: '>=8' + resolution: + integrity: sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g== + /is-interactive/1.0.0: + dev: true + engines: + node: '>=8' resolution: - integrity: sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= + integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== /is-module/1.0.0: resolution: integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= - /is-npm/3.0.0: + /is-npm/4.0.0: dev: true engines: node: '>=8' resolution: - integrity: sha512-wsigDr1Kkschp2opC4G3yA6r9EgVA6NjRpWzIi9axXqeIaAATPRJc4uLujXe3Nd9uO8KoDyA4MD6aZSeXTADhA== + integrity: sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig== /is-number/7.0.0: engines: node: '>=0.12.0' @@ -6397,50 +4780,12 @@ packages: node: '>=8' resolution: integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== - /is-observable/1.1.0: - dependencies: - symbol-observable: 1.2.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== - /is-observable/2.0.0: - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-fhBZv3eFKUbyHXZ1oHujdo2tZ+CNbdpdzzlENgCGZUC8keoGxUew2jYFLYcUB4qo7LDD03o4KK11m/QYD7kEjg== /is-path-cwd/2.2.0: dev: true engines: node: '>=6' resolution: integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== - /is-path-in-cwd/2.1.0: - dependencies: - is-path-inside: 2.1.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ== - /is-path-inside/1.0.1: - dependencies: - path-is-inside: 1.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-jvW33lBDej/cprToZe96pVy0gDY= - /is-path-inside/2.1.0: - dependencies: - path-is-inside: 1.0.2 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg== /is-path-inside/3.0.2: dev: true engines: @@ -6452,18 +4797,22 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4= - /is-plain-object/3.0.0: - dependencies: - isobject: 4.0.0 + /is-plain-object/3.0.1: + dev: true + engines: + node: '>=0.10.0' + resolution: + integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g== + /is-plain-object/4.1.1: dev: true engines: node: '>=0.10.0' resolution: - integrity: sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg== - /is-promise/2.2.2: + integrity: sha512-5Aw8LLVsDlZsETVMhoMXzqsXwQqr/0vlnBYzIXJbYo2F4yYlhLHs+Ez7Bod7IIQKWkJbJfxrWD7pA1Dw1TKrwA== + /is-promise/4.0.0: dev: true resolution: - integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== + integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== /is-reference/1.1.4: dependencies: '@types/estree': 0.0.39 @@ -6473,17 +4822,16 @@ packages: /is-reference/1.2.1: dependencies: '@types/estree': 0.0.45 - dev: false resolution: integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== - /is-regex/1.0.5: + /is-regex/1.1.0: dependencies: - has: 1.0.3 + has-symbols: 1.0.1 dev: true engines: node: '>= 0.4' resolution: - integrity: sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== + integrity: sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== /is-regexp/1.0.0: dev: true engines: @@ -6494,12 +4842,6 @@ packages: dev: true resolution: integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== - /is-stream/1.1.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ= /is-stream/2.0.0: dev: true engines: @@ -6555,7 +4897,6 @@ packages: resolution: integrity: sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao= /is-windows/1.0.2: - dev: false engines: node: '>=0.10.0' resolution: @@ -6574,70 +4915,74 @@ packages: /isexe/2.0.0: resolution: integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - /isobject/4.0.0: + /istanbul-lib-coverage/3.0.0: dev: true engines: - node: '>=0.10.0' + node: '>=8' resolution: - integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA== - /istanbul-lib-coverage/2.0.5: + integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== + /istanbul-lib-hook/3.0.0: + dependencies: + append-transform: 2.0.0 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA== - /istanbul-lib-hook/2.0.7: + integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ== + /istanbul-lib-instrument/4.0.3: dependencies: - append-transform: 1.0.0 + '@babel/core': 7.10.5 + '@istanbuljs/schema': 0.1.2 + istanbul-lib-coverage: 3.0.0 + semver: 6.3.0 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-vrRztU9VRRFDyC+aklfLoeXyNdTfga2EI3udDGn4cZ6fpSXpHLV9X6CHvfoMCPtggg8zvDDmC4b9xfu0z6/llA== - /istanbul-lib-instrument/3.3.0: + integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== + /istanbul-lib-processinfo/2.0.2: dependencies: - '@babel/generator': 7.9.5 - '@babel/parser': 7.9.4 - '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 - istanbul-lib-coverage: 2.0.5 - semver: 6.3.0 + archy: 1.0.0 + cross-spawn: 7.0.3 + istanbul-lib-coverage: 3.0.0 + make-dir: 3.1.0 + p-map: 3.0.0 + rimraf: 3.0.2 + uuid: 3.4.0 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== - /istanbul-lib-report/2.0.8: + integrity: sha512-kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw== + /istanbul-lib-report/3.0.0: dependencies: - istanbul-lib-coverage: 2.0.5 - make-dir: 2.1.0 - supports-color: 6.1.0 + istanbul-lib-coverage: 3.0.0 + make-dir: 3.1.0 + supports-color: 7.1.0 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ== - /istanbul-lib-source-maps/3.0.6: + integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== + /istanbul-lib-source-maps/4.0.0: dependencies: debug: 4.1.1 - istanbul-lib-coverage: 2.0.5 - make-dir: 2.1.0 - rimraf: 2.7.1 + istanbul-lib-coverage: 3.0.0 source-map: 0.6.1 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== - /istanbul-reports/2.2.7: + integrity: sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== + /istanbul-reports/3.0.2: dependencies: html-escaper: 2.0.2 + istanbul-lib-report: 3.0.0 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg== + integrity: sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw== /jest-diff/24.9.0: dependencies: chalk: 2.4.2 @@ -6664,13 +5009,13 @@ packages: /js-tokens/4.0.0: resolution: integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - /js-yaml/3.13.1: + /js-yaml/3.14.0: dependencies: argparse: 1.0.10 esprima: 4.0.1 hasBin: true resolution: - integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== + integrity: sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== /jsesc/0.5.0: hasBin: true resolution: @@ -6686,6 +5031,10 @@ packages: dev: true resolution: integrity: sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= + /json-buffer/3.0.1: + dev: true + resolution: + integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== /json-parse-better-errors/1.0.2: resolution: integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== @@ -6729,8 +5078,13 @@ packages: dev: true resolution: integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== + /keyv/4.0.1: + dependencies: + json-buffer: 3.0.1 + dev: true + resolution: + integrity: sha512-xz6Jv6oNkbhrFCvCP7HQa8AaII8y8LRpoSm661NOKLr4uHuBwhX4epXrPQgF3+xdJnN4Esm5X0xwY4bOlALOtw== /kind-of/6.0.3: - dev: false engines: node: '>=0.10.0' resolution: @@ -6769,17 +5123,18 @@ packages: /lines-and-columns/1.1.6: resolution: integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= - /lint-staged/9.5.0: + /lint-staged/10.2.11: dependencies: - chalk: 2.4.2 - commander: 2.20.3 - cosmiconfig: 5.2.1 + chalk: 4.1.0 + cli-truncate: 2.1.0 + commander: 5.1.0 + cosmiconfig: 6.0.0 debug: 4.1.1 dedent: 0.7.0 - del: 5.1.0 - execa: 2.1.0 - listr: 0.14.3_listr@0.14.3 - log-symbols: 3.0.0 + enquirer: 2.3.6 + execa: 4.0.3 + listr2: 2.4.0_enquirer@2.3.6 + log-symbols: 4.0.0 micromatch: 4.0.2 normalize-path: 3.0.0 please-upgrade-node: 3.2.0 @@ -6788,63 +5143,28 @@ packages: dev: true hasBin: true resolution: - integrity: sha512-nawMob9cb/G1J98nb8v3VC/E8rcX1rryUYXVZ69aT9kde6YWX+uvNOEHY5yf2gcWcTJGiD0kqXmCnS3oD75GIA== - /listr-silent-renderer/1.1.1: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4= - /listr-update-renderer/0.5.0_listr@0.14.3: - dependencies: - chalk: 1.1.3 - cli-truncate: 0.2.1 - elegant-spinner: 1.0.1 - figures: 1.7.0 - indent-string: 3.2.0 - listr: 0.14.3_listr@0.14.3 - log-symbols: 1.0.2 - log-update: 2.3.0 - strip-ansi: 3.0.1 - dev: true - engines: - node: '>=6' - peerDependencies: - listr: ^0.14.2 - resolution: - integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== - /listr-verbose-renderer/0.5.0: + integrity: sha512-LRRrSogzbixYaZItE2APaS4l2eJMjjf5MbclRZpLJtcQJShcvUzKXsNeZgsLIZ0H0+fg2tL4B59fU9wHIHtFIA== + /listr2/2.4.0_enquirer@2.3.6: dependencies: - chalk: 2.4.2 - cli-cursor: 2.1.0 - date-fns: 1.30.1 - figures: 2.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== - /listr/0.14.3_listr@0.14.3: - dependencies: - '@samverschueren/stream-to-observable': 0.3.0 - is-observable: 1.1.0 - is-promise: 2.2.2 - is-stream: 1.1.0 - listr-silent-renderer: 1.1.1 - listr-update-renderer: 0.5.0_listr@0.14.3 - listr-verbose-renderer: 0.5.0 - p-map: 2.1.0 - rxjs: 6.5.5 + chalk: 4.1.0 + cli-truncate: 2.1.0 + enquirer: 2.3.6 + figures: 3.2.0 + indent-string: 4.0.0 + log-update: 4.0.0 + p-map: 4.0.0 + rxjs: 6.6.0 + through: 2.3.8 dev: true engines: - node: '>=6' + node: '>=10.0.0' peerDependencies: - listr: '*' + enquirer: '>= 2.3.0 < 3' resolution: - integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== + integrity: sha512-Hj2ECZdAxDkuYFtIKE35PgdMSqMp0muIhJRG5EyV5pOWFEUmKUG+fhfFrvIUNGBQvvi7wQ41eKTxDBisfvDjFQ== /load-json-file/2.0.0: dependencies: - graceful-fs: 4.2.3 + graceful-fs: 4.2.4 parse-json: 2.2.0 pify: 2.3.0 strip-bom: 3.0.0 @@ -6853,20 +5173,9 @@ packages: node: '>=4' resolution: integrity: sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= - /load-json-file/4.0.0: - dependencies: - graceful-fs: 4.2.3 - parse-json: 4.0.0 - pify: 3.0.0 - strip-bom: 3.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs= /load-json-file/5.3.0: dependencies: - graceful-fs: 4.2.3 + graceful-fs: 4.2.4 parse-json: 4.0.0 pify: 4.0.1 strip-bom: 3.0.0 @@ -6876,16 +5185,16 @@ packages: node: '>=6' resolution: integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw== - /loader-utils/1.2.3: + /loader-utils/1.4.0: dependencies: big.js: 5.2.2 - emojis-list: 2.1.0 + emojis-list: 3.0.0 json5: 1.0.1 dev: true engines: node: '>=4.0.0' resolution: - integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== + integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== /locate-character/2.0.5: dev: true resolution: @@ -6947,47 +5256,36 @@ packages: dev: true resolution: integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= - /lodash/4.17.15: - resolution: - integrity: sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== /lodash/4.17.19: - dev: true resolution: integrity: sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== - /log-symbols/1.0.2: - dependencies: - chalk: 1.1.3 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg= - /log-symbols/2.2.0: + /log-symbols/3.0.0: dependencies: chalk: 2.4.2 dev: true engines: - node: '>=4' + node: '>=8' resolution: - integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== - /log-symbols/3.0.0: + integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== + /log-symbols/4.0.0: dependencies: - chalk: 2.4.2 + chalk: 4.1.0 dev: true engines: - node: '>=8' + node: '>=10' resolution: - integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== - /log-update/2.3.0: + integrity: sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== + /log-update/4.0.0: dependencies: - ansi-escapes: 3.2.0 - cli-cursor: 2.1.0 - wrap-ansi: 3.0.1 + ansi-escapes: 4.3.1 + cli-cursor: 3.1.0 + slice-ansi: 4.0.0 + wrap-ansi: 6.2.0 dev: true engines: - node: '>=4' + node: '>=10' resolution: - integrity: sha1-iDKP19HOeTiykoN0bwsbwSayRwg= + integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== /lolex/5.1.2: dependencies: '@sinonjs/commons': 1.7.0 @@ -7001,24 +5299,6 @@ packages: hasBin: true resolution: integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - /loud-rejection/1.6.0: - dependencies: - currently-unhandled: 0.4.1 - signal-exit: 3.0.3 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= - /loud-rejection/2.2.0: - dependencies: - currently-unhandled: 0.4.1 - signal-exit: 3.0.3 - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-S0FayMXku80toa5sZ6Ro4C+s+EtFDCsyJNG/AzFMfX3AxD5Si4dZsgzm/kKnbOxHl5Cv8jBlno8+3XYIh2pNjQ== /lowercase-keys/1.0.1: dev: true engines: @@ -7031,31 +5311,11 @@ packages: node: '>=8' resolution: integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== - /lru-cache/4.1.5: - dependencies: - pseudomap: 1.0.2 - yallist: 2.1.2 - dev: true - resolution: - integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== - /magic-string/0.25.6: - dependencies: - sourcemap-codec: 1.4.8 - resolution: - integrity: sha512-3a5LOMSGoCTH5rbqobC2HuDNRtE2glHZ8J7pK+QZYppyWA36yuNpsX994rIY2nCuyP7CZYy7lQq/X2jygiZ89g== /magic-string/0.25.7: dependencies: sourcemap-codec: 1.4.8 resolution: integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== - /make-dir/1.3.0: - dependencies: - pify: 3.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== /make-dir/2.1.0: dependencies: pify: 4.0.1 @@ -7064,18 +5324,9 @@ packages: node: '>=6' resolution: integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - /make-dir/3.0.0: - dependencies: - semver: 6.3.0 - dev: false - engines: - node: '>=8' - resolution: - integrity: sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw== /make-dir/3.1.0: dependencies: semver: 6.3.0 - dev: true engines: node: '>=8' resolution: @@ -7084,19 +5335,20 @@ packages: dev: true resolution: integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - /map-obj/1.0.1: + /map-age-cleaner/0.1.3: + dependencies: + p-defer: 1.0.0 + dev: true engines: - node: '>=0.10.0' + node: '>=6' resolution: - integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= - /map-obj/2.0.0: - dev: true + integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + /map-obj/1.0.1: engines: - node: '>=4' + node: '>=0.10.0' resolution: - integrity: sha1-plzSkIepJZi4eRJXpSPgISIqwfk= + integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= /map-obj/4.1.0: - dev: false engines: node: '>=8' resolution: @@ -7114,14 +5366,14 @@ packages: node: '>= 0.12.0' resolution: integrity: sha512-7ivM1jFZVTOOS77QsR+TtYHH0ecdLclMkqbf5qiJdX2RorqfhsL65QHySPZgDE0ZjHoh+mQUNHTanNXIlzXd0Q== - /matcher/2.1.0: + /matcher/3.0.0: dependencies: - escape-string-regexp: 2.0.0 + escape-string-regexp: 4.0.0 dev: true engines: - node: '>=8' + node: '>=10' resolution: - integrity: sha512-o+nZr+vtJtgPNklyeUKkkH42OsK8WAfdgaJE2FNxcjLPg+5QbeEoT6vRj8Xq/iv18JlQ9cmKsEu0b94ixWf1YQ== + integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng== /md5-hex/2.0.0: dependencies: md5-o-matic: 0.1.1 @@ -7132,7 +5384,7 @@ packages: integrity: sha1-0FiOnxx0lUSS7NJKwKxs6ZfZLjM= /md5-hex/3.0.1: dependencies: - blueimp-md5: 2.13.0 + blueimp-md5: 2.17.0 dev: true engines: node: '>=8' @@ -7146,22 +5398,37 @@ packages: dev: true resolution: integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== - /meow/5.0.0: + /mdn-data/2.0.6: + dev: true + resolution: + integrity: sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA== + /mem/6.1.0: + dependencies: + map-age-cleaner: 0.1.3 + mimic-fn: 3.1.0 + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-RlbnLQgRHk5lwqTtpEkBTQ2ll/CG/iB+J4Hy2Wh97PjgZgXgWJWrFF+XXujh3UUVLvR4OOTgZzcWMMwnehlEUg== + /meow/6.1.1: dependencies: - camelcase-keys: 4.2.0 + '@types/minimist': 1.2.0 + camelcase-keys: 6.2.2 decamelize-keys: 1.1.0 - loud-rejection: 1.6.0 - minimist-options: 3.0.2 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 normalize-package-data: 2.5.0 - read-pkg-up: 3.0.0 - redent: 2.0.0 - trim-newlines: 2.0.0 - yargs-parser: 10.1.0 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.0 + type-fest: 0.13.1 + yargs-parser: 18.1.3 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig== + integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg== /meow/7.0.1: dependencies: '@types/minimist': 1.2.0 @@ -7182,60 +5449,59 @@ packages: node: '>=10' resolution: integrity: sha512-tBKIQqVrAHqwit0vfuFPY3LlzJYkEOFyKa3bPgxzNl6q/RtN8KQ+ALYEASYuFayzSAsjlhXj/JZ10rH85Q6TUw== - /merge-source-map/1.1.0: - dependencies: - source-map: 0.6.1 - dev: true - resolution: - integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw== /merge-stream/2.0.0: dev: true resolution: integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - /merge2/1.3.0: + /merge2/1.4.1: engines: - node: '>= 6' + node: '>= 8' resolution: - integrity: sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== /micromatch/4.0.2: dependencies: braces: 3.0.2 - picomatch: 2.2.1 + picomatch: 2.2.2 engines: node: '>=8' resolution: integrity: sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== - /mime/2.4.4: + /mime/2.4.6: dev: false engines: node: '>=4.0.0' hasBin: true resolution: - integrity: sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA== - /mimic-fn/1.2.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + integrity: sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA== /mimic-fn/2.1.0: dev: true engines: node: '>=6' resolution: integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + /mimic-fn/3.1.0: + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== /mimic-response/1.0.1: dev: true engines: node: '>=4' resolution: integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== - /min-indent/1.0.0: - dev: false + /mimic-response/2.1.0: + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== + /min-indent/1.0.1: engines: node: '>=4' resolution: - integrity: sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY= + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== /mini-svg-data-uri/1.1.3: dev: false resolution: @@ -7245,40 +5511,18 @@ packages: brace-expansion: 1.1.11 resolution: integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - /minimist-options/3.0.2: - dependencies: - arrify: 1.0.1 - is-plain-obj: 1.1.0 - dev: true - engines: - node: '>= 4' - resolution: - integrity: sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== /minimist-options/4.1.0: dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 kind-of: 6.0.3 - dev: false engines: node: '>= 6' resolution: integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - /minimist/0.0.8: - dev: true - resolution: - integrity: sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= /minimist/1.2.5: resolution: integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - /mkdirp/0.5.1: - dependencies: - minimist: 0.0.8 - deprecated: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.) - dev: true - hasBin: true - resolution: - integrity: sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= /mkdirp/0.5.5: dependencies: minimist: 1.2.5 @@ -7310,10 +5554,6 @@ packages: dev: true resolution: integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= - /nested-error-stacks/2.1.0: - dev: true - resolution: - integrity: sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug== /next-tick/1.0.0: dev: true resolution: @@ -7342,14 +5582,18 @@ packages: dev: true resolution: integrity: sha1-R6Pn2Az/qmRYNkvSLthcqzMHvnk= - /node-releases/1.1.53: + /node-preload/0.2.1: + dependencies: + process-on-spawn: 1.0.0 dev: true + engines: + node: '>=8' resolution: - integrity: sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ== - /node-releases/1.1.59: + integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ== + /node-releases/1.1.60: dev: true resolution: - integrity: sha512-H3JrdUczbdiwxN5FuJPyCHnGHIFqQ0wWxo+9j1kAXAzqNMAHlo+4I/sYYxpyK0irQ73HgdiyzD32oqQDcU2Osw== + integrity: sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA== /normalize-package-data/2.5.0: dependencies: hosted-git-info: 2.8.8 @@ -7376,80 +5620,69 @@ packages: node: '>=8' resolution: integrity: sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== - /npm-run-path/2.0.2: - dependencies: - path-key: 2.0.1 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= - /npm-run-path/3.1.0: + /npm-run-path/4.0.1: dependencies: path-key: 3.1.1 dev: true engines: node: '>=8' resolution: - integrity: sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg== + integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== /nth-check/1.0.2: dependencies: boolbase: 1.0.0 dev: true resolution: integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== - /number-is-nan/1.0.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= - /nyc/14.1.1: + /nyc/15.1.0: dependencies: - archy: 1.0.0 - caching-transform: 3.0.2 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.2 + caching-transform: 4.0.0 convert-source-map: 1.7.0 - cp-file: 6.2.0 - find-cache-dir: 2.1.0 - find-up: 3.0.0 - foreground-child: 1.5.6 + decamelize: 1.2.0 + find-cache-dir: 3.3.1 + find-up: 4.1.0 + foreground-child: 2.0.0 + get-package-type: 0.1.0 glob: 7.1.6 - istanbul-lib-coverage: 2.0.5 - istanbul-lib-hook: 2.0.7 - istanbul-lib-instrument: 3.3.0 - istanbul-lib-report: 2.0.8 - istanbul-lib-source-maps: 3.0.6 - istanbul-reports: 2.2.7 - js-yaml: 3.13.1 - make-dir: 2.1.0 - merge-source-map: 1.1.0 - resolve-from: 4.0.0 - rimraf: 2.7.1 + istanbul-lib-coverage: 3.0.0 + istanbul-lib-hook: 3.0.0 + istanbul-lib-instrument: 4.0.3 + istanbul-lib-processinfo: 2.0.2 + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.0 + istanbul-reports: 3.0.2 + make-dir: 3.1.0 + node-preload: 0.2.1 + p-map: 3.0.0 + process-on-spawn: 1.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 signal-exit: 3.0.3 - spawn-wrap: 1.4.3 - test-exclude: 5.2.3 - uuid: 3.4.0 - yargs: 13.3.2 - yargs-parser: 13.1.2 + spawn-wrap: 2.0.0 + test-exclude: 6.0.0 + yargs: 15.4.1 dev: true engines: - node: '>=6' + node: '>=8.9' hasBin: true resolution: - integrity: sha512-OI0vm6ZGUnoGZv/tLdZ2esSVzDwUC88SNs+6JoSOMVxA+gKMB8Tk7jBwgemLx4O40lhhvZCVw1C+OYLOBOPXWw== + integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A== /object-assign/4.1.1: + dev: false engines: node: '>=0.10.0' resolution: integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - /object-inspect/1.7.0: + /object-inspect/1.8.0: dev: true resolution: - integrity: sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== + integrity: sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== /object-is/1.1.2: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.5 + es-abstract: 1.17.6 dev: true engines: node: '>= 0.4' @@ -7475,7 +5708,7 @@ packages: /object.getownpropertydescriptors/2.1.0: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.2 + es-abstract: 1.17.6 dev: true engines: node: '>= 0.8' @@ -7484,7 +5717,7 @@ packages: /object.values/1.1.1: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.5 + es-abstract: 1.17.6 function-bind: 1.1.1 has: 1.0.3 dev: true @@ -7492,28 +5725,11 @@ packages: node: '>= 0.4' resolution: integrity: sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== - /observable-to-promise/1.0.0: - dependencies: - is-observable: 2.0.0 - symbol-observable: 1.2.0 - dev: true - engines: - node: '>=8' - resolution: - integrity: sha512-cqnGUrNsE6vdVDTPAX9/WeVzwy/z37vdxupdQXU8vgTXRFH72KCZiZga8aca2ulRPIeem8W3vW9rQHBwfIl2WA== /once/1.4.0: dependencies: wrappy: 1.0.2 resolution: integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - /onetime/2.0.1: - dependencies: - mimic-fn: 1.2.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= /onetime/5.1.0: dependencies: mimic-fn: 2.1.0 @@ -7522,11 +5738,11 @@ packages: node: '>=6' resolution: integrity: sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== - /opencollective-postinstall/2.0.2: + /opencollective-postinstall/2.0.3: dev: true hasBin: true resolution: - integrity: sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== + integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== /optionator/0.8.3: dependencies: deep-is: 0.1.3 @@ -7540,25 +5756,21 @@ packages: node: '>= 0.8.0' resolution: integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - /ora/3.4.0: + /ora/4.0.5: dependencies: - chalk: 2.4.2 - cli-cursor: 2.1.0 - cli-spinners: 2.3.0 - log-symbols: 2.2.0 - strip-ansi: 5.2.0 + chalk: 3.0.0 + cli-cursor: 3.1.0 + cli-spinners: 2.4.0 + is-interactive: 1.0.0 + log-symbols: 3.0.0 + mute-stream: 0.0.8 + strip-ansi: 6.0.0 wcwidth: 1.0.1 dev: true engines: - node: '>=6' - resolution: - integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== - /os-homedir/1.0.2: - dev: true - engines: - node: '>=0.10.0' + node: '>=8' resolution: - integrity: sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + integrity: sha512-jCDgm9DqvRcNIAEv2wZPrh7E5PcQiDUnbnWbAfu4NGAE2ZNqPFbDixmWldy1YG2QfLeQhuiu6/h5VRrk6cG50w== /os-homedir/2.0.0: deprecated: This is not needed anymore. Use `require('os').homedir()` instead. dev: true @@ -7578,18 +5790,32 @@ packages: node: '>=6' resolution: integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== - /p-finally/1.0.0: + /p-cancelable/2.0.0: + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg== + /p-defer/1.0.0: dev: true engines: node: '>=4' resolution: - integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - /p-finally/2.0.1: + integrity: sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + /p-event/4.2.0: + dependencies: + p-timeout: 3.2.0 dev: true engines: node: '>=8' resolution: - integrity: sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== + integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ== + /p-finally/1.0.0: + dev: true + engines: + node: '>=4' + resolution: + integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= /p-limit/1.3.0: dependencies: p-try: 1.0.0 @@ -7628,26 +5854,39 @@ packages: node: '>=8' resolution: integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - /p-map/2.1.0: + /p-map/3.0.0: + dependencies: + aggregate-error: 3.0.1 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== - /p-map/3.0.0: + integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== + /p-map/4.0.0: dependencies: aggregate-error: 3.0.1 dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + /p-queue/6.6.0: + dependencies: + eventemitter3: 4.0.4 + p-timeout: 3.2.0 + dev: true engines: node: '>=8' resolution: - integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== - /p-queue/2.4.2: + integrity: sha512-zPHXPNy9jZsiym0PpJjvnHQysx1fSd/QdaNVwiDRLU2KFChD6h9CkCB6b8i3U8lBwJyA+mHgNZCzcy77glUssQ== + /p-timeout/3.2.0: + dependencies: + p-finally: 1.0.0 dev: true engines: - node: '>=4' + node: '>=8' resolution: - integrity: sha512-n8/y+yDJwBjoLQe1GSJbbaYQLTI7QHNZI2+rpmCDbe++WLf9HC3gf6iqj5yfPAV71W4UF3ql5W1+UBPXoXTxng== + integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== /p-try/1.0.0: dev: true engines: @@ -7659,20 +5898,9 @@ packages: node: '>=6' resolution: integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - /package-hash/3.0.0: - dependencies: - graceful-fs: 4.2.3 - hasha: 3.0.0 - lodash.flattendeep: 4.4.0 - release-zalgo: 1.0.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-lOtmukMDVvtkL84rJHI7dpTYq+0rli8N2wlnqUcBuDWCfVhRUfOmnR9SsoHFMLpACvEV60dX7rd0rFaYDZI+FA== /package-hash/4.0.0: dependencies: - graceful-fs: 4.2.3 + graceful-fs: 4.2.4 hasha: 5.2.0 lodash.flattendeep: 4.4.0 release-zalgo: 1.0.0 @@ -7684,7 +5912,7 @@ packages: /package-json/6.5.0: dependencies: got: 9.6.0 - registry-auth-token: 4.1.1 + registry-auth-token: 4.2.0 registry-url: 5.1.0 semver: 6.3.0 dev: true @@ -7717,16 +5945,16 @@ packages: node: '>=4' resolution: integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= - /parse-json/5.0.0: + /parse-json/5.0.1: dependencies: - '@babel/code-frame': 7.8.3 + '@babel/code-frame': 7.10.4 error-ex: 1.3.2 json-parse-better-errors: 1.0.2 lines-and-columns: 1.1.6 engines: node: '>=8' resolution: - integrity: sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== + integrity: sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ== /parse-ms/2.1.0: dev: true engines: @@ -7755,10 +5983,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - /path-is-inside/1.0.2: - dev: true - resolution: - integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= /path-key/2.0.1: dev: true engines: @@ -7788,24 +6012,11 @@ packages: node: '>=4' resolution: integrity: sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= - /path-type/3.0.0: - dependencies: - pify: 3.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== /path-type/4.0.0: engines: node: '>=8' resolution: integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - /picomatch/2.2.1: - engines: - node: '>=8.6' - resolution: - integrity: sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA== /picomatch/2.2.2: engines: node: '>=8.6' @@ -7817,31 +6028,17 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw= - /pify/3.0.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= /pify/4.0.1: engines: node: '>=6' resolution: integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - /pinkie-promise/2.0.1: - dependencies: - pinkie: 2.0.4 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o= - /pinkie/2.0.4: + /pify/5.0.0: dev: true engines: - node: '>=0.10.0' + node: '>=10' resolution: - integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== /pirates/4.0.1: dependencies: node-modules-regexp: 1.0.0 @@ -7882,50 +6079,41 @@ packages: node: '>=8' resolution: integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - /pkg-up/2.0.0: - dependencies: - find-up: 2.1.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-yBmscoBZpGHKscOImivjxJoATX8= /please-upgrade-node/3.2.0: dependencies: semver-compare: 1.0.0 dev: true resolution: integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== - /plur/3.1.1: + /plur/4.0.0: dependencies: - irregular-plurals: 2.0.0 + irregular-plurals: 3.2.0 dev: true engines: - node: '>=6' + node: '>=10' resolution: - integrity: sha512-t1Ax8KUvV3FFII8ltczPn2tJdjqbd1sIzu6t4JL7nQ3EyeL/lTrj5PWKb06ic5/6XYDr65rQ4uzQEGN70/6X5w== - /pnpm/4.14.0: + integrity: sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg== + /pnpm/5.4.6: dev: true engines: node: '>=10.13' hasBin: true resolution: - integrity: sha512-O6B5OD+wiO4srzegQTs0LiOrdExLvoKgG7UFL5+Lu1DhgqhW9NFP/pPg8+zKSrOQTontH3GGSWAkinxM3tCqnw== - /postcss-calc/7.0.1: + integrity: sha512-UZXIBwIlYkT+YbW8QjobVoppYT/hVphu1eu+ed60mGf+Ulz+suAR21zunWUGoETbibvetIkj8HLebsmz5tow8A== + /postcss-calc/7.0.2: dependencies: - css-unit-converter: 1.1.1 - postcss: 7.0.26 - postcss-selector-parser: 5.0.0 - postcss-value-parser: 3.3.1 + postcss: 7.0.32 + postcss-selector-parser: 6.0.2 + postcss-value-parser: 4.1.0 dev: true resolution: - integrity: sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ== + integrity: sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== /postcss-colormin/4.0.3: dependencies: - browserslist: 4.12.0 + browserslist: 4.13.0 color: 3.1.2 has: 1.0.3 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -7934,7 +6122,7 @@ packages: integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== /postcss-convert-values/4.0.1: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -7943,7 +6131,7 @@ packages: integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== /postcss-discard-comments/4.0.2: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 dev: true engines: node: '>=6.9.0' @@ -7951,7 +6139,7 @@ packages: integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== /postcss-discard-duplicates/4.0.2: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 dev: true engines: node: '>=6.9.0' @@ -7959,7 +6147,7 @@ packages: integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== /postcss-discard-empty/4.0.1: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 dev: true engines: node: '>=6.9.0' @@ -7967,7 +6155,7 @@ packages: integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== /postcss-discard-overridden/4.0.1: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 dev: true engines: node: '>=6.9.0' @@ -7985,7 +6173,7 @@ packages: /postcss-merge-longhand/4.0.11: dependencies: css-color-names: 0.0.4 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 stylehacks: 4.0.3 dev: true @@ -7995,12 +6183,12 @@ packages: integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== /postcss-merge-rules/4.0.3: dependencies: - browserslist: 4.12.0 + browserslist: 4.13.0 caniuse-api: 3.0.0 cssnano-util-same-parent: 4.0.1 - postcss: 7.0.26 - postcss-selector-parser: 3.1.1 - vendors: 1.0.3 + postcss: 7.0.32 + postcss-selector-parser: 3.1.2 + vendors: 1.0.4 dev: true engines: node: '>=6.9.0' @@ -8008,7 +6196,7 @@ packages: integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== /postcss-minify-font-values/4.0.2: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8019,7 +6207,7 @@ packages: dependencies: cssnano-util-get-arguments: 4.0.0 is-color-stop: 1.1.0 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8029,9 +6217,9 @@ packages: /postcss-minify-params/4.0.2: dependencies: alphanum-sort: 1.0.2 - browserslist: 4.12.0 + browserslist: 4.13.0 cssnano-util-get-arguments: 4.0.0 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 uniqs: 2.0.0 dev: true @@ -8043,8 +6231,8 @@ packages: dependencies: alphanum-sort: 1.0.2 has: 1.0.3 - postcss: 7.0.26 - postcss-selector-parser: 3.1.1 + postcss: 7.0.32 + postcss-selector-parser: 3.1.2 dev: true engines: node: '>=6.9.0' @@ -8058,14 +6246,14 @@ packages: integrity: sha1-thTJcgvmgW6u41+zpfqh26agXds= /postcss-modules-local-by-default/1.2.0: dependencies: - css-selector-tokenizer: 0.7.1 + css-selector-tokenizer: 0.7.3 postcss: 6.0.1 dev: true resolution: integrity: sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk= /postcss-modules-scope/1.1.0: dependencies: - css-selector-tokenizer: 0.7.1 + css-selector-tokenizer: 0.7.3 postcss: 6.0.1 dev: true resolution: @@ -8077,19 +6265,19 @@ packages: dev: true resolution: integrity: sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= - /postcss-modules/1.5.0: + /postcss-modules/2.0.0: dependencies: css-modules-loader-core: 1.1.0 generic-names: 2.0.1 lodash.camelcase: 4.3.0 - postcss: 7.0.26 + postcss: 7.0.32 string-hash: 1.1.3 dev: true resolution: - integrity: sha512-KiAihzcV0TxTTNA5OXreyIXctuHOfR50WIhqBpc8pe0Q5dcs/Uap9EVlifOI9am7zGGdGOJQ6B1MPYKo2UxgOg== + integrity: sha512-eqp+Bva+U2cwQO7dECJ8/V+X+uH1HduNeITB0CPPFAu6d/8LKQ32/j+p9rQ2YL1QytVcrNU0X+fBqgGmQIA1Rw== /postcss-normalize-charset/4.0.1: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 dev: true engines: node: '>=6.9.0' @@ -8098,7 +6286,7 @@ packages: /postcss-normalize-display-values/4.0.2: dependencies: cssnano-util-get-match: 4.0.0 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8109,7 +6297,7 @@ packages: dependencies: cssnano-util-get-arguments: 4.0.0 has: 1.0.3 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8120,7 +6308,7 @@ packages: dependencies: cssnano-util-get-arguments: 4.0.0 cssnano-util-get-match: 4.0.0 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8130,7 +6318,7 @@ packages: /postcss-normalize-string/4.0.2: dependencies: has: 1.0.3 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8140,7 +6328,7 @@ packages: /postcss-normalize-timing-functions/4.0.2: dependencies: cssnano-util-get-match: 4.0.0 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8149,8 +6337,8 @@ packages: integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== /postcss-normalize-unicode/4.0.1: dependencies: - browserslist: 4.12.0 - postcss: 7.0.26 + browserslist: 4.13.0 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8161,7 +6349,7 @@ packages: dependencies: is-absolute-url: 2.1.0 normalize-url: 3.3.0 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8170,7 +6358,7 @@ packages: integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== /postcss-normalize-whitespace/4.0.2: dependencies: - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8180,7 +6368,7 @@ packages: /postcss-ordered-values/4.1.2: dependencies: cssnano-util-get-arguments: 4.0.0 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: @@ -8189,10 +6377,10 @@ packages: integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== /postcss-reduce-initial/4.0.3: dependencies: - browserslist: 4.12.0 + browserslist: 4.13.0 caniuse-api: 3.0.0 has: 1.0.3 - postcss: 7.0.26 + postcss: 7.0.32 dev: true engines: node: '>=6.9.0' @@ -8202,37 +6390,37 @@ packages: dependencies: cssnano-util-get-match: 4.0.0 has: 1.0.3 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 dev: true engines: node: '>=6.9.0' resolution: integrity: sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== - /postcss-selector-parser/3.1.1: + /postcss-selector-parser/3.1.2: dependencies: - dot-prop: 4.2.0 + dot-prop: 5.2.0 indexes-of: 1.0.1 uniq: 1.0.1 dev: true engines: - node: '>=4' + node: '>=8' resolution: - integrity: sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU= - /postcss-selector-parser/5.0.0: + integrity: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== + /postcss-selector-parser/6.0.2: dependencies: - cssesc: 2.0.0 + cssesc: 3.0.0 indexes-of: 1.0.1 uniq: 1.0.1 dev: true engines: node: '>=4' resolution: - integrity: sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== + integrity: sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== /postcss-svgo/4.0.2: dependencies: is-svg: 3.0.0 - postcss: 7.0.26 + postcss: 7.0.32 postcss-value-parser: 3.3.1 svgo: 1.3.2 dev: true @@ -8243,7 +6431,7 @@ packages: /postcss-unique-selectors/4.0.1: dependencies: alphanum-sort: 1.0.2 - postcss: 7.0.26 + postcss: 7.0.32 uniqs: 2.0.0 dev: true engines: @@ -8254,6 +6442,10 @@ packages: dev: true resolution: integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== + /postcss-value-parser/4.1.0: + dev: true + resolution: + integrity: sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== /postcss/6.0.1: dependencies: chalk: 1.1.3 @@ -8264,7 +6456,7 @@ packages: node: '>=4.0.0' resolution: integrity: sha1-AA29H47vIXqjaLmiEsX8QLKo8/I= - /postcss/7.0.26: + /postcss/7.0.32: dependencies: chalk: 2.4.2 source-map: 0.6.1 @@ -8273,7 +6465,7 @@ packages: engines: node: '>=6.0.0' resolution: - integrity: sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA== + integrity: sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw== /prelude-ls/1.1.2: dev: true engines: @@ -8294,16 +6486,16 @@ packages: node: '>=6.0.0' resolution: integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - /prettier-plugin-package/0.3.1_prettier@1.19.1: + /prettier-plugin-package/1.0.0_prettier@2.0.5: dependencies: - prettier: 1.19.1 + prettier: 2.0.5 dev: true engines: node: '>= 8.0.0' peerDependencies: - prettier: ^1.18.2 + prettier: ^2.0.0 resolution: - integrity: sha512-aCx+dVwRwgzsqulCFZcLTS7gTMmn+TXhRIDTbn8ev50n0abIlvukHLLZ9qiJN+6tdSZtd40rlqMx5oQ/mvw1+w== + integrity: sha512-flbKuLB7ftrW2zQYJjb0mF6zY7R0jDrYatpr0BBNj04Eb+g1RLbquOQSJE1LffDZfzU03fwJQ74grqQjQjYa3Q== /prettier/1.19.1: dev: true engines: @@ -8329,24 +6521,26 @@ packages: node: '>= 6' resolution: integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== - /pretty-ms/5.1.0: + /pretty-ms/7.0.0: dependencies: parse-ms: 2.1.0 dev: true engines: - node: '>=8' - resolution: - integrity: sha512-4gaK1skD2gwscCfkswYQRmddUb2GJZtzDGRjHWadVHtK/DIKFufa12MvES6/xu1tVbUYeia5bmLcwJtZJQUqnw== - /private/0.1.8: - dev: true - engines: - node: '>= 0.6' + node: '>=10' resolution: - integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + integrity: sha512-J3aPWiC5e9ZeZFuSeBraGxSkGMOvulSWsxDByOcbD1Pr75YL3LSNIKIb52WXbCLE1sS5s4inBBbryjF4Y05Ceg== /process-nextick-args/2.0.1: dev: false resolution: integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + /process-on-spawn/1.0.0: + dependencies: + fromentries: 1.2.1 + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg== /progress/2.0.3: dev: true engines: @@ -8359,10 +6553,6 @@ packages: node: '>=0.12' resolution: integrity: sha1-LMfr6Vn8OmYZwEq029yeRS2GS70= - /pseudomap/1.0.2: - dev: true - resolution: - integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM= /pump/3.0.0: dependencies: end-of-stream: 1.4.4 @@ -8376,6 +6566,14 @@ packages: node: '>=6' resolution: integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + /pupa/2.0.1: + dependencies: + escape-goat: 2.1.1 + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-hEJH0s8PXLY/cdXh66tNEQGndDrIKNqNC5xmrysZy3i5C3oEoLna7YAOad+7u125+zH1HNXUmGEkrhb3c2VriA== /q/1.5.1: dev: true engines: @@ -8383,14 +6581,7 @@ packages: teleport: '>=0.2.0' resolution: integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= - /quick-lru/1.1.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= /quick-lru/4.0.1: - dev: false engines: node: '>=8' resolution: @@ -8418,30 +6609,11 @@ packages: node: '>=4' resolution: integrity: sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= - /read-pkg-up/3.0.0: - dependencies: - find-up: 2.1.0 - read-pkg: 3.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= - /read-pkg-up/4.0.0: - dependencies: - find-up: 3.0.0 - read-pkg: 3.0.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== /read-pkg-up/7.0.1: dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 - dev: false engines: node: '>=8' resolution: @@ -8456,21 +6628,11 @@ packages: node: '>=4' resolution: integrity: sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= - /read-pkg/3.0.0: - dependencies: - load-json-file: 4.0.0 - normalize-package-data: 2.5.0 - path-type: 3.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= /read-pkg/5.2.0: dependencies: '@types/normalize-package-data': 2.4.0 normalize-package-data: 2.5.0 - parse-json: 5.0.0 + parse-json: 5.0.1 type-fest: 0.6.0 engines: node: '>=8' @@ -8514,61 +6676,38 @@ packages: node: '>= 0.10' resolution: integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= - /redent/2.0.0: - dependencies: - indent-string: 3.2.0 - strip-indent: 2.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo= /redent/3.0.0: dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 - dev: false engines: node: '>=8' resolution: integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - /regenerate-unicode-properties/8.1.0: - dependencies: - regenerate: 1.4.0 - engines: - node: '>=4' - resolution: - integrity: sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== /regenerate-unicode-properties/8.2.0: dependencies: regenerate: 1.4.1 - dev: true engines: node: '>=4' resolution: integrity: sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== - /regenerate/1.4.0: - resolution: - integrity: sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== /regenerate/1.4.1: - dev: true resolution: integrity: sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A== - /regenerator-runtime/0.13.5: + /regenerator-runtime/0.13.7: dev: true resolution: - integrity: sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== - /regenerator-transform/0.14.4: + integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== + /regenerator-transform/0.14.5: dependencies: - '@babel/runtime': 7.9.2 - private: 0.1.8 + '@babel/runtime': 7.10.5 dev: true resolution: - integrity: sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== + integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== /regexp.prototype.flags/1.3.0: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.5 + es-abstract: 1.17.6 dev: true engines: node: '>= 0.4' @@ -8585,41 +6724,19 @@ packages: engines: node: '>=8' resolution: - integrity: sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== - /regexpu-core/1.0.0: - dependencies: - regenerate: 1.4.0 - regjsgen: 0.2.0 - regjsparser: 0.1.5 - dev: true - resolution: - integrity: sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs= - /regexpu-core/4.5.4: - dependencies: - regenerate: 1.4.0 - regenerate-unicode-properties: 8.1.0 - regjsgen: 0.5.1 - regjsparser: 0.6.2 - unicode-match-property-ecmascript: 1.0.4 - unicode-match-property-value-ecmascript: 1.1.0 - dev: false - engines: - node: '>=4' - resolution: - integrity: sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== - /regexpu-core/4.6.0: + integrity: sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== + /regexpu-core/4.5.4: dependencies: - regenerate: 1.4.0 - regenerate-unicode-properties: 8.1.0 - regjsgen: 0.5.1 - regjsparser: 0.6.2 + regenerate: 1.4.1 + regenerate-unicode-properties: 8.2.0 + regjsgen: 0.5.2 + regjsparser: 0.6.4 unicode-match-property-ecmascript: 1.0.4 - unicode-match-property-value-ecmascript: 1.1.0 - dev: true + unicode-match-property-value-ecmascript: 1.2.0 engines: node: '>=4' resolution: - integrity: sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg== + integrity: sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== /regexpu-core/4.7.0: dependencies: regenerate: 1.4.1 @@ -8633,14 +6750,14 @@ packages: node: '>=4' resolution: integrity: sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== - /registry-auth-token/4.1.1: + /registry-auth-token/4.2.0: dependencies: rc: 1.2.8 dev: true engines: node: '>=6.0.0' resolution: - integrity: sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA== + integrity: sha512-P+lWzPrsgfN+UEpDS3U8AQKg/UjZX6mQSJueZj3EK+vNESoqBSpBUD3gmu4sF9lOsjXWjF11dQKUqemf3veq1w== /registry-url/5.1.0: dependencies: rc: 1.2.8 @@ -8649,34 +6766,12 @@ packages: node: '>=8' resolution: integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== - /regjsgen/0.2.0: - dev: true - resolution: - integrity: sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc= - /regjsgen/0.5.1: - resolution: - integrity: sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== /regjsgen/0.5.2: - dev: true resolution: integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== - /regjsparser/0.1.5: - dependencies: - jsesc: 0.5.0 - dev: true - hasBin: true - resolution: - integrity: sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw= - /regjsparser/0.6.2: - dependencies: - jsesc: 0.5.0 - hasBin: true - resolution: - integrity: sha512-E9ghzUtoLwDekPT0DYCp+c4h+bvuUpe6rRHCTYn6eGoqj1LgKXxT6I0Il4WbjhQkOghzi/V+y03bPKvbllL93Q== /regjsparser/0.6.4: dependencies: jsesc: 0.5.0 - dev: true hasBin: true resolution: integrity: sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== @@ -8698,20 +6793,10 @@ packages: dev: true resolution: integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - /require-precompiled/0.1.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-WhtS63Dr7UPrmC6XTIWrWVceVvo= /require-relative/0.8.7: dev: true resolution: integrity: sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4= - /reserved-words/0.1.2: - dev: true - resolution: - integrity: sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE= /resolve-cwd/3.0.0: dependencies: resolve-from: 5.0.0 @@ -8750,6 +6835,7 @@ packages: /resolve/1.15.0: dependencies: path-parse: 1.0.6 + dev: true resolution: integrity: sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw== /resolve/1.17.0: @@ -8763,15 +6849,12 @@ packages: dev: true resolution: integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= - /restore-cursor/2.0.0: + /responselike/2.0.0: dependencies: - onetime: 2.0.1 - signal-exit: 3.0.3 + lowercase-keys: 2.0.0 dev: true - engines: - node: '>=4' resolution: - integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368= + integrity: sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw== /restore-cursor/3.1.0: dependencies: onetime: 5.1.0 @@ -8802,79 +6885,53 @@ packages: hasBin: true resolution: integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== - /rimraf/2.7.1: - dependencies: - glob: 7.1.6 - dev: true - hasBin: true - resolution: - integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - /rimraf/3.0.0: + /rimraf/3.0.2: dependencies: glob: 7.1.6 dev: true hasBin: true resolution: - integrity: sha512-NDGVxTsjqfunkds7CqsOiEnxln4Bo7Nddl3XhS4pXg5OzwkLqJ971ZVAAnB+DDLnF76N+VnDEiBHaVV8I06SUg== - /rollup-plugin-babel/4.3.3_@babel+core@7.9.0+rollup@2.2.0: + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + /rollup-plugin-babel/4.4.0_@babel+core@7.10.5+rollup@2.23.0: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-module-imports': 7.8.3 - rollup: 2.2.0 - rollup-pluginutils: 2.8.2 - dev: true - peerDependencies: - '@babel/core': 7 || ^7.0.0-rc.2 - rollup: '>=0.60.0 <2' - resolution: - integrity: sha512-tKzWOCmIJD/6aKNz0H1GMM+lW1q9KyFubbWzGiOG540zxPPifnEAHTZwjo0g991Y+DyOZcLqBgqOdqazYE5fkw== - /rollup-plugin-babel/4.4.0_@babel+core@7.9.0+rollup@2.2.0: - dependencies: - '@babel/core': 7.9.0 - '@babel/helper-module-imports': 7.8.3 - rollup: 2.2.0 + '@babel/core': 7.10.5 + '@babel/helper-module-imports': 7.10.4 + rollup: 2.23.0 rollup-pluginutils: 2.8.2 + deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel. dev: true peerDependencies: '@babel/core': 7 || ^7.0.0-rc.2 rollup: '>=0.60.0 <3' resolution: integrity: sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw== - /rollup-plugin-postcss/2.0.3: + /rollup-plugin-postcss/3.1.3: dependencies: - chalk: 2.4.2 + chalk: 4.1.0 concat-with-sourcemaps: 1.1.0 cssnano: 4.1.10 - import-cwd: 2.1.0 - p-queue: 2.4.2 - pify: 3.0.0 - postcss: 7.0.26 + import-cwd: 3.0.0 + p-queue: 6.6.0 + pify: 5.0.0 + postcss: 7.0.32 postcss-load-config: 2.1.0 - postcss-modules: 1.5.0 + postcss-modules: 2.0.0 promise.series: 0.2.0 - reserved-words: 0.1.2 - resolve: 1.15.0 + resolve: 1.17.0 rollup-pluginutils: 2.8.2 + safe-identifier: 0.4.1 style-inject: 0.3.0 dev: true engines: - node: '>=6' + node: '>=10' resolution: - integrity: sha512-d12oKl6za/GGXmlytzVPzzTdPCKgti/Kq2kNhtfm5vv9hkNbyrTvizMBm6zZ5rRWX/sIWl3znjIJ8xy6Hofoeg== + integrity: sha512-5Zm70/HkuYaQuhFbiGSO3U0bVj0magAPo09sd4sRE7I434Iwe4p7xF43pYfW0BcDvY0ZxzD3Fh2vRJzsm4OEiQ== /rollup-pluginutils/2.8.2: dependencies: estree-walker: 0.6.1 dev: true resolution: integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== - /rollup/2.12.0: - engines: - node: '>=10.0.0' - hasBin: true - optionalDependencies: - fsevents: 2.1.3 - resolution: - integrity: sha512-vKwc/xFkZGM9DRai3Eztpr/4g0yYDgNKVq8tLXhq/aSLbR+/EVL6rTjEW9bgWgeYEIKoN66/5w2Bjv1gzyHR/w== /rollup/2.16.1: engines: node: '>=10.0.0' @@ -8899,21 +6956,20 @@ packages: fsevents: 2.1.3 resolution: integrity: sha512-TNuj5gQTwMu3hcM65HcBTx62N04/7v+4LRH6HOWe497hG0ic5RRfe+Vr88km8XfeApd/AIIQtVfRVNHk92Knmg== - /run-async/2.4.0: - dependencies: - is-promise: 2.2.2 - dev: true + /rollup/2.23.0: engines: - node: '>=0.12.0' + node: '>=10.0.0' + hasBin: true + optionalDependencies: + fsevents: 2.1.3 resolution: - integrity: sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg== - /run-node/1.0.0: + integrity: sha512-vLNmZFUGVwrnqNAJ/BvuLk1MtWzu4IuoqsH9UWK5AIdO3rt8/CSiJNvPvCIvfzrbNsqKbNzPAG1V2O4eTe2XZg== + /run-async/2.4.1: dev: true engines: - node: '>=4' - hasBin: true + node: '>=0.12.0' resolution: - integrity: sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A== + integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== /run-parallel/1.1.9: resolution: integrity: sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q== @@ -8921,25 +6977,25 @@ packages: dev: false resolution: integrity: sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= - /rxjs/6.5.5: + /rxjs/6.6.0: dependencies: - tslib: 1.11.1 + tslib: 1.13.0 dev: true engines: npm: '>=2.0.0' resolution: - integrity: sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== + integrity: sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg== /safe-buffer/5.1.2: resolution: integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - /safe-buffer/5.2.0: - dev: true - resolution: - integrity: sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== /safe-buffer/5.2.1: dev: false resolution: integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + /safe-identifier/0.4.1: + dev: true + resolution: + integrity: sha512-73tOz5TXsq3apuCc3vC8c9QRhhdNZGiBhHmPPjqpH4TO5oCDqk8UIsDcSs/RG6dYcFAkOOva0pqHS3u7hh7XXA== /safer-buffer/2.1.2: resolution: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -8951,14 +7007,20 @@ packages: dev: true resolution: integrity: sha1-De4hahyUGrN+nvsXiPavxf9VN/w= - /semver-diff/2.1.0: + /semver-diff/3.1.1: dependencies: - semver: 5.7.1 + semver: 6.3.0 dev: true engines: - node: '>=0.10.0' + node: '>=8' + resolution: + integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== + /semver-regex/2.0.0: + dev: true + engines: + node: '>=6' resolution: - integrity: sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= + integrity: sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== /semver/5.7.1: hasBin: true resolution: @@ -9064,12 +7126,6 @@ packages: node: '>=8' resolution: integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - /slice-ansi/0.0.4: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU= /slice-ansi/2.1.0: dependencies: ansi-styles: 3.2.1 @@ -9090,6 +7146,16 @@ packages: node: '>=8' resolution: integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + /slice-ansi/4.0.0: + dependencies: + ansi-styles: 4.2.1 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== /sort-keys/2.0.0: dependencies: is-plain-obj: 1.1.0 @@ -9133,32 +7199,34 @@ packages: /sourcemap-codec/1.4.8: resolution: integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== - /spawn-wrap/1.4.3: + /spawn-wrap/2.0.0: dependencies: - foreground-child: 1.5.6 - mkdirp: 0.5.5 - os-homedir: 1.0.2 - rimraf: 2.7.1 + foreground-child: 2.0.0 + is-windows: 1.0.2 + make-dir: 3.1.0 + rimraf: 3.0.2 signal-exit: 3.0.3 - which: 1.3.1 + which: 2.0.2 dev: true + engines: + node: '>=8' resolution: - integrity: sha512-IgB8md0QW/+tWqcavuFgKYR/qIRvJkRLPJDFaoXtLLUaVcCDK0+HeFTkmQHj3eprcYhc+gOl0aEA1w7qZlYezw== - /spdx-correct/3.1.0: + integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg== + /spdx-correct/3.1.1: dependencies: - spdx-expression-parse: 3.0.0 + spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.5 resolution: - integrity: sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== /spdx-exceptions/2.3.0: resolution: integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - /spdx-expression-parse/3.0.0: + /spdx-expression-parse/3.0.1: dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.5 resolution: - integrity: sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== /spdx-license-ids/3.0.5: resolution: integrity: sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== @@ -9175,12 +7243,14 @@ packages: dev: true resolution: integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== - /stack-utils/1.0.2: + /stack-utils/2.0.2: + dependencies: + escape-string-regexp: 2.0.0 dev: true engines: - node: '>=0.10.0' + node: '>=10' resolution: - integrity: sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== + integrity: sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg== /string-argv/0.3.1: dev: true engines: @@ -9195,25 +7265,6 @@ packages: dev: true resolution: integrity: sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= - /string-width/1.0.2: - dependencies: - code-point-at: 1.1.0 - is-fullwidth-code-point: 1.0.0 - strip-ansi: 3.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= - /string-width/2.1.1: - dependencies: - is-fullwidth-code-point: 2.0.0 - strip-ansi: 4.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== /string-width/3.1.0: dependencies: emoji-regex: 7.0.3 @@ -9237,52 +7288,14 @@ packages: /string.prototype.trimend/1.0.1: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.5 + es-abstract: 1.17.6 dev: true resolution: integrity: sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== - /string.prototype.trimleft/2.1.1: - dependencies: - define-properties: 1.1.3 - function-bind: 1.1.1 - dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag== - /string.prototype.trimleft/2.1.2: - dependencies: - define-properties: 1.1.3 - es-abstract: 1.17.5 - string.prototype.trimstart: 1.0.1 - dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== - /string.prototype.trimright/2.1.1: - dependencies: - define-properties: 1.1.3 - function-bind: 1.1.1 - dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g== - /string.prototype.trimright/2.1.2: - dependencies: - define-properties: 1.1.3 - es-abstract: 1.17.5 - string.prototype.trimend: 1.0.1 - dev: true - engines: - node: '>= 0.4' - resolution: - integrity: sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== /string.prototype.trimstart/1.0.1: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.5 + es-abstract: 1.17.6 dev: true resolution: integrity: sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== @@ -9354,28 +7367,21 @@ packages: node: '>=4' resolution: integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= - /strip-eof/1.0.0: + /strip-bom/4.0.0: dev: true engines: - node: '>=0.10.0' + node: '>=8' resolution: - integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== /strip-final-newline/2.0.0: dev: true engines: node: '>=6' resolution: integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - /strip-indent/2.0.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= /strip-indent/3.0.0: dependencies: - min-indent: 1.0.0 - dev: false + min-indent: 1.0.1 engines: node: '>=8' resolution: @@ -9386,21 +7392,21 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo= - /strip-json-comments/3.1.0: + /strip-json-comments/3.1.1: dev: true engines: node: '>=8' resolution: - integrity: sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== /style-inject/0.3.0: dev: true resolution: integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw== /stylehacks/4.0.3: dependencies: - browserslist: 4.12.0 - postcss: 7.0.26 - postcss-selector-parser: 3.1.1 + browserslist: 4.13.0 + postcss: 7.0.32 + postcss-selector-parser: 3.1.2 dev: true engines: node: '>=6.9.0' @@ -9423,7 +7429,7 @@ packages: dependencies: arrify: 1.0.1 indent-string: 3.2.0 - js-yaml: 3.13.1 + js-yaml: 3.14.0 serialize-error: 2.1.0 strip-ansi: 4.0.0 dev: true @@ -9475,9 +7481,9 @@ packages: css-select: 2.1.0 css-select-base-adapter: 0.1.1 css-tree: 1.0.0-alpha.37 - csso: 4.0.2 - js-yaml: 3.13.1 - mkdirp: 0.5.1 + csso: 4.0.3 + js-yaml: 3.14.0 + mkdirp: 0.5.5 object.values: 1.1.1 sax: 1.2.4 stable: 0.1.8 @@ -9489,16 +7495,10 @@ packages: hasBin: true resolution: integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== - /symbol-observable/1.2.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== /table/5.4.6: dependencies: - ajv: 6.12.2 - lodash: 4.17.15 + ajv: 6.12.3 + lodash: 4.17.19 slice-ansi: 2.1.0 string-width: 3.1.0 dev: true @@ -9506,25 +7506,28 @@ packages: node: '>=6.0.0' resolution: integrity: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== - /term-size/1.2.0: - dependencies: - execa: 0.7.0 + /temp-dir/2.0.0: dev: true engines: - node: '>=4' + node: '>=8' + resolution: + integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== + /term-size/2.2.0: + dev: true + engines: + node: '>=8' resolution: - integrity: sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= - /test-exclude/5.2.3: + integrity: sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw== + /test-exclude/6.0.0: dependencies: + '@istanbuljs/schema': 0.1.2 glob: 7.1.6 minimatch: 3.0.4 - read-pkg-up: 4.0.0 - require-main-filename: 2.0.0 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g== + integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== /text-extensions/1.9.0: dev: false engines: @@ -9559,12 +7562,13 @@ packages: dev: false resolution: integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - /through2/3.0.1: + /through2/3.0.2: dependencies: + inherits: 2.0.4 readable-stream: 3.6.0 dev: false resolution: - integrity: sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww== + integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ== /time-zone/1.0.0: dev: true engines: @@ -9594,6 +7598,12 @@ packages: node: '>=6' resolution: integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== + /to-readable-stream/2.1.0: + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-o3Qa6DGg1CEXshSdvWNX2sN4QHqg03SPq7U6jPXRahlQdl5dK8oXjkU/2/sGrnOZKeGV1zLSO8qPwyKklPPE7w== /to-regex-range/5.0.1: dependencies: is-number: 7.0.0 @@ -9607,14 +7617,7 @@ packages: node: '>=0.4.0' resolution: integrity: sha1-QtiN0RZhi88A1hBt1URvNCeQL/E= - /trim-newlines/2.0.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA= /trim-newlines/3.0.0: - dev: false engines: node: '>=8' resolution: @@ -9624,23 +7627,17 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-n5up2e+odkw4dpi8v+sshI8RrbM= - /trim-right/1.0.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= /ts-interface-checker/0.1.10: dev: false resolution: integrity: sha512-UJYuKET7ez7ry0CnvfY6fPIUIZDw+UI3qvTUQeS2MyI4TgEeWAUBqy185LeaHcdJ9zG2dgFpPJU/AecXU0Afug== - /ts-node/8.9.1_typescript@3.8.3: + /ts-node/8.10.2_typescript@3.9.7: dependencies: arg: 4.1.3 diff: 4.0.2 make-error: 1.3.6 source-map-support: 0.5.19 - typescript: 3.8.3 + typescript: 3.9.7 yn: 3.1.1 dev: true engines: @@ -9649,7 +7646,7 @@ packages: peerDependencies: typescript: '>=2.7' resolution: - integrity: sha512-yrq6ODsxEFTLz0R3BX2myf0WBCSQh9A+py8PBo1dCzWIOcvisbyH6akNKqDHMgXePF2kir5mm5JXJTH3OUJYOQ== + integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA== /tsconfig-paths/3.9.0: dependencies: '@types/json5': 0.0.29 @@ -9659,18 +7656,18 @@ packages: dev: true resolution: integrity: sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== - /tslib/1.10.0: + /tslib/1.13.0: dev: true resolution: - integrity: sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== - /tslib/1.11.1: + integrity: sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== + /tslib/2.0.0: dev: true resolution: - integrity: sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== - /tsutils/3.17.1_typescript@3.8.3: + integrity: sha512-lTqkx847PI7xEDYJntxZH89L2/aXInsyF2luSafe/+0fHOMjlBNXdH6th7f70qxLDhul7KZK0zC8V5ZIyHl0/g== + /tsutils/3.17.1_typescript@3.9.7: dependencies: - tslib: 1.11.1 - typescript: 3.8.3 + tslib: 1.13.0 + typescript: 3.9.7 dev: true engines: node: '>= 6' @@ -9692,6 +7689,12 @@ packages: node: '>=4' resolution: integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + /type-fest/0.10.0: + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-EUV9jo4sffrwlg8s0zDhP0T2WD3pru5Xi0+HTE3zTUmBaZNhfkite9PdSJwdXLwPVW0jnAHT56pZHIOYckPEiw== /type-fest/0.11.0: dev: true engines: @@ -9699,7 +7702,6 @@ packages: resolution: integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== /type-fest/0.13.1: - dev: false engines: node: '>=10' resolution: @@ -9747,13 +7749,6 @@ packages: hasBin: true resolution: integrity: sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw== - /typescript/3.8.3: - dev: true - engines: - node: '>=4.2.0' - hasBin: true - resolution: - integrity: sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w== /typescript/3.9.7: dev: true engines: @@ -9761,10 +7756,6 @@ packages: hasBin: true resolution: integrity: sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== - /uid2/0.0.3: - dev: true - resolution: - integrity: sha1-SDEm4Rd03y9xuLY53NeZw3YWK4I= /unicode-canonical-property-names-ecmascript/1.0.4: engines: node: '>=4' @@ -9778,13 +7769,7 @@ packages: node: '>=4' resolution: integrity: sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== - /unicode-match-property-value-ecmascript/1.1.0: - engines: - node: '>=4' - resolution: - integrity: sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== /unicode-match-property-value-ecmascript/1.2.0: - dev: true engines: node: '>=4' resolution: @@ -9802,47 +7787,38 @@ packages: dev: true resolution: integrity: sha1-/+3ks2slKQaW5uFl1KWe25mOawI= - /unique-string/1.0.0: - dependencies: - crypto-random-string: 1.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= - /unique-temp-dir/1.0.0: + /unique-string/2.0.0: dependencies: - mkdirp: 0.5.5 - os-tmpdir: 1.0.2 - uid2: 0.0.3 + crypto-random-string: 2.0.0 dev: true engines: - node: '>=0.10.0' + node: '>=8' resolution: - integrity: sha1-bc6VsmgcoAPuv7MEpBX5y6vMU4U= + integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== /unquote/1.1.1: dev: true resolution: integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= - /update-notifier/3.0.1: + /update-notifier/4.1.0: dependencies: - boxen: 3.2.0 - chalk: 2.4.2 - configstore: 4.0.0 + boxen: 4.2.0 + chalk: 3.0.0 + configstore: 5.0.1 has-yarn: 2.1.0 import-lazy: 2.1.0 is-ci: 2.0.0 - is-installed-globally: 0.1.0 - is-npm: 3.0.0 + is-installed-globally: 0.3.2 + is-npm: 4.0.0 is-yarn-global: 0.3.0 latest-version: 5.1.0 - semver-diff: 2.1.0 - xdg-basedir: 3.0.0 + pupa: 2.0.1 + semver-diff: 3.1.1 + xdg-basedir: 4.0.0 dev: true engines: node: '>=8' resolution: - integrity: sha512-grrmrB6Zb8DUiyDIaeRTBCkgISYUgETNe7NglEbVsrLWXeESnlCSP50WfRSj/GmzMPl6Uchj24S/p80nP/ZQrQ== + integrity: sha512-w3doE1qtI0/ZmgeoDoARmI5fjDoT93IfKgEGqm26dGUOh8oNpaSTsGNdYRN/SjOuo10jcJGwkEL3mroKzktkew== /uri-js/4.2.2: dependencies: punycode: 2.1.1 @@ -9864,7 +7840,7 @@ packages: /util.promisify/1.0.1: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.2 + es-abstract: 1.17.6 has-symbols: 1.0.1 object.getownpropertydescriptors: 2.1.0 dev: true @@ -9875,20 +7851,20 @@ packages: hasBin: true resolution: integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== - /v8-compile-cache/2.1.0: + /v8-compile-cache/2.1.1: dev: true resolution: - integrity: sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== + integrity: sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== /validate-npm-package-license/3.0.4: dependencies: - spdx-correct: 3.1.0 - spdx-expression-parse: 3.0.0 + spdx-correct: 3.1.1 + spdx-expression-parse: 3.0.1 resolution: integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - /vendors/1.0.3: + /vendors/1.0.4: dev: true resolution: - integrity: sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw== + integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== /wcwidth/1.0.1: dependencies: defaults: 1.0.3 @@ -9905,6 +7881,10 @@ packages: dev: true resolution: integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + /which-pm-runs/1.0.0: + dev: true + resolution: + integrity: sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= /which/1.3.1: dependencies: isexe: 2.0.0 @@ -9920,47 +7900,39 @@ packages: hasBin: true resolution: integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - /widest-line/2.0.1: + /widest-line/3.1.0: dependencies: - string-width: 2.1.1 + string-width: 4.2.0 dev: true engines: - node: '>=4' + node: '>=8' resolution: - integrity: sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== + integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== /word-wrap/1.2.3: dev: true engines: node: '>=0.10.0' resolution: integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - /wrap-ansi/3.0.1: - dependencies: - string-width: 2.1.1 - strip-ansi: 4.0.0 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo= - /wrap-ansi/5.1.0: + /wrap-ansi/6.2.0: dependencies: - ansi-styles: 3.2.1 - string-width: 3.1.0 - strip-ansi: 5.2.0 + ansi-styles: 4.2.1 + string-width: 4.2.0 + strip-ansi: 6.0.0 dev: true engines: - node: '>=6' + node: '>=8' resolution: - integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== /wrappy/1.0.2: resolution: integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= /write-file-atomic/2.4.3: dependencies: - graceful-fs: 4.2.3 + graceful-fs: 4.2.4 imurmurhash: 0.1.4 signal-exit: 3.0.3 + dev: false resolution: integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== /write-file-atomic/3.0.3: @@ -9975,7 +7947,7 @@ packages: /write-json-file/3.2.0: dependencies: detect-indent: 5.0.0 - graceful-fs: 4.2.3 + graceful-fs: 4.2.4 make-dir: 2.1.0 pify: 4.0.1 sort-keys: 2.0.0 @@ -10003,12 +7975,12 @@ packages: node: '>=4' resolution: integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== - /xdg-basedir/3.0.0: + /xdg-basedir/4.0.0: dev: true engines: - node: '>=4' + node: '>=8' resolution: - integrity: sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= + integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== /xtend/4.0.2: engines: node: '>=0.4' @@ -10018,55 +7990,38 @@ packages: dev: true resolution: integrity: sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== - /yallist/2.1.2: - dev: true - resolution: - integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= - /yaml/1.9.2: - dependencies: - '@babel/runtime': 7.9.2 + /yaml/1.10.0: dev: true engines: node: '>= 6' resolution: - integrity: sha512-HPT7cGGI0DuRcsO51qC1j9O16Dh1mZ2bnXwsi0jrSpsLz0WxOLSLXfkABVl6bZO629py3CU+OMJtpNHDLB97kg== - /yargs-parser/10.1.0: - dependencies: - camelcase: 4.1.0 - dev: true - resolution: - integrity: sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== - /yargs-parser/13.1.2: - dependencies: - camelcase: 5.3.1 - decamelize: 1.2.0 - dev: true - resolution: - integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== + integrity: sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== /yargs-parser/18.1.3: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - dev: false engines: node: '>=6' resolution: integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== - /yargs/13.3.2: + /yargs/15.4.1: dependencies: - cliui: 5.0.0 - find-up: 3.0.0 + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 get-caller-file: 2.0.5 require-directory: 2.1.1 require-main-filename: 2.0.0 set-blocking: 2.0.0 - string-width: 3.1.0 + string-width: 4.2.0 which-module: 2.0.0 y18n: 4.0.0 - yargs-parser: 13.1.2 + yargs-parser: 18.1.3 dev: true + engines: + node: '>=8' resolution: - integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== + integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== /yn/3.1.1: dev: true engines: diff --git a/util/test.js b/util/test.js index 283a68bc0..ed79ca3fc 100644 --- a/util/test.js +++ b/util/test.js @@ -3,7 +3,7 @@ * @param {import('rollup').OutputOptions} [outputOptions] */ const getCode = async (bundle, outputOptions, allFiles = false) => { - const { output } = await bundle.generate(outputOptions || { format: 'cjs' }); + const { output } = await bundle.generate(outputOptions || { format: 'cjs', exports: 'auto' }); if (allFiles) { return output.map(({ code, fileName, source, map }) => { @@ -36,7 +36,7 @@ const getResolvedModules = async (bundle) => { * @param {object} args */ const testBundle = async (t, bundle, args = {}) => { - const { output } = await bundle.generate({ format: 'cjs' }); + const { output } = await bundle.generate({ format: 'cjs', exports: 'auto' }); const [{ code }] = output; const module = { exports: {} }; // as of 1/2/2020 Github Actions + Windows has changed in a way that we must now escape backslashes