From ac074cbb635be8f21b226bdedaf536e0ce933808 Mon Sep 17 00:00:00 2001 From: Joel Chen Date: Sun, 24 Jan 2021 09:54:09 -0800 Subject: [PATCH] [major] remove old css module hooks --- packages/xarc-app-dev/package.json | 1 + packages/xarc-app/package.json | 14 +- packages/xarc-app/src/index.ts | 112 +- samples/hapi-app-css-modules/package.json | 3 +- .../src/client/components/home.jsx | 15 +- .../src/client/components/styles.css | 2 + samples/poc-subapp/fyn-lock.yaml | 2769 ++++++++--------- samples/poc-subapp/package.json | 3 +- 8 files changed, 1341 insertions(+), 1578 deletions(-) diff --git a/packages/xarc-app-dev/package.json b/packages/xarc-app-dev/package.json index 1676d30f6..dc43f7403 100644 --- a/packages/xarc-app-dev/package.json +++ b/packages/xarc-app-dev/package.json @@ -58,6 +58,7 @@ "babel-plugin-dynamic-import-node": "^2.2.0", "babel-plugin-lodash": "^3.3.4", "babel-plugin-minify-dead-code-elimination": "^0.5.0", + "babel-plugin-react-css-modules": "^5.2.6", "babel-plugin-transform-node-env-inline": "^0.4.3", "babel-plugin-transform-react-remove-prop-types": "^0.4.20", "boxen": "^4.2.0", diff --git a/packages/xarc-app/package.json b/packages/xarc-app/package.json index b62fd50d4..741467913 100644 --- a/packages/xarc-app/package.json +++ b/packages/xarc-app/package.json @@ -37,9 +37,6 @@ ], "dependencies": { "@babel/runtime": "^7.12.5", - "babel-plugin-react-css-modules": "^5.2.6", - "css-modules-require-hook": "^4.0.2", - "ignore-styles": "^5.0.1", "isomorphic-loader": "^4.4.0", "optional-require": "^1.0.0", "subapp-util": "^1.1.2", @@ -108,12 +105,6 @@ "lines": 0, "cache": false }, - "fyn": { - "dependencies": { - "subapp-util": "../subapp-util" - }, - "devDependencies": {} - }, "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" @@ -139,5 +130,10 @@ "@xarc/module-dev/config/test/setup.js" ], "recursive": true + }, + "fyn": { + "dependencies": { + "subapp-util": "../subapp-util" + } } } diff --git a/packages/xarc-app/src/index.ts b/packages/xarc-app/src/index.ts index eb5c90b2d..e6b576045 100644 --- a/packages/xarc-app/src/index.ts +++ b/packages/xarc-app/src/index.ts @@ -11,48 +11,25 @@ const Path = require("path"); const constants = require("../lib/constants"); const logger = require("../lib/logger"); const devArchetype = optionalRequire("@xarc/app-dev/config/archetype"); +const devRequire = optionalRequire("@xarc/app-dev/require"); +const optionalDevRequire = require("optional-require")(devRequire); let AppMode; +function getXarcDev() { + return devArchetype ? devArchetype() : {}; +} + function getAppMode() { if (!AppMode) { - AppMode = devArchetype ? devArchetype().AppMode : makeAppMode(constants.PROD_DIR); + AppMode = getXarcDev().AppMode || makeAppMode(constants.PROD_DIR); } return AppMode; } function getXarcCwd() { - const archetype = devArchetype && devArchetype(); - return (archetype && archetype.cwd) || process.env.XARC_CWD || process.cwd(); -} - -/** - * Load CSS module run time hook - * - * @param options - options for the hook - */ -export function cssModuleHook( - options: { - /** - * template for scope name to generate, default: "[hash:base64]" - */ - generateScopedName?: string; - /** - * rootDir - src or lib in production - */ - rootDir?: string; - /** - * any other options for css-modules-require-hook - */ - [key: string]: any; - } = {} -) { - const defaultRootDirPath = process.env.NODE_ENV === "production" ? "lib" : "src"; - options.generateScopedName = options.generateScopedName || "[hash:base64]"; - options.rootDir = options.rootDir || Path.resolve(getXarcCwd(), defaultRootDirPath); - - require("css-modules-require-hook")(options); + return getXarcDev().cwd || process.env.XARC_CWD || process.cwd(); } /** @@ -80,7 +57,14 @@ export type XarcCdnAssetsMappingOptions = { prodOnly?: boolean; }; +/** + * Setup assets mapping to CDN URLs + * + * @param options - asset mapping options + * @returns nothing + */ export const setupIsomorphicCdnAssetsMapping = (options?: XarcCdnAssetsMappingOptions) => { + // only setup CDN mapping for production mode if (!options || (options.prodOnly && process.env.NODE_ENV !== "production")) { return; } @@ -154,18 +138,6 @@ type XarcSupportOptions = { * - Object: options to be passed to @babel/register */ babelRegister?: any; - /** - * - boolean: if true, then load and setup CSS module runtime for node.js - * - object: options to be passed to cssModuleHook - */ - cssModuleHook?: boolean | object; - /** - * if no CSS module hook, then a default ignore hook is load to avoid errors - * when trying to load CSS modules. - * - * Set this to false to avoid loading the ignore hook. - */ - ignoreStyles?: boolean; /** * Set to false to avoid loading node.js require hook to handle isomorphic assets. */ @@ -207,12 +179,11 @@ export function load( options: XarcSupportOptions = {} ): Promise { if (options.babelRegister) { - const babelRegister = optionalRequire("@babel/register"); + const babelRegister = optionalDevRequire("@babel/register"); if (!babelRegister) { - console.log( - "To use @babel/register mode, you need to install the @babel/register and support modules." + console.error( + "To use @babel/register mode, you need to install @xarc/app-dev in devDependencies." ); - console.log("Please see documentation for more details."); return process.exit(1); } const regOptions = Object.assign( @@ -229,53 +200,6 @@ export function load( babelRegister(regOptions); } - /** - * Any app that needs CSS module support has to set this flag when calling - * support. We can't default this to enabled because it would break apps - * that doesn't use CSS modules. - * - * css-modules-require-hook: handle css-modules on node.js server. - * similar to Babel's babel/register it compiles CSS modules in runtime. - * - * generateScopedName - Short alias for the postcss-modules-scope plugin's option. - * Helps you to specify the custom way to build generic names for the class selectors. - * You may also use a string pattern similar to the webpack's css-loader. - * - * https://github.com/css-modules/css-modules-require-hook#generatescopedname-function - * https://github.com/webpack/css-loader#local-scope - * https://github.com/css-modules/postcss-modules-scope - */ - if (options.cssModuleHook === true || Object.keys(options.cssModuleHook || {}).length > 0) { - const opts = Object.assign( - { - generateScopedName: `${ - process.env.NODE_ENV === "production" ? "" : "[name]__[local]___" - }[hash:base64:5]`, - extensions: [".scss", ".styl", ".less", ".css"], - preprocessCss: function(css, filename) { - if (filename.endsWith(".styl")) { - return require("stylus")(css) - .set("filename", filename) - .render(); - } else if (filename.endsWith(".scss")) { - return require("node-sass").renderSync({ - css, - file: filename - }).css; - } else { - return css; - } - }, - processorOpts: { parser: require("postcss-less").parse } - }, - options.cssModuleHook || {} - ); - - cssModuleHook(opts); - } else if (options.ignoreStyles !== false) { - optionalRequire("ignore-styles"); - } - let promise; if (options.isomorphicExtendRequire !== false) { diff --git a/samples/hapi-app-css-modules/package.json b/samples/hapi-app-css-modules/package.json index 34aa401ce..5f285018c 100644 --- a/samples/hapi-app-css-modules/package.json +++ b/samples/hapi-app-css-modules/package.json @@ -39,6 +39,7 @@ "prod": "echo 'Starting standalone server in PROD mode'; NODE_ENV=production node ./lib/server/" }, "dependencies": { + "@babel/runtime": "^7.12.5", "@hapi/good": "^8.2.4", "@hapi/good-console": "^8.1.2", "@hapi/inert": "^5.1.2", @@ -83,4 +84,4 @@ } }, "optionalDependencies": {} -} +} \ No newline at end of file diff --git a/samples/hapi-app-css-modules/src/client/components/home.jsx b/samples/hapi-app-css-modules/src/client/components/home.jsx index 8299861d2..b6e8af13c 100644 --- a/samples/hapi-app-css-modules/src/client/components/home.jsx +++ b/samples/hapi-app-css-modules/src/client/components/home.jsx @@ -10,7 +10,20 @@ class Home extends React.Component { } render() { - return
Hello World!
; + return ( +
+

+ If CSS modules is working, then the following text should be large, centered, with a thick + blue border. +

+
Hello World!
+

+ If the styleName syntax is working, then the following text should have the same effect. +

+
CSS Module using styleName!
+

Make sure to also verify SSR result by disable JavaScript.

+
+ ); } } diff --git a/samples/hapi-app-css-modules/src/client/components/styles.css b/samples/hapi-app-css-modules/src/client/components/styles.css index 7f34cd3b1..b929f13b0 100644 --- a/samples/hapi-app-css-modules/src/client/components/styles.css +++ b/samples/hapi-app-css-modules/src/client/components/styles.css @@ -1,3 +1,5 @@ .wrapper { font-size: 5em; + border: solid 5px blue; + text-align: center; } diff --git a/samples/poc-subapp/fyn-lock.yaml b/samples/poc-subapp/fyn-lock.yaml index d712ff236..54e9be93c 100644 --- a/samples/poc-subapp/fyn-lock.yaml +++ b/samples/poc-subapp/fyn-lock.yaml @@ -1,5 +1,6 @@ $pkg: dep: + '@babel/runtime': ^7.12.5 '@xarc/app': ../../packages/xarc-app '@xarc/fastify-server': ^2.0.0 electrode-confippet: ^1.5.0 @@ -18,12 +19,12 @@ $pkg: '@xarc/app-dev': ../../packages/xarc-app-dev '@xarc/opt-eslint': ../../packages/xarc-opt-eslint '@babel/cli': - _latest: 7.10.5 + _latest: 7.12.10 _: - ^7.1.5: 7.10.5 - 7.10.5: - $: sha512-j9H9qSf3kLdM0Ao3aGPbGZ73mEA9XazuupcS6cDGWuiyAcANoguhP0r2Lx32H5JGw4sSSoHG3x/mxVnHgvOoyA== - _: 'https://registry.npmjs.org/@babel/cli/-/cli-7.10.5.tgz' + ^7.1.5: 7.12.10 + 7.12.10: + $: sha512-+y4ZnePpvWs1fc/LhZRTHkTesbXkyBYuOB+5CyodZqrEuETXi3zOVfpAQIdgC3lXbHLTDG9dQosxR9BhvLKDLQ== + _: 'https://registry.npmjs.org/@babel/cli/-/cli-7.12.10.tgz' dependencies: commander: ^4.0.1 convert-source-map: ^1.1.0 @@ -34,81 +35,69 @@ $pkg: slash: ^2.0.0 source-map: ^0.5.0 optionalDependencies: - chokidar: ^2.1.8 + '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents + chokidar: ^3.4.0 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/code-frame': - _latest: 7.10.4 + _latest: 7.12.11 _: - '^7.0.0,^7.10.4': 7.10.4 - 7.10.4: - $: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== - _: 'https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz' + '^7.0.0,^7.10.4,^7.12.11': 7.12.11 + 7.12.11: + $: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + _: 'https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz' dependencies: '@babel/highlight': ^7.10.4 '@babel/compat-data': - _latest: 7.10.5 + _latest: 7.12.7 _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw== - _: 'https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.10.5.tgz' - dependencies: - browserslist: ^4.12.0 - invariant: ^2.2.4 - semver: ^5.5.0 + '^7.12.5,^7.12.7': 7.12.7 + 7.12.7: + $: sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw== + _: 'https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz' '@babel/core': - _latest: 7.10.5 + _latest: 7.12.10 _: - '^7.1.6,^7.7.5': 7.10.5 - 7.10.5: - $: sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w== - _: 'https://registry.npmjs.org/@babel/core/-/core-7.10.5.tgz' + '^7.1.6,^7.7.5': 7.12.10 + 7.12.10: + $: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w== + _: 'https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz' dependencies: '@babel/code-frame': ^7.10.4 - '@babel/generator': ^7.10.5 - '@babel/helper-module-transforms': ^7.10.5 - '@babel/helpers': ^7.10.4 - '@babel/parser': ^7.10.5 - '@babel/template': ^7.10.4 - '@babel/traverse': ^7.10.5 - '@babel/types': ^7.10.5 + '@babel/generator': ^7.12.10 + '@babel/helper-module-transforms': ^7.12.1 + '@babel/helpers': ^7.12.5 + '@babel/parser': ^7.12.10 + '@babel/template': ^7.12.7 + '@babel/traverse': ^7.12.10 + '@babel/types': ^7.12.10 convert-source-map: ^1.7.0 debug: ^4.1.0 gensync: ^1.0.0-beta.1 json5: ^2.1.2 lodash: ^4.17.19 - resolve: ^1.3.2 semver: ^5.4.1 source-map: ^0.5.0 '@babel/generator': - _latest: 7.10.5 + _latest: 7.12.11 _: - '^7.0.0-beta.44,^7.10.5': 7.10.5 - ^7.12.5: 7.12.5 - 7.12.5: - $: sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A== - _: 'https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz' + '^7.0.0-beta.44,^7.12.10,^7.12.11': 7.12.11 + 7.12.11: + $: sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA== + _: 'https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz' dependencies: - '@babel/types': ^7.12.5 - jsesc: ^2.5.1 - source-map: ^0.5.0 - 7.10.5: - $: sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig== - _: 'https://registry.npmjs.org/@babel/generator/-/generator-7.10.5.tgz' - dependencies: - '@babel/types': ^7.10.5 + '@babel/types': ^7.12.11 jsesc: ^2.5.1 source-map: ^0.5.0 '@babel/helper-annotate-as-pure': - _latest: 7.10.4 + _latest: 7.12.10 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== - _: 'https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz' + '^7.10.4,^7.12.10': 7.12.10 + 7.12.10: + $: sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ== + _: 'https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz' dependencies: - '@babel/types': ^7.10.4 + '@babel/types': ^7.12.10 '@babel/helper-builder-binary-assignment-operator-visitor': _latest: 7.10.4 _: @@ -129,36 +118,23 @@ $pkg: dependencies: '@babel/helper-annotate-as-pure': ^7.10.4 '@babel/types': ^7.10.4 -'@babel/helper-builder-react-jsx-experimental': - _latest: 7.10.5 - _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg== - _: 'https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz' - dependencies: - '@babel/helper-annotate-as-pure': ^7.10.4 - '@babel/helper-module-imports': ^7.10.4 - '@babel/types': ^7.10.5 '@babel/helper-compilation-targets': - _latest: 7.10.4 + _latest: 7.12.5 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== - _: 'https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz' + ^7.12.5: 7.12.5 + 7.12.5: + $: sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw== + _: 'https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz' dependencies: - '@babel/compat-data': ^7.10.4 - browserslist: ^4.12.0 - invariant: ^2.2.4 - levenary: ^1.1.1 + '@babel/compat-data': ^7.12.5 + '@babel/helper-validator-option': ^7.12.1 + browserslist: ^4.14.5 semver: ^5.5.0 peerDependencies: '@babel/core': ^7.0.0 '@babel/helper-create-class-features-plugin': - _latest: 7.10.5 + _latest: 7.12.1 _: - '^7.10.4,^7.10.5': 7.10.5 ^7.12.1: 7.12.1 7.12.1: $: sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== @@ -171,29 +147,16 @@ $pkg: '@babel/helper-split-export-declaration': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0 - 7.10.5: - $: sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== - _: 'https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz' - dependencies: - '@babel/helper-function-name': ^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 - '@babel/helper-split-export-declaration': ^7.10.4 - peerDependencies: - '@babel/core': ^7.0.0 '@babel/helper-create-regexp-features-plugin': - _latest: 7.10.4 + _latest: 7.12.7 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== - _: 'https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz' + ^7.12.1: 7.12.7 + 7.12.7: + $: sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ== + _: 'https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz' dependencies: '@babel/helper-annotate-as-pure': ^7.10.4 - '@babel/helper-regex': ^7.10.4 - regexpu-core: ^4.7.0 + regexpu-core: ^4.7.1 peerDependencies: '@babel/core': ^7.0.0 '@babel/helper-define-map': @@ -208,35 +171,34 @@ $pkg: '@babel/types': ^7.10.5 lodash: ^4.17.19 '@babel/helper-explode-assignable-expression': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A== - _: 'https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz' + ^7.10.4: 7.12.1 + 7.12.1: + $: sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== + _: 'https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz' dependencies: - '@babel/traverse': ^7.10.4 - '@babel/types': ^7.10.4 + '@babel/types': ^7.12.1 '@babel/helper-function-name': - _latest: 7.10.4 + _latest: 7.12.11 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== - _: 'https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz' + '^7.10.4,^7.12.11': 7.12.11 + 7.12.11: + $: sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA== + _: 'https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz' dependencies: - '@babel/helper-get-function-arity': ^7.10.4 - '@babel/template': ^7.10.4 - '@babel/types': ^7.10.4 + '@babel/helper-get-function-arity': ^7.12.10 + '@babel/template': ^7.12.7 + '@babel/types': ^7.12.11 '@babel/helper-get-function-arity': - _latest: 7.10.4 + _latest: 7.12.10 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== - _: 'https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz' + ^7.12.10: 7.12.10 + 7.12.10: + $: sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag== + _: 'https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz' dependencies: - '@babel/types': ^7.10.4 + '@babel/types': ^7.12.10 '@babel/helper-hoist-variables': _latest: 7.10.4 _: @@ -247,165 +209,147 @@ $pkg: dependencies: '@babel/types': ^7.10.4 '@babel/helper-member-expression-to-functions': - _latest: 7.10.5 + _latest: 7.12.7 _: - '^7.10.4,^7.10.5': 7.10.5 - ^7.12.1: 7.12.7 + '^7.12.1,^7.12.7': 7.12.7 7.12.7: $: sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw== _: 'https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz' dependencies: '@babel/types': ^7.12.7 - 7.10.5: - $: sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA== - _: 'https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz' - dependencies: - '@babel/types': ^7.10.5 '@babel/helper-module-imports': - _latest: 7.10.4 + _latest: 7.12.5 _: - '^7.0.0-beta.44,^7.0.0-beta.49,^7.10.4': 7.10.4 - 7.10.4: - $: sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== - _: 'https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz' + '^7.0.0-beta.44,^7.0.0-beta.49,^7.12.1,^7.12.5': 7.12.5 + 7.12.5: + $: sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== + _: 'https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz' dependencies: - '@babel/types': ^7.10.4 + '@babel/types': ^7.12.5 '@babel/helper-module-transforms': - _latest: 7.10.5 + _latest: 7.12.1 _: - '^7.10.4,^7.10.5': 7.10.5 - 7.10.5: - $: sha512-4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA== - _: 'https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.10.5.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== + _: 'https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz' 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/helper-module-imports': ^7.12.1 + '@babel/helper-replace-supers': ^7.12.1 + '@babel/helper-simple-access': ^7.12.1 + '@babel/helper-split-export-declaration': ^7.11.0 + '@babel/helper-validator-identifier': ^7.10.4 '@babel/template': ^7.10.4 - '@babel/types': ^7.10.5 + '@babel/traverse': ^7.12.1 + '@babel/types': ^7.12.1 lodash: ^4.17.19 '@babel/helper-optimise-call-expression': - _latest: 7.10.4 + _latest: 7.12.10 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== - _: 'https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz' + '^7.10.4,^7.12.10': 7.12.10 + 7.12.10: + $: sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ== + _: 'https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz' dependencies: - '@babel/types': ^7.10.4 + '@babel/types': ^7.12.10 '@babel/helper-plugin-utils': _latest: 7.10.4 _: - '^7.0.0,^7.10.4,^7.8.0': 7.10.4 + '^7.0.0,^7.10.4,^7.8.0,^7.8.3': 7.10.4 7.10.4: $: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== _: 'https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz' -'@babel/helper-regex': - _latest: 7.10.5 - _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== - _: 'https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz' - dependencies: - lodash: ^4.17.19 '@babel/helper-remap-async-to-generator': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg== - _: 'https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== + _: 'https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz' dependencies: '@babel/helper-annotate-as-pure': ^7.10.4 '@babel/helper-wrap-function': ^7.10.4 - '@babel/template': ^7.10.4 - '@babel/traverse': ^7.10.4 - '@babel/types': ^7.10.4 + '@babel/types': ^7.12.1 '@babel/helper-replace-supers': - _latest: 7.10.4 + _latest: 7.12.11 _: - ^7.10.4: 7.10.4 - ^7.12.1: 7.12.5 - 7.12.5: - $: sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== - _: 'https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz' - dependencies: - '@babel/helper-member-expression-to-functions': ^7.12.1 - '@babel/helper-optimise-call-expression': ^7.10.4 - '@babel/traverse': ^7.12.5 - '@babel/types': ^7.12.5 - 7.10.4: - $: sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== - _: 'https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz' + ^7.12.1: 7.12.11 + 7.12.11: + $: sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA== + _: 'https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz' dependencies: - '@babel/helper-member-expression-to-functions': ^7.10.4 - '@babel/helper-optimise-call-expression': ^7.10.4 - '@babel/traverse': ^7.10.4 - '@babel/types': ^7.10.4 + '@babel/helper-member-expression-to-functions': ^7.12.7 + '@babel/helper-optimise-call-expression': ^7.12.10 + '@babel/traverse': ^7.12.10 + '@babel/types': ^7.12.11 '@babel/helper-simple-access': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== - _: 'https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== + _: 'https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz' dependencies: - '@babel/template': ^7.10.4 - '@babel/types': ^7.10.4 -'@babel/helper-split-export-declaration': - _latest: 7.10.4 + '@babel/types': ^7.12.1 +'@babel/helper-skip-transparent-expression-wrappers': + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - ^7.11.0: 7.11.0 - 7.11.0: - $: sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== - _: 'https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== + _: 'https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz' dependencies: - '@babel/types': ^7.11.0 - 7.10.4: - $: sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg== - _: 'https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz' + '@babel/types': ^7.12.1 +'@babel/helper-split-export-declaration': + _latest: 7.12.11 + _: + '^7.10.4,^7.11.0,^7.12.11': 7.12.11 + 7.12.11: + $: sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g== + _: 'https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz' dependencies: - '@babel/types': ^7.10.4 + '@babel/types': ^7.12.11 '@babel/helper-validator-identifier': _latest: 7.10.4 _: ^7.10.4: 7.10.4 + ^7.12.11: 7.12.11 + 7.12.11: + $: sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== + _: 'https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz' 7.10.4: $: sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== _: 'https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz' '@babel/helper-validator-option': - _latest: 7.12.1 + _latest: 7.12.11 _: - ^7.12.1: 7.12.1 - 7.12.1: - $: sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== - _: 'https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz' + '^7.12.1,^7.12.11': 7.12.11 + 7.12.11: + $: sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw== + _: 'https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz' '@babel/helper-wrap-function': - _latest: 7.10.4 + _latest: 7.12.3 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== - _: 'https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz' + ^7.10.4: 7.12.3 + 7.12.3: + $: sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow== + _: 'https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz' dependencies: '@babel/helper-function-name': ^7.10.4 '@babel/template': ^7.10.4 '@babel/traverse': ^7.10.4 '@babel/types': ^7.10.4 '@babel/helpers': - _latest: 7.10.4 + _latest: 7.12.5 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== - _: 'https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz' + ^7.12.5: 7.12.5 + 7.12.5: + $: sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== + _: 'https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz' dependencies: '@babel/template': ^7.10.4 - '@babel/traverse': ^7.10.4 - '@babel/types': ^7.10.4 + '@babel/traverse': ^7.12.5 + '@babel/types': ^7.12.5 '@babel/highlight': _latest: 7.10.4 _: @@ -418,160 +362,181 @@ $pkg: chalk: ^2.0.0 js-tokens: ^4.0.0 '@babel/parser': - _latest: 7.10.5 + _latest: 7.12.11 _: - '^7.10.4,^7.10.5,^7.7.0': 7.10.5 - ^7.12.7: 7.12.7 - 7.12.7: - $: sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg== - _: 'https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz' - 7.10.5: - $: sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ== - _: 'https://registry.npmjs.org/@babel/parser/-/parser-7.10.5.tgz' + '^7.12.10,^7.12.11,^7.12.7,^7.7.0': 7.12.11 + 7.12.11: + $: sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg== + _: 'https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz' '@babel/plugin-proposal-async-generator-functions': - _latest: 7.10.5 + _latest: 7.12.12 _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz' + ^7.12.1: 7.12.12 + 7.12.12: + $: sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 - '@babel/helper-remap-async-to-generator': ^7.10.4 + '@babel/helper-remap-async-to-generator': ^7.12.1 '@babel/plugin-syntax-async-generators': ^7.8.0 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-class-properties': - _latest: 7.10.4 + _latest: 7.12.1 _: - '^7.10.4,^7.2.1': 7.10.4 - 7.10.4: - $: sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz' + '^7.12.1,^7.2.1': 7.12.1 + 7.12.1: + $: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz' dependencies: - '@babel/helper-create-class-features-plugin': ^7.10.4 + '@babel/helper-create-class-features-plugin': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-decorators': - _latest: 7.10.5 + _latest: 7.12.12 _: - ^7.4.4: 7.10.5 - 7.10.5: - $: sha512-Sc5TAQSZuLzgY0664mMDn24Vw2P8g/VhyLyGPaWiHahhgLqeZvcGeyBZOrJW0oSKIK2mvQ22a1ENXBIQLhrEiQ== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.10.5.tgz' + ^7.4.4: 7.12.12 + 7.12.12: + $: sha512-fhkE9lJYpw2mjHelBpM2zCbaA11aov2GJs7q4cFaXNrWx0H3bW58H9Esy2rdtYOghFBEYUDRIpvlgi+ZD+AvvQ== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.12.tgz' dependencies: - '@babel/helper-create-class-features-plugin': ^7.10.5 + '@babel/helper-create-class-features-plugin': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 - '@babel/plugin-syntax-decorators': ^7.10.4 + '@babel/plugin-syntax-decorators': ^7.12.1 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-dynamic-import': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 '@babel/plugin-syntax-dynamic-import': ^7.8.0 peerDependencies: '@babel/core': ^7.0.0-0 +'@babel/plugin-proposal-export-namespace-from': + _latest: 7.12.1 + _: + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz' + dependencies: + '@babel/helper-plugin-utils': ^7.10.4 + '@babel/plugin-syntax-export-namespace-from': ^7.8.3 + peerDependencies: + '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-json-strings': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 '@babel/plugin-syntax-json-strings': ^7.8.0 peerDependencies: '@babel/core': ^7.0.0-0 +'@babel/plugin-proposal-logical-assignment-operators': + _latest: 7.12.1 + _: + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz' + dependencies: + '@babel/helper-plugin-utils': ^7.10.4 + '@babel/plugin-syntax-logical-assignment-operators': ^7.10.4 + peerDependencies: + '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-nullish-coalescing-operator': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 '@babel/plugin-syntax-nullish-coalescing-operator': ^7.8.0 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-numeric-separator': - _latest: 7.10.4 + _latest: 7.12.7 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz' + ^7.12.7: 7.12.7 + 7.12.7: + $: sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 '@babel/plugin-syntax-numeric-separator': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-object-rest-spread': - _latest: 7.10.4 + _latest: 7.12.1 _: - '^7.0.0,^7.10.4': 7.10.4 - 7.10.4: - $: sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz' + '^7.0.0,^7.12.1': 7.12.1 + 7.12.1: + $: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 '@babel/plugin-syntax-object-rest-spread': ^7.8.0 - '@babel/plugin-transform-parameters': ^7.10.4 + '@babel/plugin-transform-parameters': ^7.12.1 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-optional-catch-binding': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 '@babel/plugin-syntax-optional-catch-binding': ^7.8.0 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-optional-chaining': - _latest: 7.10.4 + _latest: 7.12.7 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.4.tgz' + ^7.12.7: 7.12.7 + 7.12.7: + $: sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 + '@babel/helper-skip-transparent-expression-wrappers': ^7.12.1 '@babel/plugin-syntax-optional-chaining': ^7.8.0 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-private-methods': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz' dependencies: - '@babel/helper-create-class-features-plugin': ^7.10.4 + '@babel/helper-create-class-features-plugin': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-proposal-unicode-property-regex': - _latest: 7.10.4 + _latest: 7.12.1 _: - '^7.10.4,^7.4.4': 7.10.4 - 7.10.4: - $: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== - _: 'https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz' + '^7.12.1,^7.4.4': 7.12.1 + 7.12.1: + $: sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== + _: 'https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz' dependencies: - '@babel/helper-create-regexp-features-plugin': ^7.10.4 + '@babel/helper-create-regexp-features-plugin': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 @@ -587,23 +552,23 @@ $pkg: peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-class-properties': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== - _: 'https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== + _: 'https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-decorators': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw== - _: 'https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w== + _: 'https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: @@ -619,6 +584,17 @@ $pkg: '@babel/helper-plugin-utils': ^7.8.0 peerDependencies: '@babel/core': ^7.0.0-0 +'@babel/plugin-syntax-export-namespace-from': + _latest: 7.8.3 + _: + ^7.8.3: 7.8.3 + 7.8.3: + $: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + _: 'https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz' + dependencies: + '@babel/helper-plugin-utils': ^7.8.3 + peerDependencies: + '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-json-strings': _latest: 7.8.3 _: @@ -633,8 +609,7 @@ $pkg: '@babel/plugin-syntax-jsx': _latest: 7.12.1 _: - ^7.0.0: 7.12.1 - ^7.10.4: 7.10.4 + '^7.0.0,^7.12.1': 7.12.1 7.12.1: $: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== _: 'https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz' @@ -642,9 +617,13 @@ $pkg: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 +'@babel/plugin-syntax-logical-assignment-operators': + _latest: 7.10.4 + _: + ^7.10.4: 7.10.4 7.10.4: - $: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== - _: 'https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz' + $: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + _: 'https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: @@ -705,12 +684,12 @@ $pkg: peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-top-level-await': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== - _: 'https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== + _: 'https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: @@ -727,467 +706,440 @@ $pkg: peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-arrow-functions': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== + _: 'https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-async-to-generator': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== - _: 'https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== + _: 'https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz' dependencies: - '@babel/helper-module-imports': ^7.10.4 + '@babel/helper-module-imports': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 - '@babel/helper-remap-async-to-generator': ^7.10.4 + '@babel/helper-remap-async-to-generator': ^7.12.1 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-block-scoped-functions': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== + _: 'https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-block-scoping': - _latest: 7.10.5 + _latest: 7.12.12 _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg== - _: 'https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz' + ^7.12.11: 7.12.12 + 7.12.12: + $: sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ== + _: 'https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-classes': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== + _: 'https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz' dependencies: '@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-replace-supers': ^7.12.1 '@babel/helper-split-export-declaration': ^7.10.4 globals: ^11.1.0 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-computed-properties': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== + _: 'https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-destructuring': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== + _: 'https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-dotall-regex': - _latest: 7.10.4 + _latest: 7.12.1 _: - '^7.10.4,^7.4.4': 7.10.4 - 7.10.4: - $: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz' + '^7.12.1,^7.4.4': 7.12.1 + 7.12.1: + $: sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== + _: 'https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz' dependencies: - '@babel/helper-create-regexp-features-plugin': ^7.10.4 + '@babel/helper-create-regexp-features-plugin': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-duplicate-keys': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== + _: 'https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-exponentiation-operator': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== + _: 'https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz' dependencies: '@babel/helper-builder-binary-assignment-operator-visitor': ^7.10.4 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-for-of': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== - _: 'https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== + _: 'https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-function-name': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== - _: 'https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== + _: 'https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz' dependencies: '@babel/helper-function-name': ^7.10.4 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-literals': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== - _: 'https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== + _: 'https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-member-expression-literals': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== + _: 'https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-modules-amd': - _latest: 7.10.5 + _latest: 7.12.1 _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== + _: 'https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz' dependencies: - '@babel/helper-module-transforms': ^7.10.5 + '@babel/helper-module-transforms': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 babel-plugin-dynamic-import-node: ^2.3.3 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-modules-commonjs': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== - _: 'https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== + _: 'https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz' dependencies: - '@babel/helper-module-transforms': ^7.10.4 + '@babel/helper-module-transforms': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 - '@babel/helper-simple-access': ^7.10.4 + '@babel/helper-simple-access': ^7.12.1 babel-plugin-dynamic-import-node: ^2.3.3 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-modules-systemjs': - _latest: 7.10.5 + _latest: 7.12.1 _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== + _: 'https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz' dependencies: '@babel/helper-hoist-variables': ^7.10.4 - '@babel/helper-module-transforms': ^7.10.5 + '@babel/helper-module-transforms': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 + '@babel/helper-validator-identifier': ^7.10.4 babel-plugin-dynamic-import-node: ^2.3.3 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-modules-umd': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== + _: 'https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz' dependencies: - '@babel/helper-module-transforms': ^7.10.4 + '@babel/helper-module-transforms': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-named-capturing-groups-regex': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== + _: 'https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz' dependencies: - '@babel/helper-create-regexp-features-plugin': ^7.10.4 + '@babel/helper-create-regexp-features-plugin': ^7.12.1 peerDependencies: '@babel/core': ^7.0.0 '@babel/plugin-transform-new-target': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== + _: 'https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-object-super': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== - _: 'https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== + _: 'https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 - '@babel/helper-replace-supers': ^7.10.4 + '@babel/helper-replace-supers': ^7.12.1 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-parameters': - _latest: 7.10.5 + _latest: 7.12.1 _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== + _: 'https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz' dependencies: - '@babel/helper-get-function-arity': ^7.10.4 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-property-literals': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== - _: 'https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== + _: 'https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-react-constant-elements': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.0.0: 7.10.4 - 7.10.4: - $: sha512-cYmQBW1pXrqBte1raMkAulXmi7rjg3VI6ZLg9QIic8Hq7BtYXaWuZSxsr2siOMI6SWwpxjWfnwhTUrd7JlAV7g== - _: 'https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.10.4.tgz' + ^7.0.0: 7.12.1 + 7.12.1: + $: sha512-KOHd0tIRLoER+J+8f9DblZDa1fLGPwaaN1DI1TVHuQFOpjHV22C3CUB3obeC4fexHY9nx+fH0hQNvLFFfA1mxA== + _: 'https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-react-display-name': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w== + _: 'https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-react-inline-elements': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.0.0: 7.10.4 - 7.10.4: - $: sha512-Pu5eO9xGwtsPA7N7Qp36D0BKdfmuh0rmWKBEoJHfzPWICOSkJX/UPwqLr1myCnjccpvkOhBcP2WFbEAPTAkYiA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-react-inline-elements/-/plugin-transform-react-inline-elements-7.10.4.tgz' + ^7.0.0: 7.12.1 + 7.12.1: + $: sha512-9ZuH22V68nUyLkhSJYKBqQr10d/gqmyAEeffpGXh3cRkETDUVDaY5PgX/dg8id419KoyWc5VCwsCgJVmxxAk3g== + _: 'https://registry.npmjs.org/@babel/plugin-transform-react-inline-elements/-/plugin-transform-react-inline-elements-7.12.1.tgz' dependencies: '@babel/helper-builder-react-jsx': ^7.10.4 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-react-jsx': - _latest: 7.10.4 + _latest: 7.12.12 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== - _: 'https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz' + '^7.12.10,^7.12.12': 7.12.12 + 7.12.12: + $: sha512-JDWGuzGNWscYcq8oJVCtSE61a5+XAOos+V0HrxnDieUus4UMnBEosDnY1VJqU5iZ4pA04QY7l0+JvHL1hZEfsw== + _: 'https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.12.tgz' dependencies: - '@babel/helper-builder-react-jsx': ^7.10.4 - '@babel/helper-builder-react-jsx-experimental': ^7.10.4 + '@babel/helper-annotate-as-pure': ^7.12.10 + '@babel/helper-module-imports': ^7.12.5 '@babel/helper-plugin-utils': ^7.10.4 - '@babel/plugin-syntax-jsx': ^7.10.4 + '@babel/plugin-syntax-jsx': ^7.12.1 + '@babel/types': ^7.12.12 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-react-jsx-development': - _latest: 7.10.4 - _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ== - _: 'https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.4.tgz' - dependencies: - '@babel/helper-builder-react-jsx-experimental': ^7.10.4 - '@babel/helper-plugin-utils': ^7.10.4 - '@babel/plugin-syntax-jsx': ^7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 -'@babel/plugin-transform-react-jsx-self': - _latest: 7.10.4 - _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== - _: 'https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz' - dependencies: - '@babel/helper-plugin-utils': ^7.10.4 - '@babel/plugin-syntax-jsx': ^7.10.4 - peerDependencies: - '@babel/core': ^7.0.0-0 -'@babel/plugin-transform-react-jsx-source': - _latest: 7.10.5 + _latest: 7.12.12 _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz' + ^7.12.7: 7.12.12 + 7.12.12: + $: sha512-i1AxnKxHeMxUaWVXQOSIco4tvVvvCxMSfeBMnMM06mpaJt3g+MpxYQQrDfojUQldP1xxraPSJYSMEljoWM/dCg== + _: 'https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.12.tgz' dependencies: - '@babel/helper-plugin-utils': ^7.10.4 - '@babel/plugin-syntax-jsx': ^7.10.4 + '@babel/plugin-transform-react-jsx': ^7.12.12 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-react-pure-annotations': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A== - _: 'https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== + _: 'https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz' dependencies: '@babel/helper-annotate-as-pure': ^7.10.4 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-regenerator': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== + _: 'https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz' dependencies: regenerator-transform: ^0.14.2 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-reserved-words': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== - _: 'https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== + _: 'https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-runtime': - _latest: 7.10.5 + _latest: 7.12.10 _: - ^7.1.0: 7.10.5 - 7.10.5: - $: sha512-tV4V/FjElJ9lQtyjr5xD2IFFbgY46r7EeVu5a8CpEKT5laheHKSlFeHjpkPppW3PqzGLAuv5k2qZX5LgVZIX5w== - _: 'https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.5.tgz' + ^7.1.0: 7.12.10 + 7.12.10: + $: sha512-xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA== + _: 'https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.10.tgz' dependencies: - '@babel/helper-module-imports': ^7.10.4 + '@babel/helper-module-imports': ^7.12.5 '@babel/helper-plugin-utils': ^7.10.4 - resolve: ^1.8.1 semver: ^5.5.1 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-shorthand-properties': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== - _: 'https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== + _: 'https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-spread': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ== - _: 'https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== + _: 'https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 + '@babel/helper-skip-transparent-expression-wrappers': ^7.12.1 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-sticky-regex': - _latest: 7.10.4 + _latest: 7.12.7 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== - _: 'https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz' + ^7.12.7: 7.12.7 + 7.12.7: + $: sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg== + _: 'https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 - '@babel/helper-regex': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-template-literals': - _latest: 7.10.5 + _latest: 7.12.1 _: - ^7.10.4: 7.10.5 - 7.10.5: - $: sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== - _: 'https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== + _: 'https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz' dependencies: - '@babel/helper-annotate-as-pure': ^7.10.4 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-typeof-symbol': - _latest: 7.10.4 + _latest: 7.12.10 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== - _: 'https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz' + ^7.12.10: 7.12.10 + 7.12.10: + $: sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA== + _: 'https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: @@ -1206,109 +1158,111 @@ $pkg: peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-unicode-escapes': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== - _: 'https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q== + _: 'https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-transform-unicode-regex': - _latest: 7.10.4 + _latest: 7.12.1 _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== - _: 'https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz' + ^7.12.1: 7.12.1 + 7.12.1: + $: sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== + _: 'https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz' dependencies: - '@babel/helper-create-regexp-features-plugin': ^7.10.4 + '@babel/helper-create-regexp-features-plugin': ^7.12.1 '@babel/helper-plugin-utils': ^7.10.4 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/preset-env': - _latest: 7.10.4 + _latest: 7.12.11 _: - ^7.1.6: 7.10.4 - 7.10.4: - $: sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw== - _: 'https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.10.4.tgz' + ^7.1.6: 7.12.11 + 7.12.11: + $: sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw== + _: 'https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.11.tgz' dependencies: - '@babel/compat-data': ^7.10.4 - '@babel/helper-compilation-targets': ^7.10.4 - '@babel/helper-module-imports': ^7.10.4 + '@babel/compat-data': ^7.12.7 + '@babel/helper-compilation-targets': ^7.12.5 + '@babel/helper-module-imports': ^7.12.5 '@babel/helper-plugin-utils': ^7.10.4 - '@babel/plugin-proposal-async-generator-functions': ^7.10.4 - '@babel/plugin-proposal-class-properties': ^7.10.4 - '@babel/plugin-proposal-dynamic-import': ^7.10.4 - '@babel/plugin-proposal-json-strings': ^7.10.4 - '@babel/plugin-proposal-nullish-coalescing-operator': ^7.10.4 - '@babel/plugin-proposal-numeric-separator': ^7.10.4 - '@babel/plugin-proposal-object-rest-spread': ^7.10.4 - '@babel/plugin-proposal-optional-catch-binding': ^7.10.4 - '@babel/plugin-proposal-optional-chaining': ^7.10.4 - '@babel/plugin-proposal-private-methods': ^7.10.4 - '@babel/plugin-proposal-unicode-property-regex': ^7.10.4 + '@babel/helper-validator-option': ^7.12.11 + '@babel/plugin-proposal-async-generator-functions': ^7.12.1 + '@babel/plugin-proposal-class-properties': ^7.12.1 + '@babel/plugin-proposal-dynamic-import': ^7.12.1 + '@babel/plugin-proposal-export-namespace-from': ^7.12.1 + '@babel/plugin-proposal-json-strings': ^7.12.1 + '@babel/plugin-proposal-logical-assignment-operators': ^7.12.1 + '@babel/plugin-proposal-nullish-coalescing-operator': ^7.12.1 + '@babel/plugin-proposal-numeric-separator': ^7.12.7 + '@babel/plugin-proposal-object-rest-spread': ^7.12.1 + '@babel/plugin-proposal-optional-catch-binding': ^7.12.1 + '@babel/plugin-proposal-optional-chaining': ^7.12.7 + '@babel/plugin-proposal-private-methods': ^7.12.1 + '@babel/plugin-proposal-unicode-property-regex': ^7.12.1 '@babel/plugin-syntax-async-generators': ^7.8.0 - '@babel/plugin-syntax-class-properties': ^7.10.4 + '@babel/plugin-syntax-class-properties': ^7.12.1 '@babel/plugin-syntax-dynamic-import': ^7.8.0 + '@babel/plugin-syntax-export-namespace-from': ^7.8.3 '@babel/plugin-syntax-json-strings': ^7.8.0 + '@babel/plugin-syntax-logical-assignment-operators': ^7.10.4 '@babel/plugin-syntax-nullish-coalescing-operator': ^7.8.0 '@babel/plugin-syntax-numeric-separator': ^7.10.4 '@babel/plugin-syntax-object-rest-spread': ^7.8.0 '@babel/plugin-syntax-optional-catch-binding': ^7.8.0 '@babel/plugin-syntax-optional-chaining': ^7.8.0 - '@babel/plugin-syntax-top-level-await': ^7.10.4 - '@babel/plugin-transform-arrow-functions': ^7.10.4 - '@babel/plugin-transform-async-to-generator': ^7.10.4 - '@babel/plugin-transform-block-scoped-functions': ^7.10.4 - '@babel/plugin-transform-block-scoping': ^7.10.4 - '@babel/plugin-transform-classes': ^7.10.4 - '@babel/plugin-transform-computed-properties': ^7.10.4 - '@babel/plugin-transform-destructuring': ^7.10.4 - '@babel/plugin-transform-dotall-regex': ^7.10.4 - '@babel/plugin-transform-duplicate-keys': ^7.10.4 - '@babel/plugin-transform-exponentiation-operator': ^7.10.4 - '@babel/plugin-transform-for-of': ^7.10.4 - '@babel/plugin-transform-function-name': ^7.10.4 - '@babel/plugin-transform-literals': ^7.10.4 - '@babel/plugin-transform-member-expression-literals': ^7.10.4 - '@babel/plugin-transform-modules-amd': ^7.10.4 - '@babel/plugin-transform-modules-commonjs': ^7.10.4 - '@babel/plugin-transform-modules-systemjs': ^7.10.4 - '@babel/plugin-transform-modules-umd': ^7.10.4 - '@babel/plugin-transform-named-capturing-groups-regex': ^7.10.4 - '@babel/plugin-transform-new-target': ^7.10.4 - '@babel/plugin-transform-object-super': ^7.10.4 - '@babel/plugin-transform-parameters': ^7.10.4 - '@babel/plugin-transform-property-literals': ^7.10.4 - '@babel/plugin-transform-regenerator': ^7.10.4 - '@babel/plugin-transform-reserved-words': ^7.10.4 - '@babel/plugin-transform-shorthand-properties': ^7.10.4 - '@babel/plugin-transform-spread': ^7.10.4 - '@babel/plugin-transform-sticky-regex': ^7.10.4 - '@babel/plugin-transform-template-literals': ^7.10.4 - '@babel/plugin-transform-typeof-symbol': ^7.10.4 - '@babel/plugin-transform-unicode-escapes': ^7.10.4 - '@babel/plugin-transform-unicode-regex': ^7.10.4 + '@babel/plugin-syntax-top-level-await': ^7.12.1 + '@babel/plugin-transform-arrow-functions': ^7.12.1 + '@babel/plugin-transform-async-to-generator': ^7.12.1 + '@babel/plugin-transform-block-scoped-functions': ^7.12.1 + '@babel/plugin-transform-block-scoping': ^7.12.11 + '@babel/plugin-transform-classes': ^7.12.1 + '@babel/plugin-transform-computed-properties': ^7.12.1 + '@babel/plugin-transform-destructuring': ^7.12.1 + '@babel/plugin-transform-dotall-regex': ^7.12.1 + '@babel/plugin-transform-duplicate-keys': ^7.12.1 + '@babel/plugin-transform-exponentiation-operator': ^7.12.1 + '@babel/plugin-transform-for-of': ^7.12.1 + '@babel/plugin-transform-function-name': ^7.12.1 + '@babel/plugin-transform-literals': ^7.12.1 + '@babel/plugin-transform-member-expression-literals': ^7.12.1 + '@babel/plugin-transform-modules-amd': ^7.12.1 + '@babel/plugin-transform-modules-commonjs': ^7.12.1 + '@babel/plugin-transform-modules-systemjs': ^7.12.1 + '@babel/plugin-transform-modules-umd': ^7.12.1 + '@babel/plugin-transform-named-capturing-groups-regex': ^7.12.1 + '@babel/plugin-transform-new-target': ^7.12.1 + '@babel/plugin-transform-object-super': ^7.12.1 + '@babel/plugin-transform-parameters': ^7.12.1 + '@babel/plugin-transform-property-literals': ^7.12.1 + '@babel/plugin-transform-regenerator': ^7.12.1 + '@babel/plugin-transform-reserved-words': ^7.12.1 + '@babel/plugin-transform-shorthand-properties': ^7.12.1 + '@babel/plugin-transform-spread': ^7.12.1 + '@babel/plugin-transform-sticky-regex': ^7.12.7 + '@babel/plugin-transform-template-literals': ^7.12.1 + '@babel/plugin-transform-typeof-symbol': ^7.12.10 + '@babel/plugin-transform-unicode-escapes': ^7.12.1 + '@babel/plugin-transform-unicode-regex': ^7.12.1 '@babel/preset-modules': ^0.1.3 - '@babel/types': ^7.10.4 - browserslist: ^4.12.0 - core-js-compat: ^3.6.2 - invariant: ^2.2.2 - levenary: ^1.1.1 + '@babel/types': ^7.12.11 + core-js-compat: ^3.8.0 semver: ^5.5.0 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/preset-modules': - _latest: 0.1.3 + _latest: 0.1.4 _: - ^0.1.3: 0.1.3 - 0.1.3: - $: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== - _: 'https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.3.tgz' + ^0.1.3: 0.1.4 + 0.1.4: + $: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== + _: 'https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz' dependencies: '@babel/helper-plugin-utils': ^7.0.0 '@babel/plugin-proposal-unicode-property-regex': ^7.4.4 @@ -1318,20 +1272,18 @@ $pkg: peerDependencies: '@babel/core': ^7.0.0-0 '@babel/preset-react': - _latest: 7.10.4 + _latest: 7.12.10 _: - ^7.0.0: 7.10.4 - 7.10.4: - $: sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw== - _: 'https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.10.4.tgz' + ^7.0.0: 7.12.10 + 7.12.10: + $: sha512-vtQNjaHRl4DUpp+t+g4wvTHsLQuye+n0H/wsXIZRn69oz/fvNC7gQ4IK73zGJBaxvHoxElDvnYCthMcT7uzFoQ== + _: 'https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.10.tgz' dependencies: '@babel/helper-plugin-utils': ^7.10.4 - '@babel/plugin-transform-react-display-name': ^7.10.4 - '@babel/plugin-transform-react-jsx': ^7.10.4 - '@babel/plugin-transform-react-jsx-development': ^7.10.4 - '@babel/plugin-transform-react-jsx-self': ^7.10.4 - '@babel/plugin-transform-react-jsx-source': ^7.10.4 - '@babel/plugin-transform-react-pure-annotations': ^7.10.4 + '@babel/plugin-transform-react-display-name': ^7.12.1 + '@babel/plugin-transform-react-jsx': ^7.12.10 + '@babel/plugin-transform-react-jsx-development': ^7.12.7 + '@babel/plugin-transform-react-pure-annotations': ^7.12.1 peerDependencies: '@babel/core': ^7.0.0-0 '@babel/preset-typescript': @@ -1348,12 +1300,12 @@ $pkg: peerDependencies: '@babel/core': ^7.0.0-0 '@babel/register': - _latest: 7.10.5 + _latest: 7.12.10 _: - ^7.0.0: 7.10.5 - 7.10.5: - $: sha512-eYHdLv43nyvmPn9bfNfrcC4+iYNwdQ8Pxk1MFJuU/U5LpSYl/PH4dFMazCYZDFVi8ueG3shvO+AQfLrxpYulQw== - _: 'https://registry.npmjs.org/@babel/register/-/register-7.10.5.tgz' + ^7.0.0: 7.12.10 + 7.12.10: + $: sha512-EvX/BvMMJRAA3jZgILWgbsrHwBQvllC5T8B29McyME8DvkdOxk4ujESfrMvME8IHSDvWXrmMXxPvA/lx2gqPLQ== + _: 'https://registry.npmjs.org/@babel/register/-/register-7.12.10.tgz' dependencies: find-cache-dir: ^2.0.0 lodash: ^4.17.19 @@ -1365,86 +1317,70 @@ $pkg: '@babel/runtime': _latest: 7.12.5 _: - '^7.1.2,^7.5.5,^7.8.3,^7.8.4,^7.9.2': 7.10.5 - ^7.12.5: 7.12.5 + '^7.1.2,^7.12.5,^7.5.5,^7.8.3,^7.8.4,^7.9.2': 7.12.5 7.12.5: + top: 1 $: sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== _: 'https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz' dependencies: regenerator-runtime: ^0.13.4 - 7.10.5: - $: sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg== - _: 'https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.5.tgz' - dependencies: - regenerator-runtime: ^0.13.4 '@babel/template': - _latest: 7.10.4 - _: - ^7.10.4: 7.10.4 - 7.10.4: - $: sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== - _: 'https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz' - dependencies: - '@babel/code-frame': ^7.10.4 - '@babel/parser': ^7.10.4 - '@babel/types': ^7.10.4 -'@babel/traverse': - _latest: 7.10.5 + _latest: 7.12.7 _: - '^7.10.4,^7.10.5,^7.7.0': 7.10.5 - ^7.12.5: 7.12.9 - 7.12.9: - $: sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw== - _: 'https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.9.tgz' + '^7.10.4,^7.12.7': 7.12.7 + 7.12.7: + $: sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== + _: 'https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz' dependencies: '@babel/code-frame': ^7.10.4 - '@babel/generator': ^7.12.5 - '@babel/helper-function-name': ^7.10.4 - '@babel/helper-split-export-declaration': ^7.11.0 '@babel/parser': ^7.12.7 '@babel/types': ^7.12.7 - debug: ^4.1.0 - globals: ^11.1.0 - lodash: ^4.17.19 - 7.10.5: - $: sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ== - _: 'https://registry.npmjs.org/@babel/traverse/-/traverse-7.10.5.tgz' - dependencies: - '@babel/code-frame': ^7.10.4 - '@babel/generator': ^7.10.5 - '@babel/helper-function-name': ^7.10.4 - '@babel/helper-split-export-declaration': ^7.10.4 - '@babel/parser': ^7.10.5 - '@babel/types': ^7.10.5 +'@babel/traverse': + _latest: 7.12.12 + _: + '^7.10.4,^7.12.1,^7.12.10,^7.12.5,^7.7.0': 7.12.12 + 7.12.12: + $: sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w== + _: 'https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz' + dependencies: + '@babel/code-frame': ^7.12.11 + '@babel/generator': ^7.12.11 + '@babel/helper-function-name': ^7.12.11 + '@babel/helper-split-export-declaration': ^7.12.11 + '@babel/parser': ^7.12.11 + '@babel/types': ^7.12.12 debug: ^4.1.0 globals: ^11.1.0 lodash: ^4.17.19 '@babel/types': _latest: 7.12.7 _: - '^7.0.0,^7.11.0,^7.12.5,^7.12.7,^7.7.0': 7.12.7 - '^7.0.0-beta.49,^7.10.4,^7.10.5,^7.4.4': 7.10.5 - 7.12.7: - $: sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ== - _: 'https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz' + '^7.0.0,^7.0.0-beta.49,^7.7.0': 7.12.7 + ^7.10.4: + - 7.12.7 + - 7.12.12 + '^7.10.5,^7.12.1,^7.12.10,^7.12.11,^7.12.12,^7.12.5,^7.12.7,^7.4.4': 7.12.12 + 7.12.12: + $: sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ== + _: 'https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz' dependencies: - '@babel/helper-validator-identifier': ^7.10.4 + '@babel/helper-validator-identifier': ^7.12.11 lodash: ^4.17.19 to-fast-properties: ^2.0.0 - 7.10.5: - $: sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q== - _: 'https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz' + 7.12.7: + $: sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ== + _: 'https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz' dependencies: '@babel/helper-validator-identifier': ^7.10.4 lodash: ^4.17.19 to-fast-properties: ^2.0.0 '@eslint/eslintrc': - _latest: 0.2.2 + _latest: 0.3.0 _: - ^0.2.2: 0.2.2 - 0.2.2: - $: sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ== - _: 'https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz' + ^0.3.0: 0.3.0 + 0.3.0: + $: sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg== + _: 'https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.3.0.tgz' dependencies: ajv: ^6.12.4 debug: ^4.1.1 @@ -1453,7 +1389,7 @@ $pkg: ignore: ^4.0.6 import-fresh: ^3.2.1 js-yaml: ^3.13.1 - lodash: ^4.17.19 + lodash: ^4.17.20 minimatch: ^3.0.4 strip-json-comments: ^3.1.1 '@hapi/boom': @@ -1519,16 +1455,35 @@ $pkg: spdy: ^4.0.0 valid-url: ^1.0.9 '@loadable/babel-plugin': - _latest: 5.13.0 + _latest: 5.13.2 _: - ^5.10.0: 5.13.0 - 5.13.0: - $: sha512-SlwrjW9xnsQJI96aRKcNJwhwjWB1I/zDdm8Viz4/+MELEdd8TXBIfopa2PgoOMNORaXpTgan6DQ8u4Bf0lWJjQ== - _: 'https://registry.npmjs.org/@loadable/babel-plugin/-/babel-plugin-5.13.0.tgz' + ^5.10.0: 5.13.2 + 5.13.2: + $: sha512-vSZUVeTH1S1sDbk8Tzft0plZSkN7W4zmVR5w/Bmy4UmvBiu9lin7ztrDpoUTUzxpoups+OJbTc/OosvN0aMXWg== + _: 'https://registry.npmjs.org/@loadable/babel-plugin/-/babel-plugin-5.13.2.tgz' dependencies: '@babel/plugin-syntax-dynamic-import': ^7.7.4 peerDependencies: '@babel/core': ^7.0.0-0 +'@nicolo-ribaudo/chokidar-2': + _latest: 2.1.8-no-fsevents + _: + 2.1.8-no-fsevents: 2.1.8-no-fsevents + 2.1.8-no-fsevents: + $: sha512-+nb9vWloHNNMFHjGofEam3wopE3m1yuambrrd/fnPc+lFOMB9ROTqQlche9ByFWNkdNqfSgR/kkQtQ8DzEWt2w== + _: 'https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.tgz' + dependencies: + anymatch: ^2.0.0 + async-each: ^1.0.1 + braces: ^2.3.2 + glob-parent: ^3.1.0 + inherits: ^2.0.3 + is-binary-path: ^1.0.0 + is-glob: ^4.0.0 + normalize-path: ^3.0.0 + path-is-absolute: ^1.0.0 + readdirp: ^2.2.1 + upath: ^1.1.1 '@types/color-name': _latest: 1.1.1 _: @@ -1537,12 +1492,12 @@ $pkg: $: sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== _: 'https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz' '@types/json-schema': - _latest: 7.0.5 + _latest: 7.0.7 _: - ^7.0.4: 7.0.5 - 7.0.5: - $: sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== - _: 'https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.5.tgz' + '^7.0.5,^7.0.6': 7.0.7 + 7.0.7: + $: sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== + _: 'https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz' '@types/normalize-package-data': _latest: 2.4.0 _: @@ -1558,7 +1513,7 @@ $pkg: $: sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== _: 'https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz' '@webassemblyjs/ast': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1569,28 +1524,28 @@ $pkg: '@webassemblyjs/helper-wasm-bytecode': 1.9.0 '@webassemblyjs/wast-parser': 1.9.0 '@webassemblyjs/floating-point-hex-parser': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: $: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA== _: 'https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz' '@webassemblyjs/helper-api-error': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: $: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw== _: 'https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz' '@webassemblyjs/helper-buffer': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: $: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA== _: 'https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz' '@webassemblyjs/helper-code-frame': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1599,14 +1554,14 @@ $pkg: dependencies: '@webassemblyjs/wast-printer': 1.9.0 '@webassemblyjs/helper-fsm': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: $: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw== _: 'https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz' '@webassemblyjs/helper-module-context': - _latest: 1.9.0 + _latest: 1.9.1 _: 1.9.0: 1.9.0 1.9.0: @@ -1615,14 +1570,14 @@ $pkg: dependencies: '@webassemblyjs/ast': 1.9.0 '@webassemblyjs/helper-wasm-bytecode': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: $: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw== _: 'https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz' '@webassemblyjs/helper-wasm-section': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1634,7 +1589,7 @@ $pkg: '@webassemblyjs/helper-wasm-bytecode': 1.9.0 '@webassemblyjs/wasm-gen': 1.9.0 '@webassemblyjs/ieee754': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1643,7 +1598,7 @@ $pkg: dependencies: '@xtuc/ieee754': ^1.2.0 '@webassemblyjs/leb128': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1652,14 +1607,14 @@ $pkg: dependencies: '@xtuc/long': 4.2.2 '@webassemblyjs/utf8': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: $: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w== _: 'https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz' '@webassemblyjs/wasm-edit': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1675,7 +1630,7 @@ $pkg: '@webassemblyjs/wasm-parser': 1.9.0 '@webassemblyjs/wast-printer': 1.9.0 '@webassemblyjs/wasm-gen': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1688,7 +1643,7 @@ $pkg: '@webassemblyjs/leb128': 1.9.0 '@webassemblyjs/utf8': 1.9.0 '@webassemblyjs/wasm-opt': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1700,7 +1655,7 @@ $pkg: '@webassemblyjs/wasm-gen': 1.9.0 '@webassemblyjs/wasm-parser': 1.9.0 '@webassemblyjs/wasm-parser': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1714,7 +1669,7 @@ $pkg: '@webassemblyjs/leb128': 1.9.0 '@webassemblyjs/utf8': 1.9.0 '@webassemblyjs/wast-parser': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1728,7 +1683,7 @@ $pkg: '@webassemblyjs/helper-fsm': 1.9.0 '@xtuc/long': 4.2.2 '@webassemblyjs/wast-printer': - _latest: 1.9.0 + _latest: 1.11.0 _: 1.9.0: 1.9.0 1.9.0: @@ -1748,12 +1703,8 @@ $pkg: _: ../../packages/xarc-app dependencies: '@babel/runtime': ^7.12.5 - babel-plugin-react-css-modules: ^5.2.6 - css-modules-require-hook: ^4.0.2 - ignore-styles: ^5.0.1 isomorphic-loader: ^4.3.0 optional-require: ^1.0.0 - subapp-util: ^1.1.2 tslib: ^2.1.0 '@xarc/app-dev': _latest: 8.2.2-fynlocal_h @@ -1784,6 +1735,7 @@ $pkg: babel-plugin-dynamic-import-node: ^2.2.0 babel-plugin-lodash: ^3.3.4 babel-plugin-minify-dead-code-elimination: ^0.5.0 + babel-plugin-react-css-modules: ^5.2.6 babel-plugin-transform-node-env-inline: ^0.4.3 babel-plugin-transform-react-remove-prop-types: ^0.4.20 boxen: ^4.2.0 @@ -1898,12 +1850,12 @@ $pkg: require-at: ^1.0.6 xaa: ^1.5.0 '@xarc/run': - _latest: 1.0.2 + _latest: 1.0.4 _: - ^1.0.2: 1.0.2 - 1.0.2: - $: sha512-OLO03q8uumxfSEMfKxaOo/dXoOpLMbWxxdpUYhb51KB36QXLIePOVpGb1zvDG93pZYYXF5UqXlWrIINHqX7+pg== - _: 'https://registry.npmjs.org/@xarc/run/-/run-1.0.2.tgz' + ^1.0.2: 1.0.4 + 1.0.4: + $: sha512-9OsnvjhjYpS6IV4zj1nov2QN0ZoyQC2l+XlNGzmrsjUvRgKKype/wlCYu2JBr9QtM1CkhdCNwwnBaGPwWWGa8Q== + _: 'https://registry.npmjs.org/@xarc/run/-/run-1.0.4.tgz' dependencies: chalk: ^4.1.0 chalker: ^1.2.0 @@ -2001,16 +1953,16 @@ accepts: mime-types: ~2.1.24 negotiator: 0.6.2 acorn: - _latest: 7.3.1 + _latest: 8.0.4 _: - ^6.4.1: 6.4.1 + ^6.4.1: 6.4.2 ^7.4.0: 7.4.1 7.4.1: $: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== _: 'https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz' - 6.4.1: - $: sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== - _: 'https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz' + 6.4.2: + $: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== + _: 'https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz' acorn-jsx: _latest: 5.3.1 _: @@ -2021,23 +1973,29 @@ acorn-jsx: peerDependencies: acorn: '^6.0.0 || ^7.0.0 || ^8.0.0' aggregate-error: - _latest: 3.0.1 + _latest: 3.1.0 _: - ^3.0.0: 3.0.1 - 3.0.1: - $: sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== - _: 'https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz' + ^3.0.0: 3.1.0 + 3.1.0: + $: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + _: 'https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz' dependencies: clean-stack: ^2.0.0 indent-string: ^4.0.0 ajv: _latest: 6.12.6 _: - '^6.1.0,^6.11.0,^6.12.0,^6.12.2,^6.5.5': 6.12.3 - '^6.10.0,^6.12.4,^6.5.3': 6.12.6 - ^6.10.2: - - 6.12.3 - - 6.12.6 + '^6.1.0,^6.10.0,^6.12.4,^6.12.5,^6.5.3': 6.12.6 + '^6.10.2,^6.11.0,^6.12.0,^6.5.5': 6.12.3 + ^7.0.2: 7.0.3 + 7.0.3: + $: sha512-R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ== + _: 'https://registry.npmjs.org/ajv/-/ajv-7.0.3.tgz' + dependencies: + fast-deep-equal: ^3.1.1 + json-schema-traverse: ^1.0.0 + require-from-string: ^2.0.2 + uri-js: ^4.2.2 6.12.6: $: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== _: 'https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz' @@ -2055,7 +2013,7 @@ ajv: json-schema-traverse: ^0.4.1 uri-js: ^4.2.2 ajv-errors: - _latest: 1.0.1 + _latest: 2.0.0 _: ^1.0.0: 1.0.1 1.0.1: @@ -2066,18 +2024,12 @@ ajv-errors: ajv-keywords: _latest: 3.5.2 _: - '^3.1.0,^3.4.1': 3.5.1 - ^3.2.0: 3.5.2 + '^3.1.0,^3.2.0,^3.4.1,^3.5.2': 3.5.2 3.5.2: $: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== _: 'https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz' peerDependencies: ajv: ^6.9.1 - 3.5.1: - $: sha512-KWcq3xN8fDjSB+IMoh2VaXVhRI0BBGxoYp3rx7Pkb6z0cFjYR9Q9l4yZqqals0/zsioCmocC5H6UvsGD4MoIBA== - _: 'https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.1.tgz' - peerDependencies: - ajv: ^6.9.1 alphanum-sort: _latest: 1.0.2 _: @@ -2254,7 +2206,7 @@ arr-union: array-includes: _latest: 3.1.2 _: - ^3.1.1: 3.1.2 + '^3.1.1,^3.1.2': 3.1.2 3.1.2: $: sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw== _: 'https://registry.npmjs.org/array-includes/-/array-includes-3.1.2.tgz' @@ -2295,14 +2247,15 @@ asn1: asn1.js: _latest: 5.4.1 _: - ^4.0.0: 4.10.1 - 4.10.1: - $: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== - _: 'https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz' + ^5.2.0: 5.4.1 + 5.4.1: + $: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== + _: 'https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz' dependencies: bn.js: ^4.0.0 inherits: ^2.0.1 minimalistic-assert: ^1.0.0 + safer-buffer: ^2.1.0 assert: _latest: 2.0.0 _: @@ -2330,14 +2283,10 @@ assign-symbols: astral-regex: _latest: 2.0.0 _: - ^1.0.0: 1.0.0 ^2.0.0: 2.0.0 2.0.0: $: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== _: 'https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz' - 1.0.0: - $: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== - _: 'https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz' async: _latest: 3.2.0 _: @@ -2396,16 +2345,16 @@ atomic-sleep: $: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ== _: 'https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz' autoprefixer: - _latest: 9.8.5 + _latest: 10.2.3 _: - ^9.6.0: 9.8.5 - 9.8.5: - $: sha512-C2p5KkumJlsTHoNv9w31NrBRgXhf6eCMteJuHZi2xhkgC+5Vm40MEtCKPhc0qdgAOhox0YPy1SQHTAky05UoKg== - _: 'https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.5.tgz' + ^9.6.0: 9.8.6 + 9.8.6: + $: sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg== + _: 'https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz' dependencies: browserslist: ^4.12.0 - caniuse-lite: ^1.0.30001097 - colorette: ^1.2.0 + caniuse-lite: ^1.0.30001109 + colorette: ^1.2.1 normalize-range: ^0.1.2 num2fraction: ^1.2.2 postcss: ^7.0.32 @@ -2484,17 +2433,16 @@ babel-helper-remove-or-void: $: sha1-pPA7QAd6D/6I5F0HAQ3uJB/1rmA= _: 'https://registry.npmjs.org/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.3.tgz' babel-loader: - _latest: 8.1.0 + _latest: 8.2.2 _: - ^8.1.0: 8.1.0 - 8.1.0: - $: sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw== - _: 'https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz' + ^8.1.0: 8.2.2 + 8.2.2: + $: sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g== + _: 'https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz' dependencies: - find-cache-dir: ^2.1.0 + find-cache-dir: ^3.3.1 loader-utils: ^1.4.0 - mkdirp: ^0.5.3 - pify: ^4.0.1 + make-dir: ^3.1.0 schema-utils: ^2.6.5 peerDependencies: '@babel/core': ^7.0.0 @@ -2597,12 +2545,12 @@ base: mixin-deep: ^1.2.0 pascalcase: ^0.1.1 base64-js: - _latest: 1.3.1 + _latest: 1.5.1 _: - ^1.0.2: 1.3.1 - 1.3.1: - $: sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== - _: 'https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz' + ^1.0.2: 1.5.1 + 1.5.1: + $: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + _: 'https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz' batch: _latest: 0.6.1 _: @@ -2622,22 +2570,18 @@ bcrypt-pbkdf: big.js: _latest: 5.2.2 _: - ^3.1.3: 3.2.0 ^5.2.2: 5.2.2 5.2.2: $: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== _: 'https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz' - 3.2.0: - $: sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q== - _: 'https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz' binary-extensions: - _latest: 2.1.0 + _latest: 2.2.0 _: ^1.0.0: 1.13.1 - ^2.0.0: 2.1.0 - 2.1.0: - $: sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== - _: 'https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz' + ^2.0.0: 2.2.0 + 2.2.0: + $: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + _: 'https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz' 1.13.1: $: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== _: 'https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz' @@ -2658,13 +2602,13 @@ bluebird: $: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== _: 'https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz' bn.js: - _latest: 5.1.2 + _latest: 5.1.3 _: '^4.0.0,^4.1.0,^4.4.0': 4.11.9 - ^5.1.1: 5.1.2 - 5.1.2: - $: sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== - _: 'https://registry.npmjs.org/bn.js/-/bn.js-5.1.2.tgz' + '^5.0.0,^5.1.1': 5.1.3 + 5.1.3: + $: sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== + _: 'https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz' 4.11.9: $: sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== _: 'https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz' @@ -2676,7 +2620,7 @@ boolbase: $: sha1-aN/1++YMUes3cl6p4+0xDcwed24= _: 'https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz' boxen: - _latest: 4.2.0 + _latest: 5.0.0 _: ^4.2.0: 4.2.0 4.2.0: @@ -2692,7 +2636,7 @@ boxen: type-fest: ^0.8.1 widest-line: ^3.1.0 brace-expansion: - _latest: 1.1.11 + _latest: 2.0.0 _: ^1.1.7: 1.1.11 1.1.11: @@ -2770,28 +2714,28 @@ browserify-des: inherits: ^2.0.1 safe-buffer: ^5.1.2 browserify-rsa: - _latest: 4.0.1 + _latest: 4.1.0 _: - '^4.0.0,^4.0.1': 4.0.1 - 4.0.1: - $: sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= - _: 'https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz' + '^4.0.0,^4.0.1': 4.1.0 + 4.1.0: + $: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== + _: 'https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz' dependencies: - bn.js: ^4.1.0 + bn.js: ^5.0.0 randombytes: ^2.0.1 browserify-sign: - _latest: 4.2.0 + _latest: 4.2.1 _: - ^4.0.0: 4.2.0 - 4.2.0: - $: sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== - _: 'https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.0.tgz' + ^4.0.0: 4.2.1 + 4.2.1: + $: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== + _: 'https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz' dependencies: bn.js: ^5.1.1 browserify-rsa: ^4.0.1 create-hash: ^1.2.0 create-hmac: ^1.1.7 - elliptic: ^6.5.2 + elliptic: ^6.5.3 inherits: ^2.0.4 parse-asn1: ^5.1.5 readable-stream: ^3.6.0 @@ -2806,19 +2750,20 @@ browserify-zlib: dependencies: pako: ~1.0.5 browserslist: - _latest: 4.13.0 - _: - '^4.0.0,^4.12.0,^4.8.5': 4.13.0 - 4.13.0: - $: sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ== - _: 'https://registry.npmjs.org/browserslist/-/browserslist-4.13.0.tgz' - dependencies: - caniuse-lite: ^1.0.30001093 - electron-to-chromium: ^1.3.488 - escalade: ^3.0.1 - node-releases: ^1.1.58 + _latest: 4.16.1 + _: + '^4.0.0,^4.12.0,^4.14.5,^4.16.1': 4.16.1 + 4.16.1: + $: sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA== + _: 'https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz' + dependencies: + caniuse-lite: ^1.0.30001173 + colorette: ^1.2.1 + electron-to-chromium: ^1.3.634 + escalade: ^3.1.1 + node-releases: ^1.1.69 buffer: - _latest: 5.6.0 + _latest: 6.0.3 _: ^4.3.0: 4.9.2 4.9.2: @@ -2902,15 +2847,15 @@ caching-transform: package-hash: ^4.0.0 write-file-atomic: ^3.0.0 call-bind: - _latest: 1.0.0 + _latest: 1.0.2 _: - ^1.0.0: 1.0.0 - 1.0.0: - $: sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w== - _: 'https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz' + '^1.0.0,^1.0.2': 1.0.2 + 1.0.2: + $: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + _: 'https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz' dependencies: function-bind: ^1.1.1 - get-intrinsic: ^1.0.0 + get-intrinsic: ^1.0.2 caller-callsite: _latest: 4.1.0 _: @@ -2941,7 +2886,7 @@ callsites: $: sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= _: 'https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz' camelcase: - _latest: 6.0.0 + _latest: 6.2.0 _: 5.0.0: 5.0.0 '^5.0.0,^5.3.1': 5.3.1 @@ -2964,12 +2909,12 @@ caniuse-api: lodash.memoize: ^4.1.2 lodash.uniq: ^4.5.0 caniuse-lite: - _latest: 1.0.30001105 + _latest: 1.0.30001179 _: - '^1.0.0,^1.0.30001093,^1.0.30001097': 1.0.30001105 - 1.0.30001105: - $: sha512-JupOe6+dGMr7E20siZHIZQwYqrllxotAhiaej96y6x00b/48rPt42o+SzOSCPbrpsDWvRja40Hwrj0g0q6LZJg== - _: 'https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001105.tgz' + '^1.0.0,^1.0.30001109,^1.0.30001173': 1.0.30001179 + 1.0.30001179: + $: sha512-blMmO0QQujuUWZKyVrD1msR4WNDAqb/UPO1Sw2WWsQ7deoM5bJiicKnWJ1Y0NS/aGINSnKPIWBMw5luX+NDUCA== + _: 'https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001179.tgz' caseless: _latest: 0.12.0 _: @@ -3022,13 +2967,13 @@ chalker: dependencies: chalk: ^4.0.0 chokidar: - _latest: 3.4.1 + _latest: 3.5.1 _: ^2.1.8: 2.1.8 - ^3.4.1: 3.4.1 - 3.4.1: - $: sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g== - _: 'https://registry.npmjs.org/chokidar/-/chokidar-3.4.1.tgz' + '^3.4.0,^3.4.1': 3.5.1 + 3.5.1: + $: sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== + _: 'https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz' dependencies: anymatch: ~3.1.1 braces: ~3.0.2 @@ -3036,9 +2981,9 @@ chokidar: is-binary-path: ~2.1.0 is-glob: ~4.0.1 normalize-path: ~3.0.0 - readdirp: ~3.4.0 + readdirp: ~3.5.0 optionalDependencies: - fsevents: ~2.1.2 + fsevents: ~2.3.1 2.1.8: $: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== _: 'https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz' @@ -3103,19 +3048,19 @@ class-utils: isobject: ^3.0.0 static-extend: ^0.1.1 clean-stack: - _latest: 3.0.0 + _latest: 3.0.1 _: ^2.0.0: 2.2.0 2.2.0: $: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== _: 'https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz' cli-boxes: - _latest: 2.2.0 + _latest: 3.0.0 _: - ^2.2.0: 2.2.0 - 2.2.0: - $: sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== - _: 'https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.0.tgz' + ^2.2.0: 2.2.1 + 2.2.1: + $: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== + _: 'https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz' cli-cursor: _latest: 3.1.0 _: @@ -3126,7 +3071,7 @@ cli-cursor: dependencies: restore-cursor: ^3.1.0 cliui: - _latest: 6.0.0 + _latest: 7.0.4 _: ^5.0.0: 5.0.0 ^6.0.0: 6.0.0 @@ -3166,15 +3111,15 @@ collection-visit: map-visit: ^1.0.0 object-visit: ^1.0.0 color: - _latest: 3.1.2 + _latest: 3.1.3 _: - ^3.0.0: 3.1.2 - 3.1.2: - $: sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== - _: 'https://registry.npmjs.org/color/-/color-3.1.2.tgz' + ^3.0.0: 3.1.3 + 3.1.3: + $: sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== + _: 'https://registry.npmjs.org/color/-/color-3.1.3.tgz' dependencies: color-convert: ^1.9.1 - color-string: ^1.5.2 + color-string: ^1.5.4 color-convert: _latest: 2.0.1 _: @@ -3202,19 +3147,19 @@ color-name: $: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= _: 'https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz' color-string: - _latest: 1.5.3 + _latest: 1.5.4 _: - ^1.5.2: 1.5.3 - 1.5.3: - $: sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== - _: 'https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz' + ^1.5.4: 1.5.4 + 1.5.4: + $: sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== + _: 'https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz' dependencies: color-name: ^1.0.0 simple-swizzle: ^0.2.2 colorette: _latest: 1.2.1 _: - ^1.2.0: 1.2.1 + ^1.2.1: 1.2.1 1.2.1: $: sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== _: 'https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz' @@ -3235,7 +3180,7 @@ combined-stream: dependencies: delayed-stream: ~1.0.0 commander: - _latest: 6.0.0 + _latest: 7.0.0 _: ^2.20.0: 2.20.3 ^4.0.1: 4.1.1 @@ -3330,22 +3275,22 @@ copy-descriptor: $: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= _: 'https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz' core-js: - _latest: 3.6.5 + _latest: 3.8.3 _: - ^3.6.5: 3.6.5 - 3.6.5: + ^3.6.5: 3.8.3 + 3.8.3: hasI: 1 - $: sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== - _: 'https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz' + $: sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q== + _: 'https://registry.npmjs.org/core-js/-/core-js-3.8.3.tgz' core-js-compat: - _latest: 3.6.5 + _latest: 3.8.3 _: - ^3.6.2: 3.6.5 - 3.6.5: - $: sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng== - _: 'https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz' + ^3.8.0: 3.8.3 + 3.8.3: + $: sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog== + _: 'https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.3.tgz' dependencies: - browserslist: ^4.8.5 + browserslist: ^4.16.1 semver: 7.0.0 core-util-is: _latest: 1.0.2 @@ -3355,7 +3300,7 @@ core-util-is: $: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= _: 'https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz' cosmiconfig: - _latest: 6.0.0 + _latest: 7.0.0 _: ^5.0.0: 5.2.1 5.2.1: @@ -3367,15 +3312,15 @@ cosmiconfig: js-yaml: ^3.13.1 parse-json: ^4.0.0 create-ecdh: - _latest: 4.0.3 + _latest: 4.0.4 _: - ^4.0.0: 4.0.3 - 4.0.3: - $: sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== - _: 'https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz' + ^4.0.0: 4.0.4 + 4.0.4: + $: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== + _: 'https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz' dependencies: bn.js: ^4.1.0 - elliptic: ^6.0.0 + elliptic: ^6.5.3 create-hash: _latest: 1.2.0 _: @@ -3451,7 +3396,7 @@ css-color-names: $: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= _: 'https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz' css-declaration-sorter: - _latest: 5.1.2 + _latest: 6.0.2 _: ^4.0.1: 4.0.1 4.0.1: @@ -3461,7 +3406,7 @@ css-declaration-sorter: postcss: ^7.0.1 timsort: ^0.3.0 css-loader: - _latest: 4.2.2 + _latest: 5.0.1 _: ^1.0.1: 1.0.1 1.0.1: @@ -3496,28 +3441,8 @@ css-modules-loader-core: postcss-modules-local-by-default: 1.2.0 postcss-modules-scope: 1.1.0 postcss-modules-values: 1.3.0 -css-modules-require-hook: - _latest: 4.2.3 - _: - ^4.0.2: 4.2.3 - 4.2.3: - $: sha1-Z5LKQSsV4j5vm+agfc739Xf/kE0= - _: 'https://registry.npmjs.org/css-modules-require-hook/-/css-modules-require-hook-4.2.3.tgz' - dependencies: - debug: ^2.2.0 - generic-names: ^1.0.1 - glob-to-regexp: ^0.3.0 - icss-replace-symbols: ^1.0.2 - lodash: ^4.3.0 - postcss: ^6.0.1 - postcss-modules-extract-imports: ^1.0.0 - postcss-modules-local-by-default: ^1.0.1 - postcss-modules-resolve-imports: ^1.3.0 - postcss-modules-scope: ^1.0.0 - postcss-modules-values: ^1.1.1 - seekout: ^1.0.1 css-select: - _latest: 2.1.0 + _latest: 3.1.2 _: ^2.0.0: 2.1.0 2.1.0: @@ -3546,15 +3471,15 @@ css-selector-tokenizer: cssesc: ^3.0.0 fastparse: ^1.1.2 css-tree: - _latest: 1.0.0-alpha.39 + _latest: 1.1.2 _: 1.0.0-alpha.37: 1.0.0-alpha.37 - 1.0.0-alpha.39: 1.0.0-alpha.39 - 1.0.0-alpha.39: - $: sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA== - _: 'https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.39.tgz' + ^1.1.2: 1.1.2 + 1.1.2: + $: sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ== + _: 'https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz' dependencies: - mdn-data: 2.0.6 + mdn-data: 2.0.14 source-map: ^0.6.1 1.0.0-alpha.37: $: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== @@ -3563,12 +3488,12 @@ css-tree: mdn-data: 2.0.4 source-map: ^0.6.1 css-what: - _latest: 3.3.0 + _latest: 4.0.0 _: - ^3.2.1: 3.3.0 - 3.3.0: - $: sha512-pv9JPyatiPaQ6pf4OvD/dbfm0o5LviWmwxNWzblYf/1u9QZd0ihV+PMwy5jdQWQ3349kZmKEx9WXuSka2dM4cg== - _: 'https://registry.npmjs.org/css-what/-/css-what-3.3.0.tgz' + ^3.2.1: 3.4.2 + 3.4.2: + $: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== + _: 'https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz' cssesc: _latest: 3.0.0 _: @@ -3657,14 +3582,14 @@ cssnano-util-same-parent: $: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== _: 'https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz' csso: - _latest: 4.0.3 + _latest: 4.2.0 _: - ^4.0.2: 4.0.3 - 4.0.3: - $: sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ== - _: 'https://registry.npmjs.org/csso/-/csso-4.0.3.tgz' + ^4.0.2: 4.2.0 + 4.2.0: + $: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + _: 'https://registry.npmjs.org/csso/-/csso-4.2.0.tgz' dependencies: - css-tree: 1.0.0-alpha.39 + css-tree: ^1.1.2 cycle: _latest: 1.0.3 _: @@ -3696,10 +3621,16 @@ dateformat: $: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== _: 'https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz' debug: - _latest: 4.1.1 + _latest: 4.3.1 _: '2.6.9,^2.2.0,^2.3.3': 2.6.9 - '^4.0.0,^4.0.1,^4.1.0,^4.1.1': 4.1.1 + ^4.0.0: 4.1.1 + '^4.0.1,^4.1.0,^4.1.1': 4.3.1 + 4.3.1: + $: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== + _: 'https://registry.npmjs.org/debug/-/debug-4.3.1.tgz' + dependencies: + ms: 2.1.2 4.1.1: $: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== _: 'https://registry.npmjs.org/debug/-/debug-4.1.1.tgz' @@ -3712,7 +3643,7 @@ debug: dependencies: ms: 2.0.0 decamelize: - _latest: 4.0.0 + _latest: 5.0.0 _: ^1.2.0: 1.2.0 1.2.0: @@ -3751,7 +3682,7 @@ default-require-extensions: define-properties: _latest: 1.1.3 _: - '^1.1.2,^1.1.3': 1.1.3 + ^1.1.3: 1.1.3 1.1.3: $: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== _: 'https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz' @@ -3844,7 +3775,7 @@ doctrine: dependencies: esutils: ^2.0.2 dom-serializer: - _latest: 1.0.1 + _latest: 1.2.0 _: '0': 0.2.2 0.2.2: @@ -3854,25 +3785,25 @@ dom-serializer: domelementtype: ^2.0.1 entities: ^2.0.0 domain-browser: - _latest: 4.15.0 + _latest: 4.19.0 _: ^1.1.1: 1.2.0 1.2.0: $: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== _: 'https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz' domelementtype: - _latest: 2.0.1 + _latest: 2.1.0 _: '1': 1.3.1 - ^2.0.1: 2.0.1 - 2.0.1: - $: sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== - _: 'https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz' + ^2.0.1: 2.1.0 + 2.1.0: + $: sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== + _: 'https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz' 1.3.1: $: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== _: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz' domutils: - _latest: 2.1.0 + _latest: 2.4.4 _: ^1.7.0: 1.7.0 1.7.0: @@ -3882,12 +3813,12 @@ domutils: dom-serializer: '0' domelementtype: '1' dot-prop: - _latest: 5.2.0 + _latest: 6.0.1 _: - ^5.2.0: 5.2.0 - 5.2.0: - $: sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A== - _: 'https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz' + ^5.2.0: 5.3.0 + 5.3.0: + $: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + _: 'https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz' dependencies: is-obj: ^2.0.0 duplexify: @@ -3949,16 +3880,16 @@ electrode-node-resolver: dependencies: require-at: ^1.0.6 electron-to-chromium: - _latest: 1.3.504 + _latest: 1.3.644 _: - ^1.3.488: 1.3.504 - 1.3.504: - $: sha512-yOXnuPaaLAIZUVuXHYDCo3EeaiEfbFgYWCPH1tBMp+jznCq/zQYKnf6HmkKBmLJ0VES81avl18JZO1lx/XAHOw== - _: 'https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.504.tgz' + ^1.3.634: 1.3.644 + 1.3.644: + $: sha512-N7FLvjDPADxad+OXXBuYfcvDvCBG0aW8ZZGr7G91sZMviYbnQJFxdSvUus4SJ0K7Q8dzMxE+Wx1d/CrJIIJ0sw== + _: 'https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.644.tgz' elliptic: _latest: 6.5.3 _: - '^6.0.0,^6.5.2': 6.5.3 + ^6.5.3: 6.5.3 6.5.3: $: sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== _: 'https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz' @@ -3971,7 +3902,7 @@ elliptic: minimalistic-assert: ^1.0.0 minimalistic-crypto-utils: ^1.0.0 emoji-regex: - _latest: 9.0.0 + _latest: 9.2.0 _: ^7.0.1: 7.0.3 ^8.0.0: 8.0.0 @@ -3984,14 +3915,10 @@ emoji-regex: emojis-list: _latest: 3.0.0 _: - ^2.0.0: 2.1.0 ^3.0.0: 3.0.0 3.0.0: $: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== _: 'https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz' - 2.1.0: - $: sha1-TapNnbAPmBmIDHn6RXrlsJof04k= - _: 'https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz' end-of-stream: _latest: 1.4.4 _: @@ -4002,12 +3929,12 @@ end-of-stream: dependencies: once: ^1.4.0 enhanced-resolve: - _latest: 5.4.0 + _latest: 5.7.0 _: - '^4.1.1,^4.3.0': 4.3.0 - 4.3.0: - $: sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ== - _: 'https://npme.walmart.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz' + '^4.1.1,^4.5.0': 4.5.0 + 4.5.0: + $: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== + _: 'https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz' dependencies: graceful-fs: ^4.1.2 memory-fs: ^0.5.0 @@ -4022,23 +3949,23 @@ enquirer: dependencies: ansi-colors: ^4.1.1 entities: - _latest: 2.0.3 + _latest: 2.1.0 _: ^1.1.2: 1.1.2 - ^2.0.0: 2.0.3 - 2.0.3: - $: sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== - _: 'https://registry.npmjs.org/entities/-/entities-2.0.3.tgz' + ^2.0.0: 2.1.0 + 2.1.0: + $: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== + _: 'https://registry.npmjs.org/entities/-/entities-2.1.0.tgz' 1.1.2: $: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== _: 'https://registry.npmjs.org/entities/-/entities-1.1.2.tgz' errno: - _latest: 0.1.7 + _latest: 1.0.0 _: - '^0.1.3,~0.1.7': 0.1.7 - 0.1.7: - $: sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== - _: 'https://registry.npmjs.org/errno/-/errno-0.1.7.tgz' + '^0.1.3,~0.1.7': 0.1.8 + 0.1.8: + $: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== + _: 'https://registry.npmjs.org/errno/-/errno-0.1.8.tgz' dependencies: prr: ~1.0.1 error-ex: @@ -4053,37 +3980,39 @@ error-ex: es-abstract: _latest: 1.17.7 _: - '^1.17.0-next.1,^1.17.2,^1.17.5': 1.17.6 - '^1.18.0-next.0,^1.18.0-next.1': 1.18.0-next.1 - 1.18.0-next.1: - $: sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== - _: 'https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz' + '^1.17.0-next.1,^1.17.2': 1.17.7 + ^1.18.0-next.1: 1.18.0-next.2 + 1.18.0-next.2: + $: sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw== + _: 'https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz' dependencies: + call-bind: ^1.0.2 es-to-primitive: ^1.2.1 function-bind: ^1.1.1 + get-intrinsic: ^1.0.2 has: ^1.0.3 has-symbols: ^1.0.1 is-callable: ^1.2.2 - is-negative-zero: ^2.0.0 + is-negative-zero: ^2.0.1 is-regex: ^1.1.1 - object-inspect: ^1.8.0 + object-inspect: ^1.9.0 object-keys: ^1.1.1 - object.assign: ^4.1.1 - string.prototype.trimend: ^1.0.1 - string.prototype.trimstart: ^1.0.1 - 1.17.6: - $: sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== - _: 'https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz' + object.assign: ^4.1.2 + string.prototype.trimend: ^1.0.3 + string.prototype.trimstart: ^1.0.3 + 1.17.7: + $: sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== + _: 'https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz' dependencies: es-to-primitive: ^1.2.1 function-bind: ^1.1.1 has: ^1.0.3 has-symbols: ^1.0.1 - is-callable: ^1.2.0 - is-regex: ^1.1.0 - object-inspect: ^1.7.0 + is-callable: ^1.2.2 + is-regex: ^1.1.1 + object-inspect: ^1.8.0 object-keys: ^1.1.1 - object.assign: ^4.1.0 + object.assign: ^4.1.1 string.prototype.trimend: ^1.0.1 string.prototype.trimstart: ^1.0.1 es-to-primitive: @@ -4105,12 +4034,12 @@ es6-error: $: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== _: 'https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz' escalade: - _latest: 3.0.2 + _latest: 3.1.1 _: - ^3.0.1: 3.0.2 - 3.0.2: - $: sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ== - _: 'https://registry.npmjs.org/escalade/-/escalade-3.0.2.tgz' + ^3.1.1: 3.1.1 + 3.1.1: + $: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + _: 'https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz' escape-html: _latest: 1.0.3 _: @@ -4126,15 +4055,15 @@ escape-string-regexp: $: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= _: 'https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz' eslint: - _latest: 7.15.0 + _latest: 7.18.0 _: - ^7.15.0: 7.15.0 - 7.15.0: - $: sha512-Vr64xFDT8w30wFll643e7cGrIkPEU50yIiI36OdSIDoSGguIeaLzBo0vpGvzo9RECUqq7htURfwEtKqwytkqzA== - _: 'https://registry.npmjs.org/eslint/-/eslint-7.15.0.tgz' + ^7.15.0: 7.18.0 + 7.18.0: + $: sha512-fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ== + _: 'https://registry.npmjs.org/eslint/-/eslint-7.18.0.tgz' dependencies: '@babel/code-frame': ^7.0.0 - '@eslint/eslintrc': ^0.2.2 + '@eslint/eslintrc': ^0.3.0 ajv: ^6.10.0 chalk: ^4.0.0 cross-spawn: ^7.0.2 @@ -4158,7 +4087,7 @@ eslint: js-yaml: ^3.13.1 json-stable-stringify-without-jsonify: ^1.0.1 levn: ^0.4.1 - lodash: ^4.17.19 + lodash: ^4.17.20 minimatch: ^3.0.4 natural-compare: ^1.4.0 optionator: ^0.9.1 @@ -4167,7 +4096,7 @@ eslint: semver: ^7.2.1 strip-ansi: ^6.0.0 strip-json-comments: ^3.1.0 - table: ^5.2.3 + table: ^6.0.4 text-table: ^0.2.0 v8-compile-cache: ^2.0.3 eslint-config-walmart: @@ -4176,7 +4105,7 @@ eslint-config-walmart: ^2.2.1: 2.2.1 2.2.1: $: sha512-0z0rXi8DbqSJanJq5lKnDuKBs4hMsx9Qp3Ksl9QWYzvqG/8ibzbraGKDy3b44JD3ZZEbBig3BvpWXP9Sw0E+3A== - _: 'https://npme.walmart.com/eslint-config-walmart/-/eslint-config-walmart-2.2.1.tgz' + _: 'https://registry.npmjs.org/eslint-config-walmart/-/eslint-config-walmart-2.2.1.tgz' eslint-plugin-filenames: _latest: 1.3.2 _: @@ -4197,7 +4126,7 @@ eslint-plugin-flowtype: ^5.2.0: 5.2.0 5.2.0: $: sha512-z7ULdTxuhlRJcEe1MVljePXricuPOrsWfScRXFhNzVD5dmTHWjIF57AxD0e7AbEoLSbjSsaA5S+hCg43WvpXJQ== - _: 'https://npme.walmart.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.2.0.tgz' + _: 'https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.2.0.tgz' dependencies: lodash: ^4.17.15 string-natural-compare: ^3.0.1 @@ -4216,12 +4145,12 @@ eslint-plugin-mocha: peerDependencies: eslint: '>=7.0.0' eslint-plugin-react: - _latest: 7.21.5 + _latest: 7.22.0 _: - ^7.21.5: 7.21.5 - 7.21.5: - $: sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L/xsR6g== - _: 'https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz' + ^7.21.5: 7.22.0 + 7.22.0: + $: sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA== + _: 'https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz' dependencies: array-includes: ^3.1.1 array.prototype.flatmap: ^1.2.3 @@ -4303,22 +4232,16 @@ esquery: esrecurse: _latest: 4.3.0 _: - ^4.1.0: 4.2.1 - ^4.3.0: 4.3.0 + '^4.1.0,^4.3.0': 4.3.0 4.3.0: $: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== _: 'https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz' dependencies: estraverse: ^5.2.0 - 4.2.1: - $: sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== - _: 'https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz' - dependencies: - estraverse: ^4.1.0 estraverse: - _latest: 5.1.0 + _latest: 5.2.0 _: - '^4.1.0,^4.1.1': 4.3.0 + ^4.1.1: 4.3.0 '^5.1.0,^5.2.0': 5.2.0 5.2.0: $: sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== @@ -4334,12 +4257,12 @@ esutils: $: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== _: 'https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz' eventemitter3: - _latest: 4.0.4 + _latest: 4.0.7 _: - ^4.0.0: 4.0.4 - 4.0.4: - $: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== - _: 'https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz' + ^4.0.0: 4.0.7 + 4.0.7: + $: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + _: 'https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz' events: _latest: 3.2.0 _: @@ -4564,7 +4487,7 @@ file-entry-cache: dependencies: flat-cache: ^3.0.4 file-loader: - _latest: 6.0.0 + _latest: 6.2.0 _: ^2.0.0: 2.0.0 2.0.0: @@ -4611,7 +4534,7 @@ find-cache-dir: _latest: 3.3.1 _: '^2.0.0,^2.1.0': 2.1.0 - ^3.2.0: 3.3.1 + '^3.2.0,^3.3.1': 3.3.1 3.3.1: $: sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== _: 'https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz' @@ -4638,7 +4561,7 @@ find-my-way: safe-regex2: ^2.0.0 semver-store: ^0.3.0 find-up: - _latest: 4.1.0 + _latest: 5.0.0 _: ^3.0.0: 3.0.0 '^4.0.0,^4.1.0': 4.1.0 @@ -4683,12 +4606,12 @@ flatstr: $: sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw== _: 'https://registry.npmjs.org/flatstr/-/flatstr-1.0.12.tgz' flatted: - _latest: 3.1.0 + _latest: 3.1.1 _: - ^3.1.0: 3.1.0 - 3.1.0: - $: sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA== - _: 'https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz' + ^3.1.0: 3.1.1 + 3.1.1: + $: sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA== + _: 'https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz' flush-write-stream: _latest: 2.0.0 _: @@ -4700,12 +4623,12 @@ flush-write-stream: inherits: ^2.0.3 readable-stream: ^2.3.6 follow-redirects: - _latest: 1.12.1 + _latest: 1.13.1 _: - ^1.0.0: 1.12.1 - 1.12.1: - $: sha512-tmRv0AVuR7ZyouUHLeNSiO6pqulF7dYa3s19c6t+wz9LD69/uSzdMxJ2S91nTI9U3rt/IldxpzMOFejp6f0hjg== - _: 'https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.12.1.tgz' + ^1.0.0: 1.13.1 + 1.13.1: + $: sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg== + _: 'https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz' for-in: _latest: 1.0.2 _: @@ -4768,24 +4691,24 @@ from2: inherits: ^2.0.1 readable-stream: ^2.0.0 fromentries: - _latest: 1.2.1 + _latest: 1.3.2 _: - ^1.2.0: 1.2.1 - 1.2.1: - $: sha512-Xu2Qh8yqYuDhQGOhD5iJGninErSfI9A3FrriD3tjUgV5VbJFeH8vfgZ9HnC6jWN80QDVNQK5vmxRAmEAp7Mevw== - _: 'https://registry.npmjs.org/fromentries/-/fromentries-1.2.1.tgz' + ^1.2.0: 1.3.2 + 1.3.2: + $: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg== + _: 'https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz' fs-extra: - _latest: 9.0.1 + _latest: 9.1.0 _: - ^9.0.1: 9.0.1 - 9.0.1: - $: sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== - _: 'https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz' + ^9.0.1: 9.1.0 + 9.1.0: + $: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + _: 'https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz' dependencies: at-least-node: ^1.0.0 graceful-fs: ^4.2.0 jsonfile: ^6.0.1 - universalify: ^1.0.0 + universalify: ^2.0.0 fs-readdir-recursive: _latest: 1.1.0 _: @@ -4813,13 +4736,13 @@ fs.realpath: $: sha1-FQStJSMVjKpA20onh8sBQRmU6k8= _: 'https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz' fsevents: - _latest: 2.1.3 + _latest: 2.3.1 _: ^1.2.7: 1.2.13 - ~2.1.2: 2.1.3 - 2.1.3: - $: sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== - _: 'https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz' + ~2.3.1: 2.3.1 + 2.3.1: + $: sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw== + _: 'https://registry.npmjs.org/fsevents/-/fsevents-2.3.1.tgz' os: - darwin 1.2.13: @@ -4849,25 +4772,19 @@ functional-red-black-tree: generic-names: _latest: 3.0.0 _: - ^1.0.1: 1.0.3 ^2.0.1: 2.0.1 2.0.1: $: sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ== _: 'https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz' dependencies: loader-utils: ^1.1.0 - 1.0.3: - $: sha1-LXhqEhruUIh2eWk56OO/+DbCCRc= - _: 'https://registry.npmjs.org/generic-names/-/generic-names-1.0.3.tgz' - dependencies: - loader-utils: ^0.2.16 gensync: - _latest: 1.0.0-beta.1 + _latest: 1.0.0-beta.2 _: - ^1.0.0-beta.1: 1.0.0-beta.1 - 1.0.0-beta.1: - $: sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== - _: 'https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz' + ^1.0.0-beta.1: 1.0.0-beta.2 + 1.0.0-beta.2: + $: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + _: 'https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz' get-caller-file: _latest: 2.0.5 _: @@ -4876,12 +4793,12 @@ get-caller-file: $: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== _: 'https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz' get-intrinsic: - _latest: 1.0.1 + _latest: 1.0.2 _: - '^1.0.0,^1.0.1': 1.0.1 - 1.0.1: - $: sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg== - _: 'https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz' + '^1.0.1,^1.0.2': 1.0.2 + 1.0.2: + $: sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg== + _: 'https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz' dependencies: function-bind: ^1.1.1 has: ^1.0.3 @@ -4939,13 +4856,6 @@ glob-parent: dependencies: is-glob: ^3.1.0 path-dirname: ^1.0.0 -glob-to-regexp: - _latest: 0.4.1 - _: - ^0.3.0: 0.3.0 - 0.3.0: - $: sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= - _: 'https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz' global-modules: _latest: 2.0.0 _: @@ -4985,7 +4895,7 @@ global-prefix: is-windows: ^1.0.1 which: ^1.2.14 globals: - _latest: 13.3.0 + _latest: 13.5.0 _: ^11.1.0: 11.12.0 ^12.1.0: 12.4.0 @@ -5071,7 +4981,7 @@ has-flag: has-symbols: _latest: 1.0.1 _: - '^1.0.0,^1.0.1': 1.0.1 + ^1.0.1: 1.0.1 1.0.1: $: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== _: 'https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz' @@ -5130,12 +5040,12 @@ hash.js: inherits: ^2.0.3 minimalistic-assert: ^1.0.1 hasha: - _latest: 5.2.0 + _latest: 5.2.2 _: - ^5.0.0: 5.2.0 - 5.2.0: - $: sha512-2W+jKdQbAdSIrggA8Q35Br8qKadTrqCTC8+XZvBWepKDK6m9XkX6Iz1a2yh2KP01kzAR/dpuMeUnocoLYDcskw== - _: 'https://registry.npmjs.org/hasha/-/hasha-5.2.0.tgz' + ^5.0.0: 5.2.2 + 5.2.2: + $: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ== + _: 'https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz' dependencies: is-stream: ^2.0.0 type-fest: ^0.8.0 @@ -5190,7 +5100,7 @@ homedir-polyfill: dependencies: parse-passwd: ^1.0.0 hosted-git-info: - _latest: 3.0.5 + _latest: 3.0.7 _: ^2.1.4: 2.8.8 2.8.8: @@ -5230,12 +5140,12 @@ html-comment-regex: $: sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== _: 'https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz' html-entities: - _latest: 1.3.1 + _latest: 2.0.4 _: - ^1.2.0: 1.3.1 - 1.3.1: - $: sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA== - _: 'https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz' + ^1.2.0: 1.4.0 + 1.4.0: + $: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA== + _: 'https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz' html-escaper: _latest: 3.0.0 _: @@ -5306,15 +5216,9 @@ icss-replace-symbols: $: sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= _: 'https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz' icss-utils: - _latest: 4.1.1 + _latest: 5.1.0 _: ^2.1.0: 2.1.0 - ^3.0.1: 3.0.1 - 3.0.1: - $: sha1-7nDTroysOMa+XtkehRsn7tNDrQ8= - _: 'https://registry.npmjs.org/icss-utils/-/icss-utils-3.0.1.tgz' - dependencies: - postcss: ^6.0.2 2.1.0: $: sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI= _: 'https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz' @@ -5330,12 +5234,12 @@ identity-obj-proxy: dependencies: harmony-reflect: ^1.4.6 ieee754: - _latest: 1.1.13 + _latest: 1.2.1 _: - ^1.1.4: 1.1.13 - 1.1.13: - $: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== - _: 'https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz' + ^1.1.4: 1.2.1 + 1.2.1: + $: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + _: 'https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz' iferr: _latest: 1.0.2 _: @@ -5350,21 +5254,14 @@ ignore: 4.0.6: $: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== _: 'https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz' -ignore-styles: - _latest: 5.0.1 - _: - ^5.0.1: 5.0.1 - 5.0.1: - $: sha1-tJ7yJ0va/NikiAqWa/440aC/RnE= - _: 'https://registry.npmjs.org/ignore-styles/-/ignore-styles-5.0.1.tgz' import-fresh: - _latest: 3.2.2 + _latest: 3.3.0 _: ^2.0.0: 2.0.0 - '^3.0.0,^3.2.1': 3.2.2 - 3.2.2: - $: sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw== - _: 'https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz' + '^3.0.0,^3.2.1': 3.3.0 + 3.3.0: + $: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + _: 'https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz' dependencies: parent-module: ^1.0.0 resolve-from: ^4.0.0 @@ -5438,12 +5335,12 @@ inherits: $: sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= _: 'https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz' ini: - _latest: 1.3.5 + _latest: 2.0.0 _: - '^1.3.4,^1.3.5': 1.3.5 - 1.3.5: - $: sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== - _: 'https://registry.npmjs.org/ini/-/ini-1.3.5.tgz' + '^1.3.4,^1.3.5': 1.3.8 + 1.3.8: + $: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + _: 'https://registry.npmjs.org/ini/-/ini-1.3.8.tgz' insync: _latest: 2.1.1 _: @@ -5469,15 +5366,6 @@ interpret: 1.4.0: $: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== _: 'https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz' -invariant: - _latest: 2.2.4 - _: - '^2.2.2,^2.2.4': 2.2.4 - 2.2.4: - $: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - _: 'https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz' - dependencies: - loose-envify: ^1.0.0 ipaddr.js: _latest: 1.9.1 _: @@ -5534,7 +5422,7 @@ is-binary-path: dependencies: binary-extensions: ^1.0.0 is-buffer: - _latest: 2.0.4 + _latest: 2.0.5 _: ^1.1.5: 1.1.6 1.1.6: @@ -5543,14 +5431,10 @@ is-buffer: is-callable: _latest: 1.2.2 _: - '^1.1.4,^1.2.0': 1.2.0 - ^1.2.2: 1.2.2 + '^1.1.4,^1.2.2': 1.2.2 1.2.2: $: sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== _: 'https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz' - 1.2.0: - $: sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== - _: 'https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz' is-ci: _latest: 2.0.0 _: @@ -5702,7 +5586,7 @@ is-it-type: is-negative-zero: _latest: 2.0.1 _: - ^2.0.0: 2.0.1 + ^2.0.1: 2.0.1 2.0.1: $: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== _: 'https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz' @@ -5727,14 +5611,14 @@ is-obj: $: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== _: 'https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz' is-plain-obj: - _latest: 2.1.0 + _latest: 3.0.0 _: ^1.0.0: 1.1.0 1.1.0: $: sha1-caUMhCnfync8kqOQpKA7OfzVHT4= _: 'https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz' is-plain-object: - _latest: 4.1.0 + _latest: 5.0.0 _: '^2.0.3,^2.0.4': 2.0.4 2.0.4: @@ -5752,18 +5636,12 @@ is-promise: is-regex: _latest: 1.1.1 _: - ^1.1.0: 1.1.0 ^1.1.1: 1.1.1 1.1.1: $: sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== _: 'https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz' dependencies: has-symbols: ^1.0.1 - 1.1.0: - $: sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== - _: 'https://registry.npmjs.org/is-regex/-/is-regex-1.1.0.tgz' - dependencies: - has-symbols: ^1.0.1 is-resolvable: _latest: 1.1.0 _: @@ -6019,12 +5897,12 @@ json-parse-better-errors: $: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== _: 'https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz' json-parse-even-better-errors: - _latest: 2.3.0 + _latest: 2.3.1 _: - ^2.3.0: 2.3.0 - 2.3.0: - $: sha512-o3aP+RsWDJZayj1SbHNQAI8x0v3T3SKiGoZlNYfbUP1S3omJQ6i9CnqADqkSPaOAxwua4/1YWx5CM7oiChJt2Q== - _: 'https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.0.tgz' + ^2.3.0: 2.3.1 + 2.3.1: + $: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + _: 'https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz' json-schema: _latest: 0.2.5 _: @@ -6036,6 +5914,10 @@ json-schema-traverse: _latest: 0.4.1 _: ^0.4.1: 0.4.1 + ^1.0.0: 1.0.0 + 1.0.0: + $: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + _: 'https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz' 0.4.1: $: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== _: 'https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz' @@ -6056,7 +5938,6 @@ json-stringify-safe: json5: _latest: 2.1.3 _: - ^0.5.0: 0.5.1 ^1.0.1: 1.0.1 ^2.1.2: 2.1.3 2.1.3: @@ -6069,18 +5950,15 @@ json5: _: 'https://registry.npmjs.org/json5/-/json5-1.0.1.tgz' dependencies: minimist: ^1.2.0 - 0.5.1: - $: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= - _: 'https://registry.npmjs.org/json5/-/json5-0.5.1.tgz' jsonfile: - _latest: 6.0.1 + _latest: 6.1.0 _: - ^6.0.1: 6.0.1 - 6.0.1: - $: sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg== - _: 'https://registry.npmjs.org/jsonfile/-/jsonfile-6.0.1.tgz' + ^6.0.1: 6.1.0 + 6.1.0: + $: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + _: 'https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz' dependencies: - universalify: ^1.0.0 + universalify: ^2.0.0 optionalDependencies: graceful-fs: ^4.1.6 jsprim: @@ -6096,15 +5974,15 @@ jsprim: json-schema: 0.2.3 verror: 1.10.0 jsx-ast-utils: - _latest: 3.1.0 + _latest: 3.2.0 _: - '^2.4.1 || ^3.0.0': 3.1.0 - 3.1.0: - $: sha512-d4/UOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx/HzGgm9qnA147jVBdpOiQ2RA== - _: 'https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.1.0.tgz' + '^2.4.1 || ^3.0.0': 3.2.0 + 3.2.0: + $: sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q== + _: 'https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz' dependencies: - array-includes: ^3.1.1 - object.assign: ^4.1.1 + array-includes: ^3.1.2 + object.assign: ^4.1.2 kind-of: _latest: 6.0.3 _: @@ -6129,7 +6007,7 @@ kind-of: dependencies: is-buffer: ^1.1.5 kleur: - _latest: 4.0.2 + _latest: 4.1.4 _: ^3.0.3: 3.0.3 3.0.3: @@ -6149,22 +6027,9 @@ leven: _latest: 3.1.0 _: 2.1.0: 2.1.0 - ^3.1.0: 3.1.0 - 3.1.0: - $: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - _: 'https://registry.npmjs.org/leven/-/leven-3.1.0.tgz' 2.1.0: $: sha1-wuep93IJTe6dNCAq6KzORoeHVYA= _: 'https://registry.npmjs.org/leven/-/leven-2.1.0.tgz' -levenary: - _latest: 1.1.1 - _: - ^1.1.1: 1.1.1 - 1.1.1: - $: sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== - _: 'https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz' - dependencies: - leven: ^3.1.0 levn: _latest: 0.4.1 _: @@ -6195,7 +6060,7 @@ lines-and-columns: $: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= _: 'https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz' loader-runner: - _latest: 4.0.0 + _latest: 4.2.0 _: ^2.4.0: 2.4.0 2.4.0: @@ -6204,7 +6069,6 @@ loader-runner: loader-utils: _latest: 2.0.0 _: - ^0.2.16: 0.2.17 '^1.0.2,^1.1.0,^1.2.3,^1.4.0': 1.4.0 ^2.0.0: 2.0.0 2.0.0: @@ -6221,14 +6085,6 @@ loader-utils: big.js: ^5.2.2 emojis-list: ^3.0.0 json5: ^1.0.1 - 0.2.17: - $: sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g= - _: 'https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz' - dependencies: - big.js: ^3.1.3 - emojis-list: ^2.0.0 - json5: ^0.5.0 - object-assign: ^4.0.1 loadjs: _latest: 4.2.0 _: @@ -6237,7 +6093,7 @@ loadjs: $: sha512-AgQGZisAlTPbTEzrHPb6q+NYBMD+DP9uvGSIjSUM5uG+0jG15cb8axWpxuOIqrmQjn6scaaH8JwloiP27b2KXA== _: 'https://registry.npmjs.org/loadjs/-/loadjs-4.2.0.tgz' locate-path: - _latest: 5.0.0 + _latest: 6.0.0 _: ^3.0.0: 3.0.0 ^5.0.0: 5.0.0 @@ -6255,7 +6111,7 @@ locate-path: lodash: _latest: 4.17.19 _: - '^4.13.1,^4.17.10,^4.17.11,^4.17.14,^4.17.15,^4.17.19,^4.17.5,^4.3.0': 4.17.19 + '^4.13.1,^4.17.10,^4.17.11,^4.17.14,^4.17.15,^4.17.19,^4.17.5': 4.17.19 ^4.17.20: 4.17.20 4.17.20: $: sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== @@ -6398,7 +6254,7 @@ log-update: loose-envify: _latest: 1.4.0 _: - '^1.0.0,^1.1.0,^1.2.0,^1.3.1,^1.4.0': 1.4.0 + '^1.1.0,^1.2.0,^1.3.1,^1.4.0': 1.4.0 1.4.0: $: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== _: 'https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz' @@ -6409,6 +6265,12 @@ lru-cache: _: ^4.1.5: 4.1.5 ^5.1.1: 5.1.1 + ^6.0.0: 6.0.0 + 6.0.0: + $: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + _: 'https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz' + dependencies: + yallist: ^4.0.0 5.1.1: $: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== _: 'https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz' @@ -6424,7 +6286,7 @@ make-dir: _latest: 3.1.0 _: '^2.0.0,^2.1.0': 2.1.0 - '^3.0.0,^3.0.2': 3.1.0 + '^3.0.0,^3.0.2,^3.1.0': 3.1.0 3.1.0: $: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== _: 'https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz' @@ -6464,13 +6326,13 @@ md5.js: inherits: ^2.0.1 safe-buffer: ^5.1.2 mdn-data: - _latest: 2.0.10 + _latest: 2.0.15 _: + 2.0.14: 2.0.14 2.0.4: 2.0.4 - 2.0.6: 2.0.6 - 2.0.6: - $: sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA== - _: 'https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.6.tgz' + 2.0.14: + $: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + _: 'https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz' 2.0.4: $: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== _: 'https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz' @@ -6533,12 +6395,12 @@ miller-rabin: bn.js: ^4.0.0 brorand: ^1.0.1 mime: - _latest: 2.4.6 + _latest: 2.5.0 _: - '^2.4.4,^2.4.6': 2.4.6 - 2.4.6: - $: sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA== - _: 'https://registry.npmjs.org/mime/-/mime-2.4.6.tgz' + '^2.4.4,^2.4.6': 2.5.0 + 2.5.0: + $: sha512-ft3WayFSFUVBuJj7BMLKAQcSlItKtfjsKDDsii3rqFDAZ7t11zRe8ASw/GlmivGwVUYtwkQrxiGGpL6gFvB0ag== + _: 'https://registry.npmjs.org/mime/-/mime-2.5.0.tgz' mime-db: _latest: 1.44.0 _: @@ -6549,14 +6411,14 @@ mime-db: mime-types: _latest: 2.1.27 _: - '^2.1.12,^2.1.26,~2.1.18,~2.1.19,~2.1.24': 2.1.27 + '^2.1.12,^2.1.27,~2.1.18,~2.1.19,~2.1.24': 2.1.27 2.1.27: $: sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== _: 'https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz' dependencies: mime-db: 1.44.0 mimic-fn: - _latest: 3.0.0 + _latest: 3.1.0 _: ^2.1.0: 2.1.0 2.1.0: @@ -6576,7 +6438,7 @@ mini-create-react-context: prop-types: ^15.0.0 react: '^0.14.0 || ^15.0.0 || ^16.0.0' mini-css-extract-plugin: - _latest: 0.9.0 + _latest: 1.3.4 _: ^0.9.0: 0.9.0 0.9.0: @@ -6682,10 +6544,10 @@ mri: $: sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w== _: 'https://registry.npmjs.org/mri/-/mri-1.1.4.tgz' ms: - _latest: 2.1.2 + _latest: 2.1.3 _: 2.0.0: 2.0.0 - ^2.1.1: 2.1.2 + '2.1.2,^2.1.1': 2.1.2 2.1.2: $: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== _: 'https://registry.npmjs.org/ms/-/ms-2.1.2.tgz' @@ -6700,12 +6562,12 @@ munchy: $: sha512-S50xIaqpFuwe2shmDu8fpycRZ8IrUYyxhtP5fpL2mYQjqNvacw67EMFaxUFMDhSh7sfxaZrY1YiZlExZn9VFBw== _: 'https://registry.npmjs.org/munchy/-/munchy-1.0.9.tgz' nan: - _latest: 2.14.1 + _latest: 2.14.2 _: - ^2.12.1: 2.14.1 - 2.14.1: - $: sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== - _: 'https://registry.npmjs.org/nan/-/nan-2.14.1.tgz' + ^2.12.1: 2.14.2 + 2.14.2: + $: sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== + _: 'https://registry.npmjs.org/nan/-/nan-2.14.2.tgz' nanomatch: _latest: 1.2.13 _: @@ -6747,7 +6609,7 @@ neo-async: $: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== _: 'https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz' nice-try: - _latest: 2.0.1 + _latest: 2.1.0 _: ^1.0.4: 1.0.5 1.0.5: @@ -6810,12 +6672,12 @@ node-preload: dependencies: process-on-spawn: ^1.0.0 node-releases: - _latest: 1.1.59 + _latest: 1.1.70 _: - ^1.1.58: 1.1.59 - 1.1.59: - $: sha512-H3JrdUczbdiwxN5FuJPyCHnGHIFqQ0wWxo+9j1kAXAzqNMAHlo+4I/sYYxpyK0irQ73HgdiyzD32oqQDcU2Osw== - _: 'https://registry.npmjs.org/node-releases/-/node-releases-1.1.59.tgz' + ^1.1.69: 1.1.70 + 1.1.70: + $: sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== + _: 'https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz' nodent-runtime: _latest: 3.2.1 _: @@ -6832,7 +6694,7 @@ nodent-transform: $: sha512-4a5FH4WLi+daH/CGD5o/JWRR8W5tlCkd3nrDSkxbOzscJTyTUITltvOJeQjg3HJ1YgEuNyiPhQbvbtRjkQBByQ== _: 'https://registry.npmjs.org/nodent-transform/-/nodent-transform-3.2.9.tgz' normalize-package-data: - _latest: 2.5.0 + _latest: 3.0.0 _: ^2.5.0: 2.5.0 2.5.0: @@ -6864,7 +6726,7 @@ normalize-range: $: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= _: 'https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz' normalize-url: - _latest: 5.0.0 + _latest: 5.3.0 _: 1.9.1: 1.9.1 ^3.0.0: 3.3.0 @@ -6880,7 +6742,7 @@ normalize-url: query-string: ^4.1.0 sort-keys: ^1.0.0 nth-check: - _latest: 1.0.2 + _latest: 2.0.0 _: ^1.0.2: 1.0.2 1.0.2: @@ -6956,7 +6818,7 @@ object-copy: define-property: ^0.2.5 kind-of: ^3.0.3 object-hash: - _latest: 2.0.3 + _latest: 2.1.1 _: ^1.3.1: 1.3.1 1.3.1: @@ -6965,18 +6827,14 @@ object-hash: object-inspect: _latest: 1.9.0 _: - ^1.7.0: 1.8.0 - ^1.8.0: 1.9.0 + '^1.8.0,^1.9.0': 1.9.0 1.9.0: $: sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== _: 'https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz' - 1.8.0: - $: sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== - _: 'https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz' object-keys: _latest: 1.1.1 _: - '^1.0.11,^1.0.12,^1.1.1': 1.1.1 + '^1.0.12,^1.1.1': 1.1.1 1.1.1: $: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== _: 'https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz' @@ -6990,10 +6848,9 @@ object-visit: dependencies: isobject: ^3.0.0 object.assign: - _latest: 4.1.0 + _latest: 4.1.2 _: - ^4.1.0: 4.1.0 - ^4.1.1: 4.1.2 + '^4.1.0,^4.1.1,^4.1.2': 4.1.2 4.1.2: $: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== _: 'https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz' @@ -7002,14 +6859,6 @@ object.assign: define-properties: ^1.1.3 has-symbols: ^1.0.1 object-keys: ^1.1.1 - 4.1.0: - $: sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== - _: 'https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz' - dependencies: - define-properties: ^1.1.2 - function-bind: ^1.1.1 - has-symbols: ^1.0.0 - object-keys: ^1.0.11 object.entries: _latest: 1.1.3 _: @@ -7035,15 +6884,16 @@ object.fromentries: es-abstract: ^1.18.0-next.1 has: ^1.0.3 object.getownpropertydescriptors: - _latest: 2.1.0 + _latest: 2.1.1 _: - ^2.1.0: 2.1.0 - 2.1.0: - $: sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== - _: 'https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz' + ^2.1.0: 2.1.1 + 2.1.1: + $: sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng== + _: 'https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz' dependencies: + call-bind: ^1.0.0 define-properties: ^1.1.3 - es-abstract: ^1.17.0-next.1 + es-abstract: ^1.18.0-next.1 object.pick: _latest: 1.3.0 _: @@ -7056,8 +6906,7 @@ object.pick: object.values: _latest: 1.1.2 _: - ^1.1.0: 1.1.1 - ^1.1.1: 1.1.2 + '^1.1.0,^1.1.1': 1.1.2 1.1.2: $: sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag== _: 'https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz' @@ -7066,14 +6915,6 @@ object.values: define-properties: ^1.1.3 es-abstract: ^1.18.0-next.1 has: ^1.0.3 - 1.1.1: - $: sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== - _: 'https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz' - dependencies: - define-properties: ^1.1.3 - es-abstract: ^1.17.0-next.1 - function-bind: ^1.1.1 - has: ^1.0.3 obuf: _latest: 1.1.2 _: @@ -7091,21 +6932,21 @@ once: dependencies: wrappy: '1' onetime: - _latest: 5.1.0 + _latest: 5.1.2 _: - ^5.1.0: 5.1.0 - 5.1.0: - $: sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== - _: 'https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz' + ^5.1.0: 5.1.2 + 5.1.2: + $: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + _: 'https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz' dependencies: mimic-fn: ^2.1.0 optimize-css-assets-webpack-plugin: - _latest: 5.0.3 + _latest: 5.0.4 _: - ^5.0.1: 5.0.3 - 5.0.3: - $: sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA== - _: 'https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz' + ^5.0.1: 5.0.4 + 5.0.4: + $: sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A== + _: 'https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz' dependencies: cssnano: ^4.1.10 last-call-webpack-plugin: ^3.0.0 @@ -7140,7 +6981,7 @@ os-browserify: $: sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= _: 'https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz' p-limit: - _latest: 3.0.2 + _latest: 3.1.0 _: '^2.0.0,^2.2.0': 2.3.0 2.3.0: @@ -7149,7 +6990,7 @@ p-limit: dependencies: p-try: ^2.0.0 p-locate: - _latest: 4.1.0 + _latest: 5.0.0 _: ^3.0.0: 3.0.0 ^4.1.0: 4.1.0 @@ -7192,7 +7033,7 @@ package-hash: lodash.flattendeep: ^4.4.0 release-zalgo: ^1.0.0 pako: - _latest: 1.0.11 + _latest: 2.0.3 _: ~1.0.5: 1.0.11 1.0.11: @@ -7219,27 +7060,26 @@ parent-module: dependencies: callsites: ^3.0.0 parse-asn1: - _latest: 5.1.5 + _latest: 5.1.6 _: - '^5.0.0,^5.1.5': 5.1.5 - 5.1.5: - $: sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== - _: 'https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz' + '^5.0.0,^5.1.5': 5.1.6 + 5.1.6: + $: sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== + _: 'https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz' dependencies: - asn1.js: ^4.0.0 + asn1.js: ^5.2.0 browserify-aes: ^1.0.0 - create-hash: ^1.1.0 evp_bytestokey: ^1.0.0 pbkdf2: ^3.0.3 safe-buffer: ^5.1.1 parse-json: - _latest: 5.1.0 + _latest: 5.2.0 _: ^4.0.0: 4.0.0 - ^5.0.0: 5.1.0 - 5.1.0: - $: sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== - _: 'https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz' + ^5.0.0: 5.2.0 + 5.2.0: + $: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + _: 'https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz' dependencies: '@babel/code-frame': ^7.0.0 error-ex: ^1.3.1 @@ -7426,7 +7266,7 @@ pirates: dependencies: node-modules-regexp: ^1.0.0 pkg-dir: - _latest: 4.2.0 + _latest: 5.0.0 _: ^3.0.0: 3.0.0 ^4.1.0: 4.2.0 @@ -7464,7 +7304,7 @@ postcss: ^6.0.1: - 6.0.23 - 6.0.1 - '^6.0.2,^6.0.23': 6.0.23 + ^6.0.23: 6.0.23 '^7.0.0,^7.0.1,^7.0.2,^7.0.27,^7.0.32': 7.0.32 7.0.32: $: sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw== @@ -7496,12 +7336,12 @@ postcss: source-map: ^0.5.6 supports-color: ^3.2.3 postcss-calc: - _latest: 7.0.2 + _latest: 8.0.0 _: - ^7.0.1: 7.0.2 - 7.0.2: - $: sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== - _: 'https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.2.tgz' + ^7.0.1: 7.0.5 + 7.0.5: + $: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg== + _: 'https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz' dependencies: postcss: ^7.0.27 postcss-selector-parser: ^6.0.2 @@ -7656,7 +7496,7 @@ postcss-modules-extract-imports: _latest: 2.0.0 _: 1.1.0: 1.1.0 - '^1.0.0,^1.2.0': 1.2.1 + ^1.2.0: 1.2.1 1.2.1: $: sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw== _: 'https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz' @@ -7670,7 +7510,7 @@ postcss-modules-extract-imports: postcss-modules-local-by-default: _latest: 3.0.2 _: - '1.2.0,^1.0.1,^1.2.0': 1.2.0 + '1.2.0,^1.2.0': 1.2.0 1.2.0: $: sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk= _: 'https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz' @@ -7688,23 +7528,10 @@ postcss-modules-parser: icss-replace-symbols: ^1.0.2 lodash.foreach: ^3.0.3 postcss: ^5.0.10 -postcss-modules-resolve-imports: - _latest: 1.3.0 - _: - ^1.3.0: 1.3.0 - 1.3.0: - $: sha1-OY0wALla6WlCDN9M2D+oBn8cXq4= - _: 'https://registry.npmjs.org/postcss-modules-resolve-imports/-/postcss-modules-resolve-imports-1.3.0.tgz' - dependencies: - css-selector-tokenizer: ^0.7.0 - icss-utils: ^3.0.1 - minimist: ^1.2.0 - peerDependencies: - postcss: ^6.0.0 postcss-modules-scope: _latest: 2.2.0 _: - '1.1.0,^1.0.0,^1.1.0': 1.1.0 + '1.1.0,^1.1.0': 1.1.0 1.1.0: $: sha1-1upkmUx5+XtipytCb75gVqGUu5A= _: 'https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz' @@ -7714,7 +7541,7 @@ postcss-modules-scope: postcss-modules-values: _latest: 3.0.0 _: - '1.3.0,^1.1.1,^1.3.0': 1.3.0 + '1.3.0,^1.3.0': 1.3.0 1.3.0: $: sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= _: 'https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz' @@ -7856,17 +7683,18 @@ postcss-reduce-transforms: postcss: ^7.0.0 postcss-value-parser: ^3.0.0 postcss-selector-parser: - _latest: 6.0.2 + _latest: 6.0.4 _: ^3.0.0: 3.1.2 - ^6.0.2: 6.0.2 - 6.0.2: - $: sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== - _: 'https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz' + ^6.0.2: 6.0.4 + 6.0.4: + $: sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== + _: 'https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz' dependencies: cssesc: ^3.0.0 indexes-of: ^1.0.1 uniq: ^1.0.1 + util-deprecate: ^1.0.2 3.1.2: $: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== _: 'https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz' @@ -7960,15 +7788,15 @@ promise-inflight: $: sha1-mEcocL8igTL8vdhoEputEsPAKeM= _: 'https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz' prompts: - _latest: 2.3.2 + _latest: 2.4.0 _: - ^2.3.2: 2.3.2 - 2.3.2: - $: sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA== - _: 'https://registry.npmjs.org/prompts/-/prompts-2.3.2.tgz' + ^2.3.2: 2.4.0 + 2.4.0: + $: sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ== + _: 'https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz' dependencies: kleur: ^3.0.3 - sisteransi: ^1.0.4 + sisteransi: ^1.0.5 prop-types: _latest: 15.7.2 _: @@ -8090,7 +7918,7 @@ qs: $: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== _: 'https://registry.npmjs.org/qs/-/qs-6.5.2.tgz' query-string: - _latest: 6.13.1 + _latest: 6.13.8 _: ^4.1.0: 4.3.4 4.3.4: @@ -8317,13 +8145,13 @@ readable-stream: string_decoder: ~1.1.1 util-deprecate: ~1.0.1 readdirp: - _latest: 3.4.0 + _latest: 3.5.0 _: ^2.2.1: 2.2.1 - ~3.4.0: 3.4.0 - 3.4.0: - $: sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== - _: 'https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz' + ~3.5.0: 3.5.0 + 3.5.0: + $: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== + _: 'https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz' dependencies: picomatch: ^2.2.1 2.2.1: @@ -8345,12 +8173,12 @@ redux: loose-envify: ^1.4.0 symbol-observable: ^1.2.0 regenerate: - _latest: 1.4.1 + _latest: 1.4.2 _: - ^1.4.0: 1.4.1 - 1.4.1: - $: sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A== - _: 'https://registry.npmjs.org/regenerate/-/regenerate-1.4.1.tgz' + ^1.4.0: 1.4.2 + 1.4.2: + $: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + _: 'https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz' regenerate-unicode-properties: _latest: 8.2.0 _: @@ -8387,15 +8215,15 @@ regex-not: extend-shallow: ^3.0.2 safe-regex: ^1.1.0 regexp.prototype.flags: - _latest: 1.3.0 + _latest: 1.3.1 _: - ^1.3.0: 1.3.0 - 1.3.0: - $: sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== - _: 'https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz' + ^1.3.0: 1.3.1 + 1.3.1: + $: sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== + _: 'https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz' dependencies: + call-bind: ^1.0.2 define-properties: ^1.1.3 - es-abstract: ^1.17.0-next.1 regexpp: _latest: 3.1.0 _: @@ -8404,12 +8232,12 @@ regexpp: $: sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== _: 'https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz' regexpu-core: - _latest: 4.7.0 + _latest: 4.7.1 _: - ^4.7.0: 4.7.0 - 4.7.0: - $: sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== - _: 'https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz' + ^4.7.1: 4.7.1 + 4.7.1: + $: sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== + _: 'https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz' dependencies: regenerate: ^1.4.0 regenerate-unicode-properties: ^8.2.0 @@ -8425,12 +8253,12 @@ regjsgen: $: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== _: 'https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz' regjsparser: - _latest: 0.6.4 + _latest: 0.6.6 _: - ^0.6.4: 0.6.4 - 0.6.4: - $: sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== - _: 'https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz' + ^0.6.4: 0.6.6 + 0.6.6: + $: sha512-jjyuCp+IEMIm3N1H1LLTJW1EISEJV9+5oHdEyrt43Pg9cDSb6rrLZei2cVWpl0xTjmmlpec/lEQGYgM7xfpGCQ== + _: 'https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.6.tgz' dependencies: jsesc: ~0.5.0 release-zalgo: @@ -8506,6 +8334,13 @@ require-directory: 2.1.1: $: sha1-jGStX9MNqxyXbiNE/+f3kqam30I= _: 'https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz' +require-from-string: + _latest: 2.0.2 + _: + ^2.0.2: 2.0.2 + 2.0.2: + $: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + _: 'https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz' require-main-filename: _latest: 2.0.0 _: @@ -8528,21 +8363,15 @@ requires-port: $: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= _: 'https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz' resolve: - _latest: 1.17.0 + _latest: 1.19.0 _: - '^1.10.0,^1.12.0,^1.3.2,^1.8.1': 1.17.0 - ^1.18.1: 1.19.0 + '^1.10.0,^1.12.0,^1.18.1': 1.19.0 1.19.0: $: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== _: 'https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz' dependencies: is-core-module: ^2.1.0 path-parse: ^1.0.6 - 1.17.0: - $: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== - _: 'https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz' - dependencies: - path-parse: ^1.0.6 resolve-cwd: _latest: 3.0.0 _: @@ -8744,17 +8573,25 @@ scheduler: loose-envify: ^1.1.0 object-assign: ^4.1.1 schema-utils: - _latest: 2.7.0 + _latest: 3.0.0 _: ^1.0.0: 1.0.0 - ^2.6.5: 2.7.0 - 2.7.0: - $: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== - _: 'https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz' + ^2.6.5: 2.7.1 + ^3.0.0: 3.0.0 + 3.0.0: + $: sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== + _: 'https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz' dependencies: - ajv: ^6.12.2 - ajv-keywords: ^3.4.1 - '@types/json-schema': ^7.0.4 + ajv: ^6.12.5 + ajv-keywords: ^3.5.2 + '@types/json-schema': ^7.0.6 + 2.7.1: + $: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== + _: 'https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz' + dependencies: + ajv: ^6.12.4 + ajv-keywords: ^3.5.2 + '@types/json-schema': ^7.0.5 1.0.0: $: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== _: 'https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz' @@ -8769,13 +8606,6 @@ secure-json-parse: 2.1.0: $: sha512-GckO+MS/wT4UogDyoI/H/S1L0MCcKS1XX/vp48wfmU7Nw4woBmb8mIpu4zPBQjKlRT88/bt9xdoV4111jPpNJA== _: 'https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.1.0.tgz' -seekout: - _latest: 1.0.2 - _: - ^1.0.1: 1.0.2 - 1.0.2: - $: sha1-CbqfG9W0b7sTRxjrGaaDgsuxuck= - _: 'https://registry.npmjs.org/seekout/-/seekout-1.0.2.tgz' select-hose: _latest: 2.0.0 _: @@ -8784,15 +8614,17 @@ select-hose: $: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= _: 'https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz' semver: - _latest: 7.3.2 + _latest: 7.3.4 _: '2 || 3 || 4 || 5,^5.4.1,^5.5.0,^5.5.1,^5.6.0': 5.7.1 7.0.0: 7.0.0 '^6.0.0,^6.3.0': 6.3.0 - '^7.2.1,^7.3.2': 7.3.2 - 7.3.2: - $: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== - _: 'https://registry.npmjs.org/semver/-/semver-7.3.2.tgz' + '^7.2.1,^7.3.2': 7.3.4 + 7.3.4: + $: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== + _: 'https://registry.npmjs.org/semver/-/semver-7.3.4.tgz' + dependencies: + lru-cache: ^6.0.0 7.0.0: $: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== _: 'https://registry.npmjs.org/semver/-/semver-7.0.0.tgz' @@ -8810,12 +8642,12 @@ semver-store: $: sha512-TcZvGMMy9vodEFSse30lWinkj+JgOBvPn8wRItpQRSayhc+4ssDs335uklkfvQQJgL/WvmHLVj4Ycv2s7QCQMg== _: 'https://registry.npmjs.org/semver-store/-/semver-store-0.3.0.tgz' serialize-javascript: - _latest: 4.0.0 + _latest: 5.0.1 _: - ^3.1.0: 3.1.0 - 3.1.0: - $: sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg== - _: 'https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-3.1.0.tgz' + ^4.0.0: 4.0.0 + 4.0.0: + $: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== + _: 'https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz' dependencies: randombytes: ^2.1.0 serve-index-fs: @@ -8919,15 +8751,16 @@ shebang-regex: $: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= _: 'https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz' side-channel: - _latest: 1.0.3 + _latest: 1.0.4 _: - '^1.0.2,^1.0.3': 1.0.3 - 1.0.3: - $: sha512-A6+ByhlLkksFoUepsGxfj5x1gTSrs+OydsRptUxeNCabQpCFUvcwIczgOigI8vhY/OJCnPnyE9rGiwgvr9cS1g== - _: 'https://registry.npmjs.org/side-channel/-/side-channel-1.0.3.tgz' + '^1.0.2,^1.0.3': 1.0.4 + 1.0.4: + $: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + _: 'https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz' dependencies: - es-abstract: ^1.18.0-next.0 - object-inspect: ^1.8.0 + call-bind: ^1.0.0 + get-intrinsic: ^1.0.2 + object-inspect: ^1.9.0 signal-exit: _latest: 3.0.3 _: @@ -8947,7 +8780,7 @@ simple-swizzle: sisteransi: _latest: 1.0.5 _: - ^1.0.4: 1.0.5 + ^1.0.5: 1.0.5 1.0.5: $: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== _: 'https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz' @@ -8961,7 +8794,6 @@ slash: slice-ansi: _latest: 4.0.0 _: - ^2.1.0: 2.1.0 ^4.0.0: 4.0.0 4.0.0: $: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== @@ -8970,13 +8802,6 @@ slice-ansi: ansi-styles: ^4.0.0 astral-regex: ^2.0.0 is-fullwidth-code-point: ^3.0.0 - 2.1.0: - $: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== - _: 'https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz' - dependencies: - ansi-styles: ^3.2.0 - astral-regex: ^1.0.0 - is-fullwidth-code-point: ^2.0.0 snapdragon: _latest: 0.12.0 _: @@ -9024,7 +8849,7 @@ sonic-boom: atomic-sleep: ^1.0.0 flatstr: ^1.0.12 sort-keys: - _latest: 4.0.0 + _latest: 4.2.0 _: ^1.0.0: 1.1.2 1.1.2: @@ -9122,12 +8947,12 @@ spdx-expression-parse: spdx-exceptions: ^2.1.0 spdx-license-ids: ^3.0.0 spdx-license-ids: - _latest: 3.0.5 + _latest: 3.0.7 _: - ^3.0.0: 3.0.5 - 3.0.5: - $: sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== - _: 'https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz' + ^3.0.0: 3.0.7 + 3.0.7: + $: sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== + _: 'https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz' spdy: _latest: 4.0.2 _: @@ -9231,7 +9056,7 @@ static-extend: define-property: ^0.2.5 object-copy: ^0.1.0 statuses: - _latest: 2.0.0 + _latest: 2.0.1 _: '>= 1.4.0 < 2': 1.5.0 1.5.0: @@ -9304,7 +9129,7 @@ string-natural-compare: ^3.0.1: 3.0.1 3.0.1: $: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw== - _: 'https://npme.walmart.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz' + _: 'https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz' string-similarity: _latest: 4.0.1 _: @@ -9347,25 +9172,25 @@ string.prototype.matchall: regexp.prototype.flags: ^1.3.0 side-channel: ^1.0.3 string.prototype.trimend: - _latest: 1.0.1 + _latest: 1.0.3 _: - ^1.0.1: 1.0.1 - 1.0.1: - $: sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== - _: 'https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz' + '^1.0.1,^1.0.3': 1.0.3 + 1.0.3: + $: sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== + _: 'https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz' dependencies: + call-bind: ^1.0.0 define-properties: ^1.1.3 - es-abstract: ^1.17.5 string.prototype.trimstart: - _latest: 1.0.1 + _latest: 1.0.3 _: - ^1.0.1: 1.0.1 - 1.0.1: - $: sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== - _: 'https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz' + '^1.0.1,^1.0.3': 1.0.3 + 1.0.3: + $: sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== + _: 'https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz' dependencies: + call-bind: ^1.0.0 define-properties: ^1.1.3 - es-abstract: ^1.17.5 string_decoder: _latest: 1.3.0 _: @@ -9581,33 +9406,33 @@ symbol-observable: $: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== _: 'https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz' table: - _latest: 6.0.4 + _latest: 6.0.7 _: - ^5.2.3: 5.4.6 - 5.4.6: - $: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== - _: 'https://registry.npmjs.org/table/-/table-5.4.6.tgz' + ^6.0.4: 6.0.7 + 6.0.7: + $: sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g== + _: 'https://registry.npmjs.org/table/-/table-6.0.7.tgz' dependencies: - ajv: ^6.10.2 - lodash: ^4.17.14 - slice-ansi: ^2.1.0 - string-width: ^3.0.0 + ajv: ^7.0.2 + lodash: ^4.17.20 + slice-ansi: ^4.0.0 + string-width: ^4.2.0 tapable: - _latest: 1.1.3 + _latest: 2.2.0 _: '^1.0.0,^1.1.3': 1.1.3 1.1.3: $: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== _: 'https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz' term-size: - _latest: 2.2.0 + _latest: 2.2.1 _: - ^2.1.0: 2.2.0 - 2.2.0: - $: sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw== - _: 'https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz' + ^2.1.0: 2.2.1 + 2.2.1: + $: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== + _: 'https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz' terser: - _latest: 4.8.0 + _latest: 5.5.1 _: ^4.1.2: 4.8.0 4.8.0: @@ -9618,18 +9443,18 @@ terser: source-map: ~0.6.1 source-map-support: ~0.5.12 terser-webpack-plugin: - _latest: 3.0.7 + _latest: 5.1.1 _: - ^1.4.3: 1.4.4 - 1.4.4: - $: sha512-U4mACBHIegmfoEe5fdongHESNJWqsGU+W0S/9+BmYGVQDw1+c2Ow05TpMhxjPK1sRb7cuYq1BPl1e5YHJMTCqA== - _: 'https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.4.tgz' + ^1.4.3: 1.4.5 + 1.4.5: + $: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw== + _: 'https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz' dependencies: cacache: ^12.0.2 find-cache-dir: ^2.1.0 is-wsl: ^1.1.0 schema-utils: ^1.0.0 - serialize-javascript: ^3.1.0 + serialize-javascript: ^4.0.0 source-map: ^0.6.1 terser: ^4.1.2 webpack-sources: ^1.4.0 @@ -9665,12 +9490,12 @@ through2: readable-stream: ~2.3.6 xtend: ~4.0.1 timers-browserify: - _latest: 2.0.11 + _latest: 2.0.12 _: - ^2.0.4: 2.0.11 - 2.0.11: - $: sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== - _: 'https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz' + ^2.0.4: 2.0.12 + 2.0.12: + $: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== + _: 'https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz' dependencies: setimmediate: ^1.0.4 timsort: @@ -9765,14 +9590,14 @@ tough-cookie: tslib: _latest: 2.1.0 _: - ^1.9.0: 1.13.0 + ^1.9.0: 1.14.1 ^2.1.0: 2.1.0 2.1.0: $: sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== _: 'https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz' - 1.13.0: - $: sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== - _: 'https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz' + 1.14.1: + $: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + _: 'https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz' tty-browserify: _latest: 0.0.1 _: @@ -9806,7 +9631,7 @@ type-check: dependencies: prelude-ls: ^1.2.1 type-fest: - _latest: 0.16.0 + _latest: 0.20.2 _: ^0.11.0: 0.11.0 ^0.6.0: 0.6.0 @@ -9828,7 +9653,7 @@ typedarray: $: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= _: 'https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz' typedarray-to-buffer: - _latest: 3.1.5 + _latest: 4.0.0 _: ^3.1.5: 3.1.5 3.1.5: @@ -9912,12 +9737,12 @@ unique-slug: dependencies: imurmurhash: ^0.1.4 universalify: - _latest: 1.0.0 + _latest: 2.0.0 _: - ^1.0.0: 1.0.0 - 1.0.0: - $: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== - _: 'https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz' + ^2.0.0: 2.0.0 + 2.0.0: + $: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + _: 'https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz' unquote: _latest: 1.1.1 _: @@ -9945,7 +9770,7 @@ unwrap-npm-cmd: dependencies: which: ^1.3.1 upath: - _latest: 1.2.0 + _latest: 2.0.1 _: ^1.1.1: 1.2.0 1.2.0: @@ -9979,16 +9804,16 @@ url: punycode: 1.3.2 querystring: 0.2.0 url-loader: - _latest: 4.1.0 + _latest: 4.1.1 _: - ^4.1.0: 4.1.0 - 4.1.0: - $: sha512-IzgAAIC8wRrg6NYkFIJY09vtktQcsvU8V6HhtQj9PTefbYImzLB1hufqo4m+RyM5N3mLx5BqJKccgxJS+W3kqw== - _: 'https://registry.npmjs.org/url-loader/-/url-loader-4.1.0.tgz' + ^4.1.0: 4.1.1 + 4.1.1: + $: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== + _: 'https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz' dependencies: loader-utils: ^2.0.0 - mime-types: ^2.1.26 - schema-utils: ^2.6.5 + mime-types: ^2.1.27 + schema-utils: ^3.0.0 peerDependencies: webpack: '^4.0.0 || ^5.0.0' file-loader: '*' @@ -10017,12 +9842,12 @@ util: util-deprecate: _latest: 1.0.2 _: - '^1.0.1,~1.0.1': 1.0.2 + '^1.0.1,^1.0.2,~1.0.1': 1.0.2 1.0.2: $: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= _: 'https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz' util.promisify: - _latest: 1.0.1 + _latest: 1.1.1 _: ~1.0.0: 1.0.1 1.0.1: @@ -10043,14 +9868,10 @@ uuid: v8-compile-cache: _latest: 2.2.0 _: - ^2.0.3: 2.2.0 - ^2.1.1: 2.1.1 + '^2.0.3,^2.1.1': 2.2.0 2.2.0: $: sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== _: 'https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz' - 2.1.1: - $: sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== - _: 'https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz' valid-url: _latest: 1.0.9 _: @@ -10116,7 +9937,7 @@ watchpack: ^1.7.4: 1.7.5 1.7.5: $: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ== - _: 'https://npme.walmart.com/watchpack/-/watchpack-1.7.5.tgz' + _: 'https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz' dependencies: graceful-fs: ^4.1.2 neo-async: ^2.5.0 @@ -10131,7 +9952,7 @@ watchpack-chokidar2: ^2.0.1: 2.0.1 2.0.1: $: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww== - _: 'https://npme.walmart.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz' + _: 'https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz' dependencies: chokidar: ^2.1.8 wbuf: @@ -10144,12 +9965,12 @@ wbuf: dependencies: minimalistic-assert: ^1.0.0 webpack: - _latest: 5.10.0 + _latest: 5.17.0 _: - ^4.44.2: 4.44.2 - 4.44.2: - $: sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q== - _: 'https://npme.walmart.com/webpack/-/webpack-4.44.2.tgz' + ^4.44.2: 4.46.0 + 4.46.0: + $: sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q== + _: 'https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz' dependencies: '@webassemblyjs/ast': 1.9.0 '@webassemblyjs/helper-module-context': 1.9.0 @@ -10159,7 +9980,7 @@ webpack: ajv: ^6.10.2 ajv-keywords: ^3.4.1 chrome-trace-event: ^1.0.2 - enhanced-resolve: ^4.3.0 + enhanced-resolve: ^4.5.0 eslint-scope: ^4.0.3 json-parse-better-errors: ^1.0.2 loader-runner: ^2.4.0 @@ -10175,7 +9996,7 @@ webpack: watchpack: ^1.7.4 webpack-sources: ^1.4.1 webpack-cli: - _latest: 3.3.12 + _latest: 4.4.0 _: ^3.3.9: 3.3.12 3.3.12: @@ -10205,12 +10026,12 @@ webpack-config-composer: dependencies: lodash: ^4.13.1 webpack-dev-middleware: - _latest: 3.7.2 + _latest: 4.1.0 _: - ^3.7.2: 3.7.2 - 3.7.2: - $: sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw== - _: 'https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz' + ^3.7.2: 3.7.3 + 3.7.3: + $: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ== + _: 'https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz' dependencies: memory-fs: ^0.4.1 mime: ^2.4.4 @@ -10218,7 +10039,7 @@ webpack-dev-middleware: range-parser: ^1.2.1 webpack-log: ^2.0.0 peerDependencies: - webpack: ^4.0.0 + webpack: '^4.0.0 || ^5.0.0' webpack-hot-middleware: _latest: 2.25.0 _: @@ -10242,7 +10063,7 @@ webpack-log: ansi-colors: ^3.0.0 uuid: ^3.3.2 webpack-sources: - _latest: 1.4.3 + _latest: 2.2.0 _: '^1.1.0,^1.4.0,^1.4.1': 1.4.3 1.4.3: @@ -10252,7 +10073,7 @@ webpack-sources: source-list-map: ^2.0.0 source-map: ~0.6.1 webpack-stats-plugin: - _latest: 0.3.2 + _latest: 1.0.3 _: ^0.3.1: 0.3.2 0.3.2: @@ -10397,17 +10218,21 @@ xtend: $: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== _: 'https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz' y18n: - _latest: 4.0.0 + _latest: 5.0.5 _: - ^4.0.0: 4.0.0 - 4.0.0: - $: sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== - _: 'https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz' + ^4.0.0: 4.0.1 + 4.0.1: + $: sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== + _: 'https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz' yallist: _latest: 4.0.0 _: ^2.1.2: 2.1.2 ^3.0.2: 3.1.1 + ^4.0.0: 4.0.0 + 4.0.0: + $: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + _: 'https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz' 3.1.1: $: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== _: 'https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz' @@ -10415,7 +10240,7 @@ yallist: $: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= _: 'https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz' yargs: - _latest: 15.4.1 + _latest: 16.2.0 _: ^13.3.2: 13.3.2 ^15.0.2: 15.4.1 @@ -10449,7 +10274,7 @@ yargs: y18n: ^4.0.0 yargs-parser: ^13.1.2 yargs-parser: - _latest: 18.1.3 + _latest: 20.2.4 _: ^13.1.2: 13.1.2 ^18.1.2: 18.1.3 diff --git a/samples/poc-subapp/package.json b/samples/poc-subapp/package.json index a456879ba..cc89c8088 100644 --- a/samples/poc-subapp/package.json +++ b/samples/poc-subapp/package.json @@ -35,6 +35,7 @@ "build": "clap build" }, "dependencies": { + "@babel/runtime": "^7.12.5", "@xarc/app": "^8.1.6", "@xarc/fastify-server": "^2.0.0", "electrode-confippet": "^1.5.0", @@ -72,4 +73,4 @@ "trailingComma": "none", "arrowParens": "avoid" } -} +} \ No newline at end of file