Beautiful
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Featherity Npm package, reorganize scripting. (#52)

* New setup for new NPM package

* Add build scripts for dist

* Add introduction readme

* Refactor names

* update package.json

* remove log

* rename variable

* Factoring

* Improve optimize script

* Add eslint config

* Eslint fixes

* rename import

* Move packeges

* Setup rollup and build progress

* Refactor scripts

* fix lint error

* remove lint disabler

* Bring back old libraries

* add indentation

* reset packages directory

* remove vscode setting files

* 0.1.0-alpha.0

* new version

* 0.1.0-alpha.1

* Fix build process

* Add create element to the entry file

* update version number

* publish new alhpa version

* fixing bugs

* Add jest and tests

* replace with XML createElement

* set new version

* Fix svg generation

* Add tests for main library

* Update docs

* Adjust tests and selectors

* update the spec

* Update README.md

* Update README.md

* Update README.md

* update version

* Update README.md

* Move function to helpers file

* rename license, package and readme

* Fix build files

* rename packages

Co-authored-by: Eric Fennis <eric.fennis@endurance.com>

authored by

Eric Fennis
Eric Fennis
and committed by
GitHub
11c6a2e9 8b527843

+4880 -3785
+11
.editorconfig
··· 1 + root = true 2 + 3 + [*] 4 + charset = utf-8 5 + indent_style = space 6 + indent_size = 2 7 + end_of_line = lf 8 + insert_final_newline = true 9 + trim_trailing_whitespace = true 10 + quote_type = single 11 + max_line_length = 100
+5
.eslintignore
··· 1 + dist 2 + build 3 + coverage 4 + lib 5 + tests
+21
.eslintrc.json
··· 1 + { 2 + "env": { 3 + "browser": true, 4 + "node": true 5 + }, 6 + "extends": ["airbnb-base", "prettier"], 7 + "plugins": ["import", "prettier"], 8 + "rules": { 9 + "no-console": "off", 10 + "no-param-reassign": "off", 11 + "no-shadow": "off", 12 + "no-use-before-define": "off", 13 + "prettier/prettier": [ 14 + "error", 15 + { 16 + "singleQuote": true, 17 + "trailingComma": "all" 18 + } 19 + ] 20 + } 21 + }
+8
.gitignore
··· 2 2 .next 3 3 .now 4 4 node_modules 5 + dist 6 + build 7 + lib 8 + sandbox 9 + stash 10 + coverage 11 + stats 12 + *.log
+4
.npmignore
··· 1 + .github 2 + packages 3 + stats 4 + build
+1 -1
CONTRIBUTING.md
··· 21 21 22 22 Before creating an icon request, please search to see if someone has requested the icon already. If there is an open request, please add a :+1:. 23 23 24 - If the icon has not already been requested, [create an issue](https://github.com/featherity/featherity/issues/new?title=Icon%20Request:) with a title of `Icon request: <icon name>` and add as much information as possible. 24 + If the icon has not already been requested, [create an issue](https://github.com/lucide-icons/lucide/issues/new?title=Icon%20Request:) with a title of `Icon request: <icon name>` and add as much information as possible.
+1 -1
LICENSE
··· 1 1 ISC License 2 2 3 - Copyright (c) 2020, Featherity Contributors 3 + Copyright (c) 2020, Lucide Contributors 4 4 5 5 Permission to use, copy, modify, and/or distribute this software for any 6 6 purpose with or without fee is hereby granted, provided that the above
+124 -8
README.md
··· 1 - # Featherity 1 + # Lucide 2 2 3 3 [![Discord](https://img.shields.io/discord/723074157486800936?label=chat&logo=discord&logoColor=%23ffffff&colorB=%237289DA)](https://discord.gg/EH6nSts) 4 4 5 - ## What is Featherity? 5 + ## What is Lucide? 6 6 7 - Featherity is a community-run fork of [Feather Icons](https://github.com/feathericons/feather), open for anyone to contribute icons. 7 + Lucide is a community-run fork of [Feather Icons](https://github.com/feathericons/feather), open for anyone to contribute icons. 8 8 9 9 Note that we are completely independent from Feather, so **icons submitted here won't get added to Feather Icons or its associated librairies**. 10 10 ··· 15 15 * [Contributing](#contributing) 16 16 * [License](#license) 17 17 18 + ## Installation 19 + 20 + ### Package Managers 21 + 22 + ``` bash 23 + npm install lucide 24 + #or 25 + yarn add lucide 26 + ``` 27 + 28 + ### CDN 29 + 30 + ``` html 31 + <!-- Development version --> 32 + <script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script> 33 + 34 + <!-- Production version --> 35 + <script src="https://unpkg.com/lucide@latest"></script> 36 + ``` 37 + 18 38 ## Usage 19 39 20 - At its core, Featherity is a collection of [SVG](https://svgontheweb.com/#svg) files. This means that you can use Feather icons in all the same ways you can use SVGs (e.g. `img`, `background-image`, `inline`, `object`, `embed`, `iframe`). Here's a helpful article detailing the many ways SVGs can be used on the web: [SVG on the Web – Implementation Options](https://svgontheweb.com/#implementation) 40 + At its core, Lucide is a collection of [SVG](https://svgontheweb.com/#svg) files. This means that you can use Feather icons in all the same ways you can use SVGs (e.g. `img`, `background-image`, `inline`, `object`, `embed`, `iframe`). Here's a helpful article detailing the many ways SVGs can be used on the web: [SVG on the Web – Implementation Options](https://svgontheweb.com/#implementation) 21 41 22 - The following are additional ways you can use Featherity. 42 + The following are additional ways you can use Lucide. 43 + With the Javascript library you can easily incorporate the icon you want in your webpage. 44 + 45 + ### With unpkg 46 + 47 + Here is a complete example with unpkg 48 + 49 + ```html 50 + <!DOCTYPE html> 51 + <body> 52 + <i icon-name="volume-2" class="my-class"></i> 53 + <i icon-name="x"></i> 54 + <i icon-name="menu"></i> 55 + 56 + <script src="https://unpkg.com/lucide@latest"></script> 57 + <script> 58 + lucide.createIcons(); 59 + </script> 60 + </body> 61 + ``` 62 + 63 + ### With ESModules 64 + 65 + To reduce bundle size, lucide is build to be fully threeshakeble. 66 + The `createIcons` function will search for HTMLElements with the attribute `icon-name` and replace it with the svg from the given icon name. 67 + 68 + ```html 69 + <!-- Your HTML file --> 70 + <i icon-name="menu"></i> 71 + ``` 72 + 73 + ```js 74 + import { createIcons, icons } from 'lucide'; 75 + 76 + // Caustion, this will import all the icons and bundle them. 77 + createIcons({icons}); 78 + 79 + // Recommended way, to include only the icons you need. 80 + import { createIcons, Menu, ArrowRight, Globe } from 'lucide'; 81 + 82 + createIcons({ 83 + icons: { 84 + Menu, 85 + ArrowRight, 86 + Globe, 87 + }, 88 + }); 89 + ``` 90 + 91 + #### Additional Options 92 + 93 + In the `createIcons` function you can pass some extra parameters to adjust the `nameAttr` or add custom attributes like for example classes. 94 + 95 + Here is a full example: 96 + 97 + ```js 98 + import { createIcons } from 'lucide'; 99 + 100 + createIcons({ 101 + attrs: { 102 + class: ['my-custom-class', 'icon'], 103 + 'stroke-width': 1, 104 + stroke: '#333', 105 + }, 106 + nameAttr: 'icon-name', // atrribute for the icon name. 107 + }); 108 + ``` 109 + 110 + #### Threeshake the library, only use the icons you use 111 + 112 + ```js 113 + import { createIcons, Menu, ArrowRight, Globe } from 'lucide'; 114 + 115 + createIcons({ 116 + icons: { 117 + Menu, 118 + ArrowRight, 119 + Globe, 120 + }, 121 + }); 122 + ``` 123 + 124 + #### Custom Element binding 125 + 126 + ```js 127 + import { createElement, Menu } from 'lucide'; 128 + 129 + const menuIcon = createElement(Menu); // Returns HTMLElement (svg) 130 + 131 + // set custom attributes with browser native functions 132 + menuIcon.setAttribute('stroke', '#333'); 133 + menuIcon.classList.add('my-icon-class'); 134 + 135 + // Append HTMLElement in webpage 136 + const myApp = document.getElementById('app'); 137 + myApp.appendChild(menuIcon); 138 + ``` 23 139 24 140 ### Figma 25 141 ··· 27 143 28 144 ## Contributing 29 145 30 - For more info on how to contribute please see the [contribution guidelines](https://github.com/featherity/featherity/blob/master/CONTRIBUTING.md). 146 + For more info on how to contribute please see the [contribution guidelines](https://github.com/lucide-icons/lucide/blob/master/CONTRIBUTING.md). 31 147 32 - Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/featherity/featherity/blob/master/README.md) 148 + Caught a mistake or want to contribute to the documentation? [Edit this page on Github](https://github.com/lucide-icons/lucide/blob/master/README.md) 33 149 34 150 ## Community 35 151 ··· 37 153 38 154 ## License 39 155 40 - Featherity is licensed under the [ISC License](https://github.com/featherity/featherity/blob/master/LICENSE). 156 + Lucide is licensed under the [ISC License](https://github.com/lucide-icons/lucide/blob/master/LICENSE).
+27
babel.config.js
··· 1 + module.exports = { 2 + presets: [ 3 + [ 4 + '@babel/env', 5 + { 6 + loose: true, 7 + modules: false, 8 + }, 9 + ], 10 + ], 11 + env: { 12 + test: { 13 + presets: ['@babel/env'], 14 + plugins: ['@babel/plugin-transform-runtime'], 15 + }, 16 + dev: { 17 + plugins: [ 18 + [ 19 + 'transform-inline-environment-variables', 20 + { 21 + include: ['NODE_ENV'], 22 + }, 23 + ], 24 + ], 25 + }, 26 + }, 27 + };
+14
jest.config.js
··· 1 + const esModules = ['lodash-es'].join('|'); 2 + 3 + module.exports = { 4 + verbose: true, 5 + roots: ['<rootDir>/src/', '<rootDir>/tests/'], 6 + moduleFileExtensions: ['js'], 7 + transformIgnorePatterns: [`/node_modules/(?!${esModules})`], 8 + moduleNameMapper: { 9 + '^@/(.*)$': '<rootDir>/src/$1', 10 + }, 11 + transform: { 12 + '^.+\\.js$': 'babel-jest', 13 + }, 14 + };
+59 -8
package.json
··· 1 1 { 2 - "private": true, 2 + "name": "lucide", 3 + "amdName": "lucide", 4 + "homepage": "https://featherity.netlify.app", 5 + "repository": "github:lucide-icons/lucide", 6 + "url" : "https://github.com/owner/project/issues", 7 + "license": "ISC", 8 + "version": "0.1.0", 9 + "source": "build/lucide.js", 10 + "main": "dist/cjs/lucide.js", 11 + "main:umd": "dist/umd/lucide.js", 12 + "module": "lib/lucide.js", 13 + "unpkg": "dist/umd/lucide.min.js", 14 + "sideEffects": false, 3 15 "scripts": { 4 - "react:compile": "yarn workspace react compile", 5 - "site:dev": "yarn workspace site dev", 6 - "site:deploy": "yarn workspace site deploy" 16 + "start": "babel-watch --watch src", 17 + "clean": "rimraf lib && rimraf dist && rimraf build", 18 + "build": "yarn clean && yarn build:move && yarn build:icons && yarn build:es && yarn build:esbrowser && yarn build:bundles", 19 + "build:move": "cp -av src build", 20 + "build:icons": "npx babel-node ./scripts/buildIcons.js --presets @babel/env", 21 + "build:es": "babel build -d lib --source-maps --ignore '**/*.test.js','**/__mocks__'", 22 + "build:esbrowser": "BROWSER_COMPAT=true yarn build:es -d dist/esm", 23 + "build:bundles": "BROWSER_COMPAT=true rollup -c rollup.config.js", 24 + "optimize": "npx babel-node ./scripts/optimizeSvgs.js --presets @babel/env", 25 + "test": "jest" 26 + }, 27 + "devDependencies": { 28 + "@ampproject/rollup-plugin-closure-compiler": "^0.25.2", 29 + "@atomico/rollup-plugin-sizes": "^1.1.4", 30 + "@babel/cli": "^7.10.5", 31 + "@babel/core": "^7.11.1", 32 + "@babel/node": "^7.10.5", 33 + "@babel/preset-env": "^7.11.0", 34 + "@rollup/plugin-babel": "^5.0.0", 35 + "babel-jest": "^26.3.0", 36 + "babel-plugin-add-import-extension": "^1.4.3", 37 + "cheerio": "^1.0.0-rc.2", 38 + "eslint": "^4.19.1", 39 + "eslint-config-airbnb-base": "^12.1.0", 40 + "eslint-config-prettier": "^2.9.0", 41 + "eslint-plugin-import": "^2.5.0", 42 + "eslint-plugin-prettier": "^2.5.0", 43 + "html-minifier": "^3.5.8", 44 + "jest": "^26.4.2", 45 + "lodash": "^4.17.19", 46 + "prettier": "^1.8.2", 47 + "rollup": "^2.7.3", 48 + "rollup-plugin-commonjs": "^10.1.0", 49 + "rollup-plugin-license": "^2.0.0", 50 + "rollup-plugin-node-resolve": "^5.2.0", 51 + "rollup-plugin-replace": "^2.2.0", 52 + "rollup-plugin-terser": "^5.2.0", 53 + "rollup-plugin-visualizer": "^4.1.0", 54 + "svgo": "^1.3.2" 7 55 }, 8 - "workspaces": [ 9 - "packages/react", 10 - "packages/site" 11 - ] 56 + "dependencies": { 57 + "@babel/plugin-transform-runtime": "^7.11.5", 58 + "core-js": "3", 59 + "htmlparser2": "^4.1.0", 60 + "lodash-es": "^4.17.15", 61 + "prop-types": "^15.7.2" 62 + } 12 63 }
+2 -2
packages/react/package.json
··· 1 1 { 2 - "name": "react-featherity", 2 + "name": "lucide-react", 3 3 "version": "1.0.0", 4 - "description": "React component for Featherity icons", 4 + "description": "React component for lucide icons", 5 5 "main": "src/index.js", 6 6 "typings": "src/index.d.ts", 7 7 "author": "John Letey",
+1 -1
packages/site/src/components/Layout.tsx
··· 38 38 </Text> 39 39 </Flex> 40 40 <Flex justifyContent="center" alignItems="center"> 41 - <Link href="https://github.com/featherity/featherity" isExternal style={{ fontSize: "18px", marginRight: '24px' }}> 41 + <Link href="https://github.com/lucide-icons/lucide" isExternal style={{ fontSize: "18px", marginRight: '24px' }}> 42 42 Github 43 43 </Link> 44 44 <div onClick={toggleColorMode} style={{ cursor: "pointer" }}>
+77
rollup.config.js
··· 1 + import babel from '@rollup/plugin-babel'; 2 + import bundleSize from '@atomico/rollup-plugin-sizes'; 3 + import compiler from '@ampproject/rollup-plugin-closure-compiler'; 4 + import { terser } from 'rollup-plugin-terser'; 5 + import visualizer from 'rollup-plugin-visualizer'; 6 + import license from 'rollup-plugin-license'; 7 + import replace from 'rollup-plugin-replace'; 8 + import resolve from 'rollup-plugin-node-resolve'; 9 + import commonJS from 'rollup-plugin-commonjs'; 10 + import pkg from './package.json'; 11 + 12 + const outputFileName = pkg.name; 13 + 14 + const inputs = ['build/lucide.js']; 15 + const bundles = [ 16 + { 17 + inputs, 18 + format: 'umd', 19 + dir: 'dist', 20 + minify: true, 21 + }, 22 + { 23 + inputs, 24 + format: 'umd', 25 + dir: 'dist', 26 + }, 27 + { 28 + inputs, 29 + format: 'cjs', 30 + dir: 'dist', 31 + }, 32 + ]; 33 + 34 + const configs = bundles 35 + .map(({ inputs, dir, format, minify }) => 36 + inputs.map(input => ({ 37 + input, 38 + external: ['lodash/camelCase', 'lodash/upperFirst'], 39 + plugins: [ 40 + replace({ 41 + 'icons = {}': 'icons = allIcons', 42 + delimiters: ['', ''], 43 + }), 44 + babel({ 45 + babelHelpers: 'bundled', 46 + }), 47 + // The two minifiers together seem to procude a smaller bundle 🤷‍♂️ 48 + minify && compiler(), 49 + minify && terser(), 50 + license({ 51 + banner: `${pkg.name} v${pkg.version} - ${pkg.license}`, 52 + }), 53 + bundleSize(), 54 + resolve(), 55 + commonJS({ 56 + include: 'node_modules/**', 57 + }), 58 + visualizer({ 59 + sourcemap: true, 60 + filename: `stats/${outputFileName}${minify ? '-min' : ''}.html`, 61 + }), 62 + ].filter(Boolean), 63 + output: { 64 + name: 'lucide', 65 + file: `${dir}/${format}/${outputFileName}${minify ? '.min' : ''}.js`, 66 + format, 67 + sourcemap: true, 68 + globals: { 69 + 'lodash/camelCase': 'camelCase', 70 + 'lodash/upperFirst': 'upperFirst', 71 + }, 72 + }, 73 + })), 74 + ) 75 + .flat(); 76 + 77 + export default configs;
+23
scripts/build/generateExportsFile.js
··· 1 + import path from 'path'; 2 + 3 + import { generateComponentName, resetFile, appendFile } from '../helpers'; 4 + 5 + export default function(inputEntry, outputDirectory, componentGetter, iconNodes) { 6 + const fileName = path.basename(inputEntry); 7 + 8 + // Reset file 9 + resetFile(fileName, outputDirectory); 10 + 11 + const icons = Object.keys(iconNodes); 12 + 13 + // Generate Import for Icon VNodes 14 + icons.forEach(iconName => { 15 + const componentName = generateComponentName(iconName); 16 + const importString = `export { default as ${componentName} } from './${iconName}';\n`; 17 + appendFile(importString, fileName, outputDirectory); 18 + }); 19 + 20 + appendFile('\n', fileName, outputDirectory); 21 + 22 + console.log(`Successfully generated ${fileName} file`); 23 + }
+27
scripts/build/generateIconFiles.js
··· 1 + /* eslint-disable import/no-extraneous-dependencies */ 2 + import fs from 'fs'; 3 + import path from 'path'; 4 + import prettier from 'prettier'; 5 + import { generateComponentName } from '../helpers'; 6 + 7 + export default function(iconNode, outputDirectory, template) { 8 + const icons = Object.keys(iconNode); 9 + const iconsDistDirectory = path.join(outputDirectory, `icons`); 10 + 11 + if (!fs.existsSync(iconsDistDirectory)) { 12 + fs.mkdirSync(iconsDistDirectory); 13 + } 14 + 15 + icons.forEach(icon => { 16 + const location = path.join(iconsDistDirectory, `${icon}.js`); 17 + const componentName = generateComponentName(icon); 18 + 19 + const node = JSON.stringify(iconNode[icon]); 20 + 21 + const elementTemplate = template({ componentName, node }); 22 + 23 + fs.writeFileSync(location, prettier.format(elementTemplate, { parser: 'babel' }), 'utf-8'); 24 + 25 + console.log('Successfully built', componentName); 26 + }); 27 + }
+42
scripts/buildIcons.js
··· 1 + import fs from 'fs'; 2 + import path from 'path'; 3 + 4 + import renderIconsObject from './render/renderIconsObject'; 5 + import renderIconNodes from './render/renderIconNodes'; 6 + import generateIconFiles from './build/generateIconFiles'; 7 + import generateExportsFile from './build/generateExportsFile'; 8 + 9 + import { readSvgDirectory } from './helpers'; 10 + 11 + const ICONS_DIR = path.resolve(__dirname, '../icons'); 12 + const OUTPUT_DIR = path.resolve(__dirname, '../build'); 13 + const SRC_DIR = path.resolve(__dirname, '../src'); 14 + 15 + if (!fs.existsSync(OUTPUT_DIR)) { 16 + fs.mkdirSync(OUTPUT_DIR); 17 + } 18 + 19 + const svgFiles = readSvgDirectory(ICONS_DIR); 20 + 21 + const icons = renderIconsObject(svgFiles, ICONS_DIR); 22 + 23 + const iconVNodes = renderIconNodes(icons); 24 + 25 + // Generates iconsNodes files for each icon 26 + generateIconFiles( 27 + iconVNodes, 28 + OUTPUT_DIR, 29 + ({ componentName, node }) => ` 30 + const ${componentName} = ${node}; 31 + 32 + export default ${componentName}; 33 + `, 34 + ); 35 + 36 + // Generates entry files for the compiler filled with icons exports 37 + generateExportsFile( 38 + path.join(SRC_DIR, 'icons/index.js'), 39 + path.join(OUTPUT_DIR, 'icons'), 40 + 'getElement', 41 + iconVNodes, 42 + );
+74
scripts/helpers.js
··· 1 + // eslint-disable-next-line import/no-extraneous-dependencies 2 + import { upperFirst, camelCase } from 'lodash/string'; 3 + import fs from 'fs'; 4 + import path from 'path'; 5 + 6 + /** 7 + * Generates a componentName of a String. 8 + * 9 + * @param {string} iconName 10 + */ 11 + export const generateComponentName = iconName => 12 + iconName === 'github' ? 'GitHub' : upperFirst(camelCase(iconName)); 13 + 14 + /** 15 + * Resets the file contents. 16 + * 17 + * @param {string} fileName 18 + * @param {string} outputDirectory 19 + */ 20 + export const resetFile = (fileName, outputDirectory) => 21 + fs.writeFileSync(path.join(outputDirectory, fileName), '', 'utf-8'); 22 + 23 + /** 24 + * Reads the file contents. 25 + * 26 + * @param {string} path 27 + */ 28 + export const readFile = entry => fs.readFileSync(path.resolve(__dirname, '../', entry), 'utf-8'); 29 + 30 + /** 31 + * append content to a file 32 + * 33 + * @param {string} content 34 + * @param {string} fileName 35 + * @param {string} outputDirectory 36 + */ 37 + export const appendFile = (content, fileName, outputDirectory) => 38 + fs.appendFileSync(path.join(outputDirectory, fileName), content, 'utf-8'); 39 + 40 + /** 41 + * writes content to a file 42 + * 43 + * @param {string} content 44 + * @param {string} fileName 45 + * @param {string} outputDirectory 46 + */ 47 + export const writeFile = (content, fileName, outputDirectory) => 48 + fs.writeFileSync(path.join(outputDirectory, fileName), content, 'utf-8'); 49 + 50 + /** 51 + * reads the icon directory 52 + * 53 + * @param {string} directory 54 + */ 55 + export const readSvgDirectory = directory => 56 + fs.readdirSync(directory).filter(file => path.extname(file) === '.svg'); 57 + 58 + /** 59 + * Read svg from directory 60 + * 61 + * @param {string} fileName 62 + * @param {string} directory 63 + */ 64 + export const readSvg = (fileName, directory) => fs.readFileSync(path.join(directory, fileName)); 65 + 66 + /** 67 + * writes content to a file 68 + * 69 + * @param {string} fileName 70 + * @param {string} outputDirectory 71 + * @param {string} content 72 + */ 73 + export const writeSvgFile = (fileName, outputDirectory, content) => 74 + fs.appendFileSync(path.join(outputDirectory, fileName), content, 'utf-8');
+15
scripts/optimizeSvgs.js
··· 1 + import fs from 'fs'; 2 + import path from 'path'; 3 + import processSvg from './render/processSvg'; 4 + import { readSvgDirectory, writeSvgFile } from './helpers'; 5 + 6 + const ICONS_DIR = path.resolve(__dirname, '../icons'); 7 + 8 + console.log(`Optimizing SVGs...`); 9 + 10 + const svgFiles = readSvgDirectory(ICONS_DIR); 11 + 12 + svgFiles.forEach(svgFile => { 13 + const content = fs.readFileSync(path.join(ICONS_DIR, svgFile)); 14 + processSvg(content).then(svg => writeSvgFile(svg, ICONS_DIR, content)); 15 + });
+11
scripts/render/default-attrs.json
··· 1 + { 2 + "xmlns": "http://www.w3.org/2000/svg", 3 + "width": 24, 4 + "height": 24, 5 + "viewBox": "0 0 24 24", 6 + "fill": "none", 7 + "stroke": "currentColor", 8 + "stroke-width": 2, 9 + "stroke-linecap": "round", 10 + "stroke-linejoin": "round" 11 + }
+57
scripts/render/processSvg.js
··· 1 + /* eslint-disable import/no-extraneous-dependencies */ 2 + import Svgo from 'svgo'; 3 + import cheerio from 'cheerio'; 4 + import { format } from 'prettier'; 5 + 6 + import DEFAULT_ATTRS from './default-attrs.json'; 7 + 8 + /** 9 + * Process SVG string. 10 + * @param {string} svg - An SVG string. 11 + * @param {Promise<string>} 12 + */ 13 + function processSvg(svg) { 14 + return ( 15 + optimize(svg) 16 + .then(setAttrs) 17 + .then(format) 18 + // remove semicolon inserted by prettier 19 + // because prettier thinks it's formatting JSX not HTML 20 + .then(svg => svg.replace(/;/g, '')) 21 + ); 22 + } 23 + 24 + /** 25 + * Optimize SVG with `svgo`. 26 + * @param {string} svg - An SVG string. 27 + * @returns {Promise<string>} 28 + */ 29 + function optimize(svg) { 30 + const svgo = new Svgo({ 31 + plugins: [ 32 + { convertShapeToPath: false }, 33 + { mergePaths: false }, 34 + { removeAttrs: { attrs: '(fill|stroke.*)' } }, 35 + { removeTitle: true }, 36 + ], 37 + }); 38 + 39 + return new Promise(resolve => { 40 + svgo.optimize(svg, ({ data }) => resolve(data)); 41 + }); 42 + } 43 + 44 + /** 45 + * Set default attibutes on SVG. 46 + * @param {string} svg - An SVG string. 47 + * @returns {string} 48 + */ 49 + function setAttrs(svg) { 50 + const $ = cheerio.load(svg); 51 + 52 + Object.keys(DEFAULT_ATTRS).forEach(key => $('svg').attr(key, DEFAULT_ATTRS[key])); 53 + 54 + return $('body').html(); 55 + } 56 + 57 + export default processSvg;
+29
scripts/render/renderIconNodes.js
··· 1 + /* eslint-disable import/no-extraneous-dependencies */ 2 + import { parseDOM } from 'htmlparser2'; 3 + import DEFAULT_ATTRS from './default-attrs.json'; 4 + 5 + export default iconsObject => { 6 + const iconNodes = {}; 7 + 8 + Object.keys(iconsObject).forEach(icon => { 9 + const svgString = iconsObject[icon]; 10 + const dom = parseDOM(svgString); 11 + 12 + const children = dom.map(element => [ 13 + element.name, 14 + { 15 + ...element.attribs, 16 + }, 17 + ]); 18 + 19 + iconNodes[icon] = [ 20 + 'svg', 21 + { 22 + ...DEFAULT_ATTRS, 23 + }, 24 + children, 25 + ]; 26 + }); 27 + 28 + return iconNodes; 29 + };
+35
scripts/render/renderIconsObject.js
··· 1 + /* eslint-disable import/no-extraneous-dependencies */ 2 + import path from 'path'; 3 + import cheerio from 'cheerio'; 4 + import { minify } from 'html-minifier'; 5 + import { readSvg } from '../helpers'; 6 + 7 + /** 8 + * Get contents between opening and closing `<svg>` tags. 9 + * @param {string} svg 10 + * @returns {string} 11 + */ 12 + function getSvgContents(svg) { 13 + const $ = cheerio.load(svg); 14 + 15 + return minify($('svg').html(), { collapseWhitespace: true }); 16 + } 17 + 18 + /** 19 + * Build an object in the format: `{ <name>: <contents> }`. 20 + * @param {string[]} svgFiles - A list of filenames. 21 + * @param {Function} getSvg - A function that returns the contents of an SVG file given a filename. 22 + * @returns {Object} 23 + */ 24 + export default (svgFiles, iconsDirectory) => 25 + svgFiles 26 + .map(svgFile => { 27 + const name = path.basename(svgFile, '.svg'); 28 + const svg = readSvg(svgFile, iconsDirectory); 29 + const contents = getSvgContents(svg); 30 + return { name, contents }; 31 + }) 32 + .reduce((icons, icon) => { 33 + icons[icon.name] = icon.contents; 34 + return icons; 35 + }, {});
+19
src/createElement.js
··· 1 + const createElement = (tag, attrs, children = []) => { 2 + const element = document.createElementNS('http://www.w3.org/2000/svg', tag); 3 + 4 + Object.keys(attrs).forEach(name => { 5 + element.setAttribute(name, attrs[name]); 6 + }); 7 + 8 + if (children.length) { 9 + children = children.forEach(child => { 10 + const childElement = createElement(...child); 11 + 12 + element.appendChild(childElement); 13 + }); 14 + } 15 + 16 + return element; 17 + }; 18 + 19 + export default ([tag, attrs, children]) => createElement(tag, attrs, children);
+5
src/icons/index.js
··· 1 + /* 2 + Icons exports. 3 + 4 + Will be generated 5 + */
+34
src/lucide.js
··· 1 + import replaceElement from './replaceElement'; 2 + import * as allIcons from './icons/index'; 3 + 4 + /* 5 + Create icons 6 + */ 7 + export const createIcons = ({ icons = {}, nameAttr = 'icon-name', attrs = {} } = {}) => { 8 + if (!Object.values(icons).length) { 9 + throw new Error( 10 + "Please provide an icons object.\nIf you want to use all the icons you can import it like:\n `import { createIcons, icons } from 'lucide';\nlucide.createIcons({icons});`", 11 + ); 12 + } 13 + 14 + if (typeof document === 'undefined') { 15 + throw new Error('`createIcons()` only works in a browser environment.'); 16 + } 17 + 18 + const elementsToReplace = document.querySelectorAll(`[${nameAttr}]`); 19 + 20 + Array.from(elementsToReplace).forEach(element => 21 + replaceElement(element, { nameAttr, icons, attrs }), 22 + ); 23 + }; 24 + 25 + /* 26 + Create Element function export. 27 + */ 28 + export { default as createElement } from './createElement'; 29 + 30 + /* 31 + Icons exports. 32 + */ 33 + export { allIcons as icons }; 34 + export * from './icons/index';
+83
src/replaceElement.js
··· 1 + import { camelCase, upperFirst } from 'lodash-es'; 2 + import createElement from './createElement'; 3 + 4 + /** 5 + * Get the attributes of an HTML element. 6 + * @param {HTMLElement} element 7 + * @returns {Object} 8 + */ 9 + export const getAttrs = element => 10 + Array.from(element.attributes).reduce((attrs, attr) => { 11 + attrs[attr.name] = attr.value; 12 + return attrs; 13 + }, {}); 14 + 15 + /** 16 + * Gets the classNames of an attributes Object. 17 + * @param {Object} attrs 18 + * @returns {Array} 19 + */ 20 + export const getClassNames = attrs => { 21 + if (!attrs || !attrs.class) return ''; 22 + if (attrs.class && typeof attrs.class === 'string') { 23 + return attrs.class.split(' '); 24 + } 25 + if (attrs.class && Array.isArray(attrs.class)) { 26 + return attrs.class; 27 + } 28 + return ''; 29 + }; 30 + 31 + /** 32 + * Combines the classNames of array of classNames to a String 33 + * @param {Array} arrayOfClassnames 34 + * @returns {String} 35 + */ 36 + export const combineClassNames = arrayOfClassnames => { 37 + const classNameArray = arrayOfClassnames.flatMap(getClassNames); 38 + 39 + return classNameArray 40 + .map(classItem => classItem.trim()) 41 + .filter(Boolean) 42 + .join(' '); 43 + }; 44 + 45 + /** 46 + * ReplaceElement, replaces the given element with the created icon. 47 + * @param {HTMLElement} element 48 + * @param {Object: {String, Array, Object}} options: { nameAttr, icons, attrs } 49 + * @returns {Function} 50 + */ 51 + export default (element, { nameAttr, icons, attrs }) => { 52 + const iconName = element.getAttribute(nameAttr); 53 + const ComponentName = upperFirst(camelCase(iconName)); 54 + 55 + const iconNode = icons[ComponentName]; 56 + 57 + if (!iconNode) { 58 + return console.warn( 59 + `${element.outerHTML} icon name was not found in the provided icons object.`, 60 + ); 61 + } 62 + 63 + const elementAttrs = getAttrs(element); 64 + 65 + const [, iconAttrs] = iconNode; 66 + 67 + const allAttrs = { 68 + ...iconAttrs, 69 + ...attrs, 70 + }; 71 + 72 + iconNode[1] = { ...allAttrs }; 73 + 74 + const classNames = combineClassNames([iconAttrs, elementAttrs, attrs]); 75 + 76 + if (classNames) { 77 + iconNode[1].class = classNames; 78 + } 79 + 80 + const svgElement = createElement(iconNode); 81 + 82 + return element.parentNode.replaceChild(svgElement, element); 83 + };
+3
tests/__snapshots__/lucide.spec.js.snap
··· 1 + // Jest Snapshot v1, https://goo.gl/fbAQLP 2 + 3 + exports[`createIcons should read elements from DOM and replace it with icons 1`] = `"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"24\\" height=\\"24\\" viewBox=\\"0 0 24 24\\" fill=\\"none\\" stroke=\\"currentColor\\" stroke-width=\\"2\\" stroke-linecap=\\"round\\" stroke-linejoin=\\"round\\"><polygon points=\\"11 5 6 9 2 9 2 15 6 15 11 19 11 5\\"></polygon><path d=\\"M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07\\"></path></svg>"`;
+3
tests/__snapshots__/replaceElement.spec.js.snap
··· 1 + // Jest Snapshot v1, https://goo.gl/fbAQLP 2 + 3 + exports[`combineClassNames should retuns a string of classNames 1`] = `"item1 item2 item3 item4 item5 item6 item7 item8 item9"`;
+21
tests/icons/download.js
··· 1 + const Download = [ 2 + "svg", 3 + { 4 + xmlns: "http://www.w3.org/2000/svg", 5 + width: 24, 6 + height: 24, 7 + viewBox: "0 0 24 24", 8 + fill: "none", 9 + stroke: "currentColor", 10 + "stroke-width": 2, 11 + "stroke-linecap": "round", 12 + "stroke-linejoin": "round" 13 + }, 14 + [ 15 + ["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }], 16 + ["polyline", { points: "7 10 12 15 17 10" }], 17 + ["line", { x1: "12", y1: "15", x2: "12", y2: "3" }] 18 + ] 19 + ]; 20 + 21 + export default Download;
+27
tests/icons/globe.js
··· 1 + const Globe = [ 2 + "svg", 3 + { 4 + xmlns: "http://www.w3.org/2000/svg", 5 + width: 24, 6 + height: 24, 7 + viewBox: "0 0 24 24", 8 + fill: "none", 9 + stroke: "currentColor", 10 + "stroke-width": 2, 11 + "stroke-linecap": "round", 12 + "stroke-linejoin": "round" 13 + }, 14 + [ 15 + ["circle", { cx: "12", cy: "12", r: "10" }], 16 + ["line", { x1: "2", y1: "12", x2: "22", y2: "12" }], 17 + [ 18 + "path", 19 + { 20 + d: 21 + "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" 22 + } 23 + ] 24 + ] 25 + ]; 26 + 27 + export default Globe;
+6
tests/icons/index.js
··· 1 + 2 + export { default as Download } from './download'; 3 + export { default as Globe } from './globe'; 4 + export { default as Menu } from './menu'; 5 + export { default as Moon } from './moon'; 6 + export { default as Volume2 } from './volume-2';
+21
tests/icons/menu.js
··· 1 + const Menu = [ 2 + "svg", 3 + { 4 + xmlns: "http://www.w3.org/2000/svg", 5 + width: 24, 6 + height: 24, 7 + viewBox: "0 0 24 24", 8 + fill: "none", 9 + stroke: "currentColor", 10 + "stroke-width": 2, 11 + "stroke-linecap": "round", 12 + "stroke-linejoin": "round" 13 + }, 14 + [ 15 + ["line", { x1: "3", y1: "12", x2: "21", y2: "12" }], 16 + ["line", { x1: "3", y1: "6", x2: "21", y2: "6" }], 17 + ["line", { x1: "3", y1: "18", x2: "21", y2: "18" }] 18 + ] 19 + ]; 20 + 21 + export default Menu;
+17
tests/icons/moon.js
··· 1 + const Moon = [ 2 + "svg", 3 + { 4 + xmlns: "http://www.w3.org/2000/svg", 5 + width: 24, 6 + height: 24, 7 + viewBox: "0 0 24 24", 8 + fill: "none", 9 + stroke: "currentColor", 10 + "stroke-width": 2, 11 + "stroke-linecap": "round", 12 + "stroke-linejoin": "round" 13 + }, 14 + [["path", { d: "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" }]] 15 + ]; 16 + 17 + export default Moon;
+23
tests/icons/volume-2.js
··· 1 + const Volume2 = [ 2 + "svg", 3 + { 4 + xmlns: "http://www.w3.org/2000/svg", 5 + width: 24, 6 + height: 24, 7 + viewBox: "0 0 24 24", 8 + fill: "none", 9 + stroke: "currentColor", 10 + "stroke-width": 2, 11 + "stroke-linecap": "round", 12 + "stroke-linejoin": "round" 13 + }, 14 + [ 15 + ["polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }], 16 + [ 17 + "path", 18 + { d: "M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07" } 19 + ] 20 + ] 21 + ]; 22 + 23 + export default Volume2;
+59
tests/lucide.spec.js
··· 1 + import * as icons from './icons'; 2 + import { createIcons } from '../src/lucide'; 3 + import fs from 'fs'; 4 + import path from 'path'; 5 + import { minify } from 'html-minifier'; 6 + 7 + const ICONS_DIR = path.resolve(__dirname, '../icons'); 8 + 9 + const getOriginalSvg = (iconName) => { 10 + const svgContent = fs.readFileSync(path.join(ICONS_DIR, `${iconName}.svg`), 'utf8'); 11 + 12 + return minify(svgContent, { collapseWhitespace: true, keepClosingSlash: true, }); 13 + }; 14 + 15 + describe('createIcons', () => { 16 + it('should read elements from DOM and replace it with icons', () => { 17 + document.body.innerHTML = `<i icon-name="volume-2"></i>`; 18 + 19 + createIcons({icons}); 20 + 21 + const svg = getOriginalSvg('volume-2'); 22 + expect(document.body.innerHTML).toMatchSnapshot() 23 + }); 24 + 25 + it('should customize the name attribute', () => { 26 + document.body.innerHTML = `<i custom-name="volume-2"></i>`; 27 + 28 + createIcons({ 29 + icons, 30 + nameAttr: 'custom-name' 31 + }); 32 + 33 + const hasSvg = !!document.querySelector('svg'); 34 + 35 + expect(hasSvg).toBeTruthy() 36 + }); 37 + 38 + it('should add custom attributes', () => { 39 + document.body.innerHTML = `<i icon-name="volume-2"></i>`; 40 + 41 + const attrs = { 42 + class: 'icon custom-class', 43 + fill: 'black', 44 + }; 45 + 46 + createIcons({ icons, attrs }); 47 + 48 + const element = document.querySelector('svg'); 49 + const attributes = element.getAttributeNames(); 50 + 51 + const attributesAndValues = attributes.reduce((acc, item) => { 52 + acc[item] = element.getAttribute(item); 53 + 54 + return acc; 55 + },{}) 56 + 57 + expect(attributesAndValues).toEqual(expect.objectContaining(attrs)); 58 + }); 59 + });
+62
tests/replaceElement.spec.js
··· 1 + import { getAttrs, getClassNames, combineClassNames } from '../src/replaceElement'; 2 + 3 + describe('getAtts', () => { 4 + it('should returns attrbrutes of an element', () => { 5 + const element = { 6 + attributes: [ 7 + { 8 + name: 'class', 9 + value: 'item1 item2 item4', 10 + }, 11 + { 12 + name: 'date-name', 13 + value: 'volume', 14 + }, 15 + ], 16 + }; 17 + 18 + const attrs = getAttrs(element); 19 + 20 + expect(attrs.class).toBe(element.attributes[0].value); 21 + }); 22 + }); 23 + 24 + describe('getClassNames', () => { 25 + it('should returns an array when giving class property of string', () => { 26 + const elementAttrs = { 27 + class: 'item1 item2 item3' 28 + }; 29 + 30 + const attrs = getClassNames(elementAttrs); 31 + expect(JSON.stringify(attrs)).toBe(JSON.stringify(['item1','item2','item3'])); 32 + }); 33 + 34 + it('should returns an array when givind class property with an array', () => { 35 + const elementAttrs = { 36 + class: ['item1','item2','item3'] 37 + }; 38 + 39 + const attrs = getClassNames(elementAttrs); 40 + expect(JSON.stringify(attrs)).toBe(JSON.stringify(['item1','item2','item3'])); 41 + }); 42 + }); 43 + 44 + describe('combineClassNames', () => { 45 + it('should retuns a string of classNames', () => { 46 + const arrayOfClassnames = [ 47 + { 48 + class: ['item1','item2','item3'] 49 + }, 50 + { 51 + class: ['item4','item5','item6'] 52 + }, 53 + { 54 + class: ['item7','item8','item9'] 55 + } 56 + ]; 57 + 58 + const combinedClassNames = combineClassNames(arrayOfClassnames); 59 + 60 + expect(combinedClassNames).toMatchSnapshot(); 61 + }); 62 + });
+3829 -3764
yarn.lock
··· 2 2 # yarn lockfile v1 3 3 4 4 5 - "@ampproject/toolbox-core@^2.4.0-alpha.1", "@ampproject/toolbox-core@^2.5.1": 6 - version "2.5.1" 7 - resolved "https://registry.yarnpkg.com/@ampproject/toolbox-core/-/toolbox-core-2.5.1.tgz#f01895995a722254807106a3e1422cf1c6c25c13" 8 - integrity sha512-XMt7Y7/Ga5HskqILTNwAmkrQSXM6KJ4Xf3fiEMy/yTldVg51SebAeTSzjKH+oisKhSw00Ogo4VL7AB6a2IrT3g== 5 + "@ampproject/remapping@0.2.0": 6 + version "0.2.0" 7 + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-0.2.0.tgz#07290a5c0f5eac8a4c33d38aa0d15a3416db432e" 8 + integrity sha512-a4EztS9/GOVQjX5Ol+Iz33TFhaXvYBF7aB6D8+Qz0/SCIxOm3UNRhGZiwcCuJ8/Ifc6NCogp3S48kc5hFxRpUw== 9 9 dependencies: 10 - cross-fetch "3.0.4" 11 - lru-cache "5.1.1" 10 + "@jridgewell/resolve-uri" "1.0.0" 11 + sourcemap-codec "1.4.8" 12 12 13 - "@ampproject/toolbox-optimizer@2.4.0": 14 - version "2.4.0" 15 - resolved "https://registry.yarnpkg.com/@ampproject/toolbox-optimizer/-/toolbox-optimizer-2.4.0.tgz#16bde73913f8b58a9bf617d37cdc1f21a1222f38" 16 - integrity sha512-Bmb+eMF9/VB3H0qPdZy0V5yPSkWe5RwuGbXiMxzqYdJgmMat+NL75EtozQnlpa0uBlESnOGe7bMojm/SA1ImrA== 13 + "@ampproject/rollup-plugin-closure-compiler@^0.25.2": 14 + version "0.25.2" 15 + resolved "https://registry.yarnpkg.com/@ampproject/rollup-plugin-closure-compiler/-/rollup-plugin-closure-compiler-0.25.2.tgz#4d1704c73b22df45b34b021aeb1a049ab804abf6" 16 + integrity sha512-ohOa/2JRQ4vVVbTO48XS2F4WZyL+sWEfjMFDPfdZTz57+EqVjf8RoWLfqfdkHtCGGpGvoHQZUWciHhep2aXkmQ== 17 17 dependencies: 18 - "@ampproject/toolbox-core" "^2.4.0-alpha.1" 19 - "@ampproject/toolbox-runtime-version" "^2.4.0-alpha.1" 20 - "@ampproject/toolbox-script-csp" "^2.3.0" 21 - "@ampproject/toolbox-validator-rules" "^2.3.0" 22 - cssnano "4.1.10" 23 - domhandler "3.0.0" 24 - domutils "2.1.0" 25 - htmlparser2 "4.1.0" 26 - lru-cache "5.1.1" 27 - normalize-html-whitespace "1.0.0" 28 - postcss-safe-parser "4.0.2" 29 - terser "4.6.13" 18 + "@ampproject/remapping" "0.2.0" 19 + acorn "7.1.1" 20 + acorn-walk "7.1.1" 21 + estree-walker "2.0.1" 22 + google-closure-compiler "20200406.0.0" 23 + magic-string "0.25.7" 24 + uuid "7.0.3" 30 25 31 - "@ampproject/toolbox-runtime-version@^2.4.0-alpha.1": 32 - version "2.5.1" 33 - resolved "https://registry.yarnpkg.com/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.5.1.tgz#904280984a75925ff1d7a851ab15645efaa5cd90" 34 - integrity sha512-udkXpuJX+f0ogd/GFlpifXg5K+BSyWpou9gg53uxoSpPTlPO4ZPepJ4PLfgdq0oxMq7f/IDN1YN5ZFFNJHbrzw== 26 + "@atomico/rollup-plugin-sizes@^1.1.4": 27 + version "1.1.4" 28 + resolved "https://registry.yarnpkg.com/@atomico/rollup-plugin-sizes/-/rollup-plugin-sizes-1.1.4.tgz#e47447168008399b73d0e3cf5aa26c8cacdd1467" 29 + integrity sha512-ilxLw9hT+kWXIx8mYoAFLA2eIVfLrsnabPCaGo5Mkrj8qxhEkZvFddcnH2HTp/hDKFEIJRpZVpXecsPp3FOdRw== 35 30 dependencies: 36 - "@ampproject/toolbox-core" "^2.5.1" 31 + brotli-size "^4.0.0" 32 + gzip-size "^5.1.1" 33 + simple-string-table "^1.0.0" 37 34 38 - "@ampproject/toolbox-script-csp@^2.3.0": 39 - version "2.3.0" 40 - resolved "https://registry.yarnpkg.com/@ampproject/toolbox-script-csp/-/toolbox-script-csp-2.3.0.tgz#374cd0bf69bfdd0f1784064d0de69162722c89af" 41 - integrity sha512-Qba53ohvCH79sYl5O8K5GMSo/372OjuyxNc+XySG26sAsG26WpBKJEE0HTr8rsa//CD3Fc92FieT1gK5U/jK4Q== 42 - 43 - "@ampproject/toolbox-validator-rules@^2.3.0": 44 - version "2.3.0" 45 - resolved "https://registry.yarnpkg.com/@ampproject/toolbox-validator-rules/-/toolbox-validator-rules-2.3.0.tgz#047d8a8106ba777f1df308c19f1c1c41ffea4054" 46 - integrity sha512-S10YIyOKettoRDWoyRymRyjzWZD4/qW7YfHNhHAS13QVneabRcU5MF7vEwkG6dHWx/UdufT5GbqYnvpQRMNt3Q== 35 + "@babel/cli@^7.10.5": 36 + version "7.10.5" 37 + resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.10.5.tgz#57df2987c8cf89d0fc7d4b157ec59d7619f1b77a" 38 + integrity sha512-j9H9qSf3kLdM0Ao3aGPbGZ73mEA9XazuupcS6cDGWuiyAcANoguhP0r2Lx32H5JGw4sSSoHG3x/mxVnHgvOoyA== 47 39 dependencies: 48 - cross-fetch "3.0.4" 40 + commander "^4.0.1" 41 + convert-source-map "^1.1.0" 42 + fs-readdir-recursive "^1.1.0" 43 + glob "^7.0.0" 44 + lodash "^4.17.19" 45 + make-dir "^2.1.0" 46 + slash "^2.0.0" 47 + source-map "^0.5.0" 48 + optionalDependencies: 49 + chokidar "^2.1.8" 49 50 50 - "@babel/code-frame@7.8.3": 51 - version "7.8.3" 52 - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" 53 - integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== 51 + "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.5.5": 52 + version "7.10.4" 53 + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 54 + integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 54 55 dependencies: 55 - "@babel/highlight" "^7.8.3" 56 + "@babel/highlight" "^7.10.4" 56 57 57 - "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.1", "@babel/code-frame@^7.5.5": 58 - version "7.10.1" 59 - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.1.tgz#d5481c5095daa1c57e16e54c6f9198443afb49ff" 60 - integrity sha512-IGhtTmpjGbYzcEDOw7DcQtbQSXcG9ftmAXtWTu9V936vDye4xjjekktFAtgZsWpzTj/X01jocB46mTywm/4SZw== 58 + "@babel/compat-data@^7.10.4": 59 + version "7.10.5" 60 + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.5.tgz#d38425e67ea96b1480a3f50404d1bf85676301a6" 61 + integrity sha512-mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw== 61 62 dependencies: 62 - "@babel/highlight" "^7.10.1" 63 + browserslist "^4.12.0" 64 + invariant "^2.2.4" 65 + semver "^5.5.0" 63 66 64 - "@babel/compat-data@^7.10.1", "@babel/compat-data@^7.9.6": 65 - version "7.10.1" 66 - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.1.tgz#b1085ffe72cd17bf2c0ee790fc09f9626011b2db" 67 - integrity sha512-CHvCj7So7iCkGKPRFUfryXIkU2gSBw7VSZFYLsqVhrS47269VK2Hfi9S/YcublPMW8k1u2bQBlbDruoQEm4fgw== 67 + "@babel/compat-data@^7.11.0": 68 + version "7.11.0" 69 + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c" 70 + integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ== 68 71 dependencies: 69 72 browserslist "^4.12.0" 70 73 invariant "^2.2.4" 71 74 semver "^5.5.0" 72 75 73 - "@babel/core@7.7.7": 74 - version "7.7.7" 75 - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.7.tgz#ee155d2e12300bcc0cff6a8ad46f2af5063803e9" 76 - integrity sha512-jlSjuj/7z138NLZALxVgrx13AOtqip42ATZP7+kYl53GvDV6+4dCek1mVUo8z8c8Xnw/mx2q3d9HWh3griuesQ== 76 + "@babel/core@^7.1.0", "@babel/core@^7.7.5": 77 + version "7.11.6" 78 + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651" 79 + integrity sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg== 77 80 dependencies: 78 - "@babel/code-frame" "^7.5.5" 79 - "@babel/generator" "^7.7.7" 80 - "@babel/helpers" "^7.7.4" 81 - "@babel/parser" "^7.7.7" 82 - "@babel/template" "^7.7.4" 83 - "@babel/traverse" "^7.7.4" 84 - "@babel/types" "^7.7.4" 81 + "@babel/code-frame" "^7.10.4" 82 + "@babel/generator" "^7.11.6" 83 + "@babel/helper-module-transforms" "^7.11.0" 84 + "@babel/helpers" "^7.10.4" 85 + "@babel/parser" "^7.11.5" 86 + "@babel/template" "^7.10.4" 87 + "@babel/traverse" "^7.11.5" 88 + "@babel/types" "^7.11.5" 85 89 convert-source-map "^1.7.0" 86 90 debug "^4.1.0" 87 - json5 "^2.1.0" 88 - lodash "^4.17.13" 91 + gensync "^1.0.0-beta.1" 92 + json5 "^2.1.2" 93 + lodash "^4.17.19" 89 94 resolve "^1.3.2" 90 95 semver "^5.4.1" 91 96 source-map "^0.5.0" 92 97 93 - "@babel/generator@^7.10.1", "@babel/generator@^7.7.7": 94 - version "7.10.2" 95 - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.2.tgz#0fa5b5b2389db8bfdfcc3492b551ee20f5dd69a9" 96 - integrity sha512-AxfBNHNu99DTMvlUPlt1h2+Hn7knPpH5ayJ8OqDWSeLld+Fi2AYBTC/IejWDM9Edcii4UzZRCsbUt0WlSDsDsA== 98 + "@babel/core@^7.11.1": 99 + version "7.11.1" 100 + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.1.tgz#2c55b604e73a40dc21b0e52650b11c65cf276643" 101 + integrity sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ== 97 102 dependencies: 98 - "@babel/types" "^7.10.2" 103 + "@babel/code-frame" "^7.10.4" 104 + "@babel/generator" "^7.11.0" 105 + "@babel/helper-module-transforms" "^7.11.0" 106 + "@babel/helpers" "^7.10.4" 107 + "@babel/parser" "^7.11.1" 108 + "@babel/template" "^7.10.4" 109 + "@babel/traverse" "^7.11.0" 110 + "@babel/types" "^7.11.0" 111 + convert-source-map "^1.7.0" 112 + debug "^4.1.0" 113 + gensync "^1.0.0-beta.1" 114 + json5 "^2.1.2" 115 + lodash "^4.17.19" 116 + resolve "^1.3.2" 117 + semver "^5.4.1" 118 + source-map "^0.5.0" 119 + 120 + "@babel/generator@^7.10.5": 121 + version "7.10.5" 122 + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.5.tgz#1b903554bc8c583ee8d25f1e8969732e6b829a69" 123 + integrity sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig== 124 + dependencies: 125 + "@babel/types" "^7.10.5" 99 126 jsesc "^2.5.1" 100 - lodash "^4.17.13" 101 127 source-map "^0.5.0" 102 128 103 - "@babel/helper-annotate-as-pure@^7.10.1": 104 - version "7.10.1" 105 - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.1.tgz#f6d08acc6f70bbd59b436262553fb2e259a1a268" 106 - integrity sha512-ewp3rvJEwLaHgyWGe4wQssC2vjks3E80WiUe2BpMb0KhreTjMROCbxXcEovTrbeGVdQct5VjQfrv9EgC+xMzCw== 129 + "@babel/generator@^7.11.0": 130 + version "7.11.0" 131 + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c" 132 + integrity sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ== 107 133 dependencies: 108 - "@babel/types" "^7.10.1" 134 + "@babel/types" "^7.11.0" 135 + jsesc "^2.5.1" 136 + source-map "^0.5.0" 109 137 110 - "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.1": 111 - version "7.10.1" 112 - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.1.tgz#0ec7d9be8174934532661f87783eb18d72290059" 113 - integrity sha512-cQpVq48EkYxUU0xozpGCLla3wlkdRRqLWu1ksFMXA9CM5KQmyyRpSEsYXbao7JUkOw/tAaYKCaYyZq6HOFYtyw== 138 + "@babel/generator@^7.11.5", "@babel/generator@^7.11.6": 139 + version "7.11.6" 140 + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.6.tgz#b868900f81b163b4d464ea24545c61cbac4dc620" 141 + integrity sha512-DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA== 114 142 dependencies: 115 - "@babel/helper-explode-assignable-expression" "^7.10.1" 116 - "@babel/types" "^7.10.1" 143 + "@babel/types" "^7.11.5" 144 + jsesc "^2.5.1" 145 + source-map "^0.5.0" 117 146 118 - "@babel/helper-builder-react-jsx-experimental@^7.10.1": 119 - version "7.10.1" 120 - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.1.tgz#9a7d58ad184d3ac3bafb1a452cec2bad7e4a0bc8" 121 - integrity sha512-irQJ8kpQUV3JasXPSFQ+LCCtJSc5ceZrPFVj6TElR6XCHssi3jV8ch3odIrNtjJFRZZVbrOEfJMI79TPU/h1pQ== 147 + "@babel/helper-annotate-as-pure@^7.10.4": 148 + version "7.10.4" 149 + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" 150 + integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== 122 151 dependencies: 123 - "@babel/helper-annotate-as-pure" "^7.10.1" 124 - "@babel/helper-module-imports" "^7.10.1" 125 - "@babel/types" "^7.10.1" 152 + "@babel/types" "^7.10.4" 126 153 127 - "@babel/helper-builder-react-jsx@^7.10.1": 128 - version "7.10.1" 129 - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.1.tgz#a327f0cf983af5554701b1215de54a019f09b532" 130 - integrity sha512-KXzzpyWhXgzjXIlJU1ZjIXzUPdej1suE6vzqgImZ/cpAsR/CC8gUcX4EWRmDfWz/cs6HOCPMBIJ3nKoXt3BFuw== 154 + "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": 155 + version "7.10.4" 156 + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" 157 + integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== 131 158 dependencies: 132 - "@babel/helper-annotate-as-pure" "^7.10.1" 133 - "@babel/types" "^7.10.1" 159 + "@babel/helper-explode-assignable-expression" "^7.10.4" 160 + "@babel/types" "^7.10.4" 134 161 135 - "@babel/helper-compilation-targets@^7.9.6": 136 - version "7.10.2" 137 - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.2.tgz#a17d9723b6e2c750299d2a14d4637c76936d8285" 138 - integrity sha512-hYgOhF4To2UTB4LTaZepN/4Pl9LD4gfbJx8A34mqoluT8TLbof1mhUlYuNWTEebONa8+UlCC4X0TEXu7AOUyGA== 162 + "@babel/helper-compilation-targets@^7.10.4": 163 + version "7.10.4" 164 + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2" 165 + integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== 139 166 dependencies: 140 - "@babel/compat-data" "^7.10.1" 167 + "@babel/compat-data" "^7.10.4" 141 168 browserslist "^4.12.0" 142 169 invariant "^2.2.4" 143 170 levenary "^1.1.1" 144 171 semver "^5.5.0" 145 172 146 - "@babel/helper-create-class-features-plugin@^7.10.1", "@babel/helper-create-class-features-plugin@^7.8.3": 147 - version "7.10.2" 148 - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.2.tgz#7474295770f217dbcf288bf7572eb213db46ee67" 149 - integrity sha512-5C/QhkGFh1vqcziq1vAL6SI9ymzUp8BCYjFpvYVhWP4DlATIb3u5q3iUd35mvlyGs8fO7hckkW7i0tmH+5+bvQ== 173 + "@babel/helper-create-class-features-plugin@^7.10.4": 174 + version "7.10.5" 175 + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d" 176 + integrity sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== 150 177 dependencies: 151 - "@babel/helper-function-name" "^7.10.1" 152 - "@babel/helper-member-expression-to-functions" "^7.10.1" 153 - "@babel/helper-optimise-call-expression" "^7.10.1" 154 - "@babel/helper-plugin-utils" "^7.10.1" 155 - "@babel/helper-replace-supers" "^7.10.1" 156 - "@babel/helper-split-export-declaration" "^7.10.1" 178 + "@babel/helper-function-name" "^7.10.4" 179 + "@babel/helper-member-expression-to-functions" "^7.10.5" 180 + "@babel/helper-optimise-call-expression" "^7.10.4" 181 + "@babel/helper-plugin-utils" "^7.10.4" 182 + "@babel/helper-replace-supers" "^7.10.4" 183 + "@babel/helper-split-export-declaration" "^7.10.4" 157 184 158 - "@babel/helper-create-regexp-features-plugin@^7.10.1", "@babel/helper-create-regexp-features-plugin@^7.8.3": 159 - version "7.10.1" 160 - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.1.tgz#1b8feeab1594cbcfbf3ab5a3bbcabac0468efdbd" 161 - integrity sha512-Rx4rHS0pVuJn5pJOqaqcZR4XSgeF9G/pO/79t+4r7380tXFJdzImFnxMU19f83wjSrmKHq6myrM10pFHTGzkUA== 185 + "@babel/helper-create-regexp-features-plugin@^7.10.4": 186 + version "7.10.4" 187 + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8" 188 + integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== 162 189 dependencies: 163 - "@babel/helper-annotate-as-pure" "^7.10.1" 164 - "@babel/helper-regex" "^7.10.1" 190 + "@babel/helper-annotate-as-pure" "^7.10.4" 191 + "@babel/helper-regex" "^7.10.4" 165 192 regexpu-core "^4.7.0" 166 193 167 - "@babel/helper-define-map@^7.10.1": 168 - version "7.10.1" 169 - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.1.tgz#5e69ee8308648470dd7900d159c044c10285221d" 170 - integrity sha512-+5odWpX+OnvkD0Zmq7panrMuAGQBu6aPUgvMzuMGo4R+jUOvealEj2hiqI6WhxgKrTpFoFj0+VdsuA8KDxHBDg== 194 + "@babel/helper-define-map@^7.10.4": 195 + version "7.10.5" 196 + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" 197 + integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== 171 198 dependencies: 172 - "@babel/helper-function-name" "^7.10.1" 173 - "@babel/types" "^7.10.1" 174 - lodash "^4.17.13" 199 + "@babel/helper-function-name" "^7.10.4" 200 + "@babel/types" "^7.10.5" 201 + lodash "^4.17.19" 175 202 176 - "@babel/helper-explode-assignable-expression@^7.10.1": 177 - version "7.10.1" 178 - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.1.tgz#e9d76305ee1162ca467357ae25df94f179af2b7e" 179 - integrity sha512-vcUJ3cDjLjvkKzt6rHrl767FeE7pMEYfPanq5L16GRtrXIoznc0HykNW2aEYkcnP76P0isoqJ34dDMFZwzEpJg== 203 + "@babel/helper-explode-assignable-expression@^7.10.4": 204 + version "7.10.4" 205 + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c" 206 + integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A== 180 207 dependencies: 181 - "@babel/traverse" "^7.10.1" 182 - "@babel/types" "^7.10.1" 208 + "@babel/traverse" "^7.10.4" 209 + "@babel/types" "^7.10.4" 183 210 184 - "@babel/helper-function-name@^7.10.1": 185 - version "7.10.1" 186 - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.1.tgz#92bd63829bfc9215aca9d9defa85f56b539454f4" 187 - integrity sha512-fcpumwhs3YyZ/ttd5Rz0xn0TpIwVkN7X0V38B9TWNfVF42KEkhkAAuPCQ3oXmtTRtiPJrmZ0TrfS0GKF0eMaRQ== 211 + "@babel/helper-function-name@^7.10.4": 212 + version "7.10.4" 213 + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" 214 + integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== 215 + dependencies: 216 + "@babel/helper-get-function-arity" "^7.10.4" 217 + "@babel/template" "^7.10.4" 218 + "@babel/types" "^7.10.4" 219 + 220 + "@babel/helper-get-function-arity@^7.10.4": 221 + version "7.10.4" 222 + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" 223 + integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== 188 224 dependencies: 189 - "@babel/helper-get-function-arity" "^7.10.1" 190 - "@babel/template" "^7.10.1" 191 - "@babel/types" "^7.10.1" 225 + "@babel/types" "^7.10.4" 192 226 193 - "@babel/helper-get-function-arity@^7.10.1": 194 - version "7.10.1" 195 - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.1.tgz#7303390a81ba7cb59613895a192b93850e373f7d" 196 - integrity sha512-F5qdXkYGOQUb0hpRaPoetF9AnsXknKjWMZ+wmsIRsp5ge5sFh4c3h1eH2pRTTuy9KKAA2+TTYomGXAtEL2fQEw== 227 + "@babel/helper-hoist-variables@^7.10.4": 228 + version "7.10.4" 229 + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" 230 + integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== 197 231 dependencies: 198 - "@babel/types" "^7.10.1" 232 + "@babel/types" "^7.10.4" 199 233 200 - "@babel/helper-hoist-variables@^7.10.1": 201 - version "7.10.1" 202 - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.1.tgz#7e77c82e5dcae1ebf123174c385aaadbf787d077" 203 - integrity sha512-vLm5srkU8rI6X3+aQ1rQJyfjvCBLXP8cAGeuw04zeAM2ItKb1e7pmVmLyHb4sDaAYnLL13RHOZPLEtcGZ5xvjg== 234 + "@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5": 235 + version "7.10.5" 236 + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz#172f56e7a63e78112f3a04055f24365af702e7ee" 237 + integrity sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA== 204 238 dependencies: 205 - "@babel/types" "^7.10.1" 239 + "@babel/types" "^7.10.5" 206 240 207 - "@babel/helper-member-expression-to-functions@^7.10.1": 208 - version "7.10.1" 209 - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.1.tgz#432967fd7e12a4afef66c4687d4ca22bc0456f15" 210 - integrity sha512-u7XLXeM2n50gb6PWJ9hoO5oO7JFPaZtrh35t8RqKLT1jFKj9IWeD1zrcrYp1q1qiZTdEarfDWfTIP8nGsu0h5g== 241 + "@babel/helper-module-imports@^7.10.4": 242 + version "7.10.4" 243 + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" 244 + integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== 211 245 dependencies: 212 - "@babel/types" "^7.10.1" 246 + "@babel/types" "^7.10.4" 213 247 214 - "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.1", "@babel/helper-module-imports@^7.8.3": 215 - version "7.10.1" 216 - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.1.tgz#dd331bd45bccc566ce77004e9d05fe17add13876" 217 - integrity sha512-SFxgwYmZ3HZPyZwJRiVNLRHWuW2OgE5k2nrVs6D9Iv4PPnXVffuEHy83Sfx/l4SqF+5kyJXjAyUmrG7tNm+qVg== 248 + "@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5": 249 + version "7.10.5" 250 + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.5.tgz#120c271c0b3353673fcdfd8c053db3c544a260d6" 251 + integrity sha512-4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA== 218 252 dependencies: 219 - "@babel/types" "^7.10.1" 253 + "@babel/helper-module-imports" "^7.10.4" 254 + "@babel/helper-replace-supers" "^7.10.4" 255 + "@babel/helper-simple-access" "^7.10.4" 256 + "@babel/helper-split-export-declaration" "^7.10.4" 257 + "@babel/template" "^7.10.4" 258 + "@babel/types" "^7.10.5" 259 + lodash "^4.17.19" 220 260 221 - "@babel/helper-module-transforms@^7.10.1", "@babel/helper-module-transforms@^7.9.0": 222 - version "7.10.1" 223 - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.1.tgz#24e2f08ee6832c60b157bb0936c86bef7210c622" 224 - integrity sha512-RLHRCAzyJe7Q7sF4oy2cB+kRnU4wDZY/H2xJFGof+M+SJEGhZsb+GFj5j1AD8NiSaVBJ+Pf0/WObiXu/zxWpFg== 261 + "@babel/helper-module-transforms@^7.11.0": 262 + version "7.11.0" 263 + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" 264 + integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== 225 265 dependencies: 226 - "@babel/helper-module-imports" "^7.10.1" 227 - "@babel/helper-replace-supers" "^7.10.1" 228 - "@babel/helper-simple-access" "^7.10.1" 229 - "@babel/helper-split-export-declaration" "^7.10.1" 230 - "@babel/template" "^7.10.1" 231 - "@babel/types" "^7.10.1" 232 - lodash "^4.17.13" 266 + "@babel/helper-module-imports" "^7.10.4" 267 + "@babel/helper-replace-supers" "^7.10.4" 268 + "@babel/helper-simple-access" "^7.10.4" 269 + "@babel/helper-split-export-declaration" "^7.11.0" 270 + "@babel/template" "^7.10.4" 271 + "@babel/types" "^7.11.0" 272 + lodash "^4.17.19" 233 273 234 - "@babel/helper-optimise-call-expression@^7.10.1": 235 - version "7.10.1" 236 - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.1.tgz#b4a1f2561870ce1247ceddb02a3860fa96d72543" 237 - integrity sha512-a0DjNS1prnBsoKx83dP2falChcs7p3i8VMzdrSbfLhuQra/2ENC4sbri34dz/rWmDADsmF1q5GbfaXydh0Jbjg== 274 + "@babel/helper-optimise-call-expression@^7.10.4": 275 + version "7.10.4" 276 + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" 277 + integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== 238 278 dependencies: 239 - "@babel/types" "^7.10.1" 279 + "@babel/types" "^7.10.4" 240 280 241 - "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.1", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 242 - version "7.10.1" 243 - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz#ec5a5cf0eec925b66c60580328b122c01230a127" 244 - integrity sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA== 281 + "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 282 + version "7.10.4" 283 + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" 284 + integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== 245 285 246 - "@babel/helper-regex@^7.10.1": 247 - version "7.10.1" 248 - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.1.tgz#021cf1a7ba99822f993222a001cc3fec83255b96" 249 - integrity sha512-7isHr19RsIJWWLLFn21ubFt223PjQyg1HY7CZEMRr820HttHPpVvrsIN3bUOo44DEfFV4kBXO7Abbn9KTUZV7g== 286 + "@babel/helper-regex@^7.10.4": 287 + version "7.10.5" 288 + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0" 289 + integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== 250 290 dependencies: 251 - lodash "^4.17.13" 291 + lodash "^4.17.19" 252 292 253 - "@babel/helper-remap-async-to-generator@^7.10.1": 254 - version "7.10.1" 255 - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.1.tgz#bad6aaa4ff39ce8d4b82ccaae0bfe0f7dbb5f432" 256 - integrity sha512-RfX1P8HqsfgmJ6CwaXGKMAqbYdlleqglvVtht0HGPMSsy2V6MqLlOJVF/0Qyb/m2ZCi2z3q3+s6Pv7R/dQuZ6A== 293 + "@babel/helper-remap-async-to-generator@^7.10.4": 294 + version "7.10.4" 295 + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5" 296 + integrity sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg== 257 297 dependencies: 258 - "@babel/helper-annotate-as-pure" "^7.10.1" 259 - "@babel/helper-wrap-function" "^7.10.1" 260 - "@babel/template" "^7.10.1" 261 - "@babel/traverse" "^7.10.1" 262 - "@babel/types" "^7.10.1" 298 + "@babel/helper-annotate-as-pure" "^7.10.4" 299 + "@babel/helper-wrap-function" "^7.10.4" 300 + "@babel/template" "^7.10.4" 301 + "@babel/traverse" "^7.10.4" 302 + "@babel/types" "^7.10.4" 263 303 264 - "@babel/helper-replace-supers@^7.10.1": 265 - version "7.10.1" 266 - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.1.tgz#ec6859d20c5d8087f6a2dc4e014db7228975f13d" 267 - integrity sha512-SOwJzEfpuQwInzzQJGjGaiG578UYmyi2Xw668klPWV5n07B73S0a9btjLk/52Mlcxa+5AdIYqws1KyXRfMoB7A== 304 + "@babel/helper-replace-supers@^7.10.4": 305 + version "7.10.4" 306 + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" 307 + integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== 268 308 dependencies: 269 - "@babel/helper-member-expression-to-functions" "^7.10.1" 270 - "@babel/helper-optimise-call-expression" "^7.10.1" 271 - "@babel/traverse" "^7.10.1" 272 - "@babel/types" "^7.10.1" 309 + "@babel/helper-member-expression-to-functions" "^7.10.4" 310 + "@babel/helper-optimise-call-expression" "^7.10.4" 311 + "@babel/traverse" "^7.10.4" 312 + "@babel/types" "^7.10.4" 273 313 274 - "@babel/helper-simple-access@^7.10.1", "@babel/helper-simple-access@^7.8.3": 275 - version "7.10.1" 276 - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.1.tgz#08fb7e22ace9eb8326f7e3920a1c2052f13d851e" 277 - integrity sha512-VSWpWzRzn9VtgMJBIWTZ+GP107kZdQ4YplJlCmIrjoLVSi/0upixezHCDG8kpPVTBJpKfxTH01wDhh+jS2zKbw== 314 + "@babel/helper-simple-access@^7.10.4": 315 + version "7.10.4" 316 + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" 317 + integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== 278 318 dependencies: 279 - "@babel/template" "^7.10.1" 280 - "@babel/types" "^7.10.1" 319 + "@babel/template" "^7.10.4" 320 + "@babel/types" "^7.10.4" 281 321 282 - "@babel/helper-split-export-declaration@^7.10.1": 283 - version "7.10.1" 284 - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.1.tgz#c6f4be1cbc15e3a868e4c64a17d5d31d754da35f" 285 - integrity sha512-UQ1LVBPrYdbchNhLwj6fetj46BcFwfS4NllJo/1aJsT+1dLTEnXJL0qHqtY7gPzF8S2fXBJamf1biAXV3X077g== 322 + "@babel/helper-skip-transparent-expression-wrappers@^7.11.0": 323 + version "7.11.0" 324 + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729" 325 + integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q== 286 326 dependencies: 287 - "@babel/types" "^7.10.1" 327 + "@babel/types" "^7.11.0" 288 328 289 - "@babel/helper-validator-identifier@^7.10.1", "@babel/helper-validator-identifier@^7.9.5": 290 - version "7.10.1" 291 - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.1.tgz#5770b0c1a826c4f53f5ede5e153163e0318e94b5" 292 - integrity sha512-5vW/JXLALhczRCWP0PnFDMCJAchlBvM7f4uk/jXritBnIa6E1KmqmtrS3yn1LAnxFBypQ3eneLuXjsnfQsgILw== 329 + "@babel/helper-split-export-declaration@^7.10.4": 330 + version "7.10.4" 331 + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1" 332 + integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg== 333 + dependencies: 334 + "@babel/types" "^7.10.4" 293 335 294 - "@babel/helper-wrap-function@^7.10.1": 295 - version "7.10.1" 296 - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.1.tgz#956d1310d6696257a7afd47e4c42dfda5dfcedc9" 297 - integrity sha512-C0MzRGteVDn+H32/ZgbAv5r56f2o1fZSA/rj/TYo8JEJNHg+9BdSmKBUND0shxWRztWhjlT2cvHYuynpPsVJwQ== 336 + "@babel/helper-split-export-declaration@^7.11.0": 337 + version "7.11.0" 338 + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" 339 + integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== 298 340 dependencies: 299 - "@babel/helper-function-name" "^7.10.1" 300 - "@babel/template" "^7.10.1" 301 - "@babel/traverse" "^7.10.1" 302 - "@babel/types" "^7.10.1" 341 + "@babel/types" "^7.11.0" 342 + 343 + "@babel/helper-validator-identifier@^7.10.4": 344 + version "7.10.4" 345 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 346 + integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 303 347 304 - "@babel/helpers@^7.7.4": 305 - version "7.10.1" 306 - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.1.tgz#a6827b7cb975c9d9cef5fd61d919f60d8844a973" 307 - integrity sha512-muQNHF+IdU6wGgkaJyhhEmI54MOZBKsFfsXFhboz1ybwJ1Kl7IHlbm2a++4jwrmY5UYsgitt5lfqo1wMFcHmyw== 348 + "@babel/helper-wrap-function@^7.10.4": 349 + version "7.10.4" 350 + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87" 351 + integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== 308 352 dependencies: 309 - "@babel/template" "^7.10.1" 310 - "@babel/traverse" "^7.10.1" 311 - "@babel/types" "^7.10.1" 353 + "@babel/helper-function-name" "^7.10.4" 354 + "@babel/template" "^7.10.4" 355 + "@babel/traverse" "^7.10.4" 356 + "@babel/types" "^7.10.4" 312 357 313 - "@babel/highlight@^7.10.1", "@babel/highlight@^7.8.3": 314 - version "7.10.1" 315 - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.1.tgz#841d098ba613ba1a427a2b383d79e35552c38ae0" 316 - integrity sha512-8rMof+gVP8mxYZApLF/JgNDAkdKa+aJt3ZYxF8z6+j/hpeXL7iMsKCPHa2jNMHu/qqBwzQF4OHNoYi8dMA/rYg== 358 + "@babel/helpers@^7.10.4": 359 + version "7.10.4" 360 + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" 361 + integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== 317 362 dependencies: 318 - "@babel/helper-validator-identifier" "^7.10.1" 363 + "@babel/template" "^7.10.4" 364 + "@babel/traverse" "^7.10.4" 365 + "@babel/types" "^7.10.4" 366 + 367 + "@babel/highlight@^7.10.4": 368 + version "7.10.4" 369 + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 370 + integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 371 + dependencies: 372 + "@babel/helper-validator-identifier" "^7.10.4" 319 373 chalk "^2.0.0" 320 374 js-tokens "^4.0.0" 321 375 322 - "@babel/parser@^7.10.1", "@babel/parser@^7.7.7": 323 - version "7.10.2" 324 - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.2.tgz#871807f10442b92ff97e4783b9b54f6a0ca812d0" 325 - integrity sha512-PApSXlNMJyB4JiGVhCOlzKIif+TKFTvu0aQAhnTvfP/z3vVSN6ZypH5bfUNwFXXjRQtUEBNFd2PtmCmG2Py3qQ== 376 + "@babel/node@^7.10.5": 377 + version "7.10.5" 378 + resolved "https://registry.yarnpkg.com/@babel/node/-/node-7.10.5.tgz#30866322aa2c0251a9bdd73d07a9167bd1f4ed64" 379 + integrity sha512-suosS7zZ2roj+fYVCnDuVezUbRc0sdoyF0Gj/1FzWxD4ebbGiBGtL5qyqHH4NO34B5m4vWWYWgyNhSsrqS8vwA== 380 + dependencies: 381 + "@babel/register" "^7.10.5" 382 + commander "^4.0.1" 383 + core-js "^3.2.1" 384 + lodash "^4.17.19" 385 + node-environment-flags "^1.0.5" 386 + regenerator-runtime "^0.13.4" 387 + resolve "^1.13.1" 388 + v8flags "^3.1.1" 389 + 390 + "@babel/parser@^7.1.0", "@babel/parser@^7.11.5": 391 + version "7.11.5" 392 + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037" 393 + integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q== 394 + 395 + "@babel/parser@^7.10.4", "@babel/parser@^7.10.5": 396 + version "7.10.5" 397 + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b" 398 + integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ== 326 399 327 - "@babel/plugin-proposal-async-generator-functions@^7.8.3": 328 - version "7.10.1" 329 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.1.tgz#6911af5ba2e615c4ff3c497fe2f47b35bf6d7e55" 330 - integrity sha512-vzZE12ZTdB336POZjmpblWfNNRpMSua45EYnRigE2XsZxcXcIyly2ixnTJasJE4Zq3U7t2d8rRF7XRUuzHxbOw== 400 + "@babel/parser@^7.11.0", "@babel/parser@^7.11.1": 401 + version "7.11.3" 402 + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.3.tgz#9e1eae46738bcd08e23e867bab43e7b95299a8f9" 403 + integrity sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA== 404 + 405 + "@babel/plugin-proposal-async-generator-functions@^7.10.4": 406 + version "7.10.5" 407 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558" 408 + integrity sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== 331 409 dependencies: 332 - "@babel/helper-plugin-utils" "^7.10.1" 333 - "@babel/helper-remap-async-to-generator" "^7.10.1" 410 + "@babel/helper-plugin-utils" "^7.10.4" 411 + "@babel/helper-remap-async-to-generator" "^7.10.4" 334 412 "@babel/plugin-syntax-async-generators" "^7.8.0" 335 413 336 - "@babel/plugin-proposal-class-properties@7.8.3": 337 - version "7.8.3" 338 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e" 339 - integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA== 414 + "@babel/plugin-proposal-class-properties@^7.10.4": 415 + version "7.10.4" 416 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807" 417 + integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== 340 418 dependencies: 341 - "@babel/helper-create-class-features-plugin" "^7.8.3" 342 - "@babel/helper-plugin-utils" "^7.8.3" 419 + "@babel/helper-create-class-features-plugin" "^7.10.4" 420 + "@babel/helper-plugin-utils" "^7.10.4" 343 421 344 - "@babel/plugin-proposal-dynamic-import@^7.8.3": 345 - version "7.10.1" 346 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.1.tgz#e36979dc1dc3b73f6d6816fc4951da2363488ef0" 347 - integrity sha512-Cpc2yUVHTEGPlmiQzXj026kqwjEQAD9I4ZC16uzdbgWgitg/UHKHLffKNCQZ5+y8jpIZPJcKcwsr2HwPh+w3XA== 422 + "@babel/plugin-proposal-dynamic-import@^7.10.4": 423 + version "7.10.4" 424 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e" 425 + integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== 348 426 dependencies: 349 - "@babel/helper-plugin-utils" "^7.10.1" 427 + "@babel/helper-plugin-utils" "^7.10.4" 350 428 "@babel/plugin-syntax-dynamic-import" "^7.8.0" 351 429 352 - "@babel/plugin-proposal-json-strings@^7.8.3": 353 - version "7.10.1" 354 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.1.tgz#b1e691ee24c651b5a5e32213222b2379734aff09" 355 - integrity sha512-m8r5BmV+ZLpWPtMY2mOKN7wre6HIO4gfIiV+eOmsnZABNenrt/kzYBwrh+KOfgumSWpnlGs5F70J8afYMSJMBg== 356 - dependencies: 357 - "@babel/helper-plugin-utils" "^7.10.1" 358 - "@babel/plugin-syntax-json-strings" "^7.8.0" 359 - 360 - "@babel/plugin-proposal-nullish-coalescing-operator@7.8.3": 361 - version "7.8.3" 362 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2" 363 - integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== 430 + "@babel/plugin-proposal-export-namespace-from@^7.10.4": 431 + version "7.10.4" 432 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz#570d883b91031637b3e2958eea3c438e62c05f54" 433 + integrity sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg== 364 434 dependencies: 365 - "@babel/helper-plugin-utils" "^7.8.3" 366 - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 435 + "@babel/helper-plugin-utils" "^7.10.4" 436 + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 367 437 368 - "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": 369 - version "7.10.1" 370 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.1.tgz#02dca21673842ff2fe763ac253777f235e9bbf78" 371 - integrity sha512-56cI/uHYgL2C8HVuHOuvVowihhX0sxb3nnfVRzUeVHTWmRHTZrKuAh/OBIMggGU/S1g/1D2CRCXqP+3u7vX7iA== 438 + "@babel/plugin-proposal-json-strings@^7.10.4": 439 + version "7.10.4" 440 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db" 441 + integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== 372 442 dependencies: 373 - "@babel/helper-plugin-utils" "^7.10.1" 374 - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 443 + "@babel/helper-plugin-utils" "^7.10.4" 444 + "@babel/plugin-syntax-json-strings" "^7.8.0" 375 445 376 - "@babel/plugin-proposal-numeric-separator@7.8.3": 377 - version "7.8.3" 378 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8" 379 - integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ== 446 + "@babel/plugin-proposal-logical-assignment-operators@^7.11.0": 447 + version "7.11.0" 448 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz#9f80e482c03083c87125dee10026b58527ea20c8" 449 + integrity sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q== 380 450 dependencies: 381 - "@babel/helper-plugin-utils" "^7.8.3" 382 - "@babel/plugin-syntax-numeric-separator" "^7.8.3" 451 + "@babel/helper-plugin-utils" "^7.10.4" 452 + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 383 453 384 - "@babel/plugin-proposal-numeric-separator@^7.8.3": 385 - version "7.10.1" 386 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.1.tgz#a9a38bc34f78bdfd981e791c27c6fdcec478c123" 387 - integrity sha512-jjfym4N9HtCiNfyyLAVD8WqPYeHUrw4ihxuAynWj6zzp2gf9Ey2f7ImhFm6ikB3CLf5Z/zmcJDri6B4+9j9RsA== 454 + "@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4": 455 + version "7.10.4" 456 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a" 457 + integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== 388 458 dependencies: 389 - "@babel/helper-plugin-utils" "^7.10.1" 390 - "@babel/plugin-syntax-numeric-separator" "^7.10.1" 459 + "@babel/helper-plugin-utils" "^7.10.4" 460 + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 391 461 392 - "@babel/plugin-proposal-object-rest-spread@7.9.6": 393 - version "7.9.6" 394 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.6.tgz#7a093586fcb18b08266eb1a7177da671ac575b63" 395 - integrity sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A== 462 + "@babel/plugin-proposal-numeric-separator@^7.10.4": 463 + version "7.10.4" 464 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06" 465 + integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== 396 466 dependencies: 397 - "@babel/helper-plugin-utils" "^7.8.3" 398 - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 399 - "@babel/plugin-transform-parameters" "^7.9.5" 467 + "@babel/helper-plugin-utils" "^7.10.4" 468 + "@babel/plugin-syntax-numeric-separator" "^7.10.4" 400 469 401 - "@babel/plugin-proposal-object-rest-spread@^7.9.6": 402 - version "7.10.1" 403 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.1.tgz#cba44908ac9f142650b4a65b8aa06bf3478d5fb6" 404 - integrity sha512-Z+Qri55KiQkHh7Fc4BW6o+QBuTagbOp9txE+4U1i79u9oWlf2npkiDx+Rf3iK3lbcHBuNy9UOkwuR5wOMH3LIQ== 470 + "@babel/plugin-proposal-object-rest-spread@^7.11.0": 471 + version "7.11.0" 472 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af" 473 + integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== 405 474 dependencies: 406 - "@babel/helper-plugin-utils" "^7.10.1" 475 + "@babel/helper-plugin-utils" "^7.10.4" 407 476 "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 408 - "@babel/plugin-transform-parameters" "^7.10.1" 477 + "@babel/plugin-transform-parameters" "^7.10.4" 409 478 410 - "@babel/plugin-proposal-optional-catch-binding@^7.8.3": 411 - version "7.10.1" 412 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.1.tgz#c9f86d99305f9fa531b568ff5ab8c964b8b223d2" 413 - integrity sha512-VqExgeE62YBqI3ogkGoOJp1R6u12DFZjqwJhqtKc2o5m1YTUuUWnos7bZQFBhwkxIFpWYJ7uB75U7VAPPiKETA== 479 + "@babel/plugin-proposal-optional-catch-binding@^7.10.4": 480 + version "7.10.4" 481 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd" 482 + integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== 414 483 dependencies: 415 - "@babel/helper-plugin-utils" "^7.10.1" 484 + "@babel/helper-plugin-utils" "^7.10.4" 416 485 "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 417 486 418 - "@babel/plugin-proposal-optional-chaining@7.9.0": 419 - version "7.9.0" 420 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" 421 - integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== 487 + "@babel/plugin-proposal-optional-chaining@^7.11.0": 488 + version "7.11.0" 489 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076" 490 + integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA== 422 491 dependencies: 423 - "@babel/helper-plugin-utils" "^7.8.3" 492 + "@babel/helper-plugin-utils" "^7.10.4" 493 + "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" 424 494 "@babel/plugin-syntax-optional-chaining" "^7.8.0" 425 495 426 - "@babel/plugin-proposal-optional-chaining@^7.9.0": 427 - version "7.10.1" 428 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.1.tgz#15f5d6d22708629451a91be28f8facc55b0e818c" 429 - integrity sha512-dqQj475q8+/avvok72CF3AOSV/SGEcH29zT5hhohqqvvZ2+boQoOr7iGldBG5YXTO2qgCgc2B3WvVLUdbeMlGA== 496 + "@babel/plugin-proposal-private-methods@^7.10.4": 497 + version "7.10.4" 498 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909" 499 + integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== 430 500 dependencies: 431 - "@babel/helper-plugin-utils" "^7.10.1" 432 - "@babel/plugin-syntax-optional-chaining" "^7.8.0" 501 + "@babel/helper-create-class-features-plugin" "^7.10.4" 502 + "@babel/helper-plugin-utils" "^7.10.4" 433 503 434 - "@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3": 435 - version "7.10.1" 436 - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.1.tgz#dc04feb25e2dd70c12b05d680190e138fa2c0c6f" 437 - integrity sha512-JjfngYRvwmPwmnbRZyNiPFI8zxCZb8euzbCG/LxyKdeTb59tVciKo9GK9bi6JYKInk1H11Dq9j/zRqIH4KigfQ== 504 + "@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 505 + version "7.10.4" 506 + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d" 507 + integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== 438 508 dependencies: 439 - "@babel/helper-create-regexp-features-plugin" "^7.10.1" 440 - "@babel/helper-plugin-utils" "^7.10.1" 509 + "@babel/helper-create-regexp-features-plugin" "^7.10.4" 510 + "@babel/helper-plugin-utils" "^7.10.4" 441 511 442 - "@babel/plugin-syntax-async-generators@^7.8.0": 512 + "@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4": 443 513 version "7.8.4" 444 514 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 445 515 integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 446 516 dependencies: 447 517 "@babel/helper-plugin-utils" "^7.8.0" 448 518 449 - "@babel/plugin-syntax-bigint@7.8.3": 519 + "@babel/plugin-syntax-bigint@^7.8.3": 450 520 version "7.8.3" 451 521 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 452 522 integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 453 523 dependencies: 454 524 "@babel/helper-plugin-utils" "^7.8.0" 455 525 456 - "@babel/plugin-syntax-dynamic-import@7.8.3", "@babel/plugin-syntax-dynamic-import@^7.8.0": 526 + "@babel/plugin-syntax-class-properties@^7.10.4", "@babel/plugin-syntax-class-properties@^7.8.3": 527 + version "7.10.4" 528 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" 529 + integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== 530 + dependencies: 531 + "@babel/helper-plugin-utils" "^7.10.4" 532 + 533 + "@babel/plugin-syntax-dynamic-import@^7.8.0": 457 534 version "7.8.3" 458 535 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 459 536 integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 460 537 dependencies: 461 538 "@babel/helper-plugin-utils" "^7.8.0" 462 539 463 - "@babel/plugin-syntax-json-strings@^7.8.0": 540 + "@babel/plugin-syntax-export-namespace-from@^7.8.3": 541 + version "7.8.3" 542 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 543 + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 544 + dependencies: 545 + "@babel/helper-plugin-utils" "^7.8.3" 546 + 547 + "@babel/plugin-syntax-import-meta@^7.8.3": 548 + version "7.10.4" 549 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 550 + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 551 + dependencies: 552 + "@babel/helper-plugin-utils" "^7.10.4" 553 + 554 + "@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3": 464 555 version "7.8.3" 465 556 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 466 557 integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 467 558 dependencies: 468 559 "@babel/helper-plugin-utils" "^7.8.0" 469 560 470 - "@babel/plugin-syntax-jsx@^7.10.1": 471 - version "7.10.1" 472 - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.1.tgz#0ae371134a42b91d5418feb3c8c8d43e1565d2da" 473 - integrity sha512-+OxyOArpVFXQeXKLO9o+r2I4dIoVoy6+Uu0vKELrlweDM3QJADZj+Z+5ERansZqIZBcLj42vHnDI8Rz9BnRIuQ== 561 + "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 562 + version "7.10.4" 563 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 564 + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 474 565 dependencies: 475 - "@babel/helper-plugin-utils" "^7.10.1" 566 + "@babel/helper-plugin-utils" "^7.10.4" 476 567 477 - "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": 568 + "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 478 569 version "7.8.3" 479 570 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 480 571 integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 481 572 dependencies: 482 573 "@babel/helper-plugin-utils" "^7.8.0" 483 574 484 - "@babel/plugin-syntax-numeric-separator@^7.10.1", "@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3": 485 - version "7.10.1" 486 - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.1.tgz#25761ee7410bc8cf97327ba741ee94e4a61b7d99" 487 - integrity sha512-uTd0OsHrpe3tH5gRPTxG8Voh99/WCU78vIm5NMRYPAqC8lR4vajt6KkCAknCHrx24vkPdd/05yfdGSB4EIY2mg== 575 + "@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": 576 + version "7.10.4" 577 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 578 + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 488 579 dependencies: 489 - "@babel/helper-plugin-utils" "^7.10.1" 580 + "@babel/helper-plugin-utils" "^7.10.4" 490 581 491 - "@babel/plugin-syntax-object-rest-spread@^7.8.0": 582 + "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": 492 583 version "7.8.3" 493 584 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 494 585 integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 495 586 dependencies: 496 587 "@babel/helper-plugin-utils" "^7.8.0" 497 588 498 - "@babel/plugin-syntax-optional-catch-binding@^7.8.0": 589 + "@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 499 590 version "7.8.3" 500 591 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 501 592 integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 502 593 dependencies: 503 594 "@babel/helper-plugin-utils" "^7.8.0" 504 595 505 - "@babel/plugin-syntax-optional-chaining@^7.8.0": 596 + "@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": 506 597 version "7.8.3" 507 598 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 508 599 integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 509 600 dependencies: 510 601 "@babel/helper-plugin-utils" "^7.8.0" 511 602 512 - "@babel/plugin-syntax-top-level-await@^7.8.3": 513 - version "7.10.1" 514 - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.1.tgz#8b8733f8c57397b3eaa47ddba8841586dcaef362" 515 - integrity sha512-hgA5RYkmZm8FTFT3yu2N9Bx7yVVOKYT6yEdXXo6j2JTm0wNxgqaGeQVaSHRjhfnQbX91DtjFB6McRFSlcJH3xQ== 603 + "@babel/plugin-syntax-top-level-await@^7.10.4": 604 + version "7.10.4" 605 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d" 606 + integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== 516 607 dependencies: 517 - "@babel/helper-plugin-utils" "^7.10.1" 608 + "@babel/helper-plugin-utils" "^7.10.4" 518 609 519 - "@babel/plugin-syntax-typescript@^7.10.1": 520 - version "7.10.1" 521 - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.1.tgz#5e82bc27bb4202b93b949b029e699db536733810" 522 - integrity sha512-X/d8glkrAtra7CaQGMiGs/OGa6XgUzqPcBXCIGFCpCqnfGlT0Wfbzo/B89xHhnInTaItPK8LALblVXcUOEh95Q== 610 + "@babel/plugin-transform-arrow-functions@^7.10.4": 611 + version "7.10.4" 612 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd" 613 + integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== 523 614 dependencies: 524 - "@babel/helper-plugin-utils" "^7.10.1" 615 + "@babel/helper-plugin-utils" "^7.10.4" 525 616 526 - "@babel/plugin-transform-arrow-functions@^7.8.3": 527 - version "7.10.1" 528 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.1.tgz#cb5ee3a36f0863c06ead0b409b4cc43a889b295b" 529 - integrity sha512-6AZHgFJKP3DJX0eCNJj01RpytUa3SOGawIxweHkNX2L6PYikOZmoh5B0d7hIHaIgveMjX990IAa/xK7jRTN8OA== 617 + "@babel/plugin-transform-async-to-generator@^7.10.4": 618 + version "7.10.4" 619 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37" 620 + integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== 530 621 dependencies: 531 - "@babel/helper-plugin-utils" "^7.10.1" 622 + "@babel/helper-module-imports" "^7.10.4" 623 + "@babel/helper-plugin-utils" "^7.10.4" 624 + "@babel/helper-remap-async-to-generator" "^7.10.4" 532 625 533 - "@babel/plugin-transform-async-to-generator@^7.8.3": 534 - version "7.10.1" 535 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.1.tgz#e5153eb1a3e028f79194ed8a7a4bf55f862b2062" 536 - integrity sha512-XCgYjJ8TY2slj6SReBUyamJn3k2JLUIiiR5b6t1mNCMSvv7yx+jJpaewakikp0uWFQSF7ChPPoe3dHmXLpISkg== 626 + "@babel/plugin-transform-block-scoped-functions@^7.10.4": 627 + version "7.10.4" 628 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8" 629 + integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== 537 630 dependencies: 538 - "@babel/helper-module-imports" "^7.10.1" 539 - "@babel/helper-plugin-utils" "^7.10.1" 540 - "@babel/helper-remap-async-to-generator" "^7.10.1" 631 + "@babel/helper-plugin-utils" "^7.10.4" 541 632 542 - "@babel/plugin-transform-block-scoped-functions@^7.8.3": 543 - version "7.10.1" 544 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.1.tgz#146856e756d54b20fff14b819456b3e01820b85d" 545 - integrity sha512-B7K15Xp8lv0sOJrdVAoukKlxP9N59HS48V1J3U/JGj+Ad+MHq+am6xJVs85AgXrQn4LV8vaYFOB+pr/yIuzW8Q== 633 + "@babel/plugin-transform-block-scoping@^7.10.4": 634 + version "7.10.5" 635 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz#b81b8aafefbfe68f0f65f7ef397b9ece68a6037d" 636 + integrity sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg== 546 637 dependencies: 547 - "@babel/helper-plugin-utils" "^7.10.1" 638 + "@babel/helper-plugin-utils" "^7.10.4" 548 639 549 - "@babel/plugin-transform-block-scoping@^7.8.3": 550 - version "7.10.1" 551 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.1.tgz#47092d89ca345811451cd0dc5d91605982705d5e" 552 - integrity sha512-8bpWG6TtF5akdhIm/uWTyjHqENpy13Fx8chg7pFH875aNLwX8JxIxqm08gmAT+Whe6AOmaTeLPe7dpLbXt+xUw== 640 + "@babel/plugin-transform-classes@^7.10.4": 641 + version "7.10.4" 642 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7" 643 + integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== 553 644 dependencies: 554 - "@babel/helper-plugin-utils" "^7.10.1" 555 - lodash "^4.17.13" 556 - 557 - "@babel/plugin-transform-classes@^7.9.5": 558 - version "7.10.1" 559 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.1.tgz#6e11dd6c4dfae70f540480a4702477ed766d733f" 560 - integrity sha512-P9V0YIh+ln/B3RStPoXpEQ/CoAxQIhRSUn7aXqQ+FZJ2u8+oCtjIXR3+X0vsSD8zv+mb56K7wZW1XiDTDGiDRQ== 561 - dependencies: 562 - "@babel/helper-annotate-as-pure" "^7.10.1" 563 - "@babel/helper-define-map" "^7.10.1" 564 - "@babel/helper-function-name" "^7.10.1" 565 - "@babel/helper-optimise-call-expression" "^7.10.1" 566 - "@babel/helper-plugin-utils" "^7.10.1" 567 - "@babel/helper-replace-supers" "^7.10.1" 568 - "@babel/helper-split-export-declaration" "^7.10.1" 645 + "@babel/helper-annotate-as-pure" "^7.10.4" 646 + "@babel/helper-define-map" "^7.10.4" 647 + "@babel/helper-function-name" "^7.10.4" 648 + "@babel/helper-optimise-call-expression" "^7.10.4" 649 + "@babel/helper-plugin-utils" "^7.10.4" 650 + "@babel/helper-replace-supers" "^7.10.4" 651 + "@babel/helper-split-export-declaration" "^7.10.4" 569 652 globals "^11.1.0" 570 653 571 - "@babel/plugin-transform-computed-properties@^7.8.3": 572 - version "7.10.1" 573 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.1.tgz#59aa399064429d64dce5cf76ef9b90b7245ebd07" 574 - integrity sha512-mqSrGjp3IefMsXIenBfGcPXxJxweQe2hEIwMQvjtiDQ9b1IBvDUjkAtV/HMXX47/vXf14qDNedXsIiNd1FmkaQ== 654 + "@babel/plugin-transform-computed-properties@^7.10.4": 655 + version "7.10.4" 656 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb" 657 + integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== 575 658 dependencies: 576 - "@babel/helper-plugin-utils" "^7.10.1" 659 + "@babel/helper-plugin-utils" "^7.10.4" 577 660 578 - "@babel/plugin-transform-destructuring@^7.9.5": 579 - version "7.10.1" 580 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.1.tgz#abd58e51337815ca3a22a336b85f62b998e71907" 581 - integrity sha512-V/nUc4yGWG71OhaTH705pU8ZSdM6c1KmmLP8ys59oOYbT7RpMYAR3MsVOt6OHL0WzG7BlTU076va9fjJyYzJMA== 661 + "@babel/plugin-transform-destructuring@^7.10.4": 662 + version "7.10.4" 663 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5" 664 + integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== 582 665 dependencies: 583 - "@babel/helper-plugin-utils" "^7.10.1" 666 + "@babel/helper-plugin-utils" "^7.10.4" 584 667 585 - "@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3": 586 - version "7.10.1" 587 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.1.tgz#920b9fec2d78bb57ebb64a644d5c2ba67cc104ee" 588 - integrity sha512-19VIMsD1dp02RvduFUmfzj8uknaO3uiHHF0s3E1OHnVsNj8oge8EQ5RzHRbJjGSetRnkEuBYO7TG1M5kKjGLOA== 668 + "@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4": 669 + version "7.10.4" 670 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee" 671 + integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== 589 672 dependencies: 590 - "@babel/helper-create-regexp-features-plugin" "^7.10.1" 591 - "@babel/helper-plugin-utils" "^7.10.1" 673 + "@babel/helper-create-regexp-features-plugin" "^7.10.4" 674 + "@babel/helper-plugin-utils" "^7.10.4" 592 675 593 - "@babel/plugin-transform-duplicate-keys@^7.8.3": 594 - version "7.10.1" 595 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.1.tgz#c900a793beb096bc9d4d0a9d0cde19518ffc83b9" 596 - integrity sha512-wIEpkX4QvX8Mo9W6XF3EdGttrIPZWozHfEaDTU0WJD/TDnXMvdDh30mzUl/9qWhnf7naicYartcEfUghTCSNpA== 676 + "@babel/plugin-transform-duplicate-keys@^7.10.4": 677 + version "7.10.4" 678 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47" 679 + integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== 597 680 dependencies: 598 - "@babel/helper-plugin-utils" "^7.10.1" 681 + "@babel/helper-plugin-utils" "^7.10.4" 599 682 600 - "@babel/plugin-transform-exponentiation-operator@^7.8.3": 601 - version "7.10.1" 602 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.1.tgz#279c3116756a60dd6e6f5e488ba7957db9c59eb3" 603 - integrity sha512-lr/przdAbpEA2BUzRvjXdEDLrArGRRPwbaF9rvayuHRvdQ7lUTTkZnhZrJ4LE2jvgMRFF4f0YuPQ20vhiPYxtA== 683 + "@babel/plugin-transform-exponentiation-operator@^7.10.4": 684 + version "7.10.4" 685 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e" 686 + integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== 604 687 dependencies: 605 - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.1" 606 - "@babel/helper-plugin-utils" "^7.10.1" 688 + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" 689 + "@babel/helper-plugin-utils" "^7.10.4" 607 690 608 - "@babel/plugin-transform-for-of@^7.9.0": 609 - version "7.10.1" 610 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.1.tgz#ff01119784eb0ee32258e8646157ba2501fcfda5" 611 - integrity sha512-US8KCuxfQcn0LwSCMWMma8M2R5mAjJGsmoCBVwlMygvmDUMkTCykc84IqN1M7t+agSfOmLYTInLCHJM+RUoz+w== 691 + "@babel/plugin-transform-for-of@^7.10.4": 692 + version "7.10.4" 693 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9" 694 + integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== 612 695 dependencies: 613 - "@babel/helper-plugin-utils" "^7.10.1" 696 + "@babel/helper-plugin-utils" "^7.10.4" 614 697 615 - "@babel/plugin-transform-function-name@^7.8.3": 616 - version "7.10.1" 617 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.1.tgz#4ed46fd6e1d8fde2a2ec7b03c66d853d2c92427d" 618 - integrity sha512-//bsKsKFBJfGd65qSNNh1exBy5Y9gD9ZN+DvrJ8f7HXr4avE5POW6zB7Rj6VnqHV33+0vXWUwJT0wSHubiAQkw== 698 + "@babel/plugin-transform-function-name@^7.10.4": 699 + version "7.10.4" 700 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7" 701 + integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== 619 702 dependencies: 620 - "@babel/helper-function-name" "^7.10.1" 621 - "@babel/helper-plugin-utils" "^7.10.1" 703 + "@babel/helper-function-name" "^7.10.4" 704 + "@babel/helper-plugin-utils" "^7.10.4" 622 705 623 - "@babel/plugin-transform-literals@^7.8.3": 624 - version "7.10.1" 625 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.1.tgz#5794f8da82846b22e4e6631ea1658bce708eb46a" 626 - integrity sha512-qi0+5qgevz1NHLZroObRm5A+8JJtibb7vdcPQF1KQE12+Y/xxl8coJ+TpPW9iRq+Mhw/NKLjm+5SHtAHCC7lAw== 706 + "@babel/plugin-transform-literals@^7.10.4": 707 + version "7.10.4" 708 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c" 709 + integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== 627 710 dependencies: 628 - "@babel/helper-plugin-utils" "^7.10.1" 711 + "@babel/helper-plugin-utils" "^7.10.4" 629 712 630 - "@babel/plugin-transform-member-expression-literals@^7.8.3": 631 - version "7.10.1" 632 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.1.tgz#90347cba31bca6f394b3f7bd95d2bbfd9fce2f39" 633 - integrity sha512-UmaWhDokOFT2GcgU6MkHC11i0NQcL63iqeufXWfRy6pUOGYeCGEKhvfFO6Vz70UfYJYHwveg62GS83Rvpxn+NA== 713 + "@babel/plugin-transform-member-expression-literals@^7.10.4": 714 + version "7.10.4" 715 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7" 716 + integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== 634 717 dependencies: 635 - "@babel/helper-plugin-utils" "^7.10.1" 718 + "@babel/helper-plugin-utils" "^7.10.4" 636 719 637 - "@babel/plugin-transform-modules-amd@^7.9.6": 638 - version "7.10.1" 639 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.1.tgz#65950e8e05797ebd2fe532b96e19fc5482a1d52a" 640 - integrity sha512-31+hnWSFRI4/ACFr1qkboBbrTxoBIzj7qA69qlq8HY8p7+YCzkCT6/TvQ1a4B0z27VeWtAeJd6pr5G04dc1iHw== 720 + "@babel/plugin-transform-modules-amd@^7.10.4": 721 + version "7.10.5" 722 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1" 723 + integrity sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== 641 724 dependencies: 642 - "@babel/helper-module-transforms" "^7.10.1" 643 - "@babel/helper-plugin-utils" "^7.10.1" 725 + "@babel/helper-module-transforms" "^7.10.5" 726 + "@babel/helper-plugin-utils" "^7.10.4" 644 727 babel-plugin-dynamic-import-node "^2.3.3" 645 728 646 - "@babel/plugin-transform-modules-commonjs@7.9.6": 647 - version "7.9.6" 648 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.6.tgz#64b7474a4279ee588cacd1906695ca721687c277" 649 - integrity sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ== 729 + "@babel/plugin-transform-modules-commonjs@^7.10.4": 730 + version "7.10.4" 731 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0" 732 + integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== 650 733 dependencies: 651 - "@babel/helper-module-transforms" "^7.9.0" 652 - "@babel/helper-plugin-utils" "^7.8.3" 653 - "@babel/helper-simple-access" "^7.8.3" 734 + "@babel/helper-module-transforms" "^7.10.4" 735 + "@babel/helper-plugin-utils" "^7.10.4" 736 + "@babel/helper-simple-access" "^7.10.4" 654 737 babel-plugin-dynamic-import-node "^2.3.3" 655 738 656 - "@babel/plugin-transform-modules-commonjs@^7.9.6": 657 - version "7.10.1" 658 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.1.tgz#d5ff4b4413ed97ffded99961056e1fb980fb9301" 659 - integrity sha512-AQG4fc3KOah0vdITwt7Gi6hD9BtQP/8bhem7OjbaMoRNCH5Djx42O2vYMfau7QnAzQCa+RJnhJBmFFMGpQEzrg== 739 + "@babel/plugin-transform-modules-systemjs@^7.10.4": 740 + version "7.10.5" 741 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85" 742 + integrity sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== 660 743 dependencies: 661 - "@babel/helper-module-transforms" "^7.10.1" 662 - "@babel/helper-plugin-utils" "^7.10.1" 663 - "@babel/helper-simple-access" "^7.10.1" 744 + "@babel/helper-hoist-variables" "^7.10.4" 745 + "@babel/helper-module-transforms" "^7.10.5" 746 + "@babel/helper-plugin-utils" "^7.10.4" 664 747 babel-plugin-dynamic-import-node "^2.3.3" 665 748 666 - "@babel/plugin-transform-modules-systemjs@^7.9.6": 667 - version "7.10.1" 668 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.1.tgz#9962e4b0ac6aaf2e20431ada3d8ec72082cbffb6" 669 - integrity sha512-ewNKcj1TQZDL3YnO85qh9zo1YF1CHgmSTlRQgHqe63oTrMI85cthKtZjAiZSsSNjPQ5NCaYo5QkbYqEw1ZBgZA== 749 + "@babel/plugin-transform-modules-umd@^7.10.4": 750 + version "7.10.4" 751 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e" 752 + integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== 670 753 dependencies: 671 - "@babel/helper-hoist-variables" "^7.10.1" 672 - "@babel/helper-module-transforms" "^7.10.1" 673 - "@babel/helper-plugin-utils" "^7.10.1" 674 - babel-plugin-dynamic-import-node "^2.3.3" 754 + "@babel/helper-module-transforms" "^7.10.4" 755 + "@babel/helper-plugin-utils" "^7.10.4" 675 756 676 - "@babel/plugin-transform-modules-umd@^7.9.0": 677 - version "7.10.1" 678 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.1.tgz#ea080911ffc6eb21840a5197a39ede4ee67b1595" 679 - integrity sha512-EIuiRNMd6GB6ulcYlETnYYfgv4AxqrswghmBRQbWLHZxN4s7mupxzglnHqk9ZiUpDI4eRWewedJJNj67PWOXKA== 757 + "@babel/plugin-transform-named-capturing-groups-regex@^7.10.4": 758 + version "7.10.4" 759 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6" 760 + integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== 680 761 dependencies: 681 - "@babel/helper-module-transforms" "^7.10.1" 682 - "@babel/helper-plugin-utils" "^7.10.1" 762 + "@babel/helper-create-regexp-features-plugin" "^7.10.4" 683 763 684 - "@babel/plugin-transform-named-capturing-groups-regex@^7.8.3": 685 - version "7.8.3" 686 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c" 687 - integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw== 688 - dependencies: 689 - "@babel/helper-create-regexp-features-plugin" "^7.8.3" 690 - 691 - "@babel/plugin-transform-new-target@^7.8.3": 692 - version "7.10.1" 693 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.1.tgz#6ee41a5e648da7632e22b6fb54012e87f612f324" 694 - integrity sha512-MBlzPc1nJvbmO9rPr1fQwXOM2iGut+JC92ku6PbiJMMK7SnQc1rytgpopveE3Evn47gzvGYeCdgfCDbZo0ecUw== 695 - dependencies: 696 - "@babel/helper-plugin-utils" "^7.10.1" 697 - 698 - "@babel/plugin-transform-object-super@^7.8.3": 699 - version "7.10.1" 700 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.1.tgz#2e3016b0adbf262983bf0d5121d676a5ed9c4fde" 701 - integrity sha512-WnnStUDN5GL+wGQrJylrnnVlFhFmeArINIR9gjhSeYyvroGhBrSAXYg/RHsnfzmsa+onJrTJrEClPzgNmmQ4Gw== 764 + "@babel/plugin-transform-new-target@^7.10.4": 765 + version "7.10.4" 766 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888" 767 + integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== 702 768 dependencies: 703 - "@babel/helper-plugin-utils" "^7.10.1" 704 - "@babel/helper-replace-supers" "^7.10.1" 769 + "@babel/helper-plugin-utils" "^7.10.4" 705 770 706 - "@babel/plugin-transform-parameters@^7.10.1", "@babel/plugin-transform-parameters@^7.9.5": 707 - version "7.10.1" 708 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.1.tgz#b25938a3c5fae0354144a720b07b32766f683ddd" 709 - integrity sha512-tJ1T0n6g4dXMsL45YsSzzSDZCxiHXAQp/qHrucOq5gEHncTA3xDxnd5+sZcoQp+N1ZbieAaB8r/VUCG0gqseOg== 710 - dependencies: 711 - "@babel/helper-get-function-arity" "^7.10.1" 712 - "@babel/helper-plugin-utils" "^7.10.1" 713 - 714 - "@babel/plugin-transform-property-literals@^7.8.3": 715 - version "7.10.1" 716 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.1.tgz#cffc7315219230ed81dc53e4625bf86815b6050d" 717 - integrity sha512-Kr6+mgag8auNrgEpbfIWzdXYOvqDHZOF0+Bx2xh4H2EDNwcbRb9lY6nkZg8oSjsX+DH9Ebxm9hOqtKW+gRDeNA== 718 - dependencies: 719 - "@babel/helper-plugin-utils" "^7.10.1" 720 - 721 - "@babel/plugin-transform-react-display-name@^7.8.3": 722 - version "7.10.1" 723 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.1.tgz#e6a33f6d48dfb213dda5e007d0c7ff82b6a3d8ef" 724 - integrity sha512-rBjKcVwjk26H3VX8pavMxGf33LNlbocMHdSeldIEswtQ/hrjyTG8fKKILW1cSkODyRovckN/uZlGb2+sAV9JUQ== 725 - dependencies: 726 - "@babel/helper-plugin-utils" "^7.10.1" 727 - 728 - "@babel/plugin-transform-react-jsx-development@^7.9.0": 729 - version "7.10.1" 730 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.1.tgz#1ac6300d8b28ef381ee48e6fec430cc38047b7f3" 731 - integrity sha512-XwDy/FFoCfw9wGFtdn5Z+dHh6HXKHkC6DwKNWpN74VWinUagZfDcEJc3Y8Dn5B3WMVnAllX8Kviaw7MtC5Epwg== 732 - dependencies: 733 - "@babel/helper-builder-react-jsx-experimental" "^7.10.1" 734 - "@babel/helper-plugin-utils" "^7.10.1" 735 - "@babel/plugin-syntax-jsx" "^7.10.1" 736 - 737 - "@babel/plugin-transform-react-jsx-self@^7.9.0": 738 - version "7.10.1" 739 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.1.tgz#22143e14388d72eb88649606bb9e46f421bc3821" 740 - integrity sha512-4p+RBw9d1qV4S749J42ZooeQaBomFPrSxa9JONLHJ1TxCBo3TzJ79vtmG2S2erUT8PDDrPdw4ZbXGr2/1+dILA== 771 + "@babel/plugin-transform-object-super@^7.10.4": 772 + version "7.10.4" 773 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894" 774 + integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== 741 775 dependencies: 742 - "@babel/helper-plugin-utils" "^7.10.1" 743 - "@babel/plugin-syntax-jsx" "^7.10.1" 776 + "@babel/helper-plugin-utils" "^7.10.4" 777 + "@babel/helper-replace-supers" "^7.10.4" 744 778 745 - "@babel/plugin-transform-react-jsx-source@^7.9.0": 746 - version "7.10.1" 747 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.1.tgz#30db3d4ee3cdebbb26a82a9703673714777a4273" 748 - integrity sha512-neAbaKkoiL+LXYbGDvh6PjPG+YeA67OsZlE78u50xbWh2L1/C81uHiNP5d1fw+uqUIoiNdCC8ZB+G4Zh3hShJA== 779 + "@babel/plugin-transform-parameters@^7.10.4": 780 + version "7.10.5" 781 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a" 782 + integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== 749 783 dependencies: 750 - "@babel/helper-plugin-utils" "^7.10.1" 751 - "@babel/plugin-syntax-jsx" "^7.10.1" 784 + "@babel/helper-get-function-arity" "^7.10.4" 785 + "@babel/helper-plugin-utils" "^7.10.4" 752 786 753 - "@babel/plugin-transform-react-jsx@^7.9.4": 754 - version "7.10.1" 755 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.1.tgz#91f544248ba131486decb5d9806da6a6e19a2896" 756 - integrity sha512-MBVworWiSRBap3Vs39eHt+6pJuLUAaK4oxGc8g+wY+vuSJvLiEQjW1LSTqKb8OUPtDvHCkdPhk7d6sjC19xyFw== 787 + "@babel/plugin-transform-property-literals@^7.10.4": 788 + version "7.10.4" 789 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0" 790 + integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== 757 791 dependencies: 758 - "@babel/helper-builder-react-jsx" "^7.10.1" 759 - "@babel/helper-builder-react-jsx-experimental" "^7.10.1" 760 - "@babel/helper-plugin-utils" "^7.10.1" 761 - "@babel/plugin-syntax-jsx" "^7.10.1" 792 + "@babel/helper-plugin-utils" "^7.10.4" 762 793 763 - "@babel/plugin-transform-regenerator@^7.8.7": 764 - version "7.10.1" 765 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.1.tgz#10e175cbe7bdb63cc9b39f9b3f823c5c7c5c5490" 766 - integrity sha512-B3+Y2prScgJ2Bh/2l9LJxKbb8C8kRfsG4AdPT+n7ixBHIxJaIG8bi8tgjxUMege1+WqSJ+7gu1YeoMVO3gPWzw== 794 + "@babel/plugin-transform-regenerator@^7.10.4": 795 + version "7.10.4" 796 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63" 797 + integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== 767 798 dependencies: 768 799 regenerator-transform "^0.14.2" 769 800 770 - "@babel/plugin-transform-reserved-words@^7.8.3": 771 - version "7.10.1" 772 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.1.tgz#0fc1027312b4d1c3276a57890c8ae3bcc0b64a86" 773 - integrity sha512-qN1OMoE2nuqSPmpTqEM7OvJ1FkMEV+BjVeZZm9V9mq/x1JLKQ4pcv8riZJMNN3u2AUGl0ouOMjRr2siecvHqUQ== 801 + "@babel/plugin-transform-reserved-words@^7.10.4": 802 + version "7.10.4" 803 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd" 804 + integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== 774 805 dependencies: 775 - "@babel/helper-plugin-utils" "^7.10.1" 806 + "@babel/helper-plugin-utils" "^7.10.4" 776 807 777 - "@babel/plugin-transform-runtime@7.9.6": 778 - version "7.9.6" 779 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.6.tgz#3ba804438ad0d880a17bca5eaa0cdf1edeedb2fd" 780 - integrity sha512-qcmiECD0mYOjOIt8YHNsAP1SxPooC/rDmfmiSK9BNY72EitdSc7l44WTEklaWuFtbOEBjNhWWyph/kOImbNJ4w== 808 + "@babel/plugin-transform-runtime@^7.11.5": 809 + version "7.11.5" 810 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.5.tgz#f108bc8e0cf33c37da031c097d1df470b3a293fc" 811 + integrity sha512-9aIoee+EhjySZ6vY5hnLjigHzunBlscx9ANKutkeWTJTx6m5Rbq6Ic01tLvO54lSusR+BxV7u4UDdCmXv5aagg== 781 812 dependencies: 782 - "@babel/helper-module-imports" "^7.8.3" 783 - "@babel/helper-plugin-utils" "^7.8.3" 813 + "@babel/helper-module-imports" "^7.10.4" 814 + "@babel/helper-plugin-utils" "^7.10.4" 784 815 resolve "^1.8.1" 785 816 semver "^5.5.1" 786 817 787 - "@babel/plugin-transform-shorthand-properties@^7.8.3": 788 - version "7.10.1" 789 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.1.tgz#e8b54f238a1ccbae482c4dce946180ae7b3143f3" 790 - integrity sha512-AR0E/lZMfLstScFwztApGeyTHJ5u3JUKMjneqRItWeEqDdHWZwAOKycvQNCasCK/3r5YXsuNG25funcJDu7Y2g== 818 + "@babel/plugin-transform-shorthand-properties@^7.10.4": 819 + version "7.10.4" 820 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6" 821 + integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== 791 822 dependencies: 792 - "@babel/helper-plugin-utils" "^7.10.1" 823 + "@babel/helper-plugin-utils" "^7.10.4" 793 824 794 - "@babel/plugin-transform-spread@^7.8.3": 795 - version "7.10.1" 796 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.1.tgz#0c6d618a0c4461a274418460a28c9ccf5239a7c8" 797 - integrity sha512-8wTPym6edIrClW8FI2IoaePB91ETOtg36dOkj3bYcNe7aDMN2FXEoUa+WrmPc4xa1u2PQK46fUX2aCb+zo9rfw== 825 + "@babel/plugin-transform-spread@^7.11.0": 826 + version "7.11.0" 827 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc" 828 + integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== 798 829 dependencies: 799 - "@babel/helper-plugin-utils" "^7.10.1" 830 + "@babel/helper-plugin-utils" "^7.10.4" 831 + "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" 800 832 801 - "@babel/plugin-transform-sticky-regex@^7.8.3": 802 - version "7.10.1" 803 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.1.tgz#90fc89b7526228bed9842cff3588270a7a393b00" 804 - integrity sha512-j17ojftKjrL7ufX8ajKvwRilwqTok4q+BjkknmQw9VNHnItTyMP5anPFzxFJdCQs7clLcWpCV3ma+6qZWLnGMA== 833 + "@babel/plugin-transform-sticky-regex@^7.10.4": 834 + version "7.10.4" 835 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d" 836 + integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== 805 837 dependencies: 806 - "@babel/helper-plugin-utils" "^7.10.1" 807 - "@babel/helper-regex" "^7.10.1" 838 + "@babel/helper-plugin-utils" "^7.10.4" 839 + "@babel/helper-regex" "^7.10.4" 808 840 809 - "@babel/plugin-transform-template-literals@^7.8.3": 810 - version "7.10.1" 811 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.1.tgz#914c7b7f4752c570ea00553b4284dad8070e8628" 812 - integrity sha512-t7B/3MQf5M1T9hPCRG28DNGZUuxAuDqLYS03rJrIk2prj/UV7Z6FOneijhQhnv/Xa039vidXeVbvjK2SK5f7Gg== 841 + "@babel/plugin-transform-template-literals@^7.10.4": 842 + version "7.10.5" 843 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c" 844 + integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== 813 845 dependencies: 814 - "@babel/helper-annotate-as-pure" "^7.10.1" 815 - "@babel/helper-plugin-utils" "^7.10.1" 846 + "@babel/helper-annotate-as-pure" "^7.10.4" 847 + "@babel/helper-plugin-utils" "^7.10.4" 816 848 817 - "@babel/plugin-transform-typeof-symbol@^7.8.4": 818 - version "7.10.1" 819 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.1.tgz#60c0239b69965d166b80a84de7315c1bc7e0bb0e" 820 - integrity sha512-qX8KZcmbvA23zDi+lk9s6hC1FM7jgLHYIjuLgULgc8QtYnmB3tAVIYkNoKRQ75qWBeyzcoMoK8ZQmogGtC/w0g== 849 + "@babel/plugin-transform-typeof-symbol@^7.10.4": 850 + version "7.10.4" 851 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc" 852 + integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== 821 853 dependencies: 822 - "@babel/helper-plugin-utils" "^7.10.1" 854 + "@babel/helper-plugin-utils" "^7.10.4" 823 855 824 - "@babel/plugin-transform-typescript@^7.9.0": 825 - version "7.10.1" 826 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.10.1.tgz#2c54daea231f602468686d9faa76f182a94507a6" 827 - integrity sha512-v+QWKlmCnsaimLeqq9vyCsVRMViZG1k2SZTlcZvB+TqyH570Zsij8nvVUZzOASCRiQFUxkLrn9Wg/kH0zgy5OQ== 856 + "@babel/plugin-transform-unicode-escapes@^7.10.4": 857 + version "7.10.4" 858 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007" 859 + integrity sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== 828 860 dependencies: 829 - "@babel/helper-create-class-features-plugin" "^7.10.1" 830 - "@babel/helper-plugin-utils" "^7.10.1" 831 - "@babel/plugin-syntax-typescript" "^7.10.1" 861 + "@babel/helper-plugin-utils" "^7.10.4" 832 862 833 - "@babel/plugin-transform-unicode-regex@^7.8.3": 834 - version "7.10.1" 835 - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.1.tgz#6b58f2aea7b68df37ac5025d9c88752443a6b43f" 836 - integrity sha512-Y/2a2W299k0VIUdbqYm9X2qS6fE0CUBhhiPpimK6byy7OJ/kORLlIX+J6UrjgNu5awvs62k+6RSslxhcvVw2Tw== 863 + "@babel/plugin-transform-unicode-regex@^7.10.4": 864 + version "7.10.4" 865 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8" 866 + integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== 837 867 dependencies: 838 - "@babel/helper-create-regexp-features-plugin" "^7.10.1" 839 - "@babel/helper-plugin-utils" "^7.10.1" 868 + "@babel/helper-create-regexp-features-plugin" "^7.10.4" 869 + "@babel/helper-plugin-utils" "^7.10.4" 840 870 841 - "@babel/preset-env@7.9.6": 842 - version "7.9.6" 843 - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.6.tgz#df063b276c6455ec6fcfc6e53aacc38da9b0aea6" 844 - integrity sha512-0gQJ9RTzO0heXOhzftog+a/WyOuqMrAIugVYxMYf83gh1CQaQDjMtsOpqOwXyDL/5JcWsrCm8l4ju8QC97O7EQ== 871 + "@babel/preset-env@^7.11.0": 872 + version "7.11.0" 873 + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.0.tgz#860ee38f2ce17ad60480c2021ba9689393efb796" 874 + integrity sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg== 845 875 dependencies: 846 - "@babel/compat-data" "^7.9.6" 847 - "@babel/helper-compilation-targets" "^7.9.6" 848 - "@babel/helper-module-imports" "^7.8.3" 849 - "@babel/helper-plugin-utils" "^7.8.3" 850 - "@babel/plugin-proposal-async-generator-functions" "^7.8.3" 851 - "@babel/plugin-proposal-dynamic-import" "^7.8.3" 852 - "@babel/plugin-proposal-json-strings" "^7.8.3" 853 - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3" 854 - "@babel/plugin-proposal-numeric-separator" "^7.8.3" 855 - "@babel/plugin-proposal-object-rest-spread" "^7.9.6" 856 - "@babel/plugin-proposal-optional-catch-binding" "^7.8.3" 857 - "@babel/plugin-proposal-optional-chaining" "^7.9.0" 858 - "@babel/plugin-proposal-unicode-property-regex" "^7.8.3" 876 + "@babel/compat-data" "^7.11.0" 877 + "@babel/helper-compilation-targets" "^7.10.4" 878 + "@babel/helper-module-imports" "^7.10.4" 879 + "@babel/helper-plugin-utils" "^7.10.4" 880 + "@babel/plugin-proposal-async-generator-functions" "^7.10.4" 881 + "@babel/plugin-proposal-class-properties" "^7.10.4" 882 + "@babel/plugin-proposal-dynamic-import" "^7.10.4" 883 + "@babel/plugin-proposal-export-namespace-from" "^7.10.4" 884 + "@babel/plugin-proposal-json-strings" "^7.10.4" 885 + "@babel/plugin-proposal-logical-assignment-operators" "^7.11.0" 886 + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4" 887 + "@babel/plugin-proposal-numeric-separator" "^7.10.4" 888 + "@babel/plugin-proposal-object-rest-spread" "^7.11.0" 889 + "@babel/plugin-proposal-optional-catch-binding" "^7.10.4" 890 + "@babel/plugin-proposal-optional-chaining" "^7.11.0" 891 + "@babel/plugin-proposal-private-methods" "^7.10.4" 892 + "@babel/plugin-proposal-unicode-property-regex" "^7.10.4" 859 893 "@babel/plugin-syntax-async-generators" "^7.8.0" 894 + "@babel/plugin-syntax-class-properties" "^7.10.4" 860 895 "@babel/plugin-syntax-dynamic-import" "^7.8.0" 896 + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 861 897 "@babel/plugin-syntax-json-strings" "^7.8.0" 898 + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 862 899 "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 863 - "@babel/plugin-syntax-numeric-separator" "^7.8.0" 900 + "@babel/plugin-syntax-numeric-separator" "^7.10.4" 864 901 "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 865 902 "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 866 903 "@babel/plugin-syntax-optional-chaining" "^7.8.0" 867 - "@babel/plugin-syntax-top-level-await" "^7.8.3" 868 - "@babel/plugin-transform-arrow-functions" "^7.8.3" 869 - "@babel/plugin-transform-async-to-generator" "^7.8.3" 870 - "@babel/plugin-transform-block-scoped-functions" "^7.8.3" 871 - "@babel/plugin-transform-block-scoping" "^7.8.3" 872 - "@babel/plugin-transform-classes" "^7.9.5" 873 - "@babel/plugin-transform-computed-properties" "^7.8.3" 874 - "@babel/plugin-transform-destructuring" "^7.9.5" 875 - "@babel/plugin-transform-dotall-regex" "^7.8.3" 876 - "@babel/plugin-transform-duplicate-keys" "^7.8.3" 877 - "@babel/plugin-transform-exponentiation-operator" "^7.8.3" 878 - "@babel/plugin-transform-for-of" "^7.9.0" 879 - "@babel/plugin-transform-function-name" "^7.8.3" 880 - "@babel/plugin-transform-literals" "^7.8.3" 881 - "@babel/plugin-transform-member-expression-literals" "^7.8.3" 882 - "@babel/plugin-transform-modules-amd" "^7.9.6" 883 - "@babel/plugin-transform-modules-commonjs" "^7.9.6" 884 - "@babel/plugin-transform-modules-systemjs" "^7.9.6" 885 - "@babel/plugin-transform-modules-umd" "^7.9.0" 886 - "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3" 887 - "@babel/plugin-transform-new-target" "^7.8.3" 888 - "@babel/plugin-transform-object-super" "^7.8.3" 889 - "@babel/plugin-transform-parameters" "^7.9.5" 890 - "@babel/plugin-transform-property-literals" "^7.8.3" 891 - "@babel/plugin-transform-regenerator" "^7.8.7" 892 - "@babel/plugin-transform-reserved-words" "^7.8.3" 893 - "@babel/plugin-transform-shorthand-properties" "^7.8.3" 894 - "@babel/plugin-transform-spread" "^7.8.3" 895 - "@babel/plugin-transform-sticky-regex" "^7.8.3" 896 - "@babel/plugin-transform-template-literals" "^7.8.3" 897 - "@babel/plugin-transform-typeof-symbol" "^7.8.4" 898 - "@babel/plugin-transform-unicode-regex" "^7.8.3" 904 + "@babel/plugin-syntax-top-level-await" "^7.10.4" 905 + "@babel/plugin-transform-arrow-functions" "^7.10.4" 906 + "@babel/plugin-transform-async-to-generator" "^7.10.4" 907 + "@babel/plugin-transform-block-scoped-functions" "^7.10.4" 908 + "@babel/plugin-transform-block-scoping" "^7.10.4" 909 + "@babel/plugin-transform-classes" "^7.10.4" 910 + "@babel/plugin-transform-computed-properties" "^7.10.4" 911 + "@babel/plugin-transform-destructuring" "^7.10.4" 912 + "@babel/plugin-transform-dotall-regex" "^7.10.4" 913 + "@babel/plugin-transform-duplicate-keys" "^7.10.4" 914 + "@babel/plugin-transform-exponentiation-operator" "^7.10.4" 915 + "@babel/plugin-transform-for-of" "^7.10.4" 916 + "@babel/plugin-transform-function-name" "^7.10.4" 917 + "@babel/plugin-transform-literals" "^7.10.4" 918 + "@babel/plugin-transform-member-expression-literals" "^7.10.4" 919 + "@babel/plugin-transform-modules-amd" "^7.10.4" 920 + "@babel/plugin-transform-modules-commonjs" "^7.10.4" 921 + "@babel/plugin-transform-modules-systemjs" "^7.10.4" 922 + "@babel/plugin-transform-modules-umd" "^7.10.4" 923 + "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4" 924 + "@babel/plugin-transform-new-target" "^7.10.4" 925 + "@babel/plugin-transform-object-super" "^7.10.4" 926 + "@babel/plugin-transform-parameters" "^7.10.4" 927 + "@babel/plugin-transform-property-literals" "^7.10.4" 928 + "@babel/plugin-transform-regenerator" "^7.10.4" 929 + "@babel/plugin-transform-reserved-words" "^7.10.4" 930 + "@babel/plugin-transform-shorthand-properties" "^7.10.4" 931 + "@babel/plugin-transform-spread" "^7.11.0" 932 + "@babel/plugin-transform-sticky-regex" "^7.10.4" 933 + "@babel/plugin-transform-template-literals" "^7.10.4" 934 + "@babel/plugin-transform-typeof-symbol" "^7.10.4" 935 + "@babel/plugin-transform-unicode-escapes" "^7.10.4" 936 + "@babel/plugin-transform-unicode-regex" "^7.10.4" 899 937 "@babel/preset-modules" "^0.1.3" 900 - "@babel/types" "^7.9.6" 901 - browserslist "^4.11.1" 938 + "@babel/types" "^7.11.0" 939 + browserslist "^4.12.0" 902 940 core-js-compat "^3.6.2" 903 941 invariant "^2.2.2" 904 942 levenary "^1.1.1" 905 943 semver "^5.5.0" 906 944 907 - "@babel/preset-modules@0.1.3", "@babel/preset-modules@^0.1.3": 945 + "@babel/preset-modules@^0.1.3": 908 946 version "0.1.3" 909 947 resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" 910 948 integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== ··· 915 953 "@babel/types" "^7.4.4" 916 954 esutils "^2.0.2" 917 955 918 - "@babel/preset-react@7.9.4": 919 - version "7.9.4" 920 - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.4.tgz#c6c97693ac65b6b9c0b4f25b948a8f665463014d" 921 - integrity sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ== 956 + "@babel/register@^7.10.5": 957 + version "7.10.5" 958 + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.10.5.tgz#354f3574895f1307f79efe37a51525e52fd38d89" 959 + integrity sha512-eYHdLv43nyvmPn9bfNfrcC4+iYNwdQ8Pxk1MFJuU/U5LpSYl/PH4dFMazCYZDFVi8ueG3shvO+AQfLrxpYulQw== 922 960 dependencies: 923 - "@babel/helper-plugin-utils" "^7.8.3" 924 - "@babel/plugin-transform-react-display-name" "^7.8.3" 925 - "@babel/plugin-transform-react-jsx" "^7.9.4" 926 - "@babel/plugin-transform-react-jsx-development" "^7.9.0" 927 - "@babel/plugin-transform-react-jsx-self" "^7.9.0" 928 - "@babel/plugin-transform-react-jsx-source" "^7.9.0" 961 + find-cache-dir "^2.0.0" 962 + lodash "^4.17.19" 963 + make-dir "^2.1.0" 964 + pirates "^4.0.0" 965 + source-map-support "^0.5.16" 929 966 930 - "@babel/preset-typescript@7.9.0": 931 - version "7.9.0" 932 - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz#87705a72b1f0d59df21c179f7c3d2ef4b16ce192" 933 - integrity sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg== 967 + "@babel/runtime@^7.8.4": 968 + version "7.10.5" 969 + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.5.tgz#303d8bd440ecd5a491eae6117fd3367698674c5c" 970 + integrity sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg== 934 971 dependencies: 935 - "@babel/helper-plugin-utils" "^7.8.3" 936 - "@babel/plugin-transform-typescript" "^7.9.0" 972 + regenerator-runtime "^0.13.4" 937 973 938 - "@babel/runtime@7.9.6": 939 - version "7.9.6" 940 - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f" 941 - integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ== 974 + "@babel/template@^7.10.4", "@babel/template@^7.3.3": 975 + version "7.10.4" 976 + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" 977 + integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== 942 978 dependencies: 943 - regenerator-runtime "^0.13.4" 979 + "@babel/code-frame" "^7.10.4" 980 + "@babel/parser" "^7.10.4" 981 + "@babel/types" "^7.10.4" 944 982 945 - "@babel/runtime@^7.0.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4": 946 - version "7.10.2" 947 - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.2.tgz#d103f21f2602497d38348a32e008637d506db839" 948 - integrity sha512-6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg== 983 + "@babel/traverse@^7.1.0", "@babel/traverse@^7.11.5": 984 + version "7.11.5" 985 + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz#be777b93b518eb6d76ee2e1ea1d143daa11e61c3" 986 + integrity sha512-EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ== 949 987 dependencies: 950 - regenerator-runtime "^0.13.4" 988 + "@babel/code-frame" "^7.10.4" 989 + "@babel/generator" "^7.11.5" 990 + "@babel/helper-function-name" "^7.10.4" 991 + "@babel/helper-split-export-declaration" "^7.11.0" 992 + "@babel/parser" "^7.11.5" 993 + "@babel/types" "^7.11.5" 994 + debug "^4.1.0" 995 + globals "^11.1.0" 996 + lodash "^4.17.19" 951 997 952 - "@babel/template@^7.10.1", "@babel/template@^7.7.4": 953 - version "7.10.1" 954 - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.1.tgz#e167154a94cb5f14b28dc58f5356d2162f539811" 955 - integrity sha512-OQDg6SqvFSsc9A0ej6SKINWrpJiNonRIniYondK2ViKhB06i3c0s+76XUft71iqBEe9S1OKsHwPAjfHnuvnCig== 998 + "@babel/traverse@^7.10.4": 999 + version "7.10.5" 1000 + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.5.tgz#77ce464f5b258be265af618d8fddf0536f20b564" 1001 + integrity sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ== 956 1002 dependencies: 957 - "@babel/code-frame" "^7.10.1" 958 - "@babel/parser" "^7.10.1" 959 - "@babel/types" "^7.10.1" 1003 + "@babel/code-frame" "^7.10.4" 1004 + "@babel/generator" "^7.10.5" 1005 + "@babel/helper-function-name" "^7.10.4" 1006 + "@babel/helper-split-export-declaration" "^7.10.4" 1007 + "@babel/parser" "^7.10.5" 1008 + "@babel/types" "^7.10.5" 1009 + debug "^4.1.0" 1010 + globals "^11.1.0" 1011 + lodash "^4.17.19" 960 1012 961 - "@babel/traverse@^7.10.1", "@babel/traverse@^7.7.4": 962 - version "7.10.1" 963 - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.1.tgz#bbcef3031e4152a6c0b50147f4958df54ca0dd27" 964 - integrity sha512-C/cTuXeKt85K+p08jN6vMDz8vSV0vZcI0wmQ36o6mjbuo++kPMdpOYw23W2XH04dbRt9/nMEfA4W3eR21CD+TQ== 1013 + "@babel/traverse@^7.11.0": 1014 + version "7.11.0" 1015 + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24" 1016 + integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg== 965 1017 dependencies: 966 - "@babel/code-frame" "^7.10.1" 967 - "@babel/generator" "^7.10.1" 968 - "@babel/helper-function-name" "^7.10.1" 969 - "@babel/helper-split-export-declaration" "^7.10.1" 970 - "@babel/parser" "^7.10.1" 971 - "@babel/types" "^7.10.1" 1018 + "@babel/code-frame" "^7.10.4" 1019 + "@babel/generator" "^7.11.0" 1020 + "@babel/helper-function-name" "^7.10.4" 1021 + "@babel/helper-split-export-declaration" "^7.11.0" 1022 + "@babel/parser" "^7.11.0" 1023 + "@babel/types" "^7.11.0" 972 1024 debug "^4.1.0" 973 1025 globals "^11.1.0" 974 - lodash "^4.17.13" 1026 + lodash "^4.17.19" 975 1027 976 - "@babel/types@7.8.3": 977 - version "7.8.3" 978 - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c" 979 - integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg== 1028 + "@babel/types@^7.0.0", "@babel/types@^7.11.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 1029 + version "7.11.5" 1030 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d" 1031 + integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q== 980 1032 dependencies: 981 - esutils "^2.0.2" 982 - lodash "^4.17.13" 1033 + "@babel/helper-validator-identifier" "^7.10.4" 1034 + lodash "^4.17.19" 983 1035 to-fast-properties "^2.0.0" 984 1036 985 - "@babel/types@7.9.6": 986 - version "7.9.6" 987 - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.6.tgz#2c5502b427251e9de1bd2dff95add646d95cc9f7" 988 - integrity sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA== 1037 + "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.4.4": 1038 + version "7.10.5" 1039 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15" 1040 + integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q== 989 1041 dependencies: 990 - "@babel/helper-validator-identifier" "^7.9.5" 991 - lodash "^4.17.13" 1042 + "@babel/helper-validator-identifier" "^7.10.4" 1043 + lodash "^4.17.19" 992 1044 to-fast-properties "^2.0.0" 993 1045 994 - "@babel/types@^7.10.1", "@babel/types@^7.10.2", "@babel/types@^7.4.4", "@babel/types@^7.7.4", "@babel/types@^7.9.6": 995 - version "7.10.2" 996 - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.2.tgz#30283be31cad0dbf6fb00bd40641ca0ea675172d" 997 - integrity sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng== 1046 + "@babel/types@^7.11.0": 1047 + version "7.11.0" 1048 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d" 1049 + integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA== 998 1050 dependencies: 999 - "@babel/helper-validator-identifier" "^7.10.1" 1000 - lodash "^4.17.13" 1051 + "@babel/helper-validator-identifier" "^7.10.4" 1052 + lodash "^4.17.19" 1001 1053 to-fast-properties "^2.0.0" 1002 1054 1003 - "@chakra-ui/core@^0.8.0": 1004 - version "0.8.0" 1005 - resolved "https://registry.yarnpkg.com/@chakra-ui/core/-/core-0.8.0.tgz#a377286becd86008448ec8cf29ceb8fc301ac2dc" 1006 - integrity sha512-il1I1nEWOmWJSspnC+WyArLHbHvs82hvKTNDd24wr6spa/7v2jaXFZeWDNenY35ay1NHV7Ya2StcBwQRGHMWYA== 1007 - dependencies: 1008 - "@reach/auto-id" "0.10.2" 1009 - "@styled-system/css" "5.1.5" 1010 - "@styled-system/should-forward-prop" "5.1.5" 1011 - "@types/styled-system" "5.1.9" 1012 - aria-hidden "^1.1.1" 1013 - body-scroll-lock "^3.0.1" 1014 - color "3.1.2" 1015 - copy-to-clipboard "3.3.1" 1016 - exenv "^1.2.2" 1017 - popper.js "^1.15.0" 1018 - react-animate-height "2.0.21" 1019 - react-focus-lock "^2.2.1" 1020 - react-spring "^8.0.27" 1021 - styled-system "5.1.5" 1022 - toasted-notes "3.2.0" 1023 - use-dark-mode "2.3.1" 1055 + "@bcoe/v8-coverage@^0.2.3": 1056 + version "0.2.3" 1057 + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 1058 + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 1024 1059 1025 - "@emotion/cache@^10.0.27": 1026 - version "10.0.29" 1027 - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.29.tgz#87e7e64f412c060102d589fe7c6dc042e6f9d1e0" 1028 - integrity sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ== 1060 + "@cnakazawa/watch@^1.0.3": 1061 + version "1.0.4" 1062 + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" 1063 + integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== 1029 1064 dependencies: 1030 - "@emotion/sheet" "0.9.4" 1031 - "@emotion/stylis" "0.8.5" 1032 - "@emotion/utils" "0.11.3" 1033 - "@emotion/weak-memoize" "0.2.5" 1065 + exec-sh "^0.3.2" 1066 + minimist "^1.2.0" 1034 1067 1035 - "@emotion/core@^10.0.28": 1036 - version "10.0.28" 1037 - resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.28.tgz#bb65af7262a234593a9e952c041d0f1c9b9bef3d" 1038 - integrity sha512-pH8UueKYO5jgg0Iq+AmCLxBsvuGtvlmiDCOuv8fGNYn3cowFpLN98L8zO56U0H1PjDIyAlXymgL3Wu7u7v6hbA== 1068 + "@istanbuljs/load-nyc-config@^1.0.0": 1069 + version "1.1.0" 1070 + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 1071 + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 1039 1072 dependencies: 1040 - "@babel/runtime" "^7.5.5" 1041 - "@emotion/cache" "^10.0.27" 1042 - "@emotion/css" "^10.0.27" 1043 - "@emotion/serialize" "^0.11.15" 1044 - "@emotion/sheet" "0.9.4" 1045 - "@emotion/utils" "0.11.3" 1073 + camelcase "^5.3.1" 1074 + find-up "^4.1.0" 1075 + get-package-type "^0.1.0" 1076 + js-yaml "^3.13.1" 1077 + resolve-from "^5.0.0" 1046 1078 1047 - "@emotion/css@^10.0.27": 1048 - version "10.0.27" 1049 - resolved "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.27.tgz#3a7458198fbbebb53b01b2b87f64e5e21241e14c" 1050 - integrity sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw== 1051 - dependencies: 1052 - "@emotion/serialize" "^0.11.15" 1053 - "@emotion/utils" "0.11.3" 1054 - babel-plugin-emotion "^10.0.27" 1079 + "@istanbuljs/schema@^0.1.2": 1080 + version "0.1.2" 1081 + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" 1082 + integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== 1055 1083 1056 - "@emotion/hash@0.8.0": 1057 - version "0.8.0" 1058 - resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" 1059 - integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== 1060 - 1061 - "@emotion/is-prop-valid@0.8.8", "@emotion/is-prop-valid@^0.8.1": 1062 - version "0.8.8" 1063 - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" 1064 - integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== 1084 + "@jest/console@^26.3.0": 1085 + version "26.3.0" 1086 + resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.3.0.tgz#ed04063efb280c88ba87388b6f16427c0a85c856" 1087 + integrity sha512-/5Pn6sJev0nPUcAdpJHMVIsA8sKizL2ZkcKPE5+dJrCccks7tcM7c9wbgHudBJbxXLoTbqsHkG1Dofoem4F09w== 1065 1088 dependencies: 1066 - "@emotion/memoize" "0.7.4" 1067 - 1068 - "@emotion/memoize@0.7.4", "@emotion/memoize@^0.7.1": 1069 - version "0.7.4" 1070 - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" 1071 - integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== 1089 + "@jest/types" "^26.3.0" 1090 + "@types/node" "*" 1091 + chalk "^4.0.0" 1092 + jest-message-util "^26.3.0" 1093 + jest-util "^26.3.0" 1094 + slash "^3.0.0" 1072 1095 1073 - "@emotion/serialize@^0.11.15", "@emotion/serialize@^0.11.16": 1074 - version "0.11.16" 1075 - resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.16.tgz#dee05f9e96ad2fb25a5206b6d759b2d1ed3379ad" 1076 - integrity sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg== 1096 + "@jest/core@^26.4.2": 1097 + version "26.4.2" 1098 + resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.4.2.tgz#85d0894f31ac29b5bab07aa86806d03dd3d33edc" 1099 + integrity sha512-sDva7YkeNprxJfepOctzS8cAk9TOekldh+5FhVuXS40+94SHbiicRO1VV2tSoRtgIo+POs/Cdyf8p76vPTd6dg== 1077 1100 dependencies: 1078 - "@emotion/hash" "0.8.0" 1079 - "@emotion/memoize" "0.7.4" 1080 - "@emotion/unitless" "0.7.5" 1081 - "@emotion/utils" "0.11.3" 1082 - csstype "^2.5.7" 1083 - 1084 - "@emotion/sheet@0.9.4": 1085 - version "0.9.4" 1086 - resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.4.tgz#894374bea39ec30f489bbfc3438192b9774d32e5" 1087 - integrity sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA== 1088 - 1089 - "@emotion/styled-base@^10.0.27": 1090 - version "10.0.31" 1091 - resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.31.tgz#940957ee0aa15c6974adc7d494ff19765a2f742a" 1092 - integrity sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ== 1093 - dependencies: 1094 - "@babel/runtime" "^7.5.5" 1095 - "@emotion/is-prop-valid" "0.8.8" 1096 - "@emotion/serialize" "^0.11.15" 1097 - "@emotion/utils" "0.11.3" 1101 + "@jest/console" "^26.3.0" 1102 + "@jest/reporters" "^26.4.1" 1103 + "@jest/test-result" "^26.3.0" 1104 + "@jest/transform" "^26.3.0" 1105 + "@jest/types" "^26.3.0" 1106 + "@types/node" "*" 1107 + ansi-escapes "^4.2.1" 1108 + chalk "^4.0.0" 1109 + exit "^0.1.2" 1110 + graceful-fs "^4.2.4" 1111 + jest-changed-files "^26.3.0" 1112 + jest-config "^26.4.2" 1113 + jest-haste-map "^26.3.0" 1114 + jest-message-util "^26.3.0" 1115 + jest-regex-util "^26.0.0" 1116 + jest-resolve "^26.4.0" 1117 + jest-resolve-dependencies "^26.4.2" 1118 + jest-runner "^26.4.2" 1119 + jest-runtime "^26.4.2" 1120 + jest-snapshot "^26.4.2" 1121 + jest-util "^26.3.0" 1122 + jest-validate "^26.4.2" 1123 + jest-watcher "^26.3.0" 1124 + micromatch "^4.0.2" 1125 + p-each-series "^2.1.0" 1126 + rimraf "^3.0.0" 1127 + slash "^3.0.0" 1128 + strip-ansi "^6.0.0" 1098 1129 1099 - "@emotion/styled@^10.0.27": 1100 - version "10.0.27" 1101 - resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-10.0.27.tgz#12cb67e91f7ad7431e1875b1d83a94b814133eaf" 1102 - integrity sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q== 1130 + "@jest/environment@^26.3.0": 1131 + version "26.3.0" 1132 + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.3.0.tgz#e6953ab711ae3e44754a025f838bde1a7fd236a0" 1133 + integrity sha512-EW+MFEo0DGHahf83RAaiqQx688qpXgl99wdb8Fy67ybyzHwR1a58LHcO376xQJHfmoXTu89M09dH3J509cx2AA== 1103 1134 dependencies: 1104 - "@emotion/styled-base" "^10.0.27" 1105 - babel-plugin-emotion "^10.0.27" 1135 + "@jest/fake-timers" "^26.3.0" 1136 + "@jest/types" "^26.3.0" 1137 + "@types/node" "*" 1138 + jest-mock "^26.3.0" 1106 1139 1107 - "@emotion/stylis@0.8.5": 1108 - version "0.8.5" 1109 - resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" 1110 - integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== 1111 - 1112 - "@emotion/unitless@0.7.5": 1113 - version "0.7.5" 1114 - resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" 1115 - integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== 1116 - 1117 - "@emotion/utils@0.11.3": 1118 - version "0.11.3" 1119 - resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.3.tgz#a759863867befa7e583400d322652a3f44820924" 1120 - integrity sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw== 1121 - 1122 - "@emotion/weak-memoize@0.2.5": 1123 - version "0.2.5" 1124 - resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" 1125 - integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== 1126 - 1127 - "@next/react-dev-overlay@9.4.4": 1128 - version "9.4.4" 1129 - resolved "https://registry.yarnpkg.com/@next/react-dev-overlay/-/react-dev-overlay-9.4.4.tgz#4ae03ac839ff022b3ce5c695bd24b179d4ef459d" 1130 - integrity sha512-UUAa8RbH7BeWDPCkagIkR4sUsyvTPlEdFrPZ9kGjf2+p8HkLHpcVY7y+XRnNvJQs4PsAF0Plh20FBz7t54U2iQ== 1140 + "@jest/fake-timers@^26.3.0": 1141 + version "26.3.0" 1142 + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.3.0.tgz#f515d4667a6770f60ae06ae050f4e001126c666a" 1143 + integrity sha512-ZL9ytUiRwVP8ujfRepffokBvD2KbxbqMhrXSBhSdAhISCw3gOkuntisiSFv+A6HN0n0fF4cxzICEKZENLmW+1A== 1131 1144 dependencies: 1132 - "@babel/code-frame" "7.8.3" 1133 - ally.js "1.4.1" 1134 - anser "1.4.9" 1135 - chalk "4.0.0" 1136 - classnames "2.2.6" 1137 - data-uri-to-buffer "3.0.0" 1138 - shell-quote "1.7.2" 1139 - source-map "0.8.0-beta.0" 1140 - stacktrace-parser "0.1.10" 1141 - strip-ansi "6.0.0" 1142 - 1143 - "@next/react-refresh-utils@9.4.4": 1144 - version "9.4.4" 1145 - resolved "https://registry.yarnpkg.com/@next/react-refresh-utils/-/react-refresh-utils-9.4.4.tgz#d94cbb3b354a07f1f5b80e554d6b9e34aba99e41" 1146 - integrity sha512-9nKENeWRI6kQk44TbeqleIVtNLfcS3klVUepzl/ZCqzR5Bi06uqBCD277hdVvG/wL1pxA+R/pgJQLqnF5E2wPQ== 1145 + "@jest/types" "^26.3.0" 1146 + "@sinonjs/fake-timers" "^6.0.1" 1147 + "@types/node" "*" 1148 + jest-message-util "^26.3.0" 1149 + jest-mock "^26.3.0" 1150 + jest-util "^26.3.0" 1147 1151 1148 - "@reach/alert@^0.1.2": 1149 - version "0.1.5" 1150 - resolved "https://registry.yarnpkg.com/@reach/alert/-/alert-0.1.5.tgz#4da79add0055fa4295f51e5295ed3b80257e9153" 1151 - integrity sha512-Ow+SB7rokGWxmm+AdOpf4eo29OaEYDqlJ1Kc9qulVX2cKjYiHQqAvkiCkSaIPkQbbyNmEXJ0c/rVpzPVvCVIAw== 1152 + "@jest/globals@^26.4.2": 1153 + version "26.4.2" 1154 + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.4.2.tgz#73c2a862ac691d998889a241beb3dc9cada40d4a" 1155 + integrity sha512-Ot5ouAlehhHLRhc+sDz2/9bmNv9p5ZWZ9LE1pXGGTCXBasmi5jnYjlgYcYt03FBwLmZXCZ7GrL29c33/XRQiow== 1152 1156 dependencies: 1153 - "@reach/component-component" "^0.1.3" 1154 - "@reach/visually-hidden" "^0.1.4" 1157 + "@jest/environment" "^26.3.0" 1158 + "@jest/types" "^26.3.0" 1159 + expect "^26.4.2" 1155 1160 1156 - "@reach/auto-id@0.10.2": 1157 - version "0.10.2" 1158 - resolved "https://registry.yarnpkg.com/@reach/auto-id/-/auto-id-0.10.2.tgz#a447af67241123dcb701ecd61931a2c786ed111e" 1159 - integrity sha512-PWFZevkHshiJV/z0L/5WQkWhe9QRzdZqC7N/JHRCoYo+odvCz9izXVRsxJf7p4sCuOCvnc8zNzAokFk2E1ZzDg== 1161 + "@jest/reporters@^26.4.1": 1162 + version "26.4.1" 1163 + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.4.1.tgz#3b4d6faf28650f3965f8b97bc3d114077fb71795" 1164 + integrity sha512-aROTkCLU8++yiRGVxLsuDmZsQEKO6LprlrxtAuzvtpbIFl3eIjgIf3EUxDKgomkS25R9ZzwGEdB5weCcBZlrpQ== 1160 1165 dependencies: 1161 - "@reach/utils" "^0.10.2" 1162 - tslib "^1.11.2" 1166 + "@bcoe/v8-coverage" "^0.2.3" 1167 + "@jest/console" "^26.3.0" 1168 + "@jest/test-result" "^26.3.0" 1169 + "@jest/transform" "^26.3.0" 1170 + "@jest/types" "^26.3.0" 1171 + chalk "^4.0.0" 1172 + collect-v8-coverage "^1.0.0" 1173 + exit "^0.1.2" 1174 + glob "^7.1.2" 1175 + graceful-fs "^4.2.4" 1176 + istanbul-lib-coverage "^3.0.0" 1177 + istanbul-lib-instrument "^4.0.3" 1178 + istanbul-lib-report "^3.0.0" 1179 + istanbul-lib-source-maps "^4.0.0" 1180 + istanbul-reports "^3.0.2" 1181 + jest-haste-map "^26.3.0" 1182 + jest-resolve "^26.4.0" 1183 + jest-util "^26.3.0" 1184 + jest-worker "^26.3.0" 1185 + slash "^3.0.0" 1186 + source-map "^0.6.0" 1187 + string-length "^4.0.1" 1188 + terminal-link "^2.0.0" 1189 + v8-to-istanbul "^5.0.1" 1190 + optionalDependencies: 1191 + node-notifier "^8.0.0" 1163 1192 1164 - "@reach/component-component@^0.1.3": 1165 - version "0.1.3" 1166 - resolved "https://registry.yarnpkg.com/@reach/component-component/-/component-component-0.1.3.tgz#5d156319572dc38995b246f81878bc2577c517e5" 1167 - integrity sha512-a1USH7L3bEfDdPN4iNZGvMEFuBfkdG+QNybeyDv8RloVFgZYRoM+KGXyy2KOfEnTUM8QWDRSROwaL3+ts5Angg== 1168 - 1169 - "@reach/utils@^0.10.2": 1170 - version "0.10.3" 1171 - resolved "https://registry.yarnpkg.com/@reach/utils/-/utils-0.10.3.tgz#e30f9b172d131161953df7dd01553c57ca4e78f8" 1172 - integrity sha512-LoIZSfVAJMA+DnzAMCMfc/wAM39iKT8BQQ9gI1FODpxd8nPFP4cKisMuRXImh2/iVtG2Z6NzzCNgceJSrywqFQ== 1193 + "@jest/source-map@^26.3.0": 1194 + version "26.3.0" 1195 + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.3.0.tgz#0e646e519883c14c551f7b5ae4ff5f1bfe4fc3d9" 1196 + integrity sha512-hWX5IHmMDWe1kyrKl7IhFwqOuAreIwHhbe44+XH2ZRHjrKIh0LO5eLQ/vxHFeAfRwJapmxuqlGAEYLadDq6ZGQ== 1173 1197 dependencies: 1174 - "@types/warning" "^3.0.0" 1175 - tslib "^1.11.2" 1176 - warning "^4.0.3" 1198 + callsites "^3.0.0" 1199 + graceful-fs "^4.2.4" 1200 + source-map "^0.6.0" 1177 1201 1178 - "@reach/visually-hidden@^0.1.4": 1179 - version "0.1.4" 1180 - resolved "https://registry.yarnpkg.com/@reach/visually-hidden/-/visually-hidden-0.1.4.tgz#0dc4ecedf523004337214187db70a46183bd945b" 1181 - integrity sha512-QHbzXjflSlCvDd6vJwdwx16mSB+vUCCQMiU/wK/CgVNPibtpEiIbisyxkpZc55DyDFNUIqP91rSUsNae+ogGDQ== 1182 - 1183 - "@styled-system/background@^5.1.2": 1184 - version "5.1.2" 1185 - resolved "https://registry.yarnpkg.com/@styled-system/background/-/background-5.1.2.tgz#75c63d06b497ab372b70186c0bf608d62847a2ba" 1186 - integrity sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A== 1202 + "@jest/test-result@^26.3.0": 1203 + version "26.3.0" 1204 + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.3.0.tgz#46cde01fa10c0aaeb7431bf71e4a20d885bc7fdb" 1205 + integrity sha512-a8rbLqzW/q7HWheFVMtghXV79Xk+GWwOK1FrtimpI5n1la2SY0qHri3/b0/1F0Ve0/yJmV8pEhxDfVwiUBGtgg== 1187 1206 dependencies: 1188 - "@styled-system/core" "^5.1.2" 1207 + "@jest/console" "^26.3.0" 1208 + "@jest/types" "^26.3.0" 1209 + "@types/istanbul-lib-coverage" "^2.0.0" 1210 + collect-v8-coverage "^1.0.0" 1189 1211 1190 - "@styled-system/border@^5.1.5": 1191 - version "5.1.5" 1192 - resolved "https://registry.yarnpkg.com/@styled-system/border/-/border-5.1.5.tgz#0493d4332d2b59b74bb0d57d08c73eb555761ba6" 1193 - integrity sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A== 1212 + "@jest/test-sequencer@^26.4.2": 1213 + version "26.4.2" 1214 + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.4.2.tgz#58a3760a61eec758a2ce6080201424580d97cbba" 1215 + integrity sha512-83DRD8N3M0tOhz9h0bn6Kl6dSp+US6DazuVF8J9m21WAp5x7CqSMaNycMP0aemC/SH/pDQQddbsfHRTBXVUgog== 1194 1216 dependencies: 1195 - "@styled-system/core" "^5.1.2" 1217 + "@jest/test-result" "^26.3.0" 1218 + graceful-fs "^4.2.4" 1219 + jest-haste-map "^26.3.0" 1220 + jest-runner "^26.4.2" 1221 + jest-runtime "^26.4.2" 1196 1222 1197 - "@styled-system/color@^5.1.2": 1198 - version "5.1.2" 1199 - resolved "https://registry.yarnpkg.com/@styled-system/color/-/color-5.1.2.tgz#b8d6b4af481faabe4abca1a60f8daa4ccc2d9f43" 1200 - integrity sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA== 1223 + "@jest/transform@^26.3.0": 1224 + version "26.3.0" 1225 + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.3.0.tgz#c393e0e01459da8a8bfc6d2a7c2ece1a13e8ba55" 1226 + integrity sha512-Isj6NB68QorGoFWvcOjlUhpkT56PqNIsXKR7XfvoDlCANn/IANlh8DrKAA2l2JKC3yWSMH5wS0GwuQM20w3b2A== 1201 1227 dependencies: 1202 - "@styled-system/core" "^5.1.2" 1228 + "@babel/core" "^7.1.0" 1229 + "@jest/types" "^26.3.0" 1230 + babel-plugin-istanbul "^6.0.0" 1231 + chalk "^4.0.0" 1232 + convert-source-map "^1.4.0" 1233 + fast-json-stable-stringify "^2.0.0" 1234 + graceful-fs "^4.2.4" 1235 + jest-haste-map "^26.3.0" 1236 + jest-regex-util "^26.0.0" 1237 + jest-util "^26.3.0" 1238 + micromatch "^4.0.2" 1239 + pirates "^4.0.1" 1240 + slash "^3.0.0" 1241 + source-map "^0.6.1" 1242 + write-file-atomic "^3.0.0" 1203 1243 1204 - "@styled-system/core@^5.1.2": 1205 - version "5.1.2" 1206 - resolved "https://registry.yarnpkg.com/@styled-system/core/-/core-5.1.2.tgz#b8b7b86455d5a0514f071c4fa8e434b987f6a772" 1207 - integrity sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw== 1244 + "@jest/types@^26.3.0": 1245 + version "26.3.0" 1246 + resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.3.0.tgz#97627bf4bdb72c55346eef98e3b3f7ddc4941f71" 1247 + integrity sha512-BDPG23U0qDeAvU4f99haztXwdAg3hz4El95LkAM+tHAqqhiVzRpEGHHU8EDxT/AnxOrA65YjLBwDahdJ9pTLJQ== 1208 1248 dependencies: 1209 - object-assign "^4.1.1" 1249 + "@types/istanbul-lib-coverage" "^2.0.0" 1250 + "@types/istanbul-reports" "^3.0.0" 1251 + "@types/node" "*" 1252 + "@types/yargs" "^15.0.0" 1253 + chalk "^4.0.0" 1210 1254 1211 - "@styled-system/css@5.1.5", "@styled-system/css@^5.1.5": 1212 - version "5.1.5" 1213 - resolved "https://registry.yarnpkg.com/@styled-system/css/-/css-5.1.5.tgz#0460d5f3ff962fa649ea128ef58d9584f403bbbc" 1214 - integrity sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A== 1255 + "@jridgewell/resolve-uri@1.0.0": 1256 + version "1.0.0" 1257 + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-1.0.0.tgz#3fdf5798f0b49e90155896f6291df186eac06c83" 1258 + integrity sha512-9oLAnygRMi8Q5QkYEU4XWK04B+nuoXoxjRvRxgjuChkLZFBja0YPSgdZ7dZtwhncLBcQe/I/E+fLuk5qxcYVJA== 1215 1259 1216 - "@styled-system/flexbox@^5.1.2": 1217 - version "5.1.2" 1218 - resolved "https://registry.yarnpkg.com/@styled-system/flexbox/-/flexbox-5.1.2.tgz#077090f43f61c3852df63da24e4108087a8beecf" 1219 - integrity sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ== 1260 + "@rollup/plugin-babel@^5.0.0": 1261 + version "5.2.0" 1262 + resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.2.0.tgz#b87556d61ed108b4eaf9d18b5323965adf8d9bee" 1263 + integrity sha512-CPABsajaKjINgBQ3it+yMnfVO3ibsrMBxRzbUOUw2cL1hsZJ7aogU8mgglQm3S2hHJgjnAmxPz0Rq7DVdmHsTw== 1220 1264 dependencies: 1221 - "@styled-system/core" "^5.1.2" 1265 + "@babel/helper-module-imports" "^7.10.4" 1266 + "@rollup/pluginutils" "^3.1.0" 1222 1267 1223 - "@styled-system/grid@^5.1.2": 1224 - version "5.1.2" 1225 - resolved "https://registry.yarnpkg.com/@styled-system/grid/-/grid-5.1.2.tgz#7165049877732900b99cd00759679fbe45c6c573" 1226 - integrity sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg== 1268 + "@rollup/pluginutils@^3.1.0": 1269 + version "3.1.0" 1270 + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" 1271 + integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== 1227 1272 dependencies: 1228 - "@styled-system/core" "^5.1.2" 1273 + "@types/estree" "0.0.39" 1274 + estree-walker "^1.0.1" 1275 + picomatch "^2.2.2" 1229 1276 1230 - "@styled-system/layout@^5.1.2": 1231 - version "5.1.2" 1232 - resolved "https://registry.yarnpkg.com/@styled-system/layout/-/layout-5.1.2.tgz#12d73e79887e10062f4dbbbc2067462eace42339" 1233 - integrity sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw== 1277 + "@sinonjs/commons@^1.7.0": 1278 + version "1.8.1" 1279 + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz#e7df00f98a203324f6dc7cc606cad9d4a8ab2217" 1280 + integrity sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw== 1234 1281 dependencies: 1235 - "@styled-system/core" "^5.1.2" 1282 + type-detect "4.0.8" 1236 1283 1237 - "@styled-system/position@^5.1.2": 1238 - version "5.1.2" 1239 - resolved "https://registry.yarnpkg.com/@styled-system/position/-/position-5.1.2.tgz#56961266566836f57a24d8e8e33ce0c1adb59dd3" 1240 - integrity sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A== 1284 + "@sinonjs/fake-timers@^6.0.1": 1285 + version "6.0.1" 1286 + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40" 1287 + integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA== 1241 1288 dependencies: 1242 - "@styled-system/core" "^5.1.2" 1289 + "@sinonjs/commons" "^1.7.0" 1243 1290 1244 - "@styled-system/shadow@^5.1.2": 1245 - version "5.1.2" 1246 - resolved "https://registry.yarnpkg.com/@styled-system/shadow/-/shadow-5.1.2.tgz#beddab28d7de03cd0177a87ac4ed3b3b6d9831fd" 1247 - integrity sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg== 1291 + "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": 1292 + version "7.1.9" 1293 + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.9.tgz#77e59d438522a6fb898fa43dc3455c6e72f3963d" 1294 + integrity sha512-sY2RsIJ5rpER1u3/aQ8OFSI7qGIy8o1NEEbgb2UaJcvOtXOMpd39ko723NBpjQFg9SIX7TXtjejZVGeIMLhoOw== 1248 1295 dependencies: 1249 - "@styled-system/core" "^5.1.2" 1296 + "@babel/parser" "^7.1.0" 1297 + "@babel/types" "^7.0.0" 1298 + "@types/babel__generator" "*" 1299 + "@types/babel__template" "*" 1300 + "@types/babel__traverse" "*" 1250 1301 1251 - "@styled-system/should-forward-prop@5.1.5": 1252 - version "5.1.5" 1253 - resolved "https://registry.yarnpkg.com/@styled-system/should-forward-prop/-/should-forward-prop-5.1.5.tgz#c392008c6ae14a6eb78bf1932733594f7f7e5c76" 1254 - integrity sha512-+rPRomgCGYnUIaFabDoOgpSDc4UUJ1KsmlnzcEp0tu5lFrBQKgZclSo18Z1URhaZm7a6agGtS5Xif7tuC2s52Q== 1302 + "@types/babel__generator@*": 1303 + version "7.6.1" 1304 + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04" 1305 + integrity sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew== 1255 1306 dependencies: 1256 - "@emotion/is-prop-valid" "^0.8.1" 1257 - "@emotion/memoize" "^0.7.1" 1258 - styled-system "^5.1.5" 1307 + "@babel/types" "^7.0.0" 1259 1308 1260 - "@styled-system/space@^5.1.2": 1261 - version "5.1.2" 1262 - resolved "https://registry.yarnpkg.com/@styled-system/space/-/space-5.1.2.tgz#38925d2fa29a41c0eb20e65b7c3efb6e8efce953" 1263 - integrity sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA== 1309 + "@types/babel__template@*": 1310 + version "7.0.2" 1311 + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" 1312 + integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== 1264 1313 dependencies: 1265 - "@styled-system/core" "^5.1.2" 1314 + "@babel/parser" "^7.1.0" 1315 + "@babel/types" "^7.0.0" 1266 1316 1267 - "@styled-system/typography@^5.1.2": 1268 - version "5.1.2" 1269 - resolved "https://registry.yarnpkg.com/@styled-system/typography/-/typography-5.1.2.tgz#65fb791c67d50cd2900d234583eaacdca8c134f7" 1270 - integrity sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg== 1271 - dependencies: 1272 - "@styled-system/core" "^5.1.2" 1273 - 1274 - "@styled-system/variant@^5.1.5": 1275 - version "5.1.5" 1276 - resolved "https://registry.yarnpkg.com/@styled-system/variant/-/variant-5.1.5.tgz#8446d8aad06af3a4c723d717841df2dbe4ddeafd" 1277 - integrity sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw== 1317 + "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": 1318 + version "7.0.13" 1319 + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.13.tgz#1874914be974a492e1b4cb00585cabb274e8ba18" 1320 + integrity sha512-i+zS7t6/s9cdQvbqKDARrcbrPvtJGlbYsMkazo03nTAK3RX9FNrLllXys22uiTGJapPOTZTQ35nHh4ISph4SLQ== 1278 1321 dependencies: 1279 - "@styled-system/core" "^5.1.2" 1280 - "@styled-system/css" "^5.1.5" 1322 + "@babel/types" "^7.3.0" 1281 1323 1282 1324 "@types/color-name@^1.1.1": 1283 1325 version "1.1.1" 1284 1326 resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 1285 1327 integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 1286 1328 1287 - "@types/json-schema@^7.0.4": 1288 - version "7.0.5" 1289 - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" 1290 - integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== 1291 - 1292 - "@types/node@*", "@types/node@^14.0.11": 1293 - version "14.0.13" 1294 - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.13.tgz#ee1128e881b874c371374c1f72201893616417c9" 1295 - integrity sha512-rouEWBImiRaSJsVA+ITTFM6ZxibuAlTuNOCyxVbwreu6k6+ujs7DfnU9o+PShFhET78pMBl3eH+AGSI5eOTkPA== 1296 - 1297 - "@types/parse-json@^4.0.0": 1298 - version "4.0.0" 1299 - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 1300 - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 1301 - 1302 - "@types/prop-types@*": 1303 - version "15.7.3" 1304 - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 1305 - integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 1329 + "@types/estree@*": 1330 + version "0.0.45" 1331 + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" 1332 + integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== 1306 1333 1307 - "@types/q@^1.5.1": 1308 - version "1.5.4" 1309 - resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" 1310 - integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== 1334 + "@types/estree@0.0.39": 1335 + version "0.0.39" 1336 + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 1337 + integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 1311 1338 1312 - "@types/react-dom@^16.8.3", "@types/react-dom@^16.9.8": 1313 - version "16.9.8" 1314 - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.8.tgz#fe4c1e11dfc67155733dfa6aa65108b4971cb423" 1315 - integrity sha512-ykkPQ+5nFknnlU6lDd947WbQ6TE3NNzbQAkInC2EKY1qeYdTKp7onFusmYZb+ityzx2YviqT6BXSu+LyWWJwcA== 1339 + "@types/graceful-fs@^4.1.2": 1340 + version "4.1.3" 1341 + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f" 1342 + integrity sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ== 1316 1343 dependencies: 1317 - "@types/react" "*" 1344 + "@types/node" "*" 1318 1345 1319 - "@types/react@*", "@types/react@^16.8.10", "@types/react@^16.9.35": 1320 - version "16.9.36" 1321 - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.36.tgz#ade589ff51e2a903e34ee4669e05dbfa0c1ce849" 1322 - integrity sha512-mGgUb/Rk/vGx4NCvquRuSH0GHBQKb1OqpGS9cT9lFxlTLHZgkksgI60TuIxubmn7JuCb+sENHhQciqa0npm0AQ== 1323 - dependencies: 1324 - "@types/prop-types" "*" 1325 - csstype "^2.2.0" 1346 + "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 1347 + version "2.0.3" 1348 + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" 1349 + integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== 1326 1350 1327 - "@types/styled-system@5.1.9": 1328 - version "5.1.9" 1329 - resolved "https://registry.yarnpkg.com/@types/styled-system/-/styled-system-5.1.9.tgz#8baac8f6eca9e0bd5768c175ca5ce1f2d6f61ade" 1330 - integrity sha512-QlWv6tmQV8dqk8s+LSLb9QAtmuQEnfv4f8lKKZkMgDqRFVmxJDBwEw0u4zhpxp56u0hdR+TCIk9dGfOw3TkCoQ== 1351 + "@types/istanbul-lib-report@*": 1352 + version "3.0.0" 1353 + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 1354 + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 1331 1355 dependencies: 1332 - csstype "^2.6.9" 1356 + "@types/istanbul-lib-coverage" "*" 1333 1357 1334 - "@types/warning@^3.0.0": 1358 + "@types/istanbul-reports@^3.0.0": 1335 1359 version "3.0.0" 1336 - resolved "https://registry.yarnpkg.com/@types/warning/-/warning-3.0.0.tgz#0d2501268ad8f9962b740d387c4654f5f8e23e52" 1337 - integrity sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI= 1338 - 1339 - "@use-it/event-listener@^0.1.2": 1340 - version "0.1.3" 1341 - resolved "https://registry.yarnpkg.com/@use-it/event-listener/-/event-listener-0.1.3.tgz#a9920b2819d211cf55e68e830997546eec6886d3" 1342 - integrity sha512-UCHkLOVU+xj3/1R8jXz8GzDTowkzfIDPESOBlVC2ndgwUSBEqiFdwCoUEs2lcGhJOOiEdmWxF+T23C5+60eEew== 1343 - 1344 - "@webassemblyjs/ast@1.9.0": 1345 - version "1.9.0" 1346 - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" 1347 - integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA== 1360 + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821" 1361 + integrity sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA== 1348 1362 dependencies: 1349 - "@webassemblyjs/helper-module-context" "1.9.0" 1350 - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 1351 - "@webassemblyjs/wast-parser" "1.9.0" 1363 + "@types/istanbul-lib-report" "*" 1352 1364 1353 - "@webassemblyjs/floating-point-hex-parser@1.9.0": 1354 - version "1.9.0" 1355 - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4" 1356 - integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA== 1365 + "@types/json5@^0.0.29": 1366 + version "0.0.29" 1367 + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 1368 + integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 1357 1369 1358 - "@webassemblyjs/helper-api-error@1.9.0": 1359 - version "1.9.0" 1360 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2" 1361 - integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw== 1370 + "@types/node@*": 1371 + version "14.0.13" 1372 + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.13.tgz#ee1128e881b874c371374c1f72201893616417c9" 1373 + integrity sha512-rouEWBImiRaSJsVA+ITTFM6ZxibuAlTuNOCyxVbwreu6k6+ujs7DfnU9o+PShFhET78pMBl3eH+AGSI5eOTkPA== 1362 1374 1363 - "@webassemblyjs/helper-buffer@1.9.0": 1364 - version "1.9.0" 1365 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00" 1366 - integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA== 1375 + "@types/normalize-package-data@^2.4.0": 1376 + version "2.4.0" 1377 + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" 1378 + integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== 1367 1379 1368 - "@webassemblyjs/helper-code-frame@1.9.0": 1369 - version "1.9.0" 1370 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27" 1371 - integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA== 1372 - dependencies: 1373 - "@webassemblyjs/wast-printer" "1.9.0" 1380 + "@types/prettier@^2.0.0": 1381 + version "2.1.0" 1382 + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.1.0.tgz#5f96562c1075ee715a5b138f0b7f591c1f40f6b8" 1383 + integrity sha512-hiYA88aHiEIgDmeKlsyVsuQdcFn3Z2VuFd/Xm/HCnGnPD8UFU5BM128uzzRVVGEzKDKYUrRsRH9S2o+NUy/3IA== 1374 1384 1375 - "@webassemblyjs/helper-fsm@1.9.0": 1376 - version "1.9.0" 1377 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8" 1378 - integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw== 1385 + "@types/q@^1.5.1": 1386 + version "1.5.4" 1387 + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" 1388 + integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== 1379 1389 1380 - "@webassemblyjs/helper-module-context@1.9.0": 1381 - version "1.9.0" 1382 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07" 1383 - integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g== 1390 + "@types/resolve@0.0.8": 1391 + version "0.0.8" 1392 + resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194" 1393 + integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== 1384 1394 dependencies: 1385 - "@webassemblyjs/ast" "1.9.0" 1395 + "@types/node" "*" 1386 1396 1387 - "@webassemblyjs/helper-wasm-bytecode@1.9.0": 1388 - version "1.9.0" 1389 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790" 1390 - integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw== 1397 + "@types/stack-utils@^1.0.1": 1398 + version "1.0.1" 1399 + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" 1400 + integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== 1391 1401 1392 - "@webassemblyjs/helper-wasm-section@1.9.0": 1393 - version "1.9.0" 1394 - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346" 1395 - integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw== 1396 - dependencies: 1397 - "@webassemblyjs/ast" "1.9.0" 1398 - "@webassemblyjs/helper-buffer" "1.9.0" 1399 - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 1400 - "@webassemblyjs/wasm-gen" "1.9.0" 1402 + "@types/yargs-parser@*": 1403 + version "15.0.0" 1404 + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d" 1405 + integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== 1401 1406 1402 - "@webassemblyjs/ieee754@1.9.0": 1403 - version "1.9.0" 1404 - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4" 1405 - integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg== 1406 - dependencies: 1407 - "@xtuc/ieee754" "^1.2.0" 1408 - 1409 - "@webassemblyjs/leb128@1.9.0": 1410 - version "1.9.0" 1411 - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95" 1412 - integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw== 1407 + "@types/yargs@^15.0.0": 1408 + version "15.0.5" 1409 + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.5.tgz#947e9a6561483bdee9adffc983e91a6902af8b79" 1410 + integrity sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w== 1413 1411 dependencies: 1414 - "@xtuc/long" "4.2.2" 1412 + "@types/yargs-parser" "*" 1415 1413 1416 - "@webassemblyjs/utf8@1.9.0": 1417 - version "1.9.0" 1418 - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab" 1419 - integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w== 1414 + abab@^2.0.3: 1415 + version "2.0.4" 1416 + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.4.tgz#6dfa57b417ca06d21b2478f0e638302f99c2405c" 1417 + integrity sha512-Eu9ELJWCz/c1e9gTiCY+FceWxcqzjYEbqMgtndnuSqZSUCOL73TWNK2mHfIj4Cw2E/ongOp+JISVNCmovt2KYQ== 1420 1418 1421 - "@webassemblyjs/wasm-edit@1.9.0": 1422 - version "1.9.0" 1423 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf" 1424 - integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw== 1419 + acorn-globals@^6.0.0: 1420 + version "6.0.0" 1421 + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 1422 + integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 1425 1423 dependencies: 1426 - "@webassemblyjs/ast" "1.9.0" 1427 - "@webassemblyjs/helper-buffer" "1.9.0" 1428 - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 1429 - "@webassemblyjs/helper-wasm-section" "1.9.0" 1430 - "@webassemblyjs/wasm-gen" "1.9.0" 1431 - "@webassemblyjs/wasm-opt" "1.9.0" 1432 - "@webassemblyjs/wasm-parser" "1.9.0" 1433 - "@webassemblyjs/wast-printer" "1.9.0" 1424 + acorn "^7.1.1" 1425 + acorn-walk "^7.1.1" 1434 1426 1435 - "@webassemblyjs/wasm-gen@1.9.0": 1436 - version "1.9.0" 1437 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c" 1438 - integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA== 1427 + acorn-jsx@^3.0.0: 1428 + version "3.0.1" 1429 + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 1430 + integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= 1439 1431 dependencies: 1440 - "@webassemblyjs/ast" "1.9.0" 1441 - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 1442 - "@webassemblyjs/ieee754" "1.9.0" 1443 - "@webassemblyjs/leb128" "1.9.0" 1444 - "@webassemblyjs/utf8" "1.9.0" 1432 + acorn "^3.0.4" 1445 1433 1446 - "@webassemblyjs/wasm-opt@1.9.0": 1447 - version "1.9.0" 1448 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61" 1449 - integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A== 1450 - dependencies: 1451 - "@webassemblyjs/ast" "1.9.0" 1452 - "@webassemblyjs/helper-buffer" "1.9.0" 1453 - "@webassemblyjs/wasm-gen" "1.9.0" 1454 - "@webassemblyjs/wasm-parser" "1.9.0" 1434 + acorn-walk@7.1.1: 1435 + version "7.1.1" 1436 + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.1.1.tgz#345f0dffad5c735e7373d2fec9a1023e6a44b83e" 1437 + integrity sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ== 1455 1438 1456 - "@webassemblyjs/wasm-parser@1.9.0": 1457 - version "1.9.0" 1458 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e" 1459 - integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA== 1460 - dependencies: 1461 - "@webassemblyjs/ast" "1.9.0" 1462 - "@webassemblyjs/helper-api-error" "1.9.0" 1463 - "@webassemblyjs/helper-wasm-bytecode" "1.9.0" 1464 - "@webassemblyjs/ieee754" "1.9.0" 1465 - "@webassemblyjs/leb128" "1.9.0" 1466 - "@webassemblyjs/utf8" "1.9.0" 1439 + acorn-walk@^7.1.1: 1440 + version "7.2.0" 1441 + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 1442 + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 1467 1443 1468 - "@webassemblyjs/wast-parser@1.9.0": 1469 - version "1.9.0" 1470 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914" 1471 - integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw== 1472 - dependencies: 1473 - "@webassemblyjs/ast" "1.9.0" 1474 - "@webassemblyjs/floating-point-hex-parser" "1.9.0" 1475 - "@webassemblyjs/helper-api-error" "1.9.0" 1476 - "@webassemblyjs/helper-code-frame" "1.9.0" 1477 - "@webassemblyjs/helper-fsm" "1.9.0" 1478 - "@xtuc/long" "4.2.2" 1444 + acorn@7.1.1: 1445 + version "7.1.1" 1446 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" 1447 + integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== 1479 1448 1480 - "@webassemblyjs/wast-printer@1.9.0": 1481 - version "1.9.0" 1482 - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899" 1483 - integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA== 1484 - dependencies: 1485 - "@webassemblyjs/ast" "1.9.0" 1486 - "@webassemblyjs/wast-parser" "1.9.0" 1487 - "@xtuc/long" "4.2.2" 1449 + acorn@^3.0.4: 1450 + version "3.3.0" 1451 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 1452 + integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= 1488 1453 1489 - "@xtuc/ieee754@^1.2.0": 1490 - version "1.2.0" 1491 - resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" 1492 - integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== 1454 + acorn@^5.5.0: 1455 + version "5.7.4" 1456 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" 1457 + integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== 1493 1458 1494 - "@xtuc/long@4.2.2": 1495 - version "4.2.2" 1496 - resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" 1497 - integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== 1459 + acorn@^7.1.1: 1460 + version "7.4.0" 1461 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" 1462 + integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== 1498 1463 1499 - acorn@^6.4.1: 1500 - version "6.4.1" 1501 - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" 1502 - integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== 1464 + ajv-keywords@^2.1.0: 1465 + version "2.1.1" 1466 + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 1467 + integrity sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I= 1503 1468 1504 - adjust-sourcemap-loader@2.0.0: 1505 - version "2.0.0" 1506 - resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz#6471143af75ec02334b219f54bc7970c52fb29a4" 1507 - integrity sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA== 1469 + ajv@^5.2.3, ajv@^5.3.0: 1470 + version "5.5.2" 1471 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 1472 + integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= 1508 1473 dependencies: 1509 - assert "1.4.1" 1510 - camelcase "5.0.0" 1511 - loader-utils "1.2.3" 1512 - object-path "0.11.4" 1513 - regex-parser "2.2.10" 1474 + co "^4.6.0" 1475 + fast-deep-equal "^1.0.0" 1476 + fast-json-stable-stringify "^2.0.0" 1477 + json-schema-traverse "^0.3.0" 1514 1478 1515 - aggregate-error@^3.0.0: 1516 - version "3.0.1" 1517 - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" 1518 - integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== 1519 - dependencies: 1520 - clean-stack "^2.0.0" 1521 - indent-string "^4.0.0" 1522 - 1523 - ajv-errors@^1.0.0: 1524 - version "1.0.1" 1525 - resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" 1526 - integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== 1527 - 1528 - ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: 1529 - version "3.4.1" 1530 - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" 1531 - integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== 1532 - 1533 - ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.12.2: 1534 - version "6.12.2" 1535 - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" 1536 - integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== 1479 + ajv@^6.12.3: 1480 + version "6.12.4" 1481 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.4.tgz#0614facc4522127fa713445c6bfd3ebd376e2234" 1482 + integrity sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ== 1537 1483 dependencies: 1538 1484 fast-deep-equal "^3.1.1" 1539 1485 fast-json-stable-stringify "^2.0.0" 1540 1486 json-schema-traverse "^0.4.1" 1541 1487 uri-js "^4.2.2" 1542 1488 1543 - ally.js@1.4.1: 1544 - version "1.4.1" 1545 - resolved "https://registry.yarnpkg.com/ally.js/-/ally.js-1.4.1.tgz#9fb7e6ba58efac4ee9131cb29aa9ee3b540bcf1e" 1546 - integrity sha1-n7fmuljvrE7pExyymqnuO1QLzx4= 1547 - dependencies: 1548 - css.escape "^1.5.0" 1549 - platform "1.3.3" 1550 - 1551 - alphanum-sort@^1.0.0: 1552 - version "1.0.2" 1553 - resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 1554 - integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= 1489 + ansi-escapes@^3.0.0: 1490 + version "3.2.0" 1491 + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 1492 + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 1555 1493 1556 - anser@1.4.9: 1557 - version "1.4.9" 1558 - resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760" 1559 - integrity sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA== 1494 + ansi-escapes@^4.2.1: 1495 + version "4.3.1" 1496 + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 1497 + integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== 1498 + dependencies: 1499 + type-fest "^0.11.0" 1560 1500 1561 1501 ansi-regex@^2.0.0: 1562 1502 version "2.1.1" 1563 1503 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 1564 1504 integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 1565 1505 1506 + ansi-regex@^3.0.0: 1507 + version "3.0.0" 1508 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 1509 + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 1510 + 1566 1511 ansi-regex@^5.0.0: 1567 1512 version "5.0.0" 1568 1513 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" ··· 1580 1525 dependencies: 1581 1526 color-convert "^1.9.0" 1582 1527 1583 - ansi-styles@^4.1.0: 1528 + ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1584 1529 version "4.2.1" 1585 1530 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 1586 1531 integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== ··· 1596 1541 micromatch "^3.1.4" 1597 1542 normalize-path "^2.1.1" 1598 1543 1599 - anymatch@~3.1.1: 1544 + anymatch@^3.0.3: 1600 1545 version "3.1.1" 1601 1546 resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 1602 1547 integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== ··· 1604 1549 normalize-path "^3.0.0" 1605 1550 picomatch "^2.0.4" 1606 1551 1607 - aproba@^1.1.1: 1608 - version "1.2.0" 1609 - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 1610 - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 1611 - 1612 1552 argparse@^1.0.7: 1613 1553 version "1.0.10" 1614 1554 resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" ··· 1616 1556 dependencies: 1617 1557 sprintf-js "~1.0.2" 1618 1558 1619 - aria-hidden@^1.1.1: 1620 - version "1.1.1" 1621 - resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.1.1.tgz#0c356026d3f65e2bd487a3adb73f0c586be2c37e" 1622 - integrity sha512-M7zYxCcOQPOaxGHoMTKUFD2UNcVFTp9ycrdStLcTPLf8zgTXC3+YcGe+UuzSh5X1BX/0/PtS8xTNy4xyH/6xtw== 1623 - dependencies: 1624 - tslib "^1.0.0" 1625 - 1626 - arity-n@^1.0.4: 1627 - version "1.0.4" 1628 - resolved "https://registry.yarnpkg.com/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745" 1629 - integrity sha1-2edrEXM+CFacCEeuezmyhgswt0U= 1630 - 1631 1559 arr-diff@^4.0.0: 1632 1560 version "4.0.0" 1633 1561 resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" ··· 1643 1571 resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 1644 1572 integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 1645 1573 1574 + array-find-index@^1.0.2: 1575 + version "1.0.2" 1576 + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 1577 + integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= 1578 + 1579 + array-includes@^3.1.1: 1580 + version "3.1.1" 1581 + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" 1582 + integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== 1583 + dependencies: 1584 + define-properties "^1.1.3" 1585 + es-abstract "^1.17.0" 1586 + is-string "^1.0.5" 1587 + 1646 1588 array-unique@^0.3.2: 1647 1589 version "0.3.2" 1648 1590 resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 1649 1591 integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 1650 1592 1651 - asn1.js@^4.0.0: 1652 - version "4.10.1" 1653 - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 1654 - integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== 1593 + array.prototype.flat@^1.2.3: 1594 + version "1.2.3" 1595 + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" 1596 + integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== 1655 1597 dependencies: 1656 - bn.js "^4.0.0" 1657 - inherits "^2.0.1" 1658 - minimalistic-assert "^1.0.0" 1598 + define-properties "^1.1.3" 1599 + es-abstract "^1.17.0-next.1" 1659 1600 1660 - assert@1.4.1: 1661 - version "1.4.1" 1662 - resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 1663 - integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= 1601 + asn1@~0.2.3: 1602 + version "0.2.4" 1603 + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 1604 + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 1664 1605 dependencies: 1665 - util "0.10.3" 1606 + safer-buffer "~2.1.0" 1666 1607 1667 - assert@^1.1.1: 1668 - version "1.5.0" 1669 - resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" 1670 - integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== 1671 - dependencies: 1672 - object-assign "^4.1.1" 1673 - util "0.10.3" 1608 + assert-plus@1.0.0, assert-plus@^1.0.0: 1609 + version "1.0.0" 1610 + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 1611 + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= 1674 1612 1675 1613 assign-symbols@^1.0.0: 1676 1614 version "1.0.0" ··· 1682 1620 resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 1683 1621 integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== 1684 1622 1623 + asynckit@^0.4.0: 1624 + version "0.4.0" 1625 + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 1626 + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 1627 + 1685 1628 atob@^2.1.2: 1686 1629 version "2.1.2" 1687 1630 resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 1688 1631 integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 1689 1632 1633 + aws-sign2@~0.7.0: 1634 + version "0.7.0" 1635 + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 1636 + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= 1637 + 1638 + aws4@^1.8.0: 1639 + version "1.10.1" 1640 + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428" 1641 + integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA== 1642 + 1690 1643 babel-code-frame@^6.22.0: 1691 1644 version "6.26.0" 1692 1645 resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" ··· 1696 1649 esutils "^2.0.2" 1697 1650 js-tokens "^3.0.2" 1698 1651 1652 + babel-jest@^26.3.0: 1653 + version "26.3.0" 1654 + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.3.0.tgz#10d0ca4b529ca3e7d1417855ef7d7bd6fc0c3463" 1655 + integrity sha512-sxPnQGEyHAOPF8NcUsD0g7hDCnvLL2XyblRBcgrzTWBB/mAIpWow3n1bEL+VghnnZfreLhFSBsFluRoK2tRK4g== 1656 + dependencies: 1657 + "@jest/transform" "^26.3.0" 1658 + "@jest/types" "^26.3.0" 1659 + "@types/babel__core" "^7.1.7" 1660 + babel-plugin-istanbul "^6.0.0" 1661 + babel-preset-jest "^26.3.0" 1662 + chalk "^4.0.0" 1663 + graceful-fs "^4.2.4" 1664 + slash "^3.0.0" 1665 + 1666 + babel-plugin-add-import-extension@^1.4.3: 1667 + version "1.4.3" 1668 + resolved "https://registry.yarnpkg.com/babel-plugin-add-import-extension/-/babel-plugin-add-import-extension-1.4.3.tgz#9a153095f3c8bb820abbf168bbc71aba837e4e4a" 1669 + integrity sha512-NiKs80ucIlktWtQ6VGovyVprpgaDxqlo3fT2e2vIyF6k3+02YMmQt+QrBDOq/YImkK/pIXb/SKaO+FxKsfvNlA== 1670 + dependencies: 1671 + "@babel/helper-plugin-utils" "^7.10.4" 1672 + 1699 1673 babel-plugin-dynamic-import-node@^2.3.3: 1700 1674 version "2.3.3" 1701 1675 resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" ··· 1703 1677 dependencies: 1704 1678 object.assign "^4.1.0" 1705 1679 1706 - babel-plugin-emotion@^10.0.27: 1707 - version "10.0.33" 1708 - resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz#ce1155dcd1783bbb9286051efee53f4e2be63e03" 1709 - integrity sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ== 1680 + babel-plugin-istanbul@^6.0.0: 1681 + version "6.0.0" 1682 + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" 1683 + integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ== 1710 1684 dependencies: 1711 - "@babel/helper-module-imports" "^7.0.0" 1712 - "@emotion/hash" "0.8.0" 1713 - "@emotion/memoize" "0.7.4" 1714 - "@emotion/serialize" "^0.11.16" 1715 - babel-plugin-macros "^2.0.0" 1716 - babel-plugin-syntax-jsx "^6.18.0" 1717 - convert-source-map "^1.5.0" 1718 - escape-string-regexp "^1.0.5" 1719 - find-root "^1.1.0" 1720 - source-map "^0.5.7" 1685 + "@babel/helper-plugin-utils" "^7.0.0" 1686 + "@istanbuljs/load-nyc-config" "^1.0.0" 1687 + "@istanbuljs/schema" "^0.1.2" 1688 + istanbul-lib-instrument "^4.0.0" 1689 + test-exclude "^6.0.0" 1721 1690 1722 - babel-plugin-macros@^2.0.0: 1723 - version "2.8.0" 1724 - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" 1725 - integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== 1691 + babel-plugin-jest-hoist@^26.2.0: 1692 + version "26.2.0" 1693 + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.2.0.tgz#bdd0011df0d3d513e5e95f76bd53b51147aca2dd" 1694 + integrity sha512-B/hVMRv8Nh1sQ1a3EY8I0n4Y1Wty3NrR5ebOyVT302op+DOAau+xNEImGMsUWOC3++ZlMooCytKz+NgN8aKGbA== 1726 1695 dependencies: 1727 - "@babel/runtime" "^7.7.2" 1728 - cosmiconfig "^6.0.0" 1729 - resolve "^1.12.0" 1696 + "@babel/template" "^7.3.3" 1697 + "@babel/types" "^7.3.3" 1698 + "@types/babel__core" "^7.0.0" 1699 + "@types/babel__traverse" "^7.0.6" 1730 1700 1731 - babel-plugin-syntax-jsx@6.18.0, babel-plugin-syntax-jsx@^6.18.0: 1732 - version "6.18.0" 1733 - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 1734 - integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= 1701 + babel-preset-current-node-syntax@^0.1.3: 1702 + version "0.1.3" 1703 + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da" 1704 + integrity sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ== 1705 + dependencies: 1706 + "@babel/plugin-syntax-async-generators" "^7.8.4" 1707 + "@babel/plugin-syntax-bigint" "^7.8.3" 1708 + "@babel/plugin-syntax-class-properties" "^7.8.3" 1709 + "@babel/plugin-syntax-import-meta" "^7.8.3" 1710 + "@babel/plugin-syntax-json-strings" "^7.8.3" 1711 + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 1712 + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 1713 + "@babel/plugin-syntax-numeric-separator" "^7.8.3" 1714 + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 1715 + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 1716 + "@babel/plugin-syntax-optional-chaining" "^7.8.3" 1735 1717 1736 - babel-plugin-transform-define@2.0.0: 1737 - version "2.0.0" 1738 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-define/-/babel-plugin-transform-define-2.0.0.tgz#79c3536635f899aabaf830b194b25519465675a4" 1739 - integrity sha512-0dv5RNRUlUKxGYIIErl01lpvi8b7W2R04Qcl1mCj70ahwZcgiklfXnFlh4FGnRh6aayCfSZKdhiMryVzcq5Dmg== 1718 + babel-preset-jest@^26.3.0: 1719 + version "26.3.0" 1720 + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.3.0.tgz#ed6344506225c065fd8a0b53e191986f74890776" 1721 + integrity sha512-5WPdf7nyYi2/eRxCbVrE1kKCWxgWY4RsPEbdJWFm7QsesFGqjdkyLeu1zRkwM1cxK6EPIlNd6d2AxLk7J+t4pw== 1740 1722 dependencies: 1741 - lodash "^4.17.11" 1742 - traverse "0.6.6" 1743 - 1744 - babel-plugin-transform-react-remove-prop-types@0.4.24: 1745 - version "0.4.24" 1746 - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a" 1747 - integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA== 1723 + babel-plugin-jest-hoist "^26.2.0" 1724 + babel-preset-current-node-syntax "^0.1.3" 1748 1725 1749 1726 balanced-match@^1.0.0: 1750 1727 version "1.0.0" 1751 1728 resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1752 1729 integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 1753 - 1754 - base64-js@^1.0.2: 1755 - version "1.3.1" 1756 - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" 1757 - integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== 1758 1730 1759 1731 base@^0.11.1: 1760 1732 version "0.11.2" ··· 1769 1741 mixin-deep "^1.2.0" 1770 1742 pascalcase "^0.1.1" 1771 1743 1772 - big.js@^5.2.2: 1773 - version "5.2.2" 1774 - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 1775 - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 1744 + bcrypt-pbkdf@^1.0.0: 1745 + version "1.0.2" 1746 + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 1747 + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 1748 + dependencies: 1749 + tweetnacl "^0.14.3" 1776 1750 1777 1751 binary-extensions@^1.0.0: 1778 1752 version "1.13.1" 1779 1753 resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" 1780 1754 integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== 1781 1755 1782 - binary-extensions@^2.0.0: 1783 - version "2.0.0" 1784 - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" 1785 - integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== 1786 - 1787 1756 bindings@^1.5.0: 1788 1757 version "1.5.0" 1789 1758 resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" ··· 1791 1760 dependencies: 1792 1761 file-uri-to-path "1.0.0" 1793 1762 1794 - bluebird@^3.5.5: 1795 - version "3.7.2" 1796 - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 1797 - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 1798 - 1799 - bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: 1800 - version "4.11.9" 1801 - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" 1802 - integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== 1803 - 1804 - bn.js@^5.1.1: 1805 - version "5.1.2" 1806 - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" 1807 - integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== 1808 - 1809 - body-scroll-lock@^3.0.1: 1810 - version "3.0.3" 1811 - resolved "https://registry.yarnpkg.com/body-scroll-lock/-/body-scroll-lock-3.0.3.tgz#221d87435bcfb50e27ab5d4508735f622aed11a2" 1812 - integrity sha512-EUryImgD6Gv87HOjJB/yB2WIGECiZMhmcUK+DrqVRFDDa64xR+FsK0LgvLPnBxZDTxIl+W80/KJ8i6gp2IwOHQ== 1813 - 1814 1763 boolbase@^1.0.0, boolbase@~1.0.0: 1815 1764 version "1.0.0" 1816 1765 resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" ··· 1840 1789 split-string "^3.0.2" 1841 1790 to-regex "^3.0.1" 1842 1791 1843 - braces@~3.0.2: 1792 + braces@^3.0.1: 1844 1793 version "3.0.2" 1845 1794 resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 1846 1795 integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1847 1796 dependencies: 1848 1797 fill-range "^7.0.1" 1849 1798 1850 - brorand@^1.0.1: 1851 - version "1.1.0" 1852 - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 1853 - integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= 1854 - 1855 - browserify-aes@^1.0.0, browserify-aes@^1.0.4: 1856 - version "1.2.0" 1857 - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 1858 - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== 1859 - dependencies: 1860 - buffer-xor "^1.0.3" 1861 - cipher-base "^1.0.0" 1862 - create-hash "^1.1.0" 1863 - evp_bytestokey "^1.0.3" 1864 - inherits "^2.0.1" 1865 - safe-buffer "^5.0.1" 1866 - 1867 - browserify-cipher@^1.0.0: 1868 - version "1.0.1" 1869 - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" 1870 - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== 1871 - dependencies: 1872 - browserify-aes "^1.0.4" 1873 - browserify-des "^1.0.0" 1874 - evp_bytestokey "^1.0.0" 1875 - 1876 - browserify-des@^1.0.0: 1877 - version "1.0.2" 1878 - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" 1879 - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== 1880 - dependencies: 1881 - cipher-base "^1.0.1" 1882 - des.js "^1.0.0" 1883 - inherits "^2.0.1" 1884 - safe-buffer "^5.1.2" 1885 - 1886 - browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: 1887 - version "4.0.1" 1888 - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 1889 - integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= 1799 + brotli-size@^4.0.0: 1800 + version "4.0.0" 1801 + resolved "https://registry.yarnpkg.com/brotli-size/-/brotli-size-4.0.0.tgz#a05ee3faad3c0e700a2f2da826ba6b4d76e69e5e" 1802 + integrity sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA== 1890 1803 dependencies: 1891 - bn.js "^4.1.0" 1892 - randombytes "^2.0.1" 1804 + duplexer "0.1.1" 1893 1805 1894 - browserify-sign@^4.0.0: 1895 - version "4.2.0" 1896 - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" 1897 - integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== 1898 - dependencies: 1899 - bn.js "^5.1.1" 1900 - browserify-rsa "^4.0.1" 1901 - create-hash "^1.2.0" 1902 - create-hmac "^1.1.7" 1903 - elliptic "^6.5.2" 1904 - inherits "^2.0.4" 1905 - parse-asn1 "^5.1.5" 1906 - readable-stream "^3.6.0" 1907 - safe-buffer "^5.2.0" 1806 + browser-process-hrtime@^1.0.0: 1807 + version "1.0.0" 1808 + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 1809 + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 1908 1810 1909 - browserify-zlib@^0.2.0: 1910 - version "0.2.0" 1911 - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 1912 - integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== 1811 + browserslist@^4.12.0, browserslist@^4.8.5: 1812 + version "4.13.0" 1813 + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d" 1814 + integrity sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ== 1913 1815 dependencies: 1914 - pako "~1.0.5" 1816 + caniuse-lite "^1.0.30001093" 1817 + electron-to-chromium "^1.3.488" 1818 + escalade "^3.0.1" 1819 + node-releases "^1.1.58" 1915 1820 1916 - browserslist@4.12.0, browserslist@^4.0.0, browserslist@^4.11.1, browserslist@^4.12.0, browserslist@^4.8.5: 1917 - version "4.12.0" 1918 - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz#06c6d5715a1ede6c51fc39ff67fd647f740b656d" 1919 - integrity sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg== 1821 + bser@2.1.1: 1822 + version "2.1.1" 1823 + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 1824 + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 1920 1825 dependencies: 1921 - caniuse-lite "^1.0.30001043" 1922 - electron-to-chromium "^1.3.413" 1923 - node-releases "^1.1.53" 1924 - pkg-up "^2.0.0" 1826 + node-int64 "^0.4.0" 1925 1827 1926 - buffer-from@^1.0.0, buffer-from@^1.1.1: 1828 + buffer-from@^1.0.0: 1927 1829 version "1.1.1" 1928 1830 resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 1929 1831 integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 1930 1832 1931 - buffer-xor@^1.0.3: 1932 - version "1.0.3" 1933 - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 1934 - integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= 1935 - 1936 - buffer@^4.3.0: 1937 - version "4.9.2" 1938 - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" 1939 - integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== 1940 - dependencies: 1941 - base64-js "^1.0.2" 1942 - ieee754 "^1.1.4" 1943 - isarray "^1.0.0" 1944 - 1945 - builtin-status-codes@^3.0.0: 1946 - version "3.0.0" 1947 - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 1948 - integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= 1949 - 1950 - cacache@13.0.1: 1951 - version "13.0.1" 1952 - resolved "https://registry.yarnpkg.com/cacache/-/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c" 1953 - integrity sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w== 1954 - dependencies: 1955 - chownr "^1.1.2" 1956 - figgy-pudding "^3.5.1" 1957 - fs-minipass "^2.0.0" 1958 - glob "^7.1.4" 1959 - graceful-fs "^4.2.2" 1960 - infer-owner "^1.0.4" 1961 - lru-cache "^5.1.1" 1962 - minipass "^3.0.0" 1963 - minipass-collect "^1.0.2" 1964 - minipass-flush "^1.0.5" 1965 - minipass-pipeline "^1.2.2" 1966 - mkdirp "^0.5.1" 1967 - move-concurrently "^1.0.1" 1968 - p-map "^3.0.0" 1969 - promise-inflight "^1.0.1" 1970 - rimraf "^2.7.1" 1971 - ssri "^7.0.0" 1972 - unique-filename "^1.1.1" 1973 - 1974 - cacache@^12.0.2: 1975 - version "12.0.4" 1976 - resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" 1977 - integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== 1978 - dependencies: 1979 - bluebird "^3.5.5" 1980 - chownr "^1.1.1" 1981 - figgy-pudding "^3.5.1" 1982 - glob "^7.1.4" 1983 - graceful-fs "^4.1.15" 1984 - infer-owner "^1.0.3" 1985 - lru-cache "^5.1.1" 1986 - mississippi "^3.0.0" 1987 - mkdirp "^0.5.1" 1988 - move-concurrently "^1.0.1" 1989 - promise-inflight "^1.0.1" 1990 - rimraf "^2.6.3" 1991 - ssri "^6.0.1" 1992 - unique-filename "^1.1.1" 1993 - y18n "^4.0.0" 1833 + builtin-modules@^3.1.0: 1834 + version "3.1.0" 1835 + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" 1836 + integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== 1994 1837 1995 1838 cache-base@^1.0.1: 1996 1839 version "1.0.1" ··· 2007 1850 union-value "^1.0.0" 2008 1851 unset-value "^1.0.0" 2009 1852 2010 - caller-callsite@^2.0.0: 2011 - version "2.0.0" 2012 - resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" 2013 - integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= 2014 - dependencies: 2015 - callsites "^2.0.0" 2016 - 2017 - caller-path@^2.0.0: 2018 - version "2.0.0" 2019 - resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" 2020 - integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= 1853 + caller-path@^0.1.0: 1854 + version "0.1.0" 1855 + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1856 + integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8= 2021 1857 dependencies: 2022 - caller-callsite "^2.0.0" 1858 + callsites "^0.2.0" 2023 1859 2024 - callsites@^2.0.0: 2025 - version "2.0.0" 2026 - resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 2027 - integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= 1860 + callsites@^0.2.0: 1861 + version "0.2.0" 1862 + resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1863 + integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo= 2028 1864 2029 1865 callsites@^3.0.0: 2030 1866 version "3.1.0" 2031 1867 resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 2032 1868 integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 2033 1869 2034 - camelcase@5.0.0: 2035 - version "5.0.0" 2036 - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" 2037 - integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA== 1870 + camel-case@3.0.x: 1871 + version "3.0.0" 1872 + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 1873 + integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M= 1874 + dependencies: 1875 + no-case "^2.2.0" 1876 + upper-case "^1.1.1" 2038 1877 2039 - camelcase@5.3.1, camelcase@^5.3.1: 1878 + camelcase@^5.0.0, camelcase@^5.3.1: 2040 1879 version "5.3.1" 2041 1880 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 2042 1881 integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 2043 1882 2044 - camelcase@^4.1.0: 2045 - version "4.1.0" 2046 - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 2047 - integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 1883 + camelcase@^6.0.0: 1884 + version "6.0.0" 1885 + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz#5259f7c30e35e278f1bdc2a4d91230b37cad981e" 1886 + integrity sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w== 1887 + 1888 + caniuse-lite@^1.0.30001093: 1889 + version "1.0.30001107" 1890 + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001107.tgz#809360df7a5b3458f627aa46b0f6ed6d5239da9a" 1891 + integrity sha512-86rCH+G8onCmdN4VZzJet5uPELII59cUzDphko3thQFgAQG1RNa+sVLDoALIhRYmflo5iSIzWY3vu1XTWtNMQQ== 2048 1892 2049 - caniuse-api@^3.0.0: 2050 - version "3.0.0" 2051 - resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" 2052 - integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== 1893 + capture-exit@^2.0.0: 1894 + version "2.0.0" 1895 + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" 1896 + integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== 2053 1897 dependencies: 2054 - browserslist "^4.0.0" 2055 - caniuse-lite "^1.0.0" 2056 - lodash.memoize "^4.1.2" 2057 - lodash.uniq "^4.5.0" 1898 + rsvp "^4.8.4" 2058 1899 2059 - caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001043: 2060 - version "1.0.30001081" 2061 - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001081.tgz#40615a3c416a047c5a4d45673e5257bf128eb3b5" 2062 - integrity sha512-iZdh3lu09jsUtLE6Bp8NAbJskco4Y3UDtkR3GTCJGsbMowBU5IWDFF79sV2ws7lSqTzWyKazxam2thasHymENQ== 1900 + caseless@~0.12.0: 1901 + version "0.12.0" 1902 + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1903 + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= 2063 1904 2064 - chalk@4.0.0: 2065 - version "4.0.0" 2066 - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72" 2067 - integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A== 1905 + chalk@2.x, chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1: 1906 + version "2.4.2" 1907 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1908 + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 2068 1909 dependencies: 2069 - ansi-styles "^4.1.0" 2070 - supports-color "^7.1.0" 1910 + ansi-styles "^3.2.1" 1911 + escape-string-regexp "^1.0.5" 1912 + supports-color "^5.3.0" 2071 1913 2072 1914 chalk@^1.1.3: 2073 1915 version "1.1.3" ··· 2080 1922 strip-ansi "^3.0.0" 2081 1923 supports-color "^2.0.0" 2082 1924 2083 - chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: 2084 - version "2.4.2" 2085 - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 2086 - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1925 + chalk@^4.0.0: 1926 + version "4.1.0" 1927 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 1928 + integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 2087 1929 dependencies: 2088 - ansi-styles "^3.2.1" 2089 - escape-string-regexp "^1.0.5" 2090 - supports-color "^5.3.0" 1930 + ansi-styles "^4.1.0" 1931 + supports-color "^7.1.0" 1932 + 1933 + char-regex@^1.0.2: 1934 + version "1.0.2" 1935 + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 1936 + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 1937 + 1938 + chardet@^0.4.0: 1939 + version "0.4.2" 1940 + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 1941 + integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= 2091 1942 2092 - cheerio@^1.0.0-rc.3: 1943 + cheerio@^1.0.0-rc.2: 2093 1944 version "1.0.0-rc.3" 2094 1945 resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" 2095 1946 integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== ··· 2101 1952 lodash "^4.15.0" 2102 1953 parse5 "^3.0.1" 2103 1954 2104 - chokidar@2.1.8, chokidar@^2.1.8: 1955 + chokidar@^2.1.8: 2105 1956 version "2.1.8" 2106 1957 resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" 2107 1958 integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== ··· 2120 1971 optionalDependencies: 2121 1972 fsevents "^1.2.7" 2122 1973 2123 - chokidar@^3.3.0, chokidar@^3.4.0: 2124 - version "3.4.0" 2125 - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" 2126 - integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== 2127 - dependencies: 2128 - anymatch "~3.1.1" 2129 - braces "~3.0.2" 2130 - glob-parent "~5.1.0" 2131 - is-binary-path "~2.1.0" 2132 - is-glob "~4.0.1" 2133 - normalize-path "~3.0.0" 2134 - readdirp "~3.4.0" 2135 - optionalDependencies: 2136 - fsevents "~2.1.2" 2137 - 2138 - chownr@^1.1.1, chownr@^1.1.2: 2139 - version "1.1.4" 2140 - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" 2141 - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== 1974 + ci-info@^2.0.0: 1975 + version "2.0.0" 1976 + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 1977 + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 2142 1978 2143 - chrome-trace-event@^1.0.2: 2144 - version "1.0.2" 2145 - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" 2146 - integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== 2147 - dependencies: 2148 - tslib "^1.9.0" 2149 - 2150 - cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 2151 - version "1.0.4" 2152 - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 2153 - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== 2154 - dependencies: 2155 - inherits "^2.0.1" 2156 - safe-buffer "^5.0.1" 1979 + circular-json@^0.3.1: 1980 + version "0.3.3" 1981 + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1982 + integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A== 2157 1983 2158 1984 class-utils@^0.3.5: 2159 1985 version "0.3.6" ··· 2165 1991 isobject "^3.0.0" 2166 1992 static-extend "^0.1.1" 2167 1993 2168 - classnames@2.2.6, classnames@^2.2.5: 2169 - version "2.2.6" 2170 - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" 2171 - integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== 1994 + clean-css@4.2.x: 1995 + version "4.2.3" 1996 + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" 1997 + integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== 1998 + dependencies: 1999 + source-map "~0.6.0" 2172 2000 2173 - clean-stack@^2.0.0: 2174 - version "2.2.0" 2175 - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 2176 - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 2001 + cli-cursor@^2.1.0: 2002 + version "2.1.0" 2003 + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 2004 + integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 2005 + dependencies: 2006 + restore-cursor "^2.0.0" 2177 2007 2178 - clone-deep@^4.0.1: 2179 - version "4.0.1" 2180 - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" 2181 - integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== 2008 + cli-width@^2.0.0: 2009 + version "2.2.1" 2010 + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" 2011 + integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== 2012 + 2013 + cliui@^6.0.0: 2014 + version "6.0.0" 2015 + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 2016 + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 2182 2017 dependencies: 2183 - is-plain-object "^2.0.4" 2184 - kind-of "^6.0.2" 2185 - shallow-clone "^3.0.0" 2018 + string-width "^4.2.0" 2019 + strip-ansi "^6.0.0" 2020 + wrap-ansi "^6.2.0" 2021 + 2022 + clone-buffer@^1.0.0: 2023 + version "1.0.0" 2024 + resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 2025 + integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg= 2026 + 2027 + clone-stats@^1.0.0: 2028 + version "1.0.0" 2029 + resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 2030 + integrity sha1-s3gt/4u1R04Yuba/D9/ngvh3doA= 2031 + 2032 + clone@^2.1.1: 2033 + version "2.1.2" 2034 + resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" 2035 + integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= 2036 + 2037 + cloneable-readable@^1.0.0: 2038 + version "1.1.3" 2039 + resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.3.tgz#120a00cb053bfb63a222e709f9683ea2e11d8cec" 2040 + integrity sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ== 2041 + dependencies: 2042 + inherits "^2.0.1" 2043 + process-nextick-args "^2.0.0" 2044 + readable-stream "^2.3.5" 2045 + 2046 + co@^4.6.0: 2047 + version "4.6.0" 2048 + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 2049 + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 2186 2050 2187 2051 coa@^2.0.2: 2188 2052 version "2.0.2" ··· 2193 2057 chalk "^2.4.1" 2194 2058 q "^1.1.2" 2195 2059 2060 + collect-v8-coverage@^1.0.0: 2061 + version "1.0.1" 2062 + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 2063 + integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 2064 + 2196 2065 collection-visit@^1.0.0: 2197 2066 version "1.0.0" 2198 2067 resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" ··· 2201 2070 map-visit "^1.0.0" 2202 2071 object-visit "^1.0.0" 2203 2072 2204 - color-convert@^1.9.0, color-convert@^1.9.1: 2073 + color-convert@^1.9.0: 2205 2074 version "1.9.3" 2206 2075 resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 2207 2076 integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== ··· 2220 2089 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 2221 2090 integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 2222 2091 2223 - color-name@^1.0.0, color-name@~1.1.4: 2092 + color-name@~1.1.4: 2224 2093 version "1.1.4" 2225 2094 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 2226 2095 integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 2227 2096 2228 - color-string@^1.5.2: 2229 - version "1.5.3" 2230 - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" 2231 - integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== 2097 + combined-stream@^1.0.6, combined-stream@~1.0.6: 2098 + version "1.0.8" 2099 + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 2100 + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 2232 2101 dependencies: 2233 - color-name "^1.0.0" 2234 - simple-swizzle "^0.2.2" 2102 + delayed-stream "~1.0.0" 2235 2103 2236 - color@3.1.2, color@^3.0.0: 2237 - version "3.1.2" 2238 - resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" 2239 - integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== 2240 - dependencies: 2241 - color-convert "^1.9.1" 2242 - color-string "^1.5.2" 2104 + commander@2.17.x: 2105 + version "2.17.1" 2106 + resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 2107 + integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== 2243 2108 2244 2109 commander@^2.20.0: 2245 2110 version "2.20.3" 2246 2111 resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 2247 2112 integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 2113 + 2114 + commander@^4.0.1: 2115 + version "4.1.1" 2116 + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" 2117 + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 2118 + 2119 + commander@~2.19.0: 2120 + version "2.19.0" 2121 + resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" 2122 + integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== 2123 + 2124 + commenting@1.1.0: 2125 + version "1.1.0" 2126 + resolved "https://registry.yarnpkg.com/commenting/-/commenting-1.1.0.tgz#fae14345c6437b8554f30bc6aa6c1e1633033590" 2127 + integrity sha512-YeNK4tavZwtH7jEgK1ZINXzLKm6DZdEMfsaaieOsCAN0S8vsY7UeuO3Q7d/M018EFgE+IeUAuBOKkFccBZsUZA== 2248 2128 2249 2129 commondir@^1.0.1: 2250 2130 version "1.0.1" ··· 2256 2136 resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 2257 2137 integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 2258 2138 2259 - compose-function@3.0.3: 2260 - version "3.0.3" 2261 - resolved "https://registry.yarnpkg.com/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f" 2262 - integrity sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8= 2263 - dependencies: 2264 - arity-n "^1.0.4" 2265 - 2266 2139 concat-map@0.0.1: 2267 2140 version "0.0.1" 2268 2141 resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 2269 2142 integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 2270 2143 2271 - concat-stream@^1.5.0: 2144 + concat-stream@^1.6.0: 2272 2145 version "1.6.2" 2273 2146 resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 2274 2147 integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== ··· 2278 2151 readable-stream "^2.2.2" 2279 2152 typedarray "^0.0.6" 2280 2153 2281 - console-browserify@^1.1.0: 2282 - version "1.2.0" 2283 - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" 2284 - integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== 2285 - 2286 - constants-browserify@^1.0.0: 2287 - version "1.0.0" 2288 - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 2289 - integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= 2154 + contains-path@^0.1.0: 2155 + version "0.1.0" 2156 + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 2157 + integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 2290 2158 2291 - convert-source-map@1.7.0, convert-source-map@^1.5.0, convert-source-map@^1.7.0: 2159 + convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 2292 2160 version "1.7.0" 2293 2161 resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 2294 2162 integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 2295 2163 dependencies: 2296 2164 safe-buffer "~5.1.1" 2297 2165 2298 - convert-source-map@^0.3.3: 2299 - version "0.3.5" 2300 - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190" 2301 - integrity sha1-8dgClQr33SYxof6+BZZVDIarMZA= 2302 - 2303 - copy-concurrently@^1.0.0: 2304 - version "1.0.5" 2305 - resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" 2306 - integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== 2307 - dependencies: 2308 - aproba "^1.1.1" 2309 - fs-write-stream-atomic "^1.0.8" 2310 - iferr "^0.1.5" 2311 - mkdirp "^0.5.1" 2312 - rimraf "^2.5.4" 2313 - run-queue "^1.0.0" 2314 - 2315 2166 copy-descriptor@^0.1.0: 2316 2167 version "0.1.1" 2317 2168 resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 2318 2169 integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 2319 2170 2320 - copy-to-clipboard@3.3.1: 2321 - version "3.3.1" 2322 - resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae" 2323 - integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw== 2324 - dependencies: 2325 - toggle-selection "^1.0.6" 2326 - 2327 2171 core-js-compat@^3.6.2: 2328 2172 version "3.6.5" 2329 2173 resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c" ··· 2332 2176 browserslist "^4.8.5" 2333 2177 semver "7.0.0" 2334 2178 2335 - core-util-is@~1.0.0: 2179 + core-js@3, core-js@^3.2.1: 2180 + version "3.6.5" 2181 + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" 2182 + integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== 2183 + 2184 + core-util-is@1.0.2, core-util-is@~1.0.0: 2336 2185 version "1.0.2" 2337 2186 resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 2338 2187 integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 2339 2188 2340 - cosmiconfig@^5.0.0: 2341 - version "5.2.1" 2342 - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" 2343 - integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== 2189 + cross-spawn@^5.1.0: 2190 + version "5.1.0" 2191 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 2192 + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 2344 2193 dependencies: 2345 - import-fresh "^2.0.0" 2346 - is-directory "^0.3.1" 2347 - js-yaml "^3.13.1" 2348 - parse-json "^4.0.0" 2194 + lru-cache "^4.0.1" 2195 + shebang-command "^1.2.0" 2196 + which "^1.2.9" 2349 2197 2350 - cosmiconfig@^6.0.0: 2351 - version "6.0.0" 2352 - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" 2353 - integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== 2198 + cross-spawn@^6.0.0: 2199 + version "6.0.5" 2200 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 2201 + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 2354 2202 dependencies: 2355 - "@types/parse-json" "^4.0.0" 2356 - import-fresh "^3.1.0" 2357 - parse-json "^5.0.0" 2358 - path-type "^4.0.0" 2359 - yaml "^1.7.2" 2203 + nice-try "^1.0.4" 2204 + path-key "^2.0.1" 2205 + semver "^5.5.0" 2206 + shebang-command "^1.2.0" 2207 + which "^1.2.9" 2360 2208 2361 - create-ecdh@^4.0.0: 2362 - version "4.0.3" 2363 - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" 2364 - integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== 2365 - dependencies: 2366 - bn.js "^4.1.0" 2367 - elliptic "^6.0.0" 2368 - 2369 - create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: 2370 - version "1.2.0" 2371 - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 2372 - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== 2209 + cross-spawn@^7.0.0: 2210 + version "7.0.3" 2211 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 2212 + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 2373 2213 dependencies: 2374 - cipher-base "^1.0.1" 2375 - inherits "^2.0.1" 2376 - md5.js "^1.3.4" 2377 - ripemd160 "^2.0.1" 2378 - sha.js "^2.4.0" 2379 - 2380 - create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: 2381 - version "1.1.7" 2382 - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 2383 - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== 2384 - dependencies: 2385 - cipher-base "^1.0.3" 2386 - create-hash "^1.1.0" 2387 - inherits "^2.0.1" 2388 - ripemd160 "^2.0.0" 2389 - safe-buffer "^5.0.1" 2390 - sha.js "^2.4.8" 2391 - 2392 - cross-fetch@3.0.4: 2393 - version "3.0.4" 2394 - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.0.4.tgz#7bef7020207e684a7638ef5f2f698e24d9eb283c" 2395 - integrity sha512-MSHgpjQqgbT/94D4CyADeNoYh52zMkCX4pcJvPP5WqPsLFMKjr2TCMg381ox5qI0ii2dPwaLx/00477knXqXVw== 2396 - dependencies: 2397 - node-fetch "2.6.0" 2398 - whatwg-fetch "3.0.0" 2399 - 2400 - crypto-browserify@^3.11.0: 2401 - version "3.12.0" 2402 - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 2403 - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== 2404 - dependencies: 2405 - browserify-cipher "^1.0.0" 2406 - browserify-sign "^4.0.0" 2407 - create-ecdh "^4.0.0" 2408 - create-hash "^1.1.0" 2409 - create-hmac "^1.1.0" 2410 - diffie-hellman "^5.0.0" 2411 - inherits "^2.0.1" 2412 - pbkdf2 "^3.0.3" 2413 - public-encrypt "^4.0.0" 2414 - randombytes "^2.0.0" 2415 - randomfill "^1.0.3" 2416 - 2417 - css-color-names@0.0.4, css-color-names@^0.0.4: 2418 - version "0.0.4" 2419 - resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 2420 - integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= 2421 - 2422 - css-declaration-sorter@^4.0.1: 2423 - version "4.0.1" 2424 - resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" 2425 - integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== 2426 - dependencies: 2427 - postcss "^7.0.1" 2428 - timsort "^0.3.0" 2429 - 2430 - css-loader@3.5.3: 2431 - version "3.5.3" 2432 - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.5.3.tgz#95ac16468e1adcd95c844729e0bb167639eb0bcf" 2433 - integrity sha512-UEr9NH5Lmi7+dguAm+/JSPovNjYbm2k3TK58EiwQHzOHH5Jfq1Y+XoP2bQO6TMn7PptMd0opxxedAWcaSTRKHw== 2434 - dependencies: 2435 - camelcase "^5.3.1" 2436 - cssesc "^3.0.0" 2437 - icss-utils "^4.1.1" 2438 - loader-utils "^1.2.3" 2439 - normalize-path "^3.0.0" 2440 - postcss "^7.0.27" 2441 - postcss-modules-extract-imports "^2.0.0" 2442 - postcss-modules-local-by-default "^3.0.2" 2443 - postcss-modules-scope "^2.2.0" 2444 - postcss-modules-values "^3.0.0" 2445 - postcss-value-parser "^4.0.3" 2446 - schema-utils "^2.6.6" 2447 - semver "^6.3.0" 2214 + path-key "^3.1.0" 2215 + shebang-command "^2.0.0" 2216 + which "^2.0.1" 2448 2217 2449 2218 css-select-base-adapter@^0.1.1: 2450 2219 version "0.1.1" ··· 2497 2266 resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.3.0.tgz#10fec696a9ece2e591ac772d759aacabac38cd39" 2498 2267 integrity sha512-pv9JPyatiPaQ6pf4OvD/dbfm0o5LviWmwxNWzblYf/1u9QZd0ihV+PMwy5jdQWQ3349kZmKEx9WXuSka2dM4cg== 2499 2268 2500 - css.escape@^1.5.0: 2501 - version "1.5.1" 2502 - resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" 2503 - integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s= 2504 - 2505 - css@^2.0.0: 2506 - version "2.2.4" 2507 - resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929" 2508 - integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw== 2509 - dependencies: 2510 - inherits "^2.0.3" 2511 - source-map "^0.6.1" 2512 - source-map-resolve "^0.5.2" 2513 - urix "^0.1.0" 2514 - 2515 - cssesc@^3.0.0: 2516 - version "3.0.0" 2517 - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 2518 - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 2519 - 2520 - cssnano-preset-default@^4.0.7: 2521 - version "4.0.7" 2522 - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" 2523 - integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== 2524 - dependencies: 2525 - css-declaration-sorter "^4.0.1" 2526 - cssnano-util-raw-cache "^4.0.1" 2527 - postcss "^7.0.0" 2528 - postcss-calc "^7.0.1" 2529 - postcss-colormin "^4.0.3" 2530 - postcss-convert-values "^4.0.1" 2531 - postcss-discard-comments "^4.0.2" 2532 - postcss-discard-duplicates "^4.0.2" 2533 - postcss-discard-empty "^4.0.1" 2534 - postcss-discard-overridden "^4.0.1" 2535 - postcss-merge-longhand "^4.0.11" 2536 - postcss-merge-rules "^4.0.3" 2537 - postcss-minify-font-values "^4.0.2" 2538 - postcss-minify-gradients "^4.0.2" 2539 - postcss-minify-params "^4.0.2" 2540 - postcss-minify-selectors "^4.0.2" 2541 - postcss-normalize-charset "^4.0.1" 2542 - postcss-normalize-display-values "^4.0.2" 2543 - postcss-normalize-positions "^4.0.2" 2544 - postcss-normalize-repeat-style "^4.0.2" 2545 - postcss-normalize-string "^4.0.2" 2546 - postcss-normalize-timing-functions "^4.0.2" 2547 - postcss-normalize-unicode "^4.0.1" 2548 - postcss-normalize-url "^4.0.1" 2549 - postcss-normalize-whitespace "^4.0.2" 2550 - postcss-ordered-values "^4.1.2" 2551 - postcss-reduce-initial "^4.0.3" 2552 - postcss-reduce-transforms "^4.0.2" 2553 - postcss-svgo "^4.0.2" 2554 - postcss-unique-selectors "^4.0.1" 2555 - 2556 - cssnano-util-get-arguments@^4.0.0: 2557 - version "4.0.0" 2558 - resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" 2559 - integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= 2560 - 2561 - cssnano-util-get-match@^4.0.0: 2562 - version "4.0.0" 2563 - resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" 2564 - integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= 2565 - 2566 - cssnano-util-raw-cache@^4.0.1: 2567 - version "4.0.1" 2568 - resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" 2569 - integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== 2570 - dependencies: 2571 - postcss "^7.0.0" 2572 - 2573 - cssnano-util-same-parent@^4.0.0: 2574 - version "4.0.1" 2575 - resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" 2576 - integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== 2577 - 2578 - cssnano@4.1.10: 2579 - version "4.1.10" 2580 - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" 2581 - integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== 2582 - dependencies: 2583 - cosmiconfig "^5.0.0" 2584 - cssnano-preset-default "^4.0.7" 2585 - is-resolvable "^1.0.0" 2586 - postcss "^7.0.0" 2587 - 2588 2269 csso@^4.0.2: 2589 2270 version "4.0.3" 2590 2271 resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.3.tgz#0d9985dc852c7cc2b2cacfbbe1079014d1a8e903" ··· 2592 2273 dependencies: 2593 2274 css-tree "1.0.0-alpha.39" 2594 2275 2595 - csstype@^2.2.0, csstype@^2.5.7, csstype@^2.6.9: 2596 - version "2.6.10" 2597 - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" 2598 - integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== 2276 + cssom@^0.4.4: 2277 + version "0.4.4" 2278 + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 2279 + integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 2599 2280 2600 - cyclist@^1.0.1: 2601 - version "1.0.1" 2602 - resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" 2603 - integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= 2281 + cssom@~0.3.6: 2282 + version "0.3.8" 2283 + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 2284 + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 2604 2285 2605 - d@1, d@^1.0.1: 2606 - version "1.0.1" 2607 - resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" 2608 - integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== 2286 + cssstyle@^2.2.0: 2287 + version "2.3.0" 2288 + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 2289 + integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 2290 + dependencies: 2291 + cssom "~0.3.6" 2292 + 2293 + dashdash@^1.12.0: 2294 + version "1.14.1" 2295 + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 2296 + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 2609 2297 dependencies: 2610 - es5-ext "^0.10.50" 2611 - type "^1.0.1" 2298 + assert-plus "^1.0.0" 2612 2299 2613 - data-uri-to-buffer@3.0.0: 2614 - version "3.0.0" 2615 - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.0.tgz#8a3088a5efd3f53c3682343313c6895d498eb8d7" 2616 - integrity sha512-MJ6mFTZ+nPQO+39ua/ltwNePXrfdF3Ww0wP1Od7EePySXN1cP9XNqRQOG3FxTfipp8jx898LUCgBCEP11Qw/ZQ== 2300 + data-urls@^2.0.0: 2301 + version "2.0.0" 2302 + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 2303 + integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 2617 2304 dependencies: 2618 - buffer-from "^1.1.1" 2305 + abab "^2.0.3" 2306 + whatwg-mimetype "^2.3.0" 2307 + whatwg-url "^8.0.0" 2619 2308 2620 - debug@^2.2.0, debug@^2.3.3: 2309 + debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: 2621 2310 version "2.6.9" 2622 2311 resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 2623 2312 integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 2624 2313 dependencies: 2625 2314 ms "2.0.0" 2626 2315 2627 - debug@^4.1.0: 2316 + debug@^3.1.0: 2317 + version "3.2.6" 2318 + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 2319 + integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 2320 + dependencies: 2321 + ms "^2.1.1" 2322 + 2323 + debug@^4.1.0, debug@^4.1.1: 2628 2324 version "4.1.1" 2629 2325 resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 2630 2326 integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 2631 2327 dependencies: 2632 2328 ms "^2.1.1" 2633 2329 2330 + decamelize@^1.2.0: 2331 + version "1.2.0" 2332 + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 2333 + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 2334 + 2335 + decimal.js@^10.2.0: 2336 + version "10.2.0" 2337 + resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.0.tgz#39466113a9e036111d02f82489b5fd6b0b5ed231" 2338 + integrity sha512-vDPw+rDgn3bZe1+F/pyEwb1oMG2XTlRVgAa6B4KccTEpYgF8w6eQllVbQcfIJnZyvzFtFpxnpGtx8dd7DJp/Rw== 2339 + 2634 2340 decode-uri-component@^0.2.0: 2635 2341 version "0.2.0" 2636 2342 resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 2637 2343 integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 2638 2344 2345 + deep-is@~0.1.3: 2346 + version "0.1.3" 2347 + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 2348 + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 2349 + 2350 + deepmerge@^4.2.2: 2351 + version "4.2.2" 2352 + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 2353 + integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 2354 + 2639 2355 define-properties@^1.1.2, define-properties@^1.1.3: 2640 2356 version "1.1.3" 2641 2357 resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" ··· 2665 2381 is-descriptor "^1.0.2" 2666 2382 isobject "^3.0.1" 2667 2383 2668 - des.js@^1.0.0: 2669 - version "1.0.1" 2670 - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" 2671 - integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== 2384 + delayed-stream@~1.0.0: 2385 + version "1.0.0" 2386 + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 2387 + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 2388 + 2389 + detect-newline@^3.0.0: 2390 + version "3.1.0" 2391 + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 2392 + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 2393 + 2394 + diff-sequences@^26.3.0: 2395 + version "26.3.0" 2396 + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.3.0.tgz#62a59b1b29ab7fd27cef2a33ae52abe73042d0a2" 2397 + integrity sha512-5j5vdRcw3CNctePNYN0Wy2e/JbWT6cAYnXv5OuqPhDpyCGc0uLu2TK0zOCJWNB9kOIfYMSpIulRaDgIi4HJ6Ig== 2398 + 2399 + doctrine@1.5.0: 2400 + version "1.5.0" 2401 + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 2402 + integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 2672 2403 dependencies: 2673 - inherits "^2.0.1" 2674 - minimalistic-assert "^1.0.0" 2675 - 2676 - detect-node@^2.0.4: 2677 - version "2.0.4" 2678 - resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" 2679 - integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== 2404 + esutils "^2.0.2" 2405 + isarray "^1.0.0" 2680 2406 2681 - diffie-hellman@^5.0.0: 2682 - version "5.0.3" 2683 - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" 2684 - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== 2407 + doctrine@^2.1.0: 2408 + version "2.1.0" 2409 + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 2410 + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 2685 2411 dependencies: 2686 - bn.js "^4.1.0" 2687 - miller-rabin "^4.0.0" 2688 - randombytes "^2.0.0" 2412 + esutils "^2.0.2" 2689 2413 2690 2414 dom-serializer@0, dom-serializer@^0.2.1: 2691 2415 version "0.2.2" ··· 2703 2427 domelementtype "^1.3.0" 2704 2428 entities "^1.1.1" 2705 2429 2706 - domain-browser@^1.1.1: 2707 - version "1.2.0" 2708 - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 2709 - integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== 2710 - 2711 2430 domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: 2712 2431 version "1.3.1" 2713 2432 resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" ··· 2718 2437 resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" 2719 2438 integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== 2720 2439 2721 - domhandler@3.0.0, domhandler@^3.0.0: 2722 - version "3.0.0" 2723 - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.0.0.tgz#51cd13efca31da95bbb0c5bee3a48300e333b3e9" 2724 - integrity sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw== 2440 + domexception@^2.0.1: 2441 + version "2.0.1" 2442 + resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 2443 + integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 2725 2444 dependencies: 2726 - domelementtype "^2.0.1" 2445 + webidl-conversions "^5.0.0" 2727 2446 2728 2447 domhandler@^2.3.0: 2729 2448 version "2.4.2" ··· 2732 2451 dependencies: 2733 2452 domelementtype "1" 2734 2453 2454 + domhandler@^3.0.0: 2455 + version "3.0.0" 2456 + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.0.0.tgz#51cd13efca31da95bbb0c5bee3a48300e333b3e9" 2457 + integrity sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw== 2458 + dependencies: 2459 + domelementtype "^2.0.1" 2460 + 2735 2461 domutils@1.5.1: 2736 2462 version "1.5.1" 2737 2463 resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" ··· 2740 2466 dom-serializer "0" 2741 2467 domelementtype "1" 2742 2468 2743 - domutils@2.1.0, domutils@^2.0.0: 2744 - version "2.1.0" 2745 - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16" 2746 - integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg== 2747 - dependencies: 2748 - dom-serializer "^0.2.1" 2749 - domelementtype "^2.0.1" 2750 - domhandler "^3.0.0" 2751 - 2752 2469 domutils@^1.5.1, domutils@^1.7.0: 2753 2470 version "1.7.0" 2754 2471 resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" ··· 2757 2474 dom-serializer "0" 2758 2475 domelementtype "1" 2759 2476 2760 - dot-prop@^5.2.0: 2761 - version "5.2.0" 2762 - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" 2763 - integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A== 2477 + domutils@^2.0.0: 2478 + version "2.1.0" 2479 + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16" 2480 + integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg== 2764 2481 dependencies: 2765 - is-obj "^2.0.0" 2482 + dom-serializer "^0.2.1" 2483 + domelementtype "^2.0.1" 2484 + domhandler "^3.0.0" 2766 2485 2767 - downloadjs@^1.4.7: 2768 - version "1.4.7" 2769 - resolved "https://registry.yarnpkg.com/downloadjs/-/downloadjs-1.4.7.tgz#f69f96f940e0d0553dac291139865a3cd0101e3c" 2770 - integrity sha1-9p+W+UDg0FU9rCkROYZaPNAQHjw= 2486 + duplexer@0.1.1, duplexer@^0.1.1: 2487 + version "0.1.1" 2488 + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 2489 + integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= 2771 2490 2772 - duplexify@^3.4.2, duplexify@^3.6.0: 2773 - version "3.7.1" 2774 - resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" 2775 - integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== 2491 + ecc-jsbn@~0.1.1: 2492 + version "0.1.2" 2493 + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 2494 + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 2776 2495 dependencies: 2777 - end-of-stream "^1.0.0" 2778 - inherits "^2.0.1" 2779 - readable-stream "^2.0.0" 2780 - stream-shift "^1.0.0" 2496 + jsbn "~0.1.0" 2497 + safer-buffer "^2.1.0" 2781 2498 2782 - electron-to-chromium@^1.3.413: 2783 - version "1.3.470" 2784 - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.470.tgz#07ccfd481b96709f4ac20bb74bccf59705a41ced" 2785 - integrity sha512-SQzHdpUUmTSiIYwMFZ3P3271VdRxfdHqh2GoBA7sqeaz4SN3UlTA22fC+r9BHu8FpB0oI7f8pAxzm75O/kBc3w== 2499 + electron-to-chromium@^1.3.488: 2500 + version "1.3.509" 2501 + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.509.tgz#830fcb89cd66dc2984d18d794973b99e3f00584c" 2502 + integrity sha512-cN4lkjNRuTG8rtAqTOVgwpecEC2kbKA04PG6YijcKGHK/kD0xLjiqExcAOmLUwtXZRF8cBeam2I0VZcih919Ug== 2786 2503 2787 - elliptic@^6.0.0, elliptic@^6.5.2: 2788 - version "6.5.3" 2789 - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" 2790 - integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== 2791 - dependencies: 2792 - bn.js "^4.4.0" 2793 - brorand "^1.0.1" 2794 - hash.js "^1.0.0" 2795 - hmac-drbg "^1.0.0" 2796 - inherits "^2.0.1" 2797 - minimalistic-assert "^1.0.0" 2798 - minimalistic-crypto-utils "^1.0.0" 2504 + emittery@^0.7.1: 2505 + version "0.7.1" 2506 + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.1.tgz#c02375a927a40948c0345cc903072597f5270451" 2507 + integrity sha512-d34LN4L6h18Bzz9xpoku2nPwKxCPlPMr3EEKTkoEBi+1/+b0lcRkRJ1UVyyZaKNeqGR3swcGl6s390DNO4YVgQ== 2799 2508 2800 - emojis-list@^2.0.0: 2801 - version "2.1.0" 2802 - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 2803 - integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= 2509 + emoji-regex@^8.0.0: 2510 + version "8.0.0" 2511 + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 2512 + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 2804 2513 2805 - emojis-list@^3.0.0: 2806 - version "3.0.0" 2807 - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 2808 - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 2809 - 2810 - emotion-theming@^10.0.27: 2811 - version "10.0.27" 2812 - resolved "https://registry.yarnpkg.com/emotion-theming/-/emotion-theming-10.0.27.tgz#1887baaec15199862c89b1b984b79806f2b9ab10" 2813 - integrity sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw== 2814 - dependencies: 2815 - "@babel/runtime" "^7.5.5" 2816 - "@emotion/weak-memoize" "0.2.5" 2817 - hoist-non-react-statics "^3.3.0" 2818 - 2819 - end-of-stream@^1.0.0, end-of-stream@^1.1.0: 2514 + end-of-stream@^1.1.0: 2820 2515 version "1.4.4" 2821 2516 resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 2822 2517 integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 2823 2518 dependencies: 2824 2519 once "^1.4.0" 2825 2520 2826 - enhanced-resolve@^4.1.0: 2827 - version "4.1.1" 2828 - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" 2829 - integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA== 2830 - dependencies: 2831 - graceful-fs "^4.1.2" 2832 - memory-fs "^0.5.0" 2833 - tapable "^1.0.0" 2834 - 2835 2521 entities@^1.1.1, entities@~1.1.1: 2836 2522 version "1.1.2" 2837 2523 resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" ··· 2842 2528 resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" 2843 2529 integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== 2844 2530 2845 - errno@^0.1.3, errno@~0.1.7: 2846 - version "0.1.7" 2847 - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 2848 - integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== 2849 - dependencies: 2850 - prr "~1.0.1" 2851 - 2852 - error-ex@^1.3.1: 2531 + error-ex@^1.2.0, error-ex@^1.3.1: 2853 2532 version "1.3.2" 2854 2533 resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 2855 2534 integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 2856 2535 dependencies: 2857 2536 is-arrayish "^0.2.1" 2858 2537 2859 - es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5: 2860 - version "1.17.5" 2861 - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" 2862 - integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== 2538 + es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5: 2539 + version "1.17.6" 2540 + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" 2541 + integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== 2863 2542 dependencies: 2864 2543 es-to-primitive "^1.2.1" 2865 2544 function-bind "^1.1.1" 2866 2545 has "^1.0.3" 2867 2546 has-symbols "^1.0.1" 2868 - is-callable "^1.1.5" 2869 - is-regex "^1.0.5" 2547 + is-callable "^1.2.0" 2548 + is-regex "^1.1.0" 2870 2549 object-inspect "^1.7.0" 2871 2550 object-keys "^1.1.1" 2872 2551 object.assign "^4.1.0" 2873 - string.prototype.trimleft "^2.1.1" 2874 - string.prototype.trimright "^2.1.1" 2552 + string.prototype.trimend "^1.0.1" 2553 + string.prototype.trimstart "^1.0.1" 2875 2554 2876 2555 es-to-primitive@^1.2.1: 2877 2556 version "1.2.1" ··· 2882 2561 is-date-object "^1.0.1" 2883 2562 is-symbol "^1.0.2" 2884 2563 2885 - es5-ext@^0.10.35, es5-ext@^0.10.50: 2886 - version "0.10.53" 2887 - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" 2888 - integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== 2889 - dependencies: 2890 - es6-iterator "~2.0.3" 2891 - es6-symbol "~3.1.3" 2892 - next-tick "~1.0.0" 2564 + escalade@^3.0.1: 2565 + version "3.0.2" 2566 + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4" 2567 + integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ== 2893 2568 2894 - es6-iterator@2.0.3, es6-iterator@~2.0.3: 2895 - version "2.0.3" 2896 - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 2897 - integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= 2898 - dependencies: 2899 - d "1" 2900 - es5-ext "^0.10.35" 2901 - es6-symbol "^3.1.1" 2902 - 2903 - es6-symbol@^3.1.1, es6-symbol@~3.1.3: 2904 - version "3.1.3" 2905 - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" 2906 - integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== 2907 - dependencies: 2908 - d "^1.0.1" 2909 - ext "^1.1.2" 2569 + escape-goat@^2.0.0: 2570 + version "2.1.1" 2571 + resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" 2572 + integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== 2910 2573 2911 2574 escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 2912 2575 version "1.0.5" 2913 2576 resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 2914 2577 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 2915 2578 2916 - eslint-scope@^4.0.3: 2917 - version "4.0.3" 2918 - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" 2919 - integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== 2579 + escape-string-regexp@^2.0.0: 2580 + version "2.0.0" 2581 + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 2582 + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 2583 + 2584 + escodegen@^1.14.1: 2585 + version "1.14.3" 2586 + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" 2587 + integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== 2588 + dependencies: 2589 + esprima "^4.0.1" 2590 + estraverse "^4.2.0" 2591 + esutils "^2.0.2" 2592 + optionator "^0.8.1" 2593 + optionalDependencies: 2594 + source-map "~0.6.1" 2595 + 2596 + eslint-config-airbnb-base@^12.1.0: 2597 + version "12.1.0" 2598 + resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944" 2599 + integrity sha512-/vjm0Px5ZCpmJqnjIzcFb9TKZrKWz0gnuG/7Gfkt0Db1ELJR51xkZth+t14rYdqWgX836XbuxtArbIHlVhbLBA== 2600 + dependencies: 2601 + eslint-restricted-globals "^0.1.1" 2602 + 2603 + eslint-config-prettier@^2.9.0: 2604 + version "2.10.0" 2605 + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.10.0.tgz#ec07bc1d01f87d09f61d3840d112dc8a9791e30b" 2606 + integrity sha512-Mhl90VLucfBuhmcWBgbUNtgBiK955iCDK1+aHAz7QfDQF6wuzWZ6JjihZ3ejJoGlJWIuko7xLqNm8BA5uenKhA== 2607 + dependencies: 2608 + get-stdin "^5.0.1" 2609 + 2610 + eslint-import-resolver-node@^0.3.3: 2611 + version "0.3.4" 2612 + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" 2613 + integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== 2614 + dependencies: 2615 + debug "^2.6.9" 2616 + resolve "^1.13.1" 2617 + 2618 + eslint-module-utils@^2.6.0: 2619 + version "2.6.0" 2620 + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" 2621 + integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== 2622 + dependencies: 2623 + debug "^2.6.9" 2624 + pkg-dir "^2.0.0" 2625 + 2626 + eslint-plugin-import@^2.5.0: 2627 + version "2.22.0" 2628 + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.0.tgz#92f7736fe1fde3e2de77623c838dd992ff5ffb7e" 2629 + integrity sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg== 2630 + dependencies: 2631 + array-includes "^3.1.1" 2632 + array.prototype.flat "^1.2.3" 2633 + contains-path "^0.1.0" 2634 + debug "^2.6.9" 2635 + doctrine "1.5.0" 2636 + eslint-import-resolver-node "^0.3.3" 2637 + eslint-module-utils "^2.6.0" 2638 + has "^1.0.3" 2639 + minimatch "^3.0.4" 2640 + object.values "^1.1.1" 2641 + read-pkg-up "^2.0.0" 2642 + resolve "^1.17.0" 2643 + tsconfig-paths "^3.9.0" 2644 + 2645 + eslint-plugin-prettier@^2.5.0: 2646 + version "2.7.0" 2647 + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.7.0.tgz#b4312dcf2c1d965379d7f9d5b5f8aaadc6a45904" 2648 + integrity sha512-CStQYJgALoQBw3FsBzH0VOVDRnJ/ZimUlpLm226U8qgqYJfPOY/CPK6wyRInMxh73HSKg5wyRwdS4BVYYHwokA== 2649 + dependencies: 2650 + fast-diff "^1.1.1" 2651 + jest-docblock "^21.0.0" 2652 + 2653 + eslint-restricted-globals@^0.1.1: 2654 + version "0.1.1" 2655 + resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 2656 + integrity sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc= 2657 + 2658 + eslint-scope@^3.7.1: 2659 + version "3.7.3" 2660 + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" 2661 + integrity sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA== 2920 2662 dependencies: 2921 2663 esrecurse "^4.1.0" 2922 2664 estraverse "^4.1.1" 2923 2665 2924 - esprima@^4.0.0: 2666 + eslint-visitor-keys@^1.0.0: 2667 + version "1.3.0" 2668 + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 2669 + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 2670 + 2671 + eslint@^4.19.1: 2672 + version "4.19.1" 2673 + resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" 2674 + integrity sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ== 2675 + dependencies: 2676 + ajv "^5.3.0" 2677 + babel-code-frame "^6.22.0" 2678 + chalk "^2.1.0" 2679 + concat-stream "^1.6.0" 2680 + cross-spawn "^5.1.0" 2681 + debug "^3.1.0" 2682 + doctrine "^2.1.0" 2683 + eslint-scope "^3.7.1" 2684 + eslint-visitor-keys "^1.0.0" 2685 + espree "^3.5.4" 2686 + esquery "^1.0.0" 2687 + esutils "^2.0.2" 2688 + file-entry-cache "^2.0.0" 2689 + functional-red-black-tree "^1.0.1" 2690 + glob "^7.1.2" 2691 + globals "^11.0.1" 2692 + ignore "^3.3.3" 2693 + imurmurhash "^0.1.4" 2694 + inquirer "^3.0.6" 2695 + is-resolvable "^1.0.0" 2696 + js-yaml "^3.9.1" 2697 + json-stable-stringify-without-jsonify "^1.0.1" 2698 + levn "^0.3.0" 2699 + lodash "^4.17.4" 2700 + minimatch "^3.0.2" 2701 + mkdirp "^0.5.1" 2702 + natural-compare "^1.4.0" 2703 + optionator "^0.8.2" 2704 + path-is-inside "^1.0.2" 2705 + pluralize "^7.0.0" 2706 + progress "^2.0.0" 2707 + regexpp "^1.0.1" 2708 + require-uncached "^1.0.3" 2709 + semver "^5.3.0" 2710 + strip-ansi "^4.0.0" 2711 + strip-json-comments "~2.0.1" 2712 + table "4.0.2" 2713 + text-table "~0.2.0" 2714 + 2715 + espree@^3.5.4: 2716 + version "3.5.4" 2717 + resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 2718 + integrity sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A== 2719 + dependencies: 2720 + acorn "^5.5.0" 2721 + acorn-jsx "^3.0.0" 2722 + 2723 + esprima@^4.0.0, esprima@^4.0.1: 2925 2724 version "4.0.1" 2926 2725 resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 2927 2726 integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 2928 2727 2728 + esquery@^1.0.0: 2729 + version "1.3.1" 2730 + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 2731 + integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== 2732 + dependencies: 2733 + estraverse "^5.1.0" 2734 + 2929 2735 esrecurse@^4.1.0: 2930 2736 version "4.2.1" 2931 2737 resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" ··· 2933 2739 dependencies: 2934 2740 estraverse "^4.1.0" 2935 2741 2936 - estraverse@^4.1.0, estraverse@^4.1.1: 2742 + estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 2937 2743 version "4.3.0" 2938 2744 resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 2939 2745 integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 2940 2746 2747 + estraverse@^5.1.0: 2748 + version "5.1.0" 2749 + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" 2750 + integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== 2751 + 2752 + estree-walker@2.0.1: 2753 + version "2.0.1" 2754 + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.1.tgz#f8e030fb21cefa183b44b7ad516b747434e7a3e0" 2755 + integrity sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg== 2756 + 2757 + estree-walker@^0.6.1: 2758 + version "0.6.1" 2759 + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 2760 + integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 2761 + 2762 + estree-walker@^1.0.1: 2763 + version "1.0.1" 2764 + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" 2765 + integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== 2766 + 2941 2767 esutils@^2.0.2: 2942 2768 version "2.0.3" 2943 2769 resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 2944 2770 integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 2945 2771 2946 - events@^3.0.0: 2947 - version "3.1.0" 2948 - resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" 2949 - integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg== 2772 + exec-sh@^0.3.2: 2773 + version "0.3.4" 2774 + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" 2775 + integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== 2950 2776 2951 - evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 2952 - version "1.0.3" 2953 - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 2954 - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== 2777 + execa@^1.0.0: 2778 + version "1.0.0" 2779 + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 2780 + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 2781 + dependencies: 2782 + cross-spawn "^6.0.0" 2783 + get-stream "^4.0.0" 2784 + is-stream "^1.1.0" 2785 + npm-run-path "^2.0.0" 2786 + p-finally "^1.0.0" 2787 + signal-exit "^3.0.0" 2788 + strip-eof "^1.0.0" 2789 + 2790 + execa@^4.0.0: 2791 + version "4.0.3" 2792 + resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2" 2793 + integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A== 2955 2794 dependencies: 2956 - md5.js "^1.3.4" 2957 - safe-buffer "^5.1.1" 2795 + cross-spawn "^7.0.0" 2796 + get-stream "^5.0.0" 2797 + human-signals "^1.1.1" 2798 + is-stream "^2.0.0" 2799 + merge-stream "^2.0.0" 2800 + npm-run-path "^4.0.0" 2801 + onetime "^5.1.0" 2802 + signal-exit "^3.0.2" 2803 + strip-final-newline "^2.0.0" 2958 2804 2959 - exenv@^1.2.2: 2960 - version "1.2.2" 2961 - resolved "https://registry.yarnpkg.com/exenv/-/exenv-1.2.2.tgz#2ae78e85d9894158670b03d47bec1f03bd91bb9d" 2962 - integrity sha1-KueOhdmJQVhnCwPUe+wfA72Ru50= 2805 + exit@^0.1.2: 2806 + version "0.1.2" 2807 + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 2808 + integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 2963 2809 2964 2810 expand-brackets@^2.1.4: 2965 2811 version "2.1.4" ··· 2974 2820 snapdragon "^0.8.1" 2975 2821 to-regex "^3.0.1" 2976 2822 2977 - ext@^1.1.2: 2978 - version "1.4.0" 2979 - resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244" 2980 - integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A== 2823 + expect@^26.4.2: 2824 + version "26.4.2" 2825 + resolved "https://registry.yarnpkg.com/expect/-/expect-26.4.2.tgz#36db120928a5a2d7d9736643032de32f24e1b2a1" 2826 + integrity sha512-IlJ3X52Z0lDHm7gjEp+m76uX46ldH5VpqmU0006vqDju/285twh7zaWMRhs67VpQhBwjjMchk+p5aA0VkERCAA== 2981 2827 dependencies: 2982 - type "^2.0.0" 2828 + "@jest/types" "^26.3.0" 2829 + ansi-styles "^4.0.0" 2830 + jest-get-type "^26.3.0" 2831 + jest-matcher-utils "^26.4.2" 2832 + jest-message-util "^26.3.0" 2833 + jest-regex-util "^26.0.0" 2983 2834 2984 2835 extend-shallow@^2.0.1: 2985 2836 version "2.0.1" ··· 2996 2847 assign-symbols "^1.0.0" 2997 2848 is-extendable "^1.0.1" 2998 2849 2850 + extend@~3.0.2: 2851 + version "3.0.2" 2852 + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 2853 + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 2854 + 2855 + external-editor@^2.0.4: 2856 + version "2.2.0" 2857 + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 2858 + integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== 2859 + dependencies: 2860 + chardet "^0.4.0" 2861 + iconv-lite "^0.4.17" 2862 + tmp "^0.0.33" 2863 + 2999 2864 extglob@^2.0.4: 3000 2865 version "2.0.4" 3001 2866 resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" ··· 3010 2875 snapdragon "^0.8.1" 3011 2876 to-regex "^3.0.1" 3012 2877 2878 + extsprintf@1.3.0: 2879 + version "1.3.0" 2880 + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 2881 + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= 2882 + 2883 + extsprintf@^1.2.0: 2884 + version "1.4.0" 2885 + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 2886 + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= 2887 + 2888 + fast-deep-equal@^1.0.0: 2889 + version "1.1.0" 2890 + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 2891 + integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= 2892 + 3013 2893 fast-deep-equal@^3.1.1: 3014 2894 version "3.1.3" 3015 2895 resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 3016 2896 integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 3017 2897 2898 + fast-diff@^1.1.1: 2899 + version "1.2.0" 2900 + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 2901 + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 2902 + 3018 2903 fast-json-stable-stringify@^2.0.0: 3019 2904 version "2.1.0" 3020 2905 resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 3021 2906 integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 3022 2907 3023 - figgy-pudding@^3.5.1: 3024 - version "3.5.2" 3025 - resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" 3026 - integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== 2908 + fast-levenshtein@~2.0.6: 2909 + version "2.0.6" 2910 + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 2911 + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 2912 + 2913 + fb-watchman@^2.0.0: 2914 + version "2.0.1" 2915 + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 2916 + integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 2917 + dependencies: 2918 + bser "2.1.1" 2919 + 2920 + figures@^2.0.0: 2921 + version "2.0.0" 2922 + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 2923 + integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 2924 + dependencies: 2925 + escape-string-regexp "^1.0.5" 2926 + 2927 + file-entry-cache@^2.0.0: 2928 + version "2.0.0" 2929 + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 2930 + integrity sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E= 2931 + dependencies: 2932 + flat-cache "^1.2.1" 2933 + object-assign "^4.0.1" 3027 2934 3028 2935 file-uri-to-path@1.0.0: 3029 2936 version "1.0.0" ··· 3047 2954 dependencies: 3048 2955 to-regex-range "^5.0.1" 3049 2956 3050 - find-cache-dir@3.3.1: 3051 - version "3.3.1" 3052 - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" 3053 - integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== 3054 - dependencies: 3055 - commondir "^1.0.1" 3056 - make-dir "^3.0.2" 3057 - pkg-dir "^4.1.0" 3058 - 3059 - find-cache-dir@^2.1.0: 2957 + find-cache-dir@^2.0.0: 3060 2958 version "2.1.0" 3061 2959 resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" 3062 2960 integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== ··· 3065 2963 make-dir "^2.0.0" 3066 2964 pkg-dir "^3.0.0" 3067 2965 3068 - find-root@^1.1.0: 3069 - version "1.1.0" 3070 - resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" 3071 - integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== 3072 - 3073 - find-up@^2.1.0: 2966 + find-up@^2.0.0, find-up@^2.1.0: 3074 2967 version "2.1.0" 3075 2968 resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 3076 2969 integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= ··· 3084 2977 dependencies: 3085 2978 locate-path "^3.0.0" 3086 2979 3087 - find-up@^4.0.0: 2980 + find-up@^4.0.0, find-up@^4.1.0: 3088 2981 version "4.1.0" 3089 2982 resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 3090 2983 integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== ··· 3092 2985 locate-path "^5.0.0" 3093 2986 path-exists "^4.0.0" 3094 2987 3095 - flush-write-stream@^1.0.0: 3096 - version "1.1.1" 3097 - resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" 3098 - integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== 2988 + flat-cache@^1.2.1: 2989 + version "1.3.4" 2990 + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f" 2991 + integrity sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg== 3099 2992 dependencies: 3100 - inherits "^2.0.3" 3101 - readable-stream "^2.3.6" 3102 - 3103 - focus-lock@^0.6.7: 3104 - version "0.6.8" 3105 - resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-0.6.8.tgz#61985fadfa92f02f2ee1d90bc738efaf7f3c9f46" 3106 - integrity sha512-vkHTluRCoq9FcsrldC0ulQHiyBYgVJB2CX53I8r0nTC6KnEij7Of0jpBspjt3/CuNb6fyoj3aOh9J2HgQUM0og== 2993 + circular-json "^0.3.1" 2994 + graceful-fs "^4.1.2" 2995 + rimraf "~2.6.2" 2996 + write "^0.2.1" 3107 2997 3108 2998 for-in@^1.0.2: 3109 2999 version "1.0.2" 3110 3000 resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 3111 3001 integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 3112 3002 3113 - fork-ts-checker-webpack-plugin@3.1.1: 3114 - version "3.1.1" 3115 - resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz#a1642c0d3e65f50c2cc1742e9c0a80f441f86b19" 3116 - integrity sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ== 3003 + forever-agent@~0.6.1: 3004 + version "0.6.1" 3005 + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 3006 + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 3007 + 3008 + form-data@~2.3.2: 3009 + version "2.3.3" 3010 + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 3011 + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== 3117 3012 dependencies: 3118 - babel-code-frame "^6.22.0" 3119 - chalk "^2.4.1" 3120 - chokidar "^3.3.0" 3121 - micromatch "^3.1.10" 3122 - minimatch "^3.0.4" 3123 - semver "^5.6.0" 3124 - tapable "^1.0.0" 3125 - worker-rpc "^0.1.0" 3013 + asynckit "^0.4.0" 3014 + combined-stream "^1.0.6" 3015 + mime-types "^2.1.12" 3126 3016 3127 3017 fragment-cache@^0.2.1: 3128 3018 version "0.2.1" ··· 3131 3021 dependencies: 3132 3022 map-cache "^0.2.2" 3133 3023 3134 - from2@^2.1.0: 3135 - version "2.3.0" 3136 - resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" 3137 - integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= 3138 - dependencies: 3139 - inherits "^2.0.1" 3140 - readable-stream "^2.0.0" 3141 - 3142 - fs-minipass@^2.0.0: 3143 - version "2.1.0" 3144 - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" 3145 - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== 3146 - dependencies: 3147 - minipass "^3.0.0" 3148 - 3149 - fs-write-stream-atomic@^1.0.8: 3150 - version "1.0.10" 3151 - resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" 3152 - integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= 3153 - dependencies: 3154 - graceful-fs "^4.1.2" 3155 - iferr "^0.1.5" 3156 - imurmurhash "^0.1.4" 3157 - readable-stream "1 || 2" 3024 + fs-readdir-recursive@^1.1.0: 3025 + version "1.1.0" 3026 + resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 3027 + integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== 3158 3028 3159 3029 fs.realpath@^1.0.0: 3160 3030 version "1.0.0" ··· 3169 3039 bindings "^1.5.0" 3170 3040 nan "^2.12.1" 3171 3041 3172 - fsevents@~2.1.2: 3042 + fsevents@^2.1.2, fsevents@~2.1.2: 3173 3043 version "2.1.3" 3174 3044 resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 3175 3045 integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== ··· 3179 3049 resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 3180 3050 integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 3181 3051 3182 - fuse.js@^6.0.4: 3183 - version "6.0.4" 3184 - resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.0.4.tgz#9f5af976f836247ad5d2c338090d6ce13cf9a4d2" 3185 - integrity sha512-XAeQaT+DV8dxqohN911+Qzkb4iMzTzae04mdb9/XSQbMjbsFasQxe0+UwM+3UWP+8vO7svz1Rj0KuQw6xJ45Ww== 3052 + functional-red-black-tree@^1.0.1: 3053 + version "1.0.1" 3054 + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 3055 + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 3056 + 3057 + gensync@^1.0.0-beta.1: 3058 + version "1.0.0-beta.1" 3059 + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" 3060 + integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== 3061 + 3062 + get-caller-file@^2.0.1: 3063 + version "2.0.5" 3064 + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 3065 + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 3066 + 3067 + get-package-type@^0.1.0: 3068 + version "0.1.0" 3069 + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 3070 + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 3071 + 3072 + get-stdin@^5.0.1: 3073 + version "5.0.1" 3074 + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 3075 + integrity sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g= 3076 + 3077 + get-stream@^4.0.0: 3078 + version "4.1.0" 3079 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 3080 + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 3081 + dependencies: 3082 + pump "^3.0.0" 3083 + 3084 + get-stream@^5.0.0: 3085 + version "5.2.0" 3086 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 3087 + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 3088 + dependencies: 3089 + pump "^3.0.0" 3186 3090 3187 3091 get-value@^2.0.3, get-value@^2.0.6: 3188 3092 version "2.0.6" 3189 3093 resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 3190 3094 integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 3191 3095 3096 + getpass@^0.1.1: 3097 + version "0.1.7" 3098 + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 3099 + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 3100 + dependencies: 3101 + assert-plus "^1.0.0" 3102 + 3192 3103 glob-parent@^3.1.0: 3193 3104 version "3.1.0" 3194 3105 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" ··· 3197 3108 is-glob "^3.1.0" 3198 3109 path-dirname "^1.0.0" 3199 3110 3200 - glob-parent@~5.1.0: 3201 - version "5.1.1" 3202 - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 3203 - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 3204 - dependencies: 3205 - is-glob "^4.0.1" 3206 - 3207 - glob-to-regexp@^0.4.1: 3208 - version "0.4.1" 3209 - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" 3210 - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== 3211 - 3212 - glob@^7.1.3, glob@^7.1.4: 3111 + glob@7.1.6, glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 3213 3112 version "7.1.6" 3214 3113 resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 3215 3114 integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== ··· 3221 3120 once "^1.3.0" 3222 3121 path-is-absolute "^1.0.0" 3223 3122 3224 - globals@^11.1.0: 3123 + globals@^11.0.1, globals@^11.1.0: 3225 3124 version "11.12.0" 3226 3125 resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 3227 3126 integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 3228 3127 3229 - graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.2.2: 3128 + google-closure-compiler-java@^20200406.0.0: 3129 + version "20200406.0.0" 3130 + resolved "https://registry.yarnpkg.com/google-closure-compiler-java/-/google-closure-compiler-java-20200406.0.0.tgz#89c640b89a91e9a693ab8119e3839d3e79b158ab" 3131 + integrity sha512-07WM/06CgQ0T2ZtSitfl+jmpeXW+c+spZgEgekJxEauzZztruYSkkBAHK8bZQ0N0+ZGfIUyQFNhLu//vxb5EJg== 3132 + 3133 + google-closure-compiler-js@^20200406.0.0: 3134 + version "20200406.0.0" 3135 + resolved "https://registry.yarnpkg.com/google-closure-compiler-js/-/google-closure-compiler-js-20200406.0.0.tgz#e73f498b1ab56a0580c0f945463252f7562f6f98" 3136 + integrity sha512-4qsr9VwjpSfoGt84bRAwDAcUlyYodZ9iywVMQwWzCu+SziCNXLFhUWkfLqTXbOYRSwO94UadwERSBdoPZY/GrA== 3137 + 3138 + google-closure-compiler-linux@^20200406.0.0: 3139 + version "20200406.0.0" 3140 + resolved "https://registry.yarnpkg.com/google-closure-compiler-linux/-/google-closure-compiler-linux-20200406.0.0.tgz#af2d5e6041a8a8ac4a5f0ec5015d328e18b66121" 3141 + integrity sha512-5NiU/jAjeMVJ7xm1KBDttE863lF7ItEqxg5Z1Vg/QMabTZz6Rr5S0Qy4hP+wjMfBnmqcL10BjXKJP5/m+doSbA== 3142 + 3143 + google-closure-compiler-osx@^20200406.0.0: 3144 + version "20200406.0.0" 3145 + resolved "https://registry.yarnpkg.com/google-closure-compiler-osx/-/google-closure-compiler-osx-20200406.0.0.tgz#bcab837e654dd74828030eafb95acadc49d974c6" 3146 + integrity sha512-XSF1l7GANVHnp2w8AGhhGDL3gw+XV3RaJvA7GsOJUmplPHguwlNvcLMEnSit7AEDa0JYdaQ50dfATwIKm6k8BQ== 3147 + 3148 + google-closure-compiler-windows@^20200406.0.0: 3149 + version "20200406.0.0" 3150 + resolved "https://registry.yarnpkg.com/google-closure-compiler-windows/-/google-closure-compiler-windows-20200406.0.0.tgz#ddb785df271026dd3a97da37710771480b6d2341" 3151 + integrity sha512-F7mSN06PrjWYrD9cTkCcNwJXyoYmcwAMrJGgFvmm04Nb7TDQRK6yVqXwrEkncGMuiymD+B1vsoCzUJ/GlQVf0Q== 3152 + 3153 + google-closure-compiler@20200406.0.0: 3154 + version "20200406.0.0" 3155 + resolved "https://registry.yarnpkg.com/google-closure-compiler/-/google-closure-compiler-20200406.0.0.tgz#ae77582160fb286e161249f7e1c3806396beb251" 3156 + integrity sha512-CBfXKVeZASKrgWRDJoYKxbZ546Pphld1SP6mN/KXVW4LbtV1wvXauM9wq1X/Y0Cez4Qh8MlU8VHCtLtNZfq17A== 3157 + dependencies: 3158 + chalk "2.x" 3159 + google-closure-compiler-java "^20200406.0.0" 3160 + google-closure-compiler-js "^20200406.0.0" 3161 + minimist "1.x" 3162 + vinyl "2.x" 3163 + vinyl-sourcemaps-apply "^0.2.0" 3164 + optionalDependencies: 3165 + google-closure-compiler-linux "^20200406.0.0" 3166 + google-closure-compiler-osx "^20200406.0.0" 3167 + google-closure-compiler-windows "^20200406.0.0" 3168 + 3169 + graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.2.4: 3230 3170 version "4.2.4" 3231 3171 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 3232 3172 integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 3233 3173 3174 + growly@^1.3.0: 3175 + version "1.3.0" 3176 + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 3177 + integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= 3178 + 3179 + gzip-size@^5.1.1: 3180 + version "5.1.1" 3181 + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" 3182 + integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== 3183 + dependencies: 3184 + duplexer "^0.1.1" 3185 + pify "^4.0.1" 3186 + 3187 + har-schema@^2.0.0: 3188 + version "2.0.0" 3189 + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 3190 + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= 3191 + 3192 + har-validator@~5.1.3: 3193 + version "5.1.5" 3194 + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" 3195 + integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== 3196 + dependencies: 3197 + ajv "^6.12.3" 3198 + har-schema "^2.0.0" 3199 + 3234 3200 has-ansi@^2.0.0: 3235 3201 version "2.0.0" 3236 3202 resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" ··· 3284 3250 is-number "^3.0.0" 3285 3251 kind-of "^4.0.0" 3286 3252 3287 - has@^1.0.0, has@^1.0.3: 3253 + has@^1.0.3: 3288 3254 version "1.0.3" 3289 3255 resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 3290 3256 integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 3291 3257 dependencies: 3292 3258 function-bind "^1.1.1" 3293 3259 3294 - hash-base@^3.0.0: 3295 - version "3.1.0" 3296 - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" 3297 - integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== 3298 - dependencies: 3299 - inherits "^2.0.4" 3300 - readable-stream "^3.6.0" 3301 - safe-buffer "^5.2.0" 3260 + he@1.2.x: 3261 + version "1.2.0" 3262 + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 3263 + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 3302 3264 3303 - hash.js@^1.0.0, hash.js@^1.0.3: 3304 - version "1.1.7" 3305 - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 3306 - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 3265 + homedir-polyfill@^1.0.1: 3266 + version "1.0.3" 3267 + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" 3268 + integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== 3307 3269 dependencies: 3308 - inherits "^2.0.3" 3309 - minimalistic-assert "^1.0.1" 3270 + parse-passwd "^1.0.0" 3310 3271 3311 - hex-color-regex@^1.1.0: 3312 - version "1.1.0" 3313 - resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" 3314 - integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== 3272 + hosted-git-info@^2.1.4: 3273 + version "2.8.8" 3274 + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 3275 + integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 3315 3276 3316 - hmac-drbg@^1.0.0: 3317 - version "1.0.1" 3318 - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 3319 - integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= 3277 + html-encoding-sniffer@^2.0.1: 3278 + version "2.0.1" 3279 + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 3280 + integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 3320 3281 dependencies: 3321 - hash.js "^1.0.3" 3322 - minimalistic-assert "^1.0.0" 3323 - minimalistic-crypto-utils "^1.0.1" 3282 + whatwg-encoding "^1.0.5" 3324 3283 3325 - hoist-non-react-statics@^3.3.0: 3326 - version "3.3.2" 3327 - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" 3328 - integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== 3329 - dependencies: 3330 - react-is "^16.7.0" 3284 + html-escaper@^2.0.0: 3285 + version "2.0.2" 3286 + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 3287 + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 3331 3288 3332 - hsl-regex@^1.0.0: 3333 - version "1.0.0" 3334 - resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" 3335 - integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= 3336 - 3337 - hsla-regex@^1.0.0: 3338 - version "1.0.0" 3339 - resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" 3340 - integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= 3341 - 3342 - html-comment-regex@^1.1.0: 3343 - version "1.1.2" 3344 - resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" 3345 - integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== 3346 - 3347 - htmlparser2@4.1.0: 3348 - version "4.1.0" 3349 - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78" 3350 - integrity sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q== 3289 + html-minifier@^3.5.8: 3290 + version "3.5.21" 3291 + resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c" 3292 + integrity sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA== 3351 3293 dependencies: 3352 - domelementtype "^2.0.1" 3353 - domhandler "^3.0.0" 3354 - domutils "^2.0.0" 3355 - entities "^2.0.0" 3294 + camel-case "3.0.x" 3295 + clean-css "4.2.x" 3296 + commander "2.17.x" 3297 + he "1.2.x" 3298 + param-case "2.1.x" 3299 + relateurl "0.2.x" 3300 + uglify-js "3.4.x" 3356 3301 3357 3302 htmlparser2@^3.9.1: 3358 3303 version "3.10.1" ··· 3366 3311 inherits "^2.0.1" 3367 3312 readable-stream "^3.1.1" 3368 3313 3369 - https-browserify@^1.0.0: 3370 - version "1.0.0" 3371 - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 3372 - integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= 3314 + htmlparser2@^4.1.0: 3315 + version "4.1.0" 3316 + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78" 3317 + integrity sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q== 3318 + dependencies: 3319 + domelementtype "^2.0.1" 3320 + domhandler "^3.0.0" 3321 + domutils "^2.0.0" 3322 + entities "^2.0.0" 3373 3323 3374 - icss-utils@^4.0.0, icss-utils@^4.1.1: 3375 - version "4.1.1" 3376 - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" 3377 - integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== 3324 + http-signature@~1.2.0: 3325 + version "1.2.0" 3326 + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 3327 + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= 3378 3328 dependencies: 3379 - postcss "^7.0.14" 3329 + assert-plus "^1.0.0" 3330 + jsprim "^1.2.2" 3331 + sshpk "^1.7.0" 3380 3332 3381 - ieee754@^1.1.4: 3382 - version "1.1.13" 3383 - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" 3384 - integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== 3333 + human-signals@^1.1.1: 3334 + version "1.1.1" 3335 + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 3336 + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 3385 3337 3386 - iferr@^0.1.5: 3387 - version "0.1.5" 3388 - resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" 3389 - integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= 3338 + iconv-lite@0.4.24, iconv-lite@^0.4.17: 3339 + version "0.4.24" 3340 + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 3341 + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 3342 + dependencies: 3343 + safer-buffer ">= 2.1.2 < 3" 3390 3344 3391 - immediate@~3.0.5: 3392 - version "3.0.6" 3393 - resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" 3394 - integrity sha1-nbHb0Pr43m++D13V5Wu2BigN5ps= 3345 + ignore@^3.3.3: 3346 + version "3.3.10" 3347 + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" 3348 + integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== 3395 3349 3396 - import-fresh@^2.0.0: 3397 - version "2.0.0" 3398 - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" 3399 - integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= 3350 + import-local@^3.0.2: 3351 + version "3.0.2" 3352 + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" 3353 + integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA== 3400 3354 dependencies: 3401 - caller-path "^2.0.0" 3402 - resolve-from "^3.0.0" 3403 - 3404 - import-fresh@^3.1.0: 3405 - version "3.2.1" 3406 - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 3407 - integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 3408 - dependencies: 3409 - parent-module "^1.0.0" 3410 - resolve-from "^4.0.0" 3355 + pkg-dir "^4.2.0" 3356 + resolve-cwd "^3.0.0" 3411 3357 3412 3358 imurmurhash@^0.1.4: 3413 3359 version "0.1.4" 3414 3360 resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 3415 3361 integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 3416 3362 3417 - indent-string@^4.0.0: 3418 - version "4.0.0" 3419 - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 3420 - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 3421 - 3422 - indexes-of@^1.0.1: 3423 - version "1.0.1" 3424 - resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 3425 - integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= 3426 - 3427 - infer-owner@^1.0.3, infer-owner@^1.0.4: 3428 - version "1.0.4" 3429 - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" 3430 - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== 3431 - 3432 3363 inflight@^1.0.4: 3433 3364 version "1.0.6" 3434 3365 resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" ··· 3437 3368 once "^1.3.0" 3438 3369 wrappy "1" 3439 3370 3440 - inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: 3371 + inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 3441 3372 version "2.0.4" 3442 3373 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 3443 3374 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 3444 3375 3445 - inherits@2.0.1: 3446 - version "2.0.1" 3447 - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 3448 - integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= 3449 - 3450 - inherits@2.0.3: 3451 - version "2.0.3" 3452 - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 3453 - integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 3376 + inquirer@^3.0.6: 3377 + version "3.3.0" 3378 + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 3379 + integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== 3380 + dependencies: 3381 + ansi-escapes "^3.0.0" 3382 + chalk "^2.0.0" 3383 + cli-cursor "^2.1.0" 3384 + cli-width "^2.0.0" 3385 + external-editor "^2.0.4" 3386 + figures "^2.0.0" 3387 + lodash "^4.3.0" 3388 + mute-stream "0.0.7" 3389 + run-async "^2.2.0" 3390 + rx-lite "^4.0.8" 3391 + rx-lite-aggregates "^4.0.8" 3392 + string-width "^2.1.0" 3393 + strip-ansi "^4.0.0" 3394 + through "^2.3.6" 3454 3395 3455 3396 invariant@^2.2.2, invariant@^2.2.4: 3456 3397 version "2.2.4" ··· 3459 3400 dependencies: 3460 3401 loose-envify "^1.0.0" 3461 3402 3462 - is-absolute-url@^2.0.0: 3403 + ip-regex@^2.1.0: 3463 3404 version "2.1.0" 3464 - resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 3465 - integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= 3405 + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" 3406 + integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= 3466 3407 3467 3408 is-accessor-descriptor@^0.1.6: 3468 3409 version "0.1.6" ··· 3483 3424 resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 3484 3425 integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 3485 3426 3486 - is-arrayish@^0.3.1: 3487 - version "0.3.2" 3488 - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 3489 - integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 3490 - 3491 3427 is-binary-path@^1.0.0: 3492 3428 version "1.0.1" 3493 3429 resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" ··· 3495 3431 dependencies: 3496 3432 binary-extensions "^1.0.0" 3497 3433 3498 - is-binary-path@~2.1.0: 3499 - version "2.1.0" 3500 - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 3501 - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 3502 - dependencies: 3503 - binary-extensions "^2.0.0" 3504 - 3505 3434 is-buffer@^1.1.5: 3506 3435 version "1.1.6" 3507 3436 resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 3508 3437 integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 3509 3438 3510 - is-callable@^1.1.4, is-callable@^1.1.5: 3439 + is-callable@^1.1.4, is-callable@^1.2.0: 3511 3440 version "1.2.0" 3512 3441 resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" 3513 3442 integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== 3514 3443 3515 - is-color-stop@^1.0.0: 3516 - version "1.1.0" 3517 - resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" 3518 - integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= 3444 + is-ci@^2.0.0: 3445 + version "2.0.0" 3446 + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 3447 + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 3519 3448 dependencies: 3520 - css-color-names "^0.0.4" 3521 - hex-color-regex "^1.1.0" 3522 - hsl-regex "^1.0.0" 3523 - hsla-regex "^1.0.0" 3524 - rgb-regex "^1.0.1" 3525 - rgba-regex "^1.0.0" 3449 + ci-info "^2.0.0" 3526 3450 3527 3451 is-data-descriptor@^0.1.4: 3528 3452 version "0.1.4" ··· 3561 3485 is-data-descriptor "^1.0.0" 3562 3486 kind-of "^6.0.2" 3563 3487 3564 - is-directory@^0.3.1: 3565 - version "0.3.1" 3566 - resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 3567 - integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= 3488 + is-docker@^2.0.0: 3489 + version "2.1.1" 3490 + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" 3491 + integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw== 3568 3492 3569 3493 is-extendable@^0.1.0, is-extendable@^0.1.1: 3570 3494 version "0.1.1" ··· 3583 3507 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 3584 3508 integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 3585 3509 3510 + is-fullwidth-code-point@^2.0.0: 3511 + version "2.0.0" 3512 + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 3513 + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 3514 + 3515 + is-fullwidth-code-point@^3.0.0: 3516 + version "3.0.0" 3517 + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 3518 + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 3519 + 3520 + is-generator-fn@^2.0.0: 3521 + version "2.1.0" 3522 + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 3523 + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 3524 + 3586 3525 is-glob@^3.1.0: 3587 3526 version "3.1.0" 3588 3527 resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" ··· 3590 3529 dependencies: 3591 3530 is-extglob "^2.1.0" 3592 3531 3593 - is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: 3532 + is-glob@^4.0.0: 3594 3533 version "4.0.1" 3595 3534 resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 3596 3535 integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 3597 3536 dependencies: 3598 3537 is-extglob "^2.1.1" 3599 3538 3539 + is-module@^1.0.0: 3540 + version "1.0.0" 3541 + resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 3542 + integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 3543 + 3600 3544 is-number@^3.0.0: 3601 3545 version "3.0.0" 3602 3546 resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" ··· 3609 3553 resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 3610 3554 integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 3611 3555 3612 - is-obj@^2.0.0: 3613 - version "2.0.0" 3614 - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 3615 - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 3616 - 3617 - is-plain-obj@^1.0.0: 3618 - version "1.1.0" 3619 - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 3620 - integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= 3621 - 3622 3556 is-plain-object@^2.0.3, is-plain-object@^2.0.4: 3623 3557 version "2.0.4" 3624 3558 resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" ··· 3626 3560 dependencies: 3627 3561 isobject "^3.0.1" 3628 3562 3629 - is-regex@^1.0.5: 3563 + is-potential-custom-element-name@^1.0.0: 3564 + version "1.0.0" 3565 + resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397" 3566 + integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c= 3567 + 3568 + is-reference@^1.1.2: 3569 + version "1.2.1" 3570 + resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" 3571 + integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== 3572 + dependencies: 3573 + "@types/estree" "*" 3574 + 3575 + is-regex@^1.1.0: 3630 3576 version "1.1.0" 3631 3577 resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" 3632 3578 integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== ··· 3638 3584 resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 3639 3585 integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== 3640 3586 3641 - is-svg@^3.0.0: 3642 - version "3.0.0" 3643 - resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" 3644 - integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== 3645 - dependencies: 3646 - html-comment-regex "^1.1.0" 3587 + is-stream@^1.1.0: 3588 + version "1.1.0" 3589 + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 3590 + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 3591 + 3592 + is-stream@^2.0.0: 3593 + version "2.0.0" 3594 + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 3595 + integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 3596 + 3597 + is-string@^1.0.5: 3598 + version "1.0.5" 3599 + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 3600 + integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 3647 3601 3648 3602 is-symbol@^1.0.2: 3649 3603 version "1.0.3" ··· 3651 3605 integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 3652 3606 dependencies: 3653 3607 has-symbols "^1.0.1" 3608 + 3609 + is-typedarray@^1.0.0, is-typedarray@~1.0.0: 3610 + version "1.0.0" 3611 + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 3612 + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 3654 3613 3655 3614 is-windows@^1.0.2: 3656 3615 version "1.0.2" 3657 3616 resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 3658 3617 integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 3659 3618 3660 - is-wsl@^1.1.0: 3661 - version "1.1.0" 3662 - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 3663 - integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= 3619 + is-wsl@^2.1.1, is-wsl@^2.2.0: 3620 + version "2.2.0" 3621 + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 3622 + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 3623 + dependencies: 3624 + is-docker "^2.0.0" 3664 3625 3665 3626 isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 3666 3627 version "1.0.0" 3667 3628 resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 3668 3629 integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 3630 + 3631 + isexe@^2.0.0: 3632 + version "2.0.0" 3633 + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 3634 + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 3669 3635 3670 3636 isobject@^2.0.0: 3671 3637 version "2.1.0" ··· 3679 3645 resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 3680 3646 integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 3681 3647 3682 - jest-worker@24.9.0: 3648 + isstream@~0.1.2: 3649 + version "0.1.2" 3650 + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 3651 + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 3652 + 3653 + istanbul-lib-coverage@^3.0.0: 3654 + version "3.0.0" 3655 + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" 3656 + integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== 3657 + 3658 + istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: 3659 + version "4.0.3" 3660 + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" 3661 + integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== 3662 + dependencies: 3663 + "@babel/core" "^7.7.5" 3664 + "@istanbuljs/schema" "^0.1.2" 3665 + istanbul-lib-coverage "^3.0.0" 3666 + semver "^6.3.0" 3667 + 3668 + istanbul-lib-report@^3.0.0: 3669 + version "3.0.0" 3670 + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 3671 + integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 3672 + dependencies: 3673 + istanbul-lib-coverage "^3.0.0" 3674 + make-dir "^3.0.0" 3675 + supports-color "^7.1.0" 3676 + 3677 + istanbul-lib-source-maps@^4.0.0: 3678 + version "4.0.0" 3679 + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" 3680 + integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== 3681 + dependencies: 3682 + debug "^4.1.1" 3683 + istanbul-lib-coverage "^3.0.0" 3684 + source-map "^0.6.1" 3685 + 3686 + istanbul-reports@^3.0.2: 3687 + version "3.0.2" 3688 + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" 3689 + integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw== 3690 + dependencies: 3691 + html-escaper "^2.0.0" 3692 + istanbul-lib-report "^3.0.0" 3693 + 3694 + jest-changed-files@^26.3.0: 3695 + version "26.3.0" 3696 + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.3.0.tgz#68fb2a7eb125f50839dab1f5a17db3607fe195b1" 3697 + integrity sha512-1C4R4nijgPltX6fugKxM4oQ18zimS7LqQ+zTTY8lMCMFPrxqBFb7KJH0Z2fRQJvw2Slbaipsqq7s1mgX5Iot+g== 3698 + dependencies: 3699 + "@jest/types" "^26.3.0" 3700 + execa "^4.0.0" 3701 + throat "^5.0.0" 3702 + 3703 + jest-cli@^26.4.2: 3704 + version "26.4.2" 3705 + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.4.2.tgz#24afc6e4dfc25cde4c7ec4226fb7db5f157c21da" 3706 + integrity sha512-zb+lGd/SfrPvoRSC/0LWdaWCnscXc1mGYW//NP4/tmBvRPT3VntZ2jtKUONsRi59zc5JqmsSajA9ewJKFYp8Cw== 3707 + dependencies: 3708 + "@jest/core" "^26.4.2" 3709 + "@jest/test-result" "^26.3.0" 3710 + "@jest/types" "^26.3.0" 3711 + chalk "^4.0.0" 3712 + exit "^0.1.2" 3713 + graceful-fs "^4.2.4" 3714 + import-local "^3.0.2" 3715 + is-ci "^2.0.0" 3716 + jest-config "^26.4.2" 3717 + jest-util "^26.3.0" 3718 + jest-validate "^26.4.2" 3719 + prompts "^2.0.1" 3720 + yargs "^15.3.1" 3721 + 3722 + jest-config@^26.4.2: 3723 + version "26.4.2" 3724 + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.4.2.tgz#da0cbb7dc2c131ffe831f0f7f2a36256e6086558" 3725 + integrity sha512-QBf7YGLuToiM8PmTnJEdRxyYy3mHWLh24LJZKVdXZ2PNdizSe1B/E8bVm+HYcjbEzGuVXDv/di+EzdO/6Gq80A== 3726 + dependencies: 3727 + "@babel/core" "^7.1.0" 3728 + "@jest/test-sequencer" "^26.4.2" 3729 + "@jest/types" "^26.3.0" 3730 + babel-jest "^26.3.0" 3731 + chalk "^4.0.0" 3732 + deepmerge "^4.2.2" 3733 + glob "^7.1.1" 3734 + graceful-fs "^4.2.4" 3735 + jest-environment-jsdom "^26.3.0" 3736 + jest-environment-node "^26.3.0" 3737 + jest-get-type "^26.3.0" 3738 + jest-jasmine2 "^26.4.2" 3739 + jest-regex-util "^26.0.0" 3740 + jest-resolve "^26.4.0" 3741 + jest-util "^26.3.0" 3742 + jest-validate "^26.4.2" 3743 + micromatch "^4.0.2" 3744 + pretty-format "^26.4.2" 3745 + 3746 + jest-diff@^26.4.2: 3747 + version "26.4.2" 3748 + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.4.2.tgz#a1b7b303bcc534aabdb3bd4a7caf594ac059f5aa" 3749 + integrity sha512-6T1XQY8U28WH0Z5rGpQ+VqZSZz8EN8rZcBtfvXaOkbwxIEeRre6qnuZQlbY1AJ4MKDxQF8EkrCvK+hL/VkyYLQ== 3750 + dependencies: 3751 + chalk "^4.0.0" 3752 + diff-sequences "^26.3.0" 3753 + jest-get-type "^26.3.0" 3754 + pretty-format "^26.4.2" 3755 + 3756 + jest-docblock@^21.0.0: 3757 + version "21.2.0" 3758 + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 3759 + integrity sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw== 3760 + 3761 + jest-docblock@^26.0.0: 3762 + version "26.0.0" 3763 + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5" 3764 + integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w== 3765 + dependencies: 3766 + detect-newline "^3.0.0" 3767 + 3768 + jest-each@^26.4.2: 3769 + version "26.4.2" 3770 + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.4.2.tgz#bb14f7f4304f2bb2e2b81f783f989449b8b6ffae" 3771 + integrity sha512-p15rt8r8cUcRY0Mvo1fpkOGYm7iI8S6ySxgIdfh3oOIv+gHwrHTy5VWCGOecWUhDsit4Nz8avJWdT07WLpbwDA== 3772 + dependencies: 3773 + "@jest/types" "^26.3.0" 3774 + chalk "^4.0.0" 3775 + jest-get-type "^26.3.0" 3776 + jest-util "^26.3.0" 3777 + pretty-format "^26.4.2" 3778 + 3779 + jest-environment-jsdom@^26.3.0: 3780 + version "26.3.0" 3781 + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.3.0.tgz#3b749ba0f3a78e92ba2c9ce519e16e5dd515220c" 3782 + integrity sha512-zra8He2btIMJkAzvLaiZ9QwEPGEetbxqmjEBQwhH3CA+Hhhu0jSiEJxnJMbX28TGUvPLxBt/zyaTLrOPF4yMJA== 3783 + dependencies: 3784 + "@jest/environment" "^26.3.0" 3785 + "@jest/fake-timers" "^26.3.0" 3786 + "@jest/types" "^26.3.0" 3787 + "@types/node" "*" 3788 + jest-mock "^26.3.0" 3789 + jest-util "^26.3.0" 3790 + jsdom "^16.2.2" 3791 + 3792 + jest-environment-node@^26.3.0: 3793 + version "26.3.0" 3794 + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.3.0.tgz#56c6cfb506d1597f94ee8d717072bda7228df849" 3795 + integrity sha512-c9BvYoo+FGcMj5FunbBgtBnbR5qk3uky8PKyRVpSfe2/8+LrNQMiXX53z6q2kY+j15SkjQCOSL/6LHnCPLVHNw== 3796 + dependencies: 3797 + "@jest/environment" "^26.3.0" 3798 + "@jest/fake-timers" "^26.3.0" 3799 + "@jest/types" "^26.3.0" 3800 + "@types/node" "*" 3801 + jest-mock "^26.3.0" 3802 + jest-util "^26.3.0" 3803 + 3804 + jest-get-type@^26.3.0: 3805 + version "26.3.0" 3806 + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" 3807 + integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== 3808 + 3809 + jest-haste-map@^26.3.0: 3810 + version "26.3.0" 3811 + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.3.0.tgz#c51a3b40100d53ab777bfdad382d2e7a00e5c726" 3812 + integrity sha512-DHWBpTJgJhLLGwE5Z1ZaqLTYqeODQIZpby0zMBsCU9iRFHYyhklYqP4EiG73j5dkbaAdSZhgB938mL51Q5LeZA== 3813 + dependencies: 3814 + "@jest/types" "^26.3.0" 3815 + "@types/graceful-fs" "^4.1.2" 3816 + "@types/node" "*" 3817 + anymatch "^3.0.3" 3818 + fb-watchman "^2.0.0" 3819 + graceful-fs "^4.2.4" 3820 + jest-regex-util "^26.0.0" 3821 + jest-serializer "^26.3.0" 3822 + jest-util "^26.3.0" 3823 + jest-worker "^26.3.0" 3824 + micromatch "^4.0.2" 3825 + sane "^4.0.3" 3826 + walker "^1.0.7" 3827 + optionalDependencies: 3828 + fsevents "^2.1.2" 3829 + 3830 + jest-jasmine2@^26.4.2: 3831 + version "26.4.2" 3832 + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.4.2.tgz#18a9d5bec30904267ac5e9797570932aec1e2257" 3833 + integrity sha512-z7H4EpCldHN1J8fNgsja58QftxBSL+JcwZmaXIvV9WKIM+x49F4GLHu/+BQh2kzRKHAgaN/E82od+8rTOBPyPA== 3834 + dependencies: 3835 + "@babel/traverse" "^7.1.0" 3836 + "@jest/environment" "^26.3.0" 3837 + "@jest/source-map" "^26.3.0" 3838 + "@jest/test-result" "^26.3.0" 3839 + "@jest/types" "^26.3.0" 3840 + "@types/node" "*" 3841 + chalk "^4.0.0" 3842 + co "^4.6.0" 3843 + expect "^26.4.2" 3844 + is-generator-fn "^2.0.0" 3845 + jest-each "^26.4.2" 3846 + jest-matcher-utils "^26.4.2" 3847 + jest-message-util "^26.3.0" 3848 + jest-runtime "^26.4.2" 3849 + jest-snapshot "^26.4.2" 3850 + jest-util "^26.3.0" 3851 + pretty-format "^26.4.2" 3852 + throat "^5.0.0" 3853 + 3854 + jest-leak-detector@^26.4.2: 3855 + version "26.4.2" 3856 + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.4.2.tgz#c73e2fa8757bf905f6f66fb9e0070b70fa0f573f" 3857 + integrity sha512-akzGcxwxtE+9ZJZRW+M2o+nTNnmQZxrHJxX/HjgDaU5+PLmY1qnQPnMjgADPGCRPhB+Yawe1iij0REe+k/aHoA== 3858 + dependencies: 3859 + jest-get-type "^26.3.0" 3860 + pretty-format "^26.4.2" 3861 + 3862 + jest-matcher-utils@^26.4.2: 3863 + version "26.4.2" 3864 + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.4.2.tgz#fa81f3693f7cb67e5fc1537317525ef3b85f4b06" 3865 + integrity sha512-KcbNqWfWUG24R7tu9WcAOKKdiXiXCbMvQYT6iodZ9k1f7065k0keUOW6XpJMMvah+hTfqkhJhRXmA3r3zMAg0Q== 3866 + dependencies: 3867 + chalk "^4.0.0" 3868 + jest-diff "^26.4.2" 3869 + jest-get-type "^26.3.0" 3870 + pretty-format "^26.4.2" 3871 + 3872 + jest-message-util@^26.3.0: 3873 + version "26.3.0" 3874 + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.3.0.tgz#3bdb538af27bb417f2d4d16557606fd082d5841a" 3875 + integrity sha512-xIavRYqr4/otGOiLxLZGj3ieMmjcNE73Ui+LdSW/Y790j5acqCsAdDiLIbzHCZMpN07JOENRWX5DcU+OQ+TjTA== 3876 + dependencies: 3877 + "@babel/code-frame" "^7.0.0" 3878 + "@jest/types" "^26.3.0" 3879 + "@types/stack-utils" "^1.0.1" 3880 + chalk "^4.0.0" 3881 + graceful-fs "^4.2.4" 3882 + micromatch "^4.0.2" 3883 + slash "^3.0.0" 3884 + stack-utils "^2.0.2" 3885 + 3886 + jest-mock@^26.3.0: 3887 + version "26.3.0" 3888 + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.3.0.tgz#ee62207c3c5ebe5f35b760e1267fee19a1cfdeba" 3889 + integrity sha512-PeaRrg8Dc6mnS35gOo/CbZovoDPKAeB1FICZiuagAgGvbWdNNyjQjkOaGUa/3N3JtpQ/Mh9P4A2D4Fv51NnP8Q== 3890 + dependencies: 3891 + "@jest/types" "^26.3.0" 3892 + "@types/node" "*" 3893 + 3894 + jest-pnp-resolver@^1.2.2: 3895 + version "1.2.2" 3896 + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 3897 + integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 3898 + 3899 + jest-regex-util@^26.0.0: 3900 + version "26.0.0" 3901 + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" 3902 + integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== 3903 + 3904 + jest-resolve-dependencies@^26.4.2: 3905 + version "26.4.2" 3906 + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.4.2.tgz#739bdb027c14befb2fe5aabbd03f7bab355f1dc5" 3907 + integrity sha512-ADHaOwqEcVc71uTfySzSowA/RdxUpCxhxa2FNLiin9vWLB1uLPad3we+JSSROq5+SrL9iYPdZZF8bdKM7XABTQ== 3908 + dependencies: 3909 + "@jest/types" "^26.3.0" 3910 + jest-regex-util "^26.0.0" 3911 + jest-snapshot "^26.4.2" 3912 + 3913 + jest-resolve@^26.4.0: 3914 + version "26.4.0" 3915 + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.4.0.tgz#6dc0af7fb93e65b73fec0368ca2b76f3eb59a6d7" 3916 + integrity sha512-bn/JoZTEXRSlEx3+SfgZcJAVuTMOksYq9xe9O6s4Ekg84aKBObEaVXKOEilULRqviSLAYJldnoWV9c07kwtiCg== 3917 + dependencies: 3918 + "@jest/types" "^26.3.0" 3919 + chalk "^4.0.0" 3920 + graceful-fs "^4.2.4" 3921 + jest-pnp-resolver "^1.2.2" 3922 + jest-util "^26.3.0" 3923 + read-pkg-up "^7.0.1" 3924 + resolve "^1.17.0" 3925 + slash "^3.0.0" 3926 + 3927 + jest-runner@^26.4.2: 3928 + version "26.4.2" 3929 + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.4.2.tgz#c3ec5482c8edd31973bd3935df5a449a45b5b853" 3930 + integrity sha512-FgjDHeVknDjw1gRAYaoUoShe1K3XUuFMkIaXbdhEys+1O4bEJS8Avmn4lBwoMfL8O5oFTdWYKcf3tEJyyYyk8g== 3931 + dependencies: 3932 + "@jest/console" "^26.3.0" 3933 + "@jest/environment" "^26.3.0" 3934 + "@jest/test-result" "^26.3.0" 3935 + "@jest/types" "^26.3.0" 3936 + "@types/node" "*" 3937 + chalk "^4.0.0" 3938 + emittery "^0.7.1" 3939 + exit "^0.1.2" 3940 + graceful-fs "^4.2.4" 3941 + jest-config "^26.4.2" 3942 + jest-docblock "^26.0.0" 3943 + jest-haste-map "^26.3.0" 3944 + jest-leak-detector "^26.4.2" 3945 + jest-message-util "^26.3.0" 3946 + jest-resolve "^26.4.0" 3947 + jest-runtime "^26.4.2" 3948 + jest-util "^26.3.0" 3949 + jest-worker "^26.3.0" 3950 + source-map-support "^0.5.6" 3951 + throat "^5.0.0" 3952 + 3953 + jest-runtime@^26.4.2: 3954 + version "26.4.2" 3955 + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.4.2.tgz#94ce17890353c92e4206580c73a8f0c024c33c42" 3956 + integrity sha512-4Pe7Uk5a80FnbHwSOk7ojNCJvz3Ks2CNQWT5Z7MJo4tX0jb3V/LThKvD9tKPNVNyeMH98J/nzGlcwc00R2dSHQ== 3957 + dependencies: 3958 + "@jest/console" "^26.3.0" 3959 + "@jest/environment" "^26.3.0" 3960 + "@jest/fake-timers" "^26.3.0" 3961 + "@jest/globals" "^26.4.2" 3962 + "@jest/source-map" "^26.3.0" 3963 + "@jest/test-result" "^26.3.0" 3964 + "@jest/transform" "^26.3.0" 3965 + "@jest/types" "^26.3.0" 3966 + "@types/yargs" "^15.0.0" 3967 + chalk "^4.0.0" 3968 + collect-v8-coverage "^1.0.0" 3969 + exit "^0.1.2" 3970 + glob "^7.1.3" 3971 + graceful-fs "^4.2.4" 3972 + jest-config "^26.4.2" 3973 + jest-haste-map "^26.3.0" 3974 + jest-message-util "^26.3.0" 3975 + jest-mock "^26.3.0" 3976 + jest-regex-util "^26.0.0" 3977 + jest-resolve "^26.4.0" 3978 + jest-snapshot "^26.4.2" 3979 + jest-util "^26.3.0" 3980 + jest-validate "^26.4.2" 3981 + slash "^3.0.0" 3982 + strip-bom "^4.0.0" 3983 + yargs "^15.3.1" 3984 + 3985 + jest-serializer@^26.3.0: 3986 + version "26.3.0" 3987 + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.3.0.tgz#1c9d5e1b74d6e5f7e7f9627080fa205d976c33ef" 3988 + integrity sha512-IDRBQBLPlKa4flg77fqg0n/pH87tcRKwe8zxOVTWISxGpPHYkRZ1dXKyh04JOja7gppc60+soKVZ791mruVdow== 3989 + dependencies: 3990 + "@types/node" "*" 3991 + graceful-fs "^4.2.4" 3992 + 3993 + jest-snapshot@^26.4.2: 3994 + version "26.4.2" 3995 + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.4.2.tgz#87d3ac2f2bd87ea8003602fbebd8fcb9e94104f6" 3996 + integrity sha512-N6Uub8FccKlf5SBFnL2Ri/xofbaA68Cc3MGjP/NuwgnsvWh+9hLIR/DhrxbSiKXMY9vUW5dI6EW1eHaDHqe9sg== 3997 + dependencies: 3998 + "@babel/types" "^7.0.0" 3999 + "@jest/types" "^26.3.0" 4000 + "@types/prettier" "^2.0.0" 4001 + chalk "^4.0.0" 4002 + expect "^26.4.2" 4003 + graceful-fs "^4.2.4" 4004 + jest-diff "^26.4.2" 4005 + jest-get-type "^26.3.0" 4006 + jest-haste-map "^26.3.0" 4007 + jest-matcher-utils "^26.4.2" 4008 + jest-message-util "^26.3.0" 4009 + jest-resolve "^26.4.0" 4010 + natural-compare "^1.4.0" 4011 + pretty-format "^26.4.2" 4012 + semver "^7.3.2" 4013 + 4014 + jest-util@^26.3.0: 4015 + version "26.3.0" 4016 + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.3.0.tgz#a8974b191df30e2bf523ebbfdbaeb8efca535b3e" 4017 + integrity sha512-4zpn6bwV0+AMFN0IYhH/wnzIQzRaYVrz1A8sYnRnj4UXDXbOVtWmlaZkO9mipFqZ13okIfN87aDoJWB7VH6hcw== 4018 + dependencies: 4019 + "@jest/types" "^26.3.0" 4020 + "@types/node" "*" 4021 + chalk "^4.0.0" 4022 + graceful-fs "^4.2.4" 4023 + is-ci "^2.0.0" 4024 + micromatch "^4.0.2" 4025 + 4026 + jest-validate@^26.4.2: 4027 + version "26.4.2" 4028 + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.4.2.tgz#e871b0dfe97747133014dcf6445ee8018398f39c" 4029 + integrity sha512-blft+xDX7XXghfhY0mrsBCYhX365n8K5wNDC4XAcNKqqjEzsRUSXP44m6PL0QJEW2crxQFLLztVnJ4j7oPlQrQ== 4030 + dependencies: 4031 + "@jest/types" "^26.3.0" 4032 + camelcase "^6.0.0" 4033 + chalk "^4.0.0" 4034 + jest-get-type "^26.3.0" 4035 + leven "^3.1.0" 4036 + pretty-format "^26.4.2" 4037 + 4038 + jest-watcher@^26.3.0: 4039 + version "26.3.0" 4040 + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.3.0.tgz#f8ef3068ddb8af160ef868400318dc4a898eed08" 4041 + integrity sha512-XnLdKmyCGJ3VoF6G/p5ohbJ04q/vv5aH9ENI+i6BL0uu9WWB6Z7Z2lhQQk0d2AVZcRGp1yW+/TsoToMhBFPRdQ== 4042 + dependencies: 4043 + "@jest/test-result" "^26.3.0" 4044 + "@jest/types" "^26.3.0" 4045 + "@types/node" "*" 4046 + ansi-escapes "^4.2.1" 4047 + chalk "^4.0.0" 4048 + jest-util "^26.3.0" 4049 + string-length "^4.0.1" 4050 + 4051 + jest-worker@^24.9.0: 3683 4052 version "24.9.0" 3684 4053 resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" 3685 4054 integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== ··· 3687 4056 merge-stream "^2.0.0" 3688 4057 supports-color "^6.1.0" 3689 4058 4059 + jest-worker@^26.3.0: 4060 + version "26.3.0" 4061 + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.3.0.tgz#7c8a97e4f4364b4f05ed8bca8ca0c24de091871f" 4062 + integrity sha512-Vmpn2F6IASefL+DVBhPzI2J9/GJUsqzomdeN+P+dK8/jKxbh8R3BtFnx3FIta7wYlPU62cpJMJQo4kuOowcMnw== 4063 + dependencies: 4064 + "@types/node" "*" 4065 + merge-stream "^2.0.0" 4066 + supports-color "^7.0.0" 4067 + 4068 + jest@^26.4.2: 4069 + version "26.4.2" 4070 + resolved "https://registry.yarnpkg.com/jest/-/jest-26.4.2.tgz#7e8bfb348ec33f5459adeaffc1a25d5752d9d312" 4071 + integrity sha512-LLCjPrUh98Ik8CzW8LLVnSCfLaiY+wbK53U7VxnFSX7Q+kWC4noVeDvGWIFw0Amfq1lq2VfGm7YHWSLBV62MJw== 4072 + dependencies: 4073 + "@jest/core" "^26.4.2" 4074 + import-local "^3.0.2" 4075 + jest-cli "^26.4.2" 4076 + 3690 4077 "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 3691 4078 version "4.0.0" 3692 4079 resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" ··· 3697 4084 resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 3698 4085 integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 3699 4086 3700 - js-yaml@^3.13.1: 4087 + js-yaml@^3.13.1, js-yaml@^3.9.1: 3701 4088 version "3.14.0" 3702 4089 resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 3703 4090 integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== ··· 3705 4092 argparse "^1.0.7" 3706 4093 esprima "^4.0.0" 3707 4094 4095 + jsbn@~0.1.0: 4096 + version "0.1.1" 4097 + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 4098 + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 4099 + 4100 + jsdom@^16.2.2: 4101 + version "16.4.0" 4102 + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb" 4103 + integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w== 4104 + dependencies: 4105 + abab "^2.0.3" 4106 + acorn "^7.1.1" 4107 + acorn-globals "^6.0.0" 4108 + cssom "^0.4.4" 4109 + cssstyle "^2.2.0" 4110 + data-urls "^2.0.0" 4111 + decimal.js "^10.2.0" 4112 + domexception "^2.0.1" 4113 + escodegen "^1.14.1" 4114 + html-encoding-sniffer "^2.0.1" 4115 + is-potential-custom-element-name "^1.0.0" 4116 + nwsapi "^2.2.0" 4117 + parse5 "5.1.1" 4118 + request "^2.88.2" 4119 + request-promise-native "^1.0.8" 4120 + saxes "^5.0.0" 4121 + symbol-tree "^3.2.4" 4122 + tough-cookie "^3.0.1" 4123 + w3c-hr-time "^1.0.2" 4124 + w3c-xmlserializer "^2.0.0" 4125 + webidl-conversions "^6.1.0" 4126 + whatwg-encoding "^1.0.5" 4127 + whatwg-mimetype "^2.3.0" 4128 + whatwg-url "^8.0.0" 4129 + ws "^7.2.3" 4130 + xml-name-validator "^3.0.0" 4131 + 3708 4132 jsesc@^2.5.1: 3709 4133 version "2.5.2" 3710 4134 resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" ··· 3715 4139 resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 3716 4140 integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 3717 4141 3718 - json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: 3719 - version "1.0.2" 3720 - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 3721 - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 4142 + json-parse-even-better-errors@^2.3.0: 4143 + version "2.3.1" 4144 + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 4145 + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 4146 + 4147 + json-schema-traverse@^0.3.0: 4148 + version "0.3.1" 4149 + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 4150 + integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= 3722 4151 3723 4152 json-schema-traverse@^0.4.1: 3724 4153 version "0.4.1" 3725 4154 resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 3726 4155 integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 3727 4156 4157 + json-schema@0.2.3: 4158 + version "0.2.3" 4159 + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 4160 + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= 4161 + 4162 + json-stable-stringify-without-jsonify@^1.0.1: 4163 + version "1.0.1" 4164 + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 4165 + integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 4166 + 4167 + json-stringify-safe@~5.0.1: 4168 + version "5.0.1" 4169 + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 4170 + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 4171 + 3728 4172 json5@^1.0.1: 3729 4173 version "1.0.1" 3730 4174 resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" ··· 3732 4176 dependencies: 3733 4177 minimist "^1.2.0" 3734 4178 3735 - json5@^2.1.0, json5@^2.1.2: 4179 + json5@^2.1.2: 3736 4180 version "2.1.3" 3737 4181 resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 3738 4182 integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== 3739 4183 dependencies: 3740 4184 minimist "^1.2.5" 3741 4185 3742 - jszip@^3.4.0: 3743 - version "3.4.0" 3744 - resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.4.0.tgz#1a69421fa5f0bb9bc222a46bca88182fba075350" 3745 - integrity sha512-gZAOYuPl4EhPTXT0GjhI3o+ZAz3su6EhLrKUoAivcKqyqC7laS5JEv4XWZND9BgcDcF83vI85yGbDmDR6UhrIg== 4186 + jsprim@^1.2.2: 4187 + version "1.4.1" 4188 + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 4189 + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= 3746 4190 dependencies: 3747 - lie "~3.3.0" 3748 - pako "~1.0.2" 3749 - readable-stream "~2.3.6" 3750 - set-immediate-shim "~1.0.1" 4191 + assert-plus "1.0.0" 4192 + extsprintf "1.3.0" 4193 + json-schema "0.2.3" 4194 + verror "1.10.0" 3751 4195 3752 4196 kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 3753 4197 version "3.2.2" ··· 3773 4217 resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 3774 4218 integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 3775 4219 4220 + kleur@^3.0.3: 4221 + version "3.0.3" 4222 + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 4223 + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 4224 + 3776 4225 leven@^3.1.0: 3777 4226 version "3.1.0" 3778 4227 resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" ··· 3785 4234 dependencies: 3786 4235 leven "^3.1.0" 3787 4236 3788 - lie@~3.3.0: 3789 - version "3.3.0" 3790 - resolved "https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz#dcf82dee545f46074daf200c7c1c5a08e0f40f6a" 3791 - integrity sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ== 4237 + levn@^0.3.0, levn@~0.3.0: 4238 + version "0.3.0" 4239 + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 4240 + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 3792 4241 dependencies: 3793 - immediate "~3.0.5" 4242 + prelude-ls "~1.1.2" 4243 + type-check "~0.3.2" 3794 4244 3795 4245 lines-and-columns@^1.1.6: 3796 4246 version "1.1.6" 3797 4247 resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 3798 4248 integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 3799 4249 3800 - loader-runner@^2.4.0: 3801 - version "2.4.0" 3802 - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" 3803 - integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== 3804 - 3805 - loader-utils@1.2.3: 3806 - version "1.2.3" 3807 - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" 3808 - integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== 3809 - dependencies: 3810 - big.js "^5.2.2" 3811 - emojis-list "^2.0.0" 3812 - json5 "^1.0.1" 3813 - 3814 - loader-utils@2.0.0, loader-utils@^2.0.0: 4250 + load-json-file@^2.0.0: 3815 4251 version "2.0.0" 3816 - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" 3817 - integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== 4252 + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 4253 + integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 3818 4254 dependencies: 3819 - big.js "^5.2.2" 3820 - emojis-list "^3.0.0" 3821 - json5 "^2.1.2" 3822 - 3823 - loader-utils@^1.1.0, loader-utils@^1.2.3: 3824 - version "1.4.0" 3825 - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" 3826 - integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== 3827 - dependencies: 3828 - big.js "^5.2.2" 3829 - emojis-list "^3.0.0" 3830 - json5 "^1.0.1" 4255 + graceful-fs "^4.1.2" 4256 + parse-json "^2.2.0" 4257 + pify "^2.0.0" 4258 + strip-bom "^3.0.0" 3831 4259 3832 4260 locate-path@^2.0.0: 3833 4261 version "2.0.0" ··· 3852 4280 dependencies: 3853 4281 p-locate "^4.1.0" 3854 4282 3855 - lodash.memoize@^4.1.2: 3856 - version "4.1.2" 3857 - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 3858 - integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= 4283 + lodash-es@^4.17.15: 4284 + version "4.17.15" 4285 + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.15.tgz#21bd96839354412f23d7a10340e5eac6ee455d78" 4286 + integrity sha512-rlrc3yU3+JNOpZ9zj5pQtxnx2THmvRykwL4Xlxoa8I9lHBlVbbyPhgyPMioxVZ4NqyxaVVtaJnzsyOidQIhyyQ== 3859 4287 3860 4288 lodash.sortby@^4.7.0: 3861 4289 version "4.7.0" 3862 4290 resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 3863 4291 integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= 3864 4292 3865 - lodash.uniq@^4.5.0: 3866 - version "4.5.0" 3867 - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 3868 - integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 4293 + lodash@4.17.19, lodash@^4.17.19, lodash@^4.17.4, lodash@^4.3.0: 4294 + version "4.17.19" 4295 + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" 4296 + integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== 3869 4297 3870 - lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.13: 3871 - version "4.17.20" 3872 - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 3873 - integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 4298 + lodash@^4.15.0: 4299 + version "4.17.15" 4300 + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 4301 + integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 3874 4302 3875 - loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: 4303 + loose-envify@^1.0.0, loose-envify@^1.4.0: 3876 4304 version "1.4.0" 3877 4305 resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 3878 4306 integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 3879 4307 dependencies: 3880 4308 js-tokens "^3.0.0 || ^4.0.0" 3881 4309 3882 - lru-cache@5.1.1, lru-cache@^5.1.1: 3883 - version "5.1.1" 3884 - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 3885 - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 4310 + lower-case@^1.1.1: 4311 + version "1.1.4" 4312 + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 4313 + integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= 4314 + 4315 + lru-cache@^4.0.1: 4316 + version "4.1.5" 4317 + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 4318 + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 4319 + dependencies: 4320 + pseudomap "^1.0.2" 4321 + yallist "^2.1.2" 4322 + 4323 + magic-string@0.25.7, magic-string@^0.25.2: 4324 + version "0.25.7" 4325 + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" 4326 + integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 3886 4327 dependencies: 3887 - yallist "^3.0.2" 4328 + sourcemap-codec "^1.4.4" 3888 4329 3889 - make-dir@^2.0.0: 4330 + make-dir@^2.0.0, make-dir@^2.1.0: 3890 4331 version "2.1.0" 3891 4332 resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 3892 4333 integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== ··· 3894 4335 pify "^4.0.1" 3895 4336 semver "^5.6.0" 3896 4337 3897 - make-dir@^3.0.2: 4338 + make-dir@^3.0.0: 3898 4339 version "3.1.0" 3899 4340 resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 3900 4341 integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 3901 4342 dependencies: 3902 4343 semver "^6.0.0" 3903 4344 4345 + makeerror@1.0.x: 4346 + version "1.0.11" 4347 + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 4348 + integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= 4349 + dependencies: 4350 + tmpl "1.0.x" 4351 + 3904 4352 map-cache@^0.2.2: 3905 4353 version "0.2.2" 3906 4354 resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" ··· 3912 4360 integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 3913 4361 dependencies: 3914 4362 object-visit "^1.0.0" 3915 - 3916 - md5.js@^1.3.4: 3917 - version "1.3.5" 3918 - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" 3919 - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== 3920 - dependencies: 3921 - hash-base "^3.0.0" 3922 - inherits "^2.0.1" 3923 - safe-buffer "^5.1.2" 3924 4363 3925 4364 mdn-data@2.0.4: 3926 4365 version "2.0.4" ··· 3932 4371 resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978" 3933 4372 integrity sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA== 3934 4373 3935 - memory-fs@^0.4.1: 3936 - version "0.4.1" 3937 - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 3938 - integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= 3939 - dependencies: 3940 - errno "^0.1.3" 3941 - readable-stream "^2.0.1" 3942 - 3943 - memory-fs@^0.5.0: 3944 - version "0.5.0" 3945 - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c" 3946 - integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== 3947 - dependencies: 3948 - errno "^0.1.3" 3949 - readable-stream "^2.0.1" 3950 - 3951 4374 merge-stream@^2.0.0: 3952 4375 version "2.0.0" 3953 4376 resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 3954 4377 integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 3955 - 3956 - microevent.ts@~0.1.1: 3957 - version "0.1.1" 3958 - resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0" 3959 - integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g== 3960 4378 3961 4379 micromatch@^3.1.10, micromatch@^3.1.4: 3962 4380 version "3.1.10" ··· 3977 4395 snapdragon "^0.8.1" 3978 4396 to-regex "^3.0.2" 3979 4397 3980 - miller-rabin@^4.0.0: 3981 - version "4.0.1" 3982 - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 3983 - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== 4398 + micromatch@^4.0.2: 4399 + version "4.0.2" 4400 + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 4401 + integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 3984 4402 dependencies: 3985 - bn.js "^4.0.0" 3986 - brorand "^1.0.1" 4403 + braces "^3.0.1" 4404 + picomatch "^2.0.5" 4405 + 4406 + mime-db@1.44.0: 4407 + version "1.44.0" 4408 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" 4409 + integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== 3987 4410 3988 - mini-css-extract-plugin@0.8.0: 3989 - version "0.8.0" 3990 - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.0.tgz#81d41ec4fe58c713a96ad7c723cdb2d0bd4d70e1" 3991 - integrity sha512-MNpRGbNA52q6U92i0qbVpQNsgk7LExy41MdAlG84FeytfDOtRIf/mCHdEgG8rpTKOaNKiqUnZdlptF469hxqOw== 4411 + mime-types@^2.1.12, mime-types@~2.1.19: 4412 + version "2.1.27" 4413 + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" 4414 + integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== 3992 4415 dependencies: 3993 - loader-utils "^1.1.0" 3994 - normalize-url "1.9.1" 3995 - schema-utils "^1.0.0" 3996 - webpack-sources "^1.1.0" 4416 + mime-db "1.44.0" 3997 4417 3998 - minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 3999 - version "1.0.1" 4000 - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 4001 - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 4418 + mimic-fn@^1.0.0: 4419 + version "1.2.0" 4420 + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 4421 + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 4002 4422 4003 - minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 4004 - version "1.0.1" 4005 - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 4006 - integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 4423 + mimic-fn@^2.1.0: 4424 + version "2.1.0" 4425 + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 4426 + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 4007 4427 4008 - minimatch@^3.0.4: 4428 + minimatch@^3.0.2, minimatch@^3.0.4: 4009 4429 version "3.0.4" 4010 4430 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 4011 4431 integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 4012 4432 dependencies: 4013 4433 brace-expansion "^1.1.7" 4014 4434 4015 - minimist@^1.2.0, minimist@^1.2.5: 4435 + minimist@1.x, minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: 4016 4436 version "1.2.5" 4017 4437 resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 4018 4438 integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 4019 4439 4020 - minipass-collect@^1.0.2: 4021 - version "1.0.2" 4022 - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" 4023 - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== 4024 - dependencies: 4025 - minipass "^3.0.0" 4026 - 4027 - minipass-flush@^1.0.5: 4028 - version "1.0.5" 4029 - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" 4030 - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== 4031 - dependencies: 4032 - minipass "^3.0.0" 4033 - 4034 - minipass-pipeline@^1.2.2: 4035 - version "1.2.3" 4036 - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34" 4037 - integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ== 4038 - dependencies: 4039 - minipass "^3.0.0" 4040 - 4041 - minipass@^3.0.0, minipass@^3.1.1: 4042 - version "3.1.3" 4043 - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" 4044 - integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg== 4045 - dependencies: 4046 - yallist "^4.0.0" 4047 - 4048 - mississippi@^3.0.0: 4049 - version "3.0.0" 4050 - resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" 4051 - integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== 4052 - dependencies: 4053 - concat-stream "^1.5.0" 4054 - duplexify "^3.4.2" 4055 - end-of-stream "^1.1.0" 4056 - flush-write-stream "^1.0.0" 4057 - from2 "^2.1.0" 4058 - parallel-transform "^1.1.0" 4059 - pump "^3.0.0" 4060 - pumpify "^1.3.3" 4061 - stream-each "^1.1.0" 4062 - through2 "^2.0.0" 4063 - 4064 4440 mixin-deep@^1.2.0: 4065 4441 version "1.3.2" 4066 4442 resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" ··· 4069 4445 for-in "^1.0.2" 4070 4446 is-extendable "^1.0.1" 4071 4447 4072 - mkdirp@0.5.3: 4073 - version "0.5.3" 4074 - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.3.tgz#5a514b7179259287952881e94410ec5465659f8c" 4075 - integrity sha512-P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg== 4076 - dependencies: 4077 - minimist "^1.2.5" 4448 + mkdirp@1.0.4: 4449 + version "1.0.4" 4450 + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 4451 + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 4078 4452 4079 - mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: 4453 + mkdirp@^0.5.1, mkdirp@~0.5.1: 4080 4454 version "0.5.5" 4081 4455 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 4082 4456 integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 4083 4457 dependencies: 4084 4458 minimist "^1.2.5" 4085 4459 4086 - move-concurrently@^1.0.1: 4087 - version "1.0.1" 4088 - resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" 4089 - integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= 4090 - dependencies: 4091 - aproba "^1.1.1" 4092 - copy-concurrently "^1.0.0" 4093 - fs-write-stream-atomic "^1.0.8" 4094 - mkdirp "^0.5.1" 4095 - rimraf "^2.5.4" 4096 - run-queue "^1.0.3" 4460 + moment@2.27.0: 4461 + version "2.27.0" 4462 + resolved "https://registry.yarnpkg.com/moment/-/moment-2.27.0.tgz#8bff4e3e26a236220dfe3e36de756b6ebaa0105d" 4463 + integrity sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ== 4097 4464 4098 4465 ms@2.0.0: 4099 4466 version "2.0.0" ··· 4105 4472 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 4106 4473 integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 4107 4474 4475 + mute-stream@0.0.7: 4476 + version "0.0.7" 4477 + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 4478 + integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 4479 + 4108 4480 nan@^2.12.1: 4109 4481 version "2.14.1" 4110 4482 resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" 4111 4483 integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== 4112 4484 4485 + nanoid@^3.0.1: 4486 + version "3.1.12" 4487 + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.12.tgz#6f7736c62e8d39421601e4a0c77623a97ea69654" 4488 + integrity sha512-1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A== 4489 + 4113 4490 nanomatch@^1.2.9: 4114 4491 version "1.2.13" 4115 4492 resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" ··· 4127 4504 snapdragon "^0.8.1" 4128 4505 to-regex "^3.0.1" 4129 4506 4130 - native-url@0.3.1: 4131 - version "0.3.1" 4132 - resolved "https://registry.yarnpkg.com/native-url/-/native-url-0.3.1.tgz#5045c65d0eb4c3ee548d48e3cb50797eec5a3c54" 4133 - integrity sha512-VL0XRW8nNBdSpxqZCbLJKrLHmIMn82FZ8pJzriJgyBmErjdEtrUX6eZAJbtHjlkMooEWUV+EtJ0D5tOP3+1Piw== 4507 + natural-compare@^1.4.0: 4508 + version "1.4.0" 4509 + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 4510 + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 4511 + 4512 + nice-try@^1.0.4: 4513 + version "1.0.5" 4514 + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 4515 + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 4516 + 4517 + no-case@^2.2.0: 4518 + version "2.3.2" 4519 + resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" 4520 + integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== 4134 4521 dependencies: 4135 - querystring "^0.2.0" 4522 + lower-case "^1.1.1" 4136 4523 4137 - neo-async@2.6.1, neo-async@^2.5.0, neo-async@^2.6.1: 4138 - version "2.6.1" 4139 - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 4140 - integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== 4524 + node-environment-flags@^1.0.5: 4525 + version "1.0.6" 4526 + resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.6.tgz#a30ac13621f6f7d674260a54dede048c3982c088" 4527 + integrity sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw== 4528 + dependencies: 4529 + object.getownpropertydescriptors "^2.0.3" 4530 + semver "^5.7.0" 4141 4531 4142 - next-tick@~1.0.0: 4532 + node-int64@^0.4.0: 4533 + version "0.4.0" 4534 + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 4535 + integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 4536 + 4537 + node-modules-regexp@^1.0.0: 4143 4538 version "1.0.0" 4144 - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 4145 - integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= 4539 + resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 4540 + integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 4146 4541 4147 - next@^9.4.4: 4148 - version "9.4.4" 4149 - resolved "https://registry.yarnpkg.com/next/-/next-9.4.4.tgz#02ad9fea7f7016b6b42fc83b67835e4a0dd0c99a" 4150 - integrity sha512-ZT8bU2SAv5jkFQ+y8py+Rl5RJRJ6DnZDS+VUnB1cIscmtmUhDi7LYED7pYm4MCKkYhPbEEM1Lbpo7fnoZJGWNQ== 4542 + node-notifier@^8.0.0: 4543 + version "8.0.0" 4544 + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.0.tgz#a7eee2d51da6d0f7ff5094bc7108c911240c1620" 4545 + integrity sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA== 4151 4546 dependencies: 4152 - "@ampproject/toolbox-optimizer" "2.4.0" 4153 - "@babel/code-frame" "7.8.3" 4154 - "@babel/core" "7.7.7" 4155 - "@babel/plugin-proposal-class-properties" "7.8.3" 4156 - "@babel/plugin-proposal-nullish-coalescing-operator" "7.8.3" 4157 - "@babel/plugin-proposal-numeric-separator" "7.8.3" 4158 - "@babel/plugin-proposal-object-rest-spread" "7.9.6" 4159 - "@babel/plugin-proposal-optional-chaining" "7.9.0" 4160 - "@babel/plugin-syntax-bigint" "7.8.3" 4161 - "@babel/plugin-syntax-dynamic-import" "7.8.3" 4162 - "@babel/plugin-transform-modules-commonjs" "7.9.6" 4163 - "@babel/plugin-transform-runtime" "7.9.6" 4164 - "@babel/preset-env" "7.9.6" 4165 - "@babel/preset-modules" "0.1.3" 4166 - "@babel/preset-react" "7.9.4" 4167 - "@babel/preset-typescript" "7.9.0" 4168 - "@babel/runtime" "7.9.6" 4169 - "@babel/types" "7.9.6" 4170 - "@next/react-dev-overlay" "9.4.4" 4171 - "@next/react-refresh-utils" "9.4.4" 4172 - babel-plugin-syntax-jsx "6.18.0" 4173 - babel-plugin-transform-define "2.0.0" 4174 - babel-plugin-transform-react-remove-prop-types "0.4.24" 4175 - browserslist "4.12.0" 4176 - cacache "13.0.1" 4177 - chokidar "2.1.8" 4178 - css-loader "3.5.3" 4179 - find-cache-dir "3.3.1" 4180 - fork-ts-checker-webpack-plugin "3.1.1" 4181 - jest-worker "24.9.0" 4182 - loader-utils "2.0.0" 4183 - mini-css-extract-plugin "0.8.0" 4184 - mkdirp "0.5.3" 4185 - native-url "0.3.1" 4186 - neo-async "2.6.1" 4187 - pnp-webpack-plugin "1.6.4" 4188 - postcss "7.0.29" 4189 - prop-types "15.7.2" 4190 - prop-types-exact "1.2.0" 4191 - react-is "16.13.1" 4192 - react-refresh "0.8.3" 4193 - resolve-url-loader "3.1.1" 4194 - sass-loader "8.0.2" 4195 - schema-utils "2.6.6" 4196 - style-loader "1.2.1" 4197 - styled-jsx "3.3.0" 4198 - use-subscription "1.4.1" 4199 - watchpack "2.0.0-beta.13" 4200 - web-vitals "0.2.1" 4201 - webpack "4.43.0" 4202 - webpack-sources "1.4.3" 4547 + growly "^1.3.0" 4548 + is-wsl "^2.2.0" 4549 + semver "^7.3.2" 4550 + shellwords "^0.1.1" 4551 + uuid "^8.3.0" 4552 + which "^2.0.2" 4203 4553 4204 - node-fetch@2.6.0: 4205 - version "2.6.0" 4206 - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" 4207 - integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== 4554 + node-releases@^1.1.58: 4555 + version "1.1.60" 4556 + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084" 4557 + integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA== 4208 4558 4209 - node-libs-browser@^2.2.1: 4210 - version "2.2.1" 4211 - resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" 4212 - integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== 4559 + normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: 4560 + version "2.5.0" 4561 + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 4562 + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 4213 4563 dependencies: 4214 - assert "^1.1.1" 4215 - browserify-zlib "^0.2.0" 4216 - buffer "^4.3.0" 4217 - console-browserify "^1.1.0" 4218 - constants-browserify "^1.0.0" 4219 - crypto-browserify "^3.11.0" 4220 - domain-browser "^1.1.1" 4221 - events "^3.0.0" 4222 - https-browserify "^1.0.0" 4223 - os-browserify "^0.3.0" 4224 - path-browserify "0.0.1" 4225 - process "^0.11.10" 4226 - punycode "^1.2.4" 4227 - querystring-es3 "^0.2.0" 4228 - readable-stream "^2.3.3" 4229 - stream-browserify "^2.0.1" 4230 - stream-http "^2.7.2" 4231 - string_decoder "^1.0.0" 4232 - timers-browserify "^2.0.4" 4233 - tty-browserify "0.0.0" 4234 - url "^0.11.0" 4235 - util "^0.11.0" 4236 - vm-browserify "^1.0.1" 4237 - 4238 - node-releases@^1.1.53: 4239 - version "1.1.58" 4240 - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.58.tgz#8ee20eef30fa60e52755fcc0942def5a734fe935" 4241 - integrity sha512-NxBudgVKiRh/2aPWMgPR7bPTX0VPmGx5QBwCtdHitnqFE5/O8DeBXuIMH1nwNnw/aMo6AjOrpsHzfY3UbUJ7yg== 4242 - 4243 - normalize-html-whitespace@1.0.0: 4244 - version "1.0.0" 4245 - resolved "https://registry.yarnpkg.com/normalize-html-whitespace/-/normalize-html-whitespace-1.0.0.tgz#5e3c8e192f1b06c3b9eee4b7e7f28854c7601e34" 4246 - integrity sha512-9ui7CGtOOlehQu0t/OhhlmDyc71mKVlv+4vF+me4iZLPrNtRL2xoquEdfZxasC/bdQi/Hr3iTrpyRKIG+ocabA== 4564 + hosted-git-info "^2.1.4" 4565 + resolve "^1.10.0" 4566 + semver "2 || 3 || 4 || 5" 4567 + validate-npm-package-license "^3.0.1" 4247 4568 4248 4569 normalize-path@^2.1.1: 4249 4570 version "2.1.1" ··· 4252 4573 dependencies: 4253 4574 remove-trailing-separator "^1.0.1" 4254 4575 4255 - normalize-path@^3.0.0, normalize-path@~3.0.0: 4576 + normalize-path@^3.0.0: 4256 4577 version "3.0.0" 4257 4578 resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 4258 4579 integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 4259 4580 4260 - normalize-url@1.9.1: 4261 - version "1.9.1" 4262 - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 4263 - integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw= 4581 + npm-run-path@^2.0.0: 4582 + version "2.0.2" 4583 + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 4584 + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 4264 4585 dependencies: 4265 - object-assign "^4.0.1" 4266 - prepend-http "^1.0.0" 4267 - query-string "^4.1.0" 4268 - sort-keys "^1.0.0" 4586 + path-key "^2.0.0" 4269 4587 4270 - normalize-url@^3.0.0: 4271 - version "3.3.0" 4272 - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" 4273 - integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== 4588 + npm-run-path@^4.0.0: 4589 + version "4.0.1" 4590 + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 4591 + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 4592 + dependencies: 4593 + path-key "^3.0.0" 4274 4594 4275 4595 nth-check@^1.0.2, nth-check@~1.0.1: 4276 4596 version "1.0.2" ··· 4279 4599 dependencies: 4280 4600 boolbase "~1.0.0" 4281 4601 4282 - object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 4602 + nwsapi@^2.2.0: 4603 + version "2.2.0" 4604 + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 4605 + integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 4606 + 4607 + oauth-sign@~0.9.0: 4608 + version "0.9.0" 4609 + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 4610 + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== 4611 + 4612 + object-assign@^4.0.1, object-assign@^4.1.1: 4283 4613 version "4.1.1" 4284 4614 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 4285 4615 integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= ··· 4294 4624 kind-of "^3.0.3" 4295 4625 4296 4626 object-inspect@^1.7.0: 4297 - version "1.7.0" 4298 - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" 4299 - integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== 4627 + version "1.8.0" 4628 + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 4629 + integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 4300 4630 4301 4631 object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 4302 4632 version "1.1.1" 4303 4633 resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 4304 4634 integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 4305 4635 4306 - object-path@0.11.4: 4307 - version "0.11.4" 4308 - resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.11.4.tgz#370ae752fbf37de3ea70a861c23bba8915691949" 4309 - integrity sha1-NwrnUvvzfePqcKhhwju6iRVpGUk= 4310 - 4311 4636 object-visit@^1.0.0: 4312 4637 version "1.0.1" 4313 4638 resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" ··· 4325 4650 has-symbols "^1.0.0" 4326 4651 object-keys "^1.0.11" 4327 4652 4328 - object.getownpropertydescriptors@^2.1.0: 4653 + object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: 4329 4654 version "2.1.0" 4330 4655 resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" 4331 4656 integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== ··· 4340 4665 dependencies: 4341 4666 isobject "^3.0.1" 4342 4667 4343 - object.values@^1.1.0: 4668 + object.values@^1.1.0, object.values@^1.1.1: 4344 4669 version "1.1.1" 4345 4670 resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 4346 4671 integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== ··· 4357 4682 dependencies: 4358 4683 wrappy "1" 4359 4684 4360 - os-browserify@^0.3.0: 4361 - version "0.3.0" 4362 - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 4363 - integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= 4685 + onetime@^2.0.0: 4686 + version "2.0.1" 4687 + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 4688 + integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 4689 + dependencies: 4690 + mimic-fn "^1.0.0" 4691 + 4692 + onetime@^5.1.0: 4693 + version "5.1.2" 4694 + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 4695 + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 4696 + dependencies: 4697 + mimic-fn "^2.1.0" 4698 + 4699 + open@^7.0.3: 4700 + version "7.1.0" 4701 + resolved "https://registry.yarnpkg.com/open/-/open-7.1.0.tgz#68865f7d3cb238520fa1225a63cf28bcf8368a1c" 4702 + integrity sha512-lLPI5KgOwEYCDKXf4np7y1PBEkj7HYIyP2DY8mVDRnx0VIIu6bNrRB0R66TuO7Mack6EnTNLm4uvcl1UoklTpA== 4703 + dependencies: 4704 + is-docker "^2.0.0" 4705 + is-wsl "^2.1.1" 4706 + 4707 + optionator@^0.8.1, optionator@^0.8.2: 4708 + version "0.8.3" 4709 + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 4710 + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 4711 + dependencies: 4712 + deep-is "~0.1.3" 4713 + fast-levenshtein "~2.0.6" 4714 + levn "~0.3.0" 4715 + prelude-ls "~1.1.2" 4716 + type-check "~0.3.2" 4717 + word-wrap "~1.2.3" 4718 + 4719 + os-tmpdir@~1.0.2: 4720 + version "1.0.2" 4721 + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 4722 + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 4723 + 4724 + p-each-series@^2.1.0: 4725 + version "2.1.0" 4726 + resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48" 4727 + integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ== 4728 + 4729 + p-finally@^1.0.0: 4730 + version "1.0.0" 4731 + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 4732 + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 4364 4733 4365 4734 p-limit@^1.1.0: 4366 4735 version "1.3.0" ··· 4397 4766 dependencies: 4398 4767 p-limit "^2.2.0" 4399 4768 4400 - p-map@^3.0.0: 4401 - version "3.0.0" 4402 - resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" 4403 - integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== 4404 - dependencies: 4405 - aggregate-error "^3.0.0" 4406 - 4407 4769 p-try@^1.0.0: 4408 4770 version "1.0.0" 4409 4771 resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" ··· 4414 4776 resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 4415 4777 integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 4416 4778 4417 - pako@~1.0.2, pako@~1.0.5: 4418 - version "1.0.11" 4419 - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" 4420 - integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== 4779 + package-name-regex@1.0.8: 4780 + version "1.0.8" 4781 + resolved "https://registry.yarnpkg.com/package-name-regex/-/package-name-regex-1.0.8.tgz#4b8388cace6cc415f462ab4a269583d9a2d9f131" 4782 + integrity sha512-g3vB2J62dLqf4m50VM4tJUC4sixw3JB+Igd0cF3P/gJhAvmvsmFEV2eWZTeLbwfkKEWTf3+gwQ2C6JFFRxWHEQ== 4421 4783 4422 - parallel-transform@^1.1.0: 4423 - version "1.2.0" 4424 - resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" 4425 - integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== 4784 + param-case@2.1.x: 4785 + version "2.1.1" 4786 + resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" 4787 + integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc= 4426 4788 dependencies: 4427 - cyclist "^1.0.1" 4428 - inherits "^2.0.3" 4429 - readable-stream "^2.1.5" 4430 - 4431 - parent-module@^1.0.0: 4432 - version "1.0.1" 4433 - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 4434 - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 4435 - dependencies: 4436 - callsites "^3.0.0" 4437 - 4438 - parse-asn1@^5.0.0, parse-asn1@^5.1.5: 4439 - version "5.1.5" 4440 - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" 4441 - integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== 4442 - dependencies: 4443 - asn1.js "^4.0.0" 4444 - browserify-aes "^1.0.0" 4445 - create-hash "^1.1.0" 4446 - evp_bytestokey "^1.0.0" 4447 - pbkdf2 "^3.0.3" 4448 - safe-buffer "^5.1.1" 4789 + no-case "^2.2.0" 4449 4790 4450 - parse-json@^4.0.0: 4451 - version "4.0.0" 4452 - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 4453 - integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 4791 + parse-json@^2.2.0: 4792 + version "2.2.0" 4793 + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 4794 + integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 4454 4795 dependencies: 4455 - error-ex "^1.3.1" 4456 - json-parse-better-errors "^1.0.1" 4796 + error-ex "^1.2.0" 4457 4797 4458 4798 parse-json@^5.0.0: 4459 - version "5.0.0" 4460 - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" 4461 - integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== 4799 + version "5.1.0" 4800 + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" 4801 + integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== 4462 4802 dependencies: 4463 4803 "@babel/code-frame" "^7.0.0" 4464 4804 error-ex "^1.3.1" 4465 - json-parse-better-errors "^1.0.1" 4805 + json-parse-even-better-errors "^2.3.0" 4466 4806 lines-and-columns "^1.1.6" 4467 4807 4808 + parse-passwd@^1.0.0: 4809 + version "1.0.0" 4810 + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 4811 + integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= 4812 + 4813 + parse5@5.1.1: 4814 + version "5.1.1" 4815 + resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" 4816 + integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== 4817 + 4468 4818 parse5@^3.0.1: 4469 4819 version "3.0.3" 4470 4820 resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" ··· 4476 4826 version "0.1.1" 4477 4827 resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 4478 4828 integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 4479 - 4480 - path-browserify@0.0.1: 4481 - version "0.0.1" 4482 - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" 4483 - integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== 4484 4829 4485 4830 path-dirname@^1.0.0: 4486 4831 version "1.0.2" ··· 4502 4847 resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 4503 4848 integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 4504 4849 4850 + path-is-inside@^1.0.2: 4851 + version "1.0.2" 4852 + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 4853 + integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 4854 + 4855 + path-key@^2.0.0, path-key@^2.0.1: 4856 + version "2.0.1" 4857 + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 4858 + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 4859 + 4860 + path-key@^3.0.0, path-key@^3.1.0: 4861 + version "3.1.1" 4862 + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 4863 + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 4864 + 4505 4865 path-parse@^1.0.6: 4506 4866 version "1.0.6" 4507 4867 resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 4508 4868 integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 4509 4869 4510 - path-type@^4.0.0: 4511 - version "4.0.0" 4512 - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 4513 - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 4870 + path-type@^2.0.0: 4871 + version "2.0.0" 4872 + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 4873 + integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 4874 + dependencies: 4875 + pify "^2.0.0" 4514 4876 4515 - pbkdf2@^3.0.3: 4516 - version "3.1.1" 4517 - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94" 4518 - integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg== 4519 - dependencies: 4520 - create-hash "^1.1.2" 4521 - create-hmac "^1.1.4" 4522 - ripemd160 "^2.0.1" 4523 - safe-buffer "^5.0.1" 4524 - sha.js "^2.4.8" 4877 + performance-now@^2.1.0: 4878 + version "2.1.0" 4879 + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 4880 + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 4525 4881 4526 - picomatch@^2.0.4, picomatch@^2.2.1: 4882 + picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.2: 4527 4883 version "2.2.2" 4528 4884 resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 4529 4885 integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 4886 + 4887 + pify@^2.0.0: 4888 + version "2.3.0" 4889 + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 4890 + integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 4530 4891 4531 4892 pify@^4.0.1: 4532 4893 version "4.0.1" 4533 4894 resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 4534 4895 integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 4535 4896 4897 + pirates@^4.0.0, pirates@^4.0.1: 4898 + version "4.0.1" 4899 + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" 4900 + integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== 4901 + dependencies: 4902 + node-modules-regexp "^1.0.0" 4903 + 4904 + pkg-dir@^2.0.0: 4905 + version "2.0.0" 4906 + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 4907 + integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 4908 + dependencies: 4909 + find-up "^2.1.0" 4910 + 4536 4911 pkg-dir@^3.0.0: 4537 4912 version "3.0.0" 4538 4913 resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" ··· 4540 4915 dependencies: 4541 4916 find-up "^3.0.0" 4542 4917 4543 - pkg-dir@^4.1.0: 4918 + pkg-dir@^4.2.0: 4544 4919 version "4.2.0" 4545 4920 resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 4546 4921 integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 4547 4922 dependencies: 4548 4923 find-up "^4.0.0" 4549 4924 4550 - pkg-up@^2.0.0: 4551 - version "2.0.0" 4552 - resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" 4553 - integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= 4554 - dependencies: 4555 - find-up "^2.1.0" 4556 - 4557 - platform@1.3.3: 4558 - version "1.3.3" 4559 - resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.3.tgz#646c77011899870b6a0903e75e997e8e51da7461" 4560 - integrity sha1-ZGx3ARiZhwtqCQPnXpl+jlHadGE= 4561 - 4562 - pnp-webpack-plugin@1.6.4: 4563 - version "1.6.4" 4564 - resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" 4565 - integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg== 4566 - dependencies: 4567 - ts-pnp "^1.1.6" 4568 - 4569 - popper.js@^1.15.0: 4570 - version "1.16.1" 4571 - resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" 4572 - integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== 4925 + pluralize@^7.0.0: 4926 + version "7.0.0" 4927 + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 4928 + integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== 4573 4929 4574 4930 posix-character-classes@^0.1.0: 4575 4931 version "0.1.1" 4576 4932 resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 4577 4933 integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 4578 4934 4579 - postcss-calc@^7.0.1: 4580 - version "7.0.2" 4581 - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1" 4582 - integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== 4583 - dependencies: 4584 - postcss "^7.0.27" 4585 - postcss-selector-parser "^6.0.2" 4586 - postcss-value-parser "^4.0.2" 4587 - 4588 - postcss-colormin@^4.0.3: 4589 - version "4.0.3" 4590 - resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" 4591 - integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== 4592 - dependencies: 4593 - browserslist "^4.0.0" 4594 - color "^3.0.0" 4595 - has "^1.0.0" 4596 - postcss "^7.0.0" 4597 - postcss-value-parser "^3.0.0" 4598 - 4599 - postcss-convert-values@^4.0.1: 4600 - version "4.0.1" 4601 - resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" 4602 - integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== 4603 - dependencies: 4604 - postcss "^7.0.0" 4605 - postcss-value-parser "^3.0.0" 4606 - 4607 - postcss-discard-comments@^4.0.2: 4608 - version "4.0.2" 4609 - resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" 4610 - integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== 4611 - dependencies: 4612 - postcss "^7.0.0" 4613 - 4614 - postcss-discard-duplicates@^4.0.2: 4615 - version "4.0.2" 4616 - resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" 4617 - integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== 4618 - dependencies: 4619 - postcss "^7.0.0" 4620 - 4621 - postcss-discard-empty@^4.0.1: 4622 - version "4.0.1" 4623 - resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" 4624 - integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== 4625 - dependencies: 4626 - postcss "^7.0.0" 4627 - 4628 - postcss-discard-overridden@^4.0.1: 4629 - version "4.0.1" 4630 - resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" 4631 - integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== 4632 - dependencies: 4633 - postcss "^7.0.0" 4634 - 4635 - postcss-merge-longhand@^4.0.11: 4636 - version "4.0.11" 4637 - resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" 4638 - integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== 4639 - dependencies: 4640 - css-color-names "0.0.4" 4641 - postcss "^7.0.0" 4642 - postcss-value-parser "^3.0.0" 4643 - stylehacks "^4.0.0" 4644 - 4645 - postcss-merge-rules@^4.0.3: 4646 - version "4.0.3" 4647 - resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" 4648 - integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== 4649 - dependencies: 4650 - browserslist "^4.0.0" 4651 - caniuse-api "^3.0.0" 4652 - cssnano-util-same-parent "^4.0.0" 4653 - postcss "^7.0.0" 4654 - postcss-selector-parser "^3.0.0" 4655 - vendors "^1.0.0" 4656 - 4657 - postcss-minify-font-values@^4.0.2: 4658 - version "4.0.2" 4659 - resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" 4660 - integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== 4661 - dependencies: 4662 - postcss "^7.0.0" 4663 - postcss-value-parser "^3.0.0" 4664 - 4665 - postcss-minify-gradients@^4.0.2: 4666 - version "4.0.2" 4667 - resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" 4668 - integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== 4669 - dependencies: 4670 - cssnano-util-get-arguments "^4.0.0" 4671 - is-color-stop "^1.0.0" 4672 - postcss "^7.0.0" 4673 - postcss-value-parser "^3.0.0" 4674 - 4675 - postcss-minify-params@^4.0.2: 4676 - version "4.0.2" 4677 - resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" 4678 - integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== 4679 - dependencies: 4680 - alphanum-sort "^1.0.0" 4681 - browserslist "^4.0.0" 4682 - cssnano-util-get-arguments "^4.0.0" 4683 - postcss "^7.0.0" 4684 - postcss-value-parser "^3.0.0" 4685 - uniqs "^2.0.0" 4686 - 4687 - postcss-minify-selectors@^4.0.2: 4688 - version "4.0.2" 4689 - resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" 4690 - integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== 4691 - dependencies: 4692 - alphanum-sort "^1.0.0" 4693 - has "^1.0.0" 4694 - postcss "^7.0.0" 4695 - postcss-selector-parser "^3.0.0" 4696 - 4697 - postcss-modules-extract-imports@^2.0.0: 4698 - version "2.0.0" 4699 - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" 4700 - integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== 4701 - dependencies: 4702 - postcss "^7.0.5" 4703 - 4704 - postcss-modules-local-by-default@^3.0.2: 4705 - version "3.0.2" 4706 - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915" 4707 - integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ== 4708 - dependencies: 4709 - icss-utils "^4.1.1" 4710 - postcss "^7.0.16" 4711 - postcss-selector-parser "^6.0.2" 4712 - postcss-value-parser "^4.0.0" 4713 - 4714 - postcss-modules-scope@^2.2.0: 4715 - version "2.2.0" 4716 - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" 4717 - integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== 4718 - dependencies: 4719 - postcss "^7.0.6" 4720 - postcss-selector-parser "^6.0.0" 4721 - 4722 - postcss-modules-values@^3.0.0: 4723 - version "3.0.0" 4724 - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" 4725 - integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== 4726 - dependencies: 4727 - icss-utils "^4.0.0" 4728 - postcss "^7.0.6" 4729 - 4730 - postcss-normalize-charset@^4.0.1: 4731 - version "4.0.1" 4732 - resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" 4733 - integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== 4734 - dependencies: 4735 - postcss "^7.0.0" 4736 - 4737 - postcss-normalize-display-values@^4.0.2: 4738 - version "4.0.2" 4739 - resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" 4740 - integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== 4741 - dependencies: 4742 - cssnano-util-get-match "^4.0.0" 4743 - postcss "^7.0.0" 4744 - postcss-value-parser "^3.0.0" 4745 - 4746 - postcss-normalize-positions@^4.0.2: 4747 - version "4.0.2" 4748 - resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" 4749 - integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== 4750 - dependencies: 4751 - cssnano-util-get-arguments "^4.0.0" 4752 - has "^1.0.0" 4753 - postcss "^7.0.0" 4754 - postcss-value-parser "^3.0.0" 4755 - 4756 - postcss-normalize-repeat-style@^4.0.2: 4757 - version "4.0.2" 4758 - resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" 4759 - integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== 4760 - dependencies: 4761 - cssnano-util-get-arguments "^4.0.0" 4762 - cssnano-util-get-match "^4.0.0" 4763 - postcss "^7.0.0" 4764 - postcss-value-parser "^3.0.0" 4765 - 4766 - postcss-normalize-string@^4.0.2: 4767 - version "4.0.2" 4768 - resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" 4769 - integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== 4770 - dependencies: 4771 - has "^1.0.0" 4772 - postcss "^7.0.0" 4773 - postcss-value-parser "^3.0.0" 4774 - 4775 - postcss-normalize-timing-functions@^4.0.2: 4776 - version "4.0.2" 4777 - resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" 4778 - integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== 4779 - dependencies: 4780 - cssnano-util-get-match "^4.0.0" 4781 - postcss "^7.0.0" 4782 - postcss-value-parser "^3.0.0" 4783 - 4784 - postcss-normalize-unicode@^4.0.1: 4785 - version "4.0.1" 4786 - resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" 4787 - integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== 4788 - dependencies: 4789 - browserslist "^4.0.0" 4790 - postcss "^7.0.0" 4791 - postcss-value-parser "^3.0.0" 4792 - 4793 - postcss-normalize-url@^4.0.1: 4794 - version "4.0.1" 4795 - resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" 4796 - integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== 4797 - dependencies: 4798 - is-absolute-url "^2.0.0" 4799 - normalize-url "^3.0.0" 4800 - postcss "^7.0.0" 4801 - postcss-value-parser "^3.0.0" 4802 - 4803 - postcss-normalize-whitespace@^4.0.2: 4804 - version "4.0.2" 4805 - resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" 4806 - integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== 4807 - dependencies: 4808 - postcss "^7.0.0" 4809 - postcss-value-parser "^3.0.0" 4810 - 4811 - postcss-ordered-values@^4.1.2: 4812 - version "4.1.2" 4813 - resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" 4814 - integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== 4815 - dependencies: 4816 - cssnano-util-get-arguments "^4.0.0" 4817 - postcss "^7.0.0" 4818 - postcss-value-parser "^3.0.0" 4819 - 4820 - postcss-reduce-initial@^4.0.3: 4821 - version "4.0.3" 4822 - resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" 4823 - integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== 4824 - dependencies: 4825 - browserslist "^4.0.0" 4826 - caniuse-api "^3.0.0" 4827 - has "^1.0.0" 4828 - postcss "^7.0.0" 4829 - 4830 - postcss-reduce-transforms@^4.0.2: 4831 - version "4.0.2" 4832 - resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" 4833 - integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== 4834 - dependencies: 4835 - cssnano-util-get-match "^4.0.0" 4836 - has "^1.0.0" 4837 - postcss "^7.0.0" 4838 - postcss-value-parser "^3.0.0" 4935 + prelude-ls@~1.1.2: 4936 + version "1.1.2" 4937 + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 4938 + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 4839 4939 4840 - postcss-safe-parser@4.0.2: 4841 - version "4.0.2" 4842 - resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96" 4843 - integrity sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g== 4844 - dependencies: 4845 - postcss "^7.0.26" 4940 + prettier@^1.8.2: 4941 + version "1.19.1" 4942 + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" 4943 + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== 4846 4944 4847 - postcss-selector-parser@^3.0.0: 4848 - version "3.1.2" 4849 - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" 4850 - integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== 4945 + pretty-format@^26.4.2: 4946 + version "26.4.2" 4947 + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.4.2.tgz#d081d032b398e801e2012af2df1214ef75a81237" 4948 + integrity sha512-zK6Gd8zDsEiVydOCGLkoBoZuqv8VTiHyAbKznXe/gaph/DAeZOmit9yMfgIz5adIgAMMs5XfoYSwAX3jcCO1tA== 4851 4949 dependencies: 4852 - dot-prop "^5.2.0" 4853 - indexes-of "^1.0.1" 4854 - uniq "^1.0.1" 4950 + "@jest/types" "^26.3.0" 4951 + ansi-regex "^5.0.0" 4952 + ansi-styles "^4.0.0" 4953 + react-is "^16.12.0" 4855 4954 4856 - postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: 4857 - version "6.0.2" 4858 - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" 4859 - integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== 4860 - dependencies: 4861 - cssesc "^3.0.0" 4862 - indexes-of "^1.0.1" 4863 - uniq "^1.0.1" 4864 - 4865 - postcss-svgo@^4.0.2: 4866 - version "4.0.2" 4867 - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" 4868 - integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== 4869 - dependencies: 4870 - is-svg "^3.0.0" 4871 - postcss "^7.0.0" 4872 - postcss-value-parser "^3.0.0" 4873 - svgo "^1.0.0" 4874 - 4875 - postcss-unique-selectors@^4.0.1: 4876 - version "4.0.1" 4877 - resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" 4878 - integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== 4879 - dependencies: 4880 - alphanum-sort "^1.0.0" 4881 - postcss "^7.0.0" 4882 - uniqs "^2.0.0" 4883 - 4884 - postcss-value-parser@^3.0.0: 4885 - version "3.3.1" 4886 - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" 4887 - integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== 4888 - 4889 - postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.0.3: 4890 - version "4.1.0" 4891 - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 4892 - integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 4893 - 4894 - postcss@7.0.21: 4895 - version "7.0.21" 4896 - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.21.tgz#06bb07824c19c2021c5d056d5b10c35b989f7e17" 4897 - integrity sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ== 4898 - dependencies: 4899 - chalk "^2.4.2" 4900 - source-map "^0.6.1" 4901 - supports-color "^6.1.0" 4902 - 4903 - postcss@7.0.29: 4904 - version "7.0.29" 4905 - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.29.tgz#d3a903872bd52280b83bce38cdc83ce55c06129e" 4906 - integrity sha512-ba0ApvR3LxGvRMMiUa9n0WR4HjzcYm7tS+ht4/2Nd0NLtHpPIH77fuB9Xh1/yJVz9O/E/95Y/dn8ygWsyffXtw== 4907 - dependencies: 4908 - chalk "^2.4.2" 4909 - source-map "^0.6.1" 4910 - supports-color "^6.1.0" 4911 - 4912 - postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6: 4913 - version "7.0.32" 4914 - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d" 4915 - integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw== 4916 - dependencies: 4917 - chalk "^2.4.2" 4918 - source-map "^0.6.1" 4919 - supports-color "^6.1.0" 4920 - 4921 - prepend-http@^1.0.0: 4922 - version "1.0.4" 4923 - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 4924 - integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= 4925 - 4926 - prettier@^2.0.5: 4927 - version "2.0.5" 4928 - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" 4929 - integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== 4930 - 4931 - private@^0.1.8: 4932 - version "0.1.8" 4933 - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 4934 - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== 4935 - 4936 - process-nextick-args@~2.0.0: 4955 + process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: 4937 4956 version "2.0.1" 4938 4957 resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 4939 4958 integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 4940 4959 4941 - process@^0.11.10: 4942 - version "0.11.10" 4943 - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 4944 - integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= 4945 - 4946 - promise-inflight@^1.0.1: 4947 - version "1.0.1" 4948 - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 4949 - integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= 4960 + progress@^2.0.0: 4961 + version "2.0.3" 4962 + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 4963 + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 4950 4964 4951 - prop-types-exact@1.2.0: 4952 - version "1.2.0" 4953 - resolved "https://registry.yarnpkg.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz#825d6be46094663848237e3925a98c6e944e9869" 4954 - integrity sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA== 4965 + prompts@^2.0.1: 4966 + version "2.3.2" 4967 + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" 4968 + integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA== 4955 4969 dependencies: 4956 - has "^1.0.3" 4957 - object.assign "^4.1.0" 4958 - reflect.ownkeys "^0.2.0" 4970 + kleur "^3.0.3" 4971 + sisteransi "^1.0.4" 4959 4972 4960 - prop-types@15.7.2, prop-types@^15.5.8, prop-types@^15.6.1, prop-types@^15.6.2: 4973 + prop-types@^15.7.2: 4961 4974 version "15.7.2" 4962 4975 resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 4963 4976 integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== ··· 4966 4979 object-assign "^4.1.1" 4967 4980 react-is "^16.8.1" 4968 4981 4969 - prr@~1.0.1: 4970 - version "1.0.1" 4971 - resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 4972 - integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= 4982 + pseudomap@^1.0.2: 4983 + version "1.0.2" 4984 + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 4985 + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 4973 4986 4974 - public-encrypt@^4.0.0: 4975 - version "4.0.3" 4976 - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" 4977 - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== 4978 - dependencies: 4979 - bn.js "^4.1.0" 4980 - browserify-rsa "^4.0.0" 4981 - create-hash "^1.1.0" 4982 - parse-asn1 "^5.0.0" 4983 - randombytes "^2.0.1" 4984 - safe-buffer "^5.1.2" 4985 - 4986 - pump@^2.0.0: 4987 - version "2.0.1" 4988 - resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 4989 - integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== 4990 - dependencies: 4991 - end-of-stream "^1.1.0" 4992 - once "^1.3.1" 4987 + psl@^1.1.28: 4988 + version "1.8.0" 4989 + resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 4990 + integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 4993 4991 4994 4992 pump@^3.0.0: 4995 4993 version "3.0.0" ··· 4999 4997 end-of-stream "^1.1.0" 5000 4998 once "^1.3.1" 5001 4999 5002 - pumpify@^1.3.3: 5003 - version "1.5.1" 5004 - resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" 5005 - integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== 5006 - dependencies: 5007 - duplexify "^3.6.0" 5008 - inherits "^2.0.3" 5009 - pump "^2.0.0" 5010 - 5011 - punycode@1.3.2: 5012 - version "1.3.2" 5013 - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 5014 - integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= 5015 - 5016 - punycode@^1.2.4: 5017 - version "1.4.1" 5018 - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 5019 - integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 5020 - 5021 - punycode@^2.1.0: 5000 + punycode@^2.1.0, punycode@^2.1.1: 5022 5001 version "2.1.1" 5023 5002 resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 5024 5003 integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 5025 5004 5005 + pupa@^2.0.0: 5006 + version "2.0.1" 5007 + resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.0.1.tgz#dbdc9ff48ffbea4a26a069b6f9f7abb051008726" 5008 + integrity sha512-hEJH0s8PXLY/cdXh66tNEQGndDrIKNqNC5xmrysZy3i5C3oEoLna7YAOad+7u125+zH1HNXUmGEkrhb3c2VriA== 5009 + dependencies: 5010 + escape-goat "^2.0.0" 5011 + 5026 5012 q@^1.1.2: 5027 5013 version "1.5.1" 5028 5014 resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 5029 5015 integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 5030 5016 5031 - query-string@^4.1.0: 5032 - version "4.3.4" 5033 - resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" 5034 - integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= 5035 - dependencies: 5036 - object-assign "^4.1.0" 5037 - strict-uri-encode "^1.0.0" 5038 - 5039 - query-string@^6.13.0: 5040 - version "6.13.1" 5041 - resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.13.1.tgz#d913ccfce3b4b3a713989fe6d39466d92e71ccad" 5042 - integrity sha512-RfoButmcK+yCta1+FuU8REvisx1oEzhMKwhLUNcepQTPGcNMp1sIqjnfCtfnvGSQZQEhaBHvccujtWoUV3TTbA== 5043 - dependencies: 5044 - decode-uri-component "^0.2.0" 5045 - split-on-first "^1.0.0" 5046 - strict-uri-encode "^2.0.0" 5047 - 5048 - querystring-es3@^0.2.0: 5049 - version "0.2.1" 5050 - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 5051 - integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= 5017 + qs@~6.5.2: 5018 + version "6.5.2" 5019 + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 5020 + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 5052 5021 5053 - querystring@0.2.0, querystring@^0.2.0: 5054 - version "0.2.0" 5055 - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 5056 - integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= 5022 + react-is@^16.12.0, react-is@^16.8.1: 5023 + version "16.13.1" 5024 + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 5025 + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 5057 5026 5058 - randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: 5059 - version "2.1.0" 5060 - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 5061 - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 5027 + read-pkg-up@^2.0.0: 5028 + version "2.0.0" 5029 + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 5030 + integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 5062 5031 dependencies: 5063 - safe-buffer "^5.1.0" 5032 + find-up "^2.0.0" 5033 + read-pkg "^2.0.0" 5064 5034 5065 - randomfill@^1.0.3: 5066 - version "1.0.4" 5067 - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 5068 - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== 5069 - dependencies: 5070 - randombytes "^2.0.5" 5071 - safe-buffer "^5.1.0" 5072 - 5073 - react-animate-height@2.0.21: 5074 - version "2.0.21" 5075 - resolved "https://registry.yarnpkg.com/react-animate-height/-/react-animate-height-2.0.21.tgz#da9223eb0e74457d52f72da477c8626550df2ce6" 5076 - integrity sha512-CZHdjMD8qqp10tYtWmauWYASXxxv9vYeljxFGFtbcrbNXhsUv0w3IjxVK+0yCnyfk7769WfMZKHra4vRcbMnQg== 5077 - dependencies: 5078 - classnames "^2.2.5" 5079 - prop-types "^15.6.1" 5080 - 5081 - react-clientside-effect@^1.2.2: 5082 - version "1.2.2" 5083 - resolved "https://registry.yarnpkg.com/react-clientside-effect/-/react-clientside-effect-1.2.2.tgz#6212fb0e07b204e714581dd51992603d1accc837" 5084 - integrity sha512-nRmoyxeok5PBO6ytPvSjKp9xwXg9xagoTK1mMjwnQxqM9Hd7MNPl+LS1bOSOe+CV2+4fnEquc7H/S8QD3q697A== 5085 - dependencies: 5086 - "@babel/runtime" "^7.0.0" 5087 - 5088 - react-dom@^16.13.1: 5089 - version "16.13.1" 5090 - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" 5091 - integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag== 5035 + read-pkg-up@^7.0.1: 5036 + version "7.0.1" 5037 + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 5038 + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 5092 5039 dependencies: 5093 - loose-envify "^1.1.0" 5094 - object-assign "^4.1.1" 5095 - prop-types "^15.6.2" 5096 - scheduler "^0.19.1" 5040 + find-up "^4.1.0" 5041 + read-pkg "^5.2.0" 5042 + type-fest "^0.8.1" 5097 5043 5098 - react-focus-lock@^2.2.1: 5099 - version "2.3.1" 5100 - resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.3.1.tgz#9d5d85899773609c7eefa4fc54fff6a0f5f2fc47" 5101 - integrity sha512-j15cWLPzH0gOmRrUg01C09Peu8qbcdVqr6Bjyfxj80cNZmH+idk/bNBYEDSmkAtwkXI+xEYWSmHYqtaQhZ8iUQ== 5044 + read-pkg@^2.0.0: 5045 + version "2.0.0" 5046 + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 5047 + integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 5102 5048 dependencies: 5103 - "@babel/runtime" "^7.0.0" 5104 - focus-lock "^0.6.7" 5105 - prop-types "^15.6.2" 5106 - react-clientside-effect "^1.2.2" 5107 - use-callback-ref "^1.2.1" 5108 - use-sidecar "^1.0.1" 5049 + load-json-file "^2.0.0" 5050 + normalize-package-data "^2.3.2" 5051 + path-type "^2.0.0" 5109 5052 5110 - react-is@16.13.1, react-is@^16.7.0, react-is@^16.8.1: 5111 - version "16.13.1" 5112 - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 5113 - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 5114 - 5115 - react-refresh@0.8.3: 5116 - version "0.8.3" 5117 - resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f" 5118 - integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg== 5119 - 5120 - react-spring@^8.0.27: 5121 - version "8.0.27" 5122 - resolved "https://registry.yarnpkg.com/react-spring/-/react-spring-8.0.27.tgz#97d4dee677f41e0b2adcb696f3839680a3aa356a" 5123 - integrity sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g== 5053 + read-pkg@^5.2.0: 5054 + version "5.2.0" 5055 + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 5056 + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 5124 5057 dependencies: 5125 - "@babel/runtime" "^7.3.1" 5126 - prop-types "^15.5.8" 5058 + "@types/normalize-package-data" "^2.4.0" 5059 + normalize-package-data "^2.5.0" 5060 + parse-json "^5.0.0" 5061 + type-fest "^0.6.0" 5127 5062 5128 - react@^16.13.1: 5129 - version "16.13.1" 5130 - resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" 5131 - integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== 5132 - dependencies: 5133 - loose-envify "^1.1.0" 5134 - object-assign "^4.1.1" 5135 - prop-types "^15.6.2" 5136 - 5137 - "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: 5063 + readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@^2.3.5: 5138 5064 version "2.3.7" 5139 5065 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 5140 5066 integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== ··· 5147 5073 string_decoder "~1.1.1" 5148 5074 util-deprecate "~1.0.1" 5149 5075 5150 - readable-stream@^3.1.1, readable-stream@^3.6.0: 5076 + readable-stream@^3.1.1: 5151 5077 version "3.6.0" 5152 5078 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 5153 5079 integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== ··· 5165 5091 micromatch "^3.1.10" 5166 5092 readable-stream "^2.0.2" 5167 5093 5168 - readdirp@~3.4.0: 5169 - version "3.4.0" 5170 - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" 5171 - integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== 5172 - dependencies: 5173 - picomatch "^2.2.1" 5174 - 5175 - reflect.ownkeys@^0.2.0: 5176 - version "0.2.0" 5177 - resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460" 5178 - integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA= 5179 - 5180 5094 regenerate-unicode-properties@^8.2.0: 5181 5095 version "8.2.0" 5182 5096 resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" ··· 5190 5104 integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A== 5191 5105 5192 5106 regenerator-runtime@^0.13.4: 5193 - version "0.13.5" 5194 - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" 5195 - integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== 5107 + version "0.13.7" 5108 + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 5109 + integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 5196 5110 5197 5111 regenerator-transform@^0.14.2: 5198 - version "0.14.4" 5199 - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" 5200 - integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== 5112 + version "0.14.5" 5113 + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 5114 + integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 5201 5115 dependencies: 5202 5116 "@babel/runtime" "^7.8.4" 5203 - private "^0.1.8" 5204 5117 5205 5118 regex-not@^1.0.0, regex-not@^1.0.2: 5206 5119 version "1.0.2" ··· 5210 5123 extend-shallow "^3.0.2" 5211 5124 safe-regex "^1.1.0" 5212 5125 5213 - regex-parser@2.2.10: 5214 - version "2.2.10" 5215 - resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.10.tgz#9e66a8f73d89a107616e63b39d4deddfee912b37" 5216 - integrity sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA== 5126 + regexpp@^1.0.1: 5127 + version "1.1.0" 5128 + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" 5129 + integrity sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw== 5217 5130 5218 5131 regexpu-core@^4.7.0: 5219 5132 version "4.7.0" ··· 5239 5152 dependencies: 5240 5153 jsesc "~0.5.0" 5241 5154 5155 + relateurl@0.2.x: 5156 + version "0.2.7" 5157 + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 5158 + integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= 5159 + 5242 5160 remove-trailing-separator@^1.0.1: 5243 5161 version "1.1.0" 5244 5162 resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" ··· 5254 5172 resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 5255 5173 integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 5256 5174 5257 - resolve-from@^3.0.0: 5175 + replace-ext@^1.0.0: 5176 + version "1.0.1" 5177 + resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.1.tgz#2d6d996d04a15855d967443631dd5f77825b016a" 5178 + integrity sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw== 5179 + 5180 + request-promise-core@1.1.4: 5181 + version "1.1.4" 5182 + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" 5183 + integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== 5184 + dependencies: 5185 + lodash "^4.17.19" 5186 + 5187 + request-promise-native@^1.0.8: 5188 + version "1.0.9" 5189 + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" 5190 + integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== 5191 + dependencies: 5192 + request-promise-core "1.1.4" 5193 + stealthy-require "^1.1.1" 5194 + tough-cookie "^2.3.3" 5195 + 5196 + request@^2.88.2: 5197 + version "2.88.2" 5198 + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" 5199 + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== 5200 + dependencies: 5201 + aws-sign2 "~0.7.0" 5202 + aws4 "^1.8.0" 5203 + caseless "~0.12.0" 5204 + combined-stream "~1.0.6" 5205 + extend "~3.0.2" 5206 + forever-agent "~0.6.1" 5207 + form-data "~2.3.2" 5208 + har-validator "~5.1.3" 5209 + http-signature "~1.2.0" 5210 + is-typedarray "~1.0.0" 5211 + isstream "~0.1.2" 5212 + json-stringify-safe "~5.0.1" 5213 + mime-types "~2.1.19" 5214 + oauth-sign "~0.9.0" 5215 + performance-now "^2.1.0" 5216 + qs "~6.5.2" 5217 + safe-buffer "^5.1.2" 5218 + tough-cookie "~2.5.0" 5219 + tunnel-agent "^0.6.0" 5220 + uuid "^3.3.2" 5221 + 5222 + require-directory@^2.1.1: 5223 + version "2.1.1" 5224 + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 5225 + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 5226 + 5227 + require-main-filename@^2.0.0: 5228 + version "2.0.0" 5229 + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 5230 + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 5231 + 5232 + require-uncached@^1.0.3: 5233 + version "1.0.3" 5234 + resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 5235 + integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM= 5236 + dependencies: 5237 + caller-path "^0.1.0" 5238 + resolve-from "^1.0.0" 5239 + 5240 + resolve-cwd@^3.0.0: 5258 5241 version "3.0.0" 5259 - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 5260 - integrity sha1-six699nWiBvItuZTM17rywoYh0g= 5242 + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 5243 + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 5244 + dependencies: 5245 + resolve-from "^5.0.0" 5261 5246 5262 - resolve-from@^4.0.0: 5263 - version "4.0.0" 5264 - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 5265 - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 5247 + resolve-from@^1.0.0: 5248 + version "1.0.1" 5249 + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 5250 + integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY= 5266 5251 5267 - resolve-url-loader@3.1.1: 5268 - version "3.1.1" 5269 - resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.1.tgz#28931895fa1eab9be0647d3b2958c100ae3c0bf0" 5270 - integrity sha512-K1N5xUjj7v0l2j/3Sgs5b8CjrrgtC70SmdCuZiJ8tSyb5J+uk3FoeZ4b7yTnH6j7ngI+Bc5bldHJIa8hYdu2gQ== 5271 - dependencies: 5272 - adjust-sourcemap-loader "2.0.0" 5273 - camelcase "5.3.1" 5274 - compose-function "3.0.3" 5275 - convert-source-map "1.7.0" 5276 - es6-iterator "2.0.3" 5277 - loader-utils "1.2.3" 5278 - postcss "7.0.21" 5279 - rework "1.0.1" 5280 - rework-visit "1.0.0" 5281 - source-map "0.6.1" 5252 + resolve-from@^5.0.0: 5253 + version "5.0.0" 5254 + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 5255 + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 5282 5256 5283 5257 resolve-url@^0.2.1: 5284 5258 version "0.2.1" 5285 5259 resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 5286 5260 integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 5287 5261 5288 - resolve@^1.12.0, resolve@^1.3.2, resolve@^1.8.1: 5262 + resolve@^1.10.0, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.8.1: 5289 5263 version "1.17.0" 5290 5264 resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 5291 5265 integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 5292 5266 dependencies: 5293 5267 path-parse "^1.0.6" 5294 5268 5269 + restore-cursor@^2.0.0: 5270 + version "2.0.0" 5271 + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 5272 + integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 5273 + dependencies: 5274 + onetime "^2.0.0" 5275 + signal-exit "^3.0.2" 5276 + 5295 5277 ret@~0.1.10: 5296 5278 version "0.1.15" 5297 5279 resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 5298 5280 integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 5299 5281 5300 - rework-visit@1.0.0: 5301 - version "1.0.0" 5302 - resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a" 5303 - integrity sha1-mUWygD8hni96ygCtuLyfZA+ELJo= 5282 + rimraf@^3.0.0: 5283 + version "3.0.2" 5284 + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 5285 + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 5286 + dependencies: 5287 + glob "^7.1.3" 5304 5288 5305 - rework@1.0.1: 5306 - version "1.0.1" 5307 - resolved "https://registry.yarnpkg.com/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7" 5308 - integrity sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc= 5289 + rimraf@~2.6.2: 5290 + version "2.6.3" 5291 + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 5292 + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 5309 5293 dependencies: 5310 - convert-source-map "^0.3.3" 5311 - css "^2.0.0" 5294 + glob "^7.1.3" 5312 5295 5313 - rgb-regex@^1.0.1: 5314 - version "1.0.1" 5315 - resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" 5316 - integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= 5296 + rollup-plugin-commonjs@^10.1.0: 5297 + version "10.1.0" 5298 + resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz#417af3b54503878e084d127adf4d1caf8beb86fb" 5299 + integrity sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q== 5300 + dependencies: 5301 + estree-walker "^0.6.1" 5302 + is-reference "^1.1.2" 5303 + magic-string "^0.25.2" 5304 + resolve "^1.11.0" 5305 + rollup-pluginutils "^2.8.1" 5317 5306 5318 - rgba-regex@^1.0.0: 5319 - version "1.0.0" 5320 - resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" 5321 - integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= 5307 + rollup-plugin-license@^2.0.0: 5308 + version "2.2.0" 5309 + resolved "https://registry.yarnpkg.com/rollup-plugin-license/-/rollup-plugin-license-2.2.0.tgz#0d19139bbe44dda500fbf15530af07c91949e348" 5310 + integrity sha512-xXb1vviEwlJMX+VGUSsglcMA/Rh9d2QzEm94awy4FlnsPqGrXoTYYGOR3UXR6gYIxiJFkr7qmkKF/NXfre/y8g== 5311 + dependencies: 5312 + commenting "1.1.0" 5313 + glob "7.1.6" 5314 + lodash "4.17.19" 5315 + magic-string "0.25.7" 5316 + mkdirp "1.0.4" 5317 + moment "2.27.0" 5318 + package-name-regex "1.0.8" 5319 + spdx-expression-validate "2.0.0" 5320 + spdx-satisfies "5.0.0" 5322 5321 5323 - rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: 5324 - version "2.7.1" 5325 - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 5326 - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 5322 + rollup-plugin-node-resolve@^5.2.0: 5323 + version "5.2.0" 5324 + resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz#730f93d10ed202473b1fb54a5997a7db8c6d8523" 5325 + integrity sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw== 5327 5326 dependencies: 5328 - glob "^7.1.3" 5327 + "@types/resolve" "0.0.8" 5328 + builtin-modules "^3.1.0" 5329 + is-module "^1.0.0" 5330 + resolve "^1.11.1" 5331 + rollup-pluginutils "^2.8.1" 5329 5332 5330 - ripemd160@^2.0.0, ripemd160@^2.0.1: 5331 - version "2.0.2" 5332 - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 5333 - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== 5333 + rollup-plugin-replace@^2.2.0: 5334 + version "2.2.0" 5335 + resolved "https://registry.yarnpkg.com/rollup-plugin-replace/-/rollup-plugin-replace-2.2.0.tgz#f41ae5372e11e7a217cde349c8b5d5fd115e70e3" 5336 + integrity sha512-/5bxtUPkDHyBJAKketb4NfaeZjL5yLZdeUihSfbF2PQMz+rSTEb8ARKoOl3UBT4m7/X+QOXJo3sLTcq+yMMYTA== 5334 5337 dependencies: 5335 - hash-base "^3.0.0" 5336 - inherits "^2.0.1" 5338 + magic-string "^0.25.2" 5339 + rollup-pluginutils "^2.6.0" 5337 5340 5338 - run-queue@^1.0.0, run-queue@^1.0.3: 5339 - version "1.0.3" 5340 - resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" 5341 - integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= 5341 + rollup-plugin-terser@^5.2.0: 5342 + version "5.3.0" 5343 + resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-5.3.0.tgz#9c0dd33d5771df9630cd027d6a2559187f65885e" 5344 + integrity sha512-XGMJihTIO3eIBsVGq7jiNYOdDMb3pVxuzY0uhOE/FM4x/u9nQgr3+McsjzqBn3QfHIpNSZmFnpoKAwHBEcsT7g== 5342 5345 dependencies: 5343 - aproba "^1.1.1" 5346 + "@babel/code-frame" "^7.5.5" 5347 + jest-worker "^24.9.0" 5348 + rollup-pluginutils "^2.8.2" 5349 + serialize-javascript "^2.1.2" 5350 + terser "^4.6.2" 5351 + 5352 + rollup-plugin-visualizer@^4.1.0: 5353 + version "4.1.0" 5354 + resolved "https://registry.yarnpkg.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-4.1.0.tgz#92a1cebed30e7d39b3ab9db75426db06230edc5c" 5355 + integrity sha512-RzsWRrFhZHNM7UQ5wLRsn6Jz3zJHkH+/n1ZaS5h1OTYY4qG7TguSFOFzaM+IA/DSAcloXzGpCi0ue894Jdvv+A== 5356 + dependencies: 5357 + nanoid "^3.0.1" 5358 + open "^7.0.3" 5359 + pupa "^2.0.0" 5360 + source-map "^0.7.3" 5361 + yargs "^15.0.0" 5362 + 5363 + rollup-pluginutils@^2.6.0, rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2: 5364 + version "2.8.2" 5365 + resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" 5366 + integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== 5367 + dependencies: 5368 + estree-walker "^0.6.1" 5344 5369 5345 - safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: 5370 + rollup@^2.7.3: 5371 + version "2.26.0" 5372 + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.26.0.tgz#736ffa773fe0cefdfd0b9669abdce444d6a68f07" 5373 + integrity sha512-1kwpBuxQERz+ymjPLepaXqf3NMRDwSumuEfW/fsTtflmyyhI6ev7nLy5Vdadvn01zd0WWAojRuvA2+0coPGCGQ== 5374 + optionalDependencies: 5375 + fsevents "~2.1.2" 5376 + 5377 + rsvp@^4.8.4: 5378 + version "4.8.5" 5379 + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" 5380 + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== 5381 + 5382 + run-async@^2.2.0: 5383 + version "2.4.1" 5384 + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" 5385 + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== 5386 + 5387 + rx-lite-aggregates@^4.0.8: 5388 + version "4.0.8" 5389 + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 5390 + integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= 5391 + dependencies: 5392 + rx-lite "*" 5393 + 5394 + rx-lite@*, rx-lite@^4.0.8: 5395 + version "4.0.8" 5396 + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 5397 + integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= 5398 + 5399 + safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: 5346 5400 version "5.2.1" 5347 5401 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 5348 5402 integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== ··· 5359 5413 dependencies: 5360 5414 ret "~0.1.10" 5361 5415 5362 - sass-loader@8.0.2: 5363 - version "8.0.2" 5364 - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-8.0.2.tgz#debecd8c3ce243c76454f2e8290482150380090d" 5365 - integrity sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ== 5416 + "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 5417 + version "2.1.2" 5418 + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 5419 + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 5420 + 5421 + sane@^4.0.3: 5422 + version "4.1.0" 5423 + resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" 5424 + integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== 5366 5425 dependencies: 5367 - clone-deep "^4.0.1" 5368 - loader-utils "^1.2.3" 5369 - neo-async "^2.6.1" 5370 - schema-utils "^2.6.1" 5371 - semver "^6.3.0" 5426 + "@cnakazawa/watch" "^1.0.3" 5427 + anymatch "^2.0.0" 5428 + capture-exit "^2.0.0" 5429 + exec-sh "^0.3.2" 5430 + execa "^1.0.0" 5431 + fb-watchman "^2.0.0" 5432 + micromatch "^3.1.4" 5433 + minimist "^1.1.1" 5434 + walker "~1.0.5" 5372 5435 5373 5436 sax@~1.2.4: 5374 5437 version "1.2.4" 5375 5438 resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 5376 5439 integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 5377 5440 5378 - scheduler@^0.19.1: 5379 - version "0.19.1" 5380 - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" 5381 - integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== 5441 + saxes@^5.0.0: 5442 + version "5.0.1" 5443 + resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 5444 + integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 5382 5445 dependencies: 5383 - loose-envify "^1.1.0" 5384 - object-assign "^4.1.1" 5446 + xmlchars "^2.2.0" 5385 5447 5386 - schema-utils@2.6.6: 5387 - version "2.6.6" 5388 - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.6.tgz#299fe6bd4a3365dc23d99fd446caff8f1d6c330c" 5389 - integrity sha512-wHutF/WPSbIi9x6ctjGGk2Hvl0VOz5l3EKEuKbjPlB30mKZUzb9A5k9yEXRX3pwyqVLPvpfZZEllaFq/M718hA== 5390 - dependencies: 5391 - ajv "^6.12.0" 5392 - ajv-keywords "^3.4.1" 5393 - 5394 - schema-utils@^1.0.0: 5395 - version "1.0.0" 5396 - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" 5397 - integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== 5398 - dependencies: 5399 - ajv "^6.1.0" 5400 - ajv-errors "^1.0.0" 5401 - ajv-keywords "^3.1.0" 5402 - 5403 - schema-utils@^2.6.1, schema-utils@^2.6.6: 5404 - version "2.7.0" 5405 - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" 5406 - integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== 5407 - dependencies: 5408 - "@types/json-schema" "^7.0.4" 5409 - ajv "^6.12.2" 5410 - ajv-keywords "^3.4.1" 5448 + "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: 5449 + version "5.7.1" 5450 + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 5451 + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 5411 5452 5412 5453 semver@7.0.0: 5413 5454 version "7.0.0" 5414 5455 resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 5415 5456 integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 5416 5457 5417 - semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: 5418 - version "5.7.1" 5419 - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 5420 - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 5421 - 5422 5458 semver@^6.0.0, semver@^6.3.0: 5423 5459 version "6.3.0" 5424 5460 resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 5425 5461 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 5426 5462 5427 - serialize-javascript@^3.1.0: 5428 - version "3.1.0" 5429 - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea" 5430 - integrity sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg== 5431 - dependencies: 5432 - randombytes "^2.1.0" 5463 + semver@^7.3.2: 5464 + version "7.3.2" 5465 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" 5466 + integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== 5433 5467 5434 - serialize-query-params@^1.2.0: 5435 - version "1.2.0" 5436 - resolved "https://registry.yarnpkg.com/serialize-query-params/-/serialize-query-params-1.2.0.tgz#12842a42881ad65c1c257e786f7bb00f2fbb2d10" 5437 - integrity sha512-rkcZFpQjGAA1tTncuon/CyBa81pTMztz0rxspHEnVlTfW+UQNa1rtgfl0PlL6b2Gwp5T1HyIZKyc1xwhZjYUHQ== 5468 + serialize-javascript@^2.1.2: 5469 + version "2.1.2" 5470 + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" 5471 + integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ== 5438 5472 5439 - set-immediate-shim@~1.0.1: 5440 - version "1.0.1" 5441 - resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 5442 - integrity sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E= 5473 + set-blocking@^2.0.0: 5474 + version "2.0.0" 5475 + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 5476 + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 5443 5477 5444 5478 set-value@^2.0.0, set-value@^2.0.1: 5445 5479 version "2.0.1" ··· 5451 5485 is-plain-object "^2.0.3" 5452 5486 split-string "^3.0.1" 5453 5487 5454 - setimmediate@^1.0.4: 5455 - version "1.0.5" 5456 - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 5457 - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= 5458 - 5459 - sha.js@^2.4.0, sha.js@^2.4.8: 5460 - version "2.4.11" 5461 - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 5462 - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== 5488 + shebang-command@^1.2.0: 5489 + version "1.2.0" 5490 + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 5491 + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 5463 5492 dependencies: 5464 - inherits "^2.0.1" 5465 - safe-buffer "^5.0.1" 5493 + shebang-regex "^1.0.0" 5466 5494 5467 - shallow-clone@^3.0.0: 5468 - version "3.0.1" 5469 - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" 5470 - integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== 5495 + shebang-command@^2.0.0: 5496 + version "2.0.0" 5497 + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 5498 + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 5471 5499 dependencies: 5472 - kind-of "^6.0.2" 5500 + shebang-regex "^3.0.0" 5501 + 5502 + shebang-regex@^1.0.0: 5503 + version "1.0.0" 5504 + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 5505 + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 5506 + 5507 + shebang-regex@^3.0.0: 5508 + version "3.0.0" 5509 + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 5510 + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 5511 + 5512 + shellwords@^0.1.1: 5513 + version "0.1.1" 5514 + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 5515 + integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== 5516 + 5517 + signal-exit@^3.0.0, signal-exit@^3.0.2: 5518 + version "3.0.3" 5519 + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 5520 + integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 5521 + 5522 + simple-string-table@^1.0.0: 5523 + version "1.0.0" 5524 + resolved "https://registry.yarnpkg.com/simple-string-table/-/simple-string-table-1.0.0.tgz#301ce3175260240e7db7f4b734b0a8125b98997e" 5525 + integrity sha512-iflPccjsYtTN+Rqj35v/G+i9A04g2HgOPkPp/B5evznUD4VZ4egi/qcFwrUHgGZwJMZz+Aq5elow4Qqsodfflw== 5526 + 5527 + sisteransi@^1.0.4: 5528 + version "1.0.5" 5529 + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 5530 + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 5531 + 5532 + slash@^2.0.0: 5533 + version "2.0.0" 5534 + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 5535 + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== 5473 5536 5474 - shell-quote@1.7.2: 5475 - version "1.7.2" 5476 - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" 5477 - integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== 5537 + slash@^3.0.0: 5538 + version "3.0.0" 5539 + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 5540 + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 5478 5541 5479 - simple-swizzle@^0.2.2: 5480 - version "0.2.2" 5481 - resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 5482 - integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= 5542 + slice-ansi@1.0.0: 5543 + version "1.0.0" 5544 + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 5545 + integrity sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg== 5483 5546 dependencies: 5484 - is-arrayish "^0.3.1" 5547 + is-fullwidth-code-point "^2.0.0" 5485 5548 5486 5549 snapdragon-node@^2.0.1: 5487 5550 version "2.1.1" ··· 5513 5576 source-map-resolve "^0.5.0" 5514 5577 use "^3.1.0" 5515 5578 5516 - sort-keys@^1.0.0: 5517 - version "1.1.2" 5518 - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 5519 - integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= 5520 - dependencies: 5521 - is-plain-obj "^1.0.0" 5522 - 5523 - source-list-map@^2.0.0: 5524 - version "2.0.1" 5525 - resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" 5526 - integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== 5527 - 5528 - source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: 5579 + source-map-resolve@^0.5.0: 5529 5580 version "0.5.3" 5530 5581 resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" 5531 5582 integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== ··· 5536 5587 source-map-url "^0.4.0" 5537 5588 urix "^0.1.0" 5538 5589 5539 - source-map-support@~0.5.12: 5590 + source-map-support@^0.5.16, source-map-support@^0.5.6, source-map-support@~0.5.12: 5540 5591 version "0.5.19" 5541 5592 resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 5542 5593 integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== ··· 5549 5600 resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 5550 5601 integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 5551 5602 5552 - source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 5603 + source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.6: 5604 + version "0.5.7" 5605 + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 5606 + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 5607 + 5608 + source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: 5553 5609 version "0.6.1" 5554 5610 resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 5555 5611 integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 5556 5612 5557 - source-map@0.7.3: 5613 + source-map@^0.7.3: 5558 5614 version "0.7.3" 5559 5615 resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 5560 5616 integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 5561 5617 5562 - source-map@0.8.0-beta.0: 5563 - version "0.8.0-beta.0" 5564 - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11" 5565 - integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA== 5618 + sourcemap-codec@1.4.8, sourcemap-codec@^1.4.4: 5619 + version "1.4.8" 5620 + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 5621 + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 5622 + 5623 + spdx-compare@^1.0.0: 5624 + version "1.0.0" 5625 + resolved "https://registry.yarnpkg.com/spdx-compare/-/spdx-compare-1.0.0.tgz#2c55f117362078d7409e6d7b08ce70a857cd3ed7" 5626 + integrity sha512-C1mDZOX0hnu0ep9dfmuoi03+eOdDoz2yvK79RxbcrVEG1NO1Ph35yW102DHWKN4pk80nwCgeMmSY5L25VE4D9A== 5627 + dependencies: 5628 + array-find-index "^1.0.2" 5629 + spdx-expression-parse "^3.0.0" 5630 + spdx-ranges "^2.0.0" 5631 + 5632 + spdx-correct@^3.0.0: 5633 + version "3.1.1" 5634 + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 5635 + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 5636 + dependencies: 5637 + spdx-expression-parse "^3.0.0" 5638 + spdx-license-ids "^3.0.0" 5639 + 5640 + spdx-exceptions@^2.1.0: 5641 + version "2.3.0" 5642 + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 5643 + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 5644 + 5645 + spdx-expression-parse@^3.0.0: 5646 + version "3.0.1" 5647 + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 5648 + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 5649 + dependencies: 5650 + spdx-exceptions "^2.1.0" 5651 + spdx-license-ids "^3.0.0" 5652 + 5653 + spdx-expression-validate@2.0.0: 5654 + version "2.0.0" 5655 + resolved "https://registry.yarnpkg.com/spdx-expression-validate/-/spdx-expression-validate-2.0.0.tgz#25c9408e1c63fad94fff5517bb7101ffcd23350b" 5656 + integrity sha512-b3wydZLM+Tc6CFvaRDBOF9d76oGIHNCLYFeHbftFXUWjnfZWganmDmvtM5sm1cRwJc/VDBMLyGGrsLFd1vOxbg== 5566 5657 dependencies: 5567 - whatwg-url "^7.0.0" 5658 + spdx-expression-parse "^3.0.0" 5568 5659 5569 - source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7: 5570 - version "0.5.7" 5571 - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 5572 - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 5660 + spdx-license-ids@^3.0.0: 5661 + version "3.0.5" 5662 + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 5663 + integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== 5573 5664 5574 - split-on-first@^1.0.0: 5575 - version "1.1.0" 5576 - resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" 5577 - integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== 5665 + spdx-ranges@^2.0.0: 5666 + version "2.1.1" 5667 + resolved "https://registry.yarnpkg.com/spdx-ranges/-/spdx-ranges-2.1.1.tgz#87573927ba51e92b3f4550ab60bfc83dd07bac20" 5668 + integrity sha512-mcdpQFV7UDAgLpXEE/jOMqvK4LBoO0uTQg0uvXUewmEFhpiZx5yJSZITHB8w1ZahKdhfZqP5GPEOKLyEq5p8XA== 5669 + 5670 + spdx-satisfies@5.0.0: 5671 + version "5.0.0" 5672 + resolved "https://registry.yarnpkg.com/spdx-satisfies/-/spdx-satisfies-5.0.0.tgz#d740b8f14caeada36fb307629dee87146970a256" 5673 + integrity sha512-/hGhwh20BeGmkA+P/lm06RvXD94JduwNxtx/oX3B5ClPt1/u/m5MCaDNo1tV3Y9laLkQr/NRde63b9lLMhlNfw== 5674 + dependencies: 5675 + spdx-compare "^1.0.0" 5676 + spdx-expression-parse "^3.0.0" 5677 + spdx-ranges "^2.0.0" 5578 5678 5579 5679 split-string@^3.0.1, split-string@^3.0.2: 5580 5680 version "3.1.0" ··· 5588 5688 resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 5589 5689 integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 5590 5690 5591 - ssri@^6.0.1: 5592 - version "6.0.1" 5593 - resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" 5594 - integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== 5691 + sshpk@^1.7.0: 5692 + version "1.16.1" 5693 + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 5694 + integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== 5595 5695 dependencies: 5596 - figgy-pudding "^3.5.1" 5597 - 5598 - ssri@^7.0.0: 5599 - version "7.1.0" 5600 - resolved "https://registry.yarnpkg.com/ssri/-/ssri-7.1.0.tgz#92c241bf6de82365b5c7fb4bd76e975522e1294d" 5601 - integrity sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g== 5602 - dependencies: 5603 - figgy-pudding "^3.5.1" 5604 - minipass "^3.1.1" 5696 + asn1 "~0.2.3" 5697 + assert-plus "^1.0.0" 5698 + bcrypt-pbkdf "^1.0.0" 5699 + dashdash "^1.12.0" 5700 + ecc-jsbn "~0.1.1" 5701 + getpass "^0.1.1" 5702 + jsbn "~0.1.0" 5703 + safer-buffer "^2.0.2" 5704 + tweetnacl "~0.14.0" 5605 5705 5606 5706 stable@^0.1.8: 5607 5707 version "0.1.8" 5608 5708 resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 5609 5709 integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 5610 5710 5611 - stacktrace-parser@0.1.10: 5612 - version "0.1.10" 5613 - resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" 5614 - integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== 5711 + stack-utils@^2.0.2: 5712 + version "2.0.2" 5713 + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.2.tgz#5cf48b4557becb4638d0bc4f21d23f5d19586593" 5714 + integrity sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg== 5615 5715 dependencies: 5616 - type-fest "^0.7.1" 5716 + escape-string-regexp "^2.0.0" 5617 5717 5618 5718 static-extend@^0.1.1: 5619 5719 version "0.1.2" ··· 5623 5723 define-property "^0.2.5" 5624 5724 object-copy "^0.1.0" 5625 5725 5626 - stream-browserify@^2.0.1: 5627 - version "2.0.2" 5628 - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" 5629 - integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== 5726 + stealthy-require@^1.1.1: 5727 + version "1.1.1" 5728 + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 5729 + integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= 5730 + 5731 + string-length@^4.0.1: 5732 + version "4.0.1" 5733 + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.1.tgz#4a973bf31ef77c4edbceadd6af2611996985f8a1" 5734 + integrity sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw== 5630 5735 dependencies: 5631 - inherits "~2.0.1" 5632 - readable-stream "^2.0.2" 5736 + char-regex "^1.0.2" 5737 + strip-ansi "^6.0.0" 5633 5738 5634 - stream-each@^1.1.0: 5635 - version "1.2.3" 5636 - resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" 5637 - integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== 5739 + string-width@^2.1.0, string-width@^2.1.1: 5740 + version "2.1.1" 5741 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 5742 + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 5638 5743 dependencies: 5639 - end-of-stream "^1.1.0" 5640 - stream-shift "^1.0.0" 5744 + is-fullwidth-code-point "^2.0.0" 5745 + strip-ansi "^4.0.0" 5641 5746 5642 - stream-http@^2.7.2: 5643 - version "2.8.3" 5644 - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" 5645 - integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== 5747 + string-width@^4.1.0, string-width@^4.2.0: 5748 + version "4.2.0" 5749 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 5750 + integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 5646 5751 dependencies: 5647 - builtin-status-codes "^3.0.0" 5648 - inherits "^2.0.1" 5649 - readable-stream "^2.3.6" 5650 - to-arraybuffer "^1.0.0" 5651 - xtend "^4.0.0" 5752 + emoji-regex "^8.0.0" 5753 + is-fullwidth-code-point "^3.0.0" 5754 + strip-ansi "^6.0.0" 5652 5755 5653 - stream-shift@^1.0.0: 5654 - version "1.0.1" 5655 - resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" 5656 - integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== 5657 - 5658 - strict-uri-encode@^1.0.0: 5659 - version "1.1.0" 5660 - resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 5661 - integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= 5662 - 5663 - strict-uri-encode@^2.0.0: 5664 - version "2.0.0" 5665 - resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" 5666 - integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY= 5667 - 5668 - string-hash@1.1.3: 5669 - version "1.1.3" 5670 - resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" 5671 - integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= 5672 - 5673 - string.prototype.trimend@^1.0.0: 5756 + string.prototype.trimend@^1.0.1: 5674 5757 version "1.0.1" 5675 5758 resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 5676 5759 integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== ··· 5678 5761 define-properties "^1.1.3" 5679 5762 es-abstract "^1.17.5" 5680 5763 5681 - string.prototype.trimleft@^2.1.1: 5682 - version "2.1.2" 5683 - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" 5684 - integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== 5685 - dependencies: 5686 - define-properties "^1.1.3" 5687 - es-abstract "^1.17.5" 5688 - string.prototype.trimstart "^1.0.0" 5689 - 5690 - string.prototype.trimright@^2.1.1: 5691 - version "2.1.2" 5692 - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" 5693 - integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== 5694 - dependencies: 5695 - define-properties "^1.1.3" 5696 - es-abstract "^1.17.5" 5697 - string.prototype.trimend "^1.0.0" 5698 - 5699 - string.prototype.trimstart@^1.0.0: 5764 + string.prototype.trimstart@^1.0.1: 5700 5765 version "1.0.1" 5701 5766 resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 5702 5767 integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== ··· 5704 5769 define-properties "^1.1.3" 5705 5770 es-abstract "^1.17.5" 5706 5771 5707 - string_decoder@^1.0.0, string_decoder@^1.1.1: 5772 + string_decoder@^1.1.1: 5708 5773 version "1.3.0" 5709 5774 resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 5710 5775 integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== ··· 5718 5783 dependencies: 5719 5784 safe-buffer "~5.1.0" 5720 5785 5721 - strip-ansi@6.0.0: 5722 - version "6.0.0" 5723 - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 5724 - integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 5725 - dependencies: 5726 - ansi-regex "^5.0.0" 5727 - 5728 5786 strip-ansi@^3.0.0: 5729 5787 version "3.0.1" 5730 5788 resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" ··· 5732 5790 dependencies: 5733 5791 ansi-regex "^2.0.0" 5734 5792 5735 - style-loader@1.2.1: 5736 - version "1.2.1" 5737 - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.2.1.tgz#c5cbbfbf1170d076cfdd86e0109c5bba114baa1a" 5738 - integrity sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg== 5793 + strip-ansi@^4.0.0: 5794 + version "4.0.0" 5795 + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 5796 + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 5739 5797 dependencies: 5740 - loader-utils "^2.0.0" 5741 - schema-utils "^2.6.6" 5798 + ansi-regex "^3.0.0" 5742 5799 5743 - styled-jsx@3.3.0: 5744 - version "3.3.0" 5745 - resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.3.0.tgz#32335c1a3ecfc923ba4f9c056eeb3d4699006b09" 5746 - integrity sha512-sh8BI5eGKyJlwL4kNXHjb27/a/GJV8wP4ElRIkRXrGW3sHKOsY9Pa1VZRNxyvf3+lisdPwizD9JDkzVO9uGwZw== 5800 + strip-ansi@^6.0.0: 5801 + version "6.0.0" 5802 + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 5803 + integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 5747 5804 dependencies: 5748 - "@babel/types" "7.8.3" 5749 - babel-plugin-syntax-jsx "6.18.0" 5750 - convert-source-map "1.7.0" 5751 - loader-utils "1.2.3" 5752 - source-map "0.7.3" 5753 - string-hash "1.1.3" 5754 - stylis "3.5.4" 5755 - stylis-rule-sheet "0.0.10" 5805 + ansi-regex "^5.0.0" 5756 5806 5757 - styled-system@5.1.5, styled-system@^5.1.5: 5758 - version "5.1.5" 5759 - resolved "https://registry.yarnpkg.com/styled-system/-/styled-system-5.1.5.tgz#e362d73e1dbb5641a2fd749a6eba1263dc85075e" 5760 - integrity sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A== 5761 - dependencies: 5762 - "@styled-system/background" "^5.1.2" 5763 - "@styled-system/border" "^5.1.5" 5764 - "@styled-system/color" "^5.1.2" 5765 - "@styled-system/core" "^5.1.2" 5766 - "@styled-system/flexbox" "^5.1.2" 5767 - "@styled-system/grid" "^5.1.2" 5768 - "@styled-system/layout" "^5.1.2" 5769 - "@styled-system/position" "^5.1.2" 5770 - "@styled-system/shadow" "^5.1.2" 5771 - "@styled-system/space" "^5.1.2" 5772 - "@styled-system/typography" "^5.1.2" 5773 - "@styled-system/variant" "^5.1.5" 5774 - object-assign "^4.1.1" 5807 + strip-bom@^3.0.0: 5808 + version "3.0.0" 5809 + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 5810 + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 5775 5811 5776 - stylehacks@^4.0.0: 5777 - version "4.0.3" 5778 - resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" 5779 - integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== 5780 - dependencies: 5781 - browserslist "^4.0.0" 5782 - postcss "^7.0.0" 5783 - postcss-selector-parser "^3.0.0" 5812 + strip-bom@^4.0.0: 5813 + version "4.0.0" 5814 + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 5815 + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 5816 + 5817 + strip-eof@^1.0.0: 5818 + version "1.0.0" 5819 + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 5820 + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 5784 5821 5785 - stylis-rule-sheet@0.0.10: 5786 - version "0.0.10" 5787 - resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430" 5788 - integrity sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw== 5822 + strip-final-newline@^2.0.0: 5823 + version "2.0.0" 5824 + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 5825 + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 5789 5826 5790 - stylis@3.5.4: 5791 - version "3.5.4" 5792 - resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe" 5793 - integrity sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q== 5827 + strip-json-comments@~2.0.1: 5828 + version "2.0.1" 5829 + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 5830 + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 5794 5831 5795 5832 supports-color@^2.0.0: 5796 5833 version "2.0.0" ··· 5811 5848 dependencies: 5812 5849 has-flag "^3.0.0" 5813 5850 5814 - supports-color@^7.1.0: 5815 - version "7.1.0" 5816 - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 5817 - integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 5851 + supports-color@^7.0.0, supports-color@^7.1.0: 5852 + version "7.2.0" 5853 + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 5854 + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 5855 + dependencies: 5856 + has-flag "^4.0.0" 5857 + 5858 + supports-hyperlinks@^2.0.0: 5859 + version "2.1.0" 5860 + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47" 5861 + integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA== 5818 5862 dependencies: 5819 5863 has-flag "^4.0.0" 5864 + supports-color "^7.0.0" 5820 5865 5821 - svgo@^1.0.0: 5866 + svgo@^1.3.2: 5822 5867 version "1.3.2" 5823 5868 resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" 5824 5869 integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== ··· 5837 5882 unquote "~1.1.1" 5838 5883 util.promisify "~1.0.0" 5839 5884 5840 - tapable@^1.0.0, tapable@^1.1.3: 5841 - version "1.1.3" 5842 - resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" 5843 - integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== 5885 + symbol-tree@^3.2.4: 5886 + version "3.2.4" 5887 + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 5888 + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 5844 5889 5845 - terser-webpack-plugin@^1.4.3: 5846 - version "1.4.4" 5847 - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.4.tgz#2c63544347324baafa9a56baaddf1634c8abfc2f" 5848 - integrity sha512-U4mACBHIegmfoEe5fdongHESNJWqsGU+W0S/9+BmYGVQDw1+c2Ow05TpMhxjPK1sRb7cuYq1BPl1e5YHJMTCqA== 5890 + table@4.0.2: 5891 + version "4.0.2" 5892 + resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 5893 + integrity sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA== 5849 5894 dependencies: 5850 - cacache "^12.0.2" 5851 - find-cache-dir "^2.1.0" 5852 - is-wsl "^1.1.0" 5853 - schema-utils "^1.0.0" 5854 - serialize-javascript "^3.1.0" 5855 - source-map "^0.6.1" 5856 - terser "^4.1.2" 5857 - webpack-sources "^1.4.0" 5858 - worker-farm "^1.7.0" 5895 + ajv "^5.2.3" 5896 + ajv-keywords "^2.1.0" 5897 + chalk "^2.1.0" 5898 + lodash "^4.17.4" 5899 + slice-ansi "1.0.0" 5900 + string-width "^2.1.1" 5859 5901 5860 - terser@4.6.13: 5861 - version "4.6.13" 5862 - resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.13.tgz#e879a7364a5e0db52ba4891ecde007422c56a916" 5863 - integrity sha512-wMvqukYgVpQlymbnNbabVZbtM6PN63AzqexpwJL8tbh/mRT9LE5o+ruVduAGL7D6Fpjl+Q+06U5I9Ul82odAhw== 5902 + terminal-link@^2.0.0: 5903 + version "2.1.1" 5904 + resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 5905 + integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 5864 5906 dependencies: 5865 - commander "^2.20.0" 5866 - source-map "~0.6.1" 5867 - source-map-support "~0.5.12" 5907 + ansi-escapes "^4.2.1" 5908 + supports-hyperlinks "^2.0.0" 5868 5909 5869 - terser@^4.1.2: 5870 - version "4.7.0" 5871 - resolved "https://registry.yarnpkg.com/terser/-/terser-4.7.0.tgz#15852cf1a08e3256a80428e865a2fa893ffba006" 5872 - integrity sha512-Lfb0RiZcjRDXCC3OSHJpEkxJ9Qeqs6mp2v4jf2MHfy8vGERmVDuvjXdd/EnP5Deme5F2yBRBymKmKHCBg2echw== 5910 + terser@^4.6.2: 5911 + version "4.8.0" 5912 + resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" 5913 + integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== 5873 5914 dependencies: 5874 5915 commander "^2.20.0" 5875 5916 source-map "~0.6.1" 5876 5917 source-map-support "~0.5.12" 5877 5918 5878 - through2@^2.0.0: 5879 - version "2.0.5" 5880 - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 5881 - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 5919 + test-exclude@^6.0.0: 5920 + version "6.0.0" 5921 + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 5922 + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 5882 5923 dependencies: 5883 - readable-stream "~2.3.6" 5884 - xtend "~4.0.1" 5924 + "@istanbuljs/schema" "^0.1.2" 5925 + glob "^7.1.4" 5926 + minimatch "^3.0.4" 5885 5927 5886 - timers-browserify@^2.0.4: 5887 - version "2.0.11" 5888 - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" 5889 - integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== 5890 - dependencies: 5891 - setimmediate "^1.0.4" 5928 + text-table@~0.2.0: 5929 + version "0.2.0" 5930 + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 5931 + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 5892 5932 5893 - timsort@^0.3.0: 5894 - version "0.3.0" 5895 - resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" 5896 - integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= 5933 + throat@^5.0.0: 5934 + version "5.0.0" 5935 + resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" 5936 + integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== 5897 5937 5898 - to-arraybuffer@^1.0.0: 5899 - version "1.0.1" 5900 - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 5901 - integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= 5938 + through@^2.3.6: 5939 + version "2.3.8" 5940 + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 5941 + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 5942 + 5943 + tmp@^0.0.33: 5944 + version "0.0.33" 5945 + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 5946 + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 5947 + dependencies: 5948 + os-tmpdir "~1.0.2" 5949 + 5950 + tmpl@1.0.x: 5951 + version "1.0.4" 5952 + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 5953 + integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= 5902 5954 5903 5955 to-fast-properties@^2.0.0: 5904 5956 version "2.0.0" ··· 5937 5989 regex-not "^1.0.2" 5938 5990 safe-regex "^1.1.0" 5939 5991 5940 - toasted-notes@3.2.0: 5941 - version "3.2.0" 5942 - resolved "https://registry.yarnpkg.com/toasted-notes/-/toasted-notes-3.2.0.tgz#dc9bdc9d0083ba2af8bf26b2f71619d014acc089" 5943 - integrity sha512-PucSn+SUdFSYNaaL1eNw7wYkEMJ7LULCR6j1YXPlRySHgWVgf+bXjq4dYd3hdA4mvmGz9HANmI1RnzhZ8av52Q== 5992 + tough-cookie@^2.3.3, tough-cookie@~2.5.0: 5993 + version "2.5.0" 5994 + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 5995 + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== 5996 + dependencies: 5997 + psl "^1.1.28" 5998 + punycode "^2.1.1" 5999 + 6000 + tough-cookie@^3.0.1: 6001 + version "3.0.1" 6002 + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" 6003 + integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== 6004 + dependencies: 6005 + ip-regex "^2.1.0" 6006 + psl "^1.1.28" 6007 + punycode "^2.1.1" 6008 + 6009 + tr46@^2.0.2: 6010 + version "2.0.2" 6011 + resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.0.2.tgz#03273586def1595ae08fedb38d7733cee91d2479" 6012 + integrity sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg== 5944 6013 dependencies: 5945 - "@reach/alert" "^0.1.2" 5946 - "@types/react" "^16.8.10" 5947 - "@types/react-dom" "^16.8.3" 6014 + punycode "^2.1.1" 5948 6015 5949 - toggle-selection@^1.0.6: 5950 - version "1.0.6" 5951 - resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" 5952 - integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI= 6016 + tsconfig-paths@^3.9.0: 6017 + version "3.9.0" 6018 + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" 6019 + integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== 6020 + dependencies: 6021 + "@types/json5" "^0.0.29" 6022 + json5 "^1.0.1" 6023 + minimist "^1.2.0" 6024 + strip-bom "^3.0.0" 5953 6025 5954 - tr46@^1.0.1: 5955 - version "1.0.1" 5956 - resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 5957 - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= 6026 + tunnel-agent@^0.6.0: 6027 + version "0.6.0" 6028 + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 6029 + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 5958 6030 dependencies: 5959 - punycode "^2.1.0" 6031 + safe-buffer "^5.0.1" 5960 6032 5961 - traverse@0.6.6: 5962 - version "0.6.6" 5963 - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 5964 - integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= 6033 + tweetnacl@^0.14.3, tweetnacl@~0.14.0: 6034 + version "0.14.5" 6035 + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 6036 + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 5965 6037 5966 - ts-pnp@^1.1.6: 5967 - version "1.2.0" 5968 - resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" 5969 - integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== 6038 + type-check@~0.3.2: 6039 + version "0.3.2" 6040 + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 6041 + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 6042 + dependencies: 6043 + prelude-ls "~1.1.2" 5970 6044 5971 - tslib@^1.0.0, tslib@^1.11.2, tslib@^1.9.0, tslib@^1.9.3: 5972 - version "1.13.0" 5973 - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" 5974 - integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== 6045 + type-detect@4.0.8: 6046 + version "4.0.8" 6047 + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 6048 + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 5975 6049 5976 - tty-browserify@0.0.0: 5977 - version "0.0.0" 5978 - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 5979 - integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= 6050 + type-fest@^0.11.0: 6051 + version "0.11.0" 6052 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 6053 + integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 5980 6054 5981 - type-fest@^0.7.1: 5982 - version "0.7.1" 5983 - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" 5984 - integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== 6055 + type-fest@^0.6.0: 6056 + version "0.6.0" 6057 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 6058 + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 5985 6059 5986 - type@^1.0.1: 5987 - version "1.2.0" 5988 - resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" 5989 - integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== 6060 + type-fest@^0.8.1: 6061 + version "0.8.1" 6062 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 6063 + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 5990 6064 5991 - type@^2.0.0: 5992 - version "2.0.0" 5993 - resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3" 5994 - integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow== 6065 + typedarray-to-buffer@^3.1.5: 6066 + version "3.1.5" 6067 + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 6068 + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 6069 + dependencies: 6070 + is-typedarray "^1.0.0" 5995 6071 5996 6072 typedarray@^0.0.6: 5997 6073 version "0.0.6" 5998 6074 resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 5999 6075 integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 6000 6076 6001 - typescript@^3.9.5: 6002 - version "3.9.5" 6003 - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.5.tgz#586f0dba300cde8be52dd1ac4f7e1009c1b13f36" 6004 - integrity sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ== 6077 + uglify-js@3.4.x: 6078 + version "3.4.10" 6079 + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" 6080 + integrity sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw== 6081 + dependencies: 6082 + commander "~2.19.0" 6083 + source-map "~0.6.1" 6005 6084 6006 6085 unicode-canonical-property-names-ecmascript@^1.0.4: 6007 6086 version "1.0.4" ··· 6036 6115 is-extendable "^0.1.1" 6037 6116 set-value "^2.0.1" 6038 6117 6039 - uniq@^1.0.1: 6040 - version "1.0.1" 6041 - resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 6042 - integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= 6043 - 6044 - uniqs@^2.0.0: 6045 - version "2.0.0" 6046 - resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 6047 - integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= 6048 - 6049 - unique-filename@^1.1.1: 6050 - version "1.1.1" 6051 - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" 6052 - integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== 6053 - dependencies: 6054 - unique-slug "^2.0.0" 6055 - 6056 - unique-slug@^2.0.0: 6057 - version "2.0.2" 6058 - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" 6059 - integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== 6060 - dependencies: 6061 - imurmurhash "^0.1.4" 6062 - 6063 6118 unquote@~1.1.1: 6064 6119 version "1.1.1" 6065 6120 resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" ··· 6078 6133 resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" 6079 6134 integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== 6080 6135 6081 - uppercamelcase@^3.0.0: 6082 - version "3.0.0" 6083 - resolved "https://registry.yarnpkg.com/uppercamelcase/-/uppercamelcase-3.0.0.tgz#380b321b8d73cba16fec4d752a575152d1ef7317" 6084 - integrity sha1-OAsyG41zy6Fv7E11KldRUtHvcxc= 6085 - dependencies: 6086 - camelcase "^4.1.0" 6136 + upper-case@^1.1.1: 6137 + version "1.1.3" 6138 + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 6139 + integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= 6087 6140 6088 6141 uri-js@^4.2.2: 6089 - version "4.2.2" 6090 - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 6091 - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 6142 + version "4.4.0" 6143 + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602" 6144 + integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g== 6092 6145 dependencies: 6093 6146 punycode "^2.1.0" 6094 6147 ··· 6097 6150 resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 6098 6151 integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 6099 6152 6100 - url@^0.11.0: 6101 - version "0.11.0" 6102 - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 6103 - integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= 6104 - dependencies: 6105 - punycode "1.3.2" 6106 - querystring "0.2.0" 6107 - 6108 - use-callback-ref@^1.2.1: 6109 - version "1.2.4" 6110 - resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.2.4.tgz#d86d1577bfd0b955b6e04aaf5971025f406bea3c" 6111 - integrity sha512-rXpsyvOnqdScyied4Uglsp14qzag1JIemLeTWGKbwpotWht57hbP78aNT+Q4wdFKQfQibbUX4fb6Qb4y11aVOQ== 6112 - 6113 - use-dark-mode@2.3.1: 6114 - version "2.3.1" 6115 - resolved "https://registry.yarnpkg.com/use-dark-mode/-/use-dark-mode-2.3.1.tgz#d506349c7b7e09e9977cb8a6ab4470896aa3779a" 6116 - integrity sha512-hmcdJR96tTustRQdaQwe6jMrZHnmPqXBxgy4jaQ4gsfhwajsCpjECuq9prgDe9XxMx/f9r96o2/md6O4Lwhwjg== 6117 - dependencies: 6118 - "@use-it/event-listener" "^0.1.2" 6119 - use-persisted-state "^0.3.0" 6120 - 6121 - use-persisted-state@^0.3.0: 6122 - version "0.3.0" 6123 - resolved "https://registry.yarnpkg.com/use-persisted-state/-/use-persisted-state-0.3.0.tgz#f8e3d2fd8eee67e0c86fd596c3ea3e8121c07402" 6124 - integrity sha512-UlWEq0JYg7NbvcRBZ1g6Bwe4SEbYfr1wr/D5mrmfCzSxXSwsPRYygGLlsxHcW58Rf7gGwRPBT23sNVvyVn4WYg== 6125 - dependencies: 6126 - "@use-it/event-listener" "^0.1.2" 6127 - 6128 - use-query-params@^1.1.3: 6129 - version "1.1.3" 6130 - resolved "https://registry.yarnpkg.com/use-query-params/-/use-query-params-1.1.3.tgz#b99cd48f87fcc79f737ce5c46c65a3ac73ba6c7f" 6131 - integrity sha512-lT4zhtmeMecwXPFExLbMV0BSISl08kwAFtKw8Wz0HQyCDo01nIDYa7NV7kU9dTfljkDN6LRqiHBcRoa/MU8P9A== 6132 - dependencies: 6133 - serialize-query-params "^1.2.0" 6134 - 6135 - use-sidecar@^1.0.1: 6136 - version "1.0.2" 6137 - resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.0.2.tgz#e72f582a75842f7de4ef8becd6235a4720ad8af6" 6138 - integrity sha512-287RZny6m5KNMTb/Kq9gmjafi7lQL0YHO1lYolU6+tY1h9+Z3uCtkJJ3OSOq3INwYf2hBryCcDh4520AhJibMA== 6139 - dependencies: 6140 - detect-node "^2.0.4" 6141 - tslib "^1.9.3" 6142 - 6143 - use-subscription@1.4.1: 6144 - version "1.4.1" 6145 - resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.4.1.tgz#edcbcc220f1adb2dd4fa0b2f61b6cc308e620069" 6146 - integrity sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ== 6147 - dependencies: 6148 - object-assign "^4.1.1" 6149 - 6150 6153 use@^3.1.0: 6151 6154 version "3.1.1" 6152 6155 resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" ··· 6167 6170 has-symbols "^1.0.1" 6168 6171 object.getownpropertydescriptors "^2.1.0" 6169 6172 6170 - util@0.10.3: 6171 - version "0.10.3" 6172 - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 6173 - integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= 6173 + uuid@7.0.3: 6174 + version "7.0.3" 6175 + resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b" 6176 + integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== 6177 + 6178 + uuid@^3.3.2: 6179 + version "3.4.0" 6180 + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 6181 + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 6182 + 6183 + uuid@^8.3.0: 6184 + version "8.3.0" 6185 + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.0.tgz#ab738085ca22dc9a8c92725e459b1d507df5d6ea" 6186 + integrity sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ== 6187 + 6188 + v8-to-istanbul@^5.0.1: 6189 + version "5.0.1" 6190 + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-5.0.1.tgz#0608f5b49a481458625edb058488607f25498ba5" 6191 + integrity sha512-mbDNjuDajqYe3TXFk5qxcQy8L1msXNE37WTlLoqqpBfRsimbNcrlhQlDPntmECEcUvdC+AQ8CyMMf6EUx1r74Q== 6174 6192 dependencies: 6175 - inherits "2.0.1" 6193 + "@types/istanbul-lib-coverage" "^2.0.1" 6194 + convert-source-map "^1.6.0" 6195 + source-map "^0.7.3" 6176 6196 6177 - util@^0.11.0: 6178 - version "0.11.1" 6179 - resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" 6180 - integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== 6197 + v8flags@^3.1.1: 6198 + version "3.2.0" 6199 + resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.2.0.tgz#b243e3b4dfd731fa774e7492128109a0fe66d656" 6200 + integrity sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg== 6181 6201 dependencies: 6182 - inherits "2.0.3" 6202 + homedir-polyfill "^1.0.1" 6183 6203 6184 - vendors@^1.0.0: 6185 - version "1.0.4" 6186 - resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e" 6187 - integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== 6204 + validate-npm-package-license@^3.0.1: 6205 + version "3.0.4" 6206 + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 6207 + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 6208 + dependencies: 6209 + spdx-correct "^3.0.0" 6210 + spdx-expression-parse "^3.0.0" 6188 6211 6189 - vm-browserify@^1.0.1: 6190 - version "1.1.2" 6191 - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" 6192 - integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== 6212 + verror@1.10.0: 6213 + version "1.10.0" 6214 + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 6215 + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= 6216 + dependencies: 6217 + assert-plus "^1.0.0" 6218 + core-util-is "1.0.2" 6219 + extsprintf "^1.2.0" 6193 6220 6194 - warning@^4.0.3: 6195 - version "4.0.3" 6196 - resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" 6197 - integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== 6221 + vinyl-sourcemaps-apply@^0.2.0: 6222 + version "0.2.1" 6223 + resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" 6224 + integrity sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU= 6198 6225 dependencies: 6199 - loose-envify "^1.0.0" 6226 + source-map "^0.5.1" 6200 6227 6201 - watchpack-chokidar2@^2.0.0: 6202 - version "2.0.0" 6203 - resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0" 6204 - integrity sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA== 6228 + vinyl@2.x: 6229 + version "2.2.0" 6230 + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86" 6231 + integrity sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg== 6205 6232 dependencies: 6206 - chokidar "^2.1.8" 6233 + clone "^2.1.1" 6234 + clone-buffer "^1.0.0" 6235 + clone-stats "^1.0.0" 6236 + cloneable-readable "^1.0.0" 6237 + remove-trailing-separator "^1.0.1" 6238 + replace-ext "^1.0.0" 6207 6239 6208 - watchpack@2.0.0-beta.13: 6209 - version "2.0.0-beta.13" 6210 - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.0.0-beta.13.tgz#9d9b0c094b8402139333e04eb6194643c8384f55" 6211 - integrity sha512-ZEFq2mx/k5qgQwgi6NOm+2ImICb8ngAkA/rZ6oyXZ7SgPn3pncf+nfhYTCrs3lmHwOxnPtGLTOuFLfpSMh1VMA== 6240 + w3c-hr-time@^1.0.2: 6241 + version "1.0.2" 6242 + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 6243 + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 6212 6244 dependencies: 6213 - glob-to-regexp "^0.4.1" 6214 - graceful-fs "^4.1.2" 6245 + browser-process-hrtime "^1.0.0" 6215 6246 6216 - watchpack@^1.6.1: 6217 - version "1.7.2" 6218 - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa" 6219 - integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g== 6247 + w3c-xmlserializer@^2.0.0: 6248 + version "2.0.0" 6249 + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 6250 + integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 6220 6251 dependencies: 6221 - graceful-fs "^4.1.2" 6222 - neo-async "^2.5.0" 6223 - optionalDependencies: 6224 - chokidar "^3.4.0" 6225 - watchpack-chokidar2 "^2.0.0" 6252 + xml-name-validator "^3.0.0" 6226 6253 6227 - web-vitals@0.2.1: 6228 - version "0.2.1" 6229 - resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-0.2.1.tgz#60782fa690243fe35613759a0c26431f57ba7b2d" 6230 - integrity sha512-2pdRlp6gJpOCg0oMMqwFF0axjk5D9WInc09RSYtqFgPXQ15+YKNQ7YnBBEqAL5jvmfH9WvoXDMb8DHwux7pIew== 6254 + walker@^1.0.7, walker@~1.0.5: 6255 + version "1.0.7" 6256 + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 6257 + integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= 6258 + dependencies: 6259 + makeerror "1.0.x" 6260 + 6261 + webidl-conversions@^5.0.0: 6262 + version "5.0.0" 6263 + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 6264 + integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 6231 6265 6232 - webidl-conversions@^4.0.2: 6233 - version "4.0.2" 6234 - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 6235 - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== 6266 + webidl-conversions@^6.1.0: 6267 + version "6.1.0" 6268 + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 6269 + integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 6236 6270 6237 - webpack-sources@1.4.3, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1: 6238 - version "1.4.3" 6239 - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" 6240 - integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== 6271 + whatwg-encoding@^1.0.5: 6272 + version "1.0.5" 6273 + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 6274 + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 6241 6275 dependencies: 6242 - source-list-map "^2.0.0" 6243 - source-map "~0.6.1" 6276 + iconv-lite "0.4.24" 6244 6277 6245 - webpack@4.43.0: 6246 - version "4.43.0" 6247 - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6" 6248 - integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g== 6278 + whatwg-mimetype@^2.3.0: 6279 + version "2.3.0" 6280 + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 6281 + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 6282 + 6283 + whatwg-url@^8.0.0: 6284 + version "8.2.1" 6285 + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.2.1.tgz#ed73417230784b281fb2a32c3c501738b46167c3" 6286 + integrity sha512-ZmVCr6nfBeaMxEHALLEGy0LszYjpJqf6PVNQUQ1qd9Et+q7Jpygd4rGGDXgHjD8e99yLFseD69msHDM4YwPZ4A== 6249 6287 dependencies: 6250 - "@webassemblyjs/ast" "1.9.0" 6251 - "@webassemblyjs/helper-module-context" "1.9.0" 6252 - "@webassemblyjs/wasm-edit" "1.9.0" 6253 - "@webassemblyjs/wasm-parser" "1.9.0" 6254 - acorn "^6.4.1" 6255 - ajv "^6.10.2" 6256 - ajv-keywords "^3.4.1" 6257 - chrome-trace-event "^1.0.2" 6258 - enhanced-resolve "^4.1.0" 6259 - eslint-scope "^4.0.3" 6260 - json-parse-better-errors "^1.0.2" 6261 - loader-runner "^2.4.0" 6262 - loader-utils "^1.2.3" 6263 - memory-fs "^0.4.1" 6264 - micromatch "^3.1.10" 6265 - mkdirp "^0.5.3" 6266 - neo-async "^2.6.1" 6267 - node-libs-browser "^2.2.1" 6268 - schema-utils "^1.0.0" 6269 - tapable "^1.1.3" 6270 - terser-webpack-plugin "^1.4.3" 6271 - watchpack "^1.6.1" 6272 - webpack-sources "^1.4.1" 6288 + lodash.sortby "^4.7.0" 6289 + tr46 "^2.0.2" 6290 + webidl-conversions "^6.1.0" 6273 6291 6274 - whatwg-fetch@3.0.0: 6275 - version "3.0.0" 6276 - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" 6277 - integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== 6292 + which-module@^2.0.0: 6293 + version "2.0.0" 6294 + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 6295 + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 6278 6296 6279 - whatwg-url@^7.0.0: 6280 - version "7.1.0" 6281 - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" 6282 - integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== 6297 + which@^1.2.9: 6298 + version "1.3.1" 6299 + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 6300 + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 6283 6301 dependencies: 6284 - lodash.sortby "^4.7.0" 6285 - tr46 "^1.0.1" 6286 - webidl-conversions "^4.0.2" 6302 + isexe "^2.0.0" 6287 6303 6288 - worker-farm@^1.7.0: 6289 - version "1.7.0" 6290 - resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" 6291 - integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== 6304 + which@^2.0.1, which@^2.0.2: 6305 + version "2.0.2" 6306 + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 6307 + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 6292 6308 dependencies: 6293 - errno "~0.1.7" 6309 + isexe "^2.0.0" 6310 + 6311 + word-wrap@~1.2.3: 6312 + version "1.2.3" 6313 + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 6314 + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 6294 6315 6295 - worker-rpc@^0.1.0: 6296 - version "0.1.1" 6297 - resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5" 6298 - integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg== 6316 + wrap-ansi@^6.2.0: 6317 + version "6.2.0" 6318 + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 6319 + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 6299 6320 dependencies: 6300 - microevent.ts "~0.1.1" 6321 + ansi-styles "^4.0.0" 6322 + string-width "^4.1.0" 6323 + strip-ansi "^6.0.0" 6301 6324 6302 6325 wrappy@1: 6303 6326 version "1.0.2" 6304 6327 resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 6305 6328 integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 6306 6329 6307 - xtend@^4.0.0, xtend@~4.0.1: 6308 - version "4.0.2" 6309 - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 6310 - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 6330 + write-file-atomic@^3.0.0: 6331 + version "3.0.3" 6332 + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 6333 + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 6334 + dependencies: 6335 + imurmurhash "^0.1.4" 6336 + is-typedarray "^1.0.0" 6337 + signal-exit "^3.0.2" 6338 + typedarray-to-buffer "^3.1.5" 6339 + 6340 + write@^0.2.1: 6341 + version "0.2.1" 6342 + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 6343 + integrity sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c= 6344 + dependencies: 6345 + mkdirp "^0.5.1" 6346 + 6347 + ws@^7.2.3: 6348 + version "7.3.1" 6349 + resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8" 6350 + integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA== 6351 + 6352 + xml-name-validator@^3.0.0: 6353 + version "3.0.0" 6354 + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 6355 + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 6356 + 6357 + xmlchars@^2.2.0: 6358 + version "2.2.0" 6359 + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 6360 + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 6311 6361 6312 6362 y18n@^4.0.0: 6313 6363 version "4.0.0" 6314 6364 resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 6315 6365 integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 6316 6366 6317 - yallist@^3.0.2: 6318 - version "3.1.1" 6319 - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 6320 - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 6367 + yallist@^2.1.2: 6368 + version "2.1.2" 6369 + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 6370 + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 6321 6371 6322 - yallist@^4.0.0: 6323 - version "4.0.0" 6324 - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 6325 - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 6372 + yargs-parser@^18.1.2: 6373 + version "18.1.3" 6374 + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" 6375 + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== 6376 + dependencies: 6377 + camelcase "^5.0.0" 6378 + decamelize "^1.2.0" 6326 6379 6327 - yaml@^1.7.2: 6328 - version "1.10.0" 6329 - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" 6330 - integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== 6380 + yargs@^15.0.0, yargs@^15.3.1: 6381 + version "15.4.1" 6382 + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" 6383 + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== 6384 + dependencies: 6385 + cliui "^6.0.0" 6386 + decamelize "^1.2.0" 6387 + find-up "^4.1.0" 6388 + get-caller-file "^2.0.1" 6389 + require-directory "^2.1.1" 6390 + require-main-filename "^2.0.0" 6391 + set-blocking "^2.0.0" 6392 + string-width "^4.2.0" 6393 + which-module "^2.0.0" 6394 + y18n "^4.0.0" 6395 + yargs-parser "^18.1.2"