diff --git a/package.json b/package.json index ce8984da0..8bb355e37 100644 --- a/package.json +++ b/package.json @@ -14,50 +14,50 @@ "url": "https://opencollective.com/verdaccio" }, "devDependencies": { - "@babel/cli": "7.11.6", - "@babel/core": "7.11.6", - "@babel/node": "7.10.5", - "@babel/plugin-proposal-class-properties": "7.10.4", - "@babel/plugin-proposal-decorators": "7.10.5", - "@babel/plugin-proposal-export-namespace-from": "7.10.4", - "@babel/plugin-proposal-function-sent": "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.11.0", - "@babel/plugin-proposal-optional-chaining": "7.11.0", - "@babel/plugin-proposal-throw-expressions": "7.10.4", + "@babel/cli": "7.12.1", + "@babel/core": "7.12.3", + "@babel/node": "7.12.6", + "@babel/plugin-proposal-class-properties": "7.12.1", + "@babel/plugin-proposal-decorators": "7.12.1", + "@babel/plugin-proposal-export-namespace-from": "7.12.1", + "@babel/plugin-proposal-function-sent": "7.12.1", + "@babel/plugin-proposal-json-strings": "7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1", + "@babel/plugin-proposal-numeric-separator": "7.12.5", + "@babel/plugin-proposal-object-rest-spread": "7.12.1", + "@babel/plugin-proposal-optional-chaining": "7.12.1", + "@babel/plugin-proposal-throw-expressions": "7.12.1", "@babel/plugin-syntax-dynamic-import": "7.8.3", "@babel/plugin-syntax-import-meta": "7.10.4", - "@babel/plugin-transform-async-to-generator": "7.10.4", - "@babel/plugin-transform-classes": "7.10.4", - "@babel/plugin-transform-runtime": "7.11.5", - "@babel/polyfill": "7.11.5", - "@babel/preset-env": "7.11.5", - "@babel/preset-react": "7.10.4", - "@babel/preset-typescript": "7.10.4", - "@babel/register": "7.11.5", - "@babel/runtime": "7.11.2", - "@changesets/changelog-github": "0.1.1", - "@changesets/cli": "2.10.1", + "@babel/plugin-transform-async-to-generator": "7.12.1", + "@babel/plugin-transform-classes": "7.12.1", + "@babel/plugin-transform-runtime": "7.12.1", + "@babel/polyfill": "7.12.1", + "@babel/preset-env": "7.12.1", + "@babel/preset-react": "7.12.5", + "@babel/preset-typescript": "7.12.1", + "@babel/register": "7.12.1", + "@babel/runtime": "7.12.5", + "@changesets/changelog-github": "0.2.7", + "@changesets/cli": "2.11.2", "@commitlint/cli": "8.3.5", "@commitlint/config-conventional": "8.2.0", "@octokit/rest": "17.0.0", "@types/async": "3.2.3", "@types/express": "4.17.6", "@types/http-errors": "1.6.3", - "@types/jest": "26.0.1", - "@types/lodash": "4.14.156", + "@types/jest": "^26.0.15", + "@types/lodash": "4.14.165", "@types/mime": "2.0.2", "@types/minimatch": "3.0.3", - "@types/node": "14.0.14", + "@types/node": "^14.14.7", "@types/request": "2.48.3", "@types/semver": "7.2.0", "@types/supertest": "2.0.9", - "@typescript-eslint/eslint-plugin": "3.10.1", - "@typescript-eslint/parser": "3.10.1", + "@typescript-eslint/eslint-plugin": "4.7.0", + "@typescript-eslint/parser": "4.7.0", "@verdaccio/types": "workspace:*", - "@verdaccio/ui-theme": "latest", + "@verdaccio/ui-theme": "^1.14.0", "babel-core": "7.0.0-bridge.0", "babel-eslint": "10.1.0", "babel-jest": "26.1.0", @@ -95,7 +95,7 @@ "standard-version": "8.0.0", "supertest": "4.0.2", "ts-node": "^9.0.0", - "typescript": "^3.9.7", + "typescript": "^4.0.5", "verdaccio": "workspace:*", "verdaccio-audit": "workspace:*", "verdaccio-auth-memory": "workspace:*", diff --git a/packages/core/file-locking/src/readFile.ts b/packages/core/file-locking/src/readFile.ts index b9d217694..19fdc08e9 100644 --- a/packages/core/file-locking/src/readFile.ts +++ b/packages/core/file-locking/src/readFile.ts @@ -1,3 +1,4 @@ +/* eslint-disable no-undef */ import fs from 'fs'; import { Callback } from '@verdaccio/types'; diff --git a/packages/core/local-storage/src/local-fs.ts b/packages/core/local-storage/src/local-fs.ts index 4abdde057..1ca183afd 100644 --- a/packages/core/local-storage/src/local-fs.ts +++ b/packages/core/local-storage/src/local-fs.ts @@ -1,3 +1,5 @@ +/* eslint-disable no-undef */ + import fs from 'fs'; import path from 'path'; import buildDebug from 'debug'; diff --git a/packages/core/types/index.d.ts b/packages/core/types/index.d.ts index 6c045bd35..73f98ef6d 100644 --- a/packages/core/types/index.d.ts +++ b/packages/core/types/index.d.ts @@ -9,7 +9,6 @@ declare module '@verdaccio/types' { type Callback = Function; // FIXME: err should be something flexible enough for any implementation type CallbackAction = (err: any | null) => void; - type CallbackError = (err: NodeJS.ErrnoException) => void; interface Author { name: string; email?: string; diff --git a/packages/hooks/src/notify.ts b/packages/hooks/src/notify.ts index 98eab9e1b..a26e5c978 100644 --- a/packages/hooks/src/notify.ts +++ b/packages/hooks/src/notify.ts @@ -1,3 +1,5 @@ +/* eslint-disable no-undef */ + import Handlebars from 'handlebars'; import buildDebug from 'debug'; diff --git a/packages/middleware/src/middleware.ts b/packages/middleware/src/middleware.ts index aa105113a..7e7ce0901 100644 --- a/packages/middleware/src/middleware.ts +++ b/packages/middleware/src/middleware.ts @@ -238,7 +238,7 @@ export function final( // and should just close socket if (err.message.match(/set headers after they are sent/)) { if (_.isNil(res.socket) === false) { - res.socket.destroy(); + res.socket?.destroy(); } return; } diff --git a/packages/mock/src/index.ts b/packages/mock/src/index.ts index 7abf8a30b..9902e9f8c 100644 --- a/packages/mock/src/index.ts +++ b/packages/mock/src/index.ts @@ -8,3 +8,4 @@ export * from './server'; export * from './config'; export * from './mock'; export * from './mock-api'; +export * from './types'; diff --git a/packages/mock/src/mock.ts b/packages/mock/src/mock.ts index e9d65adee..5797f517c 100644 --- a/packages/mock/src/mock.ts +++ b/packages/mock/src/mock.ts @@ -5,8 +5,7 @@ import * as fsExtra from 'fs-extra'; import { DOMAIN_SERVERS } from './constants'; import VerdaccioProcess from './server_process'; import { VerdaccioConfig } from './verdaccio-server'; -import Server from './server'; -import { IServerBridge } from './types'; +import Server, { IServerBridge } from './server'; /** * Fork a Verdaccio process with a custom configuration. diff --git a/packages/mock/src/request.ts b/packages/mock/src/request.ts index d302dbfd8..9e59b0e4b 100644 --- a/packages/mock/src/request.ts +++ b/packages/mock/src/request.ts @@ -2,8 +2,7 @@ import assert from 'assert'; import _ from 'lodash'; import request from 'request'; import buildDebug from 'debug'; - -import { IRequestPromise } from './types'; +import { IRequestPromise } from './server'; const requestData = Symbol('smart_request_data'); diff --git a/packages/mock/src/server.ts b/packages/mock/src/server.ts index 339e142d6..8b5079750 100644 --- a/packages/mock/src/server.ts +++ b/packages/mock/src/server.ts @@ -4,9 +4,8 @@ import buildDebug from 'debug'; import { API_MESSAGE, HEADERS, HTTP_STATUS, TOKEN_BASIC } from '@verdaccio/dev-commons'; import { buildToken } from '@verdaccio/utils'; -import smartRequest from './request'; +import smartRequest, { PromiseAssert } from './request'; -import { IServerBridge } from './types'; import { CREDENTIALS } from './constants'; import getPackage from './fixtures/package'; @@ -16,6 +15,44 @@ const buildAuthHeader = (user, pass): string => { const debug = buildDebug('verdaccio:mock:server'); +export interface IRequestPromise { + status(reason: any): any; + body_ok(reason: any): any; + body_error(reason: any): any; + request(reason: any): any; + response(reason: any): any; + send(reason: any): any; +} + +export interface IServerBridge { + url: string; + userAgent: string; + authstr: string; + request(options: any): typeof PromiseAssert; + auth(name: string, password: string): IRequestPromise; + auth(name: string, password: string): IRequestPromise; + logout(token: string): Promise; + getPackage(name: string): Promise; + putPackage(name: string, data: any): Promise; + putVersion(name: string, version: string, data: any): Promise; + getTarball(name: string, filename: string): Promise; + putTarball(name: string, filename: string, data: any): Promise; + removeTarball(name: string): Promise; + removeSingleTarball(name: string, filename: string): Promise; + addTag(name: string, tag: string, version: string): Promise; + putTarballIncomplete( + name: string, + filename: string, + data: any, + size: number, + cb: Function + ): Promise; + addPackage(name: string): Promise; + whoami(): Promise; + ping(): Promise; + debug(): IRequestPromise; +} + export default class Server implements IServerBridge { public url: string; public userAgent: string; diff --git a/packages/mock/src/server_process.ts b/packages/mock/src/server_process.ts index 19d04145e..c7496d906 100644 --- a/packages/mock/src/server_process.ts +++ b/packages/mock/src/server_process.ts @@ -4,7 +4,8 @@ import { fork } from 'child_process'; import { HTTP_STATUS } from '@verdaccio/dev-commons'; import { CREDENTIALS } from './constants'; -import { IVerdaccioConfig, IServerBridge, IServerProcess } from './types'; +import { IVerdaccioConfig, IServerProcess } from './types'; +import { IServerBridge } from './server'; const defaultBinPath = require.resolve('verdaccio/bin/verdaccio'); export default class VerdaccioProcess implements IServerProcess { diff --git a/packages/mock/src/types/index.ts b/packages/mock/src/types/index.ts index 47a22c4ae..ae65b7be1 100644 --- a/packages/mock/src/types/index.ts +++ b/packages/mock/src/types/index.ts @@ -5,15 +5,6 @@ export interface IVerdaccioConfig { port: number | string; } -export interface IRequestPromise { - status(reason: any): any; - body_ok(reason: any): any; - body_error(reason: any): any; - request(reason: any): any; - response(reason: any): any; - send(reason: any): any; -} - export interface IServerProcess { init(binPath: string): Promise; stop(): void; @@ -23,32 +14,3 @@ export interface IServerProcess { declare class PromiseAssert extends Promise { public constructor(options: any); } - -export interface IServerBridge { - url: string; - userAgent: string; - authstr: string; - request(options: any): typeof PromiseAssert; - auth(name: string, password: string): IRequestPromise; - auth(name: string, password: string): IRequestPromise; - logout(token: string): Promise; - getPackage(name: string): Promise; - putPackage(name: string, data: any): Promise; - putVersion(name: string, version: string, data: any): Promise; - getTarball(name: string, filename: string): Promise; - putTarball(name: string, filename: string, data: any): Promise; - removeTarball(name: string): Promise; - removeSingleTarball(name: string, filename: string): Promise; - addTag(name: string, tag: string, version: string): Promise; - putTarballIncomplete( - name: string, - filename: string, - data: any, - size: number, - cb: Function - ): Promise; - addPackage(name: string): Promise; - whoami(): Promise; - ping(): Promise; - debug(): IRequestPromise; -} diff --git a/packages/verdaccio/package.json b/packages/verdaccio/package.json index 55d8cd980..32c1ec8a8 100644 --- a/packages/verdaccio/package.json +++ b/packages/verdaccio/package.json @@ -36,20 +36,20 @@ }, "homepage": "https://verdaccio.org", "dependencies": { + "@verdaccio/cli": "workspace:5.0.0-alpha.0", "@verdaccio/hooks": "workspace:5.0.0-alpha.0", - "@verdaccio/utils": "workspace:5.0.0-alpha.0", "@verdaccio/logger": "workspace:5.0.0-alpha.0", "@verdaccio/mock": "workspace:5.0.0-alpha.0", "@verdaccio/node-api": "workspace:5.0.0-alpha.0", - "@verdaccio/cli": "workspace:5.0.0-alpha.0", - "verdaccio-htpasswd": "9.7.2", - "@verdaccio/ui-theme": "^1.12.1" + "@verdaccio/ui-theme": "^1.14.0", + "@verdaccio/utils": "workspace:5.0.0-alpha.0", + "verdaccio-htpasswd": "9.7.2" }, "devDependencies": { - "@verdaccio/config": "workspace:5.0.0-alpha.0", "@verdaccio/auth": "workspace:5.0.0-alpha.0", - "@verdaccio/store": "workspace:5.0.0-alpha.0", - "@verdaccio/dev-commons": "workspace:*" + "@verdaccio/config": "workspace:5.0.0-alpha.0", + "@verdaccio/dev-commons": "workspace:*", + "@verdaccio/store": "workspace:5.0.0-alpha.0" }, "keywords": [ "private", diff --git a/packages/verdaccio/test/functional/index.spec.ts b/packages/verdaccio/test/functional/index.spec.ts index 2548c6dd1..7d0444fdc 100644 --- a/packages/verdaccio/test/functional/index.spec.ts +++ b/packages/verdaccio/test/functional/index.spec.ts @@ -25,6 +25,7 @@ import pluginsAuth from './plugins/auth'; import middleware from './plugins/middleware'; import upLinkCache from './uplinks/cache'; import uplinkTimeout from './uplinks/timeout'; +import { IServerBridge } from '@verdaccio/mock'; describe('functional test verdaccio', function () { jest.setTimeout(20000); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1b4316a99..700c2a994 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,53 +1,53 @@ importers: .: devDependencies: - '@babel/cli': 7.11.6_@babel+core@7.11.6 - '@babel/core': 7.11.6 - '@babel/node': 7.10.5_@babel+core@7.11.6 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-decorators': 7.10.5_@babel+core@7.11.6 - '@babel/plugin-proposal-export-namespace-from': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-function-sent': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-numeric-separator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.11.6 - '@babel/plugin-proposal-optional-chaining': 7.11.0_@babel+core@7.11.6 - '@babel/plugin-proposal-throw-expressions': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-async-to-generator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-runtime': 7.11.5_@babel+core@7.11.6 - '@babel/polyfill': 7.11.5 - '@babel/preset-env': 7.11.5_@babel+core@7.11.6 - '@babel/preset-react': 7.10.4_@babel+core@7.11.6 - '@babel/preset-typescript': 7.10.4_@babel+core@7.11.6 - '@babel/register': 7.11.5_@babel+core@7.11.6 - '@babel/runtime': 7.11.2 - '@changesets/changelog-github': 0.1.1 - '@changesets/cli': 2.10.1 + '@babel/cli': 7.12.1_@babel+core@7.12.3 + '@babel/core': 7.12.3 + '@babel/node': 7.12.6_@babel+core@7.12.3 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-decorators': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-function-sent': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-json-strings': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-numeric-separator': 7.12.5_@babel+core@7.12.3 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-throw-expressions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-transform-async-to-generator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-runtime': 7.12.1_@babel+core@7.12.3 + '@babel/polyfill': 7.12.1 + '@babel/preset-env': 7.12.1_@babel+core@7.12.3 + '@babel/preset-react': 7.12.5_@babel+core@7.12.3 + '@babel/preset-typescript': 7.12.1_@babel+core@7.12.3 + '@babel/register': 7.12.1_@babel+core@7.12.3 + '@babel/runtime': 7.12.5 + '@changesets/changelog-github': 0.2.7 + '@changesets/cli': 2.11.2 '@commitlint/cli': 8.3.5 '@commitlint/config-conventional': 8.2.0 '@octokit/rest': 17.0.0 '@types/async': 3.2.3 '@types/express': 4.17.6 '@types/http-errors': 1.6.3 - '@types/jest': 26.0.1 - '@types/lodash': 4.14.156 + '@types/jest': 26.0.15 + '@types/lodash': 4.14.165 '@types/mime': 2.0.2 '@types/minimatch': 3.0.3 - '@types/node': 14.0.14 + '@types/node': 14.14.7 '@types/request': 2.48.3 '@types/semver': 7.2.0 '@types/supertest': 2.0.9 - '@typescript-eslint/eslint-plugin': 3.10.1_a05db04594704d0c3392f43fee866a02 - '@typescript-eslint/parser': 3.10.1_eslint@7.5.0+typescript@3.9.7 + '@typescript-eslint/eslint-plugin': 4.7.0_6efabcbe04c1cfeb32eb47af39ec0067 + '@typescript-eslint/parser': 4.7.0_eslint@7.5.0+typescript@4.0.5 '@verdaccio/types': 'link:packages/core/types' '@verdaccio/ui-theme': 1.14.0 - babel-core: 7.0.0-bridge.0_@babel+core@7.11.6 + babel-core: 7.0.0-bridge.0_@babel+core@7.12.3 babel-eslint: 10.1.0_eslint@7.5.0 - babel-jest: 26.1.0_@babel+core@7.11.6 + babel-jest: 26.1.0_@babel+core@7.12.3 babel-plugin-dynamic-import-node: 2.3.3 babel-plugin-emotion: 10.0.33 codecov: 3.6.1 @@ -59,7 +59,7 @@ importers: eslint-config-prettier: 6.10.0_eslint@7.5.0 eslint-plugin-babel: 5.3.0_eslint@7.5.0 eslint-plugin-import: 2.22.0_eslint@7.5.0 - eslint-plugin-jest: 23.8.0_eslint@7.5.0+typescript@3.9.7 + eslint-plugin-jest: 23.8.0_eslint@7.5.0+typescript@4.0.5 eslint-plugin-jsx-a11y: 6.3.1_eslint@7.5.0 eslint-plugin-react: 7.20.6_eslint@7.5.0 eslint-plugin-react-hooks: 4.1.0_eslint@7.5.0 @@ -81,58 +81,58 @@ importers: selfsigned: 1.10.7 standard-version: 8.0.0 supertest: 4.0.2 - ts-node: 9.0.0_typescript@3.9.7 - typescript: 3.9.7 + ts-node: 9.0.0_typescript@4.0.5 + typescript: 4.0.5 verdaccio: 'link:packages/verdaccio' verdaccio-audit: 'link:packages/plugins/audit' verdaccio-auth-memory: 'link:packages/plugins/auth-memory' verdaccio-htpasswd: 'link:packages/core/htpasswd' verdaccio-memory: 'link:packages/plugins/memory' specifiers: - '@babel/cli': 7.11.6 - '@babel/core': 7.11.6 - '@babel/node': 7.10.5 - '@babel/plugin-proposal-class-properties': 7.10.4 - '@babel/plugin-proposal-decorators': 7.10.5 - '@babel/plugin-proposal-export-namespace-from': 7.10.4 - '@babel/plugin-proposal-function-sent': 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.11.0 - '@babel/plugin-proposal-optional-chaining': 7.11.0 - '@babel/plugin-proposal-throw-expressions': 7.10.4 + '@babel/cli': 7.12.1 + '@babel/core': 7.12.3 + '@babel/node': 7.12.6 + '@babel/plugin-proposal-class-properties': 7.12.1 + '@babel/plugin-proposal-decorators': 7.12.1 + '@babel/plugin-proposal-export-namespace-from': 7.12.1 + '@babel/plugin-proposal-function-sent': 7.12.1 + '@babel/plugin-proposal-json-strings': 7.12.1 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1 + '@babel/plugin-proposal-numeric-separator': 7.12.5 + '@babel/plugin-proposal-object-rest-spread': 7.12.1 + '@babel/plugin-proposal-optional-chaining': 7.12.1 + '@babel/plugin-proposal-throw-expressions': 7.12.1 '@babel/plugin-syntax-dynamic-import': 7.8.3 '@babel/plugin-syntax-import-meta': 7.10.4 - '@babel/plugin-transform-async-to-generator': 7.10.4 - '@babel/plugin-transform-classes': 7.10.4 - '@babel/plugin-transform-runtime': 7.11.5 - '@babel/polyfill': 7.11.5 - '@babel/preset-env': 7.11.5 - '@babel/preset-react': 7.10.4 - '@babel/preset-typescript': 7.10.4 - '@babel/register': 7.11.5 - '@babel/runtime': 7.11.2 - '@changesets/changelog-github': 0.1.1 - '@changesets/cli': 2.10.1 + '@babel/plugin-transform-async-to-generator': 7.12.1 + '@babel/plugin-transform-classes': 7.12.1 + '@babel/plugin-transform-runtime': 7.12.1 + '@babel/polyfill': 7.12.1 + '@babel/preset-env': 7.12.1 + '@babel/preset-react': 7.12.5 + '@babel/preset-typescript': 7.12.1 + '@babel/register': 7.12.1 + '@babel/runtime': 7.12.5 + '@changesets/changelog-github': 0.2.7 + '@changesets/cli': 2.11.2 '@commitlint/cli': 8.3.5 '@commitlint/config-conventional': 8.2.0 '@octokit/rest': 17.0.0 '@types/async': 3.2.3 '@types/express': 4.17.6 '@types/http-errors': 1.6.3 - '@types/jest': 26.0.1 - '@types/lodash': 4.14.156 + '@types/jest': ^26.0.15 + '@types/lodash': 4.14.165 '@types/mime': 2.0.2 '@types/minimatch': 3.0.3 - '@types/node': 14.0.14 + '@types/node': ^14.14.7 '@types/request': 2.48.3 '@types/semver': 7.2.0 '@types/supertest': 2.0.9 - '@typescript-eslint/eslint-plugin': 3.10.1 - '@typescript-eslint/parser': 3.10.1 + '@typescript-eslint/eslint-plugin': 4.7.0 + '@typescript-eslint/parser': 4.7.0 '@verdaccio/types': 'workspace:*' - '@verdaccio/ui-theme': latest + '@verdaccio/ui-theme': ^1.14.0 babel-core: 7.0.0-bridge.0 babel-eslint: 10.1.0 babel-jest: 26.1.0 @@ -170,7 +170,7 @@ importers: standard-version: 8.0.0 supertest: 4.0.2 ts-node: ^9.0.0 - typescript: ^3.9.7 + typescript: ^4.0.5 verdaccio: 'workspace:*' verdaccio-audit: 'workspace:*' verdaccio-auth-memory: 'workspace:*' @@ -749,7 +749,7 @@ importers: '@verdaccio/logger': 'link:../logger' '@verdaccio/mock': 'link:../mock' '@verdaccio/node-api': 'link:../node-api' - '@verdaccio/ui-theme': 1.12.1 + '@verdaccio/ui-theme': 1.14.0 '@verdaccio/utils': 'link:../utils' verdaccio-htpasswd: 9.7.2 devDependencies: @@ -767,7 +767,7 @@ importers: '@verdaccio/mock': 'workspace:5.0.0-alpha.0' '@verdaccio/node-api': 'workspace:5.0.0-alpha.0' '@verdaccio/store': 'workspace:5.0.0-alpha.0' - '@verdaccio/ui-theme': ^1.12.1 + '@verdaccio/ui-theme': ^1.14.0 '@verdaccio/utils': 'workspace:5.0.0-alpha.0' verdaccio-htpasswd: 9.7.2 packages/web: @@ -908,9 +908,9 @@ packages: node: '>=10' resolution: integrity: sha512-UQ9BequOTIavs0pTHLMwQwKQF8tTV1oezY/H2O9chA+JNPFZSua55xpU5dPSjAU9/jLJ1VwU+HJuTVN8u7S6Fg== - /@babel/cli/7.11.6_@babel+core@7.11.6: + /@babel/cli/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 commander: 4.1.1 convert-source-map: 1.7.0 fs-readdir-recursive: 1.1.0 @@ -922,11 +922,12 @@ packages: dev: true hasBin: true optionalDependencies: - chokidar: 2.1.8 + '@nicolo-ribaudo/chokidar-2': 2.1.8 + chokidar: 3.4.3 peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-+w7BZCvkewSmaRM6H4L2QM3RL90teqEIHDIFXAmrW33+0jhlymnDAEdqVeCZATvxhQuio1ifoGVlJJbIiH9Ffg== + integrity: sha512-eRJREyrfAJ2r42Iaxe8h3v6yyj1wu9OyosaUHW6UImjGf9ahGL9nsFNh7OCopvtcPL8WnEo7tp78wrZaZ6vG9g== /@babel/code-frame/7.10.4: dependencies: '@babel/highlight': 7.10.4 @@ -937,8 +938,13 @@ packages: browserslist: 4.14.4 invariant: 2.2.4 semver: 5.7.1 + dev: false resolution: integrity: sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ== + /@babel/compat-data/7.12.5: + dev: true + resolution: + integrity: sha512-DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg== /@babel/core/7.10.5: dependencies: '@babel/code-frame': 7.10.4 @@ -984,29 +990,29 @@ packages: node: '>=6.9.0' resolution: integrity: sha512-5deljj5HlqRXN+5oJTY7Zs37iH3z3b++KjiKtIsJy1NrjOOVSEaJHEetLBhyu0aQOSNNZ/0IuEAan9GzRuDXHg== - /@babel/core/7.11.6: + /@babel/core/7.12.3: dependencies: '@babel/code-frame': 7.10.4 - '@babel/generator': 7.11.6 - '@babel/helper-module-transforms': 7.11.0 - '@babel/helpers': 7.10.4 - '@babel/parser': 7.11.5 + '@babel/generator': 7.12.5 + '@babel/helper-module-transforms': 7.12.1 + '@babel/helpers': 7.12.5 + '@babel/parser': 7.12.5 '@babel/template': 7.10.4 - '@babel/traverse': 7.11.5 - '@babel/types': 7.11.5 + '@babel/traverse': 7.12.5 + '@babel/types': 7.12.6 convert-source-map: 1.7.0 debug: 4.2.0 - gensync: 1.0.0-beta.1 + gensync: 1.0.0-beta.2 json5: 2.1.3 lodash: 4.17.20 - resolve: 1.17.0 + resolve: 1.19.0 semver: 5.7.1 source-map: 0.5.7 dev: true engines: node: '>=6.9.0' resolution: - integrity: sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg== + integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g== /@babel/generator/7.11.4: dependencies: '@babel/types': 7.11.0 @@ -1021,15 +1027,23 @@ packages: source-map: 0.5.7 resolution: integrity: sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA== + /@babel/generator/7.12.5: + dependencies: + '@babel/types': 7.12.6 + jsesc: 2.5.2 + source-map: 0.5.7 + dev: true + resolution: + integrity: sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A== /@babel/helper-annotate-as-pure/7.10.4: dependencies: - '@babel/types': 7.11.0 + '@babel/types': 7.12.6 resolution: integrity: sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== /@babel/helper-builder-binary-assignment-operator-visitor/7.10.4: dependencies: - '@babel/helper-explode-assignable-expression': 7.11.4 - '@babel/types': 7.11.5 + '@babel/helper-explode-assignable-expression': 7.12.1 + '@babel/types': 7.12.6 resolution: integrity: sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== /@babel/helper-builder-react-jsx-experimental/7.10.5: @@ -1037,12 +1051,21 @@ packages: '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-module-imports': 7.10.4 '@babel/types': 7.11.0 + dev: false resolution: integrity: sha512-Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg== + /@babel/helper-builder-react-jsx-experimental/7.12.4: + dependencies: + '@babel/helper-annotate-as-pure': 7.10.4 + '@babel/helper-module-imports': 7.12.5 + '@babel/types': 7.12.6 + dev: true + resolution: + integrity: sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og== /@babel/helper-builder-react-jsx/7.10.4: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 - '@babel/types': 7.11.0 + '@babel/types': 7.12.6 resolution: integrity: sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg== /@babel/helper-compilation-targets/7.10.4: @@ -1070,19 +1093,18 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== - /@babel/helper-compilation-targets/7.10.4_@babel+core@7.11.6: + /@babel/helper-compilation-targets/7.12.5_@babel+core@7.12.3: dependencies: - '@babel/compat-data': 7.11.0 - '@babel/core': 7.11.6 - browserslist: 4.14.4 - invariant: 2.2.4 - levenary: 1.1.1 + '@babel/compat-data': 7.12.5 + '@babel/core': 7.12.3 + '@babel/helper-validator-option': 7.12.1 + browserslist: 4.14.7 semver: 5.7.1 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== + integrity: sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw== /@babel/helper-create-class-features-plugin/7.10.5: dependencies: '@babel/helper-function-name': 7.10.4 @@ -1110,20 +1132,19 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== - /@babel/helper-create-class-features-plugin/7.10.5_@babel+core@7.11.6: + /@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-function-name': 7.10.4 - '@babel/helper-member-expression-to-functions': 7.11.0 + '@babel/helper-member-expression-to-functions': 7.12.1 '@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.5 '@babel/helper-split-export-declaration': 7.11.0 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== + integrity: sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w== /@babel/helper-create-regexp-features-plugin/7.10.4: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 @@ -1145,9 +1166,9 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== - /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.11.6: + /@babel/helper-create-regexp-features-plugin/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-regex': 7.10.5 regexpu-core: 4.7.1 @@ -1155,34 +1176,34 @@ packages: peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== + integrity: sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA== /@babel/helper-define-map/7.10.5: dependencies: '@babel/helper-function-name': 7.10.4 - '@babel/types': 7.11.0 + '@babel/types': 7.12.6 lodash: 4.17.20 resolution: integrity: sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== - /@babel/helper-explode-assignable-expression/7.11.4: + /@babel/helper-explode-assignable-expression/7.12.1: dependencies: - '@babel/types': 7.11.5 + '@babel/types': 7.12.6 resolution: - integrity: sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ== + integrity: sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA== /@babel/helper-function-name/7.10.4: dependencies: '@babel/helper-get-function-arity': 7.10.4 '@babel/template': 7.10.4 - '@babel/types': 7.11.0 + '@babel/types': 7.12.6 resolution: integrity: sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== /@babel/helper-get-function-arity/7.10.4: dependencies: - '@babel/types': 7.11.5 + '@babel/types': 7.12.6 resolution: integrity: sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== /@babel/helper-hoist-variables/7.10.4: dependencies: - '@babel/types': 7.11.5 + '@babel/types': 7.12.6 resolution: integrity: sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== /@babel/helper-member-expression-to-functions/7.11.0: @@ -1190,11 +1211,23 @@ packages: '@babel/types': 7.11.0 resolution: integrity: sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q== + /@babel/helper-member-expression-to-functions/7.12.1: + dependencies: + '@babel/types': 7.12.6 + dev: true + resolution: + integrity: sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ== /@babel/helper-module-imports/7.10.4: dependencies: '@babel/types': 7.11.0 resolution: integrity: sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== + /@babel/helper-module-imports/7.12.5: + dependencies: + '@babel/types': 7.12.6 + dev: true + resolution: + integrity: sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA== /@babel/helper-module-transforms/7.11.0: dependencies: '@babel/helper-module-imports': 7.10.4 @@ -1206,9 +1239,23 @@ packages: lodash: 4.17.20 resolution: integrity: sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== + /@babel/helper-module-transforms/7.12.1: + dependencies: + '@babel/helper-module-imports': 7.12.5 + '@babel/helper-replace-supers': 7.12.5 + '@babel/helper-simple-access': 7.12.1 + '@babel/helper-split-export-declaration': 7.11.0 + '@babel/helper-validator-identifier': 7.10.4 + '@babel/template': 7.10.4 + '@babel/traverse': 7.12.5 + '@babel/types': 7.12.6 + lodash: 4.17.20 + dev: true + resolution: + integrity: sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w== /@babel/helper-optimise-call-expression/7.10.4: dependencies: - '@babel/types': 7.11.0 + '@babel/types': 7.12.6 resolution: integrity: sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== /@babel/helper-plugin-utils/7.10.4: @@ -1225,8 +1272,17 @@ packages: '@babel/helper-wrap-function': 7.10.4 '@babel/template': 7.10.4 '@babel/types': 7.11.0 + dev: false resolution: integrity: sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA== + /@babel/helper-remap-async-to-generator/7.12.1: + dependencies: + '@babel/helper-annotate-as-pure': 7.10.4 + '@babel/helper-wrap-function': 7.12.3 + '@babel/types': 7.12.6 + dev: true + resolution: + integrity: sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A== /@babel/helper-replace-supers/7.10.4: dependencies: '@babel/helper-member-expression-to-functions': 7.11.0 @@ -1235,33 +1291,69 @@ packages: '@babel/types': 7.11.0 resolution: integrity: sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== + /@babel/helper-replace-supers/7.12.5: + 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.6 + dev: true + resolution: + integrity: sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA== /@babel/helper-simple-access/7.10.4: dependencies: '@babel/template': 7.10.4 '@babel/types': 7.11.5 resolution: integrity: sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== + /@babel/helper-simple-access/7.12.1: + dependencies: + '@babel/types': 7.12.6 + dev: true + resolution: + integrity: sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA== /@babel/helper-skip-transparent-expression-wrappers/7.11.0: dependencies: '@babel/types': 7.11.5 + dev: false resolution: integrity: sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q== + /@babel/helper-skip-transparent-expression-wrappers/7.12.1: + dependencies: + '@babel/types': 7.12.6 + dev: true + resolution: + integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== /@babel/helper-split-export-declaration/7.11.0: dependencies: - '@babel/types': 7.11.0 + '@babel/types': 7.12.6 resolution: integrity: sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== /@babel/helper-validator-identifier/7.10.4: resolution: integrity: sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== + /@babel/helper-validator-option/7.12.1: + dev: true + resolution: + integrity: sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A== /@babel/helper-wrap-function/7.10.4: dependencies: '@babel/helper-function-name': 7.10.4 '@babel/template': 7.10.4 '@babel/traverse': 7.11.0 '@babel/types': 7.11.0 + dev: false resolution: integrity: sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== + /@babel/helper-wrap-function/7.12.3: + dependencies: + '@babel/helper-function-name': 7.10.4 + '@babel/template': 7.10.4 + '@babel/traverse': 7.12.5 + '@babel/types': 7.12.6 + dev: true + resolution: + integrity: sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow== /@babel/helpers/7.10.4: dependencies: '@babel/template': 7.10.4 @@ -1269,6 +1361,14 @@ packages: '@babel/types': 7.11.5 resolution: integrity: sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== + /@babel/helpers/7.12.5: + dependencies: + '@babel/template': 7.10.4 + '@babel/traverse': 7.12.5 + '@babel/types': 7.12.6 + dev: true + resolution: + integrity: sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA== /@babel/highlight/7.10.4: dependencies: '@babel/helper-validator-identifier': 7.10.4 @@ -1276,23 +1376,23 @@ packages: js-tokens: 4.0.0 resolution: integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== - /@babel/node/7.10.5_@babel+core@7.11.6: + /@babel/node/7.12.6_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/register': 7.10.5_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/register': 7.12.1_@babel+core@7.12.3 commander: 4.1.1 - core-js: 3.6.5 + core-js: 3.7.0 lodash: 4.17.20 node-environment-flags: 1.0.6 regenerator-runtime: 0.13.7 - resolve: 1.17.0 + resolve: 1.19.0 v8flags: 3.2.0 dev: true hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-suosS7zZ2roj+fYVCnDuVezUbRc0sdoyF0Gj/1FzWxD4ebbGiBGtL5qyqHH4NO34B5m4vWWYWgyNhSsrqS8vwA== + integrity: sha512-A1TpW2X05ZkI5+WV7Aa24QX4LyGwrGUQPflG1CyBdr84jUuH0mhkE2BQWSQAlfRnp4bMLjeveMJIhS20JaOfVQ== /@babel/parser/7.11.4: engines: node: '>=6.0.0' @@ -1305,6 +1405,12 @@ packages: hasBin: true resolution: integrity: sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q== + /@babel/parser/7.12.5: + engines: + node: '>=6.0.0' + hasBin: true + resolution: + integrity: sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ== /@babel/plugin-proposal-async-generator-functions/7.10.5: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1326,17 +1432,17 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== - /@babel/plugin-proposal-async-generator-functions/7.10.5_@babel+core@7.11.6: + /@babel/plugin-proposal-async-generator-functions/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-remap-async-to-generator': 7.11.4 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.11.6 + '@babel/helper-remap-async-to-generator': 7.12.1 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== + integrity: sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A== /@babel/plugin-proposal-class-properties/7.10.4: dependencies: '@babel/helper-create-class-features-plugin': 7.10.5 @@ -1356,27 +1462,27 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== - /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.11.6: + /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== - /@babel/plugin-proposal-decorators/7.10.5_@babel+core@7.11.6: + integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w== + /@babel/plugin-proposal-decorators/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-decorators': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-syntax-decorators': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Sc5TAQSZuLzgY0664mMDn24Vw2P8g/VhyLyGPaWiHahhgLqeZvcGeyBZOrJW0oSKIK2mvQ22a1ENXBIQLhrEiQ== + integrity: sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ== /@babel/plugin-proposal-dynamic-import/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1396,16 +1502,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== - /@babel/plugin-proposal-dynamic-import/7.10.4_@babel+core@7.11.6: + /@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== + integrity: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ== /@babel/plugin-proposal-export-namespace-from/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1425,27 +1531,27 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg== - /@babel/plugin-proposal-export-namespace-from/7.10.4_@babel+core@7.11.6: + /@babel/plugin-proposal-export-namespace-from/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg== - /@babel/plugin-proposal-function-sent/7.10.4_@babel+core@7.11.6: + integrity: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw== + /@babel/plugin-proposal-function-sent/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-wrap-function': 7.10.4 - '@babel/plugin-syntax-function-sent': 7.10.4_@babel+core@7.11.6 + '@babel/helper-wrap-function': 7.12.3 + '@babel/plugin-syntax-function-sent': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-aBtve/DhQsVPAGnSDcgt33gF36rO0TK+KtHp9Hwtj3KwH+o1Cii9vfVVYeB9c6Jo1SXOgTRwRD7ljpTS0qbN8w== + integrity: sha512-EXB01ACyNW0WCffP4ip40TH82X86+U0dakFZjyiMpoZ8NFmL5MMARzVBzy+Gg59B6vTgfvIhRHUhe6tNUw+vjw== /@babel/plugin-proposal-json-strings/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1465,16 +1571,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== - /@babel/plugin-proposal-json-strings/7.10.4_@babel+core@7.11.6: + /@babel/plugin-proposal-json-strings/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== + integrity: sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw== /@babel/plugin-proposal-logical-assignment-operators/7.11.0: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1494,16 +1600,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q== - /@babel/plugin-proposal-logical-assignment-operators/7.11.0_@babel+core@7.11.6: + /@babel/plugin-proposal-logical-assignment-operators/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q== + integrity: sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA== /@babel/plugin-proposal-nullish-coalescing-operator/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1523,16 +1629,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== - /@babel/plugin-proposal-nullish-coalescing-operator/7.10.4_@babel+core@7.11.6: + /@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== + integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg== /@babel/plugin-proposal-numeric-separator/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1552,16 +1658,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== - /@babel/plugin-proposal-numeric-separator/7.10.4_@babel+core@7.11.6: + /@babel/plugin-proposal-numeric-separator/7.12.5_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== + integrity: sha512-UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g== /@babel/plugin-proposal-object-rest-spread/7.10.4_@babel+core@7.10.5: dependencies: '@babel/core': 7.10.5 @@ -1594,17 +1700,17 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== - /@babel/plugin-proposal-object-rest-spread/7.11.0_@babel+core@7.11.6: + /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.11.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== + integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== /@babel/plugin-proposal-optional-catch-binding/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1624,16 +1730,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== - /@babel/plugin-proposal-optional-catch-binding/7.10.4_@babel+core@7.11.6: + /@babel/plugin-proposal-optional-catch-binding/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.11.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== + integrity: sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g== /@babel/plugin-proposal-optional-chaining/7.11.0: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1655,17 +1761,17 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA== - /@babel/plugin-proposal-optional-chaining/7.11.0_@babel+core@7.11.6: + /@babel/plugin-proposal-optional-chaining/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-skip-transparent-expression-wrappers': 7.11.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.11.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA== + integrity: sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw== /@babel/plugin-proposal-private-methods/7.10.4: dependencies: '@babel/helper-create-class-features-plugin': 7.10.5 @@ -1685,26 +1791,26 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== - /@babel/plugin-proposal-private-methods/7.10.4_@babel+core@7.11.6: + /@babel/plugin-proposal-private-methods/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== - /@babel/plugin-proposal-throw-expressions/7.10.4_@babel+core@7.11.6: + integrity: sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w== + /@babel/plugin-proposal-throw-expressions/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-throw-expressions': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-syntax-throw-expressions': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-m7K9duXeH/rko36i9G9seLOg2AVdeVTn65k8nnTxgozex0hkDSUr6cktJxTO7jElGEpmMz410pTs0Jn8+empxw== + integrity: sha512-kiWkKtm05K86C+T/nUazv+/Vxu93Aulrvof/ZrxVyGoUBVsVEWDrw9iChbe8tV+aPVQcjg4FQxKW3wUF7cRcpg== /@babel/plugin-proposal-unicode-property-regex/7.10.4: dependencies: '@babel/helper-create-regexp-features-plugin': 7.10.4 @@ -1728,10 +1834,10 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.11.6: + /@babel/plugin-proposal-unicode-property-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true engines: @@ -1739,7 +1845,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== + integrity: sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w== /@babel/plugin-syntax-async-generators/7.8.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1766,9 +1872,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.11.6: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -1784,9 +1890,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.11.6: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -1819,24 +1925,33 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== - /@babel/plugin-syntax-class-properties/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-class-properties/7.10.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== - /@babel/plugin-syntax-decorators/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-class-properties/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw== + integrity: sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA== + /@babel/plugin-syntax-decorators/7.12.1_@babel+core@7.12.3: + dependencies: + '@babel/core': 7.12.3 + '@babel/helper-plugin-utils': 7.10.4 + dev: true + peerDependencies: + '@babel/core': ^7.0.0-0 + resolution: + integrity: sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w== /@babel/plugin-syntax-dynamic-import/7.8.3: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -1854,9 +1969,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.11.6: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -1880,24 +1995,24 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.11.6: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - /@babel/plugin-syntax-function-sent/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-function-sent/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-dwElaRoDQhlVevbgKOlEUTe08QNJo4ZjWw3rqnMbEvH8NRJM+iPN2tTQtzyfNloXD8f3Jdiyf5Pn400B1U3SVA== + integrity: sha512-mtBQvNHcIzLnmQZhgzigzrgFzIe95WvBXJuTN0m4CvhDK0gRNQ2MC2AVSzB6w7VnVh/z5+0iHFcbfqKMlFwTkQ== /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.10.5: dependencies: '@babel/core': 7.10.5 @@ -1907,9 +2022,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -1942,9 +2057,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.11.6: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -1977,15 +2092,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== - /@babel/plugin-syntax-jsx/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== + integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== /@babel/plugin-syntax-logical-assignment-operators/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2012,9 +2127,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -2047,9 +2162,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.11.6: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -2082,9 +2197,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -2116,9 +2231,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.11.6: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -2151,9 +2266,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.11.6: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: @@ -2186,24 +2301,24 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.11.6: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-throw-expressions/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-throw-expressions/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Yac/4W71+JdAiOV3aLbnUUe2R0NZzNvdy5EqdauFnBQTxIXT58M89lOplIFVELTSus6PxFMjmbi2vXaJDiV/PQ== + integrity: sha512-+8FLGK1PYYB7D8tU9U5zX23fnzkpxw4a7lAyyZbgk6b6bN0k2dft/xwcxIE+86i54wLJ83BaAboh2Ow6wf6jHw== /@babel/plugin-syntax-top-level-await/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2221,15 +2336,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== - /@babel/plugin-syntax-top-level-await/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== + integrity: sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== /@babel/plugin-syntax-typescript/7.10.4_@babel+core@7.11.4: dependencies: '@babel/core': 7.11.4 @@ -2239,15 +2354,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== - /@babel/plugin-syntax-typescript/7.10.4_@babel+core@7.11.6: + /@babel/plugin-syntax-typescript/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== + integrity: sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA== /@babel/plugin-transform-arrow-functions/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2265,15 +2380,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== - /@babel/plugin-transform-arrow-functions/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-arrow-functions/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== + integrity: sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A== /@babel/plugin-transform-async-to-generator/7.10.4: dependencies: '@babel/helper-module-imports': 7.10.4 @@ -2295,17 +2410,17 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== - /@babel/plugin-transform-async-to-generator/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-async-to-generator/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-module-imports': 7.10.4 + '@babel/core': 7.12.3 + '@babel/helper-module-imports': 7.12.5 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-remap-async-to-generator': 7.11.4 + '@babel/helper-remap-async-to-generator': 7.12.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== + integrity: sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A== /@babel/plugin-transform-block-scoped-functions/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2323,15 +2438,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== - /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-block-scoped-functions/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== + integrity: sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA== /@babel/plugin-transform-block-scoping/7.11.1: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2349,15 +2464,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== - /@babel/plugin-transform-block-scoping/7.11.1_@babel+core@7.11.6: + /@babel/plugin-transform-block-scoping/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== + integrity: sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w== /@babel/plugin-transform-classes/7.10.4: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 @@ -2389,22 +2504,22 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== - /@babel/plugin-transform-classes/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-define-map': 7.10.5 '@babel/helper-function-name': 7.10.4 '@babel/helper-optimise-call-expression': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.10.4 + '@babel/helper-replace-supers': 7.12.5 '@babel/helper-split-export-declaration': 7.11.0 globals: 11.12.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== + integrity: sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog== /@babel/plugin-transform-computed-properties/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2422,15 +2537,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== - /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-computed-properties/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== + integrity: sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg== /@babel/plugin-transform-destructuring/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2448,15 +2563,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== - /@babel/plugin-transform-destructuring/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-destructuring/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== + integrity: sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw== /@babel/plugin-transform-dotall-regex/7.10.4: dependencies: '@babel/helper-create-regexp-features-plugin': 7.10.4 @@ -2476,16 +2591,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-dotall-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== + integrity: sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA== /@babel/plugin-transform-duplicate-keys/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2503,15 +2618,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== - /@babel/plugin-transform-duplicate-keys/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-duplicate-keys/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== + integrity: sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw== /@babel/plugin-transform-exponentiation-operator/7.10.4: dependencies: '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4 @@ -2531,16 +2646,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== - /@babel/plugin-transform-exponentiation-operator/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-exponentiation-operator/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== + integrity: sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug== /@babel/plugin-transform-for-of/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2558,15 +2673,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== - /@babel/plugin-transform-for-of/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-for-of/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== + integrity: sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg== /@babel/plugin-transform-function-name/7.10.4: dependencies: '@babel/helper-function-name': 7.10.4 @@ -2586,16 +2701,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== - /@babel/plugin-transform-function-name/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-function-name/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-function-name': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== + integrity: sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw== /@babel/plugin-transform-literals/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2613,15 +2728,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== - /@babel/plugin-transform-literals/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-literals/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== + integrity: sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ== /@babel/plugin-transform-member-expression-literals/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2639,15 +2754,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== - /@babel/plugin-transform-member-expression-literals/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-member-expression-literals/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== + integrity: sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg== /@babel/plugin-transform-modules-amd/7.10.5: dependencies: '@babel/helper-module-transforms': 7.11.0 @@ -2669,17 +2784,17 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== - /@babel/plugin-transform-modules-amd/7.10.5_@babel+core@7.11.6: + /@babel/plugin-transform-modules-amd/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-module-transforms': 7.11.0 + '@babel/core': 7.12.3 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 babel-plugin-dynamic-import-node: 2.3.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== + integrity: sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ== /@babel/plugin-transform-modules-commonjs/7.10.4: dependencies: '@babel/helper-module-transforms': 7.11.0 @@ -2703,18 +2818,18 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== - /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-modules-commonjs/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-module-transforms': 7.11.0 + '@babel/core': 7.12.3 + '@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 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== + integrity: sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag== /@babel/plugin-transform-modules-systemjs/7.10.5: dependencies: '@babel/helper-hoist-variables': 7.10.4 @@ -2738,18 +2853,19 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== - /@babel/plugin-transform-modules-systemjs/7.10.5_@babel+core@7.11.6: + /@babel/plugin-transform-modules-systemjs/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-hoist-variables': 7.10.4 - '@babel/helper-module-transforms': 7.11.0 + '@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 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== + integrity: sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q== /@babel/plugin-transform-modules-umd/7.10.4: dependencies: '@babel/helper-module-transforms': 7.11.0 @@ -2769,16 +2885,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== - /@babel/plugin-transform-modules-umd/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-modules-umd/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-module-transforms': 7.11.0 + '@babel/core': 7.12.3 + '@babel/helper-module-transforms': 7.12.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== + integrity: sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q== /@babel/plugin-transform-named-capturing-groups-regex/7.10.4: dependencies: '@babel/helper-create-regexp-features-plugin': 7.10.4 @@ -2796,15 +2912,15 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== - /@babel/plugin-transform-named-capturing-groups-regex/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-named-capturing-groups-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== + integrity: sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q== /@babel/plugin-transform-new-target/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2822,15 +2938,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== - /@babel/plugin-transform-new-target/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-new-target/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== + integrity: sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw== /@babel/plugin-transform-object-super/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2850,16 +2966,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== - /@babel/plugin-transform-object-super/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-object-super/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-replace-supers': 7.10.4 + '@babel/helper-replace-supers': 7.12.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== + integrity: sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw== /@babel/plugin-transform-parameters/7.10.5: dependencies: '@babel/helper-get-function-arity': 7.10.4 @@ -2889,16 +3005,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== - /@babel/plugin-transform-parameters/7.10.5_@babel+core@7.11.6: + /@babel/plugin-transform-parameters/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-get-function-arity': 7.10.4 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== + integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg== /@babel/plugin-transform-property-literals/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2916,15 +3031,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== - /@babel/plugin-transform-property-literals/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-property-literals/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== + integrity: sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ== /@babel/plugin-transform-react-display-name/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -2942,15 +3057,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw== - /@babel/plugin-transform-react-display-name/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-react-display-name/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw== + integrity: sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w== /@babel/plugin-transform-react-jsx-development/7.10.4: dependencies: '@babel/helper-builder-react-jsx-experimental': 7.10.5 @@ -2972,17 +3087,17 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ== - /@babel/plugin-transform-react-jsx-development/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-react-jsx-development/7.12.5_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-builder-react-jsx-experimental': 7.10.5 + '@babel/core': 7.12.3 + '@babel/helper-builder-react-jsx-experimental': 7.12.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ== + integrity: sha512-1JJusg3iPgsZDthyWiCr3KQiGs31ikU/mSf2N2dSYEAO0GEImmVUbWf0VoSDGDFTAn5Dj4DUiR6SdIXHY7tELA== /@babel/plugin-transform-react-jsx-self/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -3002,16 +3117,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== - /@babel/plugin-transform-react-jsx-self/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-react-jsx-self/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== + integrity: sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA== /@babel/plugin-transform-react-jsx-source/7.10.5: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -3031,16 +3145,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA== - /@babel/plugin-transform-react-jsx-source/7.10.5_@babel+core@7.11.6: + /@babel/plugin-transform-react-jsx-source/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA== + integrity: sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ== /@babel/plugin-transform-react-jsx/7.10.4: dependencies: '@babel/helper-builder-react-jsx': 7.10.4 @@ -3064,18 +3177,18 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== - /@babel/plugin-transform-react-jsx/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-react-jsx/7.12.5_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-builder-react-jsx': 7.10.4 - '@babel/helper-builder-react-jsx-experimental': 7.10.5 + '@babel/helper-builder-react-jsx-experimental': 7.12.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== + integrity: sha512-2xkcPqqrYiOQgSlM/iwto1paPijjsDbUynN13tI6bosDz/jOW3CRzYguIE8wKX32h+msbBM22Dv5fwrFkUOZjQ== /@babel/plugin-transform-react-pure-annotations/7.10.4: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 @@ -3095,16 +3208,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A== - /@babel/plugin-transform-react-pure-annotations/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-react-pure-annotations/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A== + integrity: sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== /@babel/plugin-transform-regenerator/7.10.4: dependencies: regenerator-transform: 0.14.5 @@ -3122,15 +3235,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== - /@babel/plugin-transform-regenerator/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-regenerator/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 regenerator-transform: 0.14.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== + integrity: sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng== /@babel/plugin-transform-reserved-words/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -3148,15 +3261,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== - /@babel/plugin-transform-reserved-words/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-reserved-words/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== + integrity: sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A== /@babel/plugin-transform-runtime/7.11.0: dependencies: '@babel/helper-module-imports': 7.10.4 @@ -3180,18 +3293,18 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-LFEsP+t3wkYBlis8w6/kmnd6Kb1dxTd+wGJ8MlxTGzQo//ehtqlVL4S9DNUa53+dtPSQobN2CXx4d81FqC58cw== - /@babel/plugin-transform-runtime/7.11.5_@babel+core@7.11.6: + /@babel/plugin-transform-runtime/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-module-imports': 7.10.4 + '@babel/core': 7.12.3 + '@babel/helper-module-imports': 7.12.5 '@babel/helper-plugin-utils': 7.10.4 - resolve: 1.17.0 + resolve: 1.19.0 semver: 5.7.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-9aIoee+EhjySZ6vY5hnLjigHzunBlscx9ANKutkeWTJTx6m5Rbq6Ic01tLvO54lSusR+BxV7u4UDdCmXv5aagg== + integrity: sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg== /@babel/plugin-transform-shorthand-properties/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -3209,15 +3322,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== - /@babel/plugin-transform-shorthand-properties/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-shorthand-properties/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== + integrity: sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw== /@babel/plugin-transform-spread/7.11.0: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -3237,16 +3350,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== - /@babel/plugin-transform-spread/7.11.0_@babel+core@7.11.6: + /@babel/plugin-transform-spread/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/helper-skip-transparent-expression-wrappers': 7.11.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.12.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== + integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng== /@babel/plugin-transform-sticky-regex/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -3266,16 +3379,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== - /@babel/plugin-transform-sticky-regex/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-sticky-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-regex': 7.10.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== + integrity: sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ== /@babel/plugin-transform-template-literals/7.10.5: dependencies: '@babel/helper-annotate-as-pure': 7.10.4 @@ -3295,16 +3408,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== - /@babel/plugin-transform-template-literals/7.10.5_@babel+core@7.11.6: + /@babel/plugin-transform-template-literals/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-annotate-as-pure': 7.10.4 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== + integrity: sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw== /@babel/plugin-transform-typeof-symbol/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -3322,15 +3434,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== - /@babel/plugin-transform-typeof-symbol/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-typeof-symbol/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== + integrity: sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q== /@babel/plugin-transform-typescript/7.11.0_@babel+core@7.11.4: dependencies: '@babel/core': 7.11.4 @@ -3342,17 +3454,17 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w== - /@babel/plugin-transform-typescript/7.11.0_@babel+core@7.11.6: + /@babel/plugin-transform-typescript/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-typescript': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-syntax-typescript': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w== + integrity: sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw== /@babel/plugin-transform-unicode-escapes/7.10.4: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -3370,15 +3482,15 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== - /@babel/plugin-transform-unicode-escapes/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-unicode-escapes/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== + integrity: sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q== /@babel/plugin-transform-unicode-regex/7.10.4: dependencies: '@babel/helper-create-regexp-features-plugin': 7.10.4 @@ -3398,23 +3510,23 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== - /@babel/plugin-transform-unicode-regex/7.10.4_@babel+core@7.11.6: + /@babel/plugin-transform-unicode-regex/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/helper-create-regexp-features-plugin': 7.12.1_@babel+core@7.12.3 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== - /@babel/polyfill/7.11.5: + integrity: sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg== + /@babel/polyfill/7.12.1: dependencies: core-js: 2.6.10 regenerator-runtime: 0.13.7 dev: true resolution: - integrity: sha512-FunXnE0Sgpd61pKSj2OSOs1D44rKTD3pGOfGilZ6LGrrIH0QEtJlTjqOqdF8Bs98JmjfGhni2BBkTfv9KcKJ9g== + integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g== /@babel/preset-env/7.11.0: dependencies: '@babel/compat-data': 7.11.0 @@ -3566,82 +3678,80 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg== - /@babel/preset-env/7.11.5_@babel+core@7.11.6: + /@babel/preset-env/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/compat-data': 7.11.0 - '@babel/core': 7.11.6 - '@babel/helper-compilation-targets': 7.10.4_@babel+core@7.11.6 - '@babel/helper-module-imports': 7.10.4 + '@babel/compat-data': 7.12.5 + '@babel/core': 7.12.3 + '@babel/helper-compilation-targets': 7.12.5_@babel+core@7.12.3 + '@babel/helper-module-imports': 7.12.5 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-async-generator-functions': 7.10.5_@babel+core@7.11.6 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-dynamic-import': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-export-namespace-from': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-logical-assignment-operators': 7.11.0_@babel+core@7.11.6 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-numeric-separator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.11.6 - '@babel/plugin-proposal-optional-catch-binding': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-optional-chaining': 7.11.0_@babel+core@7.11.6 - '@babel/plugin-proposal-private-methods': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.11.6 - '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-top-level-await': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-arrow-functions': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-async-to-generator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-block-scoped-functions': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-block-scoping': 7.11.1_@babel+core@7.11.6 - '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-computed-properties': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-destructuring': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-duplicate-keys': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-exponentiation-operator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-for-of': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-function-name': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-literals': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-member-expression-literals': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-modules-amd': 7.10.5_@babel+core@7.11.6 - '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-modules-systemjs': 7.10.5_@babel+core@7.11.6 - '@babel/plugin-transform-modules-umd': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-new-target': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-object-super': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.11.6 - '@babel/plugin-transform-property-literals': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-regenerator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-reserved-words': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-shorthand-properties': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-spread': 7.11.0_@babel+core@7.11.6 - '@babel/plugin-transform-sticky-regex': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.11.6 - '@babel/plugin-transform-typeof-symbol': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-unicode-escapes': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-unicode-regex': 7.10.4_@babel+core@7.11.6 - '@babel/preset-modules': 0.1.4_@babel+core@7.11.6 - '@babel/types': 7.11.5 - browserslist: 4.14.4 - core-js-compat: 3.6.5 - invariant: 2.2.4 - levenary: 1.1.1 + '@babel/helper-validator-option': 7.12.1 + '@babel/plugin-proposal-async-generator-functions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-json-strings': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-logical-assignment-operators': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-numeric-separator': 7.12.5_@babel+core@7.12.3 + '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-optional-catch-binding': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-optional-chaining': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3 + '@babel/plugin-syntax-class-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-top-level-await': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-async-to-generator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-block-scoped-functions': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-block-scoping': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-computed-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-duplicate-keys': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-exponentiation-operator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-function-name': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-literals': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-member-expression-literals': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-modules-amd': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-modules-systemjs': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-modules-umd': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-named-capturing-groups-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-new-target': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-object-super': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-property-literals': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-regenerator': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-reserved-words': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-sticky-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-typeof-symbol': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-unicode-escapes': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-unicode-regex': 7.12.1_@babel+core@7.12.3 + '@babel/preset-modules': 0.1.4_@babel+core@7.12.3 + '@babel/types': 7.12.6 + core-js-compat: 3.7.0 semver: 5.7.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA== + integrity: sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg== /@babel/preset-modules/0.1.3: dependencies: '@babel/helper-plugin-utils': 7.10.4 @@ -3667,13 +3777,13 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== - /@babel/preset-modules/0.1.4_@babel+core@7.11.6: + /@babel/preset-modules/0.1.4_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.11.6 - '@babel/types': 7.11.5 + '@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.3 + '@babel/types': 7.12.6 esutils: 2.0.3 dev: true peerDependencies: @@ -3709,21 +3819,21 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw== - /@babel/preset-react/7.10.4_@babel+core@7.11.6: + /@babel/preset-react/7.12.5_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-transform-react-display-name': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-react-jsx': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-react-jsx-development': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-react-jsx-self': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-transform-react-jsx-source': 7.10.5_@babel+core@7.11.6 - '@babel/plugin-transform-react-pure-annotations': 7.10.4_@babel+core@7.11.6 + '@babel/plugin-transform-react-display-name': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-react-jsx': 7.12.5_@babel+core@7.12.3 + '@babel/plugin-transform-react-jsx-development': 7.12.5_@babel+core@7.12.3 + '@babel/plugin-transform-react-jsx-self': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-react-jsx-source': 7.12.1_@babel+core@7.12.3 + '@babel/plugin-transform-react-pure-annotations': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw== + integrity: sha512-jcs++VPrgyFehkMezHtezS2BpnUlR7tQFAyesJn1vGTO9aTFZrgIQrA5YydlTwxbcjMwkFY6i04flCigRRr3GA== /@babel/preset-typescript/7.10.4_@babel+core@7.11.4: dependencies: '@babel/core': 7.11.4 @@ -3734,19 +3844,19 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ== - /@babel/preset-typescript/7.10.4_@babel+core@7.11.6: + /@babel/preset-typescript/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-transform-typescript': 7.11.0_@babel+core@7.11.6 + '@babel/plugin-transform-typescript': 7.12.1_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ== - /@babel/register/7.10.5_@babel+core@7.11.6: + integrity: sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw== + /@babel/register/7.12.1_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 find-cache-dir: 2.1.0 lodash: 4.17.20 make-dir: 2.1.0 @@ -3756,20 +3866,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-eYHdLv43nyvmPn9bfNfrcC4+iYNwdQ8Pxk1MFJuU/U5LpSYl/PH4dFMazCYZDFVi8ueG3shvO+AQfLrxpYulQw== - /@babel/register/7.11.5_@babel+core@7.11.6: - dependencies: - '@babel/core': 7.11.6 - find-cache-dir: 2.1.0 - lodash: 4.17.20 - make-dir: 2.1.0 - pirates: 4.0.1 - source-map-support: 0.5.19 - dev: true - peerDependencies: - '@babel/core': ^7.0.0-0 - resolution: - integrity: sha512-CAml0ioKX+kOAvBQDHa/+t1fgOt3qkTIz0TrRtRAT6XY0m5qYZXR85k6/sLCNPMGhYDlCFHCYuU0ybTJbvlC6w== + integrity: sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q== /@babel/runtime-corejs3/7.11.2: dependencies: core-js-pure: 3.6.5 @@ -3789,7 +3886,6 @@ packages: /@babel/runtime/7.12.5: dependencies: regenerator-runtime: 0.13.7 - dev: false resolution: integrity: sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== /@babel/standalone/7.11.4: @@ -3799,8 +3895,8 @@ packages: /@babel/template/7.10.4: dependencies: '@babel/code-frame': 7.10.4 - '@babel/parser': 7.11.5 - '@babel/types': 7.11.5 + '@babel/parser': 7.12.5 + '@babel/types': 7.12.6 resolution: integrity: sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== /@babel/traverse/7.11.0: @@ -3829,6 +3925,20 @@ packages: lodash: 4.17.20 resolution: integrity: sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ== + /@babel/traverse/7.12.5: + 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.5 + '@babel/types': 7.12.6 + debug: 4.2.0 + globals: 11.12.0 + lodash: 4.17.20 + dev: true + resolution: + integrity: sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA== /@babel/types/7.11.0: dependencies: '@babel/helper-validator-identifier': 7.10.4 @@ -3843,17 +3953,24 @@ packages: to-fast-properties: 2.0.0 resolution: integrity: sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q== + /@babel/types/7.12.6: + dependencies: + '@babel/helper-validator-identifier': 7.10.4 + lodash: 4.17.20 + to-fast-properties: 2.0.0 + resolution: + integrity: sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA== /@bcoe/v8-coverage/0.2.3: dev: true resolution: integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== /@changesets/apply-release-plan/4.0.0: dependencies: - '@babel/runtime': 7.11.2 - '@changesets/config': 1.3.0 + '@babel/runtime': 7.12.5 + '@changesets/config': 1.4.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 1.0.6 - '@changesets/types': 3.1.1 + '@changesets/types': 3.2.0 '@manypkg/get-packages': 1.1.1 fs-extra: 7.0.1 lodash.startcase: 4.4.0 @@ -3864,42 +3981,42 @@ packages: dev: true resolution: integrity: sha512-MrcUd8wIlQ4S/PznzqJVsmnEpUGfPEkCGF54iqt8G05GEqi/zuxpoTfebcScpj5zeiDyxFIcA9RbeZ3pvJJxoA== - /@changesets/assemble-release-plan/3.0.0: + /@changesets/assemble-release-plan/4.0.0: dependencies: - '@babel/runtime': 7.11.2 + '@babel/runtime': 7.12.5 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.1.3 - '@changesets/types': 3.1.1 + '@changesets/types': 3.2.0 '@manypkg/get-packages': 1.1.1 semver: 5.7.1 dev: true resolution: - integrity: sha512-TvcqUhNhKoqwE+L8dFtcwwAmos4+fqwmSkOWP3TSjw7K/inz2wjC46bA7IFtbx2hrwEq1iG0RCweQZTS2vrx1w== - /@changesets/changelog-github/0.1.1: + integrity: sha512-3Kv21FNvysTQvZs3fHr6aZeDibhZHtgI1++fMZplzVtwNVmpjow3zv9lcZmJP26LthbpVH3I8+nqlU7M43lfWA== + /@changesets/changelog-github/0.2.7: dependencies: - '@changesets/get-github-info': 0.3.0 - '@changesets/types': 0.4.0 + '@changesets/get-github-info': 0.4.4 + '@changesets/types': 3.2.0 dotenv: 8.2.0 dev: true resolution: - integrity: sha512-xwwyc7nSVVEUmVCiqT1dyju1rxe2awk5XOWLEwpsez3j9gXKwixlK43daG5jP1caGuXFc9f1BOSod2oJTUbtew== - /@changesets/cli/2.10.1: + integrity: sha512-bWK8IADPYsiSiyORNpVLbmdo7J7A4LktmzUowtIivslP03UW5f/YBDzGub7N0+BVdVmZrqvyWzAIKmpGVkEICg== + /@changesets/cli/2.11.2: dependencies: - '@babel/runtime': 7.11.2 + '@babel/runtime': 7.12.5 '@changesets/apply-release-plan': 4.0.0 - '@changesets/assemble-release-plan': 3.0.0 - '@changesets/config': 1.3.0 + '@changesets/assemble-release-plan': 4.0.0 + '@changesets/config': 1.4.0 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.1.3 - '@changesets/get-release-plan': 2.0.0 + '@changesets/get-release-plan': 2.0.1 '@changesets/git': 1.0.6 '@changesets/logger': 0.0.5 '@changesets/pre': 1.0.5 '@changesets/read': 0.4.6 - '@changesets/types': 3.1.1 + '@changesets/types': 3.2.0 '@changesets/write': 0.1.3 '@manypkg/get-packages': 1.1.1 - '@types/semver': 6.2.1 + '@types/semver': 6.2.2 boxen: 1.3.0 chalk: 2.4.2 enquirer: 2.3.6 @@ -3907,29 +4024,30 @@ packages: fs-extra: 7.0.1 human-id: 1.0.2 is-ci: 2.0.0 - meow: 5.0.0 + meow: 6.1.1 outdent: 0.5.0 p-limit: 2.3.0 preferred-pm: 3.0.2 semver: 5.7.1 spawndamnit: 2.0.0 - term-size: 2.2.0 + term-size: 2.2.1 tty-table: 2.8.13 dev: true hasBin: true resolution: - integrity: sha512-l/Uxon6/zMyj+BPrgeq6SwAwgukH4PlN4+Y6Tp4mWuXjDcDOZdtEae3AEomWdNlaoOPidw8KcqVxjZu9k3KVNA== - /@changesets/config/1.3.0: + integrity: sha512-Lfw4MWj46H7dgPzgYmRJ8QbpDxi02dK+21zuWzBjVtsf3AqJgy7oVdXl4Yga/JhBq8eeoxBS9NoCVw8/JOZBcg== + /@changesets/config/1.4.0: dependencies: '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.1.3 '@changesets/logger': 0.0.5 - '@changesets/types': 3.1.1 + '@changesets/types': 3.2.0 '@manypkg/get-packages': 1.1.1 fs-extra: 7.0.1 + micromatch: 4.0.2 dev: true resolution: - integrity: sha512-IeAHmN5kI7OywBUNJXsk/v4vcXDDscwgTe/K5D3FSng5QTvzbgiMAe5K1iwBxBvuT4u/33n89kxSJdg4TTTFfA== + integrity: sha512-eoTOcJ6py7jBDY8rUXwEGxR5UtvUX+p//0NhkVpPGcnvIeITHq+DOIsuWyGzWcb+1FaYkof3CCr32/komZTu4Q== /@changesets/errors/0.1.4: dependencies: extendable-error: 0.1.7 @@ -3938,7 +4056,7 @@ packages: integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q== /@changesets/get-dependents-graph/1.1.3: dependencies: - '@changesets/types': 3.1.1 + '@changesets/types': 3.2.0 '@manypkg/get-packages': 1.1.1 chalk: 2.4.2 fs-extra: 7.0.1 @@ -3946,34 +4064,34 @@ packages: dev: true resolution: integrity: sha512-cTbySXwSv9yWp4Pp5R/b5Qv23wJgFaFCqUbsI3IJ2pyPl0vMaODAZS8NI1nNK2XSxGIg1tw+dWNSR4PlrKBSVQ== - /@changesets/get-github-info/0.3.0: + /@changesets/get-github-info/0.4.4: dependencies: dataloader: 1.4.0 - node-fetch: 2.6.0 + node-fetch: 2.6.1 dev: true resolution: - integrity: sha512-PTFJk1hiMUZ1YGzULmRNo6a6w6LTV6iCY1muCBTby+k4WWGbGgAaqKfUVhpZBosd1fvFIlXl3wqxdA93PLkRaQ== - /@changesets/get-release-plan/2.0.0: + integrity: sha512-WoVdRBQXLvJVg3jsMc0+aB8WAFzSGOG45HSo2ep46ixq5lBjM2D51MbgtSYHRGFGvYuAUu6kAfnVmoZYCZFsKQ== + /@changesets/get-release-plan/2.0.1: dependencies: - '@babel/runtime': 7.11.2 - '@changesets/assemble-release-plan': 3.0.0 - '@changesets/config': 1.3.0 + '@babel/runtime': 7.12.5 + '@changesets/assemble-release-plan': 4.0.0 + '@changesets/config': 1.4.0 '@changesets/pre': 1.0.5 '@changesets/read': 0.4.6 - '@changesets/types': 3.1.1 + '@changesets/types': 3.2.0 '@manypkg/get-packages': 1.1.1 dev: true resolution: - integrity: sha512-MHbgXMhkfWhXH1zUefrdtQ8IR+H46lAcKthKjptV28k0qGEcDk7KriYLukJ6BNkWiZkkZ/aycaivbNDclF9zaw== + integrity: sha512-+x5N9/Iaka+c0Kq7+3JsboMNyffKYlWPmdm+VeafDcMwJFhBDkxm84qaCJ93ydmnzQOTig6gYVqw0k8BbHExyQ== /@changesets/get-version-range-type/0.3.2: dev: true resolution: integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg== /@changesets/git/1.0.6: dependencies: - '@babel/runtime': 7.11.2 + '@babel/runtime': 7.12.5 '@changesets/errors': 0.1.4 - '@changesets/types': 3.1.1 + '@changesets/types': 3.2.0 '@manypkg/get-packages': 1.1.1 is-subdir: 1.1.1 spawndamnit: 2.0.0 @@ -3986,18 +4104,18 @@ packages: dev: true resolution: integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw== - /@changesets/parse/0.3.6: + /@changesets/parse/0.3.7: dependencies: - '@changesets/types': 3.1.1 + '@changesets/types': 3.2.0 js-yaml: 3.14.0 dev: true resolution: - integrity: sha512-0XPd/es9CfogI7XIqDr7I2mWzm++xX2s9GZsij3GajPYd7ouEsgJyNatPooxNtqj6ZepkiD6uqlqbeBUyj/A0Q== + integrity: sha512-8yqKulslq/7V2VRBsJqPgjnZMoehYqhJm5lEOXJPZ2rcuSdyj8+p/2vq2vRDBJT2m0rP+C9G8DujsGYQIFZezw== /@changesets/pre/1.0.5: dependencies: - '@babel/runtime': 7.11.2 + '@babel/runtime': 7.12.5 '@changesets/errors': 0.1.4 - '@changesets/types': 3.1.1 + '@changesets/types': 3.2.0 '@manypkg/get-packages': 1.1.1 fs-extra: 7.0.1 dev: true @@ -4005,29 +4123,25 @@ packages: integrity: sha512-p43aAQY3aijhDnBLCriPao5YArlRjD4mSHRJq9PsBhljVLWqQQXcn6seSd77d+bD1tATLhB8tQ2eYoxMtMydXQ== /@changesets/read/0.4.6: dependencies: - '@babel/runtime': 7.11.2 + '@babel/runtime': 7.12.5 '@changesets/git': 1.0.6 '@changesets/logger': 0.0.5 - '@changesets/parse': 0.3.6 - '@changesets/types': 3.1.1 + '@changesets/parse': 0.3.7 + '@changesets/types': 3.2.0 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 dev: true resolution: integrity: sha512-rOd8dsF/Lgyy2SYlDalb3Ts/meDI2AcKPXYhSXIW3k6+ZLlj6Pt+nmgV5Ut8euyH7loibklNTDemfvMffF4xig== - /@changesets/types/0.4.0: + /@changesets/types/3.2.0: dev: true resolution: - integrity: sha512-TclHHKDVYQ8rJGZgVeWiF7c91yWzTTWdPagltgutelGu/Psup5PQlUq6svx7S8suj+jXcaE34yEEsfIvzXXB2Q== - /@changesets/types/3.1.1: - dev: true - resolution: - integrity: sha512-XWGEGWXhM92zvBWiQt2sOwhjTt8eCQbrsRbqkv4WYwW3Zsl4qPpvhHsNt845S42dJXrxgjWvId+jxFQocCayNQ== + integrity: sha512-rAmPtOyXpisEEE25CchKNUAf2ApyAeuZ/h78YDoqKZaCk5tUD0lgYZGPIRV9WTPoqNjJULIym37ogc6pkax5jg== /@changesets/write/0.1.3: dependencies: - '@babel/runtime': 7.11.2 - '@changesets/types': 3.1.1 + '@babel/runtime': 7.12.5 + '@changesets/types': 3.2.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 1.19.1 @@ -4668,6 +4782,7 @@ packages: '@types/istanbul-reports': 1.1.2 '@types/yargs': 15.0.5 chalk: 3.0.0 + dev: false engines: node: '>= 8.3' resolution: @@ -4676,7 +4791,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.0 - '@types/node': 14.0.14 + '@types/node': 14.14.7 '@types/yargs': 15.0.5 chalk: 4.1.0 dev: true @@ -5061,8 +5176,8 @@ packages: integrity: sha512-MY5KFYUru0y74IsgM/9asDwb3ERxWxXEu3CRCZEvE7DtT86y1bR1XgtlSliMrptjz4qbivNGMQSvUBpEFJDp1A== /@manypkg/find-root/1.1.0: dependencies: - '@babel/runtime': 7.11.2 - '@types/node': 12.12.54 + '@babel/runtime': 7.12.5 + '@types/node': 12.19.4 find-up: 4.1.0 fs-extra: 8.1.0 dev: true @@ -5070,7 +5185,7 @@ packages: integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA== /@manypkg/get-packages/1.1.1: dependencies: - '@babel/runtime': 7.11.2 + '@babel/runtime': 7.12.5 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 globby: 11.0.1 @@ -5287,10 +5402,17 @@ packages: dev: false resolution: integrity: sha512-6cDuZeKSCSJ1KvfEQ25Y8OXUjqDJZ+HgUs6dhASWbAX8fxVraTfPsSeRe2bN+4QJDsgUaXaMWBYfRomCr04GGg== + /@nicolo-ribaudo/chokidar-2/2.1.8: + dependencies: + chokidar: 2.1.8 + dev: true + optional: true + resolution: + integrity: sha512-FohwULwAebCUKi/akMFyGi7jfc7JXTeMHzKxuP3umRd9mK/2Y7/SMBSI2jX+YLopPXi+PF9l307NmpfxTdCegA== /@nodelib/fs.scandir/2.1.3: dependencies: '@nodelib/fs.stat': 2.0.3 - run-parallel: 1.1.9 + run-parallel: 1.1.10 engines: node: '>= 8' resolution: @@ -5303,7 +5425,7 @@ packages: /@nodelib/fs.walk/1.2.4: dependencies: '@nodelib/fs.scandir': 2.1.3 - fastq: 1.8.0 + fastq: 1.9.0 engines: node: '>= 8' resolution: @@ -5830,7 +5952,7 @@ packages: /@types/body-parser/1.19.0: dependencies: '@types/connect': 3.4.33 - '@types/node': 14.0.14 + '@types/node': 14.14.7 dev: true resolution: integrity: sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ== @@ -5867,7 +5989,7 @@ packages: integrity: sha1-zR6FU2M60xhcPy8jns/10mQ+krY= /@types/connect/3.4.33: dependencies: - '@types/node': 14.0.14 + '@types/node': 14.14.7 dev: true resolution: integrity: sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A== @@ -5884,6 +6006,7 @@ packages: resolution: integrity: sha1-UjCpznluBCzabwhtvxnyLqMwZZw= /@types/eslint-visitor-keys/1.0.0: + dev: false resolution: integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== /@types/estree/0.0.44: @@ -5896,7 +6019,7 @@ packages: integrity: sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== /@types/express-serve-static-core/4.17.9: dependencies: - '@types/node': 14.0.14 + '@types/node': 14.14.7 '@types/qs': 6.9.4 '@types/range-parser': 1.2.3 dev: true @@ -5972,6 +6095,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-lib-report': 3.0.0 + dev: false resolution: integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== /@types/istanbul-reports/3.0.0: @@ -5980,16 +6104,20 @@ packages: dev: true resolution: integrity: sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA== - /@types/jest/26.0.1: + /@types/jest/26.0.15: dependencies: - jest-diff: 25.5.0 - pretty-format: 25.5.0 + jest-diff: 26.4.2 + pretty-format: 26.4.2 dev: true resolution: - integrity: sha512-KumByIAlAh/uczr7WjdKHs5cUWhwOeRnsfjI/T/tQP1xvVBSgnRPAZ8VZjp26pQmE79d+n7X1AuTUu0IWHrfWg== + integrity: sha512-s2VMReFXRg9XXxV+CW9e5Nz8fH2K1aEhwgjUqPPbQd7g95T0laAcvLv032EhFHIa5GHsZ8W7iJEQVaJq6k3Gog== /@types/json-schema/7.0.5: resolution: integrity: sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== + /@types/json-schema/7.0.6: + dev: true + resolution: + integrity: sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== /@types/json5/0.0.29: resolution: integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4= @@ -6011,14 +6139,14 @@ packages: dev: false resolution: integrity: sha512-hxBvsUjPcW1O8mC9TiBE4m8TwvLuUU+zW8J6GI1M6WmPg8J87mXGt7zavpJ/9Znb+0rVsSB3VNAjCFaJ9YUJKg== - /@types/lodash/4.14.156: - dev: true - resolution: - integrity: sha512-l2AgHXcKUwx2DsvP19wtRPqZ4NkONjmorOdq4sMcxIjqdIuuV/ULo2ftuv4NUpevwfW7Ju/UKLqo0ZXuEt/8lQ== /@types/lodash/4.14.160: dev: false resolution: integrity: sha512-aP03BShJoO+WVndoVj/WNcB/YBPt+CIU1mvaao2GRAHy2yg4pT/XS4XnVHEQBjPJGycWf/9seKEO9vopTJGkvA== + /@types/lodash/4.14.165: + dev: true + resolution: + integrity: sha512-tjSSOTHhI5mCHTy/OOXYIhi2Wt1qcbHmuXD1Ha7q70CgI/I71afO4XtLb/cVexki1oVYchpul/TOuu3Arcdxrg== /@types/long/4.0.1: dev: false resolution: @@ -6040,6 +6168,10 @@ packages: dev: true resolution: integrity: sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY= + /@types/minimist/1.2.1: + dev: true + resolution: + integrity: sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg== /@types/mkdirp/0.5.2: dependencies: '@types/node': 8.10.62 @@ -6054,8 +6186,13 @@ packages: resolution: integrity: sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw== /@types/node/12.12.54: + dev: false resolution: integrity: sha512-ge4xZ3vSBornVYlDnk7yZ0gK6ChHf/CHB7Gl1I0Jhah8DDnEQqBzgohYG4FX4p81TNirSETOiSyn+y1r9/IR6w== + /@types/node/12.19.4: + dev: true + resolution: + integrity: sha512-o3oj1bETk8kBwzz1WlO6JWL/AfAA3Vm6J1B3C9CsdxHYp7XgPiH7OEXPUbZTndHlRaIElrANkQfe6ZmfJb3H2w== /@types/node/13.13.28: dev: false resolution: @@ -6067,6 +6204,10 @@ packages: /@types/node/14.10.0: resolution: integrity: sha512-SOIyrdADB4cq6eY1F+9iU48iIomFAPltu11LCvA9PKcyEwHadjCFzNVPotAR+oEJA0bCP4Xvvgy+vwu1ZjVh8g== + /@types/node/14.14.7: + dev: true + resolution: + integrity: sha512-Zw1vhUSQZYw+7u5dAwNbIA9TuTotpzY/OF7sJM9FqPOF3SPjKnxrjoTktXDZgUjybf4cWVBP7O8wvKdSaGHweg== /@types/node/14.6.0: resolution: integrity: sha512-mikldZQitV94akrc4sCcSjtJfsTKt4p+e/s0AGscVA6XArQ9kFclP+ZiYUMnq987rc6QlYxXv/EivqlfSLxpKA== @@ -6173,10 +6314,10 @@ packages: dev: false resolution: integrity: sha512-8gBudvllD2A/c0CcEX/BivIDorHFt5UI5m46TsNj8DjWCCTTZT74kEe4g+QsY7P/B9WdO98d82zZgXO/RQzu2Q== - /@types/semver/6.2.1: + /@types/semver/6.2.2: dev: true resolution: - integrity: sha512-+beqKQOh9PYxuHvijhVl+tIHvT6tuwOrE9m14zd+MT2A38KoKZhh7pYJ0SNleLtwDsiIxHDsIk9bv01oOxvSvA== + integrity: sha512-RxAwYt4rGwK5GyoRwuP0jT6ZHAVTdz2EqgsHmX0PYNjGsko+OeT4WFXXTs/lM3teJUJodM+SNtAL5/pXIJ61IQ== /@types/semver/7.2.0: dependencies: '@types/node': 14.0.14 @@ -6280,29 +6421,30 @@ packages: optional: true resolution: integrity: sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ== - /@typescript-eslint/eslint-plugin/3.10.1_a05db04594704d0c3392f43fee866a02: + /@typescript-eslint/eslint-plugin/4.7.0_6efabcbe04c1cfeb32eb47af39ec0067: dependencies: - '@typescript-eslint/experimental-utils': 3.10.1_eslint@7.5.0+typescript@3.9.7 - '@typescript-eslint/parser': 3.10.1_eslint@7.5.0+typescript@3.9.7 - debug: 4.1.1 + '@typescript-eslint/experimental-utils': 4.7.0_eslint@7.5.0+typescript@4.0.5 + '@typescript-eslint/parser': 4.7.0_eslint@7.5.0+typescript@4.0.5 + '@typescript-eslint/scope-manager': 4.7.0 + debug: 4.2.0 eslint: 7.5.0 functional-red-black-tree: 1.0.1 regexpp: 3.1.0 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.7 - typescript: 3.9.7 + tsutils: 3.17.1_typescript@4.0.5 + typescript: 4.0.5 dev: true engines: node: ^10.12.0 || >=12.0.0 peerDependencies: - '@typescript-eslint/parser': ^3.0.0 + '@typescript-eslint/parser': ^4.0.0 eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true resolution: - integrity: sha512-PQg0emRtzZFWq6PxBcdxRH3QIQiyFO3WCVpRL3fgj5oQS3CDs3AeAKfv4DxNhzn8ITdNJGJ4D3Qw8eAJf3lXeQ== + integrity: sha512-li9aiSVBBd7kU5VlQlT1AqP0uWGDK6JYKUQ9cVDnOg34VNnd9t4jr0Yqc/bKxJr/tDCPDaB4KzoSFN9fgVxe/Q== /@typescript-eslint/experimental-utils/2.34.0_eslint@6.8.0: dependencies: '@types/json-schema': 7.0.5 @@ -6317,10 +6459,10 @@ packages: eslint: '*' resolution: integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== - /@typescript-eslint/experimental-utils/2.34.0_eslint@7.5.0+typescript@3.9.7: + /@typescript-eslint/experimental-utils/2.34.0_eslint@7.5.0+typescript@4.0.5: dependencies: '@types/json-schema': 7.0.5 - '@typescript-eslint/typescript-estree': 2.34.0_typescript@3.9.7 + '@typescript-eslint/typescript-estree': 2.34.0_typescript@4.0.5 eslint: 7.5.0 eslint-scope: 5.1.0 eslint-utils: 2.1.0 @@ -6332,13 +6474,14 @@ packages: typescript: '*' resolution: integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== - /@typescript-eslint/experimental-utils/3.10.1_eslint@7.5.0+typescript@3.9.7: + /@typescript-eslint/experimental-utils/4.7.0_eslint@7.5.0+typescript@4.0.5: dependencies: - '@types/json-schema': 7.0.5 - '@typescript-eslint/types': 3.10.1 - '@typescript-eslint/typescript-estree': 3.10.1_typescript@3.9.7 + '@types/json-schema': 7.0.6 + '@typescript-eslint/scope-manager': 4.7.0 + '@typescript-eslint/types': 4.7.0 + '@typescript-eslint/typescript-estree': 4.7.0_typescript@4.0.5 eslint: 7.5.0 - eslint-scope: 5.1.0 + eslint-scope: 5.1.1 eslint-utils: 2.1.0 dev: true engines: @@ -6347,7 +6490,7 @@ packages: eslint: '*' typescript: '*' resolution: - integrity: sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw== + integrity: sha512-cymzovXAiD4EF+YoHAB5Oh02MpnXjvyaOb+v+BdpY7lsJXZQN34oIETeUwVT2XfV9rSNpXaIcknDLfupO/tUoA== /@typescript-eslint/parser/2.34.0_eslint@6.8.0: dependencies: '@types/eslint-visitor-keys': 1.0.0 @@ -6366,15 +6509,14 @@ packages: optional: true resolution: integrity: sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA== - /@typescript-eslint/parser/3.10.1_eslint@7.5.0+typescript@3.9.7: + /@typescript-eslint/parser/4.7.0_eslint@7.5.0+typescript@4.0.5: dependencies: - '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 3.10.1_eslint@7.5.0+typescript@3.9.7 - '@typescript-eslint/types': 3.10.1 - '@typescript-eslint/typescript-estree': 3.10.1_typescript@3.9.7 + '@typescript-eslint/scope-manager': 4.7.0 + '@typescript-eslint/types': 4.7.0 + '@typescript-eslint/typescript-estree': 4.7.0_typescript@4.0.5 + debug: 4.2.0 eslint: 7.5.0 - eslint-visitor-keys: 1.3.0 - typescript: 3.9.7 + typescript: 4.0.5 dev: true engines: node: ^10.12.0 || >=12.0.0 @@ -6385,13 +6527,22 @@ packages: typescript: optional: true resolution: - integrity: sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw== - /@typescript-eslint/types/3.10.1: + integrity: sha512-+meGV8bMP1sJHBI2AFq1GeTwofcGiur8LoIr6v+rEmD9knyCqDlrQcFHR0KDDfldHIFDU/enZ53fla6ReF4wRw== + /@typescript-eslint/scope-manager/4.7.0: + dependencies: + '@typescript-eslint/types': 4.7.0 + '@typescript-eslint/visitor-keys': 4.7.0 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 resolution: - integrity: sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ== + integrity: sha512-ILITvqwDJYbcDCROj6+Ob0oCKNg3SH46iWcNcTIT9B5aiVssoTYkhKjxOMNzR1F7WSJkik4zmuqve5MdnA0DyA== + /@typescript-eslint/types/4.7.0: + dev: true + engines: + node: ^8.10.0 || ^10.13.0 || >=11.10.1 + resolution: + integrity: sha512-uLszFe0wExJc+I7q0Z/+BnP7wao/kzX0hB5vJn4LIgrfrMLgnB2UXoReV19lkJQS1a1mHWGGODSxnBx6JQC3Sg== /@typescript-eslint/typescript-estree/2.34.0: dependencies: debug: 4.1.1 @@ -6411,7 +6562,7 @@ packages: optional: true resolution: integrity: sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== - /@typescript-eslint/typescript-estree/2.34.0_typescript@3.9.7: + /@typescript-eslint/typescript-estree/2.34.0_typescript@4.0.5: dependencies: debug: 4.1.1 eslint-visitor-keys: 1.3.0 @@ -6419,8 +6570,8 @@ packages: is-glob: 4.0.1 lodash: 4.17.20 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.7 - typescript: 3.9.7 + tsutils: 3.17.1_typescript@4.0.5 + typescript: 4.0.5 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 @@ -6431,17 +6582,17 @@ packages: optional: true resolution: integrity: sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== - /@typescript-eslint/typescript-estree/3.10.1_typescript@3.9.7: + /@typescript-eslint/typescript-estree/4.7.0_typescript@4.0.5: dependencies: - '@typescript-eslint/types': 3.10.1 - '@typescript-eslint/visitor-keys': 3.10.1 - debug: 4.1.1 - glob: 7.1.6 + '@typescript-eslint/types': 4.7.0 + '@typescript-eslint/visitor-keys': 4.7.0 + debug: 4.2.0 + globby: 11.0.1 is-glob: 4.0.1 lodash: 4.17.20 semver: 7.3.2 - tsutils: 3.17.1_typescript@3.9.7 - typescript: 3.9.7 + tsutils: 3.17.1_typescript@4.0.5 + typescript: 4.0.5 dev: true engines: node: ^10.12.0 || >=12.0.0 @@ -6451,15 +6602,16 @@ packages: typescript: optional: true resolution: - integrity: sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w== - /@typescript-eslint/visitor-keys/3.10.1: + integrity: sha512-5XZRQznD1MfUmxu1t8/j2Af4OxbA7EFU2rbo0No7meb46eHgGkSieFdfV6omiC/DGIBhH9H9gXn7okBbVOm8jw== + /@typescript-eslint/visitor-keys/4.7.0: dependencies: - eslint-visitor-keys: 1.3.0 + '@typescript-eslint/types': 4.7.0 + eslint-visitor-keys: 2.0.0 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 resolution: - integrity: sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ== + integrity: sha512-aDJDWuCRsf1lXOtignlfiPODkzSxxop7D0rZ91L6ZuMlcMCSh0YyK+gAfo5zN/ih6WxMwhoXgJWC3cWQdaKC+A== /@urql/core/1.12.3_graphql@14.7.0: dependencies: graphql: 14.7.0 @@ -6559,7 +6711,6 @@ packages: resolution: integrity: sha512-J9UEf6MkKugeq5sFhDfqPPGNy4dTSf3fVYK3Q2hGFQiKXvOw7hqovjz6PVOJRNMymBXb2fJuMPIXx1Br3kwD2Q== /@verdaccio/ui-theme/1.14.0: - dev: true resolution: integrity: sha512-vTzZYnC+HpeeW6pGFBa51rwbqwjqYkgJE1DEF5fSK5V2QbHi+XPIPucm6hrnaZjMlSYbe+4DaMN1XOKLqOJlzg== /@webassemblyjs/ast/1.9.0: @@ -7002,6 +7153,13 @@ packages: node: '>=8' resolution: integrity: sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== + /ansi-styles/4.3.0: + dependencies: + color-convert: 2.0.1 + engines: + node: '>=8' + resolution: + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== /any-base/1.1.0: dev: false resolution: @@ -7378,9 +7536,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== - /babel-core/7.0.0-bridge.0_@babel+core@7.11.6: + /babel-core/7.0.0-bridge.0_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 @@ -7418,14 +7576,14 @@ packages: eslint: '>= 4.12.1' resolution: integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== - /babel-jest/26.1.0_@babel+core@7.11.6: + /babel-jest/26.1.0_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 '@jest/transform': 26.3.0 '@jest/types': 26.3.0 '@types/babel__core': 7.1.9 babel-plugin-istanbul: 6.0.0 - babel-preset-jest: 26.3.0_@babel+core@7.11.6 + babel-preset-jest: 26.3.0_@babel+core@7.12.3 chalk: 4.1.0 graceful-fs: 4.2.4 slash: 3.0.0 @@ -7596,20 +7754,20 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ== - /babel-preset-current-node-syntax/0.1.3_@babel+core@7.11.6: + /babel-preset-current-node-syntax/0.1.3_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.11.6 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.11.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.11.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.11.6 + '@babel/core': 7.12.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.3 dev: true peerDependencies: '@babel/core': ^7.0.0 @@ -7675,11 +7833,11 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-5WPdf7nyYi2/eRxCbVrE1kKCWxgWY4RsPEbdJWFm7QsesFGqjdkyLeu1zRkwM1cxK6EPIlNd6d2AxLk7J+t4pw== - /babel-preset-jest/26.3.0_@babel+core@7.11.6: + /babel-preset-jest/26.3.0_@babel+core@7.12.3: dependencies: - '@babel/core': 7.11.6 + '@babel/core': 7.12.3 babel-plugin-jest-hoist: 26.2.0 - babel-preset-current-node-syntax: 0.1.3_@babel+core@7.11.6 + babel-preset-current-node-syntax: 0.1.3_@babel+core@7.12.3 dev: true engines: node: '>= 10.14.2' @@ -8096,11 +8254,25 @@ packages: electron-to-chromium: 1.3.571 escalade: 3.1.0 node-releases: 1.1.61 + dev: false engines: node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 hasBin: true resolution: integrity: sha512-7FOuawafVdEwa5Jv4nzeik/PepAjVte6HmVGHsjt2bC237jeL9QlcTBDF3PnHEvcC6uHwLGYPwZHNZMB7wWAnw== + /browserslist/4.14.7: + dependencies: + caniuse-lite: 1.0.30001157 + colorette: 1.2.1 + electron-to-chromium: 1.3.596 + escalade: 3.1.1 + node-releases: 1.1.66 + dev: true + engines: + node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 + hasBin: true + resolution: + integrity: sha512-BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ== /bser/2.1.1: dependencies: node-int64: 0.4.0 @@ -8317,6 +8489,12 @@ packages: node: '>=8' resolution: integrity: sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw== + /call-bind/1.0.0: + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.0.1 + resolution: + integrity: sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w== /caller-callsite/2.0.0: dependencies: callsites: 2.0.0 @@ -8422,8 +8600,13 @@ packages: resolution: integrity: sha512-RNKPLojZo74a0cP7jFMidQI7nvLER40HgNfgKQEJ2PFm225L0ectUungNQoK3Xk3StQcFbpBPNEvoWD59436Hg== /caniuse-lite/1.0.30001135: + dev: false resolution: integrity: sha512-ziNcheTGTHlu9g34EVoHQdIu5g4foc8EsxMGC7Xkokmvw0dqNtX8BS8RgCgFBaAiSp2IdjvBxNdh0ssib28eVQ== + /caniuse-lite/1.0.30001157: + dev: true + resolution: + integrity: sha512-gOerH9Wz2IRZ2ZPdMfBvyOi3cjaz4O4dgNwPGzx8EhqAs4+2IL/O+fJsbt+znSigujoZG8bVcIAUM/I/E5K3MA== /capture-exit/2.0.0: dependencies: rsvp: 4.8.5 @@ -8478,16 +8661,16 @@ packages: integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== /chalk/3.0.0: dependencies: - ansi-styles: 4.2.1 - supports-color: 7.1.0 + ansi-styles: 4.3.0 + supports-color: 7.2.0 engines: node: '>=8' resolution: integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== /chalk/4.1.0: dependencies: - ansi-styles: 4.2.1 - supports-color: 7.1.0 + ansi-styles: 4.3.0 + supports-color: 7.2.0 engines: node: '>=10' resolution: @@ -8600,6 +8783,23 @@ packages: fsevents: 2.1.3 resolution: integrity: sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A== + /chokidar/3.4.3: + dependencies: + anymatch: 3.1.1 + braces: 3.0.2 + glob-parent: 5.1.1 + is-binary-path: 2.1.0 + is-glob: 4.0.1 + normalize-path: 3.0.0 + readdirp: 3.5.0 + dev: true + engines: + node: '>= 8.10.0' + optional: true + optionalDependencies: + fsevents: 2.1.3 + resolution: + integrity: sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== /chownr/1.1.4: dev: false resolution: @@ -8862,7 +9062,6 @@ packages: resolution: integrity: sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== /colorette/1.2.1: - dev: false resolution: integrity: sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== /colors/1.4.0: @@ -9344,8 +9543,16 @@ packages: dependencies: browserslist: 4.14.4 semver: 7.0.0 + dev: false resolution: integrity: sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng== + /core-js-compat/3.7.0: + dependencies: + browserslist: 4.14.7 + semver: 7.0.0 + dev: true + resolution: + integrity: sha512-V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg== /core-js-pure/3.6.5: requiresBuild: true resolution: @@ -9358,6 +9565,11 @@ packages: requiresBuild: true resolution: integrity: sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== + /core-js/3.7.0: + dev: true + requiresBuild: true + resolution: + integrity: sha512-NwS7fI5M5B85EwpWuIwJN4i/fbisQUwLwiSNUWeXlkAZ0sbBjLEvLvFLf1uzAUV66PcEPt4xCGCmOZSxVf3xzA== /core-util-is/1.0.2: resolution: integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= @@ -9716,10 +9928,10 @@ packages: dev: true resolution: integrity: sha512-qNM9eqlxd53TWJeGtY1IQPj90b563Zx49eZs8e0uMyEvPgvNVmX1uZDtdzAcflB3PniuH9creAzcFOdyJ9YGvA== - /csv-parse/4.12.0: + /csv-parse/4.14.0: dev: true resolution: - integrity: sha512-wPQl3H79vWLPI8cgKFcQXl0NBgYYEqVnT1i6/So7OjMpsI540oD7p93r3w6fDSyPvwkTepG05F69/7AViX2lXg== + integrity: sha512-Mh6JEKAD4/scRM7jbQ5FbhuHbAVp+FN27S6PMF5ILuR7ofclfR0Fj6YmutFMXVgaNk/4GTy9bkmV8SMzwsv45Q== /csv-stringify/5.5.1: dev: true resolution: @@ -9727,7 +9939,7 @@ packages: /csv/5.3.2: dependencies: csv-generate: 3.2.4 - csv-parse: 4.12.0 + csv-parse: 4.14.0 csv-stringify: 5.5.1 stream-transform: 2.0.2 dev: true @@ -10244,6 +10456,7 @@ packages: resolution: integrity: sha512-7/nIzKdQ8y2K0imjIP7dyg2GJ2h38Ps6VOMXWZHIarNDV3p6mTXyEugKFnkmsZ2DD58JEG34ILyVb3qdOMmP9w== /diff-sequences/25.2.6: + dev: false engines: node: '>= 8.3' resolution: @@ -10546,8 +10759,13 @@ packages: resolution: integrity: sha512-MWDHoJsSieBaJ6mObvi3V0eKZufR1iMJl56VIGdXCgFHyCUbVDGm2IMXUNjDxgbGbKa3tA5+zJmHuBQqRxGiLA== /electron-to-chromium/1.3.571: + dev: false resolution: integrity: sha512-UYEQ2Gtc50kqmyOmOVtj6Oqi38lm5yRJY3pLuWt6UIot0No1L09uu6Ja6/1XKwmz/p0eJFZTUZi+khd1PV1hHA== + /electron-to-chromium/1.3.596: + dev: true + resolution: + integrity: sha512-nLO2Wd2yU42eSoNJVQKNf89CcEGqeFZd++QsnN2XIgje1s/19AgctfjLIbPORlvcCO8sYjLwX4iUgDdusOY8Sg== /elegant-spinner/1.0.1: dev: true engines: @@ -10765,6 +10983,23 @@ packages: node: '>= 0.4' resolution: integrity: sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== + /es-abstract/1.17.7: + 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.2 + is-regex: 1.1.1 + object-inspect: 1.8.0 + object-keys: 1.1.1 + object.assign: 4.1.2 + string.prototype.trimend: 1.0.2 + string.prototype.trimstart: 1.0.2 + engines: + node: '>= 0.4' + resolution: + integrity: sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== /es-abstract/1.18.0-next.0: dependencies: es-to-primitive: 1.2.1 @@ -10783,9 +11018,27 @@ packages: node: '>= 0.4' resolution: integrity: sha512-elZXTZXKn51hUBdJjSZGYRujuzilgXo8vSPQzjGYXLvSlGiCo8VO8ZGV3kjo9a0WNJJ57hENagwbtlRuHuzkcQ== + /es-abstract/1.18.0-next.1: + 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.2 + is-negative-zero: 2.0.0 + is-regex: 1.1.1 + object-inspect: 1.8.0 + object-keys: 1.1.1 + object.assign: 4.1.2 + string.prototype.trimend: 1.0.2 + string.prototype.trimstart: 1.0.2 + engines: + node: '>= 0.4' + resolution: + integrity: sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== /es-to-primitive/1.2.1: dependencies: - is-callable: 1.2.0 + is-callable: 1.2.2 is-date-object: 1.0.2 is-symbol: 1.0.3 engines: @@ -10809,10 +11062,17 @@ packages: resolution: integrity: sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ== /escalade/3.1.0: + dev: false engines: node: '>=6' resolution: integrity: sha512-mAk+hPSO8fLDkhV7V0dXazH5pDc6MrjBTPyD3VeKzxnVFjH1MIxbCdqGZB9O8+EwWakZs3ZCbDS4IpRt79V1ig== + /escalade/3.1.1: + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== /escape-goat/2.1.1: dev: false engines: @@ -11014,9 +11274,9 @@ packages: eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 resolution: integrity: sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg== - /eslint-plugin-jest/23.8.0_eslint@7.5.0+typescript@3.9.7: + /eslint-plugin-jest/23.8.0_eslint@7.5.0+typescript@4.0.5: dependencies: - '@typescript-eslint/experimental-utils': 2.34.0_eslint@7.5.0+typescript@3.9.7 + '@typescript-eslint/experimental-utils': 2.34.0_eslint@7.5.0+typescript@4.0.5 eslint: 7.5.0 dev: true engines: @@ -11169,6 +11429,15 @@ packages: node: '>=8.0.0' resolution: integrity: sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w== + /eslint-scope/5.1.1: + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + engines: + node: '>=8.0.0' + resolution: + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== /eslint-utils/1.4.3: dependencies: eslint-visitor-keys: 1.3.0 @@ -11189,6 +11458,12 @@ packages: node: '>=4' resolution: integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + /eslint-visitor-keys/2.0.0: + dev: true + engines: + node: '>=10' + resolution: + integrity: sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== /eslint/6.8.0: dependencies: '@babel/code-frame': 7.10.4 @@ -11318,6 +11593,14 @@ packages: node: '>=4.0' resolution: integrity: sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== + /esrecurse/4.3.0: + dependencies: + estraverse: 5.2.0 + dev: true + engines: + node: '>=4.0' + resolution: + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== /estraverse/4.3.0: engines: node: '>=4.0' @@ -11699,11 +11982,11 @@ packages: dev: false resolution: integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== - /fastq/1.8.0: + /fastq/1.9.0: dependencies: reusify: 1.0.4 resolution: - integrity: sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q== + integrity: sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w== /faye-websocket/0.10.0: dependencies: websocket-driver: 0.6.5 @@ -12185,7 +12468,7 @@ packages: /fsevents/1.2.13: dependencies: bindings: 1.5.0 - nan: 2.14.1 + nan: 2.14.2 engines: node: '>= 4.0' optional: true @@ -12982,11 +13265,24 @@ packages: node: '>=6.9.0' resolution: integrity: sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== + /gensync/1.0.0-beta.2: + dev: true + engines: + node: '>=6.9.0' + resolution: + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== /get-caller-file/2.0.5: engines: node: 6.* || 8.* || >= 10.* resolution: integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + /get-intrinsic/1.0.1: + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-symbols: 1.0.1 + resolution: + integrity: sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg== /get-nonce/1.0.1: dev: false engines: @@ -14546,6 +14842,7 @@ packages: /invariant/2.2.4: dependencies: loose-envify: 1.4.0 + dev: false resolution: integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== /ip-regex/2.1.0: @@ -14654,6 +14951,11 @@ packages: node: '>= 0.4' resolution: integrity: sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== + /is-callable/1.2.2: + engines: + node: '>= 0.4' + resolution: + integrity: sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== /is-ci/2.0.0: dependencies: ci-info: 2.0.0 @@ -14671,6 +14973,11 @@ packages: dev: false resolution: integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= + /is-core-module/2.1.0: + dependencies: + has: 1.0.3 + resolution: + integrity: sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA== /is-data-descriptor/0.1.4: dependencies: kind-of: 3.2.2 @@ -15293,6 +15600,7 @@ packages: diff-sequences: 25.2.6 jest-get-type: 25.2.6 pretty-format: 25.5.0 + dev: false engines: node: '>= 8.3' resolution: @@ -15368,6 +15676,7 @@ packages: resolution: integrity: sha512-c9BvYoo+FGcMj5FunbBgtBnbR5qk3uky8PKyRVpSfe2/8+LrNQMiXX53z6q2kY+j15SkjQCOSL/6LHnCPLVHNw== /jest-get-type/25.2.6: + dev: false engines: node: '>= 8.3' resolution: @@ -15837,9 +16146,9 @@ packages: /json-parse-better-errors/1.0.2: resolution: integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - /json-parse-even-better-errors/2.3.0: + /json-parse-even-better-errors/2.3.1: resolution: - integrity: sha512-o3aP+RsWDJZayj1SbHNQAI8x0v3T3SKiGoZlNYfbUP1S3omJQ6i9CnqADqkSPaOAxwua4/1YWx5CM7oiChJt2Q== + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== /json-schema-traverse/0.3.1: resolution: integrity: sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= @@ -16250,6 +16559,7 @@ packages: /levenary/1.1.1: dependencies: leven: 3.1.0 + dev: false engines: node: '>= 6' resolution: @@ -17150,6 +17460,24 @@ packages: node: '>=6' resolution: integrity: sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig== + /meow/6.1.1: + dependencies: + '@types/minimist': 1.2.1 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.0 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 2.5.0 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.0 + type-fest: 0.13.1 + yargs-parser: 18.1.3 + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg== /meow/7.1.0: dependencies: '@types/minimist': 1.2.0 @@ -17528,6 +17856,10 @@ packages: optional: true resolution: integrity: sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== + /nan/2.14.2: + optional: true + resolution: + integrity: sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== /nanomatch/1.2.13: dependencies: arr-diff: 4.0.0 @@ -17659,7 +17991,6 @@ packages: resolution: integrity: sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== /node-fetch/2.6.1: - dev: false engines: node: 4.x || >=6.0.0 resolution: @@ -17740,8 +18071,13 @@ packages: resolution: integrity: sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA== /node-releases/1.1.61: + dev: false resolution: integrity: sha512-DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g== + /node-releases/1.1.66: + dev: true + resolution: + integrity: sha512-JHEQ1iWPGK+38VLB2H9ef2otU4l8s3yAMt9Xf934r6+ojCYDMHPMqvCc9TnzfeFSP1QEOeU6YZEd3+De0LTCgg== /noms/0.0.0: dependencies: inherits: 2.0.4 @@ -17756,7 +18092,7 @@ packages: /normalize-package-data/2.5.0: dependencies: hosted-git-info: 2.8.8 - resolve: 1.17.0 + resolve: 1.19.0 semver: 5.7.1 validate-npm-package-license: 3.0.4 resolution: @@ -17995,6 +18331,16 @@ packages: node: '>= 0.4' resolution: integrity: sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== + /object.assign/4.1.2: + dependencies: + call-bind: 1.0.0 + define-properties: 1.1.3 + has-symbols: 1.0.1 + object-keys: 1.1.1 + engines: + node: '>= 0.4' + resolution: + integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== /object.entries/1.1.2: dependencies: define-properties: 1.1.3 @@ -18017,7 +18363,7 @@ packages: /object.getownpropertydescriptors/2.1.0: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.6 + es-abstract: 1.17.7 engines: node: '>= 0.8' resolution: @@ -18541,7 +18887,7 @@ packages: dependencies: '@babel/code-frame': 7.10.4 error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.0 + json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.1.6 engines: node: '>=8' @@ -19403,6 +19749,7 @@ packages: ansi-regex: 5.0.0 ansi-styles: 4.2.1 react-is: 16.13.1 + dev: false engines: node: '>= 8.3' resolution: @@ -19411,7 +19758,7 @@ packages: dependencies: '@jest/types': 26.3.0 ansi-regex: 5.0.0 - ansi-styles: 4.2.1 + ansi-styles: 4.3.0 react-is: 16.13.1 dev: true engines: @@ -20197,6 +20544,15 @@ packages: node: '>=8.10.0' resolution: integrity: sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== + /readdirp/3.5.0: + dependencies: + picomatch: 2.2.2 + dev: true + engines: + node: '>=8.10.0' + optional: true + resolution: + integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== /rechoir/0.6.2: dependencies: resolve: 1.17.0 @@ -20260,14 +20616,18 @@ packages: integrity: sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w== /regenerate-unicode-properties/8.2.0: dependencies: - regenerate: 1.4.1 + regenerate: 1.4.2 engines: node: '>=4' resolution: integrity: sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== /regenerate/1.4.1: + dev: false resolution: integrity: sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A== + /regenerate/1.4.2: + resolution: + integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== /regenerator-runtime/0.10.5: dev: true resolution: @@ -20280,7 +20640,7 @@ packages: integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== /regenerator-transform/0.14.5: dependencies: - '@babel/runtime': 7.11.2 + '@babel/runtime': 7.12.5 resolution: integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== /regex-not/1.0.2: @@ -20325,7 +20685,7 @@ packages: integrity: sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== /regexpu-core/4.7.1: dependencies: - regenerate: 1.4.1 + regenerate: 1.4.2 regenerate-unicode-properties: 8.2.0 regjsgen: 0.5.2 regjsparser: 0.6.4 @@ -20694,6 +21054,12 @@ packages: path-parse: 1.0.6 resolution: integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== + /resolve/1.19.0: + dependencies: + is-core-module: 2.1.0 + path-parse: 1.0.6 + resolution: + integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== /responselike/1.0.2: dependencies: lowercase-keys: 1.0.1 @@ -20817,9 +21183,9 @@ packages: hasBin: true resolution: integrity: sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A== - /run-parallel/1.1.9: + /run-parallel/1.1.10: resolution: - integrity: sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q== + integrity: sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw== /run-queue/1.0.3: dependencies: aproba: 1.2.0 @@ -21508,7 +21874,7 @@ packages: /spdx-correct/3.1.1: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.5 + spdx-license-ids: 3.0.6 resolution: integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== /spdx-exceptions/2.3.0: @@ -21517,12 +21883,12 @@ packages: /spdx-expression-parse/3.0.1: dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.5 + spdx-license-ids: 3.0.6 resolution: integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - /spdx-license-ids/3.0.5: + /spdx-license-ids/3.0.6: resolution: - integrity: sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== + integrity: sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw== /spdy-transport/3.0.0: dependencies: debug: 4.1.1 @@ -21868,12 +22234,24 @@ packages: es-abstract: 1.17.6 resolution: integrity: sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== + /string.prototype.trimend/1.0.2: + dependencies: + define-properties: 1.1.3 + es-abstract: 1.18.0-next.1 + resolution: + integrity: sha512-8oAG/hi14Z4nOVP0z6mdiVZ/wqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw== /string.prototype.trimstart/1.0.1: dependencies: define-properties: 1.1.3 es-abstract: 1.17.6 resolution: integrity: sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== + /string.prototype.trimstart/1.0.2: + dependencies: + define-properties: 1.1.3 + es-abstract: 1.18.0-next.1 + resolution: + integrity: sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg== /string_decoder/0.10.31: dev: false resolution: @@ -22154,10 +22532,18 @@ packages: /supports-color/7.1.0: dependencies: has-flag: 4.0.0 + dev: true engines: node: '>=8' resolution: integrity: sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== + /supports-color/7.2.0: + dependencies: + has-flag: 4.0.0 + engines: + node: '>=8' + resolution: + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== /supports-hyperlinks/2.1.0: dependencies: has-flag: 4.0.0 @@ -22318,10 +22704,17 @@ packages: resolution: integrity: sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= /term-size/2.2.0: + dev: false engines: node: '>=8' resolution: integrity: sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw== + /term-size/2.2.1: + dev: true + engines: + node: '>=8' + resolution: + integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== /terminal-link/2.1.1: dependencies: ansi-escapes: 4.3.1 @@ -22643,13 +23036,13 @@ packages: dev: false resolution: integrity: sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q== - /ts-node/9.0.0_typescript@3.9.7: + /ts-node/9.0.0_typescript@4.0.5: dependencies: arg: 4.1.3 diff: 4.0.2 make-error: 1.3.6 source-map-support: 0.5.19 - typescript: 3.9.7 + typescript: 4.0.5 yn: 3.1.1 dev: true engines: @@ -22700,10 +23093,10 @@ packages: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' resolution: integrity: sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== - /tsutils/3.17.1_typescript@3.9.7: + /tsutils/3.17.1_typescript@4.0.5: dependencies: tslib: 1.13.0 - typescript: 3.9.7 + typescript: 4.0.5 dev: true engines: node: '>= 6' @@ -22818,13 +23211,13 @@ packages: /typedarray/0.0.6: resolution: integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= - /typescript/3.9.7: + /typescript/4.0.5: dev: true engines: node: '>=4.2.0' hasBin: true resolution: - integrity: sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== + integrity: sha512-ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ== /uglify-js/3.10.2: engines: node: '>=0.8.0' @@ -23938,7 +24331,7 @@ packages: integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== /wrap-ansi/6.2.0: dependencies: - ansi-styles: 4.2.1 + ansi-styles: 4.3.0 string-width: 4.2.0 strip-ansi: 6.0.0 engines: diff --git a/tsconfig.base.json b/tsconfig.base.json index 41c3d8146..74d35b4fd 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -7,6 +7,7 @@ "strict": true, "declaration": true, "strictNullChecks": true, + "types": ["node", "jest", "express"], "resolveJsonModule": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true diff --git a/website/.eslintrc b/website/.eslintrc index aba4d617d..980dac3df 100644 --- a/website/.eslintrc +++ b/website/.eslintrc @@ -4,7 +4,7 @@ }, "settings": { "react": { - "version": "detect" + "version": "16" } }, "rules": {