├── tests ├── mjs │ ├── index.js │ ├── b.js │ ├── mjs-missing.js │ └── a.js ├── cjs │ ├── index.js │ ├── b.js │ ├── missing.mjs │ ├── a.js │ └── missing.js ├── json │ ├── index.js │ ├── b.json │ ├── missing.js │ └── a.js ├── jsx │ ├── b.jsx │ ├── missing.js │ ├── a.jsx │ └── index.js ├── ts │ ├── b.ts │ ├── missing.ts │ ├── a.ts │ └── index.ts └── basic.test.js ├── .gitignore ├── scratch.js ├── rollup.config.js ├── src ├── index.js ├── get-used.js ├── _get-used-old.js ├── bin.js └── get-all.js ├── .esformatter ├── package.json ├── README.md └── yarn.lock /tests/mjs/index.js: -------------------------------------------------------------------------------- 1 | import a from './a' 2 | -------------------------------------------------------------------------------- /tests/cjs/index.js: -------------------------------------------------------------------------------- 1 | const a = require('./a') 2 | -------------------------------------------------------------------------------- /tests/json/index.js: -------------------------------------------------------------------------------- 1 | const a = require('./a') 2 | -------------------------------------------------------------------------------- /tests/cjs/b.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | hi: 'b' 3 | } 4 | -------------------------------------------------------------------------------- /tests/jsx/b.jsx: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | hi: 'b' 3 | } 4 | -------------------------------------------------------------------------------- /tests/mjs/b.js: -------------------------------------------------------------------------------- 1 | export default { 2 | hello: 'b' 3 | } 4 | -------------------------------------------------------------------------------- /tests/ts/b.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | hello: 'b' 3 | } 4 | -------------------------------------------------------------------------------- /tests/cjs/missing.mjs: -------------------------------------------------------------------------------- 1 | console.log(`i'm an unrequired .mjs file`) 2 | -------------------------------------------------------------------------------- /tests/json/b.json: -------------------------------------------------------------------------------- 1 | { 2 | "hi": "b", 3 | "whoa": true 4 | } 5 | -------------------------------------------------------------------------------- /tests/ts/missing.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | missing: true 3 | } 4 | -------------------------------------------------------------------------------- /tests/mjs/mjs-missing.js: -------------------------------------------------------------------------------- 1 | export default { 2 | missing: true 3 | } 4 | -------------------------------------------------------------------------------- /tests/mjs/a.js: -------------------------------------------------------------------------------- 1 | import b from './b' 2 | 3 | export default { 4 | b: b 5 | } 6 | -------------------------------------------------------------------------------- /tests/ts/a.ts: -------------------------------------------------------------------------------- 1 | import b from './b' 2 | 3 | export default { 4 | b: b 5 | } 6 | -------------------------------------------------------------------------------- /tests/cjs/a.js: -------------------------------------------------------------------------------- 1 | const b = require('./b') 2 | 3 | module.exports = { 4 | b: b 5 | } 6 | -------------------------------------------------------------------------------- /tests/cjs/missing.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | am: 'not required by anyone' 3 | } 4 | -------------------------------------------------------------------------------- /tests/json/missing.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | am: 'not required by anyone' 3 | } 4 | -------------------------------------------------------------------------------- /tests/jsx/missing.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | am: 'not required by anyone' 3 | } 4 | -------------------------------------------------------------------------------- /tests/json/a.js: -------------------------------------------------------------------------------- 1 | const b = require('./b') 2 | 3 | module.exports = { 4 | b: b 5 | } 6 | -------------------------------------------------------------------------------- /tests/jsx/a.jsx: -------------------------------------------------------------------------------- 1 | const b = require('./b') 2 | 3 | module.exports = { 4 | b: b 5 | } 6 | -------------------------------------------------------------------------------- /tests/ts/index.ts: -------------------------------------------------------------------------------- 1 | import a from './a' 2 | if (!a) { 3 | console.log('missing!') 4 | } 5 | -------------------------------------------------------------------------------- /tests/jsx/index.js: -------------------------------------------------------------------------------- 1 | // import a from './a.jsx' 2 | const a = require('./a') 3 | if (!a) { 4 | console.log('missing import') 5 | } 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .git 3 | coverage 4 | viz 5 | npm-debug.log 6 | package-lock.json 7 | .nyc_output 8 | _tmp-build.js 9 | _tmp-build.js.map 10 | -------------------------------------------------------------------------------- /scratch.js: -------------------------------------------------------------------------------- 1 | const unrequired = require('./src/index') 2 | // const doRollup = require('./src/rollup') 3 | 4 | let result = unrequired('./tests/jsx/index.js') 5 | console.log(result) 6 | // let result = unrequired('./tests/mjs/index.js') 7 | // console.log(doRollup('./tests/cjs/index.js')) 8 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import resolve from 'rollup-plugin-node-resolve' 2 | import commonjs from 'rollup-plugin-commonjs' 3 | import json from 'rollup-plugin-json' 4 | import typescript from 'rollup-plugin-typescript' 5 | import babel from 'rollup-plugin-babel' 6 | 7 | module.exports = { 8 | treeshake: false, 9 | output: { 10 | file: './_tmp-build.js', 11 | format: 'iife', 12 | name: 'MyModule', 13 | sourcemap: true, 14 | }, 15 | plugins: [resolve(), commonjs(), json(), babel(), typescript()], 16 | } 17 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | // var getUsed = require('./get-used.js'); 2 | var getUsed = require('./get-used') 3 | // var getUsed = require('./get-used-old') 4 | var getAll = require('./get-all') 5 | 6 | // 7 | const unrequired = function(input) { 8 | var all = getAll(input) 9 | var used = getUsed(input) 10 | 11 | //turn used into a key-value lookup 12 | var lookup = used.reduce(function(h, str) { 13 | h[str] = true 14 | return h 15 | }, {}) 16 | 17 | var diff = all.filter(function(str) { 18 | return lookup[str] !== true 19 | }) 20 | 21 | return { 22 | all: all, 23 | used: used, 24 | unused: diff, 25 | } 26 | } 27 | module.exports = unrequired 28 | -------------------------------------------------------------------------------- /.esformatter: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | "esformatter-quotes", 4 | "esformatter-parseint", 5 | "esformatter-braces" 6 | ], 7 | "quotes": { 8 | "type": "single", 9 | "avoidEscape": false 10 | }, 11 | "whiteSpace": { 12 | "before": { 13 | "ParameterList": -1, 14 | "ParameterComma": -1, 15 | "FunctionDeclarationOpeningBrace": -1, 16 | "FunctionDeclarationClosingBrace": -1, 17 | "ForStatementExpressionOpening": -1 18 | }, 19 | "after": { 20 | "FunctionName": -1, 21 | "ParameterComma": 1, 22 | "FunctionReservedWord": -1, 23 | "ParameterList": -1, 24 | "FunctionDeclarationOpeningBrace": -1, 25 | "PropertyName": -1 26 | } 27 | }, 28 | "lineBreak": { 29 | "before": { 30 | "EndOfFile": 1 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/get-used.js: -------------------------------------------------------------------------------- 1 | var exec = require('shelljs').exec 2 | var path = require('path') 3 | var fs = require('fs') 4 | 5 | var output = path.resolve(__dirname, '../_tmp-build.js') 6 | var config = path.resolve(__dirname, '../rollup.config.js') 7 | 8 | const getUsed = function(input) { 9 | //build the file with rollup 10 | let cmd = `npx rollup ${input} -c ${config} --silent -o ${output}` 11 | exec(cmd) 12 | //parse the source map 13 | let files = JSON.parse(fs.readFileSync(output + '.map')).sources 14 | files.push(input) 15 | //resolve to absolute paths 16 | files = files.map(function(str) { 17 | str = path.resolve(str) 18 | return str 19 | }) 20 | //clean it up a bit 21 | files = files.filter(function(str) { 22 | if (!str) { 23 | return false 24 | } 25 | if (/_prelude.js$/.test(str)) { 26 | return false 27 | } 28 | if (/$/.test(str)) { 29 | return false 30 | } 31 | return true 32 | }) 33 | //cleanup tmp file 34 | exec(`rm ${output} && rm ${output + '.map'}`) 35 | return files 36 | } 37 | module.exports = getUsed 38 | -------------------------------------------------------------------------------- /src/_get-used-old.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | var exec = require('shelljs').exec 3 | var srcMapExplorer = require('source-map-explorer').explore 4 | 5 | //use paths, so libs don't need a -g 6 | var browserify = path.resolve(__dirname, '../node_modules/.bin/browserify') 7 | var output = path.resolve(__dirname, '../_tmp-build.js') 8 | 9 | var getUsed = function(input) { 10 | //browserify + derequire 11 | var cmd = browserify + ' ' + input + ' --debug -t [ babelify ]' 12 | cmd += ' >> ' + output 13 | exec(cmd) 14 | 15 | srcMapExplorer(output, { 16 | json: true, 17 | }).then(files => { 18 | console.log(files) 19 | files = Object.keys(files) 20 | 21 | files = files.map(function(str) { 22 | str = path.resolve(str) 23 | return str 24 | }) 25 | //clean it up a bit 26 | files = files.filter(function(str) { 27 | if (!str) { 28 | return false 29 | } 30 | if (/_prelude.js$/.test(str)) { 31 | return false 32 | } 33 | if (/$/.test(str)) { 34 | return false 35 | } 36 | return true 37 | }) 38 | //cleanup tmp file 39 | exec('rm ' + output) 40 | // console.log(files) 41 | return files 42 | }) 43 | } 44 | module.exports = getUsed 45 | -------------------------------------------------------------------------------- /src/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | const unrequired = require('./index') 3 | var path = require('path'); 4 | var fs = require('fs'); 5 | 6 | var input = process.argv[2]; 7 | if (!input) { 8 | console.error('must supply a entry point file to inspect'); 9 | process.exit(); 10 | } 11 | 12 | input = path.resolve(process.cwd(), input); 13 | var isDirectory = fs.lstatSync(input).isDirectory(); 14 | if (isDirectory === true) { 15 | input = path.resolve(input, './index.js'); 16 | } 17 | 18 | console.log('\nCompiling the javascript..\n'); 19 | 20 | var result = unrequired(input) 21 | var all = result.all 22 | var used = result.used 23 | var diff = result.unused 24 | 25 | console.log(''); 26 | console.log('found: ' + all.length + ' files'); 27 | console.log('using: ' + used.length + ' files'); 28 | console.log(''); 29 | 30 | if (all.length === 0 || used.length === 0) { 31 | console.log('couldn\'t figure-out this javascript build.'); 32 | process.exit(0); 33 | } 34 | 35 | console.log('\n\n'); 36 | 37 | if (diff.length === 0) { 38 | console.log('all files required! nice work.'); 39 | process.exit(1); 40 | } 41 | 42 | //pretty-print a bunch of them 43 | diff = diff.slice(0, 100); 44 | var base = path.dirname(input); 45 | console.log('\n---- ' + diff.length + ' Unused files----'); 46 | diff.forEach(function(str) { 47 | str = './' + path.relative(base, str); 48 | console.log(' ' + str); 49 | }); 50 | -------------------------------------------------------------------------------- /src/get-all.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | var path = require('path') 3 | // 4 | var extensions = { 5 | '.js': true, 6 | // '.json': true, 7 | '.jsx': true, 8 | '.mjs': true, 9 | '.ts': true, 10 | '.tsx': true, 11 | } 12 | 13 | var walkSync = function(dir, filelist) { 14 | var name = path.basename(dir) 15 | if (name === 'node_modules' || name[0] === '.') { 16 | return filelist 17 | } 18 | fs.readdirSync(dir).forEach(function(file) { 19 | filelist = fs.statSync(path.join(dir, file)).isDirectory() 20 | ? walkSync(path.join(dir, file), filelist) 21 | : filelist.concat(path.join(dir, file)) 22 | }) 23 | return filelist 24 | } 25 | 26 | var getAll = function(entry) { 27 | var folder = path.dirname(entry) 28 | var files = walkSync(folder, []) 29 | 30 | files = files.map(str => { 31 | return path.resolve(str) 32 | }) 33 | 34 | files = files.filter(function(str) { 35 | //if not a javascript file 36 | var ext = path.extname(str) 37 | if (!ext || extensions[ext] !== true) { 38 | return false 39 | } 40 | //ignore package.json and hidden files 41 | var name = path.basename(str) 42 | if (!name) { 43 | return false 44 | } 45 | if (name === 'package.json' || name === 'package-lock.json') { 46 | return false 47 | } 48 | if (name[0] === '.') { 49 | return false 50 | } 51 | return true 52 | }) 53 | return files 54 | } 55 | module.exports = getAll 56 | -------------------------------------------------------------------------------- /tests/basic.test.js: -------------------------------------------------------------------------------- 1 | var test = require('tape') 2 | var unrequired = require('../src/index') 3 | 4 | test('common-js', function(t) { 5 | var result = unrequired(__dirname + '/cjs/index.js') 6 | t.equal(result.all.length, 5, 'found 5 files') 7 | t.equal(result.used.length, 3, 'found 3 used') 8 | t.equal(result.unused.length, 2, 'found 2 unused') 9 | t.end() 10 | }) 11 | 12 | test('module-js', function(t) { 13 | var result = unrequired(__dirname + '/mjs/index.js') 14 | t.equal(result.all.length, 4, 'found 4 files') 15 | t.equal(result.used.length, 3, 'found 3 used') 16 | t.equal(result.unused.length, 1, 'found 1 unused') 17 | t.end() 18 | }) 19 | 20 | test('json-loading', function(t) { 21 | var result = unrequired(__dirname + '/json/index.js') 22 | t.equal(result.all.length, 3, 'found 3 files') 23 | t.equal(result.used.length, 2, 'found 2 used') 24 | t.equal(result.unused.length, 1, 'found 1 unused') 25 | t.end() 26 | }) 27 | 28 | test('jsx', function(t) { 29 | var result = unrequired(__dirname + '/jsx/index.js') 30 | t.equal(result.all.length, 4, 'found 4 files') 31 | t.equal(result.used.length, 3, 'found 3 used') // TODO:not the right files 32 | // t.equal(result.unused.length, 1, 'found 1 unused')//TODO: failing 33 | t.end() 34 | }) 35 | 36 | // test('ts', function(t) { 37 | // var result = unrequired(__dirname + '/ts/index.js') 38 | // t.equal(result.all.length, 4, 'found 4 files') 39 | // t.equal(result.used.length, 3, 'found 3 used') 40 | // t.equal(result.unused.length, 1, 'found 1 unused') 41 | // t.end() 42 | // }) 43 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "unrequired", 3 | "version": "0.3.1", 4 | "description": "find unused javascript files in your project", 5 | "main": "./src/index.js", 6 | "author": "spencermountain", 7 | "bin": { 8 | "unrequired": "./src/bin.js" 9 | }, 10 | "scripts": { 11 | "test": "tape ./tests/*.test.js | tap-dancer", 12 | "run": "node ./scratch.js", 13 | "watch": "node ./scratch.js" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "git+https://github.com/spencermountain/unrequired.git" 18 | }, 19 | "bugs": { 20 | "url": "https://github.com/spencermountain/unrequired/issues" 21 | }, 22 | "homepage": "https://github.com/spencermountain/unrequired#readme", 23 | "keywords": [ 24 | "code quality", 25 | "linter", 26 | "cleanup" 27 | ], 28 | "prettier": { 29 | "trailingComma": "es5", 30 | "tabWidth": 2, 31 | "semi": false, 32 | "singleQuote": true, 33 | "printWidth": 100 34 | }, 35 | "dependencies": { 36 | "@babel/core": "^7.4.5", 37 | "@babel/preset-env": "^7.4.5", 38 | "@babel/preset-react": "^7.0.0", 39 | "rollup": "1.31.1", 40 | "rollup-plugin-babel": "^4.3.2", 41 | "rollup-plugin-commonjs": "10.1.0", 42 | "rollup-plugin-json": "^4.0.0", 43 | "rollup-plugin-node-resolve": "5.2.0", 44 | "rollup-plugin-typescript": "^1.0.1", 45 | "shelljs": "0.8.3", 46 | "tslib": "^1.10.0", 47 | "typescript": "^3.5.2" 48 | }, 49 | "devDependencies": { 50 | "tap-dancer": "0.2.0", 51 | "tape": "4.13.0" 52 | }, 53 | "license": "MIT" 54 | } 55 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | you may want to try the library @smeijer/unimported instead of this one. 3 |
it's pretty great
4 |
5 |
6 | 7 | 8 | 9 | 10 |
11 | 12 |
unrequired
13 |
find unused javascript files
14 |
15 | 16 | 17 | 18 | 19 |
20 | 21 | in a big javascript project, sometimes you can forget to delete a unused file. 22 | 23 | `linters` and `tree-shakers` are good at finding unused **code** in a module, but they can allow you to have a whole unused file somewhere in your project. 24 | 25 | This script follows the require graph, and compares it to the `ls` output, to find any files that are potentially not being used. 26 | 27 | `npm install -g unrequired` 28 | 29 | `unrequired ./path/to/my/index.js` 30 | 31 | or from a node script: 32 | ```js 33 | const unrequired = require('unrequired') 34 | let result = unrequired('./tests/mjs/index.js') 35 | console.log(result) 36 | /* 37 | { 38 | all:[ ... ], // all javascript files from a 'ls' 39 | used:[ ... ], // all files in the sourcemap bundle 40 | unused:[], // the diff between the two 41 | } 42 | */ 43 | ``` 44 | 45 | running it may be helpful in a large javascript project! who knows. 46 | 47 | It uses [rollup](https://rollupjs.org) ⭐️ 48 | 49 | ### Caveats 50 | JSX, and other variants are not currently supported. 51 | 52 | It atleast attempts to support `esmodules`, `.mjs files`, and some other things. 53 | 54 | it won't catch any unrequired `.json` files. 55 | 56 | ## See Also 57 | * [unused-webpack-plugin](https://github.com/MatthieuLemoine/unused-webpack-plugin) by Matthieu Lemoine 58 | * [node-trucker](https://github.com/davidmfoley/node-trucker) by Dave Foley 59 | 60 | MIT 61 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.8.3": 6 | version "7.8.3" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" 8 | integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== 9 | dependencies: 10 | "@babel/highlight" "^7.8.3" 11 | 12 | "@babel/compat-data@^7.8.6": 13 | version "7.8.6" 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.8.6.tgz#7eeaa0dfa17e50c7d9c0832515eee09b56f04e35" 15 | integrity sha512-CurCIKPTkS25Mb8mz267vU95vy+TyUpnctEX2lV33xWNmHAfjruztgiPBbXZRh3xZZy1CYvGx6XfxyTVS+sk7Q== 16 | dependencies: 17 | browserslist "^4.8.5" 18 | invariant "^2.2.4" 19 | semver "^5.5.0" 20 | 21 | "@babel/core@^7.4.5": 22 | version "7.8.7" 23 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.7.tgz#b69017d221ccdeb203145ae9da269d72cf102f3b" 24 | integrity sha512-rBlqF3Yko9cynC5CCFy6+K/w2N+Sq/ff2BPy+Krp7rHlABIr5epbA7OxVeKoMHB39LZOp1UY5SuLjy6uWi35yA== 25 | dependencies: 26 | "@babel/code-frame" "^7.8.3" 27 | "@babel/generator" "^7.8.7" 28 | "@babel/helpers" "^7.8.4" 29 | "@babel/parser" "^7.8.7" 30 | "@babel/template" "^7.8.6" 31 | "@babel/traverse" "^7.8.6" 32 | "@babel/types" "^7.8.7" 33 | convert-source-map "^1.7.0" 34 | debug "^4.1.0" 35 | gensync "^1.0.0-beta.1" 36 | json5 "^2.1.0" 37 | lodash "^4.17.13" 38 | resolve "^1.3.2" 39 | semver "^5.4.1" 40 | source-map "^0.5.0" 41 | 42 | "@babel/generator@^7.8.6", "@babel/generator@^7.8.7": 43 | version "7.8.8" 44 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.8.tgz#cdcd58caab730834cee9eeadb729e833b625da3e" 45 | integrity sha512-HKyUVu69cZoclptr8t8U5b6sx6zoWjh8jiUhnuj3MpZuKT2dJ8zPTuiy31luq32swhI0SpwItCIlU8XW7BZeJg== 46 | dependencies: 47 | "@babel/types" "^7.8.7" 48 | jsesc "^2.5.1" 49 | lodash "^4.17.13" 50 | source-map "^0.5.0" 51 | 52 | "@babel/helper-annotate-as-pure@^7.8.3": 53 | version "7.8.3" 54 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" 55 | integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw== 56 | dependencies: 57 | "@babel/types" "^7.8.3" 58 | 59 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3": 60 | version "7.8.3" 61 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503" 62 | integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw== 63 | dependencies: 64 | "@babel/helper-explode-assignable-expression" "^7.8.3" 65 | "@babel/types" "^7.8.3" 66 | 67 | "@babel/helper-builder-react-jsx@^7.8.3": 68 | version "7.8.3" 69 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.8.3.tgz#dee98d7d79cc1f003d80b76fe01c7f8945665ff6" 70 | integrity sha512-JT8mfnpTkKNCboTqZsQTdGo3l3Ik3l7QIt9hh0O9DYiwVel37VoJpILKM4YFbP2euF32nkQSb+F9cUk9b7DDXQ== 71 | dependencies: 72 | "@babel/types" "^7.8.3" 73 | esutils "^2.0.0" 74 | 75 | "@babel/helper-call-delegate@^7.8.7": 76 | version "7.8.7" 77 | resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.7.tgz#28a279c2e6c622a6233da548127f980751324cab" 78 | integrity sha512-doAA5LAKhsFCR0LAFIf+r2RSMmC+m8f/oQ+URnUET/rWeEzC0yTRmAGyWkD4sSu3xwbS7MYQ2u+xlt1V5R56KQ== 79 | dependencies: 80 | "@babel/helper-hoist-variables" "^7.8.3" 81 | "@babel/traverse" "^7.8.3" 82 | "@babel/types" "^7.8.7" 83 | 84 | "@babel/helper-compilation-targets@^7.8.7": 85 | version "7.8.7" 86 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz#dac1eea159c0e4bd46e309b5a1b04a66b53c1dde" 87 | integrity sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw== 88 | dependencies: 89 | "@babel/compat-data" "^7.8.6" 90 | browserslist "^4.9.1" 91 | invariant "^2.2.4" 92 | levenary "^1.1.1" 93 | semver "^5.5.0" 94 | 95 | "@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8": 96 | version "7.8.8" 97 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087" 98 | integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg== 99 | dependencies: 100 | "@babel/helper-annotate-as-pure" "^7.8.3" 101 | "@babel/helper-regex" "^7.8.3" 102 | regexpu-core "^4.7.0" 103 | 104 | "@babel/helper-define-map@^7.8.3": 105 | version "7.8.3" 106 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15" 107 | integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g== 108 | dependencies: 109 | "@babel/helper-function-name" "^7.8.3" 110 | "@babel/types" "^7.8.3" 111 | lodash "^4.17.13" 112 | 113 | "@babel/helper-explode-assignable-expression@^7.8.3": 114 | version "7.8.3" 115 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982" 116 | integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw== 117 | dependencies: 118 | "@babel/traverse" "^7.8.3" 119 | "@babel/types" "^7.8.3" 120 | 121 | "@babel/helper-function-name@^7.8.3": 122 | version "7.8.3" 123 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca" 124 | integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA== 125 | dependencies: 126 | "@babel/helper-get-function-arity" "^7.8.3" 127 | "@babel/template" "^7.8.3" 128 | "@babel/types" "^7.8.3" 129 | 130 | "@babel/helper-get-function-arity@^7.8.3": 131 | version "7.8.3" 132 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" 133 | integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA== 134 | dependencies: 135 | "@babel/types" "^7.8.3" 136 | 137 | "@babel/helper-hoist-variables@^7.8.3": 138 | version "7.8.3" 139 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134" 140 | integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg== 141 | dependencies: 142 | "@babel/types" "^7.8.3" 143 | 144 | "@babel/helper-member-expression-to-functions@^7.8.3": 145 | version "7.8.3" 146 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c" 147 | integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA== 148 | dependencies: 149 | "@babel/types" "^7.8.3" 150 | 151 | "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.8.3": 152 | version "7.8.3" 153 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" 154 | integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== 155 | dependencies: 156 | "@babel/types" "^7.8.3" 157 | 158 | "@babel/helper-module-transforms@^7.8.3": 159 | version "7.8.6" 160 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.6.tgz#6a13b5eecadc35692047073a64e42977b97654a4" 161 | integrity sha512-RDnGJSR5EFBJjG3deY0NiL0K9TO8SXxS9n/MPsbPK/s9LbQymuLNtlzvDiNS7IpecuL45cMeLVkA+HfmlrnkRg== 162 | dependencies: 163 | "@babel/helper-module-imports" "^7.8.3" 164 | "@babel/helper-replace-supers" "^7.8.6" 165 | "@babel/helper-simple-access" "^7.8.3" 166 | "@babel/helper-split-export-declaration" "^7.8.3" 167 | "@babel/template" "^7.8.6" 168 | "@babel/types" "^7.8.6" 169 | lodash "^4.17.13" 170 | 171 | "@babel/helper-optimise-call-expression@^7.8.3": 172 | version "7.8.3" 173 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9" 174 | integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ== 175 | dependencies: 176 | "@babel/types" "^7.8.3" 177 | 178 | "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 179 | version "7.8.3" 180 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" 181 | integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== 182 | 183 | "@babel/helper-regex@^7.8.3": 184 | version "7.8.3" 185 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" 186 | integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ== 187 | dependencies: 188 | lodash "^4.17.13" 189 | 190 | "@babel/helper-remap-async-to-generator@^7.8.3": 191 | version "7.8.3" 192 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86" 193 | integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA== 194 | dependencies: 195 | "@babel/helper-annotate-as-pure" "^7.8.3" 196 | "@babel/helper-wrap-function" "^7.8.3" 197 | "@babel/template" "^7.8.3" 198 | "@babel/traverse" "^7.8.3" 199 | "@babel/types" "^7.8.3" 200 | 201 | "@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6": 202 | version "7.8.6" 203 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8" 204 | integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA== 205 | dependencies: 206 | "@babel/helper-member-expression-to-functions" "^7.8.3" 207 | "@babel/helper-optimise-call-expression" "^7.8.3" 208 | "@babel/traverse" "^7.8.6" 209 | "@babel/types" "^7.8.6" 210 | 211 | "@babel/helper-simple-access@^7.8.3": 212 | version "7.8.3" 213 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae" 214 | integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw== 215 | dependencies: 216 | "@babel/template" "^7.8.3" 217 | "@babel/types" "^7.8.3" 218 | 219 | "@babel/helper-split-export-declaration@^7.8.3": 220 | version "7.8.3" 221 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" 222 | integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA== 223 | dependencies: 224 | "@babel/types" "^7.8.3" 225 | 226 | "@babel/helper-wrap-function@^7.8.3": 227 | version "7.8.3" 228 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610" 229 | integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ== 230 | dependencies: 231 | "@babel/helper-function-name" "^7.8.3" 232 | "@babel/template" "^7.8.3" 233 | "@babel/traverse" "^7.8.3" 234 | "@babel/types" "^7.8.3" 235 | 236 | "@babel/helpers@^7.8.4": 237 | version "7.8.4" 238 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.4.tgz#754eb3ee727c165e0a240d6c207de7c455f36f73" 239 | integrity sha512-VPbe7wcQ4chu4TDQjimHv/5tj73qz88o12EPkO2ValS2QiQS/1F2SsjyIGNnAD0vF/nZS6Cf9i+vW6HIlnaR8w== 240 | dependencies: 241 | "@babel/template" "^7.8.3" 242 | "@babel/traverse" "^7.8.4" 243 | "@babel/types" "^7.8.3" 244 | 245 | "@babel/highlight@^7.8.3": 246 | version "7.8.3" 247 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797" 248 | integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg== 249 | dependencies: 250 | chalk "^2.0.0" 251 | esutils "^2.0.2" 252 | js-tokens "^4.0.0" 253 | 254 | "@babel/parser@^7.8.6", "@babel/parser@^7.8.7": 255 | version "7.8.8" 256 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.8.tgz#4c3b7ce36db37e0629be1f0d50a571d2f86f6cd4" 257 | integrity sha512-mO5GWzBPsPf6865iIbzNE0AvkKF3NE+2S3eRUpE+FE07BOAkXh6G+GW/Pj01hhXjve1WScbaIO4UlY1JKeqCcA== 258 | 259 | "@babel/plugin-proposal-async-generator-functions@^7.8.3": 260 | version "7.8.3" 261 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f" 262 | integrity sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw== 263 | dependencies: 264 | "@babel/helper-plugin-utils" "^7.8.3" 265 | "@babel/helper-remap-async-to-generator" "^7.8.3" 266 | "@babel/plugin-syntax-async-generators" "^7.8.0" 267 | 268 | "@babel/plugin-proposal-dynamic-import@^7.8.3": 269 | version "7.8.3" 270 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz#38c4fe555744826e97e2ae930b0fb4cc07e66054" 271 | integrity sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w== 272 | dependencies: 273 | "@babel/helper-plugin-utils" "^7.8.3" 274 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 275 | 276 | "@babel/plugin-proposal-json-strings@^7.8.3": 277 | version "7.8.3" 278 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz#da5216b238a98b58a1e05d6852104b10f9a70d6b" 279 | integrity sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q== 280 | dependencies: 281 | "@babel/helper-plugin-utils" "^7.8.3" 282 | "@babel/plugin-syntax-json-strings" "^7.8.0" 283 | 284 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": 285 | version "7.8.3" 286 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2" 287 | integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== 288 | dependencies: 289 | "@babel/helper-plugin-utils" "^7.8.3" 290 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 291 | 292 | "@babel/plugin-proposal-object-rest-spread@^7.8.3": 293 | version "7.8.3" 294 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz#eb5ae366118ddca67bed583b53d7554cad9951bb" 295 | integrity sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA== 296 | dependencies: 297 | "@babel/helper-plugin-utils" "^7.8.3" 298 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 299 | 300 | "@babel/plugin-proposal-optional-catch-binding@^7.8.3": 301 | version "7.8.3" 302 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9" 303 | integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== 304 | dependencies: 305 | "@babel/helper-plugin-utils" "^7.8.3" 306 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 307 | 308 | "@babel/plugin-proposal-optional-chaining@^7.8.3": 309 | version "7.8.3" 310 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz#ae10b3214cb25f7adb1f3bc87ba42ca10b7e2543" 311 | integrity sha512-QIoIR9abkVn+seDE3OjA08jWcs3eZ9+wJCKSRgo3WdEU2csFYgdScb+8qHB3+WXsGJD55u+5hWCISI7ejXS+kg== 312 | dependencies: 313 | "@babel/helper-plugin-utils" "^7.8.3" 314 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 315 | 316 | "@babel/plugin-proposal-unicode-property-regex@^7.8.3": 317 | version "7.8.8" 318 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d" 319 | integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A== 320 | dependencies: 321 | "@babel/helper-create-regexp-features-plugin" "^7.8.8" 322 | "@babel/helper-plugin-utils" "^7.8.3" 323 | 324 | "@babel/plugin-syntax-async-generators@^7.8.0": 325 | version "7.8.4" 326 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 327 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 328 | dependencies: 329 | "@babel/helper-plugin-utils" "^7.8.0" 330 | 331 | "@babel/plugin-syntax-dynamic-import@^7.8.0": 332 | version "7.8.3" 333 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 334 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 335 | dependencies: 336 | "@babel/helper-plugin-utils" "^7.8.0" 337 | 338 | "@babel/plugin-syntax-json-strings@^7.8.0": 339 | version "7.8.3" 340 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 341 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 342 | dependencies: 343 | "@babel/helper-plugin-utils" "^7.8.0" 344 | 345 | "@babel/plugin-syntax-jsx@^7.8.3": 346 | version "7.8.3" 347 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" 348 | integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A== 349 | dependencies: 350 | "@babel/helper-plugin-utils" "^7.8.3" 351 | 352 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": 353 | version "7.8.3" 354 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 355 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 356 | dependencies: 357 | "@babel/helper-plugin-utils" "^7.8.0" 358 | 359 | "@babel/plugin-syntax-object-rest-spread@^7.8.0": 360 | version "7.8.3" 361 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 362 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 363 | dependencies: 364 | "@babel/helper-plugin-utils" "^7.8.0" 365 | 366 | "@babel/plugin-syntax-optional-catch-binding@^7.8.0": 367 | version "7.8.3" 368 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 369 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 370 | dependencies: 371 | "@babel/helper-plugin-utils" "^7.8.0" 372 | 373 | "@babel/plugin-syntax-optional-chaining@^7.8.0": 374 | version "7.8.3" 375 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 376 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 377 | dependencies: 378 | "@babel/helper-plugin-utils" "^7.8.0" 379 | 380 | "@babel/plugin-syntax-top-level-await@^7.8.3": 381 | version "7.8.3" 382 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz#3acdece695e6b13aaf57fc291d1a800950c71391" 383 | integrity sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g== 384 | dependencies: 385 | "@babel/helper-plugin-utils" "^7.8.3" 386 | 387 | "@babel/plugin-transform-arrow-functions@^7.8.3": 388 | version "7.8.3" 389 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6" 390 | integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== 391 | dependencies: 392 | "@babel/helper-plugin-utils" "^7.8.3" 393 | 394 | "@babel/plugin-transform-async-to-generator@^7.8.3": 395 | version "7.8.3" 396 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086" 397 | integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== 398 | dependencies: 399 | "@babel/helper-module-imports" "^7.8.3" 400 | "@babel/helper-plugin-utils" "^7.8.3" 401 | "@babel/helper-remap-async-to-generator" "^7.8.3" 402 | 403 | "@babel/plugin-transform-block-scoped-functions@^7.8.3": 404 | version "7.8.3" 405 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3" 406 | integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== 407 | dependencies: 408 | "@babel/helper-plugin-utils" "^7.8.3" 409 | 410 | "@babel/plugin-transform-block-scoping@^7.8.3": 411 | version "7.8.3" 412 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a" 413 | integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== 414 | dependencies: 415 | "@babel/helper-plugin-utils" "^7.8.3" 416 | lodash "^4.17.13" 417 | 418 | "@babel/plugin-transform-classes@^7.8.6": 419 | version "7.8.6" 420 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.6.tgz#77534447a477cbe5995ae4aee3e39fbc8090c46d" 421 | integrity sha512-k9r8qRay/R6v5aWZkrEclEhKO6mc1CCQr2dLsVHBmOQiMpN6I2bpjX3vgnldUWeEI1GHVNByULVxZ4BdP4Hmdg== 422 | dependencies: 423 | "@babel/helper-annotate-as-pure" "^7.8.3" 424 | "@babel/helper-define-map" "^7.8.3" 425 | "@babel/helper-function-name" "^7.8.3" 426 | "@babel/helper-optimise-call-expression" "^7.8.3" 427 | "@babel/helper-plugin-utils" "^7.8.3" 428 | "@babel/helper-replace-supers" "^7.8.6" 429 | "@babel/helper-split-export-declaration" "^7.8.3" 430 | globals "^11.1.0" 431 | 432 | "@babel/plugin-transform-computed-properties@^7.8.3": 433 | version "7.8.3" 434 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b" 435 | integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== 436 | dependencies: 437 | "@babel/helper-plugin-utils" "^7.8.3" 438 | 439 | "@babel/plugin-transform-destructuring@^7.8.3": 440 | version "7.8.8" 441 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.8.tgz#fadb2bc8e90ccaf5658de6f8d4d22ff6272a2f4b" 442 | integrity sha512-eRJu4Vs2rmttFCdhPUM3bV0Yo/xPSdPw6ML9KHs/bjB4bLA5HXlbvYXPOD5yASodGod+krjYx21xm1QmL8dCJQ== 443 | dependencies: 444 | "@babel/helper-plugin-utils" "^7.8.3" 445 | 446 | "@babel/plugin-transform-dotall-regex@^7.8.3": 447 | version "7.8.3" 448 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e" 449 | integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== 450 | dependencies: 451 | "@babel/helper-create-regexp-features-plugin" "^7.8.3" 452 | "@babel/helper-plugin-utils" "^7.8.3" 453 | 454 | "@babel/plugin-transform-duplicate-keys@^7.8.3": 455 | version "7.8.3" 456 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz#8d12df309aa537f272899c565ea1768e286e21f1" 457 | integrity sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ== 458 | dependencies: 459 | "@babel/helper-plugin-utils" "^7.8.3" 460 | 461 | "@babel/plugin-transform-exponentiation-operator@^7.8.3": 462 | version "7.8.3" 463 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7" 464 | integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== 465 | dependencies: 466 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3" 467 | "@babel/helper-plugin-utils" "^7.8.3" 468 | 469 | "@babel/plugin-transform-for-of@^7.8.6": 470 | version "7.8.6" 471 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.6.tgz#a051bd1b402c61af97a27ff51b468321c7c2a085" 472 | integrity sha512-M0pw4/1/KI5WAxPsdcUL/w2LJ7o89YHN3yLkzNjg7Yl15GlVGgzHyCU+FMeAxevHGsLVmUqbirlUIKTafPmzdw== 473 | dependencies: 474 | "@babel/helper-plugin-utils" "^7.8.3" 475 | 476 | "@babel/plugin-transform-function-name@^7.8.3": 477 | version "7.8.3" 478 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b" 479 | integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== 480 | dependencies: 481 | "@babel/helper-function-name" "^7.8.3" 482 | "@babel/helper-plugin-utils" "^7.8.3" 483 | 484 | "@babel/plugin-transform-literals@^7.8.3": 485 | version "7.8.3" 486 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1" 487 | integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== 488 | dependencies: 489 | "@babel/helper-plugin-utils" "^7.8.3" 490 | 491 | "@babel/plugin-transform-member-expression-literals@^7.8.3": 492 | version "7.8.3" 493 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410" 494 | integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== 495 | dependencies: 496 | "@babel/helper-plugin-utils" "^7.8.3" 497 | 498 | "@babel/plugin-transform-modules-amd@^7.8.3": 499 | version "7.8.3" 500 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz#65606d44616b50225e76f5578f33c568a0b876a5" 501 | integrity sha512-MadJiU3rLKclzT5kBH4yxdry96odTUwuqrZM+GllFI/VhxfPz+k9MshJM+MwhfkCdxxclSbSBbUGciBngR+kEQ== 502 | dependencies: 503 | "@babel/helper-module-transforms" "^7.8.3" 504 | "@babel/helper-plugin-utils" "^7.8.3" 505 | babel-plugin-dynamic-import-node "^2.3.0" 506 | 507 | "@babel/plugin-transform-modules-commonjs@^7.8.3": 508 | version "7.8.3" 509 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz#df251706ec331bd058a34bdd72613915f82928a5" 510 | integrity sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg== 511 | dependencies: 512 | "@babel/helper-module-transforms" "^7.8.3" 513 | "@babel/helper-plugin-utils" "^7.8.3" 514 | "@babel/helper-simple-access" "^7.8.3" 515 | babel-plugin-dynamic-import-node "^2.3.0" 516 | 517 | "@babel/plugin-transform-modules-systemjs@^7.8.3": 518 | version "7.8.3" 519 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.3.tgz#d8bbf222c1dbe3661f440f2f00c16e9bb7d0d420" 520 | integrity sha512-8cESMCJjmArMYqa9AO5YuMEkE4ds28tMpZcGZB/jl3n0ZzlsxOAi3mC+SKypTfT8gjMupCnd3YiXCkMjj2jfOg== 521 | dependencies: 522 | "@babel/helper-hoist-variables" "^7.8.3" 523 | "@babel/helper-module-transforms" "^7.8.3" 524 | "@babel/helper-plugin-utils" "^7.8.3" 525 | babel-plugin-dynamic-import-node "^2.3.0" 526 | 527 | "@babel/plugin-transform-modules-umd@^7.8.3": 528 | version "7.8.3" 529 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.3.tgz#592d578ce06c52f5b98b02f913d653ffe972661a" 530 | integrity sha512-evhTyWhbwbI3/U6dZAnx/ePoV7H6OUG+OjiJFHmhr9FPn0VShjwC2kdxqIuQ/+1P50TMrneGzMeyMTFOjKSnAw== 531 | dependencies: 532 | "@babel/helper-module-transforms" "^7.8.3" 533 | "@babel/helper-plugin-utils" "^7.8.3" 534 | 535 | "@babel/plugin-transform-named-capturing-groups-regex@^7.8.3": 536 | version "7.8.3" 537 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c" 538 | integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw== 539 | dependencies: 540 | "@babel/helper-create-regexp-features-plugin" "^7.8.3" 541 | 542 | "@babel/plugin-transform-new-target@^7.8.3": 543 | version "7.8.3" 544 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz#60cc2ae66d85c95ab540eb34babb6434d4c70c43" 545 | integrity sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw== 546 | dependencies: 547 | "@babel/helper-plugin-utils" "^7.8.3" 548 | 549 | "@babel/plugin-transform-object-super@^7.8.3": 550 | version "7.8.3" 551 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725" 552 | integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== 553 | dependencies: 554 | "@babel/helper-plugin-utils" "^7.8.3" 555 | "@babel/helper-replace-supers" "^7.8.3" 556 | 557 | "@babel/plugin-transform-parameters@^7.8.7": 558 | version "7.8.8" 559 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.8.tgz#0381de466c85d5404565243660c4496459525daf" 560 | integrity sha512-hC4Ld/Ulpf1psQciWWwdnUspQoQco2bMzSrwU6TmzRlvoYQe4rQFy9vnCZDTlVeCQj0JPfL+1RX0V8hCJvkgBA== 561 | dependencies: 562 | "@babel/helper-call-delegate" "^7.8.7" 563 | "@babel/helper-get-function-arity" "^7.8.3" 564 | "@babel/helper-plugin-utils" "^7.8.3" 565 | 566 | "@babel/plugin-transform-property-literals@^7.8.3": 567 | version "7.8.3" 568 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263" 569 | integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== 570 | dependencies: 571 | "@babel/helper-plugin-utils" "^7.8.3" 572 | 573 | "@babel/plugin-transform-react-display-name@^7.8.3": 574 | version "7.8.3" 575 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5" 576 | integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A== 577 | dependencies: 578 | "@babel/helper-plugin-utils" "^7.8.3" 579 | 580 | "@babel/plugin-transform-react-jsx-self@^7.8.3": 581 | version "7.8.3" 582 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.8.3.tgz#c4f178b2aa588ecfa8d077ea80d4194ee77ed702" 583 | integrity sha512-01OT7s5oa0XTLf2I8XGsL8+KqV9lx3EZV+jxn/L2LQ97CGKila2YMroTkCEIE0HV/FF7CMSRsIAybopdN9NTdg== 584 | dependencies: 585 | "@babel/helper-plugin-utils" "^7.8.3" 586 | "@babel/plugin-syntax-jsx" "^7.8.3" 587 | 588 | "@babel/plugin-transform-react-jsx-source@^7.8.3": 589 | version "7.8.3" 590 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.8.3.tgz#951e75a8af47f9f120db731be095d2b2c34920e0" 591 | integrity sha512-PLMgdMGuVDtRS/SzjNEQYUT8f4z1xb2BAT54vM1X5efkVuYBf5WyGUMbpmARcfq3NaglIwz08UVQK4HHHbC6ag== 592 | dependencies: 593 | "@babel/helper-plugin-utils" "^7.8.3" 594 | "@babel/plugin-syntax-jsx" "^7.8.3" 595 | 596 | "@babel/plugin-transform-react-jsx@^7.8.3": 597 | version "7.8.3" 598 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.8.3.tgz#4220349c0390fdefa505365f68c103562ab2fc4a" 599 | integrity sha512-r0h+mUiyL595ikykci+fbwm9YzmuOrUBi0b+FDIKmi3fPQyFokWVEMJnRWHJPPQEjyFJyna9WZC6Viv6UHSv1g== 600 | dependencies: 601 | "@babel/helper-builder-react-jsx" "^7.8.3" 602 | "@babel/helper-plugin-utils" "^7.8.3" 603 | "@babel/plugin-syntax-jsx" "^7.8.3" 604 | 605 | "@babel/plugin-transform-regenerator@^7.8.7": 606 | version "7.8.7" 607 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8" 608 | integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== 609 | dependencies: 610 | regenerator-transform "^0.14.2" 611 | 612 | "@babel/plugin-transform-reserved-words@^7.8.3": 613 | version "7.8.3" 614 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz#9a0635ac4e665d29b162837dd3cc50745dfdf1f5" 615 | integrity sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A== 616 | dependencies: 617 | "@babel/helper-plugin-utils" "^7.8.3" 618 | 619 | "@babel/plugin-transform-shorthand-properties@^7.8.3": 620 | version "7.8.3" 621 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8" 622 | integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== 623 | dependencies: 624 | "@babel/helper-plugin-utils" "^7.8.3" 625 | 626 | "@babel/plugin-transform-spread@^7.8.3": 627 | version "7.8.3" 628 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8" 629 | integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== 630 | dependencies: 631 | "@babel/helper-plugin-utils" "^7.8.3" 632 | 633 | "@babel/plugin-transform-sticky-regex@^7.8.3": 634 | version "7.8.3" 635 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100" 636 | integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== 637 | dependencies: 638 | "@babel/helper-plugin-utils" "^7.8.3" 639 | "@babel/helper-regex" "^7.8.3" 640 | 641 | "@babel/plugin-transform-template-literals@^7.8.3": 642 | version "7.8.3" 643 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80" 644 | integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== 645 | dependencies: 646 | "@babel/helper-annotate-as-pure" "^7.8.3" 647 | "@babel/helper-plugin-utils" "^7.8.3" 648 | 649 | "@babel/plugin-transform-typeof-symbol@^7.8.4": 650 | version "7.8.4" 651 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz#ede4062315ce0aaf8a657a920858f1a2f35fc412" 652 | integrity sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg== 653 | dependencies: 654 | "@babel/helper-plugin-utils" "^7.8.3" 655 | 656 | "@babel/plugin-transform-unicode-regex@^7.8.3": 657 | version "7.8.3" 658 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad" 659 | integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== 660 | dependencies: 661 | "@babel/helper-create-regexp-features-plugin" "^7.8.3" 662 | "@babel/helper-plugin-utils" "^7.8.3" 663 | 664 | "@babel/preset-env@^7.4.5": 665 | version "7.8.7" 666 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.8.7.tgz#1fc7d89c7f75d2d70c2b6768de6c2e049b3cb9db" 667 | integrity sha512-BYftCVOdAYJk5ASsznKAUl53EMhfBbr8CJ1X+AJLfGPscQkwJFiaV/Wn9DPH/7fzm2v6iRYJKYHSqyynTGw0nw== 668 | dependencies: 669 | "@babel/compat-data" "^7.8.6" 670 | "@babel/helper-compilation-targets" "^7.8.7" 671 | "@babel/helper-module-imports" "^7.8.3" 672 | "@babel/helper-plugin-utils" "^7.8.3" 673 | "@babel/plugin-proposal-async-generator-functions" "^7.8.3" 674 | "@babel/plugin-proposal-dynamic-import" "^7.8.3" 675 | "@babel/plugin-proposal-json-strings" "^7.8.3" 676 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3" 677 | "@babel/plugin-proposal-object-rest-spread" "^7.8.3" 678 | "@babel/plugin-proposal-optional-catch-binding" "^7.8.3" 679 | "@babel/plugin-proposal-optional-chaining" "^7.8.3" 680 | "@babel/plugin-proposal-unicode-property-regex" "^7.8.3" 681 | "@babel/plugin-syntax-async-generators" "^7.8.0" 682 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 683 | "@babel/plugin-syntax-json-strings" "^7.8.0" 684 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 685 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 686 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 687 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 688 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 689 | "@babel/plugin-transform-arrow-functions" "^7.8.3" 690 | "@babel/plugin-transform-async-to-generator" "^7.8.3" 691 | "@babel/plugin-transform-block-scoped-functions" "^7.8.3" 692 | "@babel/plugin-transform-block-scoping" "^7.8.3" 693 | "@babel/plugin-transform-classes" "^7.8.6" 694 | "@babel/plugin-transform-computed-properties" "^7.8.3" 695 | "@babel/plugin-transform-destructuring" "^7.8.3" 696 | "@babel/plugin-transform-dotall-regex" "^7.8.3" 697 | "@babel/plugin-transform-duplicate-keys" "^7.8.3" 698 | "@babel/plugin-transform-exponentiation-operator" "^7.8.3" 699 | "@babel/plugin-transform-for-of" "^7.8.6" 700 | "@babel/plugin-transform-function-name" "^7.8.3" 701 | "@babel/plugin-transform-literals" "^7.8.3" 702 | "@babel/plugin-transform-member-expression-literals" "^7.8.3" 703 | "@babel/plugin-transform-modules-amd" "^7.8.3" 704 | "@babel/plugin-transform-modules-commonjs" "^7.8.3" 705 | "@babel/plugin-transform-modules-systemjs" "^7.8.3" 706 | "@babel/plugin-transform-modules-umd" "^7.8.3" 707 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3" 708 | "@babel/plugin-transform-new-target" "^7.8.3" 709 | "@babel/plugin-transform-object-super" "^7.8.3" 710 | "@babel/plugin-transform-parameters" "^7.8.7" 711 | "@babel/plugin-transform-property-literals" "^7.8.3" 712 | "@babel/plugin-transform-regenerator" "^7.8.7" 713 | "@babel/plugin-transform-reserved-words" "^7.8.3" 714 | "@babel/plugin-transform-shorthand-properties" "^7.8.3" 715 | "@babel/plugin-transform-spread" "^7.8.3" 716 | "@babel/plugin-transform-sticky-regex" "^7.8.3" 717 | "@babel/plugin-transform-template-literals" "^7.8.3" 718 | "@babel/plugin-transform-typeof-symbol" "^7.8.4" 719 | "@babel/plugin-transform-unicode-regex" "^7.8.3" 720 | "@babel/types" "^7.8.7" 721 | browserslist "^4.8.5" 722 | core-js-compat "^3.6.2" 723 | invariant "^2.2.2" 724 | levenary "^1.1.1" 725 | semver "^5.5.0" 726 | 727 | "@babel/preset-react@^7.0.0": 728 | version "7.8.3" 729 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.8.3.tgz#23dc63f1b5b0751283e04252e78cf1d6589273d2" 730 | integrity sha512-9hx0CwZg92jGb7iHYQVgi0tOEHP/kM60CtWJQnmbATSPIQQ2xYzfoCI3EdqAhFBeeJwYMdWQuDUHMsuDbH9hyQ== 731 | dependencies: 732 | "@babel/helper-plugin-utils" "^7.8.3" 733 | "@babel/plugin-transform-react-display-name" "^7.8.3" 734 | "@babel/plugin-transform-react-jsx" "^7.8.3" 735 | "@babel/plugin-transform-react-jsx-self" "^7.8.3" 736 | "@babel/plugin-transform-react-jsx-source" "^7.8.3" 737 | 738 | "@babel/runtime@^7.8.4": 739 | version "7.8.7" 740 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.7.tgz#8fefce9802db54881ba59f90bb28719b4996324d" 741 | integrity sha512-+AATMUFppJDw6aiR5NVPHqIQBlV/Pj8wY/EZH+lmvRdUo9xBaz/rF3alAwFJQavvKfeOlPE7oaaDHVbcySbCsg== 742 | dependencies: 743 | regenerator-runtime "^0.13.4" 744 | 745 | "@babel/template@^7.8.3", "@babel/template@^7.8.6": 746 | version "7.8.6" 747 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b" 748 | integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== 749 | dependencies: 750 | "@babel/code-frame" "^7.8.3" 751 | "@babel/parser" "^7.8.6" 752 | "@babel/types" "^7.8.6" 753 | 754 | "@babel/traverse@^7.8.3", "@babel/traverse@^7.8.4", "@babel/traverse@^7.8.6": 755 | version "7.8.6" 756 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.6.tgz#acfe0c64e1cd991b3e32eae813a6eb564954b5ff" 757 | integrity sha512-2B8l0db/DPi8iinITKuo7cbPznLCEk0kCxDoB9/N6gGNg/gxOXiR/IcymAFPiBwk5w6TtQ27w4wpElgp9btR9A== 758 | dependencies: 759 | "@babel/code-frame" "^7.8.3" 760 | "@babel/generator" "^7.8.6" 761 | "@babel/helper-function-name" "^7.8.3" 762 | "@babel/helper-split-export-declaration" "^7.8.3" 763 | "@babel/parser" "^7.8.6" 764 | "@babel/types" "^7.8.6" 765 | debug "^4.1.0" 766 | globals "^11.1.0" 767 | lodash "^4.17.13" 768 | 769 | "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.8.7": 770 | version "7.8.7" 771 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.7.tgz#1fc9729e1acbb2337d5b6977a63979b4819f5d1d" 772 | integrity sha512-k2TreEHxFA4CjGkL+GYjRyx35W0Mr7DP5+9q6WMkyKXB+904bYmG40syjMFV0oLlhhFCwWl0vA0DyzTDkwAiJw== 773 | dependencies: 774 | esutils "^2.0.2" 775 | lodash "^4.17.13" 776 | to-fast-properties "^2.0.0" 777 | 778 | "@types/estree@*": 779 | version "0.0.42" 780 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.42.tgz#8d0c1f480339efedb3e46070e22dd63e0430dd11" 781 | integrity sha512-K1DPVvnBCPxzD+G51/cxVIoc2X8uUVl1zpJeE6iKcgHMj4+tbat5Xu4TjV7v2QSDbIeAfLi2hIk+u2+s0MlpUQ== 782 | 783 | "@types/estree@0.0.39": 784 | version "0.0.39" 785 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 786 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 787 | 788 | "@types/node@*": 789 | version "11.13.2" 790 | resolved "https://registry.yarnpkg.com/@types/node/-/node-11.13.2.tgz#dc85dde46aa8740bb4aed54b8104250f8f849503" 791 | integrity sha512-HOtU5KqROKT7qX/itKHuTtt5fV0iXbheQvrgbLNXFJQBY/eh+VS5vmmTAVlo3qIGMsypm0G4N1t2AXjy1ZicaQ== 792 | 793 | "@types/resolve@0.0.8": 794 | version "0.0.8" 795 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194" 796 | integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== 797 | dependencies: 798 | "@types/node" "*" 799 | 800 | acorn@^7.1.0: 801 | version "7.1.1" 802 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" 803 | integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== 804 | 805 | ansi-styles@^3.2.1: 806 | version "3.2.1" 807 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 808 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 809 | dependencies: 810 | color-convert "^1.9.0" 811 | 812 | babel-plugin-dynamic-import-node@^2.3.0: 813 | version "2.3.0" 814 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" 815 | integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== 816 | dependencies: 817 | object.assign "^4.1.0" 818 | 819 | balanced-match@^1.0.0: 820 | version "1.0.0" 821 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 822 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 823 | 824 | brace-expansion@^1.1.7: 825 | version "1.1.11" 826 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 827 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 828 | dependencies: 829 | balanced-match "^1.0.0" 830 | concat-map "0.0.1" 831 | 832 | browserslist@^4.8.3, browserslist@^4.8.5, browserslist@^4.9.1: 833 | version "4.9.1" 834 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.9.1.tgz#01ffb9ca31a1aef7678128fc6a2253316aa7287c" 835 | integrity sha512-Q0DnKq20End3raFulq6Vfp1ecB9fh8yUNV55s8sekaDDeqBaCtWlRHCUdaWyUeSSBJM7IbM6HcsyaeYqgeDhnw== 836 | dependencies: 837 | caniuse-lite "^1.0.30001030" 838 | electron-to-chromium "^1.3.363" 839 | node-releases "^1.1.50" 840 | 841 | buffer-shims@~1.0.0: 842 | version "1.0.0" 843 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 844 | integrity sha1-mXjOMXOIxkmth5MCjDR37wRKi1E= 845 | 846 | builtin-modules@^3.1.0: 847 | version "3.1.0" 848 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" 849 | integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== 850 | 851 | caniuse-lite@^1.0.30001030: 852 | version "1.0.30001035" 853 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001035.tgz#2bb53b8aa4716b2ed08e088d4dc816a5fe089a1e" 854 | integrity sha512-C1ZxgkuA4/bUEdMbU5WrGY4+UhMFFiXrgNAfxiMIqWgFTWfv/xsZCS2xEHT2LMq7xAZfuAnu6mcqyDl0ZR6wLQ== 855 | 856 | chalk@2.4.2, chalk@^2.0.0: 857 | version "2.4.2" 858 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 859 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 860 | dependencies: 861 | ansi-styles "^3.2.1" 862 | escape-string-regexp "^1.0.5" 863 | supports-color "^5.3.0" 864 | 865 | color-convert@^1.9.0: 866 | version "1.9.3" 867 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 868 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 869 | dependencies: 870 | color-name "1.1.3" 871 | 872 | color-name@1.1.3: 873 | version "1.1.3" 874 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 875 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 876 | 877 | concat-map@0.0.1: 878 | version "0.0.1" 879 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 880 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 881 | 882 | convert-source-map@^1.7.0: 883 | version "1.7.0" 884 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 885 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 886 | dependencies: 887 | safe-buffer "~5.1.1" 888 | 889 | core-js-compat@^3.6.2: 890 | version "3.6.4" 891 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.4.tgz#938476569ebb6cda80d339bcf199fae4f16fff17" 892 | integrity sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA== 893 | dependencies: 894 | browserslist "^4.8.3" 895 | semver "7.0.0" 896 | 897 | core-util-is@~1.0.0: 898 | version "1.0.2" 899 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 900 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 901 | 902 | debug@^4.1.0: 903 | version "4.1.1" 904 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 905 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 906 | dependencies: 907 | ms "^2.1.1" 908 | 909 | deep-equal@~1.1.1: 910 | version "1.1.1" 911 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" 912 | integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== 913 | dependencies: 914 | is-arguments "^1.0.4" 915 | is-date-object "^1.0.1" 916 | is-regex "^1.0.4" 917 | object-is "^1.0.1" 918 | object-keys "^1.1.1" 919 | regexp.prototype.flags "^1.2.0" 920 | 921 | define-properties@^1.1.2, define-properties@^1.1.3: 922 | version "1.1.3" 923 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 924 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 925 | dependencies: 926 | object-keys "^1.0.12" 927 | 928 | defined@~1.0.0: 929 | version "1.0.0" 930 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 931 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 932 | 933 | dotignore@~0.1.2: 934 | version "0.1.2" 935 | resolved "https://registry.yarnpkg.com/dotignore/-/dotignore-0.1.2.tgz#f942f2200d28c3a76fbdd6f0ee9f3257c8a2e905" 936 | integrity sha512-UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw== 937 | dependencies: 938 | minimatch "^3.0.4" 939 | 940 | electron-to-chromium@^1.3.363: 941 | version "1.3.376" 942 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.376.tgz#7cb7b5205564a06c8f8ecfbe832cbd47a1224bb1" 943 | integrity sha512-cv/PYVz5szeMz192ngilmezyPNFkUjuynuL2vNdiqIrio440nfTDdc0JJU0TS2KHLSVCs9gBbt4CFqM+HcBnjw== 944 | 945 | es-abstract@^1.17.0-next.1: 946 | version "1.17.4" 947 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.4.tgz#e3aedf19706b20e7c2594c35fc0d57605a79e184" 948 | integrity sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ== 949 | dependencies: 950 | es-to-primitive "^1.2.1" 951 | function-bind "^1.1.1" 952 | has "^1.0.3" 953 | has-symbols "^1.0.1" 954 | is-callable "^1.1.5" 955 | is-regex "^1.0.5" 956 | object-inspect "^1.7.0" 957 | object-keys "^1.1.1" 958 | object.assign "^4.1.0" 959 | string.prototype.trimleft "^2.1.1" 960 | string.prototype.trimright "^2.1.1" 961 | 962 | es-to-primitive@^1.2.1: 963 | version "1.2.1" 964 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 965 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 966 | dependencies: 967 | is-callable "^1.1.4" 968 | is-date-object "^1.0.1" 969 | is-symbol "^1.0.2" 970 | 971 | escape-string-regexp@^1.0.5: 972 | version "1.0.5" 973 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 974 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 975 | 976 | estree-walker@^0.6.1: 977 | version "0.6.1" 978 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 979 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 980 | 981 | esutils@^2.0.0, esutils@^2.0.2: 982 | version "2.0.3" 983 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 984 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 985 | 986 | for-each@~0.3.3: 987 | version "0.3.3" 988 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" 989 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 990 | dependencies: 991 | is-callable "^1.1.3" 992 | 993 | fs.realpath@^1.0.0: 994 | version "1.0.0" 995 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 996 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 997 | 998 | function-bind@^1.1.1, function-bind@~1.1.1: 999 | version "1.1.1" 1000 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1001 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1002 | 1003 | gensync@^1.0.0-beta.1: 1004 | version "1.0.0-beta.1" 1005 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" 1006 | integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== 1007 | 1008 | glob@^7.0.0: 1009 | version "7.1.3" 1010 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 1011 | integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== 1012 | dependencies: 1013 | fs.realpath "^1.0.0" 1014 | inflight "^1.0.4" 1015 | inherits "2" 1016 | minimatch "^3.0.4" 1017 | once "^1.3.0" 1018 | path-is-absolute "^1.0.0" 1019 | 1020 | glob@~7.1.6: 1021 | version "7.1.6" 1022 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1023 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1024 | dependencies: 1025 | fs.realpath "^1.0.0" 1026 | inflight "^1.0.4" 1027 | inherits "2" 1028 | minimatch "^3.0.4" 1029 | once "^1.3.0" 1030 | path-is-absolute "^1.0.0" 1031 | 1032 | globals@^11.1.0: 1033 | version "11.12.0" 1034 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1035 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1036 | 1037 | has-flag@^3.0.0: 1038 | version "3.0.0" 1039 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1040 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1041 | 1042 | has-symbols@^1.0.0: 1043 | version "1.0.0" 1044 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1045 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= 1046 | 1047 | has-symbols@^1.0.1: 1048 | version "1.0.1" 1049 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1050 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1051 | 1052 | has@^1.0.1, has@^1.0.3, has@~1.0.3: 1053 | version "1.0.3" 1054 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1055 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1056 | dependencies: 1057 | function-bind "^1.1.1" 1058 | 1059 | inflight@^1.0.4: 1060 | version "1.0.6" 1061 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1062 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1063 | dependencies: 1064 | once "^1.3.0" 1065 | wrappy "1" 1066 | 1067 | inherits@2, inherits@~2.0.1: 1068 | version "2.0.3" 1069 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1070 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1071 | 1072 | inherits@~2.0.4: 1073 | version "2.0.4" 1074 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1075 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1076 | 1077 | interpret@^1.0.0: 1078 | version "1.2.0" 1079 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" 1080 | integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== 1081 | 1082 | invariant@^2.2.2, invariant@^2.2.4: 1083 | version "2.2.4" 1084 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1085 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 1086 | dependencies: 1087 | loose-envify "^1.0.0" 1088 | 1089 | is-arguments@^1.0.4: 1090 | version "1.0.4" 1091 | resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3" 1092 | integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA== 1093 | 1094 | is-callable@^1.1.3, is-callable@^1.1.4: 1095 | version "1.1.4" 1096 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1097 | integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== 1098 | 1099 | is-callable@^1.1.5: 1100 | version "1.1.5" 1101 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" 1102 | integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== 1103 | 1104 | is-date-object@^1.0.1: 1105 | version "1.0.1" 1106 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1107 | integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= 1108 | 1109 | is-module@^1.0.0: 1110 | version "1.0.0" 1111 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 1112 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 1113 | 1114 | is-reference@^1.1.2: 1115 | version "1.1.4" 1116 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.1.4.tgz#3f95849886ddb70256a3e6d062b1a68c13c51427" 1117 | integrity sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw== 1118 | dependencies: 1119 | "@types/estree" "0.0.39" 1120 | 1121 | is-regex@^1.0.4: 1122 | version "1.0.4" 1123 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1124 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= 1125 | dependencies: 1126 | has "^1.0.1" 1127 | 1128 | is-regex@^1.0.5, is-regex@~1.0.5: 1129 | version "1.0.5" 1130 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" 1131 | integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== 1132 | dependencies: 1133 | has "^1.0.3" 1134 | 1135 | is-symbol@^1.0.2: 1136 | version "1.0.2" 1137 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 1138 | integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== 1139 | dependencies: 1140 | has-symbols "^1.0.0" 1141 | 1142 | isarray@~1.0.0: 1143 | version "1.0.0" 1144 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1145 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1146 | 1147 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1148 | version "4.0.0" 1149 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1150 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1151 | 1152 | jsesc@^2.5.1: 1153 | version "2.5.2" 1154 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1155 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1156 | 1157 | jsesc@~0.5.0: 1158 | version "0.5.0" 1159 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1160 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 1161 | 1162 | json5@^2.1.0: 1163 | version "2.1.1" 1164 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6" 1165 | integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ== 1166 | dependencies: 1167 | minimist "^1.2.0" 1168 | 1169 | leven@^3.1.0: 1170 | version "3.1.0" 1171 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 1172 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 1173 | 1174 | levenary@^1.1.1: 1175 | version "1.1.1" 1176 | resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" 1177 | integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== 1178 | dependencies: 1179 | leven "^3.1.0" 1180 | 1181 | lodash@^4.17.13: 1182 | version "4.17.15" 1183 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 1184 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 1185 | 1186 | loose-envify@^1.0.0: 1187 | version "1.4.0" 1188 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1189 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1190 | dependencies: 1191 | js-tokens "^3.0.0 || ^4.0.0" 1192 | 1193 | magic-string@^0.25.2: 1194 | version "0.25.2" 1195 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.2.tgz#139c3a729515ec55e96e69e82a11fe890a293ad9" 1196 | integrity sha512-iLs9mPjh9IuTtRsqqhNGYcZXGei0Nh/A4xirrsqW7c+QhKVFL2vm7U09ru6cHRD22azaP/wMDgI+HCqbETMTtg== 1197 | dependencies: 1198 | sourcemap-codec "^1.4.4" 1199 | 1200 | minimatch@^3.0.4: 1201 | version "3.0.4" 1202 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1203 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1204 | dependencies: 1205 | brace-expansion "^1.1.7" 1206 | 1207 | minimist@^1.2.0, minimist@~1.2.0: 1208 | version "1.2.5" 1209 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1210 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1211 | 1212 | ms@^2.1.1: 1213 | version "2.1.2" 1214 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1215 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1216 | 1217 | node-releases@^1.1.50: 1218 | version "1.1.52" 1219 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.52.tgz#bcffee3e0a758e92e44ecfaecd0a47554b0bcba9" 1220 | integrity sha512-snSiT1UypkgGt2wxPqS6ImEUICbNCMb31yaxWrOLXjhlt2z2/IBpaOxzONExqSm4y5oLnAqjjRWu+wsDzK5yNQ== 1221 | dependencies: 1222 | semver "^6.3.0" 1223 | 1224 | object-inspect@^1.7.0, object-inspect@~1.7.0: 1225 | version "1.7.0" 1226 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" 1227 | integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== 1228 | 1229 | object-is@^1.0.1: 1230 | version "1.0.2" 1231 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.2.tgz#6b80eb84fe451498f65007982f035a5b445edec4" 1232 | integrity sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ== 1233 | 1234 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 1235 | version "1.1.1" 1236 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1237 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1238 | 1239 | object.assign@^4.1.0: 1240 | version "4.1.0" 1241 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1242 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1243 | dependencies: 1244 | define-properties "^1.1.2" 1245 | function-bind "^1.1.1" 1246 | has-symbols "^1.0.0" 1247 | object-keys "^1.0.11" 1248 | 1249 | once@^1.3.0: 1250 | version "1.4.0" 1251 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1252 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1253 | dependencies: 1254 | wrappy "1" 1255 | 1256 | path-is-absolute@^1.0.0: 1257 | version "1.0.1" 1258 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1259 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1260 | 1261 | path-parse@^1.0.6: 1262 | version "1.0.6" 1263 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1264 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1265 | 1266 | private@^0.1.8: 1267 | version "0.1.8" 1268 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1269 | integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== 1270 | 1271 | process-nextick-args@~1.0.6: 1272 | version "1.0.7" 1273 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1274 | integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= 1275 | 1276 | re-emitter@1.1.3: 1277 | version "1.1.3" 1278 | resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.3.tgz#fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7" 1279 | integrity sha1-+p4xn/3u6zWycpbvDz03TawvUqc= 1280 | 1281 | readable-stream@2.2.9: 1282 | version "2.2.9" 1283 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 1284 | integrity sha1-z3jsb0ptHrQ9JkiMrJfwQudLf8g= 1285 | dependencies: 1286 | buffer-shims "~1.0.0" 1287 | core-util-is "~1.0.0" 1288 | inherits "~2.0.1" 1289 | isarray "~1.0.0" 1290 | process-nextick-args "~1.0.6" 1291 | string_decoder "~1.0.0" 1292 | util-deprecate "~1.0.1" 1293 | 1294 | rechoir@^0.6.2: 1295 | version "0.6.2" 1296 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1297 | integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= 1298 | dependencies: 1299 | resolve "^1.1.6" 1300 | 1301 | regenerate-unicode-properties@^8.2.0: 1302 | version "8.2.0" 1303 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 1304 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 1305 | dependencies: 1306 | regenerate "^1.4.0" 1307 | 1308 | regenerate@^1.4.0: 1309 | version "1.4.0" 1310 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 1311 | integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== 1312 | 1313 | regenerator-runtime@^0.13.4: 1314 | version "0.13.5" 1315 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" 1316 | integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== 1317 | 1318 | regenerator-transform@^0.14.2: 1319 | version "0.14.3" 1320 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.3.tgz#54aebff2ef58c0ae61e695ad1b9a9d65995fff78" 1321 | integrity sha512-zXHNKJspmONxBViAb3ZUmFoFPnTBs3zFhCEZJiwp/gkNzxVbTqNJVjYKx6Qk1tQ1P4XLf4TbH9+KBB7wGoAaUw== 1322 | dependencies: 1323 | "@babel/runtime" "^7.8.4" 1324 | private "^0.1.8" 1325 | 1326 | regexp.prototype.flags@^1.2.0: 1327 | version "1.3.0" 1328 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" 1329 | integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== 1330 | dependencies: 1331 | define-properties "^1.1.3" 1332 | es-abstract "^1.17.0-next.1" 1333 | 1334 | regexpu-core@^4.7.0: 1335 | version "4.7.0" 1336 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" 1337 | integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== 1338 | dependencies: 1339 | regenerate "^1.4.0" 1340 | regenerate-unicode-properties "^8.2.0" 1341 | regjsgen "^0.5.1" 1342 | regjsparser "^0.6.4" 1343 | unicode-match-property-ecmascript "^1.0.4" 1344 | unicode-match-property-value-ecmascript "^1.2.0" 1345 | 1346 | regjsgen@^0.5.1: 1347 | version "0.5.1" 1348 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" 1349 | integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== 1350 | 1351 | regjsparser@^0.6.4: 1352 | version "0.6.4" 1353 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" 1354 | integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== 1355 | dependencies: 1356 | jsesc "~0.5.0" 1357 | 1358 | resolve@^1.1.6, resolve@^1.10.0: 1359 | version "1.10.0" 1360 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" 1361 | integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg== 1362 | dependencies: 1363 | path-parse "^1.0.6" 1364 | 1365 | resolve@^1.11.0, resolve@^1.11.1, resolve@^1.3.2: 1366 | version "1.15.1" 1367 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8" 1368 | integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w== 1369 | dependencies: 1370 | path-parse "^1.0.6" 1371 | 1372 | resolve@~1.14.2: 1373 | version "1.14.2" 1374 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.14.2.tgz#dbf31d0fa98b1f29aa5169783b9c290cb865fea2" 1375 | integrity sha512-EjlOBLBO1kxsUxsKjLt7TAECyKW6fOh1VRkykQkKGzcBbjjPIxBqGh0jf7GJ3k/f5mxMqW3htMD3WdTUVtW8HQ== 1376 | dependencies: 1377 | path-parse "^1.0.6" 1378 | 1379 | resumer@~0.0.0: 1380 | version "0.0.0" 1381 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 1382 | integrity sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k= 1383 | dependencies: 1384 | through "~2.3.4" 1385 | 1386 | rollup-plugin-babel@^4.3.2: 1387 | version "4.4.0" 1388 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz#d15bd259466a9d1accbdb2fe2fff17c52d030acb" 1389 | integrity sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw== 1390 | dependencies: 1391 | "@babel/helper-module-imports" "^7.0.0" 1392 | rollup-pluginutils "^2.8.1" 1393 | 1394 | rollup-plugin-commonjs@10.1.0: 1395 | version "10.1.0" 1396 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz#417af3b54503878e084d127adf4d1caf8beb86fb" 1397 | integrity sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q== 1398 | dependencies: 1399 | estree-walker "^0.6.1" 1400 | is-reference "^1.1.2" 1401 | magic-string "^0.25.2" 1402 | resolve "^1.11.0" 1403 | rollup-pluginutils "^2.8.1" 1404 | 1405 | rollup-plugin-json@^4.0.0: 1406 | version "4.0.0" 1407 | resolved "https://registry.yarnpkg.com/rollup-plugin-json/-/rollup-plugin-json-4.0.0.tgz#a18da0a4b30bf5ca1ee76ddb1422afbb84ae2b9e" 1408 | integrity sha512-hgb8N7Cgfw5SZAkb3jf0QXii6QX/FOkiIq2M7BAQIEydjHvTyxXHQiIzZaTFgx1GK0cRCHOCBHIyEkkLdWKxow== 1409 | dependencies: 1410 | rollup-pluginutils "^2.5.0" 1411 | 1412 | rollup-plugin-node-resolve@5.2.0: 1413 | version "5.2.0" 1414 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz#730f93d10ed202473b1fb54a5997a7db8c6d8523" 1415 | integrity sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw== 1416 | dependencies: 1417 | "@types/resolve" "0.0.8" 1418 | builtin-modules "^3.1.0" 1419 | is-module "^1.0.0" 1420 | resolve "^1.11.1" 1421 | rollup-pluginutils "^2.8.1" 1422 | 1423 | rollup-plugin-typescript@^1.0.1: 1424 | version "1.0.1" 1425 | resolved "https://registry.yarnpkg.com/rollup-plugin-typescript/-/rollup-plugin-typescript-1.0.1.tgz#86565033b714c3d1f3aba510aad3dc519f7091e9" 1426 | integrity sha512-rwJDNn9jv/NsKZuyBb/h0jsclP4CJ58qbvZt2Q9zDIGILF2LtdtvCqMOL+Gq9IVq5MTrTlHZNrn8h7VjQgd8tw== 1427 | dependencies: 1428 | resolve "^1.10.0" 1429 | rollup-pluginutils "^2.5.0" 1430 | 1431 | rollup-pluginutils@^2.5.0, rollup-pluginutils@^2.8.1: 1432 | version "2.8.2" 1433 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" 1434 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== 1435 | dependencies: 1436 | estree-walker "^0.6.1" 1437 | 1438 | rollup@1.31.1: 1439 | version "1.31.1" 1440 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.31.1.tgz#4170d6f87148d46e5fbe29b493f8f3ea3453c96f" 1441 | integrity sha512-2JREN1YdrS/kpPzEd33ZjtuNbOuBC3ePfuZBdKEybvqcEcszW1ckyVqzcEiEe0nE8sqHK+pbJg+PsAgRJ8+1dg== 1442 | dependencies: 1443 | "@types/estree" "*" 1444 | "@types/node" "*" 1445 | acorn "^7.1.0" 1446 | 1447 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1448 | version "5.1.2" 1449 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1450 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1451 | 1452 | semver@7.0.0: 1453 | version "7.0.0" 1454 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 1455 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 1456 | 1457 | semver@^5.4.1, semver@^5.5.0: 1458 | version "5.7.1" 1459 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1460 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1461 | 1462 | semver@^6.3.0: 1463 | version "6.3.0" 1464 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1465 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1466 | 1467 | shelljs@0.8.3: 1468 | version "0.8.3" 1469 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097" 1470 | integrity sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A== 1471 | dependencies: 1472 | glob "^7.0.0" 1473 | interpret "^1.0.0" 1474 | rechoir "^0.6.2" 1475 | 1476 | source-map@^0.5.0: 1477 | version "0.5.7" 1478 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1479 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 1480 | 1481 | sourcemap-codec@^1.4.4: 1482 | version "1.4.4" 1483 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.4.tgz#c63ea927c029dd6bd9a2b7fa03b3fec02ad56e9f" 1484 | integrity sha512-CYAPYdBu34781kLHkaW3m6b/uUSyMOC2R61gcYMWooeuaGtjof86ZA/8T+qVPPt7np1085CR9hmMGrySwEc8Xg== 1485 | 1486 | split@1.0.0: 1487 | version "1.0.0" 1488 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae" 1489 | integrity sha1-xDlc5oOrzSVLwo/h2rtuXCfc/64= 1490 | dependencies: 1491 | through "2" 1492 | 1493 | string.prototype.trim@~1.2.1: 1494 | version "1.2.1" 1495 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.1.tgz#141233dff32c82bfad80684d7e5f0869ee0fb782" 1496 | integrity sha512-MjGFEeqixw47dAMFMtgUro/I0+wNqZB5GKXGt1fFr24u3TzDXCPu7J9Buppzoe3r/LqkSDLDDJzE15RGWDGAVw== 1497 | dependencies: 1498 | define-properties "^1.1.3" 1499 | es-abstract "^1.17.0-next.1" 1500 | function-bind "^1.1.1" 1501 | 1502 | string.prototype.trimleft@^2.1.1: 1503 | version "2.1.1" 1504 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74" 1505 | integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag== 1506 | dependencies: 1507 | define-properties "^1.1.3" 1508 | function-bind "^1.1.1" 1509 | 1510 | string.prototype.trimright@^2.1.1: 1511 | version "2.1.1" 1512 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9" 1513 | integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g== 1514 | dependencies: 1515 | define-properties "^1.1.3" 1516 | function-bind "^1.1.1" 1517 | 1518 | string_decoder@~1.0.0: 1519 | version "1.0.3" 1520 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1521 | integrity sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ== 1522 | dependencies: 1523 | safe-buffer "~5.1.0" 1524 | 1525 | supports-color@^5.3.0: 1526 | version "5.5.0" 1527 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1528 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1529 | dependencies: 1530 | has-flag "^3.0.0" 1531 | 1532 | tap-dancer@0.2.0: 1533 | version "0.2.0" 1534 | resolved "https://registry.yarnpkg.com/tap-dancer/-/tap-dancer-0.2.0.tgz#54901f2ef3f75e07becfe61b1dd36f0e16616ecc" 1535 | integrity sha512-SKUl8jHmYf/7rugeFTwYGpguRi43zqOTVZOfeh3DKCAlazZerdXd11ER5kNVbsbdWc5FB8wwjlZhjTc0W69iGQ== 1536 | dependencies: 1537 | chalk "2.4.2" 1538 | tap-out "3.0.0" 1539 | 1540 | tap-out@3.0.0: 1541 | version "3.0.0" 1542 | resolved "https://registry.yarnpkg.com/tap-out/-/tap-out-3.0.0.tgz#2edd86498cb1c0d7f33293d5717f9a44d939186d" 1543 | integrity sha512-JzlrjCL3anqI9xHGPfYb6Mo+6nYs60m0tDy6i0sWhYDlrBDVerYPNWoUo1buK3YeWQFdm42KQv8wu9qLf1tL5A== 1544 | dependencies: 1545 | re-emitter "1.1.3" 1546 | readable-stream "2.2.9" 1547 | split "1.0.0" 1548 | trim "0.0.1" 1549 | 1550 | tape@4.13.0: 1551 | version "4.13.0" 1552 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.13.0.tgz#e2f581ff5f12a7cbd787e9f83c76c2851782fce2" 1553 | integrity sha512-J/hvA+GJnuWJ0Sj8Z0dmu3JgMNU+MmusvkCT7+SN4/2TklW18FNCp/UuHIEhPZwHfy4sXfKYgC7kypKg4umbOw== 1554 | dependencies: 1555 | deep-equal "~1.1.1" 1556 | defined "~1.0.0" 1557 | dotignore "~0.1.2" 1558 | for-each "~0.3.3" 1559 | function-bind "~1.1.1" 1560 | glob "~7.1.6" 1561 | has "~1.0.3" 1562 | inherits "~2.0.4" 1563 | is-regex "~1.0.5" 1564 | minimist "~1.2.0" 1565 | object-inspect "~1.7.0" 1566 | resolve "~1.14.2" 1567 | resumer "~0.0.0" 1568 | string.prototype.trim "~1.2.1" 1569 | through "~2.3.8" 1570 | 1571 | through@2, through@~2.3.4, through@~2.3.8: 1572 | version "2.3.8" 1573 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1574 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 1575 | 1576 | to-fast-properties@^2.0.0: 1577 | version "2.0.0" 1578 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1579 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 1580 | 1581 | trim@0.0.1: 1582 | version "0.0.1" 1583 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 1584 | integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0= 1585 | 1586 | tslib@^1.10.0: 1587 | version "1.11.1" 1588 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" 1589 | integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== 1590 | 1591 | typescript@^3.5.2: 1592 | version "3.8.3" 1593 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061" 1594 | integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w== 1595 | 1596 | unicode-canonical-property-names-ecmascript@^1.0.4: 1597 | version "1.0.4" 1598 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 1599 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 1600 | 1601 | unicode-match-property-ecmascript@^1.0.4: 1602 | version "1.0.4" 1603 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 1604 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 1605 | dependencies: 1606 | unicode-canonical-property-names-ecmascript "^1.0.4" 1607 | unicode-property-aliases-ecmascript "^1.0.4" 1608 | 1609 | unicode-match-property-value-ecmascript@^1.2.0: 1610 | version "1.2.0" 1611 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 1612 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 1613 | 1614 | unicode-property-aliases-ecmascript@^1.0.4: 1615 | version "1.1.0" 1616 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 1617 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 1618 | 1619 | util-deprecate@~1.0.1: 1620 | version "1.0.2" 1621 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1622 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1623 | 1624 | wrappy@1: 1625 | version "1.0.2" 1626 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1627 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1628 | --------------------------------------------------------------------------------