Last active
October 25, 2021 22:15
-
-
Save twolfson/1bd4d205114aee20804e73b45d766e6d to your computer and use it in GitHub Desktop.
Tried/failed attempt to reproduce nested dialog issues with Reakit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.st-backdrop { | |
position: absolute; | |
top: 0; left: 0; right: 0; bottom: 0; | |
background-color: #CCC; | |
background-opacity: 75%; | |
perspective: 800px; | |
transition: opacity 250ms ease-in-out; | |
opacity: 0; | |
z-index: 50; | |
} | |
.st-backdrop[data-enter] { | |
opacity: 1; | |
} | |
.st-dialog { | |
background-color: white; | |
transition: opacity 250ms ease-in-out, transform 250ms ease-in-out; | |
opacity: 0; | |
transform: translateY(-20px); | |
} | |
.st-dialog[data-enter] { | |
opacity: 1; | |
transform: translateY(0px); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import './App.css'; | |
import { Dialog, DialogBackdrop, DialogDisclosure, useDialogState } from "reakit/Dialog" | |
const Modal = ({ dialog, children }) => ( | |
<DialogBackdrop {...dialog} className="st-backdrop"> | |
<Dialog | |
{...dialog} | |
className="st-dialog" | |
> | |
<h2 className="">Test</h2> | |
<button | |
onClick={dialog.hide} | |
> | |
× | |
</button> | |
<div>{children}</div> | |
</Dialog> | |
</DialogBackdrop> | |
) | |
export default () => { | |
const outerDialog = useDialogState({ animated: true }) | |
const innerDialog = useDialogState({ animated: true }) | |
return ( | |
<div className="App"> | |
<DialogDisclosure {...outerDialog}> | |
Open outer dialog | |
</DialogDisclosure> | |
<Modal dialog={outerDialog}> | |
test | |
<DialogDisclosure {...innerDialog}> | |
Open inner dialog | |
</DialogDisclosure> | |
<Modal dialog={innerDialog}> | |
test2 | |
</Modal> | |
</Modal> | |
</div> | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path'); | |
// Override paths for gist support, https://stackoverflow.com/a/54625811/1960509 | |
module.exports = { | |
paths: function (paths, env) { | |
// paths = { | |
// dotenv: '/.../github/gist-reakit-nested-dialog/.env', | |
// appPath: '/.../github/gist-reakit-nested-dialog', | |
// appBuild: '/.../github/gist-reakit-nested-dialog/build', | |
// appPublic: '/.../github/gist-reakit-nested-dialog/public', | |
// appHtml: '/.../github/gist-reakit-nested-dialog/public/index.html', | |
// appIndexJs: '/.../github/gist-reakit-nested-dialog/src/index.js', | |
// appPackageJson: '/.../github/gist-reakit-nested-dialog/package.json', | |
// appSrc: '/.../github/gist-reakit-nested-dialog/src', | |
// appTsConfig: '/.../github/gist-reakit-nested-dialog/tsconfig.json', | |
// appJsConfig: '/.../github/gist-reakit-nested-dialog/jsconfig.json', | |
// yarnLockFile: '/.../github/gist-reakit-nested-dialog/yarn.lock', | |
// testsSetup: '/.../github/gist-reakit-nested-dialog/src/setupTests.js', | |
// proxySetup: '/.../github/gist-reakit-nested-dialog/src/setupProxy.js', | |
// appNodeModules: '/.../github/gist-reakit-nested-dialog/node_modules', | |
// swSrc: '/.../github/gist-reakit-nested-dialog/src/service-worker.js', | |
// publicUrlOrPath: '/', | |
// ownPath: '/.../github/gist-reakit-nested-dialog/node_modules/react-scripts', | |
// ownNodeModules: '/.../github/gist-reakit-nested-dialog/node_modules/react-scripts/node_modules', | |
// appTypeDeclarations: '/.../github/gist-reakit-nested-dialog/src/react-app-env.d.ts', | |
// ownTypeDeclarations: '/.../github/gist-reakit-nested-dialog/node_modules/react-scripts/lib/react-app.d.ts', | |
// moduleFileExtensions: [ | |
// 'web.mjs', 'mjs', | |
// 'web.js', 'js', | |
// 'web.ts', 'ts', | |
// 'web.tsx', 'tsx', | |
// 'json', 'web.jsx', | |
// 'jsx' | |
// ] | |
// } | |
paths.appHtml = path.resolve(__dirname, 'index.html'); | |
paths.appIndexJs = path.resolve(__dirname, 'index.js'); | |
paths.appSrc = path.resolve(__dirname, '.'); | |
return paths; | |
}, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
margin: 0; | |
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', | |
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', | |
sans-serif; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
code { | |
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', | |
monospace; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<meta name="theme-color" content="#000000" /> | |
<meta | |
name="description" | |
content="Web site created using create-react-app" | |
/> | |
<title>React App</title> | |
</head> | |
<body> | |
<noscript>You need to enable JavaScript to run this app.</noscript> | |
<div id="root"></div> | |
<!-- | |
This HTML file is a template. | |
If you open it directly in the browser, you will see an empty page. | |
You can add webfonts, meta tags, or analytics to this file. | |
The build step will place the bundled scripts into the <body> tag. | |
To begin the development, run `npm start` or `yarn start`. | |
To create a production bundle, use `npm run build` or `yarn build`. | |
--> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import './index.css'; | |
import App from './App'; | |
ReactDOM.render( | |
<React.StrictMode> | |
<App /> | |
</React.StrictMode>, | |
document.getElementById('root') | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "gist-reakit-nested-dialog", | |
"version": "1.0.0", | |
"lockfileVersion": 1, | |
"requires": true, | |
"dependencies": { | |
"@babel/code-frame": { | |
"version": "7.15.8", | |
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", | |
"integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", | |
"requires": { | |
"@babel/highlight": "^7.14.5" | |
} | |
}, | |
"@babel/compat-data": { | |
"version": "7.15.0", | |
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", | |
"integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==" | |
}, | |
"@babel/core": { | |
"version": "7.12.3", | |
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", | |
"integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", | |
"requires": { | |
"@babel/code-frame": "^7.10.4", | |
"@babel/generator": "^7.12.1", | |
"@babel/helper-module-transforms": "^7.12.1", | |
"@babel/helpers": "^7.12.1", | |
"@babel/parser": "^7.12.3", | |
"@babel/template": "^7.10.4", | |
"@babel/traverse": "^7.12.1", | |
"@babel/types": "^7.12.1", | |
"convert-source-map": "^1.7.0", | |
"debug": "^4.1.0", | |
"gensync": "^1.0.0-beta.1", | |
"json5": "^2.1.2", | |
"lodash": "^4.17.19", | |
"resolve": "^1.3.2", | |
"semver": "^5.4.1", | |
"source-map": "^0.5.0" | |
}, | |
"dependencies": { | |
"semver": { | |
"version": "5.7.1", | |
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", | |
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" | |
}, | |
"source-map": { | |
"version": "0.5.7", | |
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", | |
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" | |
} | |
} | |
}, | |
"@babel/generator": { | |
"version": "7.15.8", | |
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz", | |
"integrity": "sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==", | |
"requires": { | |
"@babel/types": "^7.15.6", | |
"jsesc": "^2.5.1", | |
"source-map": "^0.5.0" | |
}, | |
"dependencies": { | |
"source-map": { | |
"version": "0.5.7", | |
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", | |
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" | |
} | |
} | |
}, | |
"@babel/helper-annotate-as-pure": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz", | |
"integrity": "sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-builder-binary-assignment-operator-visitor": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz", | |
"integrity": "sha512-P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==", | |
"requires": { | |
"@babel/helper-explode-assignable-expression": "^7.15.4", | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-compilation-targets": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz", | |
"integrity": "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==", | |
"requires": { | |
"@babel/compat-data": "^7.15.0", | |
"@babel/helper-validator-option": "^7.14.5", | |
"browserslist": "^4.16.6", | |
"semver": "^6.3.0" | |
}, | |
"dependencies": { | |
"semver": { | |
"version": "6.3.0", | |
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", | |
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" | |
} | |
} | |
}, | |
"@babel/helper-create-class-features-plugin": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz", | |
"integrity": "sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==", | |
"requires": { | |
"@babel/helper-annotate-as-pure": "^7.15.4", | |
"@babel/helper-function-name": "^7.15.4", | |
"@babel/helper-member-expression-to-functions": "^7.15.4", | |
"@babel/helper-optimise-call-expression": "^7.15.4", | |
"@babel/helper-replace-supers": "^7.15.4", | |
"@babel/helper-split-export-declaration": "^7.15.4" | |
} | |
}, | |
"@babel/helper-create-regexp-features-plugin": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz", | |
"integrity": "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==", | |
"requires": { | |
"@babel/helper-annotate-as-pure": "^7.14.5", | |
"regexpu-core": "^4.7.1" | |
} | |
}, | |
"@babel/helper-define-polyfill-provider": { | |
"version": "0.2.3", | |
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz", | |
"integrity": "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==", | |
"requires": { | |
"@babel/helper-compilation-targets": "^7.13.0", | |
"@babel/helper-module-imports": "^7.12.13", | |
"@babel/helper-plugin-utils": "^7.13.0", | |
"@babel/traverse": "^7.13.0", | |
"debug": "^4.1.1", | |
"lodash.debounce": "^4.0.8", | |
"resolve": "^1.14.2", | |
"semver": "^6.1.2" | |
}, | |
"dependencies": { | |
"semver": { | |
"version": "6.3.0", | |
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", | |
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" | |
} | |
} | |
}, | |
"@babel/helper-explode-assignable-expression": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz", | |
"integrity": "sha512-J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-function-name": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz", | |
"integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==", | |
"requires": { | |
"@babel/helper-get-function-arity": "^7.15.4", | |
"@babel/template": "^7.15.4", | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-get-function-arity": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz", | |
"integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-hoist-variables": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz", | |
"integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-member-expression-to-functions": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz", | |
"integrity": "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-module-imports": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz", | |
"integrity": "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-module-transforms": { | |
"version": "7.15.8", | |
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz", | |
"integrity": "sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==", | |
"requires": { | |
"@babel/helper-module-imports": "^7.15.4", | |
"@babel/helper-replace-supers": "^7.15.4", | |
"@babel/helper-simple-access": "^7.15.4", | |
"@babel/helper-split-export-declaration": "^7.15.4", | |
"@babel/helper-validator-identifier": "^7.15.7", | |
"@babel/template": "^7.15.4", | |
"@babel/traverse": "^7.15.4", | |
"@babel/types": "^7.15.6" | |
} | |
}, | |
"@babel/helper-optimise-call-expression": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz", | |
"integrity": "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-plugin-utils": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", | |
"integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==" | |
}, | |
"@babel/helper-remap-async-to-generator": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz", | |
"integrity": "sha512-v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==", | |
"requires": { | |
"@babel/helper-annotate-as-pure": "^7.15.4", | |
"@babel/helper-wrap-function": "^7.15.4", | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-replace-supers": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz", | |
"integrity": "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==", | |
"requires": { | |
"@babel/helper-member-expression-to-functions": "^7.15.4", | |
"@babel/helper-optimise-call-expression": "^7.15.4", | |
"@babel/traverse": "^7.15.4", | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-simple-access": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz", | |
"integrity": "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-skip-transparent-expression-wrappers": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz", | |
"integrity": "sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-split-export-declaration": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz", | |
"integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==", | |
"requires": { | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helper-validator-identifier": { | |
"version": "7.15.7", | |
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", | |
"integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==" | |
}, | |
"@babel/helper-validator-option": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", | |
"integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==" | |
}, | |
"@babel/helper-wrap-function": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz", | |
"integrity": "sha512-Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==", | |
"requires": { | |
"@babel/helper-function-name": "^7.15.4", | |
"@babel/template": "^7.15.4", | |
"@babel/traverse": "^7.15.4", | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/helpers": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz", | |
"integrity": "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==", | |
"requires": { | |
"@babel/template": "^7.15.4", | |
"@babel/traverse": "^7.15.4", | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/highlight": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", | |
"integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", | |
"requires": { | |
"@babel/helper-validator-identifier": "^7.14.5", | |
"chalk": "^2.0.0", | |
"js-tokens": "^4.0.0" | |
} | |
}, | |
"@babel/parser": { | |
"version": "7.15.8", | |
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz", | |
"integrity": "sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==" | |
}, | |
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz", | |
"integrity": "sha512-eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-skip-transparent-expression-wrappers": "^7.15.4", | |
"@babel/plugin-proposal-optional-chaining": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-proposal-async-generator-functions": { | |
"version": "7.15.8", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.8.tgz", | |
"integrity": "sha512-2Z5F2R2ibINTc63mY7FLqGfEbmofrHU9FitJW1Q7aPaKFhiPvSq6QEt/BoWN5oME3GVyjcRuNNSRbb9LC0CSWA==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-remap-async-to-generator": "^7.15.4", | |
"@babel/plugin-syntax-async-generators": "^7.8.4" | |
} | |
}, | |
"@babel/plugin-proposal-class-properties": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz", | |
"integrity": "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==", | |
"requires": { | |
"@babel/helper-create-class-features-plugin": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-proposal-class-static-block": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz", | |
"integrity": "sha512-M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA==", | |
"requires": { | |
"@babel/helper-create-class-features-plugin": "^7.15.4", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-class-static-block": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-proposal-decorators": { | |
"version": "7.12.1", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz", | |
"integrity": "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==", | |
"requires": { | |
"@babel/helper-create-class-features-plugin": "^7.12.1", | |
"@babel/helper-plugin-utils": "^7.10.4", | |
"@babel/plugin-syntax-decorators": "^7.12.1" | |
} | |
}, | |
"@babel/plugin-proposal-dynamic-import": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz", | |
"integrity": "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-dynamic-import": "^7.8.3" | |
} | |
}, | |
"@babel/plugin-proposal-export-namespace-from": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz", | |
"integrity": "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-export-namespace-from": "^7.8.3" | |
} | |
}, | |
"@babel/plugin-proposal-json-strings": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz", | |
"integrity": "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-json-strings": "^7.8.3" | |
} | |
}, | |
"@babel/plugin-proposal-logical-assignment-operators": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz", | |
"integrity": "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" | |
} | |
}, | |
"@babel/plugin-proposal-nullish-coalescing-operator": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", | |
"integrity": "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" | |
} | |
}, | |
"@babel/plugin-proposal-numeric-separator": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz", | |
"integrity": "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-numeric-separator": "^7.10.4" | |
} | |
}, | |
"@babel/plugin-proposal-object-rest-spread": { | |
"version": "7.15.6", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz", | |
"integrity": "sha512-qtOHo7A1Vt+O23qEAX+GdBpqaIuD3i9VRrWgCJeq7WO6H2d14EK3q11urj5Te2MAeK97nMiIdRpwd/ST4JFbNg==", | |
"requires": { | |
"@babel/compat-data": "^7.15.0", | |
"@babel/helper-compilation-targets": "^7.15.4", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-object-rest-spread": "^7.8.3", | |
"@babel/plugin-transform-parameters": "^7.15.4" | |
} | |
}, | |
"@babel/plugin-proposal-optional-catch-binding": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz", | |
"integrity": "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3" | |
} | |
}, | |
"@babel/plugin-proposal-optional-chaining": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz", | |
"integrity": "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", | |
"@babel/plugin-syntax-optional-chaining": "^7.8.3" | |
} | |
}, | |
"@babel/plugin-proposal-private-methods": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz", | |
"integrity": "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==", | |
"requires": { | |
"@babel/helper-create-class-features-plugin": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-proposal-private-property-in-object": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz", | |
"integrity": "sha512-X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA==", | |
"requires": { | |
"@babel/helper-annotate-as-pure": "^7.15.4", | |
"@babel/helper-create-class-features-plugin": "^7.15.4", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-private-property-in-object": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-proposal-unicode-property-regex": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz", | |
"integrity": "sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==", | |
"requires": { | |
"@babel/helper-create-regexp-features-plugin": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-syntax-async-generators": { | |
"version": "7.8.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", | |
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.8.0" | |
} | |
}, | |
"@babel/plugin-syntax-bigint": { | |
"version": "7.8.3", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", | |
"integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.8.0" | |
} | |
}, | |
"@babel/plugin-syntax-class-properties": { | |
"version": "7.12.13", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", | |
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.12.13" | |
} | |
}, | |
"@babel/plugin-syntax-class-static-block": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", | |
"integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-syntax-decorators": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.14.5.tgz", | |
"integrity": "sha512-c4sZMRWL4GSvP1EXy0woIP7m4jkVcEuG8R1TOZxPBPtp4FSM/kiPZub9UIs/Jrb5ZAOzvTUSGYrWsrSu1JvoPw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-syntax-dynamic-import": { | |
"version": "7.8.3", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", | |
"integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.8.0" | |
} | |
}, | |
"@babel/plugin-syntax-export-namespace-from": { | |
"version": "7.8.3", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", | |
"integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.8.3" | |
} | |
}, | |
"@babel/plugin-syntax-flow": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz", | |
"integrity": "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-syntax-import-meta": { | |
"version": "7.10.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", | |
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.10.4" | |
} | |
}, | |
"@babel/plugin-syntax-json-strings": { | |
"version": "7.8.3", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", | |
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.8.0" | |
} | |
}, | |
"@babel/plugin-syntax-jsx": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz", | |
"integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-syntax-logical-assignment-operators": { | |
"version": "7.10.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", | |
"integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.10.4" | |
} | |
}, | |
"@babel/plugin-syntax-nullish-coalescing-operator": { | |
"version": "7.8.3", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", | |
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.8.0" | |
} | |
}, | |
"@babel/plugin-syntax-numeric-separator": { | |
"version": "7.10.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", | |
"integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.10.4" | |
} | |
}, | |
"@babel/plugin-syntax-object-rest-spread": { | |
"version": "7.8.3", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", | |
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.8.0" | |
} | |
}, | |
"@babel/plugin-syntax-optional-catch-binding": { | |
"version": "7.8.3", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", | |
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.8.0" | |
} | |
}, | |
"@babel/plugin-syntax-optional-chaining": { | |
"version": "7.8.3", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", | |
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.8.0" | |
} | |
}, | |
"@babel/plugin-syntax-private-property-in-object": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", | |
"integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-syntax-top-level-await": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", | |
"integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-syntax-typescript": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", | |
"integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-arrow-functions": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz", | |
"integrity": "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-async-to-generator": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz", | |
"integrity": "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==", | |
"requires": { | |
"@babel/helper-module-imports": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-remap-async-to-generator": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-block-scoped-functions": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz", | |
"integrity": "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-block-scoping": { | |
"version": "7.15.3", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz", | |
"integrity": "sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-classes": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz", | |
"integrity": "sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==", | |
"requires": { | |
"@babel/helper-annotate-as-pure": "^7.15.4", | |
"@babel/helper-function-name": "^7.15.4", | |
"@babel/helper-optimise-call-expression": "^7.15.4", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-replace-supers": "^7.15.4", | |
"@babel/helper-split-export-declaration": "^7.15.4", | |
"globals": "^11.1.0" | |
} | |
}, | |
"@babel/plugin-transform-computed-properties": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz", | |
"integrity": "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-destructuring": { | |
"version": "7.14.7", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz", | |
"integrity": "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-dotall-regex": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz", | |
"integrity": "sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==", | |
"requires": { | |
"@babel/helper-create-regexp-features-plugin": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-duplicate-keys": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz", | |
"integrity": "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-exponentiation-operator": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz", | |
"integrity": "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==", | |
"requires": { | |
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-flow-strip-types": { | |
"version": "7.12.1", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz", | |
"integrity": "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.10.4", | |
"@babel/plugin-syntax-flow": "^7.12.1" | |
} | |
}, | |
"@babel/plugin-transform-for-of": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz", | |
"integrity": "sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-function-name": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz", | |
"integrity": "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==", | |
"requires": { | |
"@babel/helper-function-name": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-literals": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz", | |
"integrity": "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-member-expression-literals": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz", | |
"integrity": "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-modules-amd": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz", | |
"integrity": "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==", | |
"requires": { | |
"@babel/helper-module-transforms": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"babel-plugin-dynamic-import-node": "^2.3.3" | |
} | |
}, | |
"@babel/plugin-transform-modules-commonjs": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz", | |
"integrity": "sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==", | |
"requires": { | |
"@babel/helper-module-transforms": "^7.15.4", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-simple-access": "^7.15.4", | |
"babel-plugin-dynamic-import-node": "^2.3.3" | |
} | |
}, | |
"@babel/plugin-transform-modules-systemjs": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz", | |
"integrity": "sha512-fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==", | |
"requires": { | |
"@babel/helper-hoist-variables": "^7.15.4", | |
"@babel/helper-module-transforms": "^7.15.4", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-validator-identifier": "^7.14.9", | |
"babel-plugin-dynamic-import-node": "^2.3.3" | |
} | |
}, | |
"@babel/plugin-transform-modules-umd": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz", | |
"integrity": "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==", | |
"requires": { | |
"@babel/helper-module-transforms": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-named-capturing-groups-regex": { | |
"version": "7.14.9", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz", | |
"integrity": "sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==", | |
"requires": { | |
"@babel/helper-create-regexp-features-plugin": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-new-target": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz", | |
"integrity": "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-object-super": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz", | |
"integrity": "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-replace-supers": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-parameters": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz", | |
"integrity": "sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-property-literals": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz", | |
"integrity": "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-react-constant-elements": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.14.5.tgz", | |
"integrity": "sha512-NBqLEx1GxllIOXJInJAQbrnwwYJsV3WaMHIcOwD8rhYS0AabTWn7kHdHgPgu5RmHLU0q4DMxhAMu8ue/KampgQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-react-display-name": { | |
"version": "7.15.1", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz", | |
"integrity": "sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-react-jsx": { | |
"version": "7.14.9", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz", | |
"integrity": "sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw==", | |
"requires": { | |
"@babel/helper-annotate-as-pure": "^7.14.5", | |
"@babel/helper-module-imports": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-jsx": "^7.14.5", | |
"@babel/types": "^7.14.9" | |
} | |
}, | |
"@babel/plugin-transform-react-jsx-development": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.14.5.tgz", | |
"integrity": "sha512-rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ==", | |
"requires": { | |
"@babel/plugin-transform-react-jsx": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-react-jsx-self": { | |
"version": "7.14.9", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.9.tgz", | |
"integrity": "sha512-Fqqu0f8zv9W+RyOnx29BX/RlEsBRANbOf5xs5oxb2aHP4FKbLXxIaVPUiCti56LAR1IixMH4EyaixhUsKqoBHw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-react-jsx-source": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.5.tgz", | |
"integrity": "sha512-1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-react-pure-annotations": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.14.5.tgz", | |
"integrity": "sha512-3X4HpBJimNxW4rhUy/SONPyNQHp5YRr0HhJdT2OH1BRp0of7u3Dkirc7x9FRJMKMqTBI079VZ1hzv7Ouuz///g==", | |
"requires": { | |
"@babel/helper-annotate-as-pure": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-regenerator": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz", | |
"integrity": "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==", | |
"requires": { | |
"regenerator-transform": "^0.14.2" | |
} | |
}, | |
"@babel/plugin-transform-reserved-words": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz", | |
"integrity": "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-runtime": { | |
"version": "7.12.1", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz", | |
"integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==", | |
"requires": { | |
"@babel/helper-module-imports": "^7.12.1", | |
"@babel/helper-plugin-utils": "^7.10.4", | |
"resolve": "^1.8.1", | |
"semver": "^5.5.1" | |
}, | |
"dependencies": { | |
"semver": { | |
"version": "5.7.1", | |
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", | |
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" | |
} | |
} | |
}, | |
"@babel/plugin-transform-shorthand-properties": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz", | |
"integrity": "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-spread": { | |
"version": "7.15.8", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.15.8.tgz", | |
"integrity": "sha512-/daZ8s2tNaRekl9YJa9X4bzjpeRZLt122cpgFnQPLGUe61PH8zMEBmYqKkW5xF5JUEh5buEGXJoQpqBmIbpmEQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-skip-transparent-expression-wrappers": "^7.15.4" | |
} | |
}, | |
"@babel/plugin-transform-sticky-regex": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz", | |
"integrity": "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-template-literals": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz", | |
"integrity": "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-typeof-symbol": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz", | |
"integrity": "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-typescript": { | |
"version": "7.15.8", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.8.tgz", | |
"integrity": "sha512-ZXIkJpbaf6/EsmjeTbiJN/yMxWPFWvlr7sEG1P95Xb4S4IBcrf2n7s/fItIhsAmOf8oSh3VJPDppO6ExfAfKRQ==", | |
"requires": { | |
"@babel/helper-create-class-features-plugin": "^7.15.4", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/plugin-syntax-typescript": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-unicode-escapes": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz", | |
"integrity": "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/plugin-transform-unicode-regex": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz", | |
"integrity": "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==", | |
"requires": { | |
"@babel/helper-create-regexp-features-plugin": "^7.14.5", | |
"@babel/helper-plugin-utils": "^7.14.5" | |
} | |
}, | |
"@babel/preset-env": { | |
"version": "7.15.8", | |
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.8.tgz", | |
"integrity": "sha512-rCC0wH8husJgY4FPbHsiYyiLxSY8oMDJH7Rl6RQMknbN9oDDHhM9RDFvnGM2MgkbUJzSQB4gtuwygY5mCqGSsA==", | |
"requires": { | |
"@babel/compat-data": "^7.15.0", | |
"@babel/helper-compilation-targets": "^7.15.4", | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-validator-option": "^7.14.5", | |
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4", | |
"@babel/plugin-proposal-async-generator-functions": "^7.15.8", | |
"@babel/plugin-proposal-class-properties": "^7.14.5", | |
"@babel/plugin-proposal-class-static-block": "^7.15.4", | |
"@babel/plugin-proposal-dynamic-import": "^7.14.5", | |
"@babel/plugin-proposal-export-namespace-from": "^7.14.5", | |
"@babel/plugin-proposal-json-strings": "^7.14.5", | |
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", | |
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", | |
"@babel/plugin-proposal-numeric-separator": "^7.14.5", | |
"@babel/plugin-proposal-object-rest-spread": "^7.15.6", | |
"@babel/plugin-proposal-optional-catch-binding": "^7.14.5", | |
"@babel/plugin-proposal-optional-chaining": "^7.14.5", | |
"@babel/plugin-proposal-private-methods": "^7.14.5", | |
"@babel/plugin-proposal-private-property-in-object": "^7.15.4", | |
"@babel/plugin-proposal-unicode-property-regex": "^7.14.5", | |
"@babel/plugin-syntax-async-generators": "^7.8.4", | |
"@babel/plugin-syntax-class-properties": "^7.12.13", | |
"@babel/plugin-syntax-class-static-block": "^7.14.5", | |
"@babel/plugin-syntax-dynamic-import": "^7.8.3", | |
"@babel/plugin-syntax-export-namespace-from": "^7.8.3", | |
"@babel/plugin-syntax-json-strings": "^7.8.3", | |
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", | |
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", | |
"@babel/plugin-syntax-numeric-separator": "^7.10.4", | |
"@babel/plugin-syntax-object-rest-spread": "^7.8.3", | |
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3", | |
"@babel/plugin-syntax-optional-chaining": "^7.8.3", | |
"@babel/plugin-syntax-private-property-in-object": "^7.14.5", | |
"@babel/plugin-syntax-top-level-await": "^7.14.5", | |
"@babel/plugin-transform-arrow-functions": "^7.14.5", | |
"@babel/plugin-transform-async-to-generator": "^7.14.5", | |
"@babel/plugin-transform-block-scoped-functions": "^7.14.5", | |
"@babel/plugin-transform-block-scoping": "^7.15.3", | |
"@babel/plugin-transform-classes": "^7.15.4", | |
"@babel/plugin-transform-computed-properties": "^7.14.5", | |
"@babel/plugin-transform-destructuring": "^7.14.7", | |
"@babel/plugin-transform-dotall-regex": "^7.14.5", | |
"@babel/plugin-transform-duplicate-keys": "^7.14.5", | |
"@babel/plugin-transform-exponentiation-operator": "^7.14.5", | |
"@babel/plugin-transform-for-of": "^7.15.4", | |
"@babel/plugin-transform-function-name": "^7.14.5", | |
"@babel/plugin-transform-literals": "^7.14.5", | |
"@babel/plugin-transform-member-expression-literals": "^7.14.5", | |
"@babel/plugin-transform-modules-amd": "^7.14.5", | |
"@babel/plugin-transform-modules-commonjs": "^7.15.4", | |
"@babel/plugin-transform-modules-systemjs": "^7.15.4", | |
"@babel/plugin-transform-modules-umd": "^7.14.5", | |
"@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", | |
"@babel/plugin-transform-new-target": "^7.14.5", | |
"@babel/plugin-transform-object-super": "^7.14.5", | |
"@babel/plugin-transform-parameters": "^7.15.4", | |
"@babel/plugin-transform-property-literals": "^7.14.5", | |
"@babel/plugin-transform-regenerator": "^7.14.5", | |
"@babel/plugin-transform-reserved-words": "^7.14.5", | |
"@babel/plugin-transform-shorthand-properties": "^7.14.5", | |
"@babel/plugin-transform-spread": "^7.15.8", | |
"@babel/plugin-transform-sticky-regex": "^7.14.5", | |
"@babel/plugin-transform-template-literals": "^7.14.5", | |
"@babel/plugin-transform-typeof-symbol": "^7.14.5", | |
"@babel/plugin-transform-unicode-escapes": "^7.14.5", | |
"@babel/plugin-transform-unicode-regex": "^7.14.5", | |
"@babel/preset-modules": "^0.1.4", | |
"@babel/types": "^7.15.6", | |
"babel-plugin-polyfill-corejs2": "^0.2.2", | |
"babel-plugin-polyfill-corejs3": "^0.2.5", | |
"babel-plugin-polyfill-regenerator": "^0.2.2", | |
"core-js-compat": "^3.16.0", | |
"semver": "^6.3.0" | |
}, | |
"dependencies": { | |
"semver": { | |
"version": "6.3.0", | |
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", | |
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" | |
} | |
} | |
}, | |
"@babel/preset-modules": { | |
"version": "0.1.5", | |
"resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", | |
"integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.0.0", | |
"@babel/plugin-proposal-unicode-property-regex": "^7.4.4", | |
"@babel/plugin-transform-dotall-regex": "^7.4.4", | |
"@babel/types": "^7.4.4", | |
"esutils": "^2.0.2" | |
} | |
}, | |
"@babel/preset-react": { | |
"version": "7.14.5", | |
"resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.14.5.tgz", | |
"integrity": "sha512-XFxBkjyObLvBaAvkx1Ie95Iaq4S/GUEIrejyrntQ/VCMKUYvKLoyKxOBzJ2kjA3b6rC9/KL6KXfDC2GqvLiNqQ==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.14.5", | |
"@babel/helper-validator-option": "^7.14.5", | |
"@babel/plugin-transform-react-display-name": "^7.14.5", | |
"@babel/plugin-transform-react-jsx": "^7.14.5", | |
"@babel/plugin-transform-react-jsx-development": "^7.14.5", | |
"@babel/plugin-transform-react-pure-annotations": "^7.14.5" | |
} | |
}, | |
"@babel/preset-typescript": { | |
"version": "7.12.1", | |
"resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz", | |
"integrity": "sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==", | |
"requires": { | |
"@babel/helper-plugin-utils": "^7.10.4", | |
"@babel/plugin-transform-typescript": "^7.12.1" | |
} | |
}, | |
"@babel/runtime": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz", | |
"integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==", | |
"requires": { | |
"regenerator-runtime": "^0.13.4" | |
} | |
}, | |
"@babel/runtime-corejs3": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz", | |
"integrity": "sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==", | |
"requires": { | |
"core-js-pure": "^3.16.0", | |
"regenerator-runtime": "^0.13.4" | |
} | |
}, | |
"@babel/template": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz", | |
"integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==", | |
"requires": { | |
"@babel/code-frame": "^7.14.5", | |
"@babel/parser": "^7.15.4", | |
"@babel/types": "^7.15.4" | |
} | |
}, | |
"@babel/traverse": { | |
"version": "7.15.4", | |
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz", | |
"integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==", | |
"requires": { | |
"@babel/code-frame": "^7.14.5", | |
"@babel/generator": "^7.15.4", | |
"@babel/helper-function-name": "^7.15.4", | |
"@babel/helper-hoist-variables": "^7.15.4", | |
"@babel/helper-split-export-declaration": "^7.15.4", | |
"@babel/parser": "^7.15.4", | |
"@babel/types": "^7.15.4", | |
"debug": "^4.1.0", | |
"globals": "^11.1.0" | |
} | |
}, | |
"@babel/types": { | |
"version": "7.15.6", | |
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz", | |
"integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==", | |
"requires": { | |
"@babel/helper-validator-identifier": "^7.14.9", | |
"to-fast-properties": "^2.0.0" | |
} | |
}, | |
"@bcoe/v8-coverage": { | |
"version": "0.2.3", | |
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", | |
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" | |
}, | |
"@cnakazawa/watch": { | |
"version": "1.0.4", | |
"resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", | |
"integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", | |
"requires": { | |
"exec-sh": "^0.3.2", | |
"minimist": "^1.2.0" | |
} | |
}, | |
"@csstools/convert-colors": { | |
"version": "1.4.0", | |
"resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", | |
"integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" | |
}, | |
"@csstools/normalize.css": { | |
"version": "10.1.0", | |
"resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", | |
"integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" | |
}, | |
"@eslint/eslintrc": { | |
"version": "0.4.3", | |
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", | |
"integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", | |
"requires": { | |
"ajv": "^6.12.4", | |
"debug": "^4.1.1", | |
"espree": "^7.3.0", | |
"globals": "^13.9.0", | |
"ignore": "^4.0.6", | |
"import-fresh": "^3.2.1", | |
"js-yaml": "^3.13.1", | |
"minimatch": "^3.0.4", | |
"strip-json-comments": "^3.1.1" | |
}, | |
"dependencies": { | |
"globals": { | |
"version": "13.11.0", | |
"resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", | |
"integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", | |
"requires": { | |
"type-fest": "^0.20.2" | |
} | |
}, | |
"ignore": { | |
"version": "4.0.6", | |
"resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", | |
"integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" | |
} | |
} | |
}, | |
"@gar/promisify": { | |
"version": "1.1.2", | |
"resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz", | |
"integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==" | |
}, | |
"@hapi/address": { | |
"version": "2.1.4", | |
"resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", | |
"integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==" | |
}, | |
"@hapi/bourne": { | |
"version": "1.3.2", | |
"resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", | |
"integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==" | |
}, | |
"@hapi/hoek": { | |
"version": "8.5.1", | |
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", | |
"integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==" | |
}, | |
"@hapi/joi": { | |
"version": "15.1.1", | |
"resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", | |
"integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", | |
"requires": { | |
"@hapi/address": "2.x.x", | |
"@hapi/bourne": "1.x.x", | |
"@hapi/hoek": "8.x.x", | |
"@hapi/topo": "3.x.x" | |
} | |
}, | |
"@hapi/topo": { | |
"version": "3.1.6", | |
"resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", | |
"integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", | |
"requires": { | |
"@hapi/hoek": "^8.3.0" | |
} | |
}, | |
"@humanwhocodes/config-array": { | |
"version": "0.5.0", | |
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", | |
"integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", | |
"requires": { | |
"@humanwhocodes/object-schema": "^1.2.0", | |
"debug": "^4.1.1", | |
"minimatch": "^3.0.4" | |
} | |
}, | |
"@humanwhocodes/object-schema": { | |
"version": "1.2.0", | |
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz", | |
"integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==" | |
}, | |
"@istanbuljs/load-nyc-config": { | |
"version": "1.1.0", | |
"resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", | |
"integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", | |
"requires": { | |
"camelcase": "^5.3.1", | |
"find-up": "^4.1.0", | |
"get-package-type": "^0.1.0", | |
"js-yaml": "^3.13.1", | |
"resolve-from": "^5.0.0" | |
}, | |
"dependencies": { | |
"camelcase": { | |
"version": "5.3.1", | |
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", | |
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" | |
}, | |
"resolve-from": { | |
"version": "5.0.0", | |
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", | |
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" | |
} | |
} | |
}, | |
"@istanbuljs/schema": { | |
"version": "0.1.3", | |
"resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", | |
"integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" | |
}, | |
"@jest/console": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", | |
"integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", | |
"requires": { | |
"@jest/types": "^26.6.2", | |
"@types/node": "*", | |
"chalk": "^4.0.0", | |
"jest-message-util": "^26.6.2", | |
"jest-util": "^26.6.2", | |
"slash": "^3.0.0" | |
}, | |
"dependencies": { | |
"ansi-styles": { | |
"version": "4.3.0", | |
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", | |
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", | |
"requires": { | |
"color-convert": "^2.0.1" | |
} | |
}, | |
"chalk": { | |
"version": "4.1.2", | |
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", | |
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", | |
"requires": { | |
"ansi-styles": "^4.1.0", | |
"supports-color": "^7.1.0" | |
} | |
}, | |
"color-convert": { | |
"version": "2.0.1", | |
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", | |
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", | |
"requires": { | |
"color-name": "~1.1.4" | |
} | |
}, | |
"color-name": { | |
"version": "1.1.4", | |
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", | |
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" | |
}, | |
"has-flag": { | |
"version": "4.0.0", | |
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", | |
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" | |
}, | |
"supports-color": { | |
"version": "7.2.0", | |
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", | |
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", | |
"requires": { | |
"has-flag": "^4.0.0" | |
} | |
} | |
} | |
}, | |
"@jest/core": { | |
"version": "26.6.3", | |
"resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", | |
"integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", | |
"requires": { | |
"@jest/console": "^26.6.2", | |
"@jest/reporters": "^26.6.2", | |
"@jest/test-result": "^26.6.2", | |
"@jest/transform": "^26.6.2", | |
"@jest/types": "^26.6.2", | |
"@types/node": "*", | |
"ansi-escapes": "^4.2.1", | |
"chalk": "^4.0.0", | |
"exit": "^0.1.2", | |
"graceful-fs": "^4.2.4", | |
"jest-changed-files": "^26.6.2", | |
"jest-config": "^26.6.3", | |
"jest-haste-map": "^26.6.2", | |
"jest-message-util": "^26.6.2", | |
"jest-regex-util": "^26.0.0", | |
"jest-resolve": "^26.6.2", | |
"jest-resolve-dependencies": "^26.6.3", | |
"jest-runner": "^26.6.3", | |
"jest-runtime": "^26.6.3", | |
"jest-snapshot": "^26.6.2", | |
"jest-util": "^26.6.2", | |
"jest-validate": "^26.6.2", | |
"jest-watcher": "^26.6.2", | |
"micromatch": "^4.0.2", | |
"p-each-series": "^2.1.0", | |
"rimraf": "^3.0.0", | |
"slash": "^3.0.0", | |
"strip-ansi": "^6.0.0" | |
}, | |
"dependencies": { | |
"ansi-styles": { | |
"version": "4.3.0", | |
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", | |
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", | |
"requires": { | |
"color-convert": "^2.0.1" | |
} | |
}, | |
"chalk": { | |
"version": "4.1.2", | |
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", | |
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", | |
"requires": { | |
"ansi-styles": "^4.1.0", | |
"supports-color": "^7.1.0" | |
} | |
}, | |
"color-convert": { | |
"version": "2.0.1", | |
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", | |
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", | |
"requires": { | |
"color-name": "~1.1.4" | |
} | |
}, | |
"color-name": { | |
"version": "1.1.4", | |
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", | |
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" | |
}, | |
"has-flag": { | |
"version": "4.0.0", | |
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", | |
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" | |
}, | |
"jest-resolve": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", | |
"integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", | |
"requires": { | |
"@jest/types": "^26.6.2", | |
"chalk": "^4.0.0", | |
"graceful-fs": "^4.2.4", | |
"jest-pnp-resolver": "^1.2.2", | |
"jest-util": "^26.6.2", | |
"read-pkg-up": "^7.0.1", | |
"resolve": "^1.18.1", | |
"slash": "^3.0.0" | |
} | |
}, | |
"supports-color": { | |
"version": "7.2.0", | |
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", | |
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", | |
"requires": { | |
"has-flag": "^4.0.0" | |
} | |
} | |
} | |
}, | |
"@jest/environment": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", | |
"integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", | |
"requires": { | |
"@jest/fake-timers": "^26.6.2", | |
"@jest/types": "^26.6.2", | |
"@types/node": "*", | |
"jest-mock": "^26.6.2" | |
} | |
}, | |
"@jest/fake-timers": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", | |
"integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", | |
"requires": { | |
"@jest/types": "^26.6.2", | |
"@sinonjs/fake-timers": "^6.0.1", | |
"@types/node": "*", | |
"jest-message-util": "^26.6.2", | |
"jest-mock": "^26.6.2", | |
"jest-util": "^26.6.2" | |
} | |
}, | |
"@jest/globals": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", | |
"integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", | |
"requires": { | |
"@jest/environment": "^26.6.2", | |
"@jest/types": "^26.6.2", | |
"expect": "^26.6.2" | |
} | |
}, | |
"@jest/reporters": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", | |
"integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", | |
"requires": { | |
"@bcoe/v8-coverage": "^0.2.3", | |
"@jest/console": "^26.6.2", | |
"@jest/test-result": "^26.6.2", | |
"@jest/transform": "^26.6.2", | |
"@jest/types": "^26.6.2", | |
"chalk": "^4.0.0", | |
"collect-v8-coverage": "^1.0.0", | |
"exit": "^0.1.2", | |
"glob": "^7.1.2", | |
"graceful-fs": "^4.2.4", | |
"istanbul-lib-coverage": "^3.0.0", | |
"istanbul-lib-instrument": "^4.0.3", | |
"istanbul-lib-report": "^3.0.0", | |
"istanbul-lib-source-maps": "^4.0.0", | |
"istanbul-reports": "^3.0.2", | |
"jest-haste-map": "^26.6.2", | |
"jest-resolve": "^26.6.2", | |
"jest-util": "^26.6.2", | |
"jest-worker": "^26.6.2", | |
"node-notifier": "^8.0.0", | |
"slash": "^3.0.0", | |
"source-map": "^0.6.0", | |
"string-length": "^4.0.1", | |
"terminal-link": "^2.0.0", | |
"v8-to-istanbul": "^7.0.0" | |
}, | |
"dependencies": { | |
"ansi-styles": { | |
"version": "4.3.0", | |
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", | |
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", | |
"requires": { | |
"color-convert": "^2.0.1" | |
} | |
}, | |
"chalk": { | |
"version": "4.1.2", | |
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", | |
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", | |
"requires": { | |
"ansi-styles": "^4.1.0", | |
"supports-color": "^7.1.0" | |
} | |
}, | |
"color-convert": { | |
"version": "2.0.1", | |
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", | |
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", | |
"requires": { | |
"color-name": "~1.1.4" | |
} | |
}, | |
"color-name": { | |
"version": "1.1.4", | |
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", | |
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" | |
}, | |
"has-flag": { | |
"version": "4.0.0", | |
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", | |
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" | |
}, | |
"istanbul-lib-instrument": { | |
"version": "4.0.3", | |
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", | |
"integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", | |
"requires": { | |
"@babel/core": "^7.7.5", | |
"@istanbuljs/schema": "^0.1.2", | |
"istanbul-lib-coverage": "^3.0.0", | |
"semver": "^6.3.0" | |
} | |
}, | |
"jest-resolve": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", | |
"integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", | |
"requires": { | |
"@jest/types": "^26.6.2", | |
"chalk": "^4.0.0", | |
"graceful-fs": "^4.2.4", | |
"jest-pnp-resolver": "^1.2.2", | |
"jest-util": "^26.6.2", | |
"read-pkg-up": "^7.0.1", | |
"resolve": "^1.18.1", | |
"slash": "^3.0.0" | |
} | |
}, | |
"semver": { | |
"version": "6.3.0", | |
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", | |
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" | |
}, | |
"supports-color": { | |
"version": "7.2.0", | |
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", | |
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", | |
"requires": { | |
"has-flag": "^4.0.0" | |
} | |
} | |
} | |
}, | |
"@jest/source-map": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", | |
"integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", | |
"requires": { | |
"callsites": "^3.0.0", | |
"graceful-fs": "^4.2.4", | |
"source-map": "^0.6.0" | |
} | |
}, | |
"@jest/test-result": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", | |
"integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", | |
"requires": { | |
"@jest/console": "^26.6.2", | |
"@jest/types": "^26.6.2", | |
"@types/istanbul-lib-coverage": "^2.0.0", | |
"collect-v8-coverage": "^1.0.0" | |
} | |
}, | |
"@jest/test-sequencer": { | |
"version": "26.6.3", | |
"resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", | |
"integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", | |
"requires": { | |
"@jest/test-result": "^26.6.2", | |
"graceful-fs": "^4.2.4", | |
"jest-haste-map": "^26.6.2", | |
"jest-runner": "^26.6.3", | |
"jest-runtime": "^26.6.3" | |
} | |
}, | |
"@jest/transform": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", | |
"integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", | |
"requires": { | |
"@babel/core": "^7.1.0", | |
"@jest/types": "^26.6.2", | |
"babel-plugin-istanbul": "^6.0.0", | |
"chalk": "^4.0.0", | |
"convert-source-map": "^1.4.0", | |
"fast-json-stable-stringify": "^2.0.0", | |
"graceful-fs": "^4.2.4", | |
"jest-haste-map": "^26.6.2", | |
"jest-regex-util": "^26.0.0", | |
"jest-util": "^26.6.2", | |
"micromatch": "^4.0.2", | |
"pirates": "^4.0.1", | |
"slash": "^3.0.0", | |
"source-map": "^0.6.1", | |
"write-file-atomic": "^3.0.0" | |
}, | |
"dependencies": { | |
"ansi-styles": { | |
"version": "4.3.0", | |
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", | |
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", | |
"requires": { | |
"color-convert": "^2.0.1" | |
} | |
}, | |
"chalk": { | |
"version": "4.1.2", | |
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", | |
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", | |
"requires": { | |
"ansi-styles": "^4.1.0", | |
"supports-color": "^7.1.0" | |
} | |
}, | |
"color-convert": { | |
"version": "2.0.1", | |
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", | |
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", | |
"requires": { | |
"color-name": "~1.1.4" | |
} | |
}, | |
"color-name": { | |
"version": "1.1.4", | |
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", | |
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" | |
}, | |
"has-flag": { | |
"version": "4.0.0", | |
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", | |
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" | |
}, | |
"supports-color": { | |
"version": "7.2.0", | |
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", | |
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", | |
"requires": { | |
"has-flag": "^4.0.0" | |
} | |
} | |
} | |
}, | |
"@jest/types": { | |
"version": "26.6.2", | |
"resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", | |
"integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", | |
"requires": { | |
"@types/istanbul-lib-coverage": "^2.0.0", | |
"@types/istanbul-reports": "^3.0.0", | |
"@types/node": "*", | |
"@types/yargs": "^15.0.0", | |
"chalk": "^4.0.0" | |
}, | |
"dependencies": { | |
"ansi-styles": { | |
"version": "4.3.0", | |
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", | |
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", | |
"requires": { | |
"color-convert": "^2.0.1" | |
} | |
}, | |
"chalk": { | |
"version": "4.1.2", | |
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", | |
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", | |
"requires": { | |
"ansi-styles": "^4.1.0", | |
"supports-color": "^7.1.0" | |
} | |
}, | |
"color-convert": { | |
"version": "2.0.1", | |
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", | |
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", | |
"requires": { | |
"color-name": "~1.1.4" | |
} | |
}, | |
"color-name": { | |
"version": "1.1.4", | |
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", | |
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" | |
}, | |
"has-flag": { | |
"version": "4.0.0", | |
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", | |
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" | |
}, | |
"supports-color": { | |
"version": "7.2.0", | |
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", | |
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", | |
"requires": { | |
"has-flag": "^4.0.0" | |
} | |
} | |
} | |
}, | |
"@nodelib/fs.scandir": { | |
"version": "2.1.5", | |
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", | |
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", | |
"requires": { | |
"@nodelib/fs.stat": "2.0.5", | |
"run-parallel": "^1.1.9" | |
} | |
}, | |
"@nodelib/fs.stat": { | |
"version": "2.0.5", | |
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", | |
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" | |
}, | |
"@nodelib/fs.walk": { | |
"version": "1.2.8", | |
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", | |
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", | |
"requires": { | |
"@nodelib/fs.scandir": "2.1.5", | |
"fastq": "^1.6.0" | |
} | |
}, | |
"@npmcli/fs": { | |
"version": "1.0.0", | |
"resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.0.0.tgz", | |
"integrity": "sha512-8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ==", | |
"requires": { | |
"@gar/promisify": "^1.0.1", | |
"semver": "^7.3.5" | |
} | |
}, | |
"@npmcli/move-file": { | |
"version": "1.1.2", | |
"resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", | |
"integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", | |
"requires": { | |
"mkdirp": "^1.0.4", | |
"rimraf": "^3.0.2" | |
}, | |
"dependencies": { | |
"mkdirp": { | |
"version": "1.0.4", | |
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", | |
"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" | |
} | |
} | |
}, | |
"@pmmmwh/react-refresh-webpack-plugin": { | |
"version": "0.4.3", | |
"resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz", | |
"integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", | |
"requires": { | |
"ansi-html": "^0.0.7", | |
"error-stack-parser": "^2.0.6", | |
"html-entities": "^1.2.1", | |
"native-url": "^0.2.6", | |
"schema-utils": "^2.6.5", | |
"source-map": "^0.7.3" | |
}, | |
"dependencies": { | |
"source-map": { | |
"version": "0.7.3", | |
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", | |
"integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" | |
} | |
} | |
}, | |
"@popperjs/core": { | |
"version": "2.10.2", | |
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.10.2.tgz", | |
"integrity": "sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ==" | |
}, | |
"@rollup/plugin-node-resolve": { | |
"version": "7.1.3", | |
"resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz", | |
"integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==", | |
"requires": { | |
"@rollup/pluginutils": "^3.0.8", | |
"@types/resolve": "0.0.8", | |
"builtin-modules": "^3.1.0", | |
"is-module": "^1.0.0", | |
"resolve": "^1.14.2" | |
} | |
}, | |
"@rollup/plugin-replace": { | |
"version": "2.4.2", | |
"resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", | |
"integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", | |
"requires": { | |
"@rollup/pluginutils": "^3.1.0", | |
"magic-string": "^0.25.7" | |
} | |
}, | |
"@rollup/pluginutils": { | |
"version": "3.1.0", | |
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", | |
"integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", | |
"requires": { | |
"@types/estree": "0.0.39", | |
"estree-walker": "^1.0.1", | |
"picomatch": "^2.2.2" | |
}, | |
"dependencies": { | |
"@types/estree": { | |
"version": "0.0.39", | |
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", | |
"integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" | |
} | |
} | |
}, | |
"@sinonjs/commons": { | |
"version": "1.8.3", | |
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", | |
"integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", | |
"requires": { | |
"type-detect": "4.0.8" | |
} | |
}, | |
"@sinonjs/fake-timers": { | |
"version": "6.0.1", | |
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", | |
"integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", | |
"requires": { | |
"@sinonjs/commons": "^1.7.0" | |
} | |
}, | |
"@surma/rollup-plugin-off-main-thread": { | |
"version": "1.4.2", | |
"resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz", | |
"integrity": "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==", | |
"requires": { | |
"ejs": "^2.6.1", | |
"magic-string": "^0.25.0" | |
} | |
}, | |
"@svgr/babel-plugin-add-jsx-attribute": { | |
"version": "5.4.0", | |
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", | |
"integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" | |
}, | |
"@svgr/babel-plugin-remove-jsx-attribute": { | |
"version": "5.4.0", | |
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", | |
"integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" | |
}, | |
"@svgr/babel-plugin-remove-jsx-empty-expression": { | |
"version": "5.0.1", | |
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", | |
"integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" | |
}, | |
"@svgr/babel-plugin-replace-jsx-attribute-value": { | |
"version": "5.0.1", | |
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", | |
"integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" | |
}, | |
"@svgr/babel-plugin-svg-dynamic-title": { | |
"version": "5.4.0", | |
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", | |
"integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" | |
}, | |
"@svgr/babel-plugin-svg-em-dimensions": { | |
"version": "5.4.0", | |
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", | |
"integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" | |
}, | |
"@svgr/babel-plugin-transform-react-native-svg": { | |
"version": "5.4.0", | |
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", | |
"integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" | |
}, | |
"@svgr/babel-plugin-transform-svg-component": { | |
"version": "5.5.0", | |
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", | |
"integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" | |
}, | |
"@svgr/babel-preset": { | |
"version": "5.5.0", | |
"resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", | |
"integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", | |
"requires": { | |
"@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", | |
"@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", | |
"@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", | |
"@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", | |
"@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", | |
"@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", | |
"@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", | |
"@svgr/babel-plugin-transform-svg-component": "^5.5.0" | |
} | |
}, | |
"@svgr/core": { | |
"version": "5.5.0", | |
"resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", | |
"integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", | |
"requires": { | |
"@svgr/plugin-jsx": "^5.5.0", | |
"camelcase": "^6.2.0", | |
"cosmiconfig": "^7.0.0" | |
} | |
}, | |
"@svgr/hast-util-to-babel-ast": { | |
"version": "5.5.0", | |
"resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", | |
"integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", | |
"requires": { | |
"@babel/types": "^7.12.6" | |
} | |
}, | |
"@svgr/plugin-jsx": { | |
"version": "5.5.0", | |
"resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", | |
"integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", | |
"requires": { | |
"@babel/core": "^7.12.3", | |
"@svgr/babel-preset": "^5.5.0", | |
"@svgr/hast-util-to-babel-ast": "^5.5.0", | |
"svg-parser": "^2.0.2" | |
} | |
}, | |
"@svgr/plugin-svgo": { | |
"version": "5.5.0", | |
"resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", | |
"integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", | |
"requires": { | |
"cosmiconfig": "^7.0.0", | |
"deepmerge": "^4.2.2", | |
"svgo": "^1.2.2" | |
} | |
}, | |
"@svgr/webpack": { | |
"version": "5.5.0", | |
"resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", | |
"integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", | |
"requires": { | |
"@babel/core": "^7.12.3", | |
"@babel/plugin-transform-react-constant-elements": "^7.12.1", | |
"@babel/preset-env": "^7.12.1", | |
"@babel/preset-react": "^7.12.5", | |
"@svgr/core": "^5.5.0", | |
"@svgr/plugin-jsx": "^5.5.0", | |
"@svgr/plugin-svgo": "^5.5.0", | |
"loader-utils": "^2.0.0" | |
} | |
}, | |
"@tootallnate/once": { | |
"version": "1.1.2", | |
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", | |
"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" | |
}, | |
"@types/babel__core": { | |
"version": "7.1.16", | |
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz", | |
"integrity": "sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==", | |
"requires": { | |
"@babel/parser": "^7.1.0", | |
"@babel/types": "^7.0.0", | |
"@types/babel__generator": "*", | |
"@types/babel__template": "*", | |
"@types/babel__traverse": "*" | |
} | |
}, | |
"@types/babel__generator": { | |
"version": "7.6.3", | |
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz", | |
"integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", | |
"requires": { | |
"@babel/types": "^7.0.0" | |
} | |
}, | |
"@types/babel__template": { | |
"version": "7.4.1", | |
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", | |
"integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", | |
"requires": { | |
"@babel/parser": "^7.1.0", | |
"@babel/types": "^7.0.0" | |
} | |
}, | |
"@types/babel__traverse": { | |
"version": "7.14.2", | |
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", | |
"integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", | |
"requires": { | |
"@babel/types": "^7.3.0" | |
} | |
}, | |
"@types/eslint": { | |
"version": "7.28.2", | |
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.2.tgz", | |
"integrity": "sha512-KubbADPkfoU75KgKeKLsFHXnU4ipH7wYg0TRT33NK3N3yiu7jlFAAoygIWBV+KbuHx/G+AvuGX6DllnK35gfJA==", | |
"requires": { | |
"@types/estree": "*", | |
"@types/json-schema": "*" | |
} | |
}, | |
"@types/estree": { | |
"version": "0.0.50", | |
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", | |
"integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==" | |
}, | |
"@types/glob": { | |
"version": "7.2.0", | |
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", | |
"integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", | |
"requires": { | |
"@types/minimatch": "*", | |
"@types/node": "*" | |
} | |
}, | |
"@types/graceful-fs": { | |
"version": "4.1.5", | |
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", | |
"integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", | |
"requires": { | |
"@types/node": "*" | |
} | |
}, | |
"@types/html-minifier-terser": { | |
"version": "5.1.2", | |
"resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", | |
"integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==" | |
}, | |
"@types/istanbul-lib-coverage": { | |
"version": "2.0.3", | |
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", | |
"integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" | |
}, | |
"@types/istanbul-lib-report": { | |
"version": "3.0.0", | |
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", | |
"integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", | |
"requires": { | |
"@types/istanbul-lib-coverage": "*" | |
} | |
}, | |
"@types/istanbul-reports": { | |
"version": "3.0.1", | |
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", | |
"integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", | |
"requires": { | |
"@types/istanbul-lib-report": "*" | |
} | |
}, | |
"@types/json-schema": { | |
"version": "7.0.9", | |
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", | |
"integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==" | |
}, | |
"@types/json5": { | |
"version": "0.0.29", | |
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", | |
"integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" | |
}, | |
"@types/minimatch": { | |
"version": "3.0.5", | |
"resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", | |
"integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" | |
}, | |
"@types/node": { | |
"version": "16.11.5", | |
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.5.tgz", | |
"integrity": "sha512-NyUV2DGcqYIx9op++MG2+Z4Nhw1tPhi0Wfs81TgncuX1aJC4zf2fgCJlJhl4BW9bCSS04e34VkqmOS96w0XQdg==" | |
}, | |
"@types/normalize-package-data": { | |
"version": "2.4.1", | |
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", | |
"integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" | |
}, | |
"@types/parse-json": { | |
"version": "4.0.0", | |
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", | |
"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" | |
}, | |
"@types/prettier": { | |
"version": "2.4.1", | |
"resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.1.tgz", | |
"integrity": "sha512-Fo79ojj3vdEZOHg3wR9ksAMRz4P3S5fDB5e/YWZiFnyFQI1WY2Vftu9XoXVVtJfxB7Bpce/QTqWSSntkz2Znrw==" | |
}, | |
"@types/q": { | |
"version": "1.5.5", | |
"resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", | |
"integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" | |
}, | |
"@types/resolve": { | |
"version": "0.0.8", | |
"resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", | |
"integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", | |
"requires": { | |
"@types/node": "*" | |
} | |
}, | |
"@types/source-list-map": { | |
"version": "0.1.2", | |
"resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", | |
"integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" | |
}, | |
"@types/stack-utils": { | |
"version": "2.0.1", | |
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", | |
"integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" | |
}, | |
"@types/tapable": { | |
"version": "1.0.8", | |
"resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz", | |
"integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==" | |
}, | |
"@types/uglify-js": { | |
"version": "3.13.1", | |
"resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz", | |
"integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==", | |
"requires": { | |
"source-map": "^0.6.1" | |
} | |
}, | |
"@types/webpack": { | |
"version": "4.41.31", | |
"resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.31.tgz", | |
"integrity": "sha512-/i0J7sepXFIp1ZT7FjUGi1eXMCg8HCCzLJEQkKsOtbJFontsJLolBcDC+3qxn5pPwiCt1G0ZdRmYRzNBtvpuGQ==", | |
"requires": { | |
"@types/node": "*", | |
"@types/tapable": "^1", | |
"@types/uglify-js": "*", | |
"@types/webpack-sources": "*", | |
"anymatch": "^3.0.0", | |
"source-map": "^0.6.0" | |
} | |
}, | |
"@types/webpack-sources": { | |
"version": "3.2.0", | |
"resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", | |
"integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", | |
"requires": { | |
"@types/node": "*", | |
"@types/source-list-map": "*", | |
"source-map": "^0.7.3" | |
}, | |
"dependencies": { | |
"source-map": { | |
"version": "0.7.3", | |
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", | |
"integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" | |
} | |
} | |
}, | |
"@types/yargs": { | |
"version": "15.0.14", | |
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", | |
"integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", | |
"requires": { | |
"@types/yargs-parser": "*" | |
} | |
}, | |
"@types/yargs-parser": { | |
"version": "20.2.1", | |
"resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz", | |
"integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==" | |
}, | |
"@typescript-eslint/eslint-plugin": { | |
"version": "4.33.0", | |
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", | |
"integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", | |
"requires": { | |
"@typescript-eslint/experimental-utils": "4.33.0", | |
"@typescript-eslint/scope-manager": "4.33.0", | |
"debug": "^4.3.1", | |
"functional-red-black-tree": "^1.0.1", | |
"ignore": "^5.1.8", | |
"regexpp": "^3.1.0", | |
"semver": "^7.3.5", | |
"tsutils": "^3.21.0" | |
} | |
}, | |
"@typescript-eslint/experimental-utils": { | |
"version": "4.33.0", | |
"resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", | |
"integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", | |
"requires": { | |
"@types/json-schema": "^7.0.7", | |
"@typescript-eslint/scope-manager": "4.33.0", | |
"@typescript-eslint/types": "4.33.0", | |
"@typescript-eslint/typescript-estree": "4.33.0", | |
"eslint-scope": "^5.1.1", | |
"eslint-utils": "^3.0.0" | |
} | |
}, | |
"@typescript-eslint/parser": { | |
"version": "4.33.0", | |
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", | |
"integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", | |
"requires": { | |
"@typescript-eslint/scope-manager": "4.33.0", | |
"@typescript-eslint/types": "4.33.0", | |
"@typescript-eslint/typescript-estree": "4.33.0", | |
"debug": "^4.3.1" | |
} | |
}, | |
"@typescript-eslint/scope-manager": { | |
"version": "4.33.0", | |
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", | |
"integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", | |
"requires": { | |
"@typescript-eslint/types": "4.33.0", | |
"@typescript-eslint/visitor-keys": "4.33.0" | |
} | |
}, | |
"@typescript-eslint/types": { | |
"version": "4.33.0", | |
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", | |
"integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==" | |
}, | |
"@typescript-eslint/typescript-estree": { | |
"version": "4.33.0", | |
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", | |
"integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", | |
"requires": { | |
"@typescript-eslint/types": "4.33.0", | |
"@typescript-eslint/visitor-keys": "4.33.0", | |
"debug": "^4.3.1", | |
"globby": "^11.0.3", | |
"is-glob": "^4.0.1", | |
"semver": "^7.3.5", | |
"tsutils": "^3.21.0" | |
} | |
}, | |
"@typescript-eslint/visitor-keys": { | |
"version": "4.33.0", | |
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", | |
"integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", | |
"requires": { | |
"@typescript-eslint/types": "4.33.0", | |
"eslint-visitor-keys": "^2.0.0" | |
} | |
}, | |
"@webassemblyjs/ast": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", | |
"integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", | |
"requires": { | |
"@webassemblyjs/helper-module-context": "1.9.0", | |
"@webassemblyjs/helper-wasm-bytecode": "1.9.0", | |
"@webassemblyjs/wast-parser": "1.9.0" | |
} | |
}, | |
"@webassemblyjs/floating-point-hex-parser": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", | |
"integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" | |
}, | |
"@webassemblyjs/helper-api-error": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", | |
"integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" | |
}, | |
"@webassemblyjs/helper-buffer": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", | |
"integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" | |
}, | |
"@webassemblyjs/helper-code-frame": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", | |
"integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", | |
"requires": { | |
"@webassemblyjs/wast-printer": "1.9.0" | |
} | |
}, | |
"@webassemblyjs/helper-fsm": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", | |
"integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" | |
}, | |
"@webassemblyjs/helper-module-context": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", | |
"integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", | |
"requires": { | |
"@webassemblyjs/ast": "1.9.0" | |
} | |
}, | |
"@webassemblyjs/helper-wasm-bytecode": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", | |
"integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" | |
}, | |
"@webassemblyjs/helper-wasm-section": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", | |
"integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", | |
"requires": { | |
"@webassemblyjs/ast": "1.9.0", | |
"@webassemblyjs/helper-buffer": "1.9.0", | |
"@webassemblyjs/helper-wasm-bytecode": "1.9.0", | |
"@webassemblyjs/wasm-gen": "1.9.0" | |
} | |
}, | |
"@webassemblyjs/ieee754": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", | |
"integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", | |
"requires": { | |
"@xtuc/ieee754": "^1.2.0" | |
} | |
}, | |
"@webassemblyjs/leb128": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", | |
"integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", | |
"requires": { | |
"@xtuc/long": "4.2.2" | |
} | |
}, | |
"@webassemblyjs/utf8": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", | |
"integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" | |
}, | |
"@webassemblyjs/wasm-edit": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", | |
"integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", | |
"requires": { | |
"@webassemblyjs/ast": "1.9.0", | |
"@webassemblyjs/helper-buffer": "1.9.0", | |
"@webassemblyjs/helper-wasm-bytecode": "1.9.0", | |
"@webassemblyjs/helper-wasm-section": "1.9.0", | |
"@webassemblyjs/wasm-gen": "1.9.0", | |
"@webassemblyjs/wasm-opt": "1.9.0", | |
"@webassemblyjs/wasm-parser": "1.9.0", | |
"@webassemblyjs/wast-printer": "1.9.0" | |
} | |
}, | |
"@webassemblyjs/wasm-gen": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", | |
"integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", | |
"requires": { | |
"@webassemblyjs/ast": "1.9.0", | |
"@webassemblyjs/helper-wasm-bytecode": "1.9.0", | |
"@webassemblyjs/ieee754": "1.9.0", | |
"@webassemblyjs/leb128": "1.9.0", | |
"@webassemblyjs/utf8": "1.9.0" | |
} | |
}, | |
"@webassemblyjs/wasm-opt": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", | |
"integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", | |
"requires": { | |
"@webassemblyjs/ast": "1.9.0", | |
"@webassemblyjs/helper-buffer": "1.9.0", | |
"@webassemblyjs/wasm-gen": "1.9.0", | |
"@webassemblyjs/wasm-parser": "1.9.0" | |
} | |
}, | |
"@webassemblyjs/wasm-parser": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", | |
"integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", | |
"requires": { | |
"@webassemblyjs/ast": "1.9.0", | |
"@webassemblyjs/helper-api-error": "1.9.0", | |
"@webassemblyjs/helper-wasm-bytecode": "1.9.0", | |
"@webassemblyjs/ieee754": "1.9.0", | |
"@webassemblyjs/leb128": "1.9.0", | |
"@webassemblyjs/utf8": "1.9.0" | |
} | |
}, | |
"@webassemblyjs/wast-parser": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", | |
"integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", | |
"requires": { | |
"@webassemblyjs/ast": "1.9.0", | |
"@webassemblyjs/floating-point-hex-parser": "1.9.0", | |
"@webassemblyjs/helper-api-error": "1.9.0", | |
"@webassemblyjs/helper-code-frame": "1.9.0", | |
"@webassemblyjs/helper-fsm": "1.9.0", | |
"@xtuc/long": "4.2.2" | |
} | |
}, | |
"@webassemblyjs/wast-printer": { | |
"version": "1.9.0", | |
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", | |
"integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", | |
"requires": { | |
"@webassemblyjs/ast": "1.9.0", | |
"@webassemblyjs/wast-parser": "1.9.0", | |
"@xtuc/long": "4.2.2" | |
} | |
}, | |
"@xtuc/ieee754": { | |
"version": "1.2.0", | |
"resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", | |
"integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" | |
}, | |
"@xtuc/long": { | |
"version": "4.2.2", | |
"resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", | |
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" | |
}, | |
"abab": { | |
"version": "2.0.5", | |
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", | |
"integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" | |
}, | |
"accepts": { | |
"version": "1.3.7", | |
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", | |
"integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", | |
"requires": { | |
"mime-types": "~2.1.24", | |
"negotiator": "0.6.2" | |
} | |
}, | |
"acorn": { | |
"version": "7.4.1", | |
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", | |
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" | |
}, | |
"acorn-globals": { | |
"version": "6.0.0", | |
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", | |
"integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", | |
"requires": { | |
"acorn": "^7.1.1", | |
"acorn-walk": "^7.1.1" | |
} | |
}, | |
"acorn-jsx": { | |
"version": "5.3.2", | |
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", | |
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" | |
}, | |
"acorn-walk": { | |
"version": "7.2.0", | |
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", | |
"integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" | |
}, | |
"address": { | |
"version": "1.1.2", | |
"resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", | |
"integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" | |
}, | |
"adjust-sourcemap-loader": { | |
"version": "3.0.0", | |
"resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", | |
"integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", | |
"requires": { | |
"loader-utils": "^2.0.0", | |
"regex-parser": "^2.2.11" | |
} | |
}, | |
"agent-base": { | |
"version": "6.0.2", | |
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", | |
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", | |
"requires": { | |
"debug": "4" | |
} | |
}, | |
"aggregate-error": { | |
"version": "3.1.0", | |
"resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", | |
"integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", | |
"requires": { | |
"clean-stack": "^2.0.0", | |
"indent-string": "^4.0.0" | |
} | |
}, | |
"ajv": { | |
"version": "6.12.6", | |
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", | |
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", | |
"requires": { | |
"fast-deep-equal": "^3.1.1", | |
"fast-json-stable-stringify": "^2.0.0", | |
"json-schema-traverse": "^0.4.1", | |
"uri-js": "^4.2.2" | |
} | |
}, | |
"ajv-errors": { | |
"version": "1.0.1", | |
"resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", | |
"integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" | |
}, | |
"ajv-keywords": { | |
"version": "3.5.2", | |
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", | |
"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" | |
}, | |
"alphanum-sort": { | |
"version": "1.0.2", | |
"resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", | |
"integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" | |
}, | |
"ansi-colors": { | |
"version": "4.1.1", | |
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", | |
"integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" | |
}, | |
"ansi-escapes": { | |
"version": "4.3.2", | |
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", | |
"integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", | |
"requires": { | |
"type-fest": "^0.21.3" | |
}, | |
"dependencies": { | |
"type-fest": { | |
"version": "0.21.3", | |
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", | |
"integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" | |
} | |
} | |
}, | |
"ansi-html": { | |
"version": "0.0.7", | |
"resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", | |
"integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" | |
}, | |
"ansi-regex": { | |
"version": "5.0.1", | |
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", | |
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" | |
}, | |
"ansi-styles": { | |
"version": "3.2.1", | |
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", | |
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", | |
"requires": { | |
"color-convert": "^1.9.0" | |
} | |
}, | |
"anymatch": { | |
"version": "3.1.2", | |
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", | |
"integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", | |
"requires": { | |
"normalize-path": "^3.0.0", | |
"picomatch": "^2.0.4" | |
} | |
}, | |
"aproba": { | |
"version": "1.2.0", | |
"resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", | |
"integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" | |
}, | |
"argparse": { | |
"version": "1.0.10", | |
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", | |
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", | |
"requires": { | |
"sprintf-js": "~1.0.2" | |
} | |
}, | |
"aria-query": { | |
"version": "4.2.2", | |
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", | |
"integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", | |
"requires": { | |
"@babel/runtime": "^7.10.2", | |
"@babel/runtime-corejs3": "^7.10.2" | |
} | |
}, | |
"arity-n": { | |
"version": "1.0.4", | |
"resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", | |
"integrity": "sha1-2edrEXM+CFacCEeuezmyhgswt0U=" | |
}, | |
"arr-diff": { | |
"version": "4.0.0", | |
"resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", | |
"integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" | |
}, | |
"arr-flatten": { | |
"version": "1.1.0", | |
"resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", | |
"integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" | |
}, | |
"arr-union": { | |
"version": "3.1.0", | |
"resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", | |
"integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" | |
}, | |
"array-flatten": { | |
"version": "2.1.2", | |
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", | |
"integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" | |
}, | |
"array-includes": { | |
"version": "3.1.4", | |
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", | |
"integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", | |
"requires": { | |
"call-bind": "^1.0.2", | |
"define-properties": "^1.1.3", | |
"es-abstract": "^1.19.1", | |
"get-intrinsic": "^1.1.1", | |
"is-string": "^1.0.7" | |
} | |
}, | |
"array-union": { | |
"version": "2.1.0", | |
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", | |
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" | |
}, | |
"array-uniq": { | |
"version": "1.0.3", | |
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", | |
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" | |
}, | |
"array-unique": { | |
"version": "0.3.2", | |
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", | |
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" | |
}, | |
"array.prototype.flat": { | |
"version": "1.2.5", | |
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz", | |
"integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", | |
"requires": { | |
"call-bind": "^1.0.2", | |
"define-properties": "^1.1.3", | |
"es-abstract": "^1.19.0" | |
} | |
}, | |
"array.prototype.flatmap": { | |
"version": "1.2.5", | |
"resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", | |
"integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", | |
"requires": { | |
"call-bind": "^1.0.0", | |
"define-properties": "^1.1.3", | |
"es-abstract": "^1.19.0" | |
} | |
}, | |
"arrify": { | |
"version": "2.0.1", | |
"resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", | |
"integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" | |
}, | |
"asap": { | |
"version": "2.0.6", | |
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", | |
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" | |
}, | |
"asn1.js": { | |
"version": "5.4.1", | |
"resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", | |
"integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", | |
"requires": { | |
"bn.js": "^4.0.0", | |
"inherits": "^2.0.1", | |
"minimalistic-assert": "^1.0.0", | |
"safer-buffer": "^2.1.0" | |
}, | |
"dependencies": { | |
"bn.js": { | |
"version": "4.12.0", | |
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", | |
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" | |
} | |
} | |
}, | |
"assert": { | |
"version": "1.5.0", | |
"resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", | |
"integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", | |
"requires": { | |
"object-assign": "^4.1.1", | |
"util": "0.10.3" | |
}, | |
"dependencies": { | |
"inherits": { | |
"version": "2.0.1", | |
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", | |
"integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" | |
}, | |
"util": { | |
"version": "0.10.3", | |
"resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", | |
"integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", | |
"requires": { | |
"inherits": "2.0.1" | |
} | |
} | |
} | |
}, | |
"assign-symbols": { | |
"version": "1.0.0", | |
"resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", | |
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" | |
}, | |
"ast-types-flow": { | |
"version": "0.0.7", | |
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", | |
"integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" | |
}, | |
"astral-regex": { | |
"version": "2.0.0", | |
"resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", | |
"integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" | |
}, | |
"async": { | |
"version": "2.6.3", | |
"resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", | |
"integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", | |
"requires": { | |
"lodash": "^4.17.14" | |
} | |
}, | |
"async-each": { | |
"version": "1.0.3", | |
"resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", | |
"integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" | |
}, | |
"async-limiter": { | |
"version": "1.0.1", | |
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", | |
"integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" | |
}, | |
"asynckit": { | |
"version": "0.4.0", | |
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", | |
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" | |
}, | |
"at-least-node": { | |
"version": "1.0.0", | |
"resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", | |
"integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" | |
}, | |
"atob": { | |
"version": "2.1.2", | |
"resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", | |
"integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" | |
}, | |
"autoprefixer": { | |
"version": "9.8.8", | |
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", | |
"integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", | |
"requires": { | |
"browserslist": "^4.12.0", | |
"caniuse-lite": "^1.0.30001109", | |
"normalize-range": "^0.1.2", | |
"num2fraction": "^1.2.2", | |
"picocolors": "^0.2.1", | |
"postcss": "^7.0.32", | |
"postcss-value-parser": "^4.1.0" | |
}, | |
"dependencies": { | |
"picocolors": { | |
"version": "0.2.1", | |
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", | |
"integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" | |
} | |
} | |
}, | |
"axe-core": { | |
"version": "4.3.4", | |
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.4.tgz", | |
"integrity": "sha512-4Hk6iSA/H90rtiPoCpSkeJxNWCPBf7szwVvaUqrPdxo0j2Y04suHK9jPKXaE3WI7OET6wBSwsWw7FDc1DBq7iQ==" | |
}, | |
"axobject-query": { | |
"version": "2.2.0", | |
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", | |
"integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" | |
}, | |
"babel-eslint": { | |
"version": "10.1.0", | |
"resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", | |
"integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", | |
"requires": { | |
"@babel/code-frame": "^7.0.0", | |
"@babel/parser": "^7.7.0", | |
"@babel/traverse": "^7.7.0", | |
"@babel/types": "^7.7.0", | |
"eslint-visitor-keys": "^1.0.0", | |
"resolve": "^1.12.0" | |
}, | |
"dependencies": { | |
"eslint-visitor-keys": { | |
"version": "1.3.0", | |
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", | |
"integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" | |
} | |
} | |
}, | |
"babel-extract-comments": { | |
"version": "1.0.0", | |
"resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", | |
"integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", | |
"requires": { | |
"babylon": "^6.18.0" | |
} | |
}, | |