diff --git a/packages/alias/package.json b/packages/alias/package.json index 5204a05b0..32cd6baa7 100755 --- a/packages/alias/package.json +++ b/packages/alias/package.json @@ -46,9 +46,9 @@ "slash": "^3.0.0" }, "devDependencies": { + "@rollup/plugin-node-resolve": "^7.0.0", "del-cli": "^3.0.0", - "rollup": "^1.20.0", - "rollup-plugin-node-resolve": "^5.2.0" + "rollup": "^1.27.14" }, "ava": { "files": [ diff --git a/packages/alias/rollup.config.js b/packages/alias/rollup.config.js index dc75fbd2d..4474606f1 100755 --- a/packages/alias/rollup.config.js +++ b/packages/alias/rollup.config.js @@ -2,6 +2,9 @@ import pkg from './package.json'; export default { input: 'src/index.js', - output: [{ file: pkg.main, format: 'cjs' }, { file: pkg.module, format: 'es' }], - external: Object.keys(pkg.dependencies).concat(['path', 'fs', 'os']) + external: [...Object.keys(pkg.dependencies), 'path', 'fs', 'os'], + output: [ + { file: pkg.main, format: 'cjs' }, + { file: pkg.module, format: 'es' } + ] }; diff --git a/packages/alias/test/test.js b/packages/alias/test/test.js index a8ede1058..a72cfccb3 100755 --- a/packages/alias/test/test.js +++ b/packages/alias/test/test.js @@ -5,7 +5,7 @@ import { rollup } from 'rollup'; import slash from 'slash'; // eslint-disable-next-line import/no-unresolved, import/extensions -import nodeResolvePlugin from 'rollup-plugin-node-resolve'; +import nodeResolvePlugin from '@rollup/plugin-node-resolve'; import alias from '../dist'; diff --git a/packages/auto-install/README.md b/packages/auto-install/README.md index bba70f81d..141705bdf 100755 --- a/packages/auto-install/README.md +++ b/packages/auto-install/README.md @@ -29,7 +29,7 @@ Create a `rollup.config.js` [configuration file](https://www.rollupjs.org/guide/ ```js import auto from '@rollup/plugin-auto-install'; -import resolve from 'rollup-plugin-node-resolve'; +import resolve from '@rollup/plugin-node-resolve'; export default { input: 'src/index.js', @@ -41,7 +41,7 @@ export default { }; ``` -_Note: ensure that this plugin is added to the `plugins` array *before* [rollup-plugin-node-resolve](https://github.com/rollup/rollup-plugin-node-resolve)._ +_Note: ensure that this plugin is added to the `plugins` array *before* [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/master/packages/node-resolve)._ Then call `rollup` either via the [CLI](https://www.rollupjs.org/guide/en/#command-line-reference) or the [API](https://www.rollupjs.org/guide/en/#javascript-api). diff --git a/packages/auto-install/package.json b/packages/auto-install/package.json index d5f3a47ab..e057857f7 100755 --- a/packages/auto-install/package.json +++ b/packages/auto-install/package.json @@ -42,9 +42,9 @@ "node-noop": "^1.0.0" }, "devDependencies": { + "@rollup/plugin-node-resolve": "^7.0.0", "del": "^5.1.0", - "rollup": "^1.20.0", - "rollup-plugin-node-resolve": "^5.2.0" + "rollup": "^1.27.14" }, "ava": { "files": [ diff --git a/packages/auto-install/test/npm-bare.js b/packages/auto-install/test/npm-bare.js index 3b4547373..19560e4d2 100644 --- a/packages/auto-install/test/npm-bare.js +++ b/packages/auto-install/test/npm-bare.js @@ -3,7 +3,7 @@ const { join } = require('path'); const test = require('ava'); const del = require('del'); -const resolve = require('rollup-plugin-node-resolve'); +const resolve = require('@rollup/plugin-node-resolve'); const { rollup } = require('rollup'); const autoInstall = require('..'); diff --git a/packages/auto-install/test/npm.js b/packages/auto-install/test/npm.js index fdcd728b5..743df636e 100644 --- a/packages/auto-install/test/npm.js +++ b/packages/auto-install/test/npm.js @@ -3,7 +3,7 @@ const { join } = require('path'); const test = require('ava'); const del = require('del'); -const resolve = require('rollup-plugin-node-resolve'); +const resolve = require('@rollup/plugin-node-resolve'); const { rollup } = require('rollup'); const autoInstall = require('..'); diff --git a/packages/auto-install/test/yarn-bare.js b/packages/auto-install/test/yarn-bare.js index fde51077f..03227a7fc 100644 --- a/packages/auto-install/test/yarn-bare.js +++ b/packages/auto-install/test/yarn-bare.js @@ -3,7 +3,7 @@ const { join } = require('path'); const test = require('ava'); const del = require('del'); -const resolve = require('rollup-plugin-node-resolve'); +const resolve = require('@rollup/plugin-node-resolve'); const { rollup } = require('rollup'); const autoInstall = require('..'); diff --git a/packages/auto-install/test/yarn.js b/packages/auto-install/test/yarn.js index 736dc569c..53cc109ca 100644 --- a/packages/auto-install/test/yarn.js +++ b/packages/auto-install/test/yarn.js @@ -3,7 +3,7 @@ const { join } = require('path'); const test = require('ava'); const del = require('del'); -const resolve = require('rollup-plugin-node-resolve'); +const resolve = require('@rollup/plugin-node-resolve'); const { rollup } = require('rollup'); const autoInstall = require('..'); diff --git a/packages/buble/package.json b/packages/buble/package.json index becdcfd2b..0bbe2e058 100644 --- a/packages/buble/package.json +++ b/packages/buble/package.json @@ -46,15 +46,15 @@ "rollup": "^1.20.0" }, "dependencies": { + "@rollup/pluginutils": "^3.0.4", "@types/buble": "^0.19.2", - "buble": "^0.19.8", - "rollup-pluginutils": "^2.8.2" + "buble": "^0.19.8" }, "devDependencies": { "del-cli": "^3.0.0", - "rollup": "^1.27.0", + "rollup": "^1.27.14", "source-map": "^0.7.3", - "typescript": "^3.7.2" + "typescript": "^3.7.4" }, "ava": { "files": [ diff --git a/packages/buble/src/index.js b/packages/buble/src/index.js index 1fd62529e..347a6e6db 100644 --- a/packages/buble/src/index.js +++ b/packages/buble/src/index.js @@ -1,5 +1,5 @@ import { transform } from 'buble'; -import { createFilter } from 'rollup-pluginutils'; +import { createFilter } from '@rollup/pluginutils'; export default function buble(options = {}) { const filter = createFilter(options.include, options.exclude); diff --git a/packages/commonjs/package.json b/packages/commonjs/package.json index 1e7ac3405..8f005e97e 100644 --- a/packages/commonjs/package.json +++ b/packages/commonjs/package.json @@ -56,26 +56,21 @@ "resolve": "^1.11.0" }, "devDependencies": { - "@babel/core": "^7.4.5", - "@babel/preset-env": "^7.4.5", - "@babel/register": "^7.4.4", - "@rollup/plugin-json": "^4.0.0", - "@rollup/plugin-node-resolve": "^6.0.0", - "acorn": "^6.1.1", - "eslint": "^6.0.1", - "eslint-plugin-import": "^2.18.0", - "husky": "^2.4.1", - "lint-staged": "^8.2.1", + "@babel/core": "^7.7.7", + "@babel/preset-env": "^7.7.7", + "@babel/register": "^7.7.7", + "@rollup/plugin-json": "^4.0.1", + "@rollup/plugin-node-resolve": "^7.0.0", + "acorn": "^7.1.0", "locate-character": "^2.0.5", - "mocha": "^6.1.4", - "prettier": "^1.18.2", + "prettier": "^1.19.1", "require-relative": "^0.8.7", - "rollup": "^1.16.2", + "rollup": "^1.27.14", "rollup-plugin-babel": "^4.3.3", "shx": "^0.3.2", "source-map": "^0.6.1", - "source-map-support": "^0.5.12", - "typescript": "^3.5.2" + "source-map-support": "^0.5.16", + "typescript": "^3.7.4" }, "ava": { "files": [ diff --git a/packages/dsv/package.json b/packages/dsv/package.json index c42e8fa73..900af90b4 100755 --- a/packages/dsv/package.json +++ b/packages/dsv/package.json @@ -33,13 +33,13 @@ "LICENSE" ], "dependencies": { - "d3-dsv": "^0.1.14", - "rollup-pluginutils": "^2.8.2", + "@rollup/pluginutils": "^3.0.4", + "d3-dsv": "1.2.0", "tosource": "^1.0.0" }, "devDependencies": { "del-cli": "^3.0.0", - "rollup": "^1.20.0" + "rollup": "^1.27.14" }, "ava": { "files": [ diff --git a/packages/dsv/rollup.config.js b/packages/dsv/rollup.config.js index c5542de2f..6434cb4bd 100755 --- a/packages/dsv/rollup.config.js +++ b/packages/dsv/rollup.config.js @@ -2,5 +2,9 @@ import pkg from './package.json'; export default { input: 'src/index.js', - output: [{ file: pkg.main, format: 'cjs' }, { file: pkg.module, format: 'es' }] + external: [...Object.keys(pkg.dependencies), 'path'], + output: [ + { file: pkg.main, format: 'cjs' }, + { file: pkg.module, format: 'es' } + ] }; diff --git a/packages/dsv/src/index.js b/packages/dsv/src/index.js index 310d96a6a..1612d1020 100755 --- a/packages/dsv/src/index.js +++ b/packages/dsv/src/index.js @@ -1,10 +1,10 @@ import { extname } from 'path'; -import { csv, tsv } from 'd3-dsv'; +import { csvParse, tsvParse } from 'd3-dsv'; import toSource from 'tosource'; -import { createFilter } from 'rollup-pluginutils'; +import { createFilter } from '@rollup/pluginutils'; -const parsers = { '.csv': csv, '.tsv': tsv }; +const parsers = { '.csv': csvParse, '.tsv': tsvParse }; export default function dsv(options = {}) { const filter = createFilter(options.include, options.exclude); @@ -18,7 +18,7 @@ export default function dsv(options = {}) { const ext = extname(id); if (!(ext in parsers)) return null; - let rows = parsers[ext].parse(code); + let rows = parsers[ext](code); if (options.processRow) { rows = rows.map((row) => options.processRow(row, id) || row); diff --git a/packages/image/package.json b/packages/image/package.json index 9bd938a6a..0194d9a03 100755 --- a/packages/image/package.json +++ b/packages/image/package.json @@ -48,8 +48,8 @@ "@rollup/pluginutils": "^3.0.1" }, "devDependencies": { - "rollup": "^1.27.14", - "rollup-plugin-buble": "^0.10.0" + "@rollup/plugin-buble": "^0.21.0", + "rollup": "^1.27.14" }, "ava": { "files": [ diff --git a/packages/image/rollup.config.js b/packages/image/rollup.config.js index 0b8c4d67c..9a4e67784 100755 --- a/packages/image/rollup.config.js +++ b/packages/image/rollup.config.js @@ -1,4 +1,4 @@ -import buble from 'rollup-plugin-buble'; +import buble from '@rollup/plugin-buble'; import pkg from './package.json'; diff --git a/packages/inject/package.json b/packages/inject/package.json index 693b5c21d..16ddc1cab 100644 --- a/packages/inject/package.json +++ b/packages/inject/package.json @@ -46,17 +46,17 @@ "rollup": "^1.20.0" }, "dependencies": { + "@rollup/pluginutils": "^3.0.4", "estree-walker": "^1.0.1", - "magic-string": "^0.25.2", - "rollup-pluginutils": "^2.6.0" + "magic-string": "^0.25.5" }, "devDependencies": { + "@rollup/plugin-buble": "^0.21.0", "del-cli": "^3.0.0", "locate-character": "^2.0.5", - "rollup": "^1.20.0", - "rollup-plugin-buble": "^0.19.6", + "rollup": "^1.27.14", "source-map": "^0.7.3", - "typescript": "^3.4.3" + "typescript": "^3.7.4" }, "ava": { "files": [ diff --git a/packages/inject/rollup.config.js b/packages/inject/rollup.config.js index 4b8bb96b9..5427c6bd8 100644 --- a/packages/inject/rollup.config.js +++ b/packages/inject/rollup.config.js @@ -1,12 +1,15 @@ -import buble from "rollup-plugin-buble"; +import buble from '@rollup/plugin-buble'; -import pkg from "./package.json"; +import pkg from './package.json'; -const external = Object.keys(pkg.dependencies).concat("path"); +const external = Object.keys(pkg.dependencies).concat('path'); export default { - input: "src/index.js", + input: 'src/index.js', plugins: [buble()], external, - output: [{ file: pkg.main, format: "cjs" }, { file: pkg.module, format: "es" }] + output: [ + { file: pkg.main, format: 'cjs' }, + { file: pkg.module, format: 'es' } + ] }; diff --git a/packages/inject/src/index.js b/packages/inject/src/index.js index 6b0d2db9c..e8e113113 100644 --- a/packages/inject/src/index.js +++ b/packages/inject/src/index.js @@ -1,6 +1,6 @@ import { sep } from 'path'; -import { attachScopes, createFilter, makeLegalIdentifier } from 'rollup-pluginutils'; +import { attachScopes, createFilter, makeLegalIdentifier } from '@rollup/pluginutils'; import { walk } from 'estree-walker'; import MagicString from 'magic-string'; diff --git a/packages/json/package.json b/packages/json/package.json index e2cc33da5..4c20429ee 100755 --- a/packages/json/package.json +++ b/packages/json/package.json @@ -46,12 +46,12 @@ "rollup": "^1.20.0" }, "dependencies": { - "rollup-pluginutils": "^2.5.0" + "@rollup/pluginutils": "^3.0.4" }, "devDependencies": { - "rollup-plugin-buble": "^0.19.6", - "rollup-plugin-node-resolve": "^5.2.0", - "source-map-support": "^0.5.11" + "@rollup/plugin-buble": "^0.21.0", + "@rollup/plugin-node-resolve": "^7.0.0", + "source-map-support": "^0.5.16" }, "ava": { "files": [ diff --git a/packages/json/rollup.config.js b/packages/json/rollup.config.js index 502c3d59e..df207446a 100755 --- a/packages/json/rollup.config.js +++ b/packages/json/rollup.config.js @@ -1,4 +1,4 @@ -import buble from 'rollup-plugin-buble'; +import buble from '@rollup/plugin-buble'; const pkg = require('./package.json'); diff --git a/packages/json/src/index.js b/packages/json/src/index.js index 38828ea53..432410c0a 100755 --- a/packages/json/src/index.js +++ b/packages/json/src/index.js @@ -1,4 +1,4 @@ -import { createFilter, dataToEsm } from 'rollup-pluginutils'; +import { createFilter, dataToEsm } from '@rollup/pluginutils'; export default function json(options = {}) { const filter = createFilter(options.include, options.exclude); diff --git a/packages/json/test/test.js b/packages/json/test/test.js index 8dd6ae66f..071b4ff0b 100755 --- a/packages/json/test/test.js +++ b/packages/json/test/test.js @@ -3,7 +3,7 @@ const { readFileSync } = require('fs'); const test = require('ava'); const { rollup } = require('rollup'); -const resolve = require('rollup-plugin-node-resolve'); +const resolve = require('@rollup/plugin-node-resolve'); const { testBundle } = require('../../../util/test'); diff --git a/packages/replace/package.json b/packages/replace/package.json index cf4cf964d..2fb00a6d1 100644 --- a/packages/replace/package.json +++ b/packages/replace/package.json @@ -46,16 +46,16 @@ "rollup": "^1.20.0" }, "dependencies": { - "magic-string": "^0.25.2", - "rollup-pluginutils": "^2.6.0" + "@rollup/pluginutils": "^3.0.4", + "magic-string": "^0.25.5" }, "devDependencies": { + "@rollup/plugin-buble": "^0.21.0", "del-cli": "^3.0.0", "locate-character": "^2.0.5", - "rollup": "^1.20.0", - "rollup-plugin-buble": "^0.19.6", + "rollup": "^1.27.14", "source-map": "^0.7.3", - "typescript": "^3.4.3" + "typescript": "^3.7.4" }, "ava": { "files": [ diff --git a/packages/replace/rollup.config.js b/packages/replace/rollup.config.js index cd2ffc594..5427c6bd8 100755 --- a/packages/replace/rollup.config.js +++ b/packages/replace/rollup.config.js @@ -1,4 +1,4 @@ -import buble from 'rollup-plugin-buble'; +import buble from '@rollup/plugin-buble'; import pkg from './package.json'; @@ -8,5 +8,8 @@ export default { input: 'src/index.js', plugins: [buble()], external, - output: [{ file: pkg.main, format: 'cjs' }, { file: pkg.module, format: 'es' }] + output: [ + { file: pkg.main, format: 'cjs' }, + { file: pkg.module, format: 'es' } + ] }; diff --git a/packages/replace/src/index.js b/packages/replace/src/index.js index 0d15403e9..e662a056c 100755 --- a/packages/replace/src/index.js +++ b/packages/replace/src/index.js @@ -1,5 +1,5 @@ import MagicString from 'magic-string'; -import { createFilter } from 'rollup-pluginutils'; +import { createFilter } from '@rollup/pluginutils'; function escape(str) { return str.replace(/[-[\]/{}()*+?.\\^$|]/g, '\\$&'); diff --git a/packages/run/package.json b/packages/run/package.json index 06fc3c716..ef13fa87d 100644 --- a/packages/run/package.json +++ b/packages/run/package.json @@ -36,10 +36,10 @@ "rollup": "^1.20.0" }, "devDependencies": { - "@types/node": "^12.12.22", + "@types/node": "13.1.6", "del": "^5.1.0", - "rollup": "^1.20.0", - "sinon": "^7.5.0" + "rollup": "^1.27.14", + "sinon": "8.0.4" }, "ava": { "files": [ diff --git a/packages/strip/package.json b/packages/strip/package.json index 15cbb3c2e..33ee1a5b3 100644 --- a/packages/strip/package.json +++ b/packages/strip/package.json @@ -37,13 +37,13 @@ "rollup": "^1.20.0" }, "dependencies": { + "@rollup/pluginutils": "^3.0.4", "estree-walker": "^1.0.1", - "magic-string": "^0.25.1", - "rollup-pluginutils": "^2.8.1" + "magic-string": "^0.25.5" }, "devDependencies": { - "acorn": "^6.0.2", - "rollup": "^1.20.0" + "acorn": "7.1.0", + "rollup": "^1.27.14" }, "ava": { "files": [ diff --git a/packages/strip/src/index.js b/packages/strip/src/index.js index 6db9ce68e..0e8d01833 100755 --- a/packages/strip/src/index.js +++ b/packages/strip/src/index.js @@ -1,7 +1,7 @@ /* eslint-disable no-param-reassign */ import { walk } from 'estree-walker'; import MagicString from 'magic-string'; -import { createFilter } from 'rollup-pluginutils'; +import { createFilter } from '@rollup/pluginutils'; const whitespace = /\s/; diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 8d8c1fb9a..1abdfe9df 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -48,17 +48,17 @@ "typescript": ">=2.1.0" }, "dependencies": { - "@rollup/pluginutils": "^3.0.0", - "resolve": "^1.13.1" + "@rollup/pluginutils": "^3.0.1", + "resolve": "^1.14.1" }, "devDependencies": { - "@rollup/plugin-buble": "^0.20.0", + "@rollup/plugin-buble": "^0.21.0", + "@rollup/plugin-commonjs": "^11.0.1", "@rollup/plugin-typescript": "^2.0.1", "buble": "^0.19.8", - "rollup": "^1.27.8", - "rollup-plugin-commonjs": "^9.3.4", + "rollup": "^1.27.14", "tslib": "^1.10.0", - "typescript": "^3.7.2" + "typescript": "^3.7.4" }, "ava": { "compileEnhancements": false, diff --git a/packages/typescript/test/test.js b/packages/typescript/test/test.js index 0dc6f20e4..99cbe4b6d 100644 --- a/packages/typescript/test/test.js +++ b/packages/typescript/test/test.js @@ -3,7 +3,7 @@ const path = require('path'); const test = require('ava'); const { rollup } = require('rollup'); -const commonjs = require('rollup-plugin-commonjs'); +const commonjs = require('@rollup/plugin-commonjs'); const { getCode, testBundle } = require('../../../util/test'); @@ -255,9 +255,11 @@ test.serial('should support extends property with given tsconfig', async (t) => const bundle = await rollup({ input: 'main.tsx', - plugins: [typescript({ - tsconfig: './tsconfig.json', - })] + plugins: [ + typescript({ + tsconfig: './tsconfig.json' + }) + ] }); const code = await getCode(bundle, outputOptions); diff --git a/packages/url/package.json b/packages/url/package.json index 76b0a6afe..ff8af381d 100644 --- a/packages/url/package.json +++ b/packages/url/package.json @@ -44,17 +44,17 @@ "rollup": "^1.20.0" }, "dependencies": { + "@rollup/pluginutils": "^3.0.4", "make-dir": "^3.0.0", - "mime": "^2.4.4", - "rollup-pluginutils": "^2.8.2" + "mime": "^2.4.4" }, "devDependencies": { - "@babel/core": "^7.7.4", - "@babel/preset-env": "^7.7.4", - "@babel/register": "^7.7.4", + "@babel/core": "^7.7.7", + "@babel/preset-env": "^7.7.7", + "@babel/register": "^7.7.7", "del": "^5.1.0", "globby": "^10.0.1", - "rollup": "^1.27.4", + "rollup": "^1.27.14", "rollup-plugin-babel": "^4.3.3" }, "ava": { diff --git a/packages/url/src/index.js b/packages/url/src/index.js index 67e579d69..b5445f82e 100644 --- a/packages/url/src/index.js +++ b/packages/url/src/index.js @@ -5,7 +5,7 @@ import fs from 'fs'; import makeDir from 'make-dir'; import mime from 'mime'; -import { createFilter } from 'rollup-pluginutils'; +import { createFilter } from '@rollup/pluginutils'; const fsStatPromise = util.promisify(fs.stat); const fsReadFilePromise = util.promisify(fs.readFile); diff --git a/packages/virtual/package.json b/packages/virtual/package.json index 67a08ace3..a5627b3d6 100755 --- a/packages/virtual/package.json +++ b/packages/virtual/package.json @@ -44,8 +44,8 @@ "rollup": "^1.20.0" }, "devDependencies": { - "rollup": "^1.20.0", - "rollup-plugin-node-resolve": "^5.2.0" + "@rollup/plugin-node-resolve": "^7.0.0", + "rollup": "^1.27.14" }, "ava": { "files": [ diff --git a/packages/virtual/rollup.config.js b/packages/virtual/rollup.config.js index a0bafa717..6f0cfb795 100755 --- a/packages/virtual/rollup.config.js +++ b/packages/virtual/rollup.config.js @@ -1,4 +1,4 @@ -import resolve from 'rollup-plugin-node-resolve'; +import resolve from '@rollup/plugin-node-resolve'; import pkg from './package.json'; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ab05da672..9bfbea230 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,26 +5,26 @@ importers: semver: 7.1.1 write-pkg: 4.0.0 devDependencies: - '@typescript-eslint/eslint-plugin': 2.14.0_c75538670b52ef0bc80e769266babcdc - '@typescript-eslint/parser': 2.14.0_typescript@3.7.4 + '@typescript-eslint/eslint-plugin': 2.16.0_8fc8ff471fa3e6f8320e1003f8984b6d + '@typescript-eslint/parser': 2.16.0_typescript@3.7.5 ava: 2.4.0 chalk: 2.4.2 codecov-lite: 0.3.1 del-cli: 3.0.0 eslint-config-rollup: 0.1.0 execa: 2.1.0 - globby: 10.0.1 + globby: 10.0.2 husky: 3.1.0 lint-staged: 9.5.0 nyc: 14.1.1 - pnpm: 4.6.0 + pnpm: 4.7.2 prettier: 1.19.1 prettier-plugin-package: 0.3.1_prettier@1.19.1 - rollup: 1.27.14 - ts-node: 8.5.4_typescript@3.7.4 + rollup: 1.29.0 + ts-node: 8.6.2_typescript@3.7.5 tsconfig-paths: 3.9.0 tslib: 1.10.0 - typescript: 3.7.4 + typescript: 3.7.5 yaml: 1.7.2 specifiers: '@typescript-eslint/eslint-plugin': ^2.14.0 @@ -55,111 +55,101 @@ importers: dependencies: slash: 3.0.0 devDependencies: + '@rollup/plugin-node-resolve': 7.0.0_rollup@1.29.0 del-cli: 3.0.0 - rollup: 1.27.14 - rollup-plugin-node-resolve: 5.2.0_rollup@1.27.14 + rollup: 1.29.0 specifiers: + '@rollup/plugin-node-resolve': ^7.0.0 del-cli: ^3.0.0 - rollup: ^1.20.0 - rollup-plugin-node-resolve: ^5.2.0 + rollup: ^1.27.14 slash: ^3.0.0 packages/auto-install: dependencies: node-noop: 1.0.0 devDependencies: + '@rollup/plugin-node-resolve': 7.0.0_rollup@1.29.0 del: 5.1.0 - rollup: 1.27.14 - rollup-plugin-node-resolve: 5.2.0_rollup@1.27.14 + rollup: 1.29.0 specifiers: + '@rollup/plugin-node-resolve': ^7.0.0 del: ^5.1.0 node-noop: ^1.0.0 - rollup: ^1.20.0 - rollup-plugin-node-resolve: ^5.2.0 + rollup: ^1.27.14 packages/beep: devDependencies: - rollup: 1.27.14 + rollup: 1.29.0 strip-ansi: 5.2.0 specifiers: rollup: ^1.20.0 strip-ansi: ^5.2.0 packages/buble: dependencies: + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 '@types/buble': 0.19.2 buble: 0.19.8 - rollup-pluginutils: 2.8.2 devDependencies: del-cli: 3.0.0 - rollup: 1.27.14 + rollup: 1.29.0 source-map: 0.7.3 - typescript: 3.7.4 + typescript: 3.7.5 specifiers: + '@rollup/pluginutils': ^3.0.4 '@types/buble': ^0.19.2 buble: ^0.19.8 del-cli: ^3.0.0 - rollup: ^1.27.0 - rollup-pluginutils: ^2.8.2 + rollup: ^1.27.14 source-map: ^0.7.3 - typescript: ^3.7.2 + typescript: ^3.7.4 packages/commonjs: dependencies: - '@rollup/pluginutils': 3.0.1_rollup@1.27.14 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 estree-walker: 1.0.1 is-reference: 1.1.4 - magic-string: 0.25.5 - resolve: 1.14.1 + magic-string: 0.25.6 + resolve: 1.14.2 devDependencies: - '@babel/core': 7.7.7 - '@babel/preset-env': 7.7.7_@babel+core@7.7.7 - '@babel/register': 7.7.7_@babel+core@7.7.7 - '@rollup/plugin-json': 4.0.1_rollup@1.27.14 - '@rollup/plugin-node-resolve': 6.0.0_rollup@1.27.14 - acorn: 6.4.0 - eslint: 6.8.0 - eslint-plugin-import: 2.19.1_eslint@6.8.0 - husky: 2.7.0 - lint-staged: 8.2.1 + '@babel/core': 7.8.3 + '@babel/preset-env': 7.8.3_@babel+core@7.8.3 + '@babel/register': 7.8.3_@babel+core@7.8.3 + '@rollup/plugin-json': 4.0.1_rollup@1.29.0 + '@rollup/plugin-node-resolve': 7.0.0_rollup@1.29.0 + acorn: 7.1.0 locate-character: 2.0.5 - mocha: 6.2.2 prettier: 1.19.1 require-relative: 0.8.7 - rollup: 1.27.14 - rollup-plugin-babel: 4.3.3_@babel+core@7.7.7+rollup@1.27.14 + rollup: 1.29.0 + rollup-plugin-babel: 4.3.3_@babel+core@7.8.3+rollup@1.29.0 shx: 0.3.2 source-map: 0.6.1 source-map-support: 0.5.16 - typescript: 3.7.4 + typescript: 3.7.5 specifiers: - '@babel/core': ^7.4.5 - '@babel/preset-env': ^7.4.5 - '@babel/register': ^7.4.4 - '@rollup/plugin-json': ^4.0.0 - '@rollup/plugin-node-resolve': ^6.0.0 + '@babel/core': ^7.7.7 + '@babel/preset-env': ^7.7.7 + '@babel/register': ^7.7.7 + '@rollup/plugin-json': ^4.0.1 + '@rollup/plugin-node-resolve': ^7.0.0 '@rollup/pluginutils': ^3.0.0 - acorn: ^6.1.1 - eslint: ^6.0.1 - eslint-plugin-import: ^2.18.0 + acorn: ^7.1.0 estree-walker: ^1.0.1 - husky: ^2.4.1 is-reference: ^1.1.2 - lint-staged: ^8.2.1 locate-character: ^2.0.5 magic-string: ^0.25.2 - mocha: ^6.1.4 - prettier: ^1.18.2 + prettier: ^1.19.1 require-relative: ^0.8.7 resolve: ^1.11.0 - rollup: ^1.16.2 + rollup: ^1.27.14 rollup-plugin-babel: ^4.3.3 shx: ^0.3.2 source-map: ^0.6.1 - source-map-support: ^0.5.12 - typescript: ^3.5.2 + source-map-support: ^0.5.16 + typescript: ^3.7.4 packages/data-uri: devDependencies: - '@rollup/plugin-typescript': 2.1.0_rollup@1.27.14+typescript@3.7.4 - '@rollup/pluginutils': 3.0.1_rollup@1.27.14 - rollup: 1.27.14 - typescript: 3.7.4 + '@rollup/plugin-typescript': 2.1.0_rollup@1.29.0+typescript@3.7.5 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 + rollup: 1.29.0 + typescript: 3.7.5 specifiers: '@rollup/plugin-typescript': ^2.1.0 '@rollup/pluginutils': ^3.0.1 @@ -167,74 +157,74 @@ importers: typescript: ^3.7.4 packages/dsv: dependencies: - d3-dsv: 0.1.14 - rollup-pluginutils: 2.8.2 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 + d3-dsv: 1.2.0 tosource: 1.0.0 devDependencies: del-cli: 3.0.0 - rollup: 1.27.14 + rollup: 1.29.0 specifiers: - d3-dsv: ^0.1.14 + '@rollup/pluginutils': ^3.0.4 + d3-dsv: 1.2.0 del-cli: ^3.0.0 - rollup: ^1.20.0 - rollup-pluginutils: ^2.8.2 + rollup: ^1.27.14 tosource: ^1.0.0 packages/html: devDependencies: - rollup: 1.27.14 + rollup: 1.29.0 rollup-plugin-postcss: 2.0.3 specifiers: rollup: ^1.27.5 rollup-plugin-postcss: ^2.0.3 packages/image: dependencies: - '@rollup/pluginutils': 3.0.1_rollup@1.27.14 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 devDependencies: - rollup: 1.27.14 - rollup-plugin-buble: 0.10.0 + '@rollup/plugin-buble': 0.21.0_rollup@1.29.0 + rollup: 1.29.0 specifiers: + '@rollup/plugin-buble': ^0.21.0 '@rollup/pluginutils': ^3.0.1 rollup: ^1.27.14 - rollup-plugin-buble: ^0.10.0 packages/inject: dependencies: + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 estree-walker: 1.0.1 - magic-string: 0.25.5 - rollup-pluginutils: 2.8.2 + magic-string: 0.25.6 devDependencies: + '@rollup/plugin-buble': 0.21.0_rollup@1.29.0 del-cli: 3.0.0 locate-character: 2.0.5 - rollup: 1.27.14 - rollup-plugin-buble: 0.19.8 + rollup: 1.29.0 source-map: 0.7.3 - typescript: 3.7.4 + typescript: 3.7.5 specifiers: + '@rollup/plugin-buble': ^0.21.0 + '@rollup/pluginutils': ^3.0.4 del-cli: ^3.0.0 estree-walker: ^1.0.1 locate-character: ^2.0.5 - magic-string: ^0.25.2 - rollup: ^1.20.0 - rollup-plugin-buble: ^0.19.6 - rollup-pluginutils: ^2.6.0 + magic-string: ^0.25.5 + rollup: ^1.27.14 source-map: ^0.7.3 - typescript: ^3.4.3 + typescript: ^3.7.4 packages/json: dependencies: - rollup-pluginutils: 2.8.2 + '@rollup/pluginutils': 3.0.4 devDependencies: - rollup-plugin-buble: 0.19.8 - rollup-plugin-node-resolve: 5.2.0 + '@rollup/plugin-buble': 0.21.0 + '@rollup/plugin-node-resolve': 7.0.0 source-map-support: 0.5.16 specifiers: - rollup-plugin-buble: ^0.19.6 - rollup-plugin-node-resolve: ^5.2.0 - rollup-pluginutils: ^2.5.0 - source-map-support: ^0.5.11 + '@rollup/plugin-buble': ^0.21.0 + '@rollup/plugin-node-resolve': ^7.0.0 + '@rollup/pluginutils': ^3.0.4 + source-map-support: ^0.5.16 packages/legacy: devDependencies: - '@rollup/plugin-buble': 0.20.0_rollup@1.27.14 + '@rollup/plugin-buble': 0.20.0_rollup@1.29.0 del-cli: 3.0.0 - rollup: 1.27.14 + rollup: 1.29.0 specifiers: '@rollup/plugin-buble': ^0.20.0 del-cli: ^3.0.0 @@ -243,10 +233,10 @@ importers: dependencies: matched: 1.0.2 devDependencies: - '@babel/core': 7.7.7 - '@babel/preset-env': 7.7.7_@babel+core@7.7.7 - rollup: 1.27.14 - rollup-plugin-babel: 4.3.3_@babel+core@7.7.7+rollup@1.27.14 + '@babel/core': 7.8.3 + '@babel/preset-env': 7.8.3_@babel+core@7.8.3 + rollup: 1.29.0 + rollup-plugin-babel: 4.3.3_@babel+core@7.8.3+rollup@1.29.0 specifiers: '@babel/core': ^7.2.0 '@babel/preset-env': ^7.2.0 @@ -255,19 +245,19 @@ importers: rollup-plugin-babel: ^4.0.3 packages/node-resolve: dependencies: - '@rollup/pluginutils': 3.0.1_rollup@1.27.14 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 '@types/resolve': 0.0.8 builtin-modules: 3.1.0 is-module: 1.0.0 - resolve: 1.14.1 + resolve: 1.14.2 devDependencies: - '@babel/core': 7.7.7 - '@babel/preset-env': 7.7.7_@babel+core@7.7.7 - '@rollup/plugin-json': 4.0.1_rollup@1.27.14 + '@babel/core': 7.8.3 + '@babel/preset-env': 7.8.3_@babel+core@7.8.3 + '@rollup/plugin-json': 4.0.1_rollup@1.29.0 es5-ext: 0.10.53 - rollup: 1.27.14 - rollup-plugin-babel: 4.3.3_@babel+core@7.7.7+rollup@1.27.14 - rollup-plugin-commonjs: 10.1.0_rollup@1.27.14 + rollup: 1.29.0 + rollup-plugin-babel: 4.3.3_@babel+core@7.8.3+rollup@1.29.0 + rollup-plugin-commonjs: 10.1.0_rollup@1.29.0 source-map: 0.7.3 string-capitalize: 1.0.1 specifiers: @@ -290,14 +280,14 @@ importers: estree-walker: 1.0.1 devDependencies: '@types/estree': 0.0.39 - '@types/jest': 24.0.25 + '@types/jest': 24.9.0 '@types/micromatch': 3.1.1 - '@types/node': 12.12.22 + '@types/node': 12.12.25 micromatch: 4.0.2 rollup-plugin-commonjs: 10.1.0 rollup-plugin-node-resolve: 5.2.0 - rollup-plugin-typescript: 1.0.1_typescript@3.7.4 - typescript: 3.7.4 + rollup-plugin-typescript: 1.0.1_typescript@3.7.5 + typescript: 3.7.5 specifiers: '@types/estree': 0.0.39 '@types/jest': ^24.0.23 @@ -311,116 +301,116 @@ importers: typescript: ^3.7.2 packages/replace: dependencies: - magic-string: 0.25.5 - rollup-pluginutils: 2.8.2 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 + magic-string: 0.25.6 devDependencies: + '@rollup/plugin-buble': 0.21.0_rollup@1.29.0 del-cli: 3.0.0 locate-character: 2.0.5 - rollup: 1.27.14 - rollup-plugin-buble: 0.19.8 + rollup: 1.29.0 source-map: 0.7.3 - typescript: 3.7.4 + typescript: 3.7.5 specifiers: + '@rollup/plugin-buble': ^0.21.0 + '@rollup/pluginutils': ^3.0.4 del-cli: ^3.0.0 locate-character: ^2.0.5 - magic-string: ^0.25.2 - rollup: ^1.20.0 - rollup-plugin-buble: ^0.19.6 - rollup-pluginutils: ^2.6.0 + magic-string: ^0.25.5 + rollup: ^1.27.14 source-map: ^0.7.3 - typescript: ^3.4.3 + typescript: ^3.7.4 packages/run: devDependencies: - '@types/node': 12.12.22 + '@types/node': 13.1.6 del: 5.1.0 - rollup: 1.27.14 - sinon: 7.5.0 + rollup: 1.29.0 + sinon: 8.0.4 specifiers: - '@types/node': ^12.12.22 + '@types/node': 13.1.6 del: ^5.1.0 - rollup: ^1.20.0 - sinon: ^7.5.0 + rollup: ^1.27.14 + sinon: 8.0.4 packages/strip: dependencies: + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 estree-walker: 1.0.1 - magic-string: 0.25.5 - rollup-pluginutils: 2.8.2 + magic-string: 0.25.6 devDependencies: - acorn: 6.4.0 - rollup: 1.27.14 + acorn: 7.1.0 + rollup: 1.29.0 specifiers: - acorn: ^6.0.2 + '@rollup/pluginutils': ^3.0.4 + acorn: 7.1.0 estree-walker: ^1.0.1 - magic-string: ^0.25.1 - rollup: ^1.20.0 - rollup-pluginutils: ^2.8.1 + magic-string: ^0.25.5 + rollup: ^1.27.14 packages/sucrase: dependencies: - '@rollup/pluginutils': 3.0.1_rollup@1.27.14 - sucrase: 3.12.0 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 + sucrase: 3.12.1 devDependencies: - rollup: 1.27.14 + rollup: 1.29.0 specifiers: '@rollup/pluginutils': ^3.0.1 rollup: ^1.27.13 sucrase: ^3.10.1 packages/typescript: dependencies: - '@rollup/pluginutils': 3.0.1_rollup@1.27.14 - resolve: 1.14.1 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 + resolve: 1.14.2 devDependencies: - '@rollup/plugin-buble': 0.20.0_rollup@1.27.14 - '@rollup/plugin-typescript': 2.0.1_c43d6d1c92f803cc012688f27ea7270a + '@rollup/plugin-buble': 0.21.0_rollup@1.29.0 + '@rollup/plugin-commonjs': 11.0.1_rollup@1.29.0 + '@rollup/plugin-typescript': 2.1.0_a8ccbbb8df3d541f86d9e2f77577b79b buble: 0.19.8 - rollup: 1.27.14 - rollup-plugin-commonjs: 9.3.4_rollup@1.27.14 + rollup: 1.29.0 tslib: 1.10.0 - typescript: 3.7.4 + typescript: 3.7.5 specifiers: - '@rollup/plugin-buble': ^0.20.0 + '@rollup/plugin-buble': ^0.21.0 + '@rollup/plugin-commonjs': ^11.0.1 '@rollup/plugin-typescript': ^2.0.1 - '@rollup/pluginutils': ^3.0.0 + '@rollup/pluginutils': ^3.0.1 buble: ^0.19.8 - resolve: ^1.13.1 - rollup: ^1.27.8 - rollup-plugin-commonjs: ^9.3.4 + resolve: ^1.14.1 + rollup: ^1.27.14 tslib: ^1.10.0 - typescript: ^3.7.2 + typescript: ^3.7.4 packages/url: dependencies: + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 make-dir: 3.0.0 mime: 2.4.4 - rollup-pluginutils: 2.8.2 devDependencies: - '@babel/core': 7.7.7 - '@babel/preset-env': 7.7.7_@babel+core@7.7.7 - '@babel/register': 7.7.7_@babel+core@7.7.7 + '@babel/core': 7.8.3 + '@babel/preset-env': 7.8.3_@babel+core@7.8.3 + '@babel/register': 7.8.3_@babel+core@7.8.3 del: 5.1.0 - globby: 10.0.1 - rollup: 1.27.14 - rollup-plugin-babel: 4.3.3_@babel+core@7.7.7+rollup@1.27.14 + globby: 10.0.2 + rollup: 1.29.0 + rollup-plugin-babel: 4.3.3_@babel+core@7.8.3+rollup@1.29.0 specifiers: - '@babel/core': ^7.7.4 - '@babel/preset-env': ^7.7.4 - '@babel/register': ^7.7.4 + '@babel/core': ^7.7.7 + '@babel/preset-env': ^7.7.7 + '@babel/register': ^7.7.7 + '@rollup/pluginutils': ^3.0.4 del: ^5.1.0 globby: ^10.0.1 make-dir: ^3.0.0 mime: ^2.4.4 - rollup: ^1.27.4 + rollup: ^1.27.14 rollup-plugin-babel: ^4.3.3 - rollup-pluginutils: ^2.8.2 packages/virtual: devDependencies: - rollup: 1.27.14 - rollup-plugin-node-resolve: 5.2.0_rollup@1.27.14 + '@rollup/plugin-node-resolve': 7.0.0_rollup@1.29.0 + rollup: 1.29.0 specifiers: - rollup: ^1.20.0 - rollup-plugin-node-resolve: ^5.2.0 + '@rollup/plugin-node-resolve': ^7.0.0 + rollup: ^1.27.14 packages/wasm: devDependencies: del-cli: 3.0.0 - rollup: 1.27.14 + rollup: 1.29.0 source-map: 0.7.3 specifiers: del-cli: ^3.0.0 @@ -428,16 +418,16 @@ importers: source-map: ^0.7.3 packages/yaml: dependencies: - '@rollup/pluginutils': 3.0.1_rollup@1.27.14 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 js-yaml: 3.13.1 tosource: 1.0.0 devDependencies: - '@babel/core': 7.7.7 - '@babel/preset-env': 7.7.7_@babel+core@7.7.7 - '@rollup/plugin-node-resolve': 6.0.0_rollup@1.27.14 + '@babel/core': 7.8.3 + '@babel/preset-env': 7.8.3_@babel+core@7.8.3 + '@rollup/plugin-node-resolve': 6.1.0_rollup@1.29.0 del-cli: 3.0.0 - rollup: 1.27.14 - rollup-plugin-babel: 4.3.3_@babel+core@7.7.7+rollup@1.27.14 + rollup: 1.29.0 + rollup-plugin-babel: 4.3.3_@babel+core@7.8.3+rollup@1.29.0 source-map-support: 0.5.16 specifiers: '@babel/core': ^7.7.7 @@ -458,13 +448,13 @@ packages: node: '>=8.9.4 <9 || >=10.0.0 <11 || >=12.0.0' resolution: integrity: sha512-3diBLIVBPPh3j4+hb5lo0I1D+S/O/VDJPI4Y502apBxmwEqjyXG4gTSPFUlm41sSZeZzMarT/Gzovw9kV7An0w== - /@ava/babel-preset-stage-4/4.0.0_@babel+core@7.7.7: + /@ava/babel-preset-stage-4/4.0.0_@babel+core@7.8.3: dependencies: - '@babel/plugin-proposal-async-generator-functions': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-proposal-dynamic-import': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-proposal-optional-catch-binding': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-dotall-regex': 7.7.7_@babel+core@7.7.7 - '@babel/plugin-transform-modules-commonjs': 7.7.5_@babel+core@7.7.7 + '@babel/plugin-proposal-async-generator-functions': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-proposal-dynamic-import': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-proposal-optional-catch-binding': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-dotall-regex': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-modules-commonjs': 7.8.3_@babel+core@7.8.3 dev: true engines: node: '>=8.9.4 <9 || >=10.0.0 <11 || >=12.0.0' @@ -481,696 +471,763 @@ packages: node: '>=8.9.4 <9 || >=10.0.0 <11 || >=12.0.0' resolution: integrity: sha512-8eKhFzZp7Qcq1VLfoC75ggGT8nQs9q8fIxltU47yCB7Wi7Y8Qf6oqY1Bm0z04fIec24vEgr0ENhDHEOUGVDqnA== - /@babel/code-frame/7.5.5: + /@babel/code-frame/7.8.3: + dependencies: + '@babel/highlight': 7.8.3 + dev: true + resolution: + integrity: sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== + /@babel/compat-data/7.8.1: dependencies: - '@babel/highlight': 7.5.0 + browserslist: 4.8.3 + invariant: 2.2.4 + semver: 5.7.1 dev: true resolution: - integrity: sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== - /@babel/core/7.7.7: + integrity: sha512-Z+6ZOXvyOWYxJ50BwxzdhRnRsGST8Y3jaZgxYig575lTjVSs3KtJnmESwZegg6e2Dn0td1eDhoWlp1wI4BTCPw== + /@babel/core/7.8.3: dependencies: - '@babel/code-frame': 7.5.5 - '@babel/generator': 7.7.7 - '@babel/helpers': 7.7.4 - '@babel/parser': 7.7.7 - '@babel/template': 7.7.4 - '@babel/traverse': 7.7.4 - '@babel/types': 7.7.4 + '@babel/code-frame': 7.8.3 + '@babel/generator': 7.8.3 + '@babel/helpers': 7.8.3 + '@babel/parser': 7.8.3 + '@babel/template': 7.8.3 + '@babel/traverse': 7.8.3 + '@babel/types': 7.8.3 convert-source-map: 1.7.0 debug: 4.1.1 + gensync: 1.0.0-beta.1 json5: 2.1.1 lodash: 4.17.15 - resolve: 1.14.1 + resolve: 1.14.2 semver: 5.7.1 source-map: 0.5.7 dev: true engines: node: '>=6.9.0' resolution: - integrity: sha512-jlSjuj/7z138NLZALxVgrx13AOtqip42ATZP7+kYl53GvDV6+4dCek1mVUo8z8c8Xnw/mx2q3d9HWh3griuesQ== - /@babel/generator/7.7.7: + integrity: sha512-4XFkf8AwyrEG7Ziu3L2L0Cv+WyY47Tcsp70JFmpftbAA1K7YL/sgE9jh9HyNj08Y/U50ItUchpN0w6HxAoX1rA== + /@babel/generator/7.8.3: dependencies: - '@babel/types': 7.7.4 + '@babel/types': 7.8.3 jsesc: 2.5.2 lodash: 4.17.15 source-map: 0.5.7 dev: true resolution: - integrity: sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ== - /@babel/helper-annotate-as-pure/7.7.4: + integrity: sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug== + /@babel/helper-annotate-as-pure/7.8.3: + dependencies: + '@babel/types': 7.8.3 + dev: true + resolution: + integrity: sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw== + /@babel/helper-builder-binary-assignment-operator-visitor/7.8.3: dependencies: - '@babel/types': 7.7.4 + '@babel/helper-explode-assignable-expression': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-2BQmQgECKzYKFPpiycoF9tlb5HA4lrVyAmLLVK177EcQAqjVLciUb2/R+n1boQ9y5ENV3uz2ZqiNw7QMBBw1Og== - /@babel/helper-builder-binary-assignment-operator-visitor/7.7.4: + integrity: sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw== + /@babel/helper-call-delegate/7.8.3: dependencies: - '@babel/helper-explode-assignable-expression': 7.7.4 - '@babel/types': 7.7.4 + '@babel/helper-hoist-variables': 7.8.3 + '@babel/traverse': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-Biq/d/WtvfftWZ9Uf39hbPBYDUo986m5Bb4zhkeYDGUllF43D+nUe5M6Vuo6/8JDK/0YX/uBdeoQpyaNhNugZQ== - /@babel/helper-call-delegate/7.7.4: + integrity: sha512-6Q05px0Eb+N4/GTyKPPvnkig7Lylw+QzihMpws9iiZQv7ZImf84ZsZpQH7QoWN4n4tm81SnSzPgHw2qtO0Zf3A== + /@babel/helper-compilation-targets/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/helper-hoist-variables': 7.7.4 - '@babel/traverse': 7.7.4 - '@babel/types': 7.7.4 + '@babel/compat-data': 7.8.1 + '@babel/core': 7.8.3 + browserslist: 4.8.3 + invariant: 2.2.4 + levenary: 1.1.0 + semver: 5.7.1 dev: true + peerDependencies: + '@babel/core': ^7.0.0 resolution: - integrity: sha512-8JH9/B7J7tCYJ2PpWVpw9JhPuEVHztagNVuQAFBVFYluRMlpG7F1CgKEgGeL6KFqcsIa92ZYVj6DSc0XwmN1ZA== - /@babel/helper-create-regexp-features-plugin/7.7.4_@babel+core@7.7.7: + integrity: sha512-JLylPCsFjhLN+6uBSSh3iYdxKdeO9MNmoY96PE/99d8kyBFaXLORtAVhqN6iHa+wtPeqxKLghDOZry0+Aiw9Tw== + /@babel/helper-create-regexp-features-plugin/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-regex': 7.5.5 + '@babel/core': 7.8.3 + '@babel/helper-regex': 7.8.3 regexpu-core: 4.6.0 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-Mt+jBKaxL0zfOIWrfQpnfYCN7/rS6GKx6CCCfuoqVVd+17R8zNDlzVYmIi9qyb2wOk002NsmSTDymkIygDUH7A== - /@babel/helper-define-map/7.7.4: + integrity: sha512-Gcsm1OHCUr9o9TcJln57xhWHtdXbA2pgQ58S0Lxlks0WMGNXuki4+GLfX0p+L2ZkINUGZvfkz8rzoqJQSthI+Q== + /@babel/helper-define-map/7.8.3: dependencies: - '@babel/helper-function-name': 7.7.4 - '@babel/types': 7.7.4 + '@babel/helper-function-name': 7.8.3 + '@babel/types': 7.8.3 lodash: 4.17.15 dev: true resolution: - integrity: sha512-v5LorqOa0nVQUvAUTUF3KPastvUt/HzByXNamKQ6RdJRTV7j8rLL+WB5C/MzzWAwOomxDhYFb1wLLxHqox86lg== - /@babel/helper-explode-assignable-expression/7.7.4: + integrity: sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g== + /@babel/helper-explode-assignable-expression/7.8.3: dependencies: - '@babel/traverse': 7.7.4 - '@babel/types': 7.7.4 + '@babel/traverse': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-2/SicuFrNSXsZNBxe5UGdLr+HZg+raWBLE9vC98bdYOKX/U6PY0mdGlYUJdtTDPSU0Lw0PNbKKDpwYHJLn2jLg== - /@babel/helper-function-name/7.7.4: + integrity: sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw== + /@babel/helper-function-name/7.8.3: dependencies: - '@babel/helper-get-function-arity': 7.7.4 - '@babel/template': 7.7.4 - '@babel/types': 7.7.4 + '@babel/helper-get-function-arity': 7.8.3 + '@babel/template': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ== - /@babel/helper-get-function-arity/7.7.4: + integrity: sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA== + /@babel/helper-get-function-arity/7.8.3: dependencies: - '@babel/types': 7.7.4 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA== - /@babel/helper-hoist-variables/7.7.4: + integrity: sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA== + /@babel/helper-hoist-variables/7.8.3: dependencies: - '@babel/types': 7.7.4 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-wQC4xyvc1Jo/FnLirL6CEgPgPCa8M74tOdjWpRhQYapz5JC7u3NYU1zCVoVAGCE3EaIP9T1A3iW0WLJ+reZlpQ== - /@babel/helper-member-expression-to-functions/7.7.4: + integrity: sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg== + /@babel/helper-member-expression-to-functions/7.8.3: dependencies: - '@babel/types': 7.7.4 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-9KcA1X2E3OjXl/ykfMMInBK+uVdfIVakVe7W7Lg3wfXUNyS3Q1HWLFRwZIjhqiCGbslummPDnmb7vIekS0C1vw== - /@babel/helper-module-imports/7.7.4: + integrity: sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA== + /@babel/helper-module-imports/7.8.3: dependencies: - '@babel/types': 7.7.4 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ== - /@babel/helper-module-transforms/7.7.5: + integrity: sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== + /@babel/helper-module-transforms/7.8.3: dependencies: - '@babel/helper-module-imports': 7.7.4 - '@babel/helper-simple-access': 7.7.4 - '@babel/helper-split-export-declaration': 7.7.4 - '@babel/template': 7.7.4 - '@babel/types': 7.7.4 + '@babel/helper-module-imports': 7.8.3 + '@babel/helper-simple-access': 7.8.3 + '@babel/helper-split-export-declaration': 7.8.3 + '@babel/template': 7.8.3 + '@babel/types': 7.8.3 lodash: 4.17.15 dev: true resolution: - integrity: sha512-A7pSxyJf1gN5qXVcidwLWydjftUN878VkalhXX5iQDuGyiGK3sOrrKKHF4/A4fwHtnsotv/NipwAeLzY4KQPvw== - /@babel/helper-optimise-call-expression/7.7.4: + integrity: sha512-C7NG6B7vfBa/pwCOshpMbOYUmrYQDfCpVL/JCRu0ek8B5p8kue1+BCXpg2vOYs7w5ACB9GTOBYQ5U6NwrMg+3Q== + /@babel/helper-optimise-call-expression/7.8.3: dependencies: - '@babel/types': 7.7.4 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-VB7gWZ2fDkSuqW6b1AKXkJWO5NyNI3bFL/kK79/30moK57blr6NbH8xcl2XcKCwOmJosftWunZqfO84IGq3ZZg== - /@babel/helper-plugin-utils/7.0.0: + integrity: sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ== + /@babel/helper-plugin-utils/7.8.3: dev: true resolution: - integrity: sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== - /@babel/helper-regex/7.5.5: + integrity: sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== + /@babel/helper-regex/7.8.3: dependencies: lodash: 4.17.15 dev: true resolution: - integrity: sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw== - /@babel/helper-remap-async-to-generator/7.7.4: + integrity: sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ== + /@babel/helper-remap-async-to-generator/7.8.3: dependencies: - '@babel/helper-annotate-as-pure': 7.7.4 - '@babel/helper-wrap-function': 7.7.4 - '@babel/template': 7.7.4 - '@babel/traverse': 7.7.4 - '@babel/types': 7.7.4 + '@babel/helper-annotate-as-pure': 7.8.3 + '@babel/helper-wrap-function': 7.8.3 + '@babel/template': 7.8.3 + '@babel/traverse': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-Sk4xmtVdM9sA/jCI80f+KS+Md+ZHIpjuqmYPk1M7F/upHou5e4ReYmExAiu6PVe65BhJPZA2CY9x9k4BqE5klw== - /@babel/helper-replace-supers/7.7.4: + integrity: sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA== + /@babel/helper-replace-supers/7.8.3: dependencies: - '@babel/helper-member-expression-to-functions': 7.7.4 - '@babel/helper-optimise-call-expression': 7.7.4 - '@babel/traverse': 7.7.4 - '@babel/types': 7.7.4 + '@babel/helper-member-expression-to-functions': 7.8.3 + '@babel/helper-optimise-call-expression': 7.8.3 + '@babel/traverse': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-pP0tfgg9hsZWo5ZboYGuBn/bbYT/hdLPVSS4NMmiRJdwWhP0IznPwN9AE1JwyGsjSPLC364I0Qh5p+EPkGPNpg== - /@babel/helper-simple-access/7.7.4: + integrity: sha512-xOUssL6ho41U81etpLoT2RTdvdus4VfHamCuAm4AHxGr+0it5fnwoVdwUJ7GFEqCsQYzJUhcbsN9wB9apcYKFA== + /@babel/helper-simple-access/7.8.3: dependencies: - '@babel/template': 7.7.4 - '@babel/types': 7.7.4 + '@babel/template': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-zK7THeEXfan7UlWsG2A6CI/L9jVnI5+xxKZOdej39Y0YtDYKx9raHk5F2EtK9K8DHRTihYwg20ADt9S36GR78A== - /@babel/helper-split-export-declaration/7.7.4: + integrity: sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw== + /@babel/helper-split-export-declaration/7.8.3: dependencies: - '@babel/types': 7.7.4 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug== - /@babel/helper-wrap-function/7.7.4: + integrity: sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA== + /@babel/helper-wrap-function/7.8.3: dependencies: - '@babel/helper-function-name': 7.7.4 - '@babel/template': 7.7.4 - '@babel/traverse': 7.7.4 - '@babel/types': 7.7.4 + '@babel/helper-function-name': 7.8.3 + '@babel/template': 7.8.3 + '@babel/traverse': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-VsfzZt6wmsocOaVU0OokwrIytHND55yvyT4BPB9AIIgwr8+x7617hetdJTsuGwygN5RC6mxA9EJztTjuwm2ofg== - /@babel/helpers/7.7.4: + integrity: sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ== + /@babel/helpers/7.8.3: dependencies: - '@babel/template': 7.7.4 - '@babel/traverse': 7.7.4 - '@babel/types': 7.7.4 + '@babel/template': 7.8.3 + '@babel/traverse': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-ak5NGZGJ6LV85Q1Zc9gn2n+ayXOizryhjSUBTdu5ih1tlVCJeuQENzc4ItyCVhINVXvIT/ZQ4mheGIsfBkpskg== - /@babel/highlight/7.5.0: + integrity: sha512-LmU3q9Pah/XyZU89QvBgGt+BCsTPoQa+73RxAQh8fb8qkDyIfeQnmgs+hvzhTCKTzqOyk7JTkS3MS1S8Mq5yrQ== + /@babel/highlight/7.8.3: dependencies: chalk: 2.4.2 esutils: 2.0.3 js-tokens: 4.0.0 dev: true resolution: - integrity: sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== - /@babel/parser/7.7.7: + integrity: sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg== + /@babel/parser/7.8.3: dev: true engines: node: '>=6.0.0' hasBin: true resolution: - integrity: sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw== - /@babel/plugin-proposal-async-generator-functions/7.7.4_@babel+core@7.7.7: + integrity: sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ== + /@babel/plugin-proposal-async-generator-functions/7.8.3_@babel+core@7.8.3: + dependencies: + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/helper-remap-async-to-generator': 7.8.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.8.3 + dev: true + peerDependencies: + '@babel/core': ^7.0.0-0 + resolution: + integrity: sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw== + /@babel/plugin-proposal-dynamic-import/7.8.3_@babel+core@7.8.3: + dependencies: + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.8.3 + dev: true + peerDependencies: + '@babel/core': ^7.0.0-0 + resolution: + integrity: sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w== + /@babel/plugin-proposal-json-strings/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/helper-remap-async-to-generator': 7.7.4 - '@babel/plugin-syntax-async-generators': 7.7.4_@babel+core@7.7.7 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-1ypyZvGRXriY/QP668+s8sFr2mqinhkRDMPSQLNghCQE+GAkFtp+wkHVvg2+Hdki8gwP+NFzJBJ/N1BfzCCDEw== - /@babel/plugin-proposal-dynamic-import/7.7.4_@babel+core@7.7.7: + integrity: sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q== + /@babel/plugin-proposal-nullish-coalescing-operator/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/plugin-syntax-dynamic-import': 7.7.4_@babel+core@7.7.7 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-StH+nGAdO6qDB1l8sZ5UBV8AC3F2VW2I8Vfld73TMKyptMU9DY5YsJAS8U81+vEtxcH3Y/La0wG0btDrhpnhjQ== - /@babel/plugin-proposal-json-strings/7.7.4_@babel+core@7.7.7: + integrity: sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== + /@babel/plugin-proposal-object-rest-spread/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/plugin-syntax-json-strings': 7.7.4_@babel+core@7.7.7 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wQvt3akcBTfLU/wYoqm/ws7YOAQKu8EVJEvHip/mzkNtjaclQoCCIqKXFP5/eyfnfbQCDV3OLRIK3mIVyXuZlw== - /@babel/plugin-proposal-object-rest-spread/7.7.7_@babel+core@7.7.7: + integrity: sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA== + /@babel/plugin-proposal-optional-catch-binding/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.7 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-3qp9I8lelgzNedI3hrhkvhaEYree6+WHnyA/q4Dza9z7iEIs1eyhWyJnetk3jJ69RT0AT4G0UhEGwyGFJ7GUuQ== - /@babel/plugin-proposal-optional-catch-binding/7.7.4_@babel+core@7.7.7: + integrity: sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== + /@babel/plugin-proposal-optional-chaining/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/plugin-syntax-optional-catch-binding': 7.7.4_@babel+core@7.7.7 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-DyM7U2bnsQerCQ+sejcTNZh8KQEUuC3ufzdnVnSiUv/qoGJp2Z3hanKL18KDhsBT5Wj6a7CMT5mdyCNJsEaA9w== - /@babel/plugin-proposal-unicode-property-regex/7.7.7_@babel+core@7.7.7: + integrity: sha512-QIoIR9abkVn+seDE3OjA08jWcs3eZ9+wJCKSRgo3WdEU2csFYgdScb+8qHB3+WXsGJD55u+5hWCISI7ejXS+kg== + /@babel/plugin-proposal-unicode-property-regex/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-create-regexp-features-plugin': 7.8.3_@babel+core@7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true engines: node: '>=4' peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-80PbkKyORBUVm1fbTLrHpYdJxMThzM1UqFGh0ALEhO9TYbG86Ah9zQYAB/84axz2vcxefDLdZwWwZNlYARlu9w== - /@babel/plugin-syntax-async-generators/7.7.4_@babel+core@7.7.7: + integrity: sha512-1/1/rEZv2XGweRwwSkLpY+s60za9OZ1hJs4YDqFHCw0kYWYwL5IFljVY1MYBL+weT1l9pokDO2uhSTLVxzoHkQ== + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.8.3: + dependencies: + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + dev: true + peerDependencies: + '@babel/core': ^7.0.0-0 + resolution: + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.8.3: + dependencies: + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + dev: true + peerDependencies: + '@babel/core': ^7.0.0-0 + resolution: + integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Li4+EjSpBgxcsmeEF8IFcfV/+yJGxHXDirDkEoyFjumuwbmfCVHUt0HuowD/iGM7OhIRyXJH9YXxqiH6N815+g== - /@babel/plugin-syntax-dynamic-import/7.7.4_@babel+core@7.7.7: + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg== - /@babel/plugin-syntax-json-strings/7.7.4_@babel+core@7.7.7: + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-QpGupahTQW1mHRXddMG5srgpHWqRLwJnJZKXTigB9RPFCCGbDGCgBeM/iC82ICXp414WeYx/tD54w7M2qRqTMg== - /@babel/plugin-syntax-object-rest-spread/7.7.4_@babel+core@7.7.7: + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-mObR+r+KZq0XhRVS2BrBKBpr5jqrqzlPvS9C9vuOf5ilSwzloAl7RPWLrgKdWS6IreaVrjHxTjtyqFiOisaCwg== - /@babel/plugin-syntax-optional-catch-binding/7.7.4_@babel+core@7.7.7: + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-4ZSuzWgFxqHRE31Glu+fEr/MirNZOMYmD/0BhBWyLyOOQz/gTAl7QmWm2hX1QxEIXsr2vkdlwxIzTyiYRC4xcQ== - /@babel/plugin-syntax-top-level-await/7.7.4_@babel+core@7.7.7: + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + /@babel/plugin-syntax-top-level-await/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-wdsOw0MvkL1UIgiQ/IFr3ETcfv1xb8RMM0H9wbiDyLaJFyiDg5oZvDLCXosIXmFeIlweML5iOBXAkqddkYNizg== - /@babel/plugin-transform-arrow-functions/7.7.4_@babel+core@7.7.7: + integrity: sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g== + /@babel/plugin-transform-arrow-functions/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-zUXy3e8jBNPiffmqkHRNDdZM2r8DWhCB7HhcoyZjiK1TxYEluLHAvQuYnTT+ARqRpabWqy/NHkO6e3MsYB5YfA== - /@babel/plugin-transform-async-to-generator/7.7.4_@babel+core@7.7.7: + integrity: sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== + /@babel/plugin-transform-async-to-generator/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-module-imports': 7.7.4 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/helper-remap-async-to-generator': 7.7.4 + '@babel/core': 7.8.3 + '@babel/helper-module-imports': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/helper-remap-async-to-generator': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-zpUTZphp5nHokuy8yLlyafxCJ0rSlFoSHypTUWgpdwoDXWQcseaect7cJ8Ppk6nunOM6+5rPMkod4OYKPR5MUg== - /@babel/plugin-transform-block-scoped-functions/7.7.4_@babel+core@7.7.7: + integrity: sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== + /@babel/plugin-transform-block-scoped-functions/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-kqtQzwtKcpPclHYjLK//3lH8OFsCDuDJBaFhVwf8kqdnF6MN4l618UDlcA7TfRs3FayrHj+svYnSX8MC9zmUyQ== - /@babel/plugin-transform-block-scoping/7.7.4_@babel+core@7.7.7: + integrity: sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== + /@babel/plugin-transform-block-scoping/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 lodash: 4.17.15 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-2VBe9u0G+fDt9B5OV5DQH4KBf5DoiNkwFKOz0TCvBWvdAN2rOykCTkrL+jTLxfCAm76l9Qo5OqL7HBOx2dWggg== - /@babel/plugin-transform-classes/7.7.4_@babel+core@7.7.7: - dependencies: - '@babel/core': 7.7.7 - '@babel/helper-annotate-as-pure': 7.7.4 - '@babel/helper-define-map': 7.7.4 - '@babel/helper-function-name': 7.7.4 - '@babel/helper-optimise-call-expression': 7.7.4 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/helper-replace-supers': 7.7.4 - '@babel/helper-split-export-declaration': 7.7.4 + integrity: sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== + /@babel/plugin-transform-classes/7.8.3_@babel+core@7.8.3: + dependencies: + '@babel/core': 7.8.3 + '@babel/helper-annotate-as-pure': 7.8.3 + '@babel/helper-define-map': 7.8.3 + '@babel/helper-function-name': 7.8.3 + '@babel/helper-optimise-call-expression': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/helper-replace-supers': 7.8.3 + '@babel/helper-split-export-declaration': 7.8.3 globals: 11.12.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-sK1mjWat7K+buWRuImEzjNf68qrKcrddtpQo3swi9j7dUcG6y6R6+Di039QN2bD1dykeswlagupEmpOatFHHUg== - /@babel/plugin-transform-computed-properties/7.7.4_@babel+core@7.7.7: + integrity: sha512-SjT0cwFJ+7Rbr1vQsvphAHwUHvSUPmMjMU/0P59G8U2HLFqSa082JO7zkbDNWs9kH/IUqpHI6xWNesGf8haF1w== + /@babel/plugin-transform-computed-properties/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-bSNsOsZnlpLLyQew35rl4Fma3yKWqK3ImWMSC/Nc+6nGjC9s5NFWAer1YQ899/6s9HxO2zQC1WoFNfkOqRkqRQ== - /@babel/plugin-transform-destructuring/7.7.4_@babel+core@7.7.7: + integrity: sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== + /@babel/plugin-transform-destructuring/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-4jFMXI1Cu2aXbcXXl8Lr6YubCn6Oc7k9lLsu8v61TZh+1jny2BWmdtvY9zSUlLdGUvcy9DMAWyZEOqjsbeg/wA== - /@babel/plugin-transform-dotall-regex/7.7.7_@babel+core@7.7.7: + integrity: sha512-H4X646nCkiEcHZUZaRkhE2XVsoz0J/1x3VVujnn96pSoGCtKPA99ZZA+va+gK+92Zycd6OBKCD8tDb/731bhgQ== + /@babel/plugin-transform-dotall-regex/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-create-regexp-features-plugin': 7.8.3_@babel+core@7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-b4in+YlTeE/QmTgrllnb3bHA0HntYvjz8O3Mcbx75UBPJA2xhb5A8nle498VhxSXJHQefjtQxpnLPehDJ4TRlg== - /@babel/plugin-transform-duplicate-keys/7.7.4_@babel+core@7.7.7: + integrity: sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== + /@babel/plugin-transform-duplicate-keys/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-g1y4/G6xGWMD85Tlft5XedGaZBCIVN+/P0bs6eabmcPP9egFleMAo65OOjlhcz1njpwagyY3t0nsQC9oTFegJA== - /@babel/plugin-transform-exponentiation-operator/7.7.4_@babel+core@7.7.7: + integrity: sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ== + /@babel/plugin-transform-exponentiation-operator/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.7.4 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-MCqiLfCKm6KEA1dglf6Uqq1ElDIZwFuzz1WH5mTf8k2uQSxEJMbOIEh7IZv7uichr7PMfi5YVSrr1vz+ipp7AQ== - /@babel/plugin-transform-for-of/7.7.4_@babel+core@7.7.7: + integrity: sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== + /@babel/plugin-transform-for-of/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-zZ1fD1B8keYtEcKF+M1TROfeHTKnijcVQm0yO/Yu1f7qoDoxEIc/+GX6Go430Bg84eM/xwPFp0+h4EbZg7epAA== - /@babel/plugin-transform-function-name/7.7.4_@babel+core@7.7.7: + integrity: sha512-ZjXznLNTxhpf4Q5q3x1NsngzGA38t9naWH8Gt+0qYZEJAcvPI9waSStSh56u19Ofjr7QmD0wUsQ8hw8s/p1VnA== + /@babel/plugin-transform-function-name/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-function-name': 7.7.4 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-function-name': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-E/x09TvjHNhsULs2IusN+aJNRV5zKwxu1cpirZyRPw+FyyIKEHPXTsadj48bVpc1R5Qq1B5ZkzumuFLytnbT6g== - /@babel/plugin-transform-literals/7.7.4_@babel+core@7.7.7: + integrity: sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== + /@babel/plugin-transform-literals/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-X2MSV7LfJFm4aZfxd0yLVFrEXAgPqYoDG53Br/tCKiKYfX0MjVjQeWPIhPHHsCqzwQANq+FLN786fF5rgLS+gw== - /@babel/plugin-transform-member-expression-literals/7.7.4_@babel+core@7.7.7: + integrity: sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== + /@babel/plugin-transform-member-expression-literals/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-9VMwMO7i69LHTesL0RdGy93JU6a+qOPuvB4F4d0kR0zyVjJRVJRaoaGjhtki6SzQUu8yen/vxPKN6CWnCUw6bA== - /@babel/plugin-transform-modules-amd/7.7.5_@babel+core@7.7.7: + integrity: sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== + /@babel/plugin-transform-modules-amd/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-module-transforms': 7.7.5 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-module-transforms': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 babel-plugin-dynamic-import-node: 2.3.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-CT57FG4A2ZUNU1v+HdvDSDrjNWBrtCmSH6YbbgN3Lrf0Di/q/lWRxZrE72p3+HCCz9UjfZOEBdphgC0nzOS6DQ== - /@babel/plugin-transform-modules-commonjs/7.7.5_@babel+core@7.7.7: + integrity: sha512-MadJiU3rLKclzT5kBH4yxdry96odTUwuqrZM+GllFI/VhxfPz+k9MshJM+MwhfkCdxxclSbSBbUGciBngR+kEQ== + /@babel/plugin-transform-modules-commonjs/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-module-transforms': 7.7.5 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/helper-simple-access': 7.7.4 + '@babel/core': 7.8.3 + '@babel/helper-module-transforms': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/helper-simple-access': 7.8.3 babel-plugin-dynamic-import-node: 2.3.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-9Cq4zTFExwFhQI6MT1aFxgqhIsMWQWDVwOgLzl7PTWJHsNaqFvklAU+Oz6AQLAS0dJKTwZSOCo20INwktxpi3Q== - /@babel/plugin-transform-modules-systemjs/7.7.4_@babel+core@7.7.7: + integrity: sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg== + /@babel/plugin-transform-modules-systemjs/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-hoist-variables': 7.7.4 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-hoist-variables': 7.8.3 + '@babel/helper-module-transforms': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 babel-plugin-dynamic-import-node: 2.3.0 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-y2c96hmcsUi6LrMqvmNDPBBiGCiQu0aYqpHatVVu6kD4mFEXKjyNxd/drc18XXAf9dv7UXjrZwBVmTTGaGP8iw== - /@babel/plugin-transform-modules-umd/7.7.4_@babel+core@7.7.7: + integrity: sha512-8cESMCJjmArMYqa9AO5YuMEkE4ds28tMpZcGZB/jl3n0ZzlsxOAi3mC+SKypTfT8gjMupCnd3YiXCkMjj2jfOg== + /@babel/plugin-transform-modules-umd/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-module-transforms': 7.7.5 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-module-transforms': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-u2B8TIi0qZI4j8q4C51ktfO7E3cQ0qnaXFI1/OXITordD40tt17g/sXqgNNCcMTcBFKrUPcGDx+TBJuZxLx7tw== - /@babel/plugin-transform-named-capturing-groups-regex/7.7.4_@babel+core@7.7.7: + integrity: sha512-evhTyWhbwbI3/U6dZAnx/ePoV7H6OUG+OjiJFHmhr9FPn0VShjwC2kdxqIuQ/+1P50TMrneGzMeyMTFOjKSnAw== + /@babel/plugin-transform-named-capturing-groups-regex/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.7 + '@babel/core': 7.8.3 + '@babel/helper-create-regexp-features-plugin': 7.8.3_@babel+core@7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-jBUkiqLKvUWpv9GLSuHUFYdmHg0ujC1JEYoZUfeOOfNydZXp1sXObgyPatpcwjWgsdBGsagWW0cdJpX/DO2jMw== - /@babel/plugin-transform-new-target/7.7.4_@babel+core@7.7.7: + integrity: sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw== + /@babel/plugin-transform-new-target/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-CnPRiNtOG1vRodnsyGX37bHQleHE14B9dnnlgSeEs3ek3fHN1A1SScglTCg1sfbe7sRQ2BUcpgpTpWSfMKz3gg== - /@babel/plugin-transform-object-super/7.7.4_@babel+core@7.7.7: + integrity: sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw== + /@babel/plugin-transform-object-super/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/helper-replace-supers': 7.7.4 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/helper-replace-supers': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-ho+dAEhC2aRnff2JCA0SAK7V2R62zJd/7dmtoe7MHcso4C2mS+vZjn1Pb1pCVZvJs1mgsvv5+7sT+m3Bysb6eg== - /@babel/plugin-transform-parameters/7.7.7_@babel+core@7.7.7: + integrity: sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== + /@babel/plugin-transform-parameters/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-call-delegate': 7.7.4 - '@babel/helper-get-function-arity': 7.7.4 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-call-delegate': 7.8.3 + '@babel/helper-get-function-arity': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-OhGSrf9ZBrr1fw84oFXj5hgi8Nmg+E2w5L7NhnG0lPvpDtqd7dbyilM2/vR8CKbJ907RyxPh2kj6sBCSSfI9Ew== - /@babel/plugin-transform-property-literals/7.7.4_@babel+core@7.7.7: + integrity: sha512-/pqngtGb54JwMBZ6S/D3XYylQDFtGjWrnoCF4gXZOUpFV/ujbxnoNGNvDGu6doFWRPBveE72qTx/RRU44j5I/Q== + /@babel/plugin-transform-property-literals/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-MatJhlC4iHsIskWYyawl53KuHrt+kALSADLQQ/HkhTjX954fkxIEh4q5slL4oRAnsm/eDoZ4q0CIZpcqBuxhJQ== - /@babel/plugin-transform-regenerator/7.7.5_@babel+core@7.7.7: + integrity: sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== + /@babel/plugin-transform-regenerator/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 + '@babel/core': 7.8.3 regenerator-transform: 0.14.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-/8I8tPvX2FkuEyWbjRCt4qTAgZK0DVy8QRguhA524UH48RfGJy94On2ri+dCuwOpcerPRl9O4ebQkRcVzIaGBw== - /@babel/plugin-transform-reserved-words/7.7.4_@babel+core@7.7.7: + integrity: sha512-qt/kcur/FxrQrzFR432FGZznkVAjiyFtCOANjkAKwCbt465L6ZCiUQh2oMYGU3Wo8LRFJxNDFwWn106S5wVUNA== + /@babel/plugin-transform-reserved-words/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ== - /@babel/plugin-transform-shorthand-properties/7.7.4_@babel+core@7.7.7: + integrity: sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A== + /@babel/plugin-transform-shorthand-properties/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q== - /@babel/plugin-transform-spread/7.7.4_@babel+core@7.7.7: + integrity: sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== + /@babel/plugin-transform-spread/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q== - /@babel/plugin-transform-sticky-regex/7.7.4_@babel+core@7.7.7: + integrity: sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== + /@babel/plugin-transform-sticky-regex/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/helper-regex': 7.5.5 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/helper-regex': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-Ls2NASyL6qtVe1H1hXts9yuEeONV2TJZmplLONkMPUG158CtmnrzW5Q5teibM5UVOFjG0D3IC5mzXR6pPpUY7A== - /@babel/plugin-transform-template-literals/7.7.4_@babel+core@7.7.7: + integrity: sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== + /@babel/plugin-transform-template-literals/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-annotate-as-pure': 7.7.4 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-annotate-as-pure': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-sA+KxLwF3QwGj5abMHkHgshp9+rRz+oY9uoRil4CyLtgEuE/88dpkeWgNk5qKVsJE9iSfly3nvHapdRiIS2wnQ== - /@babel/plugin-transform-typeof-symbol/7.7.4_@babel+core@7.7.7: + integrity: sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== + /@babel/plugin-transform-typeof-symbol/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-KQPUQ/7mqe2m0B8VecdyaW5XcQYaePyl9R7IsKd+irzj6jvbhoGnRE+M0aNkyAzI07VfUQ9266L5xMARitV3wg== - /@babel/plugin-transform-unicode-regex/7.7.4_@babel+core@7.7.7: + integrity: sha512-3TrkKd4LPqm4jHs6nPtSDI/SV9Cm5PRJkHLUgTcqRQQTMAZ44ZaAdDZJtvWFSaRcvT0a1rTmJ5ZA5tDKjleF3g== + /@babel/plugin-transform-unicode-regex/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-create-regexp-features-plugin': 7.7.4_@babel+core@7.7.7 - '@babel/helper-plugin-utils': 7.0.0 + '@babel/core': 7.8.3 + '@babel/helper-create-regexp-features-plugin': 7.8.3_@babel+core@7.8.3 + '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-N77UUIV+WCvE+5yHw+oks3m18/umd7y392Zv7mYTpFqHtkpcc+QUz+gLJNTWVlWROIWeLqY0f3OjZxV5TcXnRw== - /@babel/preset-env/7.7.7_@babel+core@7.7.7: - dependencies: - '@babel/core': 7.7.7 - '@babel/helper-module-imports': 7.7.4 - '@babel/helper-plugin-utils': 7.0.0 - '@babel/plugin-proposal-async-generator-functions': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-proposal-dynamic-import': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-proposal-json-strings': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-proposal-object-rest-spread': 7.7.7_@babel+core@7.7.7 - '@babel/plugin-proposal-optional-catch-binding': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-proposal-unicode-property-regex': 7.7.7_@babel+core@7.7.7 - '@babel/plugin-syntax-async-generators': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-syntax-dynamic-import': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-syntax-json-strings': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-syntax-object-rest-spread': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-syntax-optional-catch-binding': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-syntax-top-level-await': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-arrow-functions': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-async-to-generator': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-block-scoped-functions': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-block-scoping': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-classes': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-computed-properties': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-destructuring': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-dotall-regex': 7.7.7_@babel+core@7.7.7 - '@babel/plugin-transform-duplicate-keys': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-exponentiation-operator': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-for-of': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-function-name': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-literals': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-member-expression-literals': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-modules-amd': 7.7.5_@babel+core@7.7.7 - '@babel/plugin-transform-modules-commonjs': 7.7.5_@babel+core@7.7.7 - '@babel/plugin-transform-modules-systemjs': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-modules-umd': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-named-capturing-groups-regex': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-new-target': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-object-super': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-parameters': 7.7.7_@babel+core@7.7.7 - '@babel/plugin-transform-property-literals': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-regenerator': 7.7.5_@babel+core@7.7.7 - '@babel/plugin-transform-reserved-words': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-shorthand-properties': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-spread': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-sticky-regex': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-template-literals': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-typeof-symbol': 7.7.4_@babel+core@7.7.7 - '@babel/plugin-transform-unicode-regex': 7.7.4_@babel+core@7.7.7 - '@babel/types': 7.7.4 - browserslist: 4.8.2 - core-js-compat: 3.6.1 + integrity: sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== + /@babel/preset-env/7.8.3_@babel+core@7.8.3: + dependencies: + '@babel/compat-data': 7.8.1 + '@babel/core': 7.8.3 + '@babel/helper-compilation-targets': 7.8.3_@babel+core@7.8.3 + '@babel/helper-module-imports': 7.8.3 + '@babel/helper-plugin-utils': 7.8.3 + '@babel/plugin-proposal-async-generator-functions': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-proposal-dynamic-import': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-proposal-json-strings': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-proposal-object-rest-spread': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-proposal-optional-catch-binding': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-proposal-optional-chaining': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-proposal-unicode-property-regex': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.8.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-syntax-top-level-await': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-arrow-functions': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-async-to-generator': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-block-scoped-functions': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-block-scoping': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-classes': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-computed-properties': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-destructuring': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-dotall-regex': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-duplicate-keys': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-exponentiation-operator': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-for-of': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-function-name': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-literals': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-member-expression-literals': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-modules-amd': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-modules-commonjs': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-modules-systemjs': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-modules-umd': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-named-capturing-groups-regex': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-new-target': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-object-super': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-parameters': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-property-literals': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-regenerator': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-reserved-words': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-shorthand-properties': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-spread': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-sticky-regex': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-template-literals': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-typeof-symbol': 7.8.3_@babel+core@7.8.3 + '@babel/plugin-transform-unicode-regex': 7.8.3_@babel+core@7.8.3 + '@babel/types': 7.8.3 + browserslist: 4.8.3 + core-js-compat: 3.6.4 invariant: 2.2.4 - js-levenshtein: 1.1.6 + levenary: 1.1.0 semver: 5.7.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-pCu0hrSSDVI7kCVUOdcMNQEbOPJ52E+LrQ14sN8uL2ALfSqePZQlKrOy+tM4uhEdYlCHi4imr8Zz2cZe9oSdIg== - /@babel/register/7.7.7_@babel+core@7.7.7: + integrity: sha512-Rs4RPL2KjSLSE2mWAx5/iCH+GC1ikKdxPrhnRS6PfFVaiZeom22VFKN4X8ZthyN61kAaR05tfXTbCvatl9WIQg== + /@babel/register/7.8.3_@babel+core@7.8.3: dependencies: - '@babel/core': 7.7.7 + '@babel/core': 7.8.3 find-cache-dir: 2.1.0 lodash: 4.17.15 make-dir: 2.1.0 @@ -1180,43 +1237,43 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-S2mv9a5dc2pcpg/ConlKZx/6wXaEwHeqfo7x/QbXsdCAZm+WJC1ekVvL1TVxNsedTs5y/gG63MhJTEsmwmjtiA== - /@babel/runtime/7.7.7: + integrity: sha512-t7UqebaWwo9nXWClIPLPloa5pN33A2leVs8Hf0e9g9YwUP8/H9NeR7DJU+4CXo23QtjChQv5a3DjEtT83ih1rg== + /@babel/runtime/7.8.3: dependencies: regenerator-runtime: 0.13.3 dev: true resolution: - integrity: sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA== - /@babel/template/7.7.4: + integrity: sha512-fVHx1rzEmwB130VTkLnxR+HmxcTjGzH12LYQcFFoBwakMd3aOMD4OsRN7tGG/UOYE2ektgFrS8uACAoRk1CY0w== + /@babel/template/7.8.3: dependencies: - '@babel/code-frame': 7.5.5 - '@babel/parser': 7.7.7 - '@babel/types': 7.7.4 + '@babel/code-frame': 7.8.3 + '@babel/parser': 7.8.3 + '@babel/types': 7.8.3 dev: true resolution: - integrity: sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw== - /@babel/traverse/7.7.4: + integrity: sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ== + /@babel/traverse/7.8.3: dependencies: - '@babel/code-frame': 7.5.5 - '@babel/generator': 7.7.7 - '@babel/helper-function-name': 7.7.4 - '@babel/helper-split-export-declaration': 7.7.4 - '@babel/parser': 7.7.7 - '@babel/types': 7.7.4 + '@babel/code-frame': 7.8.3 + '@babel/generator': 7.8.3 + '@babel/helper-function-name': 7.8.3 + '@babel/helper-split-export-declaration': 7.8.3 + '@babel/parser': 7.8.3 + '@babel/types': 7.8.3 debug: 4.1.1 globals: 11.12.0 lodash: 4.17.15 dev: true resolution: - integrity: sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw== - /@babel/types/7.7.4: + integrity: sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg== + /@babel/types/7.8.3: dependencies: esutils: 2.0.3 lodash: 4.17.15 to-fast-properties: 2.0.0 dev: true resolution: - integrity: sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA== + integrity: sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg== /@concordance/react/2.0.0: dependencies: arrify: 1.0.1 @@ -1229,7 +1286,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.1 '@types/istanbul-reports': 1.1.1 - '@types/yargs': 13.0.4 + '@types/yargs': 13.0.5 dev: true engines: node: '>= 6' @@ -1259,48 +1316,113 @@ packages: node: '>= 8' resolution: integrity: sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ== - /@rollup/plugin-buble/0.20.0_rollup@1.27.14: + /@rollup/plugin-buble/0.20.0_rollup@1.29.0: dependencies: buble: 0.19.8 - rollup: 1.27.14 + rollup: 1.29.0 rollup-pluginutils: 2.8.2 - typescript: 3.7.4 + typescript: 3.7.5 dev: true peerDependencies: rollup: ^1.20.0 resolution: integrity: sha512-3Qkoa3n+6NjQggLkN5R6ouVL3/jveyqjJjJXxbk04HEig/97YyOwoimWYIOC5vlQ60Z+xLhnAvGd6mM0gFY2wQ== - /@rollup/plugin-json/4.0.1_rollup@1.27.14: + /@rollup/plugin-buble/0.21.0: + dependencies: + '@types/buble': 0.19.2 + buble: 0.19.8 + rollup-pluginutils: 2.8.2 + dev: true + peerDependencies: + rollup: ^1.20.0 + resolution: + integrity: sha512-n6N311RCrVvnsWGyo/if6K2kFoDW+x9r+/hkp+fI73MryLFGxN50Y3zJDg3k0ZTDjRHmveVzM6Nzwv9+plWiLA== + /@rollup/plugin-buble/0.21.0_rollup@1.29.0: + dependencies: + '@types/buble': 0.19.2 + buble: 0.19.8 + rollup: 1.29.0 + rollup-pluginutils: 2.8.2 + dev: true + peerDependencies: + rollup: ^1.20.0 + resolution: + integrity: sha512-n6N311RCrVvnsWGyo/if6K2kFoDW+x9r+/hkp+fI73MryLFGxN50Y3zJDg3k0ZTDjRHmveVzM6Nzwv9+plWiLA== + /@rollup/plugin-commonjs/11.0.1_rollup@1.29.0: + dependencies: + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 + estree-walker: 0.6.1 + is-reference: 1.1.4 + magic-string: 0.25.6 + resolve: 1.14.2 + rollup: 1.29.0 + dev: true + engines: + node: '>= 8.0.0' + peerDependencies: + rollup: ^1.20.0 + resolution: + integrity: sha512-SaVUoaLDg3KnIXC5IBNIspr1APTYDzk05VaYcI6qz+0XX3ZlSCwAkfAhNSOxfd5GAdcm/63Noi4TowOY9MpcDg== + /@rollup/plugin-json/4.0.1_rollup@1.29.0: dependencies: - rollup: 1.27.14 + rollup: 1.29.0 rollup-pluginutils: 2.8.2 dev: true peerDependencies: rollup: ^1.20.0 resolution: integrity: sha512-soxllkhOGgchswBAAaTe7X9G80U2tjjHvXv0sBrriLJcC/89PkP59iTrKPOfbz3SjX088mKDmMhAscuyLz8ZSg== - /@rollup/plugin-node-resolve/6.0.0_rollup@1.27.14: + /@rollup/plugin-node-resolve/6.1.0_rollup@1.29.0: + dependencies: + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 + '@types/resolve': 0.0.8 + builtin-modules: 3.1.0 + is-module: 1.0.0 + resolve: 1.14.2 + rollup: 1.29.0 + dev: true + engines: + node: '>= 8.0.0' + peerDependencies: + rollup: ^1.20.0 + resolution: + integrity: sha512-Cv7PDIvxdE40SWilY5WgZpqfIUEaDxFxs89zCAHjqyRwlTSuql4M5hjIuc5QYJkOH0/vyiyNXKD72O+LhRipGA== + /@rollup/plugin-node-resolve/7.0.0: + dependencies: + '@rollup/pluginutils': 3.0.4 + '@types/resolve': 0.0.8 + builtin-modules: 3.1.0 + is-module: 1.0.0 + resolve: 1.14.2 + dev: true + engines: + node: '>= 8.0.0' + peerDependencies: + rollup: ^1.20.0 + resolution: + integrity: sha512-+vOx2+WMBMFotYKM3yYeDGZxIvcQ7yO4g+SuKDFsjKaq8Lw3EPgfB6qNlp8Z/3ceDCEhHvC9/b+PgBGwDQGbzQ== + /@rollup/plugin-node-resolve/7.0.0_rollup@1.29.0: dependencies: - '@rollup/pluginutils': 3.0.1_rollup@1.27.14 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 '@types/resolve': 0.0.8 builtin-modules: 3.1.0 is-module: 1.0.0 - resolve: 1.14.1 - rollup: 1.27.14 + resolve: 1.14.2 + rollup: 1.29.0 dev: true engines: node: '>= 8.0.0' peerDependencies: rollup: ^1.20.0 resolution: - integrity: sha512-GqWz1CfXOsqpeVMcoM315+O7zMxpRsmhWyhJoxLFHVSp9S64/u02i7len/FnbTNbmgYs+sZyilasijH8UiuboQ== - /@rollup/plugin-typescript/2.0.1_c43d6d1c92f803cc012688f27ea7270a: + integrity: sha512-+vOx2+WMBMFotYKM3yYeDGZxIvcQ7yO4g+SuKDFsjKaq8Lw3EPgfB6qNlp8Z/3ceDCEhHvC9/b+PgBGwDQGbzQ== + /@rollup/plugin-typescript/2.1.0_a8ccbbb8df3d541f86d9e2f77577b79b: dependencies: - '@rollup/pluginutils': 3.0.1_rollup@1.27.14 - resolve: 1.14.1 - rollup: 1.27.14 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 + resolve: 1.14.2 + rollup: 1.29.0 tslib: 1.10.0 - typescript: 3.7.4 + typescript: 3.7.5 dev: true engines: node: '>=8.0.0' @@ -1309,13 +1431,13 @@ packages: tslib: '*' typescript: '>=2.1.0' resolution: - integrity: sha512-UA/bN/DlHN19xdOllXmp7G7pM2ac9dQMg0q2T1rg4Bogzb7oHXj2WGafpiNpEm54PivcJdzGRJvRnI6zCISW3w== - /@rollup/plugin-typescript/2.1.0_rollup@1.27.14+typescript@3.7.4: + integrity: sha512-7lXKGY06aofrceVez/YnN2axttFdHSqlUBpCJ6ebzDfxwLDKMgSV5lD4ykBcdgE7aK3egxuLkD/HKyRB5L8Log== + /@rollup/plugin-typescript/2.1.0_rollup@1.29.0+typescript@3.7.5: dependencies: - '@rollup/pluginutils': 3.0.3_rollup@1.27.14 + '@rollup/pluginutils': 3.0.4_rollup@1.29.0 resolve: 1.14.2 - rollup: 1.27.14 - typescript: 3.7.4 + rollup: 1.29.0 + typescript: 3.7.5 dev: true engines: node: '>=8.0.0' @@ -1325,27 +1447,25 @@ packages: typescript: '>=2.1.0' resolution: integrity: sha512-7lXKGY06aofrceVez/YnN2axttFdHSqlUBpCJ6ebzDfxwLDKMgSV5lD4ykBcdgE7aK3egxuLkD/HKyRB5L8Log== - /@rollup/pluginutils/3.0.1_rollup@1.27.14: + /@rollup/pluginutils/3.0.4: dependencies: estree-walker: 0.6.1 - rollup: 1.27.14 engines: node: '>= 8.0.0' peerDependencies: rollup: ^1.20.0 resolution: - integrity: sha512-PmNurkecagFimv7ZdKCVOfQuqKDPkrcpLFxRBcQ00LYr4HAjJwhCFxBiY2Xoletll2htTIiXBg6g0Yg21h2M3w== - /@rollup/pluginutils/3.0.3_rollup@1.27.14: + integrity: sha512-buc0oeq2zqQu2mpMyvZgAaQvitikYjT/4JYhA4EXwxX8/g0ZGHoGiX+0AwmfhrNqH4oJv67gn80sTZFQ/jL1bw== + /@rollup/pluginutils/3.0.4_rollup@1.29.0: dependencies: estree-walker: 0.6.1 - rollup: 1.27.14 - dev: true + rollup: 1.29.0 engines: node: '>= 8.0.0' peerDependencies: rollup: ^1.20.0 resolution: - integrity: sha512-lxys3KlfYU8LOGu7+UL2upa3kM9q8ISo4EK+vSqqJCLk6N74HsUZbUFiElolh4BUsv0jeMGtYDzpNrtrShE6Gg== + integrity: sha512-buc0oeq2zqQu2mpMyvZgAaQvitikYjT/4JYhA4EXwxX8/g0ZGHoGiX+0AwmfhrNqH4oJv67gn80sTZFQ/jL1bw== /@samverschueren/stream-to-observable/0.3.0: dependencies: any-observable: 0.3.0 @@ -1366,21 +1486,21 @@ packages: dev: true resolution: integrity: sha512-qbk9AP+cZUsKdW1GJsBpxPKFmCJ0T8swwzVje3qFd+AkQb74Q/tiuzrdfFg8AD2g5HH/XbE/I8Uc1KYHVYWfhg== - /@sinonjs/formatio/3.2.2: + /@sinonjs/formatio/4.0.1: dependencies: '@sinonjs/commons': 1.7.0 - '@sinonjs/samsam': 3.3.3 + '@sinonjs/samsam': 4.2.2 dev: true resolution: - integrity: sha512-B8SEsgd8gArBLMD6zpRw3juQ2FVSsmdd7qlevyDqzS9WTCtvF55/gAL+h6gue8ZvPYcdiPdvueM/qm//9XzyTQ== - /@sinonjs/samsam/3.3.3: + integrity: sha512-asIdlLFrla/WZybhm0C8eEzaDNNrzymiTqHMeJl6zPW2881l3uuVRpm0QlRQEjqYWv6CcKMGYME3LbrLJsORBw== + /@sinonjs/samsam/4.2.2: dependencies: '@sinonjs/commons': 1.7.0 - array-from: 2.1.1 - lodash: 4.17.15 + lodash.get: 4.4.2 + type-detect: 4.0.8 dev: true resolution: - integrity: sha512-bKCMKZvWIjYD0BLGnNrxVuw4dkWCYsLqFOUWw8VgKF/+5Y+mE7LfHWPIYoDXowH+3a9LsWDMo0uAP8YDosPvHQ== + integrity: sha512-z9o4LZUzSD9Hl22zV38aXNykgFeVj8acqfFabCY6FY83n/6s/XwNJyYYldz6/9lBJanpno9h+oL6HTISkviweA== /@sinonjs/text-encoding/0.7.1: dev: true resolution: @@ -1399,8 +1519,7 @@ packages: integrity: sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw== /@types/buble/0.19.2: dependencies: - magic-string: 0.25.5 - dev: false + magic-string: 0.25.6 resolution: integrity: sha512-uUD8zIfXMKThmFkahTXDGI3CthFH1kMg2dOm3KLi4GlC5cbARA64bEcUMbbWdWdE73eoc/iBB9PiTMqH0dNS2Q== /@types/color-name/1.1.1: @@ -1414,9 +1533,9 @@ packages: /@types/estree/0.0.39: resolution: integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== - /@types/estree/0.0.41: + /@types/estree/0.0.42: resolution: - integrity: sha512-rIAmXyJlqw4KEBO7+u9gxZZSQHaCNnIzYrnNmYVpgfJhxTqO0brCX0SYpqUTkVI5mwwUwzmtspLBGBKroMeynA== + integrity: sha512-K1DPVvnBCPxzD+G51/cxVIoc2X8uUVl1zpJeE6iKcgHMj4+tbat5Xu4TjV7v2QSDbIeAfLi2hIk+u2+s0MlpUQ== /@types/events/3.0.0: dev: true resolution: @@ -1425,7 +1544,7 @@ packages: dependencies: '@types/events': 3.0.0 '@types/minimatch': 3.0.3 - '@types/node': 13.1.4 + '@types/node': 13.1.8 dev: true resolution: integrity: sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== @@ -1446,12 +1565,12 @@ packages: dev: true resolution: integrity: sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== - /@types/jest/24.0.25: + /@types/jest/24.9.0: dependencies: jest-diff: 24.9.0 dev: true resolution: - integrity: sha512-hnP1WpjN4KbGEK4dLayul6lgtys6FPz0UfxMeMQCv0M+sTnzN3ConfiO72jHgLxl119guHgI8gLqDOrRLsyp2g== + integrity: sha512-dXvuABY9nM1xgsXlOtLQXJKdacxZJd7AtvLsKZ/0b57ruMXDKCOXAC/M75GbllQX6o1pcZ5hAG4JzYy7Z/wM2w== /@types/json-schema/7.0.4: dev: true resolution: @@ -1470,17 +1589,17 @@ packages: dev: true resolution: integrity: sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== - /@types/node/12.12.22: + /@types/node/12.12.25: dev: true resolution: - integrity: sha512-r5i93jqbPWGXYXxianGATOxTelkp6ih/U0WVnvaqAvTqM+0U6J3kw6Xk6uq/dWNRkEVw/0SLcO5ORXbVNz4FMQ== - /@types/node/13.1.2: - resolution: - integrity: sha512-B8emQA1qeKerqd1dmIsQYnXi+mmAzTB7flExjmy5X1aVAKFNNNDubkavwR13kR6JnpeLp3aLoJhwn9trWPAyFQ== - /@types/node/13.1.4: + integrity: sha512-nf1LMGZvgFX186geVZR1xMZKKblJiRfiASTHw85zED2kI1yDKHDwTKMdkaCbTlXoRKlGKaDfYywt+V0As30q3w== + /@types/node/13.1.6: dev: true resolution: - integrity: sha512-Lue/mlp2egZJoHXZr4LndxDAd7i/7SQYhV0EjWfb/a4/OZ6tuVwMCVPiwkU5nsEipxEf7hmkSU7Em5VQ8P5NGA== + integrity: sha512-Jg1F+bmxcpENHP23sVKkNuU3uaxPnsBMW0cLjleiikFKomJQbsn0Cqk2yDvQArqzZN6ABfBkZ0To7pQ8sLdWDg== + /@types/node/13.1.8: + resolution: + integrity: sha512-6XzyyNM9EKQW4HKuzbo/CkOIjn/evtCmsU+MUM1xDfJ+3/rNjBttM1NgN7AOQvN6tP1Sl1D1PIKMreTArnxM9A== /@types/normalize-package-data/2.4.0: dev: true resolution: @@ -1491,28 +1610,28 @@ packages: integrity: sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== /@types/resolve/0.0.8: dependencies: - '@types/node': 13.1.2 + '@types/node': 13.1.8 resolution: integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== - /@types/yargs-parser/13.1.0: + /@types/yargs-parser/15.0.0: dev: true resolution: - integrity: sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== - /@types/yargs/13.0.4: + integrity: sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== + /@types/yargs/13.0.5: dependencies: - '@types/yargs-parser': 13.1.0 + '@types/yargs-parser': 15.0.0 dev: true resolution: - integrity: sha512-Ke1WmBbIkVM8bpvsNEcGgQM70XcEh/nbpxQhW7FhrsbCsXSY9BmLB1+LHtD7r9zrsOcFlLiF+a/UeJsdfw3C5A== - /@typescript-eslint/eslint-plugin/2.14.0_c75538670b52ef0bc80e769266babcdc: + integrity: sha512-CF/+sxTO7FOwbIRL4wMv0ZYLCRfMid2HQpzDRyViH7kSpfoAFiMdGqKIxb1PxWfjtQXQhnQuD33lvRHNwr809Q== + /@typescript-eslint/eslint-plugin/2.16.0_8fc8ff471fa3e6f8320e1003f8984b6d: dependencies: - '@typescript-eslint/experimental-utils': 2.14.0_typescript@3.7.4 - '@typescript-eslint/parser': 2.14.0_typescript@3.7.4 + '@typescript-eslint/experimental-utils': 2.16.0_typescript@3.7.5 + '@typescript-eslint/parser': 2.16.0_typescript@3.7.5 eslint-utils: 1.4.3 functional-red-black-tree: 1.0.1 regexpp: 3.0.0 - tsutils: 3.17.1_typescript@3.7.4 - typescript: 3.7.4 + tsutils: 3.17.1_typescript@3.7.5 + typescript: 3.7.5 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 @@ -1524,11 +1643,11 @@ packages: typescript: optional: true resolution: - integrity: sha512-sneOJ3Hu0m5whJiVIxGBZZZMxMJ7c0LhAJzeMJgHo+n5wFs+/6rSR/gl7crkdR2kNwfOOSdzdc0gMvatG4dX2Q== - /@typescript-eslint/experimental-utils/2.14.0_typescript@3.7.4: + integrity: sha512-TKWbeFAKRPrvKiR9GNxErQ8sELKqg1ZvXi6uho07mcKShBnCnqNpDQWP01FEvWKf0bxM2g7uQEI5MNjSNqvUpQ== + /@typescript-eslint/experimental-utils/2.16.0_typescript@3.7.5: dependencies: '@types/json-schema': 7.0.4 - '@typescript-eslint/typescript-estree': 2.14.0_typescript@3.7.4 + '@typescript-eslint/typescript-estree': 2.16.0_typescript@3.7.5 eslint-scope: 5.0.0 dev: true engines: @@ -1537,14 +1656,14 @@ packages: eslint: '*' typescript: '*' resolution: - integrity: sha512-KcyKS7G6IWnIgl3ZpyxyBCxhkBPV+0a5Jjy2g5HxlrbG2ZLQNFeneIBVXdaBCYOVjvGmGGFKom1kgiAY75SDeQ== - /@typescript-eslint/parser/2.14.0_typescript@3.7.4: + integrity: sha512-bXTmAztXpqxliDKZgvWkl+5dHeRN+jqXVZ16peKKFzSXVzT6mz8kgBpHiVzEKO2NZ8OCU7dG61K9sRS/SkUUFQ== + /@typescript-eslint/parser/2.16.0_typescript@3.7.5: dependencies: '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 2.14.0_typescript@3.7.4 - '@typescript-eslint/typescript-estree': 2.14.0_typescript@3.7.4 + '@typescript-eslint/experimental-utils': 2.16.0_typescript@3.7.5 + '@typescript-eslint/typescript-estree': 2.16.0_typescript@3.7.5 eslint-visitor-keys: 1.1.0 - typescript: 3.7.4 + typescript: 3.7.5 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 @@ -1555,17 +1674,17 @@ packages: typescript: optional: true resolution: - integrity: sha512-haS+8D35fUydIs+zdSf4BxpOartb/DjrZ2IxQ5sR8zyGfd77uT9ZJZYF8+I0WPhzqHmfafUBx8MYpcp8pfaoSA== - /@typescript-eslint/typescript-estree/2.14.0_typescript@3.7.4: + integrity: sha512-+w8dMaYETM9v6il1yYYkApMSiwgnqXWJbXrA94LAWN603vXHACsZTirJduyeBOJjA9wT6xuXe5zZ1iCUzoxCfw== + /@typescript-eslint/typescript-estree/2.16.0_typescript@3.7.5: dependencies: debug: 4.1.1 eslint-visitor-keys: 1.1.0 glob: 7.1.6 is-glob: 4.0.1 - lodash.unescape: 4.0.1 + lodash: 4.17.15 semver: 6.3.0 - tsutils: 3.17.1_typescript@3.7.4 - typescript: 3.7.4 + tsutils: 3.17.1_typescript@3.7.5 + typescript: 3.7.5 dev: true engines: node: ^8.10.0 || ^10.13.0 || >=11.10.1 @@ -1575,7 +1694,7 @@ packages: typescript: optional: true resolution: - integrity: sha512-pnLpUcMNG7GfFFfNQbEX6f1aPa5fMnH2G9By+A1yovYI4VIOK2DzkaRuUlIkbagpAcrxQHLqovI1YWqEcXyRnA== + integrity: sha512-hyrCYjFHISos68Bk5KjUAXw0pP/455qq9nxqB1KkT67Pxjcfw+r6Yhcmqnp8etFL45UexCHUMrADHH7dI/m2WQ== /JSONStream/1.3.5: dependencies: jsonparse: 1.3.1 @@ -1591,12 +1710,6 @@ packages: acorn: ^6.0.0 resolution: integrity: sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== - /acorn-jsx/3.0.1: - dependencies: - acorn: 3.3.0 - dev: true - resolution: - integrity: sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= /acorn-jsx/5.1.0_acorn@6.4.0: dependencies: acorn: 6.4.0 @@ -1612,19 +1725,6 @@ packages: acorn: ^6.0.0 || ^7.0.0 resolution: integrity: sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw== - /acorn-object-spread/1.0.0: - dependencies: - acorn: 3.3.0 - dev: true - resolution: - integrity: sha1-SOrQ9KjrFplaF6Dbn/xqyq2kumg= - /acorn/3.3.0: - dev: true - engines: - node: '>=0.4.0' - hasBin: true - resolution: - integrity: sha1-ReN/s56No/JbruP/U2niu18iAXo= /acorn/6.4.0: engines: node: '>=0.4.0' @@ -1646,15 +1746,15 @@ packages: node: '>=8' resolution: integrity: sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== - /ajv/6.10.2: + /ajv/6.11.0: dependencies: - fast-deep-equal: 2.0.1 + fast-deep-equal: 3.1.1 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.2.2 dev: true resolution: - integrity: sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== + integrity: sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA== /alphanum-sort/1.0.2: dev: true resolution: @@ -1665,12 +1765,6 @@ packages: dev: true resolution: integrity: sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw== - /ansi-colors/3.2.3: - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== /ansi-escapes/3.2.0: dev: true engines: @@ -1744,7 +1838,7 @@ packages: /anymatch/3.1.1: dependencies: normalize-path: 3.0.0 - picomatch: 2.1.1 + picomatch: 2.2.1 dev: true engines: node: '>= 8' @@ -1771,12 +1865,6 @@ packages: sprintf-js: 1.0.3 resolution: integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - /arr-diff/4.0.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= /arr-flatten/1.1.0: dev: true engines: @@ -1784,6 +1872,7 @@ packages: resolution: integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== /arr-union/3.1.0: + dev: false engines: node: '>=0.10.0' resolution: @@ -1793,14 +1882,10 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= - /array-from/2.1.1: - dev: true - resolution: - integrity: sha1-z+nYwmYoudxa7MYqn12PHzUsEZU= /array-includes/3.1.1: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.0 + es-abstract: 1.17.2 is-string: 1.0.5 dev: true engines: @@ -1833,16 +1918,10 @@ packages: node: '>=6' resolution: integrity: sha512-bdHxtev7FN6+MXI1YFW0Q8mQ8dTJc2S8AMfju+ZR77pbg2yAdVyDlwkaUI7Har0LyOMRFPHrJ9lYdyjZZswdlQ== - /array-unique/0.3.2: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= /array.prototype.flat/1.2.3: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.0 + es-abstract: 1.17.2 dev: true engines: node: '>= 0.4' @@ -1859,12 +1938,6 @@ packages: node: '>=8' resolution: integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== - /assign-symbols/1.0.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= /astral-regex/1.0.0: dev: true engines: @@ -1883,19 +1956,12 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-yL4BCitc0A3qlsgRFgNGk9/dgtE= - /atob/2.1.2: - dev: true - engines: - node: '>= 4.5.0' - hasBin: true - resolution: - integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== /ava/2.4.0: dependencies: - '@ava/babel-preset-stage-4': 4.0.0_@babel+core@7.7.7 + '@ava/babel-preset-stage-4': 4.0.0_@babel+core@7.8.3 '@ava/babel-preset-transform-test-files': 6.0.0 - '@babel/core': 7.7.7 - '@babel/generator': 7.7.7 + '@babel/core': 7.8.3 + '@babel/generator': 7.8.3 '@concordance/react': 2.0.0 ansi-escapes: 4.3.0 ansi-styles: 4.2.1 @@ -1927,8 +1993,8 @@ packages: esm: 3.2.25 figures: 3.1.0 find-up: 4.1.0 - get-port: 5.1.0 - globby: 10.0.1 + get-port: 5.1.1 + globby: 10.0.2 ignore-by-default: 1.0.1 import-local: 3.0.2 indent-string: 4.0.0 @@ -1979,8 +2045,8 @@ packages: integrity: sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== /babel-plugin-espower/3.0.1: dependencies: - '@babel/generator': 7.7.7 - '@babel/parser': 7.7.7 + '@babel/generator': 7.8.3 + '@babel/parser': 7.8.3 call-matcher: 1.1.0 core-js: 2.6.11 espower-location-detector: 1.0.0 @@ -1992,24 +2058,10 @@ packages: /balanced-match/1.0.0: resolution: integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c= - /base/0.11.2: - dependencies: - cache-base: 1.0.1 - class-utils: 0.3.6 - component-emitter: 1.3.0 - define-property: 1.0.0 - isobject: 3.0.1 - mixin-deep: 1.3.2 - pascalcase: 0.1.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - /big.js/3.2.0: + /big.js/5.2.2: dev: true resolution: - integrity: sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q== + integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== /binary-extensions/2.0.0: dev: true engines: @@ -2049,23 +2101,6 @@ packages: concat-map: 0.0.1 resolution: integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - /braces/2.3.2: - dependencies: - arr-flatten: 1.1.0 - array-unique: 0.3.2 - extend-shallow: 2.0.1 - fill-range: 4.0.0 - isobject: 3.0.1 - repeat-element: 1.1.3 - snapdragon: 0.8.2 - snapdragon-node: 2.1.1 - split-string: 3.1.0 - to-regex: 3.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== /braces/3.0.2: dependencies: fill-range: 7.0.1 @@ -2074,38 +2109,22 @@ packages: node: '>=8' resolution: integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - /browser-stdout/1.3.1: - dev: true - resolution: - integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== - /browserslist/4.8.2: - dependencies: - caniuse-lite: 1.0.30001017 - electron-to-chromium: 1.3.322 - node-releases: 1.1.44 - dev: true - hasBin: true - resolution: - integrity: sha512-+M4oeaTplPm/f1pXDw84YohEv7B1i/2Aisei8s4s6k3QsoSHa7i5sz8u/cGQkkatCPxMASKxPualR4wwYgVboA== - /buble/0.10.7: + /browserslist/4.8.3: dependencies: - acorn: 3.3.0 - acorn-jsx: 3.0.1 - acorn-object-spread: 1.0.0 - chalk: 1.1.3 - magic-string: 0.14.0 - minimist: 1.2.0 + caniuse-lite: 1.0.30001021 + electron-to-chromium: 1.3.337 + node-releases: 1.1.46 dev: true hasBin: true resolution: - integrity: sha1-PGjwzl+CgB/zUVGle0hw6VExBdc= + integrity: sha512-iU43cMMknxG1ClEZ2MDKeonKE1CCrFVkQK2AqO2YWFmvIrx4JWrvQ4w4hQez6EpVI8rHTtqh/ruHHDHSOKxvUg== /buble/0.19.8: dependencies: acorn: 6.4.0 acorn-dynamic-import: 4.0.0_acorn@6.4.0 acorn-jsx: 5.1.0_acorn@6.4.0 chalk: 2.4.2 - magic-string: 0.25.5 + magic-string: 0.25.6 minimist: 1.2.0 os-homedir: 2.0.0 regexpu-core: 4.6.0 @@ -2121,22 +2140,6 @@ packages: node: '>=6' resolution: integrity: sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== - /cache-base/1.0.1: - dependencies: - collection-visit: 1.0.0 - component-emitter: 1.3.0 - get-value: 2.0.6 - has-value: 1.0.0 - isobject: 3.0.1 - set-value: 2.0.1 - to-object-path: 0.3.0 - union-value: 1.0.1 - unset-value: 1.0.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== /cacheable-request/6.1.0: dependencies: clone-response: 1.0.2 @@ -2227,17 +2230,17 @@ packages: integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== /caniuse-api/3.0.0: dependencies: - browserslist: 4.8.2 - caniuse-lite: 1.0.30001017 + browserslist: 4.8.3 + caniuse-lite: 1.0.30001021 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true resolution: integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== - /caniuse-lite/1.0.30001017: + /caniuse-lite/1.0.30001021: dev: true resolution: - integrity: sha512-EDnZyOJ6eYh6lHmCvCdHAFbfV4KJ9lSdfv4h/ppEhrU/Yudkl7jujwMZ1we6RX7DXqBfT04pVMQ4J+1wcTlsKA== + integrity: sha512-wuMhT7/hwkgd8gldgp2jcrUjOU9RXJ4XxGumQeOsUr91l3WwmM68Cpa/ymCnWEDqakwFXhuDQbaKNHXBPgeE9g== /chalk/1.1.3: dependencies: ansi-styles: 2.2.1 @@ -2291,17 +2294,6 @@ packages: dev: true resolution: integrity: sha512-u6dx20FBXm+apMi+5x7UVm6EH7BL1gc4XrcnQewjcB7HWRcor/V5qWc3RG2HwpgDJ26gIi2DSEu3B7sXynAw/g== - /class-utils/0.3.6: - dependencies: - arr-union: 3.1.0 - define-property: 0.2.5 - isobject: 3.0.1 - static-extend: 0.1.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== /clean-stack/2.2.0: dev: true engines: @@ -2410,22 +2402,13 @@ packages: integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= /codecov-lite/0.3.1: dependencies: - '@babel/runtime': 7.7.7 + '@babel/runtime': 7.8.3 got: 9.6.0 dev: true engines: node: '>=8.6.0' resolution: integrity: sha512-AVLT4qyljd6lkzvUszA1tilsPj1fIBE1fL9/X/Q90qm+kTZh5JL2L1n+Ak9cPwUe/ZpSr0rzzJpH1kqlsi2i/g== - /collection-visit/1.0.0: - dependencies: - map-visit: 1.0.0 - object-visit: 1.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= /color-convert/1.9.3: dependencies: color-name: 1.1.3 @@ -2461,15 +2444,14 @@ packages: resolution: integrity: sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== /commander/2.20.3: - dev: true resolution: integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - /commander/4.0.1: + /commander/4.1.0: dev: false engines: node: '>= 6' resolution: - integrity: sha512-IPF4ouhCP+qdlcmCedhxX4xiGBPyigb8v5NeUp+0LyhwLgxMqyp3S0vl7TAPfS/hiP7FC3caI/PB9lTmP8r1NA== + integrity: sha512-NIQrwvv9V39FHgGFm36+U9SMQzbiHvU79k+iADraJTpmrFFfx7Ds0IvDoAdZsDrknlkRk14OYoWXb57uTh7/sw== /common-path-prefix/1.0.0: dev: true resolution: @@ -2478,10 +2460,6 @@ packages: dev: true resolution: integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= - /component-emitter/1.3.0: - dev: true - resolution: - integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== /concat-map/0.0.1: resolution: integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= @@ -2555,19 +2533,13 @@ packages: node: '>= 4' resolution: integrity: sha1-fj5Iu+bZl7FBfdyihoIEtNPYVxU= - /copy-descriptor/0.1.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= - /core-js-compat/3.6.1: + /core-js-compat/3.6.4: dependencies: - browserslist: 4.8.2 + browserslist: 4.8.3 semver: 7.0.0 dev: true resolution: - integrity: sha512-2Tl1EuxZo94QS2VeH28Ebf5g3xbPZG/hj/N5HDDy4XMP/ImR0JIer/nggQRiMN91Q54JVkGbytf42wO29oXVHg== + integrity: sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA== /core-js/2.6.11: deprecated: 'core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.' dev: true @@ -2816,11 +2788,15 @@ packages: dev: true resolution: integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== - /d3-dsv/0.1.14: + /d3-dsv/1.2.0: + dependencies: + commander: 2.20.3 + iconv-lite: 0.4.24 + rw: 1.3.3 dev: false hasBin: true resolution: - integrity: sha1-mDPNYaWj6B4DJjoc54903lah27g= + integrity: sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g== /date-fns/1.30.1: dev: true resolution: @@ -2839,12 +2815,6 @@ packages: dev: true resolution: integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - /debug/3.2.6: - dependencies: - ms: 2.1.1 - dev: true - resolution: - integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== /debug/4.1.1: dependencies: ms: 2.1.2 @@ -2864,12 +2834,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= - /decode-uri-component/0.2.0: - dev: true - engines: - node: '>=0.10' - resolution: - integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= /decompress-response/3.3.0: dependencies: mimic-response: 1.0.1 @@ -2929,55 +2893,17 @@ packages: node: '>= 0.4' resolution: integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - /define-property/0.2.5: - dependencies: - is-descriptor: 0.1.6 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= - /define-property/1.0.0: + /del-cli/3.0.0: dependencies: - is-descriptor: 1.0.2 + del: 5.1.0 + meow: 5.0.0 dev: true engines: - node: '>=0.10.0' + node: '>=8' + hasBin: true resolution: - integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY= - /define-property/2.0.2: - dependencies: - is-descriptor: 1.0.2 - isobject: 3.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== - /del-cli/3.0.0: - dependencies: - del: 5.1.0 - meow: 5.0.0 - dev: true - engines: - node: '>=8' - hasBin: true - resolution: - integrity: sha512-J4HDC2mpcN5aopya4VdkyiFXZaqAoo7ua9VpKbciX3DDUSbtJbPMc3ivggJsAAgS6EqonmbenIiMhBGtJPW9FA== - /del/3.0.0: - dependencies: - globby: 6.1.0 - is-path-cwd: 1.0.0 - is-path-in-cwd: 1.0.1 - p-map: 1.2.0 - pify: 3.0.0 - rimraf: 2.7.1 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU= - /del/4.1.1: + integrity: sha512-J4HDC2mpcN5aopya4VdkyiFXZaqAoo7ua9VpKbciX3DDUSbtJbPMc3ivggJsAAgS6EqonmbenIiMhBGtJPW9FA== + /del/4.1.1: dependencies: '@types/glob': 7.1.1 globby: 6.1.0 @@ -2993,7 +2919,7 @@ packages: integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ== /del/5.1.0: dependencies: - globby: 10.0.1 + globby: 10.0.2 graceful-fs: 4.2.3 is-glob: 4.0.1 is-path-cwd: 2.2.0 @@ -3018,18 +2944,12 @@ packages: node: '>= 6' resolution: integrity: sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== - /diff/3.5.0: - dev: true - engines: - node: '>=0.3.1' - resolution: - integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== - /diff/4.0.1: + /diff/4.0.2: dev: true engines: node: '>=0.3.1' resolution: - integrity: sha512-s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q== + integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== /dir-glob/3.0.1: dependencies: path-type: 4.0.0 @@ -3097,10 +3017,10 @@ packages: dev: true resolution: integrity: sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= - /electron-to-chromium/1.3.322: + /electron-to-chromium/1.3.337: dev: true resolution: - integrity: sha512-Tc8JQEfGQ1MzfSzI/bTlSr7btJv/FFO7Yh6tanqVmIWOuNCu6/D1MilIEgLtmWqIrsv+o4IjpLAhgMBr/ncNAA== + integrity: sha512-uJ+wLjslYQ/2rAusDg+6FlK8DLhHWTLCe7gkofBehTifW7KCkPVTn5rhKSCncWYNq34Iy/o4OfswuEkAO2RBaw== /elegant-spinner/1.0.1: dev: true engines: @@ -3155,7 +3075,7 @@ packages: is-arrayish: 0.2.1 resolution: integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - /es-abstract/1.17.0: + /es-abstract/1.17.2: dependencies: es-to-primitive: 1.2.1 function-bind: 1.1.1 @@ -3172,7 +3092,7 @@ packages: engines: node: '>= 0.4' resolution: - integrity: sha512-yYkE07YF+6SIBmg1MsJ9dlub5L48Ek7X0qz+c/CPCHS9EBXfESorzng4cJQjJW5/pB6vDF41u7F8vUhLVDqIug== + integrity: sha512-YoKuru3Lyoy7yVTBSH2j7UxTqe/je3dWAruC0sHvZX1GNd5zX8SSLvQqEgO9b3Ex8IW+goFI9arEEsFIbulhOw== /es-to-primitive/1.2.1: dependencies: is-callable: 1.1.5 @@ -3228,7 +3148,7 @@ packages: /eslint-config-rollup/0.1.0: dependencies: eslint: 6.8.0 - eslint-plugin-import: 2.19.1_eslint@6.8.0 + eslint-plugin-import: 2.20.0_eslint@6.8.0 eslint-plugin-prettier: 3.1.2_eslint@6.8.0+prettier@1.19.1 prettier: 1.19.1 dev: true @@ -3236,14 +3156,14 @@ packages: node: '>=8.0.0' resolution: integrity: sha512-DXJTAX33Kq+iqV1MUEH78IKj3BZIqKR9jUy1ABHcx4fCryY0G2WUFttUVpuwED0XwAIXBVOiISStoly2rtvdKA== - /eslint-import-resolver-node/0.3.2: + /eslint-import-resolver-node/0.3.3: dependencies: debug: 2.6.9 - resolve: 1.14.1 + resolve: 1.14.2 dev: true resolution: - integrity: sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== - /eslint-module-utils/2.5.0: + integrity: sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg== + /eslint-module-utils/2.5.2: dependencies: debug: 2.6.9 pkg-dir: 2.0.0 @@ -3251,8 +3171,8 @@ packages: engines: node: '>=4' resolution: - integrity: sha512-kCo8pZaNz2dsAW7nCUjuVoI11EBXXpIzfNxmaoLhXoRDOnqXLC4iSGVRdZPhOitfbdEfMEfKOiENaK6wDPZEGw== - /eslint-plugin-import/2.19.1_eslint@6.8.0: + integrity: sha512-LGScZ/JSlqGKiT8OC+cYRxseMjyqt6QO54nl281CK93unD89ijSeRV6An8Ci/2nvWVKe8K/Tqdm75RQoIOCr+Q== + /eslint-plugin-import/2.20.0_eslint@6.8.0: dependencies: array-includes: 3.1.1 array.prototype.flat: 1.2.3 @@ -3260,20 +3180,20 @@ packages: debug: 2.6.9 doctrine: 1.5.0 eslint: 6.8.0 - eslint-import-resolver-node: 0.3.2 - eslint-module-utils: 2.5.0 + eslint-import-resolver-node: 0.3.3 + eslint-module-utils: 2.5.2 has: 1.0.3 minimatch: 3.0.4 object.values: 1.1.1 read-pkg-up: 2.0.0 - resolve: 1.14.1 + resolve: 1.14.2 dev: true engines: node: '>=4' peerDependencies: eslint: 2.x - 6.x resolution: - integrity: sha512-x68131aKoCZlCae7rDXKSAQmbT5DQuManyXo2sK6fJJ0aK5CWAkv6A6HJZGgqC8IhjQxYPgo6/IY4Oz8AFsbBw== + integrity: sha512-NK42oA0mUc8Ngn4kONOPsPB1XhbUvNHqF+g307dPV28aknPoiNnKLFd9em4nkswwepdF5ouieqv5Th/63U7YJQ== /eslint-plugin-prettier/3.1.2_eslint@6.8.0+prettier@1.19.1: dependencies: eslint: 6.8.0 @@ -3312,8 +3232,8 @@ packages: integrity: sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== /eslint/6.8.0: dependencies: - '@babel/code-frame': 7.5.5 - ajv: 6.10.2 + '@babel/code-frame': 7.8.3 + ajv: 6.11.0 chalk: 2.4.2 cross-spawn: 6.0.5 debug: 4.1.1 @@ -3331,7 +3251,7 @@ packages: ignore: 4.0.6 import-fresh: 3.2.1 imurmurhash: 0.1.4 - inquirer: 7.0.1 + inquirer: 7.0.3 is-glob: 4.0.1 js-yaml: 3.13.1 json-stable-stringify-without-jsonify: 1.0.1 @@ -3414,10 +3334,6 @@ packages: node: '>=4.0' resolution: integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - /estree-walker/0.2.1: - dev: true - resolution: - integrity: sha1-va/oCVOD2EFNXcLs9MkXO225QS4= /estree-walker/0.6.1: resolution: integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== @@ -3475,20 +3391,6 @@ packages: node: ^8.12.0 || >=9.7.0 resolution: integrity: sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw== - /expand-brackets/2.1.4: - dependencies: - debug: 2.6.9 - define-property: 0.2.5 - extend-shallow: 2.0.1 - posix-character-classes: 0.1.1 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI= /expand-tilde/2.0.2: dependencies: homedir-polyfill: 1.0.3 @@ -3503,23 +3405,6 @@ packages: dev: true resolution: integrity: sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A== - /extend-shallow/2.0.1: - dependencies: - is-extendable: 0.1.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= - /extend-shallow/3.0.2: - dependencies: - assign-symbols: 1.0.0 - is-extendable: 1.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= /external-editor/3.1.0: dependencies: chardet: 0.7.0 @@ -3530,25 +3415,10 @@ packages: node: '>=4' resolution: integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - /extglob/2.0.4: - dependencies: - array-unique: 0.3.2 - define-property: 1.0.0 - expand-brackets: 2.1.4 - extend-shallow: 2.0.1 - fragment-cache: 0.2.1 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - /fast-deep-equal/2.0.1: + /fast-deep-equal/3.1.1: dev: true resolution: - integrity: sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= + integrity: sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== /fast-diff/1.2.0: dev: true resolution: @@ -3616,17 +3486,6 @@ packages: node: '>=4' resolution: integrity: sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== - /fill-range/4.0.0: - dependencies: - extend-shallow: 2.0.1 - is-number: 3.0.0 - repeat-string: 1.6.1 - to-regex-range: 2.1.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= /fill-range/7.0.1: dependencies: to-regex-range: 5.0.1 @@ -3679,29 +3538,10 @@ packages: node: '>=4' resolution: integrity: sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== - /flat/4.1.0: - dependencies: - is-buffer: 2.0.4 - dev: true - hasBin: true - resolution: - integrity: sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw== /flatted/2.0.1: dev: true resolution: integrity: sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== - /fn-name/2.0.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-UhTXU3pNBqSjAcDMJi/rhBiAAuc= - /for-in/1.0.2: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= /foreground-child/1.5.6: dependencies: cross-spawn: 4.0.2 @@ -3709,14 +3549,6 @@ packages: dev: true resolution: integrity: sha1-T9ca0t/elnibmApcCilZN8svXOk= - /fragment-cache/0.2.1: - dependencies: - map-cache: 0.2.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= /fs.realpath/1.0.0: resolution: integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8= @@ -3735,22 +3567,18 @@ packages: dev: true resolution: integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= - /g-status/2.0.2: + /generic-names/2.0.1: dependencies: - arrify: 1.0.1 - matcher: 1.1.1 - simple-git: 1.129.0 + loader-utils: 1.2.3 dev: true - engines: - node: '>=6' resolution: - integrity: sha512-kQoE9qH+T1AHKgSSD0Hkv98bobE90ILQcXAF4wvGgsr7uFqNvwmh8j+Lq3l0RVt3E3HjSbv2B9biEGcEtpHLCA== - /generic-names/1.0.3: - dependencies: - loader-utils: 0.2.17 + integrity: sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ== + /gensync/1.0.0-beta.1: dev: true + engines: + node: '>=6.9.0' resolution: - integrity: sha1-LXhqEhruUIh2eWk56OO/+DbCCRc= + integrity: sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== /get-caller-file/2.0.5: dev: true engines: @@ -3761,12 +3589,12 @@ packages: dev: true resolution: integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== - /get-port/5.1.0: + /get-port/5.1.1: dev: true engines: node: '>=8' resolution: - integrity: sha512-bjioH1E9bTQUvgaB6VycVy1QVbTZI41yTnF9qkZz6ixgy/uhCH6D63bKeZ6Code/07JYA61MeI94jSdHss8PNA== + integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== /get-stdin/7.0.0: dev: true engines: @@ -3795,12 +3623,6 @@ packages: node: '>=8' resolution: integrity: sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== - /get-value/2.0.6: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= /glob-parent/5.1.0: dependencies: is-glob: 4.0.1 @@ -3809,17 +3631,6 @@ packages: node: '>= 6' resolution: integrity: sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw== - /glob/7.1.3: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.0.4 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true - resolution: - integrity: sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== /glob/7.1.6: dependencies: fs.realpath: 1.0.0 @@ -3874,7 +3685,7 @@ packages: node: '>=8' resolution: integrity: sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw== - /globby/10.0.1: + /globby/10.0.2: dependencies: '@types/glob': 7.1.1 array-union: 2.1.0 @@ -3888,7 +3699,7 @@ packages: engines: node: '>=8' resolution: - integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A== + integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg== /globby/6.1.0: dependencies: array-union: 1.0.2 @@ -3922,25 +3733,6 @@ packages: /graceful-fs/4.2.3: resolution: integrity: sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== - /growl/1.10.5: - dev: true - engines: - node: '>=4.x' - resolution: - integrity: sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== - /handlebars/4.5.3: - dependencies: - neo-async: 2.6.1 - optimist: 0.6.1 - source-map: 0.6.1 - dev: true - engines: - node: '>=0.4.7' - hasBin: true - optionalDependencies: - uglify-js: 3.7.3 - resolution: - integrity: sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA== /has-ansi/2.0.0: dependencies: ansi-regex: 2.1.1 @@ -3980,41 +3772,6 @@ packages: node: '>= 0.4' resolution: integrity: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== - /has-value/0.3.1: - dependencies: - get-value: 2.0.6 - has-values: 0.1.4 - isobject: 2.1.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= - /has-value/1.0.0: - dependencies: - get-value: 2.0.6 - has-values: 1.0.0 - isobject: 3.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= - /has-values/0.1.4: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E= - /has-values/1.0.0: - dependencies: - is-number: 3.0.0 - kind-of: 4.0.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= /has-yarn/2.1.0: dev: true engines: @@ -4046,11 +3803,6 @@ packages: node: '>=8' resolution: integrity: sha512-OFPDWmzPN1l7atOV1TgBVmNtBxaIysToK6Ve9DK+vT6pYuklw/nPNT+HJbZi0KDcI6vWB+9tgvZ5YD7fA3CXcA== - /he/1.2.0: - dev: true - hasBin: true - resolution: - integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== /hex-color-regex/1.1.0: dev: true resolution: @@ -4078,29 +3830,14 @@ packages: dev: true resolution: integrity: sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== - /http-cache-semantics/4.0.3: + /html-escaper/2.0.0: dev: true resolution: - integrity: sha512-TcIMG3qeVLgDr1TEd2XvHaTnMPwYQUQMIBLy+5pLSDKYFc7UIqj39w8EGzZkaxoLv/l2K8HaI0t5AVA+YYgUew== - /husky/2.7.0: - dependencies: - cosmiconfig: 5.2.1 - execa: 1.0.0 - find-up: 3.0.0 - get-stdin: 7.0.0 - is-ci: 2.0.0 - pkg-dir: 4.2.0 - please-upgrade-node: 3.2.0 - read-pkg: 5.2.0 - run-node: 1.0.0 - slash: 3.0.0 + integrity: sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig== + /http-cache-semantics/4.0.3: dev: true - engines: - node: '>=8' - hasBin: true - requiresBuild: true resolution: - integrity: sha512-LIi8zzT6PyFpcYKdvWRCn/8X+6SuG2TgYYMrM6ckEYhlp44UcEduVymZGIZNLiwOUjrEud+78w/AsAiqJA/kRg== + integrity: sha512-TcIMG3qeVLgDr1TEd2XvHaTnMPwYQUQMIBLy+5pLSDKYFc7UIqj39w8EGzZkaxoLv/l2K8HaI0t5AVA+YYgUew== /husky/3.1.0: dependencies: chalk: 2.4.2 @@ -4124,7 +3861,6 @@ packages: /iconv-lite/0.4.24: dependencies: safer-buffer: 2.1.2 - dev: true engines: node: '>=0.10.0' resolution: @@ -4231,7 +3967,7 @@ packages: /ini/1.3.5: resolution: integrity: sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== - /inquirer/7.0.1: + /inquirer/7.0.3: dependencies: ansi-escapes: 4.3.0 chalk: 2.4.2 @@ -4250,7 +3986,7 @@ packages: engines: node: '>=6.0.0' resolution: - integrity: sha512-V1FFQ3TIO15det8PijPLFR9M9baSlnRs9nL7zWu1MNVA2T9YVl9ZbrHJhYs7e9X8jeMZ3lr2JH/rdHFgNCBdYw== + integrity: sha512-+OiOVeVydu4hnCGLCSX+wedovR/Yzskv9BFqUNNKq9uU2qg7LCcCo3R86S2E7WLo0y/x2pnEZfZe1CoYnORUAw== /interpret/1.2.0: dev: true engines: @@ -4275,22 +4011,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= - /is-accessor-descriptor/0.1.6: - dependencies: - kind-of: 3.2.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - /is-accessor-descriptor/1.0.0: - dependencies: - kind-of: 6.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== /is-arguments/1.0.4: dev: true engines: @@ -4312,16 +4032,6 @@ packages: node: '>=8' resolution: integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - /is-buffer/1.1.6: - dev: true - resolution: - integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - /is-buffer/2.0.4: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== /is-callable/1.1.5: dev: true engines: @@ -4346,48 +4056,12 @@ packages: dev: true resolution: integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= - /is-data-descriptor/0.1.4: - dependencies: - kind-of: 3.2.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - /is-data-descriptor/1.0.0: - dependencies: - kind-of: 6.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== /is-date-object/1.0.2: dev: true engines: node: '>= 0.4' resolution: integrity: sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== - /is-descriptor/0.1.6: - dependencies: - is-accessor-descriptor: 0.1.6 - is-data-descriptor: 0.1.4 - kind-of: 5.1.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - /is-descriptor/1.0.2: - dependencies: - is-accessor-descriptor: 1.0.0 - is-data-descriptor: 1.0.0 - kind-of: 6.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== /is-directory/0.3.1: dev: true engines: @@ -4398,20 +4072,6 @@ packages: dev: true resolution: integrity: sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg== - /is-extendable/0.1.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= - /is-extendable/1.0.1: - dependencies: - is-plain-object: 2.0.4 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== /is-extglob/2.1.1: engines: node: '>=0.10.0' @@ -4471,14 +4131,6 @@ packages: node: '>=8' resolution: integrity: sha512-wsigDr1Kkschp2opC4G3yA6r9EgVA6NjRpWzIi9axXqeIaAATPRJc4uLujXe3Nd9uO8KoDyA4MD6aZSeXTADhA== - /is-number/3.0.0: - dependencies: - kind-of: 3.2.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= /is-number/7.0.0: dev: true engines: @@ -4511,26 +4163,12 @@ packages: node: '>=8' resolution: integrity: sha512-fhBZv3eFKUbyHXZ1oHujdo2tZ+CNbdpdzzlENgCGZUC8keoGxUew2jYFLYcUB4qo7LDD03o4KK11m/QYD7kEjg== - /is-path-cwd/1.0.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= /is-path-cwd/2.2.0: dev: true engines: node: '>=6' resolution: integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== - /is-path-in-cwd/1.0.1: - dependencies: - is-path-inside: 1.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ== /is-path-in-cwd/2.1.0: dependencies: is-path-inside: 2.1.0 @@ -4566,14 +4204,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4= - /is-plain-object/2.0.4: - dependencies: - isobject: 3.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== /is-plain-object/3.0.0: dependencies: isobject: 4.0.0 @@ -4670,6 +4300,7 @@ packages: resolution: integrity: sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao= /is-windows/1.0.2: + dev: false engines: node: '>=0.10.0' resolution: @@ -4688,20 +4319,6 @@ packages: /isexe/2.0.0: resolution: integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - /isobject/2.1.0: - dependencies: - isarray: 1.0.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - /isobject/3.0.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8= /isobject/4.0.0: dev: true engines: @@ -4724,11 +4341,11 @@ packages: integrity: sha512-vrRztU9VRRFDyC+aklfLoeXyNdTfga2EI3udDGn4cZ6fpSXpHLV9X6CHvfoMCPtggg8zvDDmC4b9xfu0z6/llA== /istanbul-lib-instrument/3.3.0: dependencies: - '@babel/generator': 7.7.7 - '@babel/parser': 7.7.7 - '@babel/template': 7.7.4 - '@babel/traverse': 7.7.4 - '@babel/types': 7.7.4 + '@babel/generator': 7.8.3 + '@babel/parser': 7.8.3 + '@babel/template': 7.8.3 + '@babel/traverse': 7.8.3 + '@babel/types': 7.8.3 istanbul-lib-coverage: 2.0.5 semver: 6.3.0 dev: true @@ -4758,14 +4375,14 @@ packages: node: '>=6' resolution: integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== - /istanbul-reports/2.2.6: + /istanbul-reports/2.2.7: dependencies: - handlebars: 4.5.3 + html-escaper: 2.0.0 dev: true engines: node: '>=6' resolution: - integrity: sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== + integrity: sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg== /jest-diff/24.9.0: dependencies: chalk: 2.4.2 @@ -4783,12 +4400,6 @@ packages: node: '>= 6' resolution: integrity: sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== - /js-levenshtein/1.1.6: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== /js-string-escape/1.0.1: dev: true engines: @@ -4832,11 +4443,6 @@ packages: dev: true resolution: integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= - /json5/0.5.1: - dev: true - hasBin: true - resolution: - integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= /json5/1.0.1: dependencies: minimist: 1.2.0 @@ -4869,42 +4475,28 @@ packages: dev: true resolution: integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== - /kind-of/3.2.2: - dependencies: - is-buffer: 1.1.6 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= - /kind-of/4.0.0: + /latest-version/5.1.0: dependencies: - is-buffer: 1.1.6 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc= - /kind-of/5.1.0: + package-json: 6.5.0 dev: true engines: - node: '>=0.10.0' + node: '>=8' resolution: - integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - /kind-of/6.0.2: + integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== + /leven/3.1.0: dev: true engines: - node: '>=0.10.0' + node: '>=6' resolution: - integrity: sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== - /latest-version/5.1.0: + integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + /levenary/1.1.0: dependencies: - package-json: 6.5.0 + leven: 3.1.0 dev: true engines: - node: '>=8' + node: '>= 8' resolution: - integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== + integrity: sha512-VHcwhO0UTpUW7rLPN2/OiWJdgA1e9BqEDALhrgCe/F+uUJnep6CoUsTzMeP8Rh0NGr9uKquXxqe7lwLZo509nQ== /levn/0.3.0: dependencies: prelude-ls: 1.1.2 @@ -4917,36 +4509,6 @@ packages: /lines-and-columns/1.1.6: resolution: integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= - /lint-staged/8.2.1: - dependencies: - chalk: 2.4.2 - commander: 2.20.3 - cosmiconfig: 5.2.1 - debug: 3.2.6 - dedent: 0.7.0 - del: 3.0.0 - execa: 1.0.0 - g-status: 2.0.2 - is-glob: 4.0.1 - is-windows: 1.0.2 - listr: 0.14.3_listr@0.14.3 - listr-update-renderer: 0.5.0_listr@0.14.3 - lodash: 4.17.15 - log-symbols: 2.2.0 - micromatch: 3.1.10 - npm-which: 3.0.1 - p-map: 1.2.0 - path-is-inside: 1.0.2 - pify: 3.0.0 - please-upgrade-node: 3.2.0 - staged-git-files: 1.1.2 - string-argv: 0.0.2 - stringify-object: 3.3.0 - yup: 0.27.0 - dev: true - hasBin: true - resolution: - integrity: sha512-n0tDGR/rTCgQNwXnUf/eWIpPNddGWxC32ANTNYsj2k02iZb7Cz5ox2tytwBu+2r0zDXMEMKw7Y9OD/qsav561A== /lint-staged/9.5.0: dependencies: chalk: 2.4.2 @@ -5053,15 +4615,16 @@ packages: node: '>=6' resolution: integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw== - /loader-utils/0.2.17: + /loader-utils/1.2.3: dependencies: - big.js: 3.2.0 + big.js: 5.2.2 emojis-list: 2.1.0 - json5: 0.5.1 - object-assign: 4.1.1 + json5: 1.0.1 dev: true + engines: + node: '>=4.0.0' resolution: - integrity: sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g= + integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== /locate-character/2.0.5: dev: true resolution: @@ -5103,6 +4666,10 @@ packages: dev: true resolution: integrity: sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI= + /lodash.get/4.4.2: + dev: true + resolution: + integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= /lodash.islength/4.0.1: dev: true resolution: @@ -5115,10 +4682,6 @@ packages: dev: true resolution: integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - /lodash.unescape/4.0.1: - dev: true - resolution: - integrity: sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= /lodash.uniq/4.5.0: dev: true resolution: @@ -5160,10 +4723,6 @@ packages: node: '>=4' resolution: integrity: sha1-iDKP19HOeTiykoN0bwsbwSayRwg= - /lolex/4.2.0: - dev: true - resolution: - integrity: sha512-gKO5uExCXvSm6zbF562EvM+rd1kQDnB9AZBbiQVzf1ZmdDpxUSvpnAaVOP83N/31mRK8Ml8/VE8DMvsAZQ+7wg== /lolex/5.1.2: dependencies: '@sinonjs/commons': 1.7.0 @@ -5213,17 +4772,11 @@ packages: dev: true resolution: integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== - /magic-string/0.14.0: + /magic-string/0.25.6: dependencies: - vlq: 0.2.3 - dev: true - resolution: - integrity: sha1-VyJK7xcByu7Sc7F6OalW5ysXJGI= - /magic-string/0.25.5: - dependencies: - sourcemap-codec: 1.4.6 + sourcemap-codec: 1.4.8 resolution: - integrity: sha512-vIO/BOm9odBHBAGwv0gZPLJeO9IpwliiIc0uPeAW93rrFMJ/R3M665IAEfOU/IW3kD4S9AtEn76lfTn1Yif+9A== + integrity: sha512-3a5LOMSGoCTH5rbqobC2HuDNRtE2glHZ8J7pK+QZYppyWA36yuNpsX994rIY2nCuyP7CZYy7lQq/X2jygiZ89g== /make-dir/1.3.0: dependencies: pify: 3.0.0 @@ -5251,12 +4804,6 @@ packages: dev: true resolution: integrity: sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g== - /map-cache/0.2.2: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= /map-obj/1.0.1: engines: node: '>=0.10.0' @@ -5267,14 +4814,6 @@ packages: node: '>=4' resolution: integrity: sha1-plzSkIepJZi4eRJXpSPgISIqwfk= - /map-visit/1.0.0: - dependencies: - object-visit: 1.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= /matched/1.0.2: dependencies: arr-union: 3.1.0 @@ -5288,14 +4827,6 @@ packages: node: '>= 0.12.0' resolution: integrity: sha512-7ivM1jFZVTOOS77QsR+TtYHH0ecdLclMkqbf5qiJdX2RorqfhsL65QHySPZgDE0ZjHoh+mQUNHTanNXIlzXd0Q== - /matcher/1.1.1: - dependencies: - escape-string-regexp: 1.0.5 - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-+BmqxWIubKTRKNWx/ahnCkk3mG8m7OturVlqq6HiojGJTd5hVYbgZm6WzcYPCoB+KBT4Vd6R7WSRG2OADNaCjg== /matcher/2.1.0: dependencies: escape-string-regexp: 2.0.0 @@ -5359,30 +4890,10 @@ packages: node: '>= 6' resolution: integrity: sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== - /micromatch/3.1.10: - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - braces: 2.3.2 - define-property: 2.0.2 - extend-shallow: 3.0.2 - extglob: 2.0.4 - fragment-cache: 0.2.1 - kind-of: 6.0.2 - nanomatch: 1.2.13 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== /micromatch/4.0.2: dependencies: braces: 3.0.2 - picomatch: 2.1.1 + picomatch: 2.2.1 dev: true engines: node: '>=8' @@ -5426,10 +4937,6 @@ packages: node: '>= 4' resolution: integrity: sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== - /minimist/0.0.10: - dev: true - resolution: - integrity: sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= /minimist/0.0.8: dev: true resolution: @@ -5437,15 +4944,6 @@ packages: /minimist/1.2.0: resolution: integrity: sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= - /mixin-deep/1.3.2: - dependencies: - for-in: 1.0.2 - is-extendable: 1.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== /mkdirp/0.5.1: dependencies: minimist: 0.0.8 @@ -5453,45 +4951,10 @@ packages: hasBin: true resolution: integrity: sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= - /mocha/6.2.2: - dependencies: - ansi-colors: 3.2.3 - browser-stdout: 1.3.1 - debug: 3.2.6 - diff: 3.5.0 - escape-string-regexp: 1.0.5 - find-up: 3.0.0 - glob: 7.1.3 - growl: 1.10.5 - he: 1.2.0 - js-yaml: 3.13.1 - log-symbols: 2.2.0 - minimatch: 3.0.4 - mkdirp: 0.5.1 - ms: 2.1.1 - node-environment-flags: 1.0.5 - object.assign: 4.1.0 - strip-json-comments: 2.0.1 - supports-color: 6.0.0 - which: 1.3.1 - wide-align: 1.1.3 - yargs: 13.3.0 - yargs-parser: 13.1.1 - yargs-unparser: 1.6.0 - dev: true - engines: - node: '>= 6.0.0' - hasBin: true - resolution: - integrity: sha512-FgDS9Re79yU1xz5d+C4rv1G7QagNGHZ+iXF81hO8zY35YZZcLEsJVfFolfsqKFWunATEvNzMK0r/CwWd/szO9A== /ms/2.0.0: dev: true resolution: integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - /ms/2.1.1: - dev: true - resolution: - integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== /ms/2.1.2: dev: true resolution: @@ -5508,32 +4971,10 @@ packages: dev: false resolution: integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== - /nanomatch/1.2.13: - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - define-property: 2.0.2 - extend-shallow: 3.0.2 - fragment-cache: 0.2.1 - is-windows: 1.0.2 - kind-of: 6.0.2 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== /natural-compare/1.4.0: dev: true resolution: integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= - /neo-async/2.6.1: - dev: true - resolution: - integrity: sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== /nested-error-stacks/2.1.0: dev: true resolution: @@ -5546,23 +4987,17 @@ packages: dev: true resolution: integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - /nise/1.5.3: + /nise/3.0.1: dependencies: - '@sinonjs/formatio': 3.2.2 + '@sinonjs/commons': 1.7.0 + '@sinonjs/formatio': 4.0.1 '@sinonjs/text-encoding': 0.7.1 just-extend: 4.0.2 lolex: 5.1.2 path-to-regexp: 1.8.0 dev: true resolution: - integrity: sha512-Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ== - /node-environment-flags/1.0.5: - dependencies: - object.getownpropertydescriptors: 2.1.0 - semver: 5.7.1 - dev: true - resolution: - integrity: sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ== + integrity: sha512-fYcH9y0drBGSoi88kvhpbZEsenX58Yr+wOJ4/Mi1K4cy+iGP/a73gNoyNhu5E9QxPdgTlVChfIaAlnyOy/gHUA== /node-modules-regexp/1.0.0: engines: node: '>=0.10.0' @@ -5572,16 +5007,16 @@ packages: dev: false resolution: integrity: sha1-R6Pn2Az/qmRYNkvSLthcqzMHvnk= - /node-releases/1.1.44: + /node-releases/1.1.46: dependencies: semver: 6.3.0 dev: true resolution: - integrity: sha512-NwbdvJyR7nrcGrXvKAvzc5raj/NkoJudkarh2yIpJ4t0NH4aqjUDz/486P+ynIW5eokKOfzGNRdYoLfBlomruw== + integrity: sha512-YOjdx+Uoh9FbRO7yVYbnbt1puRWPQMemR3SutLeyv2XfxKs1ihpe0OLAUwBPEP2ImNH/PZC7SEiC6j32dwRZ7g== /normalize-package-data/2.5.0: dependencies: hosted-git-info: 2.8.5 - resolve: 1.14.1 + resolve: 1.14.2 semver: 5.7.1 validate-npm-package-license: 3.0.4 resolution: @@ -5604,15 +5039,6 @@ packages: node: '>=8' resolution: integrity: sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== - /npm-path/2.0.4: - dependencies: - which: 1.3.1 - dev: true - engines: - node: '>=0.8' - hasBin: true - resolution: - integrity: sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw== /npm-run-path/2.0.2: dependencies: path-key: 2.0.1 @@ -5629,17 +5055,6 @@ packages: node: '>=8' resolution: integrity: sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg== - /npm-which/3.0.1: - dependencies: - commander: 2.20.3 - npm-path: 2.0.4 - which: 1.3.1 - dev: true - engines: - node: '>=4.2.0' - hasBin: true - resolution: - integrity: sha1-kiXybsOihcIJyuZ8OxGmtKtxQKo= /nth-check/1.0.2: dependencies: boolbase: 1.0.0 @@ -5667,7 +5082,7 @@ packages: istanbul-lib-instrument: 3.3.0 istanbul-lib-report: 2.0.8 istanbul-lib-source-maps: 3.0.6 - istanbul-reports: 2.2.6 + istanbul-reports: 2.2.7 js-yaml: 3.13.1 make-dir: 2.1.0 merge-source-map: 1.1.0 @@ -5676,7 +5091,7 @@ packages: signal-exit: 3.0.2 spawn-wrap: 1.4.3 test-exclude: 5.2.3 - uuid: 3.3.3 + uuid: 3.4.0 yargs: 13.3.0 yargs-parser: 13.1.1 dev: true @@ -5690,16 +5105,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - /object-copy/0.1.0: - dependencies: - copy-descriptor: 0.1.1 - define-property: 0.2.5 - kind-of: 3.2.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw= /object-inspect/1.7.0: dev: true resolution: @@ -5716,14 +5121,6 @@ packages: node: '>= 0.4' resolution: integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - /object-visit/1.0.1: - dependencies: - isobject: 3.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= /object.assign/4.1.0: dependencies: define-properties: 1.1.3 @@ -5738,24 +5135,16 @@ packages: /object.getownpropertydescriptors/2.1.0: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.0 + es-abstract: 1.17.2 dev: true engines: node: '>= 0.8' resolution: integrity: sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== - /object.pick/1.3.0: - dependencies: - isobject: 3.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= /object.values/1.1.1: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.0 + es-abstract: 1.17.2 function-bind: 1.1.1 has: 1.0.3 dev: true @@ -5798,13 +5187,6 @@ packages: hasBin: true resolution: integrity: sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== - /optimist/0.6.1: - dependencies: - minimist: 0.0.10 - wordwrap: 0.0.3 - dev: true - resolution: - integrity: sha1-2j6nRob6IaGaERwybpDrFaAZZoY= /optionator/0.8.3: dependencies: deep-is: 0.1.3 @@ -5905,12 +5287,6 @@ packages: node: '>=8' resolution: integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - /p-map/1.2.0: - dev: true - engines: - node: '>=4' - resolution: - integrity: sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== /p-map/2.1.0: dev: true engines: @@ -5967,7 +5343,7 @@ packages: /package-json/6.5.0: dependencies: got: 9.6.0 - registry-auth-token: 4.0.0 + registry-auth-token: 4.1.0 registry-url: 5.1.0 semver: 6.3.0 dev: true @@ -6001,7 +5377,7 @@ packages: integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= /parse-json/5.0.0: dependencies: - '@babel/code-frame': 7.5.5 + '@babel/code-frame': 7.8.3 error-ex: 1.3.2 json-parse-better-errors: 1.0.2 lines-and-columns: 1.1.6 @@ -6022,12 +5398,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= - /pascalcase/0.1.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= /path-exists/3.0.0: engines: node: '>=4' @@ -6090,12 +5460,12 @@ packages: node: '>=8' resolution: integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - /picomatch/2.1.1: + /picomatch/2.2.1: dev: true engines: node: '>=8.6' resolution: - integrity: sha512-OYMyqkKzK7blWO/+XZYP6w8hH0LDvkBvdvKukti+7kqYFCiEAk+gI3DWnryapc0Dau05ugGTy0foQ6mqn4AHYA== + integrity: sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA== /pify/2.3.0: dev: true engines: @@ -6180,19 +5550,13 @@ packages: node: '>=6' resolution: integrity: sha512-t1Ax8KUvV3FFII8ltczPn2tJdjqbd1sIzu6t4JL7nQ3EyeL/lTrj5PWKb06ic5/6XYDr65rQ4uzQEGN70/6X5w== - /pnpm/4.6.0: + /pnpm/4.7.2: dev: true engines: node: '>=10' hasBin: true resolution: - integrity: sha512-KTRmtPFUrRfSp3pC7nvg6+MD7KmLZFsnUVNmRgO/zOO/AUsTDIZsbwOqdxZULld7RUfZZmHbSHCGvudIX8Ix8w== - /posix-character-classes/0.1.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= + integrity: sha512-P2jaeeBOoHRa3SLMmNHQNRN2xtVt7+PpPWk5eujVjV5ti9Bbg2eXzhXV8bZ75FY7YVv2vjfBdOQ7CxwPlIqUFQ== /postcss-calc/7.0.1: dependencies: css-unit-converter: 1.1.1 @@ -6204,7 +5568,7 @@ packages: integrity: sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ== /postcss-colormin/4.0.3: dependencies: - browserslist: 4.8.2 + browserslist: 4.8.3 color: 3.1.2 has: 1.0.3 postcss: 7.0.26 @@ -6277,7 +5641,7 @@ packages: integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== /postcss-merge-rules/4.0.3: dependencies: - browserslist: 4.8.2 + browserslist: 4.8.3 caniuse-api: 3.0.0 cssnano-util-same-parent: 4.0.1 postcss: 7.0.26 @@ -6311,7 +5675,7 @@ packages: /postcss-minify-params/4.0.2: dependencies: alphanum-sort: 1.0.2 - browserslist: 4.8.2 + browserslist: 4.8.3 cssnano-util-get-arguments: 4.0.0 postcss: 7.0.26 postcss-value-parser: 3.3.1 @@ -6359,16 +5723,16 @@ packages: dev: true resolution: integrity: sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= - /postcss-modules/1.4.1: + /postcss-modules/1.5.0: dependencies: css-modules-loader-core: 1.1.0 - generic-names: 1.0.3 + generic-names: 2.0.1 lodash.camelcase: 4.3.0 postcss: 7.0.26 string-hash: 1.1.3 dev: true resolution: - integrity: sha512-btTrbK+Xc3NBuYF8TPBjCMRSp5h6NoQ1iVZ6WiDQENIze6KIYCSf0+UFQuV3yJ7gRHA+4AAtF8i2jRvUpbBMMg== + integrity: sha512-KiAihzcV0TxTTNA5OXreyIXctuHOfR50WIhqBpc8pe0Q5dcs/Uap9EVlifOI9am7zGGdGOJQ6B1MPYKo2UxgOg== /postcss-normalize-charset/4.0.1: dependencies: postcss: 7.0.26 @@ -6431,7 +5795,7 @@ packages: integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== /postcss-normalize-unicode/4.0.1: dependencies: - browserslist: 4.8.2 + browserslist: 4.8.3 postcss: 7.0.26 postcss-value-parser: 3.3.1 dev: true @@ -6471,7 +5835,7 @@ packages: integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== /postcss-reduce-initial/4.0.3: dependencies: - browserslist: 4.8.2 + browserslist: 4.8.3 caniuse-api: 3.0.0 has: 1.0.3 postcss: 7.0.26 @@ -6634,10 +5998,6 @@ packages: node: '>=0.12' resolution: integrity: sha1-LMfr6Vn8OmYZwEq029yeRS2GS70= - /property-expr/1.5.1: - dev: true - resolution: - integrity: sha512-CGuc0VUTGthpJXL36ydB6jnbyOf/rAHFvmVrJlH+Rg0DqqLFQGAP6hIaxD/G0OAmBJPhXDHuEJigrp0e0wFV6g== /pseudomap/1.0.2: dev: true resolution: @@ -6737,7 +6097,7 @@ packages: node: '>=8' resolution: integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - /readable-stream/2.3.6: + /readable-stream/2.3.7: dependencies: core-util-is: 1.0.2 inherits: 2.0.4 @@ -6748,8 +6108,8 @@ packages: util-deprecate: 1.0.2 dev: false resolution: - integrity: sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== - /readable-stream/3.4.0: + integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + /readable-stream/3.5.0: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 @@ -6758,10 +6118,10 @@ packages: engines: node: '>= 6' resolution: - integrity: sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ== + integrity: sha512-gSz026xs2LfxBPudDuI41V1lka8cxg64E66SGe78zJlsUofOg/yqwezdIcdfwik6B4h8LFmWPA9ef9X3FiNFLA== /readdirp/3.3.0: dependencies: - picomatch: 2.1.1 + picomatch: 2.2.1 dev: true engines: node: '>=8.10.0' @@ -6769,7 +6129,7 @@ packages: integrity: sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ== /rechoir/0.6.2: dependencies: - resolve: 1.14.1 + resolve: 1.14.2 dev: true engines: node: '>= 0.10' @@ -6803,19 +6163,10 @@ packages: dev: true resolution: integrity: sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ== - /regex-not/1.0.2: - dependencies: - extend-shallow: 3.0.2 - safe-regex: 1.1.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== /regexp.prototype.flags/1.3.0: dependencies: define-properties: 1.1.3 - es-abstract: 1.17.0 + es-abstract: 1.17.2 dev: true engines: node: '>= 0.4' @@ -6853,7 +6204,7 @@ packages: node: '>=4' resolution: integrity: sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg== - /registry-auth-token/4.0.0: + /registry-auth-token/4.1.0: dependencies: rc: 1.2.8 safe-buffer: 5.2.0 @@ -6861,7 +6212,7 @@ packages: engines: node: '>=6.0.0' resolution: - integrity: sha512-lpQkHxd9UL6tb3k/aHAVfnVtn+Bcs9ob5InuFLLEDqSqeq+AljB8GZW9xY0x7F+xYwEcjKe07nyoxzEYz6yvkw== + integrity: sha512-7uxS951DeOBOwsv8deX+l7HcjY2VZxaOgHtM6RKzg3HhpE+bJ0O7VbuMJLosC1T5WSFpHm0DuFIbqUl43jHpsA== /registry-url/5.1.0: dependencies: rc: 1.2.8 @@ -6898,18 +6249,6 @@ packages: node: '>=4' resolution: integrity: sha1-CXALflB0Mpc5Mw5TXFqQ+2eFFzA= - /repeat-element/1.1.3: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== - /repeat-string/1.6.1: - dev: true - engines: - node: '>=0.10' - resolution: - integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc= /require-directory/2.1.1: dev: true engines: @@ -6969,19 +6308,9 @@ packages: node: '>=8' resolution: integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - /resolve-url/0.2.1: - dev: true - resolution: - integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= - /resolve/1.14.1: - dependencies: - path-parse: 1.0.6 - resolution: - integrity: sha512-fn5Wobh4cxbLzuHaE+nphztHy43/b++4M6SsGFC2gB8uYwf0C8LcarfCz1un7UTW8OFQg9iNjZ4xpcFVGebDPg== /resolve/1.14.2: dependencies: path-parse: 1.0.6 - dev: true resolution: integrity: sha512-EjlOBLBO1kxsUxsKjLt7TAECyKW6fOh1VRkykQkKGzcBbjjPIxBqGh0jf7GJ3k/f5mxMqW3htMD3WdTUVtW8HQ== /responselike/1.0.2: @@ -7008,12 +6337,6 @@ packages: node: '>=8' resolution: integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - /ret/0.1.15: - dev: true - engines: - node: '>=0.12' - resolution: - integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== /reusify/1.0.4: dev: true engines: @@ -7050,11 +6373,11 @@ packages: hasBin: true resolution: integrity: sha512-NDGVxTsjqfunkds7CqsOiEnxln4Bo7Nddl3XhS4pXg5OzwkLqJ971ZVAAnB+DDLnF76N+VnDEiBHaVV8I06SUg== - /rollup-plugin-babel/4.3.3_@babel+core@7.7.7+rollup@1.27.14: + /rollup-plugin-babel/4.3.3_@babel+core@7.8.3+rollup@1.29.0: dependencies: - '@babel/core': 7.7.7 - '@babel/helper-module-imports': 7.7.4 - rollup: 1.27.14 + '@babel/core': 7.8.3 + '@babel/helper-module-imports': 7.8.3 + rollup: 1.29.0 rollup-pluginutils: 2.8.2 dev: true peerDependencies: @@ -7062,28 +6385,12 @@ packages: rollup: '>=0.60.0 <2' resolution: integrity: sha512-tKzWOCmIJD/6aKNz0H1GMM+lW1q9KyFubbWzGiOG540zxPPifnEAHTZwjo0g991Y+DyOZcLqBgqOdqazYE5fkw== - /rollup-plugin-buble/0.10.0: - dependencies: - buble: 0.10.7 - rollup-pluginutils: 1.5.2 - deprecated: This module has been deprecated and is no longer maintained. Please use @rollup/plugin-buble. - dev: true - resolution: - integrity: sha1-ytP2gq66Q/vpQD5EexVZ9lscpHk= - /rollup-plugin-buble/0.19.8: - dependencies: - buble: 0.19.8 - rollup-pluginutils: 2.8.2 - deprecated: This module has been deprecated and is no longer maintained. Please use @rollup/plugin-buble. - dev: true - resolution: - integrity: sha512-8J4zPk2DQdk3rxeZvxgzhHh/rm5nJkjwgcsUYisCQg1QbT5yagW+hehYEW7ZNns/NVbDCTv4JQ7h4fC8qKGOKw== /rollup-plugin-commonjs/10.1.0: dependencies: estree-walker: 0.6.1 is-reference: 1.1.4 - magic-string: 0.25.5 - resolve: 1.14.1 + magic-string: 0.25.6 + resolve: 1.14.2 rollup-pluginutils: 2.8.2 deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-commonjs. dev: true @@ -7091,13 +6398,13 @@ packages: rollup: '>=1.12.0' resolution: integrity: sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q== - /rollup-plugin-commonjs/10.1.0_rollup@1.27.14: + /rollup-plugin-commonjs/10.1.0_rollup@1.29.0: dependencies: estree-walker: 0.6.1 is-reference: 1.1.4 - magic-string: 0.25.5 - resolve: 1.14.1 - rollup: 1.27.14 + magic-string: 0.25.6 + resolve: 1.14.2 + rollup: 1.29.0 rollup-pluginutils: 2.8.2 deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-commonjs. dev: true @@ -7105,39 +6412,12 @@ packages: rollup: '>=1.12.0' resolution: integrity: sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q== - /rollup-plugin-commonjs/9.3.4_rollup@1.27.14: - dependencies: - estree-walker: 0.6.1 - magic-string: 0.25.5 - resolve: 1.14.1 - rollup: 1.27.14 - rollup-pluginutils: 2.8.2 - deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-commonjs. - dev: true - peerDependencies: - rollup: '>=0.56.0' - resolution: - integrity: sha512-DTZOvRoiVIHHLFBCL4pFxOaJt8pagxsVldEXBOn6wl3/V21wVaj17HFfyzTsQUuou3sZL3lEJZVWKPFblJfI6w== /rollup-plugin-node-resolve/5.2.0: dependencies: '@types/resolve': 0.0.8 builtin-modules: 3.1.0 is-module: 1.0.0 - resolve: 1.14.1 - rollup-pluginutils: 2.8.2 - deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-node-resolve. - dev: true - peerDependencies: - rollup: '>=1.11.0' - resolution: - integrity: sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw== - /rollup-plugin-node-resolve/5.2.0_rollup@1.27.14: - dependencies: - '@types/resolve': 0.0.8 - builtin-modules: 3.1.0 - is-module: 1.0.0 - resolve: 1.14.1 - rollup: 1.27.14 + resolve: 1.14.2 rollup-pluginutils: 2.8.2 deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-node-resolve. dev: true @@ -7155,10 +6435,10 @@ packages: pify: 3.0.0 postcss: 7.0.26 postcss-load-config: 2.1.0 - postcss-modules: 1.4.1 + postcss-modules: 1.5.0 promise.series: 0.2.0 reserved-words: 0.1.2 - resolve: 1.14.1 + resolve: 1.14.2 rollup-pluginutils: 2.8.2 style-inject: 0.3.0 dev: true @@ -7166,11 +6446,11 @@ packages: node: '>=6' resolution: integrity: sha512-d12oKl6za/GGXmlytzVPzzTdPCKgti/Kq2kNhtfm5vv9hkNbyrTvizMBm6zZ5rRWX/sIWl3znjIJ8xy6Hofoeg== - /rollup-plugin-typescript/1.0.1_typescript@3.7.4: + /rollup-plugin-typescript/1.0.1_typescript@3.7.5: dependencies: - resolve: 1.14.1 + resolve: 1.14.2 rollup-pluginutils: 2.8.2 - typescript: 3.7.4 + typescript: 3.7.5 deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-typescript. dev: true peerDependencies: @@ -7178,26 +6458,20 @@ packages: typescript: '>=2.1.0' resolution: integrity: sha512-rwJDNn9jv/NsKZuyBb/h0jsclP4CJ58qbvZt2Q9zDIGILF2LtdtvCqMOL+Gq9IVq5MTrTlHZNrn8h7VjQgd8tw== - /rollup-pluginutils/1.5.2: - dependencies: - estree-walker: 0.2.1 - minimatch: 3.0.4 - dev: true - resolution: - integrity: sha1-HhVud4+UtyVb+hs9AXi+j1xVJAg= /rollup-pluginutils/2.8.2: dependencies: estree-walker: 0.6.1 + dev: true resolution: integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== - /rollup/1.27.14: + /rollup/1.29.0: dependencies: - '@types/estree': 0.0.41 - '@types/node': 13.1.2 + '@types/estree': 0.0.42 + '@types/node': 13.1.8 acorn: 7.1.0 hasBin: true resolution: - integrity: sha512-DuDjEyn8Y79ALYXMt+nH/EI58L5pEw5HU9K38xXdRnxQhvzUTI/nxAawhkAHUQeudANQ//8iyrhVRHJBuR6DSQ== + integrity: sha512-V63Iz0dSdI5qPPN5HmCN6OBRzBFhMqNWcvwgq863JtSCTU6Vdvqq6S2fYle/dSCyoPrBkIP3EIr1RVs3HTRqqg== /run-async/2.3.0: dependencies: is-promise: 2.1.0 @@ -7217,6 +6491,10 @@ packages: dev: true resolution: integrity: sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q== + /rw/1.3.3: + dev: false + resolution: + integrity: sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= /rxjs/6.5.4: dependencies: tslib: 1.10.0 @@ -7231,14 +6509,7 @@ packages: /safe-buffer/5.2.0: resolution: integrity: sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== - /safe-regex/1.1.0: - dependencies: - ret: 0.1.15 - dev: true - resolution: - integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4= /safer-buffer/2.1.2: - dev: true resolution: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== /sax/1.2.4: @@ -7287,17 +6558,6 @@ packages: dev: true resolution: integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc= - /set-value/2.0.1: - dependencies: - extend-shallow: 2.0.1 - is-extendable: 0.1.1 - is-plain-object: 2.0.4 - split-string: 3.1.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== /shebang-command/1.2.0: dependencies: shebang-regex: 1.0.0 @@ -7351,30 +6611,24 @@ packages: /signal-exit/3.0.2: resolution: integrity: sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= - /simple-git/1.129.0: - dependencies: - debug: 4.1.1 - dev: true - resolution: - integrity: sha512-XbzNmugMTeV2crZnPl+b1ZJn+nqXCUNyrZxDXpLM0kHL3B85sbPlpd8q9I4qtAHI9D2FxTB6w4BuiAGKYtyzKw== /simple-swizzle/0.2.2: dependencies: is-arrayish: 0.3.2 dev: true resolution: integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= - /sinon/7.5.0: + /sinon/8.0.4: dependencies: '@sinonjs/commons': 1.7.0 - '@sinonjs/formatio': 3.2.2 - '@sinonjs/samsam': 3.3.3 - diff: 3.5.0 - lolex: 4.2.0 - nise: 1.5.3 - supports-color: 5.5.0 + '@sinonjs/formatio': 4.0.1 + '@sinonjs/samsam': 4.2.2 + diff: 4.0.2 + lolex: 5.1.2 + nise: 3.0.1 + supports-color: 7.1.0 dev: true resolution: - integrity: sha512-AoD0oJWerp0/rY9czP/D6hDTTUYGpObhZjMpd7Cl/A6+j0xBE+ayL/ldfggkBXUs0IkvIiM1ljM8+WkOc5k78Q== + integrity: sha512-cFsmgmvsgFb87e7SV7IcekogITlHX2KmlplyI9Pda0FH1Z8Ms/kWbpLs25Idp0m6ZJ3HEEjhaYYXbcTtWWUn4w== /slash/3.0.0: engines: node: '>=8' @@ -7406,39 +6660,6 @@ packages: node: '>=8' resolution: integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== - /snapdragon-node/2.1.1: - dependencies: - define-property: 1.0.0 - isobject: 3.0.1 - snapdragon-util: 3.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - /snapdragon-util/3.0.1: - dependencies: - kind-of: 3.2.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== - /snapdragon/0.8.2: - dependencies: - base: 0.11.2 - debug: 2.6.9 - define-property: 0.2.5 - extend-shallow: 2.0.1 - map-cache: 0.2.2 - source-map: 0.5.7 - source-map-resolve: 0.5.3 - use: 3.1.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== /sort-keys/2.0.0: dependencies: is-plain-obj: 1.1.0 @@ -7447,16 +6668,6 @@ packages: node: '>=4' resolution: integrity: sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg= - /source-map-resolve/0.5.3: - dependencies: - atob: 2.1.2 - decode-uri-component: 0.2.0 - resolve-url: 0.2.1 - source-map-url: 0.4.0 - urix: 0.1.0 - dev: true - resolution: - integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== /source-map-support/0.5.16: dependencies: buffer-from: 1.1.1 @@ -7464,10 +6675,6 @@ packages: dev: true resolution: integrity: sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ== - /source-map-url/0.4.0: - dev: true - resolution: - integrity: sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= /source-map/0.5.7: dev: true engines: @@ -7486,9 +6693,9 @@ packages: node: '>= 8' resolution: integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== - /sourcemap-codec/1.4.6: + /sourcemap-codec/1.4.8: resolution: - integrity: sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg== + integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== /spawn-wrap/1.4.3: dependencies: foreground-child: 1.5.6 @@ -7518,14 +6725,6 @@ packages: /spdx-license-ids/3.0.5: resolution: integrity: sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== - /split-string/3.1.0: - dependencies: - extend-shallow: 3.0.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== /split2/2.2.0: dependencies: through2: 2.0.5 @@ -7545,26 +6744,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== - /staged-git-files/1.1.2: - dev: true - hasBin: true - resolution: - integrity: sha512-0Eyrk6uXW6tg9PYkhi/V/J4zHp33aNyi2hOCmhFLqLTIhbgqWn5jlSzI+IU0VqrZq6+DbHcabQl/WP6P3BG0QA== - /static-extend/0.1.2: - dependencies: - define-property: 0.2.5 - object-copy: 0.1.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= - /string-argv/0.0.2: - dev: true - engines: - node: '>=0.6.19' - resolution: - integrity: sha1-2sMECGkMIfPDYwo/86BYd73L1zY= /string-argv/0.3.1: dev: true engines: @@ -7738,7 +6917,7 @@ packages: integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw== /stylehacks/4.0.3: dependencies: - browserslist: 4.8.2 + browserslist: 4.8.3 postcss: 7.0.26 postcss-selector-parser: 3.1.1 dev: true @@ -7746,9 +6925,9 @@ packages: node: '>=6.9.0' resolution: integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== - /sucrase/3.12.0: + /sucrase/3.12.1: dependencies: - commander: 4.0.1 + commander: 4.1.0 lines-and-columns: 1.1.6 mz: 2.7.0 pirates: 4.0.1 @@ -7758,7 +6937,7 @@ packages: node: '>=8' hasBin: true resolution: - integrity: sha512-GHttbEnUlGt3O7oQ7NHV7NCrAmGnAsDb5ar+FUi7hb6oivoF20qokQ1jw2Nv2tCG+VqxF7P+hPavjMXv61oKdA== + integrity: sha512-aYG1RVImoyczRm/puVkNjbWZFus2b/LJj58RWEF7oe4XcKu/a/rudq+R9OrO69juzVx6KnPGTvjWUbIGnXTeFA== /supertap/1.0.0: dependencies: arrify: 1.0.1 @@ -7792,14 +6971,6 @@ packages: node: '>=4' resolution: integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - /supports-color/6.0.0: - dependencies: - has-flag: 3.0.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== /supports-color/6.1.0: dependencies: has-flag: 3.0.0 @@ -7830,7 +7001,7 @@ packages: sax: 1.2.4 stable: 0.1.8 unquote: 1.1.1 - util.promisify: 1.0.0 + util.promisify: 1.0.1 dev: true engines: node: '>=4.0.0' @@ -7843,13 +7014,9 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== - /synchronous-promise/2.0.10: - dev: true - resolution: - integrity: sha512-6PC+JRGmNjiG3kJ56ZMNWDPL8hjyghF5cMXIFOKg+NiwwEZZIvxTWd0pinWKyD227odg9ygF8xVhhz7gb8Uq7A== /table/5.4.6: dependencies: - ajv: 6.10.2 + ajv: 6.11.0 lodash: 4.17.15 slice-ansi: 2.1.0 string-width: 3.1.0 @@ -7906,14 +7073,14 @@ packages: integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= /through2/2.0.5: dependencies: - readable-stream: 2.3.6 + readable-stream: 2.3.7 xtend: 4.0.2 dev: false resolution: integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== /through2/3.0.1: dependencies: - readable-stream: 3.4.0 + readable-stream: 3.5.0 dev: false resolution: integrity: sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww== @@ -7941,29 +7108,12 @@ packages: node: '>=4' resolution: integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= - /to-object-path/0.3.0: - dependencies: - kind-of: 3.2.2 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= /to-readable-stream/1.0.0: dev: true engines: node: '>=6' resolution: integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== - /to-regex-range/2.1.1: - dependencies: - is-number: 3.0.0 - repeat-string: 1.6.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= /to-regex-range/5.0.1: dependencies: is-number: 7.0.0 @@ -7972,21 +7122,6 @@ packages: node: '>=8.0' resolution: integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - /to-regex/3.0.2: - dependencies: - define-property: 2.0.2 - extend-shallow: 3.0.2 - regex-not: 1.0.2 - safe-regex: 1.1.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - /toposort/2.0.2: - dev: true - resolution: - integrity: sha1-riF2gXXRVZ1IvvNUILL0li8JwzA= /tosource/1.0.0: dev: false engines: @@ -8013,22 +7148,22 @@ packages: dev: false resolution: integrity: sha512-UJYuKET7ez7ry0CnvfY6fPIUIZDw+UI3qvTUQeS2MyI4TgEeWAUBqy185LeaHcdJ9zG2dgFpPJU/AecXU0Afug== - /ts-node/8.5.4_typescript@3.7.4: + /ts-node/8.6.2_typescript@3.7.5: dependencies: arg: 4.1.2 - diff: 4.0.1 + diff: 4.0.2 make-error: 1.3.5 source-map-support: 0.5.16 - typescript: 3.7.4 + typescript: 3.7.5 yn: 3.1.1 dev: true engines: - node: '>=4.2.0' + node: '>=6.0.0' hasBin: true peerDependencies: - typescript: '>=2.0' + typescript: '>=2.7' resolution: - integrity: sha512-izbVCRV68EasEPQ8MSIGBNK9dc/4sYJJKYA+IarMQct1RtEot6Xp0bXuClsbUSnKpg50ho+aOAx8en5c+y4OFw== + integrity: sha512-4mZEbofxGqLL2RImpe3zMJukvEvcO1XP8bj8ozBPySdCUXEcU5cIRwR0aM3R+VoZq7iXc8N86NC0FspGRqP4gg== /tsconfig-paths/3.9.0: dependencies: '@types/json5': 0.0.29 @@ -8042,10 +7177,10 @@ packages: dev: true resolution: integrity: sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== - /tsutils/3.17.1_typescript@3.7.4: + /tsutils/3.17.1_typescript@3.7.5: dependencies: tslib: 1.10.0 - typescript: 3.7.4 + typescript: 3.7.5 dev: true engines: node: '>= 6' @@ -8105,24 +7240,13 @@ packages: dev: true resolution: integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - /typescript/3.7.4: + /typescript/3.7.5: dev: true engines: node: '>=4.2.0' hasBin: true resolution: - integrity: sha512-A25xv5XCtarLwXpcDNZzCGvW2D1S3/bACratYBx2sax8PefsFhlYmkQicKHvpYflFS8if4zne5zT5kpJ7pzuvw== - /uglify-js/3.7.3: - dependencies: - commander: 2.20.3 - source-map: 0.6.1 - dev: true - engines: - node: '>=0.8.0' - hasBin: true - optional: true - resolution: - integrity: sha512-7tINm46/3puUA4hCkKYo4Xdts+JDaVC9ZPRcG8Xw9R4nhO/gZgUM3TENq8IF4Vatk8qCig4MzP/c8G4u2BkVQg== + integrity: sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw== /uid2/0.0.3: dev: true resolution: @@ -8150,17 +7274,6 @@ packages: node: '>=4' resolution: integrity: sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== - /union-value/1.0.1: - dependencies: - arr-union: 3.1.0 - get-value: 2.0.6 - is-extendable: 0.1.1 - set-value: 2.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== /uniq/1.0.1: dev: true resolution: @@ -8191,15 +7304,6 @@ packages: dev: true resolution: integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= - /unset-value/1.0.0: - dependencies: - has-value: 0.3.1 - isobject: 3.0.1 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= /update-notifier/3.0.1: dependencies: boxen: 3.2.0 @@ -8225,10 +7329,6 @@ packages: dev: true resolution: integrity: sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== - /urix/0.1.0: - dev: true - resolution: - integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= /url-parse-lax/3.0.0: dependencies: prepend-http: 2.0.0 @@ -8237,28 +7337,24 @@ packages: node: '>=4' resolution: integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= - /use/3.1.1: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== /util-deprecate/1.0.2: dev: false resolution: integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - /util.promisify/1.0.0: + /util.promisify/1.0.1: dependencies: define-properties: 1.1.3 + es-abstract: 1.17.2 + has-symbols: 1.0.1 object.getownpropertydescriptors: 2.1.0 dev: true resolution: - integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== - /uuid/3.3.3: + integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== + /uuid/3.4.0: dev: true hasBin: true resolution: - integrity: sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== + integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== /v8-compile-cache/2.1.0: dev: true resolution: @@ -8273,10 +7369,6 @@ packages: dev: true resolution: integrity: sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw== - /vlq/0.2.3: - dev: true - resolution: - integrity: sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow== /wcwidth/1.0.1: dependencies: defaults: 1.0.3 @@ -8308,12 +7400,6 @@ packages: hasBin: true resolution: integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - /wide-align/1.1.3: - dependencies: - string-width: 2.1.1 - dev: true - resolution: - integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== /widest-line/2.0.1: dependencies: string-width: 2.1.1 @@ -8328,12 +7414,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - /wordwrap/0.0.3: - dev: true - engines: - node: '>=0.4.0' - resolution: - integrity: sha1-o9XabNXAvAAI03I0u68b7WMFkQc= /wrap-ansi/3.0.1: dependencies: string-width: 2.1.1 @@ -8424,7 +7504,7 @@ packages: integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= /yaml/1.7.2: dependencies: - '@babel/runtime': 7.7.7 + '@babel/runtime': 7.8.3 dev: true engines: node: '>= 6' @@ -8442,16 +7522,6 @@ packages: dev: true resolution: integrity: sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== - /yargs-unparser/1.6.0: - dependencies: - flat: 4.1.0 - lodash: 4.17.15 - yargs: 13.3.0 - dev: true - engines: - node: '>=6' - resolution: - integrity: sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw== /yargs/13.3.0: dependencies: cliui: 5.0.0 @@ -8473,14 +7543,3 @@ packages: node: '>=6' resolution: integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== - /yup/0.27.0: - dependencies: - '@babel/runtime': 7.7.7 - fn-name: 2.0.1 - lodash: 4.17.15 - property-expr: 1.5.1 - synchronous-promise: 2.0.10 - toposort: 2.0.2 - dev: true - resolution: - integrity: sha512-v1yFnE4+u9za42gG/b/081E7uNW9mUj3qtkmelLbW5YPROZzSH/KUUyJu9Wt8vxFJcT9otL/eZopS0YK1L5yPQ==