├── .babelrc.js ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── dist ├── FWButton.d.ts ├── index.d.ts ├── index.es.js ├── index.js ├── script.d.ts ├── types.d.ts └── useFW.d.ts ├── package.json ├── rollup.config.js ├── src ├── FWButton.tsx ├── index.ts ├── script.ts ├── types.ts └── useFW.tsx ├── tsconfig.json └── yarn.lock /.babelrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | [ 4 | '@babel/preset-env', 5 | { 6 | targets: { 7 | node: 'current', 8 | }, 9 | }, 10 | ], 11 | '@babel/preset-typescript', 12 | ], 13 | }; 14 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | coverage 4 | build 5 | docs 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "plugin:@typescript-eslint/recommended", 4 | "prettier", 5 | "prettier/@typescript-eslint", 6 | "eslint-config-prettier" 7 | ], 8 | "parser": "@typescript-eslint/parser", 9 | "parserOptions": { 10 | "ecmaVersion": 2019, 11 | "sourceType": "module" 12 | }, 13 | "plugins": ["@typescript-eslint", "prettier"], 14 | "globals": { 15 | "cy": "readonly", 16 | "assert": "readonly", 17 | "context": "readonly", 18 | "Atomics": "readonly", 19 | "SharedArrayBuffer": "readonly" 20 | }, 21 | "rules": { 22 | "quotes": ["error", "single"], 23 | "semi": ["error", "always"], 24 | "no-undef": "off", 25 | "no-empty": "warn", 26 | "no-console": "error", 27 | "no-func-assign": 1, 28 | "no-unreachable": 1, 29 | "no-invalid-regexp": 1, 30 | "no-unused-vars": "off", 31 | "jsx-a11y/href-no-hash": "off", 32 | "@typescript-eslint/camelcase": "off", 33 | "@typescript-eslint/ban-ts-ignore": "off", 34 | "@typescript-eslint/no-empty-function": "warn", 35 | "@typescript-eslint/no-use-before-define": "off", 36 | "@typescript-eslint/explicit-member-accessibility": "off", 37 | "@typescript-eslint/explicit-function-return-type": "off" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | .vscode 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # TypeScript v1 declaration files 46 | typings/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Microbundle cache 58 | .rpt2_cache/ 59 | .rts2_cache_cjs/ 60 | .rts2_cache_es/ 61 | .rts2_cache_umd/ 62 | 63 | # Optional REPL history 64 | .node_repl_history 65 | 66 | # Output of 'npm pack' 67 | *.tgz 68 | 69 | # Yarn Integrity file 70 | .yarn-integrity 71 | 72 | # dotenv environment variables file 73 | .env 74 | .env.test 75 | 76 | # parcel-bundler cache (https://parceljs.org/) 77 | .cache 78 | 79 | # Next.js build output 80 | .next 81 | 82 | # Nuxt.js build / generate output 83 | .nuxt 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 106 | 107 | # dependencies 108 | /node_modules 109 | /.pnp 110 | .pnp.js 111 | 112 | # testing 113 | /coverage 114 | 115 | # production 116 | /build 117 | 118 | # misc 119 | .DS_Store 120 | .env.local 121 | .env.development.local 122 | .env.test.local 123 | .env.production.local 124 | 125 | npm-debug.log* 126 | yarn-debug.log* 127 | yarn-error.log* 128 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | coverage 4 | build 5 | docs 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Somto M.Ugeh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React-Flutterwave 2 | 3 | > This is a react package for implementing Flutterwave collection gateway 4 | 5 | ## Installation 6 | 7 | ```bash 8 | $ npm install react-flutterwave 9 | # or 10 | $ yarn add react-flutterwave 11 | ``` 12 | 13 | ## Examples 14 | 15 | ```javascript 16 | import React from 'react'; 17 | import { useFlutterwave, FlutterWaveButton } from 'react-flutterwave'; 18 | 19 | export default function App() { 20 | const config = { 21 | public_key: 'YOUR_FW_PUBLIC_KEY', 22 | tx_ref: Date.now(), 23 | amount: 100, 24 | currency: 'NGN', 25 | payment_options: 'card,mobilemoney,ussd', 26 | customer: { 27 | email: 'user@gmail.com', 28 | phonenumber: '08102909304', 29 | name: 'yemi desola', 30 | }, 31 | customizations: { 32 | title: 'My store', 33 | description: 'Payment for items in cart', 34 | logo: 'https://assets.piedpiper.com/logo.png', 35 | }, 36 | }; 37 | 38 | const handleFlutterPayment = useFlutterwave(config); 39 | 40 | const fwConfig = { 41 | ...config, 42 | text: 'Pay with Flutterwave!', 43 | callback: (response) => { 44 | console.log(response); 45 | }, 46 | onClose: () => {}, 47 | }; 48 | 49 | return ( 50 |
51 |

Hello CodeSandbox

52 |

Start editing to see some magic happen!

53 | 54 | 66 | 67 | 68 |
69 | ); 70 | } 71 | ``` 72 | 73 | Please checkout 74 | [Flutterwave Documentation](https://developer.flutterwave.com/docs/flutterwave-standard) 75 | for other available options you can add to the tag 76 | 77 | ## License 78 | 79 | This project is licensed under the MIT License - see the [LICENSE.md](LICENSE) 80 | file for details 81 | 82 | ## Contributions ✨ 83 | 84 | 1. Fork it! 85 | 2. Create your feature branch: `git checkout -b feature-name` 86 | 3. Commit your changes: `git commit -am 'Some commit message'` 87 | 4. Push to the branch: `git push origin feature-name` 88 | 5. Submit a pull request 89 | 90 | Follow on Twitter [@somtougeh](https://twitter.com/SomtoUgeh) 91 | 92 | This project follows the 93 | [all-contributors](https://github.com/all-contributors/all-contributors) 94 | specification. Contributions of any kind welcome! 95 | -------------------------------------------------------------------------------- /dist/FWButton.d.ts: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { FlutterwaveConfig, FlutterWaveResponse } from './types'; 3 | interface FlutterWaveButtonProps extends FlutterwaveConfig { 4 | text?: string; 5 | className?: string; 6 | disabled?: boolean; 7 | onClose: () => void; 8 | children?: React.ReactNode; 9 | callback: (response: FlutterWaveResponse) => void; 10 | } 11 | declare const FlutterWaveButton: ({ text, className, children, callback, onClose, disabled, ...config }: FlutterWaveButtonProps) => JSX.Element; 12 | export default FlutterWaveButton; 13 | -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export * as FlutterWaveTypes from './types'; 2 | export { default as useFlutterwave } from './useFW'; 3 | export { default as FlutterWaveButton } from './FWButton'; 4 | -------------------------------------------------------------------------------- /dist/index.es.js: -------------------------------------------------------------------------------- 1 | import { useState, useEffect, createElement } from 'react'; 2 | 3 | /** 4 | * Check out {@link https://developer.flutterwave.com/docs/flutterwave-standard} for more information. 5 | */ 6 | 7 | var types = /*#__PURE__*/Object.freeze({ 8 | __proto__: null 9 | }); 10 | 11 | /*! ***************************************************************************** 12 | Copyright (c) Microsoft Corporation. 13 | 14 | Permission to use, copy, modify, and/or distribute this software for any 15 | purpose with or without fee is hereby granted. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 18 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 19 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 20 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 21 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 22 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 23 | PERFORMANCE OF THIS SOFTWARE. 24 | ***************************************************************************** */ 25 | 26 | var __assign = function() { 27 | __assign = Object.assign || function __assign(t) { 28 | for (var s, i = 1, n = arguments.length; i < n; i++) { 29 | s = arguments[i]; 30 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; 31 | } 32 | return t; 33 | }; 34 | return __assign.apply(this, arguments); 35 | }; 36 | 37 | function __rest(s, e) { 38 | var t = {}; 39 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) 40 | t[p] = s[p]; 41 | if (s != null && typeof Object.getOwnPropertySymbols === "function") 42 | for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { 43 | if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) 44 | t[p[i]] = s[p[i]]; 45 | } 46 | return t; 47 | } 48 | 49 | var loadedScripts = {}; 50 | var src = 'https://checkout.flutterwave.com/v3.js'; 51 | function useFWScript() { 52 | var _a = useState({ 53 | loaded: false, 54 | error: false, 55 | }), state = _a[0], setState = _a[1]; 56 | useEffect(function () { 57 | if (loadedScripts.hasOwnProperty(src)) { 58 | setState({ 59 | loaded: true, 60 | error: false, 61 | }); 62 | } 63 | else { 64 | loadedScripts.src = src; 65 | var script_1 = document.createElement('script'); 66 | script_1.src = src; 67 | script_1.async = true; 68 | var onScriptLoad_1 = function () { 69 | setState({ 70 | loaded: true, 71 | error: false, 72 | }); 73 | }; 74 | var onScriptError_1 = function () { 75 | delete loadedScripts.src; 76 | setState({ 77 | loaded: true, 78 | error: true, 79 | }); 80 | }; 81 | script_1.addEventListener('load', onScriptLoad_1); 82 | script_1.addEventListener('complete', onScriptLoad_1); 83 | script_1.addEventListener('error', onScriptError_1); 84 | document.body.appendChild(script_1); 85 | return function () { 86 | script_1.removeEventListener('load', onScriptLoad_1); 87 | script_1.removeEventListener('error', onScriptError_1); 88 | }; 89 | } 90 | }, []); 91 | return [state.loaded, state.error]; 92 | } 93 | 94 | /** 95 | * 96 | * @param config takes in configuration for flutterwave 97 | * @returns handleFlutterwavePayment function 98 | */ 99 | function useFlutterwave(flutterWaveConfig) { 100 | var _a = useFWScript(), loaded = _a[0], error = _a[1]; 101 | useEffect(function () { 102 | if (error) 103 | throw new Error('Unable to load flutterwave payment modal'); 104 | }, [error]); 105 | /** 106 | * 107 | * @param object - {callback, onClose} 108 | */ 109 | function handleFlutterwavePayment(_a) { 110 | var _b, _c; 111 | var callback = _a.callback, onClose = _a.onClose; 112 | if (error) 113 | throw new Error('Unable to load flutterwave payment modal'); 114 | if (loaded) { 115 | var flutterwaveArgs = __assign(__assign({}, flutterWaveConfig), { amount: (_b = flutterWaveConfig.amount) !== null && _b !== void 0 ? _b : 0, callback: callback, onclose: onClose, payment_options: (_c = flutterWaveConfig === null || flutterWaveConfig === void 0 ? void 0 : flutterWaveConfig.payment_options) !== null && _c !== void 0 ? _c : 'card, ussd, mobilemoney' }); 116 | return ( 117 | // @ts-ignore 118 | window.FlutterwaveCheckout && 119 | // @ts-ignore 120 | window.FlutterwaveCheckout(flutterwaveArgs)); 121 | } 122 | } 123 | return handleFlutterwavePayment; 124 | } 125 | 126 | var FlutterWaveButton = function (_a) { 127 | var text = _a.text, className = _a.className, children = _a.children, callback = _a.callback, onClose = _a.onClose, disabled = _a.disabled, config = __rest(_a, ["text", "className", "children", "callback", "onClose", "disabled"]); 128 | var handleFlutterwavePayment = useFlutterwave(config); 129 | return (createElement("button", { disabled: disabled, className: className, onClick: function () { return handleFlutterwavePayment({ callback: callback, onClose: onClose }); } }, text || children)); 130 | }; 131 | 132 | export { FlutterWaveButton, types as FlutterWaveTypes, useFlutterwave }; 133 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var React = require('react'); 6 | 7 | /** 8 | * Check out {@link https://developer.flutterwave.com/docs/flutterwave-standard} for more information. 9 | */ 10 | 11 | var types = /*#__PURE__*/Object.freeze({ 12 | __proto__: null 13 | }); 14 | 15 | /*! ***************************************************************************** 16 | Copyright (c) Microsoft Corporation. 17 | 18 | Permission to use, copy, modify, and/or distribute this software for any 19 | purpose with or without fee is hereby granted. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 22 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 23 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 24 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 25 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 26 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 27 | PERFORMANCE OF THIS SOFTWARE. 28 | ***************************************************************************** */ 29 | 30 | var __assign = function() { 31 | __assign = Object.assign || function __assign(t) { 32 | for (var s, i = 1, n = arguments.length; i < n; i++) { 33 | s = arguments[i]; 34 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; 35 | } 36 | return t; 37 | }; 38 | return __assign.apply(this, arguments); 39 | }; 40 | 41 | function __rest(s, e) { 42 | var t = {}; 43 | for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) 44 | t[p] = s[p]; 45 | if (s != null && typeof Object.getOwnPropertySymbols === "function") 46 | for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { 47 | if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) 48 | t[p[i]] = s[p[i]]; 49 | } 50 | return t; 51 | } 52 | 53 | var loadedScripts = {}; 54 | var src = 'https://checkout.flutterwave.com/v3.js'; 55 | function useFWScript() { 56 | var _a = React.useState({ 57 | loaded: false, 58 | error: false, 59 | }), state = _a[0], setState = _a[1]; 60 | React.useEffect(function () { 61 | if (loadedScripts.hasOwnProperty(src)) { 62 | setState({ 63 | loaded: true, 64 | error: false, 65 | }); 66 | } 67 | else { 68 | loadedScripts.src = src; 69 | var script_1 = document.createElement('script'); 70 | script_1.src = src; 71 | script_1.async = true; 72 | var onScriptLoad_1 = function () { 73 | setState({ 74 | loaded: true, 75 | error: false, 76 | }); 77 | }; 78 | var onScriptError_1 = function () { 79 | delete loadedScripts.src; 80 | setState({ 81 | loaded: true, 82 | error: true, 83 | }); 84 | }; 85 | script_1.addEventListener('load', onScriptLoad_1); 86 | script_1.addEventListener('complete', onScriptLoad_1); 87 | script_1.addEventListener('error', onScriptError_1); 88 | document.body.appendChild(script_1); 89 | return function () { 90 | script_1.removeEventListener('load', onScriptLoad_1); 91 | script_1.removeEventListener('error', onScriptError_1); 92 | }; 93 | } 94 | }, []); 95 | return [state.loaded, state.error]; 96 | } 97 | 98 | /** 99 | * 100 | * @param config takes in configuration for flutterwave 101 | * @returns handleFlutterwavePayment function 102 | */ 103 | function useFlutterwave(flutterWaveConfig) { 104 | var _a = useFWScript(), loaded = _a[0], error = _a[1]; 105 | React.useEffect(function () { 106 | if (error) 107 | throw new Error('Unable to load flutterwave payment modal'); 108 | }, [error]); 109 | /** 110 | * 111 | * @param object - {callback, onClose} 112 | */ 113 | function handleFlutterwavePayment(_a) { 114 | var _b, _c; 115 | var callback = _a.callback, onClose = _a.onClose; 116 | if (error) 117 | throw new Error('Unable to load flutterwave payment modal'); 118 | if (loaded) { 119 | var flutterwaveArgs = __assign(__assign({}, flutterWaveConfig), { amount: (_b = flutterWaveConfig.amount) !== null && _b !== void 0 ? _b : 0, callback: callback, onclose: onClose, payment_options: (_c = flutterWaveConfig === null || flutterWaveConfig === void 0 ? void 0 : flutterWaveConfig.payment_options) !== null && _c !== void 0 ? _c : 'card, ussd, mobilemoney' }); 120 | return ( 121 | // @ts-ignore 122 | window.FlutterwaveCheckout && 123 | // @ts-ignore 124 | window.FlutterwaveCheckout(flutterwaveArgs)); 125 | } 126 | } 127 | return handleFlutterwavePayment; 128 | } 129 | 130 | var FlutterWaveButton = function (_a) { 131 | var text = _a.text, className = _a.className, children = _a.children, callback = _a.callback, onClose = _a.onClose, disabled = _a.disabled, config = __rest(_a, ["text", "className", "children", "callback", "onClose", "disabled"]); 132 | var handleFlutterwavePayment = useFlutterwave(config); 133 | return (React.createElement("button", { disabled: disabled, className: className, onClick: function () { return handleFlutterwavePayment({ callback: callback, onClose: onClose }); } }, text || children)); 134 | }; 135 | 136 | exports.FlutterWaveButton = FlutterWaveButton; 137 | exports.FlutterWaveTypes = types; 138 | exports.useFlutterwave = useFlutterwave; 139 | -------------------------------------------------------------------------------- /dist/script.d.ts: -------------------------------------------------------------------------------- 1 | export default function useFWScript(): readonly [boolean, boolean]; 2 | -------------------------------------------------------------------------------- /dist/types.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Check out {@link https://developer.flutterwave.com/docs/flutterwave-standard} for more information. 3 | */ 4 | export interface FlutterWaveProps { 5 | /** 6 | * Your transaction reference. This MUST be unique for every transaction 7 | */ 8 | tx_ref: string; 9 | amount: number; 10 | /** 11 | * currency to charge in. Defaults to NGN 12 | */ 13 | currency?: 'NGN' | string; 14 | /** 15 | * This is a sha256 hash of your FlutterwaveCheckout values, it is used for passing secured values to the payment gateway. 16 | */ 17 | integrity_hash?: string; 18 | /** 19 | * This specifies the payment options to be displayed e.g - [card, mobilemoney, ussd] and so on. Defaults to 'card, ussd, mobilemoney' 20 | */ 21 | payment_options: 'card, ussd, mobilemoney' | string; 22 | /** 23 | * This is the payment plan ID used for Recurring billing 24 | */ 25 | payment_plan?: string; 26 | /** 27 | * URL to redirect to when a transaction is completed. This is useful for 3DSecure payments so we can redirect your customer back to a custom page you want to show them. 28 | */ 29 | redirect_url?: string; 30 | /** 31 | * This is an object that can contains your customer details. 32 | * e.g { 33 | * 'email': 'example@gmail.com', 34 | * 'phonenumber': '08012345678', 35 | * 'name': 'Takeshi Kovacs' 36 | * } 37 | */ 38 | customer: { 39 | email: string; 40 | phonenumber: string; 41 | name: string; 42 | }; 43 | /** 44 | * This is an object that helps you include additional payment information to your request 45 | * e.g { 46 | * 'consumer_id': 23, 47 | * 'consumer_mac': '92a3-912ba-1192a' 48 | * } 49 | */ 50 | meta?: Record; 51 | /** 52 | * This is an object that contains title, logo, and description you want to display on the modal e.g 53 | * e.g { 54 | * 'title': 'example@gmail.com', 55 | * 'description': '08012345678', 56 | * 'logo': 'Takeshi Kovacs' 57 | * } 58 | */ 59 | customizations: { 60 | title: string; 61 | description: string; 62 | logo: string; 63 | }; 64 | /** 65 | * function to be called when the payment is completed successfully 66 | */ 67 | callback: (data: FlutterWaveResponse) => void; 68 | /** 69 | * function to be called when the mono connection is closed 70 | */ 71 | onclose: () => void; 72 | public_key: string; 73 | } 74 | export interface FlutterwaveConfig { 75 | public_key: FlutterWaveProps['public_key']; 76 | tx_ref: FlutterWaveProps['tx_ref']; 77 | amount: FlutterWaveProps['amount']; 78 | currency?: FlutterWaveProps['currency']; 79 | customer: FlutterWaveProps['customer']; 80 | customizations: FlutterWaveProps['customizations']; 81 | meta?: FlutterWaveProps['meta']; 82 | redirect_url?: FlutterWaveProps['redirect_url']; 83 | payment_plan?: FlutterWaveProps['payment_plan']; 84 | payment_options: FlutterWaveProps['payment_options']; 85 | } 86 | export interface InitializeFlutterwavePayment { 87 | onClose: FlutterWaveProps['onclose']; 88 | callback: FlutterWaveProps['callback']; 89 | } 90 | export interface FlutterWaveResponse { 91 | amount: FlutterWaveProps['amount']; 92 | currency: FlutterWaveProps['currency']; 93 | customer: FlutterWaveProps['customer']; 94 | tx_ref: FlutterWaveProps['tx_ref']; 95 | flw_ref: string; 96 | status: string; 97 | transaction_id: number; 98 | } 99 | -------------------------------------------------------------------------------- /dist/useFW.d.ts: -------------------------------------------------------------------------------- 1 | import { FlutterwaveConfig, InitializeFlutterwavePayment } from './types'; 2 | /** 3 | * 4 | * @param config takes in configuration for flutterwave 5 | * @returns handleFlutterwavePayment function 6 | */ 7 | export default function useFlutterwave(flutterWaveConfig: FlutterwaveConfig): ({ callback, onClose }: InitializeFlutterwavePayment) => void; 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-flutterwave", 3 | "version": "1.0.4", 4 | "description": "This is a react package for implementing flutterwave collection gateway", 5 | "main": "dist/index.js", 6 | "repository": "https://github.com/SomtoUgeh/react-flutterwave.git", 7 | "author": "Somto M.Ugeh ", 8 | "license": "MIT", 9 | "bugs": { 10 | "url": "https://github.com/SomtoUgeh/react-flutterwave/issues" 11 | }, 12 | "homepage": "https://github.com/SomtoUgeh/react-flutterwave#readme", 13 | "module": "dist/index.es.js", 14 | "typings": "dist/index.d.ts", 15 | "jsnext:main": "dist/index.es.js", 16 | "scripts": { 17 | "build": "rm -rf dist && rollup -c " 18 | }, 19 | "keywords": [ 20 | "javaScript", 21 | "typeScript", 22 | "github", 23 | "react", 24 | "open source", 25 | "payments", 26 | "flutterwave", 27 | "collections" 28 | ], 29 | "peerDependencies": { 30 | "react": "^15.0.0 || ^16.0.0", 31 | "react-dom": "^15.0.0 || ^16.0.0" 32 | }, 33 | "devDependencies": { 34 | "@babel/core": "^7.11.1", 35 | "@babel/preset-env": "^7.11.0", 36 | "@babel/preset-typescript": "^7.10.4", 37 | "@rollup/plugin-commonjs": "^14.0.0", 38 | "@rollup/plugin-node-resolve": "^8.4.0", 39 | "@rollup/plugin-typescript": "^5.0.2", 40 | "@types/react": "^16.9.45", 41 | "@types/react-dom": "^16.9.8", 42 | "@typescript-eslint/eslint-plugin": "^3.8.0", 43 | "@typescript-eslint/parser": "^3.8.0", 44 | "babel-eslint": "^10.1.0", 45 | "eslint": "^7.6.0", 46 | "eslint-config-prettier": "^6.11.0", 47 | "eslint-config-typescript": "^3.0.0", 48 | "eslint-plugin-jest": "^23.20.0", 49 | "eslint-plugin-prettier": "^3.1.4", 50 | "eslint-plugin-react": "^7.20.5", 51 | "husky": "^4.2.5", 52 | "lint-staged": "^10.2.11", 53 | "prettier": "^2.0.5", 54 | "react": "^16.13.1", 55 | "react-dom": "^16.13.1", 56 | "rollup": "^2.23.1", 57 | "rollup-plugin-babel": "^4.4.0", 58 | "rollup-plugin-commonjs": "^10.1.0", 59 | "rollup-plugin-node-resolve": "^5.2.0", 60 | "rollup-plugin-peer-deps-external": "^2.2.3", 61 | "rollup-plugin-typescript2": "^0.27.2", 62 | "typescript": "^3.9.7" 63 | }, 64 | "prettier": { 65 | "printWidth": 80, 66 | "semi": true, 67 | "tabWidth": 2, 68 | "useTabs": false, 69 | "singleQuote": true, 70 | "trailingComma": "es5", 71 | "bracketSpacing": true, 72 | "proseWrap": "always", 73 | "jsxSingleQuote": false, 74 | "jsxBracketSameLine": false, 75 | "quoteProps": "as-needed", 76 | "htmlWhitespaceSensitivity": "css" 77 | }, 78 | "husky": { 79 | "hooks": { 80 | "pre-commit": "lint-staged" 81 | } 82 | }, 83 | "lint-staged": { 84 | "**/*.+(js|ts|graphql|yml|yaml|vue|tsx)": [ 85 | "eslint --fix", 86 | "prettier --write", 87 | "jest --findRelatedTests" 88 | ], 89 | "**/*.+(css|sass|less|scss|json|html)": [ 90 | "prettier --write" 91 | ] 92 | } 93 | } 94 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import pckg from './package.json'; 2 | import commonjs from '@rollup/plugin-commonjs'; 3 | import resolve from '@rollup/plugin-node-resolve'; 4 | import typescript from 'rollup-plugin-typescript2'; 5 | import external from 'rollup-plugin-peer-deps-external'; 6 | 7 | export default { 8 | input: 'src/index.ts', 9 | output: [ 10 | { 11 | file: pckg.main, 12 | format: 'cjs', 13 | exports: 'named', 14 | }, 15 | { 16 | file: pckg.module, 17 | format: 'es', 18 | exports: 'named', 19 | }, 20 | ], 21 | plugins: [ 22 | external(), 23 | resolve(), 24 | typescript({ 25 | rollupCommonJSResolveHack: true, 26 | clean: true, 27 | }), 28 | commonjs(), 29 | ], 30 | }; 31 | -------------------------------------------------------------------------------- /src/FWButton.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import useFlutterwave from './useFW'; 3 | import { FlutterwaveConfig, FlutterWaveResponse } from './types'; 4 | 5 | interface FlutterWaveButtonProps extends FlutterwaveConfig { 6 | text?: string; 7 | className?: string; 8 | disabled?: boolean; 9 | onClose: () => void; 10 | children?: React.ReactNode; 11 | callback: (response: FlutterWaveResponse) => void; 12 | } 13 | 14 | const FlutterWaveButton = ({ 15 | text, 16 | className, 17 | children, 18 | callback, 19 | onClose, 20 | disabled, 21 | ...config 22 | }: FlutterWaveButtonProps): JSX.Element => { 23 | const handleFlutterwavePayment = useFlutterwave(config); 24 | 25 | return ( 26 | 33 | ); 34 | }; 35 | 36 | export default FlutterWaveButton; 37 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * as FlutterWaveTypes from './types'; 2 | export { default as useFlutterwave } from './useFW'; 3 | export { default as FlutterWaveButton } from './FWButton'; 4 | -------------------------------------------------------------------------------- /src/script.ts: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | 3 | const loadedScripts: { 4 | src?: string; 5 | } = {}; 6 | 7 | interface ScriptStatusInterface { 8 | loaded: boolean; 9 | error: boolean; 10 | } 11 | 12 | const src = 'https://checkout.flutterwave.com/v3.js'; 13 | 14 | export default function useFWScript(): readonly [boolean, boolean] { 15 | const [state, setState] = React.useState({ 16 | loaded: false, 17 | error: false, 18 | }); 19 | 20 | React.useEffect((): (() => void) | void => { 21 | if (loadedScripts.hasOwnProperty(src)) { 22 | setState({ 23 | loaded: true, 24 | error: false, 25 | }); 26 | } else { 27 | loadedScripts.src = src; 28 | 29 | const script = document.createElement('script'); 30 | script.src = src; 31 | script.async = true; 32 | 33 | const onScriptLoad = (): void => { 34 | setState({ 35 | loaded: true, 36 | error: false, 37 | }); 38 | }; 39 | 40 | const onScriptError = (): void => { 41 | delete loadedScripts.src; 42 | 43 | setState({ 44 | loaded: true, 45 | error: true, 46 | }); 47 | }; 48 | 49 | script.addEventListener('load', onScriptLoad); 50 | script.addEventListener('complete', onScriptLoad); 51 | script.addEventListener('error', onScriptError); 52 | 53 | document.body.appendChild(script); 54 | 55 | return () => { 56 | script.removeEventListener('load', onScriptLoad); 57 | script.removeEventListener('error', onScriptError); 58 | }; 59 | } 60 | }, []); 61 | 62 | return [state.loaded, state.error] as const; 63 | } 64 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Check out {@link https://developer.flutterwave.com/docs/flutterwave-standard} for more information. 3 | */ 4 | 5 | export interface FlutterWaveProps { 6 | /** 7 | * Your transaction reference. This MUST be unique for every transaction 8 | */ 9 | tx_ref: string; 10 | amount: number; 11 | /** 12 | * currency to charge in. Defaults to NGN 13 | */ 14 | currency?: 'NGN' | string; 15 | /** 16 | * This is a sha256 hash of your FlutterwaveCheckout values, it is used for passing secured values to the payment gateway. 17 | */ 18 | integrity_hash?: string; 19 | /** 20 | * This specifies the payment options to be displayed e.g - [card, mobilemoney, ussd] and so on. Defaults to 'card, ussd, mobilemoney' 21 | */ 22 | payment_options: 'card, ussd, mobilemoney' | string; 23 | /** 24 | * This is the payment plan ID used for Recurring billing 25 | */ 26 | payment_plan?: string; 27 | /** 28 | * URL to redirect to when a transaction is completed. This is useful for 3DSecure payments so we can redirect your customer back to a custom page you want to show them. 29 | */ 30 | redirect_url?: string; 31 | /** 32 | * This is an object that can contains your customer details. 33 | * e.g { 34 | * 'email': 'example@gmail.com', 35 | * 'phonenumber': '08012345678', 36 | * 'name': 'Takeshi Kovacs' 37 | * } 38 | */ 39 | customer: { 40 | email: string; 41 | phonenumber: string; 42 | name: string; 43 | }; 44 | /** 45 | * This is an object that helps you include additional payment information to your request 46 | * e.g { 47 | * 'consumer_id': 23, 48 | * 'consumer_mac': '92a3-912ba-1192a' 49 | * } 50 | */ 51 | meta?: Record; 52 | /** 53 | * This is an object that contains title, logo, and description you want to display on the modal e.g 54 | * e.g { 55 | * 'title': 'example@gmail.com', 56 | * 'description': '08012345678', 57 | * 'logo': 'Takeshi Kovacs' 58 | * } 59 | */ 60 | customizations: { 61 | title: string; 62 | description: string; 63 | logo: string; 64 | }; 65 | /** 66 | * function to be called when the payment is completed successfully 67 | */ 68 | callback: (data: FlutterWaveResponse) => void; 69 | /** 70 | * function to be called when the mono connection is closed 71 | */ 72 | onclose: () => void; 73 | public_key: string; 74 | } 75 | 76 | export interface FlutterwaveConfig { 77 | public_key: FlutterWaveProps['public_key']; 78 | tx_ref: FlutterWaveProps['tx_ref']; 79 | amount: FlutterWaveProps['amount']; 80 | currency?: FlutterWaveProps['currency']; 81 | customer: FlutterWaveProps['customer']; 82 | customizations: FlutterWaveProps['customizations']; 83 | meta?: FlutterWaveProps['meta']; 84 | redirect_url?: FlutterWaveProps['redirect_url']; 85 | payment_plan?: FlutterWaveProps['payment_plan']; 86 | payment_options: FlutterWaveProps['payment_options']; 87 | } 88 | 89 | export interface InitializeFlutterwavePayment { 90 | onClose: FlutterWaveProps['onclose']; 91 | callback: FlutterWaveProps['callback']; 92 | } 93 | 94 | export interface FlutterWaveResponse { 95 | amount: FlutterWaveProps['amount']; 96 | currency: FlutterWaveProps['currency']; 97 | customer: FlutterWaveProps['customer']; 98 | tx_ref: FlutterWaveProps['tx_ref']; 99 | flw_ref: string; 100 | status: string; 101 | transaction_id: number; 102 | } 103 | -------------------------------------------------------------------------------- /src/useFW.tsx: -------------------------------------------------------------------------------- 1 | /* eslint-disable @typescript-eslint/ban-ts-comment */ 2 | import * as React from 'react'; 3 | import useFWScript from './script'; 4 | import { 5 | FlutterwaveConfig, 6 | FlutterWaveProps, 7 | InitializeFlutterwavePayment, 8 | } from './types'; 9 | 10 | /** 11 | * 12 | * @param config takes in configuration for flutterwave 13 | * @returns handleFlutterwavePayment function 14 | */ 15 | export default function useFlutterwave( 16 | flutterWaveConfig: FlutterwaveConfig 17 | ): ({ callback, onClose }: InitializeFlutterwavePayment) => void { 18 | const [loaded, error] = useFWScript(); 19 | 20 | React.useEffect(() => { 21 | if (error) throw new Error('Unable to load flutterwave payment modal'); 22 | }, [error]); 23 | 24 | /** 25 | * 26 | * @param object - {callback, onClose} 27 | */ 28 | function handleFlutterwavePayment({ 29 | callback, 30 | onClose, 31 | }: InitializeFlutterwavePayment): void { 32 | if (error) throw new Error('Unable to load flutterwave payment modal'); 33 | 34 | if (loaded) { 35 | const flutterwaveArgs: FlutterWaveProps = { 36 | ...flutterWaveConfig, 37 | amount: flutterWaveConfig.amount ?? 0, 38 | callback, 39 | onclose: onClose, 40 | payment_options: 41 | flutterWaveConfig?.payment_options ?? 'card, ussd, mobilemoney', 42 | }; 43 | 44 | return ( 45 | // @ts-ignore 46 | window.FlutterwaveCheckout && 47 | // @ts-ignore 48 | window.FlutterwaveCheckout(flutterwaveArgs) 49 | ); 50 | } 51 | } 52 | 53 | return handleFlutterwavePayment; 54 | } 55 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "esnext", 5 | "lib": ["es6", "dom", "es2016", "es2017", "esnext"], 6 | "allowJs": false, 7 | "jsx": "react", 8 | "declaration": true, 9 | "sourceMap": true, 10 | "outDir": "./dist", 11 | "noEmit": true, 12 | "isolatedModules": true, 13 | "suppressImplicitAnyIndexErrors": true, 14 | "strict": true, 15 | "noImplicitAny": true, 16 | "strictNullChecks": true, 17 | "noImplicitThis": true, 18 | "skipLibCheck": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noImplicitReturns": true, 22 | "moduleResolution": "node", 23 | "allowSyntheticDefaultImports": true, 24 | "esModuleInterop": true 25 | }, 26 | "include": ["src"], 27 | "exclude": [ 28 | "node_modules", 29 | "test", 30 | "example", 31 | "dist", 32 | "**/*.spec.ts", 33 | "rollup.config.js", 34 | "build" 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4": 6 | version "7.10.4" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 8 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0": 13 | version "7.11.0" 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c" 15 | integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ== 16 | dependencies: 17 | browserslist "^4.12.0" 18 | invariant "^2.2.4" 19 | semver "^5.5.0" 20 | 21 | "@babel/core@^7.11.1": 22 | version "7.11.1" 23 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.1.tgz#2c55b604e73a40dc21b0e52650b11c65cf276643" 24 | integrity sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ== 25 | dependencies: 26 | "@babel/code-frame" "^7.10.4" 27 | "@babel/generator" "^7.11.0" 28 | "@babel/helper-module-transforms" "^7.11.0" 29 | "@babel/helpers" "^7.10.4" 30 | "@babel/parser" "^7.11.1" 31 | "@babel/template" "^7.10.4" 32 | "@babel/traverse" "^7.11.0" 33 | "@babel/types" "^7.11.0" 34 | convert-source-map "^1.7.0" 35 | debug "^4.1.0" 36 | gensync "^1.0.0-beta.1" 37 | json5 "^2.1.2" 38 | lodash "^4.17.19" 39 | resolve "^1.3.2" 40 | semver "^5.4.1" 41 | source-map "^0.5.0" 42 | 43 | "@babel/generator@^7.11.0": 44 | version "7.11.0" 45 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c" 46 | integrity sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ== 47 | dependencies: 48 | "@babel/types" "^7.11.0" 49 | jsesc "^2.5.1" 50 | source-map "^0.5.0" 51 | 52 | "@babel/helper-annotate-as-pure@^7.10.4": 53 | version "7.10.4" 54 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" 55 | integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== 56 | dependencies: 57 | "@babel/types" "^7.10.4" 58 | 59 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": 60 | version "7.10.4" 61 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" 62 | integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== 63 | dependencies: 64 | "@babel/helper-explode-assignable-expression" "^7.10.4" 65 | "@babel/types" "^7.10.4" 66 | 67 | "@babel/helper-compilation-targets@^7.10.4": 68 | version "7.10.4" 69 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2" 70 | integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== 71 | dependencies: 72 | "@babel/compat-data" "^7.10.4" 73 | browserslist "^4.12.0" 74 | invariant "^2.2.4" 75 | levenary "^1.1.1" 76 | semver "^5.5.0" 77 | 78 | "@babel/helper-create-class-features-plugin@^7.10.4", "@babel/helper-create-class-features-plugin@^7.10.5": 79 | version "7.10.5" 80 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d" 81 | integrity sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== 82 | dependencies: 83 | "@babel/helper-function-name" "^7.10.4" 84 | "@babel/helper-member-expression-to-functions" "^7.10.5" 85 | "@babel/helper-optimise-call-expression" "^7.10.4" 86 | "@babel/helper-plugin-utils" "^7.10.4" 87 | "@babel/helper-replace-supers" "^7.10.4" 88 | "@babel/helper-split-export-declaration" "^7.10.4" 89 | 90 | "@babel/helper-create-regexp-features-plugin@^7.10.4": 91 | version "7.10.4" 92 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8" 93 | integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== 94 | dependencies: 95 | "@babel/helper-annotate-as-pure" "^7.10.4" 96 | "@babel/helper-regex" "^7.10.4" 97 | regexpu-core "^4.7.0" 98 | 99 | "@babel/helper-define-map@^7.10.4": 100 | version "7.10.5" 101 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" 102 | integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== 103 | dependencies: 104 | "@babel/helper-function-name" "^7.10.4" 105 | "@babel/types" "^7.10.5" 106 | lodash "^4.17.19" 107 | 108 | "@babel/helper-explode-assignable-expression@^7.10.4": 109 | version "7.10.4" 110 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c" 111 | integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A== 112 | dependencies: 113 | "@babel/traverse" "^7.10.4" 114 | "@babel/types" "^7.10.4" 115 | 116 | "@babel/helper-function-name@^7.10.4": 117 | version "7.10.4" 118 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" 119 | integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== 120 | dependencies: 121 | "@babel/helper-get-function-arity" "^7.10.4" 122 | "@babel/template" "^7.10.4" 123 | "@babel/types" "^7.10.4" 124 | 125 | "@babel/helper-get-function-arity@^7.10.4": 126 | version "7.10.4" 127 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" 128 | integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== 129 | dependencies: 130 | "@babel/types" "^7.10.4" 131 | 132 | "@babel/helper-hoist-variables@^7.10.4": 133 | version "7.10.4" 134 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" 135 | integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== 136 | dependencies: 137 | "@babel/types" "^7.10.4" 138 | 139 | "@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5": 140 | version "7.11.0" 141 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df" 142 | integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q== 143 | dependencies: 144 | "@babel/types" "^7.11.0" 145 | 146 | "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4": 147 | version "7.10.4" 148 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" 149 | integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== 150 | dependencies: 151 | "@babel/types" "^7.10.4" 152 | 153 | "@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0": 154 | version "7.11.0" 155 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" 156 | integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== 157 | dependencies: 158 | "@babel/helper-module-imports" "^7.10.4" 159 | "@babel/helper-replace-supers" "^7.10.4" 160 | "@babel/helper-simple-access" "^7.10.4" 161 | "@babel/helper-split-export-declaration" "^7.11.0" 162 | "@babel/template" "^7.10.4" 163 | "@babel/types" "^7.11.0" 164 | lodash "^4.17.19" 165 | 166 | "@babel/helper-optimise-call-expression@^7.10.4": 167 | version "7.10.4" 168 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" 169 | integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== 170 | dependencies: 171 | "@babel/types" "^7.10.4" 172 | 173 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 174 | version "7.10.4" 175 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" 176 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== 177 | 178 | "@babel/helper-regex@^7.10.4": 179 | version "7.10.5" 180 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0" 181 | integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== 182 | dependencies: 183 | lodash "^4.17.19" 184 | 185 | "@babel/helper-remap-async-to-generator@^7.10.4": 186 | version "7.10.4" 187 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5" 188 | integrity sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg== 189 | dependencies: 190 | "@babel/helper-annotate-as-pure" "^7.10.4" 191 | "@babel/helper-wrap-function" "^7.10.4" 192 | "@babel/template" "^7.10.4" 193 | "@babel/traverse" "^7.10.4" 194 | "@babel/types" "^7.10.4" 195 | 196 | "@babel/helper-replace-supers@^7.10.4": 197 | version "7.10.4" 198 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" 199 | integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== 200 | dependencies: 201 | "@babel/helper-member-expression-to-functions" "^7.10.4" 202 | "@babel/helper-optimise-call-expression" "^7.10.4" 203 | "@babel/traverse" "^7.10.4" 204 | "@babel/types" "^7.10.4" 205 | 206 | "@babel/helper-simple-access@^7.10.4": 207 | version "7.10.4" 208 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" 209 | integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== 210 | dependencies: 211 | "@babel/template" "^7.10.4" 212 | "@babel/types" "^7.10.4" 213 | 214 | "@babel/helper-skip-transparent-expression-wrappers@^7.11.0": 215 | version "7.11.0" 216 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729" 217 | integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q== 218 | dependencies: 219 | "@babel/types" "^7.11.0" 220 | 221 | "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": 222 | version "7.11.0" 223 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" 224 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== 225 | dependencies: 226 | "@babel/types" "^7.11.0" 227 | 228 | "@babel/helper-validator-identifier@^7.10.4": 229 | version "7.10.4" 230 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 231 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 232 | 233 | "@babel/helper-wrap-function@^7.10.4": 234 | version "7.10.4" 235 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87" 236 | integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== 237 | dependencies: 238 | "@babel/helper-function-name" "^7.10.4" 239 | "@babel/template" "^7.10.4" 240 | "@babel/traverse" "^7.10.4" 241 | "@babel/types" "^7.10.4" 242 | 243 | "@babel/helpers@^7.10.4": 244 | version "7.10.4" 245 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" 246 | integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== 247 | dependencies: 248 | "@babel/template" "^7.10.4" 249 | "@babel/traverse" "^7.10.4" 250 | "@babel/types" "^7.10.4" 251 | 252 | "@babel/highlight@^7.10.4": 253 | version "7.10.4" 254 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 255 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 256 | dependencies: 257 | "@babel/helper-validator-identifier" "^7.10.4" 258 | chalk "^2.0.0" 259 | js-tokens "^4.0.0" 260 | 261 | "@babel/parser@^7.10.4", "@babel/parser@^7.11.0", "@babel/parser@^7.11.1", "@babel/parser@^7.7.0": 262 | version "7.11.3" 263 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.3.tgz#9e1eae46738bcd08e23e867bab43e7b95299a8f9" 264 | integrity sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA== 265 | 266 | "@babel/plugin-proposal-async-generator-functions@^7.10.4": 267 | version "7.10.5" 268 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558" 269 | integrity sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== 270 | dependencies: 271 | "@babel/helper-plugin-utils" "^7.10.4" 272 | "@babel/helper-remap-async-to-generator" "^7.10.4" 273 | "@babel/plugin-syntax-async-generators" "^7.8.0" 274 | 275 | "@babel/plugin-proposal-class-properties@^7.10.4": 276 | version "7.10.4" 277 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807" 278 | integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== 279 | dependencies: 280 | "@babel/helper-create-class-features-plugin" "^7.10.4" 281 | "@babel/helper-plugin-utils" "^7.10.4" 282 | 283 | "@babel/plugin-proposal-dynamic-import@^7.10.4": 284 | version "7.10.4" 285 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e" 286 | integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== 287 | dependencies: 288 | "@babel/helper-plugin-utils" "^7.10.4" 289 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 290 | 291 | "@babel/plugin-proposal-export-namespace-from@^7.10.4": 292 | version "7.10.4" 293 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz#570d883b91031637b3e2958eea3c438e62c05f54" 294 | integrity sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg== 295 | dependencies: 296 | "@babel/helper-plugin-utils" "^7.10.4" 297 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 298 | 299 | "@babel/plugin-proposal-json-strings@^7.10.4": 300 | version "7.10.4" 301 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db" 302 | integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== 303 | dependencies: 304 | "@babel/helper-plugin-utils" "^7.10.4" 305 | "@babel/plugin-syntax-json-strings" "^7.8.0" 306 | 307 | "@babel/plugin-proposal-logical-assignment-operators@^7.11.0": 308 | version "7.11.0" 309 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz#9f80e482c03083c87125dee10026b58527ea20c8" 310 | integrity sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q== 311 | dependencies: 312 | "@babel/helper-plugin-utils" "^7.10.4" 313 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 314 | 315 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4": 316 | version "7.10.4" 317 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a" 318 | integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== 319 | dependencies: 320 | "@babel/helper-plugin-utils" "^7.10.4" 321 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 322 | 323 | "@babel/plugin-proposal-numeric-separator@^7.10.4": 324 | version "7.10.4" 325 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06" 326 | integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== 327 | dependencies: 328 | "@babel/helper-plugin-utils" "^7.10.4" 329 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 330 | 331 | "@babel/plugin-proposal-object-rest-spread@^7.11.0": 332 | version "7.11.0" 333 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af" 334 | integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== 335 | dependencies: 336 | "@babel/helper-plugin-utils" "^7.10.4" 337 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 338 | "@babel/plugin-transform-parameters" "^7.10.4" 339 | 340 | "@babel/plugin-proposal-optional-catch-binding@^7.10.4": 341 | version "7.10.4" 342 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd" 343 | integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== 344 | dependencies: 345 | "@babel/helper-plugin-utils" "^7.10.4" 346 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 347 | 348 | "@babel/plugin-proposal-optional-chaining@^7.11.0": 349 | version "7.11.0" 350 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076" 351 | integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA== 352 | dependencies: 353 | "@babel/helper-plugin-utils" "^7.10.4" 354 | "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" 355 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 356 | 357 | "@babel/plugin-proposal-private-methods@^7.10.4": 358 | version "7.10.4" 359 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909" 360 | integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== 361 | dependencies: 362 | "@babel/helper-create-class-features-plugin" "^7.10.4" 363 | "@babel/helper-plugin-utils" "^7.10.4" 364 | 365 | "@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 366 | version "7.10.4" 367 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d" 368 | integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== 369 | dependencies: 370 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 371 | "@babel/helper-plugin-utils" "^7.10.4" 372 | 373 | "@babel/plugin-syntax-async-generators@^7.8.0": 374 | version "7.8.4" 375 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 376 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 377 | dependencies: 378 | "@babel/helper-plugin-utils" "^7.8.0" 379 | 380 | "@babel/plugin-syntax-class-properties@^7.10.4": 381 | version "7.10.4" 382 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" 383 | integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== 384 | dependencies: 385 | "@babel/helper-plugin-utils" "^7.10.4" 386 | 387 | "@babel/plugin-syntax-dynamic-import@^7.8.0": 388 | version "7.8.3" 389 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 390 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 391 | dependencies: 392 | "@babel/helper-plugin-utils" "^7.8.0" 393 | 394 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 395 | version "7.8.3" 396 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 397 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 398 | dependencies: 399 | "@babel/helper-plugin-utils" "^7.8.3" 400 | 401 | "@babel/plugin-syntax-json-strings@^7.8.0": 402 | version "7.8.3" 403 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 404 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 405 | dependencies: 406 | "@babel/helper-plugin-utils" "^7.8.0" 407 | 408 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": 409 | version "7.10.4" 410 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 411 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 412 | dependencies: 413 | "@babel/helper-plugin-utils" "^7.10.4" 414 | 415 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": 416 | version "7.8.3" 417 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 418 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 419 | dependencies: 420 | "@babel/helper-plugin-utils" "^7.8.0" 421 | 422 | "@babel/plugin-syntax-numeric-separator@^7.10.4": 423 | version "7.10.4" 424 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 425 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 426 | dependencies: 427 | "@babel/helper-plugin-utils" "^7.10.4" 428 | 429 | "@babel/plugin-syntax-object-rest-spread@^7.8.0": 430 | version "7.8.3" 431 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 432 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 433 | dependencies: 434 | "@babel/helper-plugin-utils" "^7.8.0" 435 | 436 | "@babel/plugin-syntax-optional-catch-binding@^7.8.0": 437 | version "7.8.3" 438 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 439 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 440 | dependencies: 441 | "@babel/helper-plugin-utils" "^7.8.0" 442 | 443 | "@babel/plugin-syntax-optional-chaining@^7.8.0": 444 | version "7.8.3" 445 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 446 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 447 | dependencies: 448 | "@babel/helper-plugin-utils" "^7.8.0" 449 | 450 | "@babel/plugin-syntax-top-level-await@^7.10.4": 451 | version "7.10.4" 452 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d" 453 | integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== 454 | dependencies: 455 | "@babel/helper-plugin-utils" "^7.10.4" 456 | 457 | "@babel/plugin-syntax-typescript@^7.10.4": 458 | version "7.10.4" 459 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz#2f55e770d3501e83af217d782cb7517d7bb34d25" 460 | integrity sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== 461 | dependencies: 462 | "@babel/helper-plugin-utils" "^7.10.4" 463 | 464 | "@babel/plugin-transform-arrow-functions@^7.10.4": 465 | version "7.10.4" 466 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd" 467 | integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== 468 | dependencies: 469 | "@babel/helper-plugin-utils" "^7.10.4" 470 | 471 | "@babel/plugin-transform-async-to-generator@^7.10.4": 472 | version "7.10.4" 473 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37" 474 | integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== 475 | dependencies: 476 | "@babel/helper-module-imports" "^7.10.4" 477 | "@babel/helper-plugin-utils" "^7.10.4" 478 | "@babel/helper-remap-async-to-generator" "^7.10.4" 479 | 480 | "@babel/plugin-transform-block-scoped-functions@^7.10.4": 481 | version "7.10.4" 482 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8" 483 | integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== 484 | dependencies: 485 | "@babel/helper-plugin-utils" "^7.10.4" 486 | 487 | "@babel/plugin-transform-block-scoping@^7.10.4": 488 | version "7.11.1" 489 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215" 490 | integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== 491 | dependencies: 492 | "@babel/helper-plugin-utils" "^7.10.4" 493 | 494 | "@babel/plugin-transform-classes@^7.10.4": 495 | version "7.10.4" 496 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7" 497 | integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== 498 | dependencies: 499 | "@babel/helper-annotate-as-pure" "^7.10.4" 500 | "@babel/helper-define-map" "^7.10.4" 501 | "@babel/helper-function-name" "^7.10.4" 502 | "@babel/helper-optimise-call-expression" "^7.10.4" 503 | "@babel/helper-plugin-utils" "^7.10.4" 504 | "@babel/helper-replace-supers" "^7.10.4" 505 | "@babel/helper-split-export-declaration" "^7.10.4" 506 | globals "^11.1.0" 507 | 508 | "@babel/plugin-transform-computed-properties@^7.10.4": 509 | version "7.10.4" 510 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb" 511 | integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== 512 | dependencies: 513 | "@babel/helper-plugin-utils" "^7.10.4" 514 | 515 | "@babel/plugin-transform-destructuring@^7.10.4": 516 | version "7.10.4" 517 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5" 518 | integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== 519 | dependencies: 520 | "@babel/helper-plugin-utils" "^7.10.4" 521 | 522 | "@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4": 523 | version "7.10.4" 524 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee" 525 | integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== 526 | dependencies: 527 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 528 | "@babel/helper-plugin-utils" "^7.10.4" 529 | 530 | "@babel/plugin-transform-duplicate-keys@^7.10.4": 531 | version "7.10.4" 532 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47" 533 | integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== 534 | dependencies: 535 | "@babel/helper-plugin-utils" "^7.10.4" 536 | 537 | "@babel/plugin-transform-exponentiation-operator@^7.10.4": 538 | version "7.10.4" 539 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e" 540 | integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== 541 | dependencies: 542 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" 543 | "@babel/helper-plugin-utils" "^7.10.4" 544 | 545 | "@babel/plugin-transform-for-of@^7.10.4": 546 | version "7.10.4" 547 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9" 548 | integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== 549 | dependencies: 550 | "@babel/helper-plugin-utils" "^7.10.4" 551 | 552 | "@babel/plugin-transform-function-name@^7.10.4": 553 | version "7.10.4" 554 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7" 555 | integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== 556 | dependencies: 557 | "@babel/helper-function-name" "^7.10.4" 558 | "@babel/helper-plugin-utils" "^7.10.4" 559 | 560 | "@babel/plugin-transform-literals@^7.10.4": 561 | version "7.10.4" 562 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c" 563 | integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== 564 | dependencies: 565 | "@babel/helper-plugin-utils" "^7.10.4" 566 | 567 | "@babel/plugin-transform-member-expression-literals@^7.10.4": 568 | version "7.10.4" 569 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7" 570 | integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== 571 | dependencies: 572 | "@babel/helper-plugin-utils" "^7.10.4" 573 | 574 | "@babel/plugin-transform-modules-amd@^7.10.4": 575 | version "7.10.5" 576 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1" 577 | integrity sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== 578 | dependencies: 579 | "@babel/helper-module-transforms" "^7.10.5" 580 | "@babel/helper-plugin-utils" "^7.10.4" 581 | babel-plugin-dynamic-import-node "^2.3.3" 582 | 583 | "@babel/plugin-transform-modules-commonjs@^7.10.4": 584 | version "7.10.4" 585 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0" 586 | integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== 587 | dependencies: 588 | "@babel/helper-module-transforms" "^7.10.4" 589 | "@babel/helper-plugin-utils" "^7.10.4" 590 | "@babel/helper-simple-access" "^7.10.4" 591 | babel-plugin-dynamic-import-node "^2.3.3" 592 | 593 | "@babel/plugin-transform-modules-systemjs@^7.10.4": 594 | version "7.10.5" 595 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85" 596 | integrity sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== 597 | dependencies: 598 | "@babel/helper-hoist-variables" "^7.10.4" 599 | "@babel/helper-module-transforms" "^7.10.5" 600 | "@babel/helper-plugin-utils" "^7.10.4" 601 | babel-plugin-dynamic-import-node "^2.3.3" 602 | 603 | "@babel/plugin-transform-modules-umd@^7.10.4": 604 | version "7.10.4" 605 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e" 606 | integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== 607 | dependencies: 608 | "@babel/helper-module-transforms" "^7.10.4" 609 | "@babel/helper-plugin-utils" "^7.10.4" 610 | 611 | "@babel/plugin-transform-named-capturing-groups-regex@^7.10.4": 612 | version "7.10.4" 613 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6" 614 | integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== 615 | dependencies: 616 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 617 | 618 | "@babel/plugin-transform-new-target@^7.10.4": 619 | version "7.10.4" 620 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888" 621 | integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== 622 | dependencies: 623 | "@babel/helper-plugin-utils" "^7.10.4" 624 | 625 | "@babel/plugin-transform-object-super@^7.10.4": 626 | version "7.10.4" 627 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894" 628 | integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== 629 | dependencies: 630 | "@babel/helper-plugin-utils" "^7.10.4" 631 | "@babel/helper-replace-supers" "^7.10.4" 632 | 633 | "@babel/plugin-transform-parameters@^7.10.4": 634 | version "7.10.5" 635 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a" 636 | integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== 637 | dependencies: 638 | "@babel/helper-get-function-arity" "^7.10.4" 639 | "@babel/helper-plugin-utils" "^7.10.4" 640 | 641 | "@babel/plugin-transform-property-literals@^7.10.4": 642 | version "7.10.4" 643 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0" 644 | integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== 645 | dependencies: 646 | "@babel/helper-plugin-utils" "^7.10.4" 647 | 648 | "@babel/plugin-transform-regenerator@^7.10.4": 649 | version "7.10.4" 650 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63" 651 | integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== 652 | dependencies: 653 | regenerator-transform "^0.14.2" 654 | 655 | "@babel/plugin-transform-reserved-words@^7.10.4": 656 | version "7.10.4" 657 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd" 658 | integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== 659 | dependencies: 660 | "@babel/helper-plugin-utils" "^7.10.4" 661 | 662 | "@babel/plugin-transform-shorthand-properties@^7.10.4": 663 | version "7.10.4" 664 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6" 665 | integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== 666 | dependencies: 667 | "@babel/helper-plugin-utils" "^7.10.4" 668 | 669 | "@babel/plugin-transform-spread@^7.11.0": 670 | version "7.11.0" 671 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc" 672 | integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== 673 | dependencies: 674 | "@babel/helper-plugin-utils" "^7.10.4" 675 | "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" 676 | 677 | "@babel/plugin-transform-sticky-regex@^7.10.4": 678 | version "7.10.4" 679 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d" 680 | integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== 681 | dependencies: 682 | "@babel/helper-plugin-utils" "^7.10.4" 683 | "@babel/helper-regex" "^7.10.4" 684 | 685 | "@babel/plugin-transform-template-literals@^7.10.4": 686 | version "7.10.5" 687 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c" 688 | integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== 689 | dependencies: 690 | "@babel/helper-annotate-as-pure" "^7.10.4" 691 | "@babel/helper-plugin-utils" "^7.10.4" 692 | 693 | "@babel/plugin-transform-typeof-symbol@^7.10.4": 694 | version "7.10.4" 695 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc" 696 | integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== 697 | dependencies: 698 | "@babel/helper-plugin-utils" "^7.10.4" 699 | 700 | "@babel/plugin-transform-typescript@^7.10.4": 701 | version "7.11.0" 702 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.11.0.tgz#2b4879676af37342ebb278216dd090ac67f13abb" 703 | integrity sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w== 704 | dependencies: 705 | "@babel/helper-create-class-features-plugin" "^7.10.5" 706 | "@babel/helper-plugin-utils" "^7.10.4" 707 | "@babel/plugin-syntax-typescript" "^7.10.4" 708 | 709 | "@babel/plugin-transform-unicode-escapes@^7.10.4": 710 | version "7.10.4" 711 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007" 712 | integrity sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== 713 | dependencies: 714 | "@babel/helper-plugin-utils" "^7.10.4" 715 | 716 | "@babel/plugin-transform-unicode-regex@^7.10.4": 717 | version "7.10.4" 718 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8" 719 | integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== 720 | dependencies: 721 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" 722 | "@babel/helper-plugin-utils" "^7.10.4" 723 | 724 | "@babel/preset-env@^7.11.0": 725 | version "7.11.0" 726 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.0.tgz#860ee38f2ce17ad60480c2021ba9689393efb796" 727 | integrity sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg== 728 | dependencies: 729 | "@babel/compat-data" "^7.11.0" 730 | "@babel/helper-compilation-targets" "^7.10.4" 731 | "@babel/helper-module-imports" "^7.10.4" 732 | "@babel/helper-plugin-utils" "^7.10.4" 733 | "@babel/plugin-proposal-async-generator-functions" "^7.10.4" 734 | "@babel/plugin-proposal-class-properties" "^7.10.4" 735 | "@babel/plugin-proposal-dynamic-import" "^7.10.4" 736 | "@babel/plugin-proposal-export-namespace-from" "^7.10.4" 737 | "@babel/plugin-proposal-json-strings" "^7.10.4" 738 | "@babel/plugin-proposal-logical-assignment-operators" "^7.11.0" 739 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4" 740 | "@babel/plugin-proposal-numeric-separator" "^7.10.4" 741 | "@babel/plugin-proposal-object-rest-spread" "^7.11.0" 742 | "@babel/plugin-proposal-optional-catch-binding" "^7.10.4" 743 | "@babel/plugin-proposal-optional-chaining" "^7.11.0" 744 | "@babel/plugin-proposal-private-methods" "^7.10.4" 745 | "@babel/plugin-proposal-unicode-property-regex" "^7.10.4" 746 | "@babel/plugin-syntax-async-generators" "^7.8.0" 747 | "@babel/plugin-syntax-class-properties" "^7.10.4" 748 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" 749 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 750 | "@babel/plugin-syntax-json-strings" "^7.8.0" 751 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 752 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" 753 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 754 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" 755 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" 756 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" 757 | "@babel/plugin-syntax-top-level-await" "^7.10.4" 758 | "@babel/plugin-transform-arrow-functions" "^7.10.4" 759 | "@babel/plugin-transform-async-to-generator" "^7.10.4" 760 | "@babel/plugin-transform-block-scoped-functions" "^7.10.4" 761 | "@babel/plugin-transform-block-scoping" "^7.10.4" 762 | "@babel/plugin-transform-classes" "^7.10.4" 763 | "@babel/plugin-transform-computed-properties" "^7.10.4" 764 | "@babel/plugin-transform-destructuring" "^7.10.4" 765 | "@babel/plugin-transform-dotall-regex" "^7.10.4" 766 | "@babel/plugin-transform-duplicate-keys" "^7.10.4" 767 | "@babel/plugin-transform-exponentiation-operator" "^7.10.4" 768 | "@babel/plugin-transform-for-of" "^7.10.4" 769 | "@babel/plugin-transform-function-name" "^7.10.4" 770 | "@babel/plugin-transform-literals" "^7.10.4" 771 | "@babel/plugin-transform-member-expression-literals" "^7.10.4" 772 | "@babel/plugin-transform-modules-amd" "^7.10.4" 773 | "@babel/plugin-transform-modules-commonjs" "^7.10.4" 774 | "@babel/plugin-transform-modules-systemjs" "^7.10.4" 775 | "@babel/plugin-transform-modules-umd" "^7.10.4" 776 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4" 777 | "@babel/plugin-transform-new-target" "^7.10.4" 778 | "@babel/plugin-transform-object-super" "^7.10.4" 779 | "@babel/plugin-transform-parameters" "^7.10.4" 780 | "@babel/plugin-transform-property-literals" "^7.10.4" 781 | "@babel/plugin-transform-regenerator" "^7.10.4" 782 | "@babel/plugin-transform-reserved-words" "^7.10.4" 783 | "@babel/plugin-transform-shorthand-properties" "^7.10.4" 784 | "@babel/plugin-transform-spread" "^7.11.0" 785 | "@babel/plugin-transform-sticky-regex" "^7.10.4" 786 | "@babel/plugin-transform-template-literals" "^7.10.4" 787 | "@babel/plugin-transform-typeof-symbol" "^7.10.4" 788 | "@babel/plugin-transform-unicode-escapes" "^7.10.4" 789 | "@babel/plugin-transform-unicode-regex" "^7.10.4" 790 | "@babel/preset-modules" "^0.1.3" 791 | "@babel/types" "^7.11.0" 792 | browserslist "^4.12.0" 793 | core-js-compat "^3.6.2" 794 | invariant "^2.2.2" 795 | levenary "^1.1.1" 796 | semver "^5.5.0" 797 | 798 | "@babel/preset-modules@^0.1.3": 799 | version "0.1.3" 800 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" 801 | integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== 802 | dependencies: 803 | "@babel/helper-plugin-utils" "^7.0.0" 804 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 805 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 806 | "@babel/types" "^7.4.4" 807 | esutils "^2.0.2" 808 | 809 | "@babel/preset-typescript@^7.10.4": 810 | version "7.10.4" 811 | resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.10.4.tgz#7d5d052e52a682480d6e2cc5aa31be61c8c25e36" 812 | integrity sha512-SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ== 813 | dependencies: 814 | "@babel/helper-plugin-utils" "^7.10.4" 815 | "@babel/plugin-transform-typescript" "^7.10.4" 816 | 817 | "@babel/runtime@^7.8.4": 818 | version "7.11.2" 819 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736" 820 | integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw== 821 | dependencies: 822 | regenerator-runtime "^0.13.4" 823 | 824 | "@babel/template@^7.10.4": 825 | version "7.10.4" 826 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" 827 | integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== 828 | dependencies: 829 | "@babel/code-frame" "^7.10.4" 830 | "@babel/parser" "^7.10.4" 831 | "@babel/types" "^7.10.4" 832 | 833 | "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0", "@babel/traverse@^7.7.0": 834 | version "7.11.0" 835 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24" 836 | integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg== 837 | dependencies: 838 | "@babel/code-frame" "^7.10.4" 839 | "@babel/generator" "^7.11.0" 840 | "@babel/helper-function-name" "^7.10.4" 841 | "@babel/helper-split-export-declaration" "^7.11.0" 842 | "@babel/parser" "^7.11.0" 843 | "@babel/types" "^7.11.0" 844 | debug "^4.1.0" 845 | globals "^11.1.0" 846 | lodash "^4.17.19" 847 | 848 | "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0": 849 | version "7.11.0" 850 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d" 851 | integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA== 852 | dependencies: 853 | "@babel/helper-validator-identifier" "^7.10.4" 854 | lodash "^4.17.19" 855 | to-fast-properties "^2.0.0" 856 | 857 | "@rollup/plugin-commonjs@^14.0.0": 858 | version "14.0.0" 859 | resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-14.0.0.tgz#4285f9ec2db686a31129e5a2b415c94aa1f836f0" 860 | integrity sha512-+PSmD9ePwTAeU106i9FRdc+Zb3XUWyW26mo5Atr2mk82hor8+nPwkztEjFo8/B1fJKfaQDg9aM2bzQkjhi7zOw== 861 | dependencies: 862 | "@rollup/pluginutils" "^3.0.8" 863 | commondir "^1.0.1" 864 | estree-walker "^1.0.1" 865 | glob "^7.1.2" 866 | is-reference "^1.1.2" 867 | magic-string "^0.25.2" 868 | resolve "^1.11.0" 869 | 870 | "@rollup/plugin-node-resolve@^8.4.0": 871 | version "8.4.0" 872 | resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-8.4.0.tgz#261d79a680e9dc3d86761c14462f24126ba83575" 873 | integrity sha512-LFqKdRLn0ShtQyf6SBYO69bGE1upV6wUhBX0vFOUnLAyzx5cwp8svA0eHUnu8+YU57XOkrMtfG63QOpQx25pHQ== 874 | dependencies: 875 | "@rollup/pluginutils" "^3.1.0" 876 | "@types/resolve" "1.17.1" 877 | builtin-modules "^3.1.0" 878 | deep-freeze "^0.0.1" 879 | deepmerge "^4.2.2" 880 | is-module "^1.0.0" 881 | resolve "^1.17.0" 882 | 883 | "@rollup/plugin-typescript@^5.0.2": 884 | version "5.0.2" 885 | resolved "https://registry.yarnpkg.com/@rollup/plugin-typescript/-/plugin-typescript-5.0.2.tgz#e879b73354851868b805bbd43f15c229123b8a71" 886 | integrity sha512-CkS028Itwjqm1uLbFVfpJgtVtnNvZ+og/m6UlNRR5wOOnNTWPcVQzOu5xGdEX+WWJxdvWIqUq2uR/RBt2ZipWg== 887 | dependencies: 888 | "@rollup/pluginutils" "^3.0.1" 889 | resolve "^1.14.1" 890 | 891 | "@rollup/pluginutils@^3.0.1", "@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0": 892 | version "3.1.0" 893 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" 894 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== 895 | dependencies: 896 | "@types/estree" "0.0.39" 897 | estree-walker "^1.0.1" 898 | picomatch "^2.2.2" 899 | 900 | "@types/color-name@^1.1.1": 901 | version "1.1.1" 902 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 903 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 904 | 905 | "@types/eslint-visitor-keys@^1.0.0": 906 | version "1.0.0" 907 | resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" 908 | integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== 909 | 910 | "@types/estree@*": 911 | version "0.0.45" 912 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" 913 | integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== 914 | 915 | "@types/estree@0.0.39": 916 | version "0.0.39" 917 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 918 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 919 | 920 | "@types/json-schema@^7.0.3": 921 | version "7.0.5" 922 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" 923 | integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== 924 | 925 | "@types/node@*": 926 | version "14.0.27" 927 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.27.tgz#a151873af5a5e851b51b3b065c9e63390a9e0eb1" 928 | integrity sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g== 929 | 930 | "@types/parse-json@^4.0.0": 931 | version "4.0.0" 932 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 933 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 934 | 935 | "@types/prop-types@*": 936 | version "15.7.3" 937 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 938 | integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 939 | 940 | "@types/react-dom@^16.9.8": 941 | version "16.9.8" 942 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.8.tgz#fe4c1e11dfc67155733dfa6aa65108b4971cb423" 943 | integrity sha512-ykkPQ+5nFknnlU6lDd947WbQ6TE3NNzbQAkInC2EKY1qeYdTKp7onFusmYZb+ityzx2YviqT6BXSu+LyWWJwcA== 944 | dependencies: 945 | "@types/react" "*" 946 | 947 | "@types/react@*", "@types/react@^16.9.45": 948 | version "16.9.45" 949 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.45.tgz#b43ccf3d8a3d2020e6a48c8c8492e5a4bc10f097" 950 | integrity sha512-vv950slTF5UZ5eDOf13b8qC1SD4rTvkqg3HfaUKzr17U97oeJZAa+dUaIHn0QoOJflNTIt6Pem9MmapULs9dkA== 951 | dependencies: 952 | "@types/prop-types" "*" 953 | csstype "^3.0.2" 954 | 955 | "@types/resolve@0.0.8": 956 | version "0.0.8" 957 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194" 958 | integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== 959 | dependencies: 960 | "@types/node" "*" 961 | 962 | "@types/resolve@1.17.1": 963 | version "1.17.1" 964 | resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" 965 | integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== 966 | dependencies: 967 | "@types/node" "*" 968 | 969 | "@typescript-eslint/eslint-plugin@^3.8.0": 970 | version "3.8.0" 971 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.8.0.tgz#f82947bcdd9a4e42be7ad80dfd61f1dc411dd1df" 972 | integrity sha512-lFb4VCDleFSR+eo4Ew+HvrJ37ZH1Y9ZyE+qyP7EiwBpcCVxwmUc5PAqhShCQ8N8U5vqYydm74nss+a0wrrCErw== 973 | dependencies: 974 | "@typescript-eslint/experimental-utils" "3.8.0" 975 | debug "^4.1.1" 976 | functional-red-black-tree "^1.0.1" 977 | regexpp "^3.0.0" 978 | semver "^7.3.2" 979 | tsutils "^3.17.1" 980 | 981 | "@typescript-eslint/experimental-utils@3.8.0": 982 | version "3.8.0" 983 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.8.0.tgz#ac1f7c88322dcfb7635ece6f0441516dd951099a" 984 | integrity sha512-o8T1blo1lAJE0QDsW7nSyvZHbiDzQDjINJKyB44Z3sSL39qBy5L10ScI/XwDtaiunoyKGLiY9bzRk4YjsUZl8w== 985 | dependencies: 986 | "@types/json-schema" "^7.0.3" 987 | "@typescript-eslint/types" "3.8.0" 988 | "@typescript-eslint/typescript-estree" "3.8.0" 989 | eslint-scope "^5.0.0" 990 | eslint-utils "^2.0.0" 991 | 992 | "@typescript-eslint/experimental-utils@^2.5.0": 993 | version "2.34.0" 994 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f" 995 | integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== 996 | dependencies: 997 | "@types/json-schema" "^7.0.3" 998 | "@typescript-eslint/typescript-estree" "2.34.0" 999 | eslint-scope "^5.0.0" 1000 | eslint-utils "^2.0.0" 1001 | 1002 | "@typescript-eslint/parser@^3.8.0": 1003 | version "3.8.0" 1004 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.8.0.tgz#8e1dcd404299bf79492409c81c415fa95a7c622b" 1005 | integrity sha512-u5vjOBaCsnMVQOvkKCXAmmOhyyMmFFf5dbkM3TIbg3MZ2pyv5peE4gj81UAbTHwTOXEwf7eCQTUMKrDl/+qGnA== 1006 | dependencies: 1007 | "@types/eslint-visitor-keys" "^1.0.0" 1008 | "@typescript-eslint/experimental-utils" "3.8.0" 1009 | "@typescript-eslint/types" "3.8.0" 1010 | "@typescript-eslint/typescript-estree" "3.8.0" 1011 | eslint-visitor-keys "^1.1.0" 1012 | 1013 | "@typescript-eslint/types@3.8.0": 1014 | version "3.8.0" 1015 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.8.0.tgz#58581dd863f86e0cd23353d94362bb90b4bea796" 1016 | integrity sha512-8kROmEQkv6ss9kdQ44vCN1dTrgu4Qxrd2kXr10kz2NP5T8/7JnEfYNxCpPkArbLIhhkGLZV3aVMplH1RXQRF7Q== 1017 | 1018 | "@typescript-eslint/typescript-estree@2.34.0": 1019 | version "2.34.0" 1020 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5" 1021 | integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== 1022 | dependencies: 1023 | debug "^4.1.1" 1024 | eslint-visitor-keys "^1.1.0" 1025 | glob "^7.1.6" 1026 | is-glob "^4.0.1" 1027 | lodash "^4.17.15" 1028 | semver "^7.3.2" 1029 | tsutils "^3.17.1" 1030 | 1031 | "@typescript-eslint/typescript-estree@3.8.0": 1032 | version "3.8.0" 1033 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.8.0.tgz#0606d19f629f813dbdd5a34c7a1e895d6191cac6" 1034 | integrity sha512-MTv9nPDhlKfclwnplRNDL44mP2SY96YmPGxmMbMy6x12I+pERcxpIUht7DXZaj4mOKKtet53wYYXU0ABaiXrLw== 1035 | dependencies: 1036 | "@typescript-eslint/types" "3.8.0" 1037 | "@typescript-eslint/visitor-keys" "3.8.0" 1038 | debug "^4.1.1" 1039 | glob "^7.1.6" 1040 | is-glob "^4.0.1" 1041 | lodash "^4.17.15" 1042 | semver "^7.3.2" 1043 | tsutils "^3.17.1" 1044 | 1045 | "@typescript-eslint/visitor-keys@3.8.0": 1046 | version "3.8.0" 1047 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.8.0.tgz#ad35110249fb3fc30a36bfcbfeea93e710cfaab1" 1048 | integrity sha512-gfqQWyVPpT9NpLREXNR820AYwgz+Kr1GuF3nf1wxpHD6hdxI62tq03ToomFnDxY0m3pUB39IF7sil7D5TQexLA== 1049 | dependencies: 1050 | eslint-visitor-keys "^1.1.0" 1051 | 1052 | acorn-jsx@^5.2.0: 1053 | version "5.2.0" 1054 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" 1055 | integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== 1056 | 1057 | acorn@^7.3.1: 1058 | version "7.4.0" 1059 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" 1060 | integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== 1061 | 1062 | aggregate-error@^3.0.0: 1063 | version "3.0.1" 1064 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" 1065 | integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== 1066 | dependencies: 1067 | clean-stack "^2.0.0" 1068 | indent-string "^4.0.0" 1069 | 1070 | ajv@^6.10.0, ajv@^6.10.2: 1071 | version "6.12.3" 1072 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706" 1073 | integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA== 1074 | dependencies: 1075 | fast-deep-equal "^3.1.1" 1076 | fast-json-stable-stringify "^2.0.0" 1077 | json-schema-traverse "^0.4.1" 1078 | uri-js "^4.2.2" 1079 | 1080 | ansi-colors@^4.1.1: 1081 | version "4.1.1" 1082 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 1083 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 1084 | 1085 | ansi-escapes@^4.3.0: 1086 | version "4.3.1" 1087 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 1088 | integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== 1089 | dependencies: 1090 | type-fest "^0.11.0" 1091 | 1092 | ansi-regex@^4.1.0: 1093 | version "4.1.0" 1094 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 1095 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 1096 | 1097 | ansi-regex@^5.0.0: 1098 | version "5.0.0" 1099 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 1100 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 1101 | 1102 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 1103 | version "3.2.1" 1104 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1105 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1106 | dependencies: 1107 | color-convert "^1.9.0" 1108 | 1109 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1110 | version "4.2.1" 1111 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 1112 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 1113 | dependencies: 1114 | "@types/color-name" "^1.1.1" 1115 | color-convert "^2.0.1" 1116 | 1117 | argparse@^1.0.7: 1118 | version "1.0.10" 1119 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 1120 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 1121 | dependencies: 1122 | sprintf-js "~1.0.2" 1123 | 1124 | array-includes@^3.1.1: 1125 | version "3.1.1" 1126 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" 1127 | integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== 1128 | dependencies: 1129 | define-properties "^1.1.3" 1130 | es-abstract "^1.17.0" 1131 | is-string "^1.0.5" 1132 | 1133 | array.prototype.flatmap@^1.2.3: 1134 | version "1.2.3" 1135 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz#1c13f84a178566042dd63de4414440db9222e443" 1136 | integrity sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg== 1137 | dependencies: 1138 | define-properties "^1.1.3" 1139 | es-abstract "^1.17.0-next.1" 1140 | function-bind "^1.1.1" 1141 | 1142 | astral-regex@^1.0.0: 1143 | version "1.0.0" 1144 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 1145 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 1146 | 1147 | astral-regex@^2.0.0: 1148 | version "2.0.0" 1149 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 1150 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 1151 | 1152 | babel-eslint@^10.1.0: 1153 | version "10.1.0" 1154 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" 1155 | integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== 1156 | dependencies: 1157 | "@babel/code-frame" "^7.0.0" 1158 | "@babel/parser" "^7.7.0" 1159 | "@babel/traverse" "^7.7.0" 1160 | "@babel/types" "^7.7.0" 1161 | eslint-visitor-keys "^1.0.0" 1162 | resolve "^1.12.0" 1163 | 1164 | babel-plugin-dynamic-import-node@^2.3.3: 1165 | version "2.3.3" 1166 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 1167 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 1168 | dependencies: 1169 | object.assign "^4.1.0" 1170 | 1171 | balanced-match@^1.0.0: 1172 | version "1.0.0" 1173 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1174 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 1175 | 1176 | brace-expansion@^1.1.7: 1177 | version "1.1.11" 1178 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1179 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1180 | dependencies: 1181 | balanced-match "^1.0.0" 1182 | concat-map "0.0.1" 1183 | 1184 | braces@^3.0.1: 1185 | version "3.0.2" 1186 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 1187 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1188 | dependencies: 1189 | fill-range "^7.0.1" 1190 | 1191 | browserslist@^4.12.0, browserslist@^4.8.5: 1192 | version "4.14.0" 1193 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.0.tgz#2908951abfe4ec98737b72f34c3bcedc8d43b000" 1194 | integrity sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ== 1195 | dependencies: 1196 | caniuse-lite "^1.0.30001111" 1197 | electron-to-chromium "^1.3.523" 1198 | escalade "^3.0.2" 1199 | node-releases "^1.1.60" 1200 | 1201 | builtin-modules@^3.1.0: 1202 | version "3.1.0" 1203 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" 1204 | integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== 1205 | 1206 | callsites@^3.0.0: 1207 | version "3.1.0" 1208 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1209 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1210 | 1211 | caniuse-lite@^1.0.30001111: 1212 | version "1.0.30001112" 1213 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001112.tgz#0fffc3b934ff56ff0548c37bc9dad7d882bcf672" 1214 | integrity sha512-J05RTQlqsatidif/38aN3PGULCLrg8OYQOlJUKbeYVzC2mGZkZLIztwRlB3MtrfLmawUmjFlNJvy/uhwniIe1Q== 1215 | 1216 | chalk@^2.0.0: 1217 | version "2.4.2" 1218 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1219 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1220 | dependencies: 1221 | ansi-styles "^3.2.1" 1222 | escape-string-regexp "^1.0.5" 1223 | supports-color "^5.3.0" 1224 | 1225 | chalk@^4.0.0, chalk@^4.1.0: 1226 | version "4.1.0" 1227 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 1228 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 1229 | dependencies: 1230 | ansi-styles "^4.1.0" 1231 | supports-color "^7.1.0" 1232 | 1233 | ci-info@^2.0.0: 1234 | version "2.0.0" 1235 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 1236 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 1237 | 1238 | clean-stack@^2.0.0: 1239 | version "2.2.0" 1240 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 1241 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 1242 | 1243 | cli-cursor@^3.1.0: 1244 | version "3.1.0" 1245 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 1246 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 1247 | dependencies: 1248 | restore-cursor "^3.1.0" 1249 | 1250 | cli-truncate@2.1.0, cli-truncate@^2.1.0: 1251 | version "2.1.0" 1252 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" 1253 | integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== 1254 | dependencies: 1255 | slice-ansi "^3.0.0" 1256 | string-width "^4.2.0" 1257 | 1258 | color-convert@^1.9.0: 1259 | version "1.9.3" 1260 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1261 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1262 | dependencies: 1263 | color-name "1.1.3" 1264 | 1265 | color-convert@^2.0.1: 1266 | version "2.0.1" 1267 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1268 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1269 | dependencies: 1270 | color-name "~1.1.4" 1271 | 1272 | color-name@1.1.3: 1273 | version "1.1.3" 1274 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1275 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1276 | 1277 | color-name@~1.1.4: 1278 | version "1.1.4" 1279 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1280 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1281 | 1282 | commander@^5.1.0: 1283 | version "5.1.0" 1284 | resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" 1285 | integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== 1286 | 1287 | commondir@^1.0.1: 1288 | version "1.0.1" 1289 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1290 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1291 | 1292 | compare-versions@^3.6.0: 1293 | version "3.6.0" 1294 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" 1295 | integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== 1296 | 1297 | concat-map@0.0.1: 1298 | version "0.0.1" 1299 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1300 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1301 | 1302 | convert-source-map@^1.7.0: 1303 | version "1.7.0" 1304 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1305 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1306 | dependencies: 1307 | safe-buffer "~5.1.1" 1308 | 1309 | core-js-compat@^3.6.2: 1310 | version "3.6.5" 1311 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c" 1312 | integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng== 1313 | dependencies: 1314 | browserslist "^4.8.5" 1315 | semver "7.0.0" 1316 | 1317 | cosmiconfig@^6.0.0: 1318 | version "6.0.0" 1319 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" 1320 | integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== 1321 | dependencies: 1322 | "@types/parse-json" "^4.0.0" 1323 | import-fresh "^3.1.0" 1324 | parse-json "^5.0.0" 1325 | path-type "^4.0.0" 1326 | yaml "^1.7.2" 1327 | 1328 | cross-spawn@^7.0.0, cross-spawn@^7.0.2: 1329 | version "7.0.3" 1330 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1331 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1332 | dependencies: 1333 | path-key "^3.1.0" 1334 | shebang-command "^2.0.0" 1335 | which "^2.0.1" 1336 | 1337 | csstype@^3.0.2: 1338 | version "3.0.2" 1339 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.2.tgz#ee5ff8f208c8cd613b389f7b222c9801ca62b3f7" 1340 | integrity sha512-ofovWglpqoqbfLNOTBNZLSbMuGrblAf1efvvArGKOZMBrIoJeu5UsAipQolkijtyQx5MtAzT/J9IHj/CEY1mJw== 1341 | 1342 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: 1343 | version "4.1.1" 1344 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 1345 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 1346 | dependencies: 1347 | ms "^2.1.1" 1348 | 1349 | dedent@^0.7.0: 1350 | version "0.7.0" 1351 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 1352 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 1353 | 1354 | deep-freeze@^0.0.1: 1355 | version "0.0.1" 1356 | resolved "https://registry.yarnpkg.com/deep-freeze/-/deep-freeze-0.0.1.tgz#3a0b0005de18672819dfd38cd31f91179c893e84" 1357 | integrity sha1-OgsABd4YZygZ39OM0x+RF5yJPoQ= 1358 | 1359 | deep-is@^0.1.3: 1360 | version "0.1.3" 1361 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1362 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1363 | 1364 | deepmerge@^4.2.2: 1365 | version "4.2.2" 1366 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1367 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1368 | 1369 | define-properties@^1.1.2, define-properties@^1.1.3: 1370 | version "1.1.3" 1371 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1372 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1373 | dependencies: 1374 | object-keys "^1.0.12" 1375 | 1376 | doctrine@^2.1.0: 1377 | version "2.1.0" 1378 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1379 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 1380 | dependencies: 1381 | esutils "^2.0.2" 1382 | 1383 | doctrine@^3.0.0: 1384 | version "3.0.0" 1385 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 1386 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 1387 | dependencies: 1388 | esutils "^2.0.2" 1389 | 1390 | electron-to-chromium@^1.3.523: 1391 | version "1.3.526" 1392 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.526.tgz#0e004899edf75afc172cce1b8189aac5dca646aa" 1393 | integrity sha512-HiroW5ZbGwgT8kCnoEO8qnGjoTPzJxduvV/Vv/wH63eo2N6Zj3xT5fmmaSPAPUM05iN9/5fIEkIg3owTtV6QZg== 1394 | 1395 | emoji-regex@^7.0.1: 1396 | version "7.0.3" 1397 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 1398 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 1399 | 1400 | emoji-regex@^8.0.0: 1401 | version "8.0.0" 1402 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1403 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1404 | 1405 | end-of-stream@^1.1.0: 1406 | version "1.4.4" 1407 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 1408 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1409 | dependencies: 1410 | once "^1.4.0" 1411 | 1412 | enquirer@^2.3.5: 1413 | version "2.3.6" 1414 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 1415 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 1416 | dependencies: 1417 | ansi-colors "^4.1.1" 1418 | 1419 | error-ex@^1.3.1: 1420 | version "1.3.2" 1421 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1422 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1423 | dependencies: 1424 | is-arrayish "^0.2.1" 1425 | 1426 | es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 1427 | version "1.17.6" 1428 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" 1429 | integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== 1430 | dependencies: 1431 | es-to-primitive "^1.2.1" 1432 | function-bind "^1.1.1" 1433 | has "^1.0.3" 1434 | has-symbols "^1.0.1" 1435 | is-callable "^1.2.0" 1436 | is-regex "^1.1.0" 1437 | object-inspect "^1.7.0" 1438 | object-keys "^1.1.1" 1439 | object.assign "^4.1.0" 1440 | string.prototype.trimend "^1.0.1" 1441 | string.prototype.trimstart "^1.0.1" 1442 | 1443 | es-to-primitive@^1.2.1: 1444 | version "1.2.1" 1445 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1446 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1447 | dependencies: 1448 | is-callable "^1.1.4" 1449 | is-date-object "^1.0.1" 1450 | is-symbol "^1.0.2" 1451 | 1452 | escalade@^3.0.2: 1453 | version "3.0.2" 1454 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4" 1455 | integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ== 1456 | 1457 | escape-string-regexp@^1.0.5: 1458 | version "1.0.5" 1459 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1460 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1461 | 1462 | eslint-config-prettier@^6.11.0: 1463 | version "6.11.0" 1464 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1" 1465 | integrity sha512-oB8cpLWSAjOVFEJhhyMZh6NOEOtBVziaqdDQ86+qhDHFbZXoRTM7pNSvFRfW/W/L/LrQ38C99J5CGuRBBzBsdA== 1466 | dependencies: 1467 | get-stdin "^6.0.0" 1468 | 1469 | eslint-config-typescript@^3.0.0: 1470 | version "3.0.0" 1471 | resolved "https://registry.yarnpkg.com/eslint-config-typescript/-/eslint-config-typescript-3.0.0.tgz#13e0627f8c5aa8d58b5a01eeddd0a726a259c4b5" 1472 | integrity sha512-CwC2cQ29OLE1OUw0k+Twpc6wpCdenG8rrErl89sWrzmMpWfkulyeQS1HJhhjU0B3Tb4k41zdei4LtX26x5m60Q== 1473 | 1474 | eslint-plugin-jest@^23.20.0: 1475 | version "23.20.0" 1476 | resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.20.0.tgz#e1d69c75f639e99d836642453c4e75ed22da4099" 1477 | integrity sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw== 1478 | dependencies: 1479 | "@typescript-eslint/experimental-utils" "^2.5.0" 1480 | 1481 | eslint-plugin-prettier@^3.1.4: 1482 | version "3.1.4" 1483 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz#168ab43154e2ea57db992a2cd097c828171f75c2" 1484 | integrity sha512-jZDa8z76klRqo+TdGDTFJSavwbnWK2ZpqGKNZ+VvweMW516pDUMmQ2koXvxEE4JhzNvTv+radye/bWGBmA6jmg== 1485 | dependencies: 1486 | prettier-linter-helpers "^1.0.0" 1487 | 1488 | eslint-plugin-react@^7.20.5: 1489 | version "7.20.5" 1490 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.20.5.tgz#29480f3071f64a04b2c3d99d9b460ce0f76fb857" 1491 | integrity sha512-ajbJfHuFnpVNJjhyrfq+pH1C0gLc2y94OiCbAXT5O0J0YCKaFEHDV8+3+mDOr+w8WguRX+vSs1bM2BDG0VLvCw== 1492 | dependencies: 1493 | array-includes "^3.1.1" 1494 | array.prototype.flatmap "^1.2.3" 1495 | doctrine "^2.1.0" 1496 | has "^1.0.3" 1497 | jsx-ast-utils "^2.4.1" 1498 | object.entries "^1.1.2" 1499 | object.fromentries "^2.0.2" 1500 | object.values "^1.1.1" 1501 | prop-types "^15.7.2" 1502 | resolve "^1.17.0" 1503 | string.prototype.matchall "^4.0.2" 1504 | 1505 | eslint-scope@^5.0.0, eslint-scope@^5.1.0: 1506 | version "5.1.0" 1507 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5" 1508 | integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w== 1509 | dependencies: 1510 | esrecurse "^4.1.0" 1511 | estraverse "^4.1.1" 1512 | 1513 | eslint-utils@^2.0.0, eslint-utils@^2.1.0: 1514 | version "2.1.0" 1515 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 1516 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 1517 | dependencies: 1518 | eslint-visitor-keys "^1.1.0" 1519 | 1520 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 1521 | version "1.3.0" 1522 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 1523 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 1524 | 1525 | eslint@^7.6.0: 1526 | version "7.6.0" 1527 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.6.0.tgz#522d67cfaea09724d96949c70e7a0550614d64d6" 1528 | integrity sha512-QlAManNtqr7sozWm5TF4wIH9gmUm2hE3vNRUvyoYAa4y1l5/jxD/PQStEjBMQtCqZmSep8UxrcecI60hOpe61w== 1529 | dependencies: 1530 | "@babel/code-frame" "^7.0.0" 1531 | ajv "^6.10.0" 1532 | chalk "^4.0.0" 1533 | cross-spawn "^7.0.2" 1534 | debug "^4.0.1" 1535 | doctrine "^3.0.0" 1536 | enquirer "^2.3.5" 1537 | eslint-scope "^5.1.0" 1538 | eslint-utils "^2.1.0" 1539 | eslint-visitor-keys "^1.3.0" 1540 | espree "^7.2.0" 1541 | esquery "^1.2.0" 1542 | esutils "^2.0.2" 1543 | file-entry-cache "^5.0.1" 1544 | functional-red-black-tree "^1.0.1" 1545 | glob-parent "^5.0.0" 1546 | globals "^12.1.0" 1547 | ignore "^4.0.6" 1548 | import-fresh "^3.0.0" 1549 | imurmurhash "^0.1.4" 1550 | is-glob "^4.0.0" 1551 | js-yaml "^3.13.1" 1552 | json-stable-stringify-without-jsonify "^1.0.1" 1553 | levn "^0.4.1" 1554 | lodash "^4.17.19" 1555 | minimatch "^3.0.4" 1556 | natural-compare "^1.4.0" 1557 | optionator "^0.9.1" 1558 | progress "^2.0.0" 1559 | regexpp "^3.1.0" 1560 | semver "^7.2.1" 1561 | strip-ansi "^6.0.0" 1562 | strip-json-comments "^3.1.0" 1563 | table "^5.2.3" 1564 | text-table "^0.2.0" 1565 | v8-compile-cache "^2.0.3" 1566 | 1567 | espree@^7.2.0: 1568 | version "7.2.0" 1569 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.2.0.tgz#1c263d5b513dbad0ac30c4991b93ac354e948d69" 1570 | integrity sha512-H+cQ3+3JYRMEIOl87e7QdHX70ocly5iW4+dttuR8iYSPr/hXKFb+7dBsZ7+u1adC4VrnPlTkv0+OwuPnDop19g== 1571 | dependencies: 1572 | acorn "^7.3.1" 1573 | acorn-jsx "^5.2.0" 1574 | eslint-visitor-keys "^1.3.0" 1575 | 1576 | esprima@^4.0.0: 1577 | version "4.0.1" 1578 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1579 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1580 | 1581 | esquery@^1.2.0: 1582 | version "1.3.1" 1583 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 1584 | integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== 1585 | dependencies: 1586 | estraverse "^5.1.0" 1587 | 1588 | esrecurse@^4.1.0: 1589 | version "4.2.1" 1590 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1591 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 1592 | dependencies: 1593 | estraverse "^4.1.0" 1594 | 1595 | estraverse@^4.1.0, estraverse@^4.1.1: 1596 | version "4.3.0" 1597 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1598 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1599 | 1600 | estraverse@^5.1.0: 1601 | version "5.2.0" 1602 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 1603 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 1604 | 1605 | estree-walker@^0.6.1: 1606 | version "0.6.1" 1607 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 1608 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 1609 | 1610 | estree-walker@^1.0.1: 1611 | version "1.0.1" 1612 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" 1613 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== 1614 | 1615 | esutils@^2.0.2: 1616 | version "2.0.3" 1617 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1618 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1619 | 1620 | execa@^4.0.1: 1621 | version "4.0.3" 1622 | resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2" 1623 | integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A== 1624 | dependencies: 1625 | cross-spawn "^7.0.0" 1626 | get-stream "^5.0.0" 1627 | human-signals "^1.1.1" 1628 | is-stream "^2.0.0" 1629 | merge-stream "^2.0.0" 1630 | npm-run-path "^4.0.0" 1631 | onetime "^5.1.0" 1632 | signal-exit "^3.0.2" 1633 | strip-final-newline "^2.0.0" 1634 | 1635 | fast-deep-equal@^3.1.1: 1636 | version "3.1.3" 1637 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1638 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1639 | 1640 | fast-diff@^1.1.2: 1641 | version "1.2.0" 1642 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 1643 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 1644 | 1645 | fast-json-stable-stringify@^2.0.0: 1646 | version "2.1.0" 1647 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1648 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1649 | 1650 | fast-levenshtein@^2.0.6: 1651 | version "2.0.6" 1652 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1653 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1654 | 1655 | figures@^3.2.0: 1656 | version "3.2.0" 1657 | resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" 1658 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== 1659 | dependencies: 1660 | escape-string-regexp "^1.0.5" 1661 | 1662 | file-entry-cache@^5.0.1: 1663 | version "5.0.1" 1664 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 1665 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 1666 | dependencies: 1667 | flat-cache "^2.0.1" 1668 | 1669 | fill-range@^7.0.1: 1670 | version "7.0.1" 1671 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1672 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1673 | dependencies: 1674 | to-regex-range "^5.0.1" 1675 | 1676 | find-cache-dir@^3.3.1: 1677 | version "3.3.1" 1678 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" 1679 | integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== 1680 | dependencies: 1681 | commondir "^1.0.1" 1682 | make-dir "^3.0.2" 1683 | pkg-dir "^4.1.0" 1684 | 1685 | find-up@^4.0.0: 1686 | version "4.1.0" 1687 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1688 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1689 | dependencies: 1690 | locate-path "^5.0.0" 1691 | path-exists "^4.0.0" 1692 | 1693 | find-versions@^3.2.0: 1694 | version "3.2.0" 1695 | resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" 1696 | integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== 1697 | dependencies: 1698 | semver-regex "^2.0.0" 1699 | 1700 | flat-cache@^2.0.1: 1701 | version "2.0.1" 1702 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 1703 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 1704 | dependencies: 1705 | flatted "^2.0.0" 1706 | rimraf "2.6.3" 1707 | write "1.0.3" 1708 | 1709 | flatted@^2.0.0: 1710 | version "2.0.2" 1711 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" 1712 | integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== 1713 | 1714 | fs-extra@8.1.0: 1715 | version "8.1.0" 1716 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 1717 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 1718 | dependencies: 1719 | graceful-fs "^4.2.0" 1720 | jsonfile "^4.0.0" 1721 | universalify "^0.1.0" 1722 | 1723 | fs.realpath@^1.0.0: 1724 | version "1.0.0" 1725 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1726 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1727 | 1728 | fsevents@~2.1.2: 1729 | version "2.1.3" 1730 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 1731 | integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== 1732 | 1733 | function-bind@^1.1.1: 1734 | version "1.1.1" 1735 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1736 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1737 | 1738 | functional-red-black-tree@^1.0.1: 1739 | version "1.0.1" 1740 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1741 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1742 | 1743 | gensync@^1.0.0-beta.1: 1744 | version "1.0.0-beta.1" 1745 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" 1746 | integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== 1747 | 1748 | get-own-enumerable-property-symbols@^3.0.0: 1749 | version "3.0.2" 1750 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" 1751 | integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== 1752 | 1753 | get-stdin@^6.0.0: 1754 | version "6.0.0" 1755 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 1756 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== 1757 | 1758 | get-stream@^5.0.0: 1759 | version "5.1.0" 1760 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" 1761 | integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== 1762 | dependencies: 1763 | pump "^3.0.0" 1764 | 1765 | glob-parent@^5.0.0: 1766 | version "5.1.1" 1767 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 1768 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 1769 | dependencies: 1770 | is-glob "^4.0.1" 1771 | 1772 | glob@^7.1.2, glob@^7.1.3, glob@^7.1.6: 1773 | version "7.1.6" 1774 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1775 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1776 | dependencies: 1777 | fs.realpath "^1.0.0" 1778 | inflight "^1.0.4" 1779 | inherits "2" 1780 | minimatch "^3.0.4" 1781 | once "^1.3.0" 1782 | path-is-absolute "^1.0.0" 1783 | 1784 | globals@^11.1.0: 1785 | version "11.12.0" 1786 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1787 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1788 | 1789 | globals@^12.1.0: 1790 | version "12.4.0" 1791 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 1792 | integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 1793 | dependencies: 1794 | type-fest "^0.8.1" 1795 | 1796 | graceful-fs@^4.1.6, graceful-fs@^4.2.0: 1797 | version "4.2.4" 1798 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1799 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 1800 | 1801 | has-flag@^3.0.0: 1802 | version "3.0.0" 1803 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1804 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1805 | 1806 | has-flag@^4.0.0: 1807 | version "4.0.0" 1808 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1809 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1810 | 1811 | has-symbols@^1.0.0, has-symbols@^1.0.1: 1812 | version "1.0.1" 1813 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1814 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1815 | 1816 | has@^1.0.3: 1817 | version "1.0.3" 1818 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1819 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1820 | dependencies: 1821 | function-bind "^1.1.1" 1822 | 1823 | human-signals@^1.1.1: 1824 | version "1.1.1" 1825 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 1826 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 1827 | 1828 | husky@^4.2.5: 1829 | version "4.2.5" 1830 | resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.5.tgz#2b4f7622673a71579f901d9885ed448394b5fa36" 1831 | integrity sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ== 1832 | dependencies: 1833 | chalk "^4.0.0" 1834 | ci-info "^2.0.0" 1835 | compare-versions "^3.6.0" 1836 | cosmiconfig "^6.0.0" 1837 | find-versions "^3.2.0" 1838 | opencollective-postinstall "^2.0.2" 1839 | pkg-dir "^4.2.0" 1840 | please-upgrade-node "^3.2.0" 1841 | slash "^3.0.0" 1842 | which-pm-runs "^1.0.0" 1843 | 1844 | ignore@^4.0.6: 1845 | version "4.0.6" 1846 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1847 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 1848 | 1849 | import-fresh@^3.0.0, import-fresh@^3.1.0: 1850 | version "3.2.1" 1851 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 1852 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 1853 | dependencies: 1854 | parent-module "^1.0.0" 1855 | resolve-from "^4.0.0" 1856 | 1857 | imurmurhash@^0.1.4: 1858 | version "0.1.4" 1859 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1860 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1861 | 1862 | indent-string@^4.0.0: 1863 | version "4.0.0" 1864 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1865 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1866 | 1867 | inflight@^1.0.4: 1868 | version "1.0.6" 1869 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1870 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1871 | dependencies: 1872 | once "^1.3.0" 1873 | wrappy "1" 1874 | 1875 | inherits@2: 1876 | version "2.0.4" 1877 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1878 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1879 | 1880 | internal-slot@^1.0.2: 1881 | version "1.0.2" 1882 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3" 1883 | integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g== 1884 | dependencies: 1885 | es-abstract "^1.17.0-next.1" 1886 | has "^1.0.3" 1887 | side-channel "^1.0.2" 1888 | 1889 | invariant@^2.2.2, invariant@^2.2.4: 1890 | version "2.2.4" 1891 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1892 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 1893 | dependencies: 1894 | loose-envify "^1.0.0" 1895 | 1896 | is-arrayish@^0.2.1: 1897 | version "0.2.1" 1898 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1899 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1900 | 1901 | is-callable@^1.1.4, is-callable@^1.2.0: 1902 | version "1.2.0" 1903 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" 1904 | integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== 1905 | 1906 | is-date-object@^1.0.1: 1907 | version "1.0.2" 1908 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1909 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1910 | 1911 | is-extglob@^2.1.1: 1912 | version "2.1.1" 1913 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1914 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1915 | 1916 | is-fullwidth-code-point@^2.0.0: 1917 | version "2.0.0" 1918 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1919 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1920 | 1921 | is-fullwidth-code-point@^3.0.0: 1922 | version "3.0.0" 1923 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1924 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1925 | 1926 | is-glob@^4.0.0, is-glob@^4.0.1: 1927 | version "4.0.1" 1928 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1929 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1930 | dependencies: 1931 | is-extglob "^2.1.1" 1932 | 1933 | is-module@^1.0.0: 1934 | version "1.0.0" 1935 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 1936 | integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= 1937 | 1938 | is-number@^7.0.0: 1939 | version "7.0.0" 1940 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1941 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1942 | 1943 | is-obj@^1.0.1: 1944 | version "1.0.1" 1945 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1946 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 1947 | 1948 | is-reference@^1.1.2: 1949 | version "1.2.1" 1950 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" 1951 | integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== 1952 | dependencies: 1953 | "@types/estree" "*" 1954 | 1955 | is-regex@^1.1.0: 1956 | version "1.1.1" 1957 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 1958 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 1959 | dependencies: 1960 | has-symbols "^1.0.1" 1961 | 1962 | is-regexp@^1.0.0: 1963 | version "1.0.0" 1964 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1965 | integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= 1966 | 1967 | is-stream@^2.0.0: 1968 | version "2.0.0" 1969 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 1970 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 1971 | 1972 | is-string@^1.0.5: 1973 | version "1.0.5" 1974 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 1975 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 1976 | 1977 | is-symbol@^1.0.2: 1978 | version "1.0.3" 1979 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1980 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1981 | dependencies: 1982 | has-symbols "^1.0.1" 1983 | 1984 | isexe@^2.0.0: 1985 | version "2.0.0" 1986 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1987 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1988 | 1989 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1990 | version "4.0.0" 1991 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1992 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1993 | 1994 | js-yaml@^3.13.1: 1995 | version "3.14.0" 1996 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 1997 | integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== 1998 | dependencies: 1999 | argparse "^1.0.7" 2000 | esprima "^4.0.0" 2001 | 2002 | jsesc@^2.5.1: 2003 | version "2.5.2" 2004 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2005 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2006 | 2007 | jsesc@~0.5.0: 2008 | version "0.5.0" 2009 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2010 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2011 | 2012 | json-parse-better-errors@^1.0.1: 2013 | version "1.0.2" 2014 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 2015 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 2016 | 2017 | json-schema-traverse@^0.4.1: 2018 | version "0.4.1" 2019 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2020 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 2021 | 2022 | json-stable-stringify-without-jsonify@^1.0.1: 2023 | version "1.0.1" 2024 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2025 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 2026 | 2027 | json5@^2.1.2: 2028 | version "2.1.3" 2029 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 2030 | integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== 2031 | dependencies: 2032 | minimist "^1.2.5" 2033 | 2034 | jsonfile@^4.0.0: 2035 | version "4.0.0" 2036 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2037 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 2038 | optionalDependencies: 2039 | graceful-fs "^4.1.6" 2040 | 2041 | jsx-ast-utils@^2.4.1: 2042 | version "2.4.1" 2043 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e" 2044 | integrity sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w== 2045 | dependencies: 2046 | array-includes "^3.1.1" 2047 | object.assign "^4.1.0" 2048 | 2049 | leven@^3.1.0: 2050 | version "3.1.0" 2051 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2052 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2053 | 2054 | levenary@^1.1.1: 2055 | version "1.1.1" 2056 | resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" 2057 | integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== 2058 | dependencies: 2059 | leven "^3.1.0" 2060 | 2061 | levn@^0.4.1: 2062 | version "0.4.1" 2063 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 2064 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 2065 | dependencies: 2066 | prelude-ls "^1.2.1" 2067 | type-check "~0.4.0" 2068 | 2069 | lines-and-columns@^1.1.6: 2070 | version "1.1.6" 2071 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 2072 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 2073 | 2074 | lint-staged@^10.2.11: 2075 | version "10.2.11" 2076 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.2.11.tgz#713c80877f2dc8b609b05bc59020234e766c9720" 2077 | integrity sha512-LRRrSogzbixYaZItE2APaS4l2eJMjjf5MbclRZpLJtcQJShcvUzKXsNeZgsLIZ0H0+fg2tL4B59fU9wHIHtFIA== 2078 | dependencies: 2079 | chalk "^4.0.0" 2080 | cli-truncate "2.1.0" 2081 | commander "^5.1.0" 2082 | cosmiconfig "^6.0.0" 2083 | debug "^4.1.1" 2084 | dedent "^0.7.0" 2085 | enquirer "^2.3.5" 2086 | execa "^4.0.1" 2087 | listr2 "^2.1.0" 2088 | log-symbols "^4.0.0" 2089 | micromatch "^4.0.2" 2090 | normalize-path "^3.0.0" 2091 | please-upgrade-node "^3.2.0" 2092 | string-argv "0.3.1" 2093 | stringify-object "^3.3.0" 2094 | 2095 | listr2@^2.1.0: 2096 | version "2.4.1" 2097 | resolved "https://registry.yarnpkg.com/listr2/-/listr2-2.4.1.tgz#006fc94ae77b3195403cbf3a4a563e2d6366224f" 2098 | integrity sha512-8pYsCZCztr5+KAjReLyBeGhLV0vaQ2Du/eMe/ux9QAfQl7efiWejM1IWjALh0zHIRYuIbhQ8N2KztZ4ci56pnQ== 2099 | dependencies: 2100 | chalk "^4.1.0" 2101 | cli-truncate "^2.1.0" 2102 | figures "^3.2.0" 2103 | indent-string "^4.0.0" 2104 | log-update "^4.0.0" 2105 | p-map "^4.0.0" 2106 | rxjs "^6.6.0" 2107 | through "^2.3.8" 2108 | 2109 | locate-path@^5.0.0: 2110 | version "5.0.0" 2111 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2112 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2113 | dependencies: 2114 | p-locate "^4.1.0" 2115 | 2116 | lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19: 2117 | version "4.17.19" 2118 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" 2119 | integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== 2120 | 2121 | log-symbols@^4.0.0: 2122 | version "4.0.0" 2123 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" 2124 | integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== 2125 | dependencies: 2126 | chalk "^4.0.0" 2127 | 2128 | log-update@^4.0.0: 2129 | version "4.0.0" 2130 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" 2131 | integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== 2132 | dependencies: 2133 | ansi-escapes "^4.3.0" 2134 | cli-cursor "^3.1.0" 2135 | slice-ansi "^4.0.0" 2136 | wrap-ansi "^6.2.0" 2137 | 2138 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: 2139 | version "1.4.0" 2140 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2141 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2142 | dependencies: 2143 | js-tokens "^3.0.0 || ^4.0.0" 2144 | 2145 | magic-string@^0.25.2: 2146 | version "0.25.7" 2147 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" 2148 | integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 2149 | dependencies: 2150 | sourcemap-codec "^1.4.4" 2151 | 2152 | make-dir@^3.0.2: 2153 | version "3.1.0" 2154 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 2155 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2156 | dependencies: 2157 | semver "^6.0.0" 2158 | 2159 | merge-stream@^2.0.0: 2160 | version "2.0.0" 2161 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2162 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2163 | 2164 | micromatch@^4.0.2: 2165 | version "4.0.2" 2166 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 2167 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 2168 | dependencies: 2169 | braces "^3.0.1" 2170 | picomatch "^2.0.5" 2171 | 2172 | mimic-fn@^2.1.0: 2173 | version "2.1.0" 2174 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2175 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2176 | 2177 | minimatch@^3.0.4: 2178 | version "3.0.4" 2179 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2180 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2181 | dependencies: 2182 | brace-expansion "^1.1.7" 2183 | 2184 | minimist@^1.2.5: 2185 | version "1.2.5" 2186 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2187 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2188 | 2189 | mkdirp@^0.5.1: 2190 | version "0.5.5" 2191 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 2192 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 2193 | dependencies: 2194 | minimist "^1.2.5" 2195 | 2196 | ms@^2.1.1: 2197 | version "2.1.2" 2198 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2199 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2200 | 2201 | natural-compare@^1.4.0: 2202 | version "1.4.0" 2203 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2204 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2205 | 2206 | node-releases@^1.1.60: 2207 | version "1.1.60" 2208 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084" 2209 | integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA== 2210 | 2211 | normalize-path@^3.0.0: 2212 | version "3.0.0" 2213 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2214 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2215 | 2216 | npm-run-path@^4.0.0: 2217 | version "4.0.1" 2218 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2219 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2220 | dependencies: 2221 | path-key "^3.0.0" 2222 | 2223 | object-assign@^4.1.1: 2224 | version "4.1.1" 2225 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2226 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2227 | 2228 | object-inspect@^1.7.0: 2229 | version "1.8.0" 2230 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 2231 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 2232 | 2233 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 2234 | version "1.1.1" 2235 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2236 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2237 | 2238 | object.assign@^4.1.0: 2239 | version "4.1.0" 2240 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2241 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 2242 | dependencies: 2243 | define-properties "^1.1.2" 2244 | function-bind "^1.1.1" 2245 | has-symbols "^1.0.0" 2246 | object-keys "^1.0.11" 2247 | 2248 | object.entries@^1.1.2: 2249 | version "1.1.2" 2250 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add" 2251 | integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA== 2252 | dependencies: 2253 | define-properties "^1.1.3" 2254 | es-abstract "^1.17.5" 2255 | has "^1.0.3" 2256 | 2257 | object.fromentries@^2.0.2: 2258 | version "2.0.2" 2259 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9" 2260 | integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ== 2261 | dependencies: 2262 | define-properties "^1.1.3" 2263 | es-abstract "^1.17.0-next.1" 2264 | function-bind "^1.1.1" 2265 | has "^1.0.3" 2266 | 2267 | object.values@^1.1.1: 2268 | version "1.1.1" 2269 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 2270 | integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 2271 | dependencies: 2272 | define-properties "^1.1.3" 2273 | es-abstract "^1.17.0-next.1" 2274 | function-bind "^1.1.1" 2275 | has "^1.0.3" 2276 | 2277 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2278 | version "1.4.0" 2279 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2280 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2281 | dependencies: 2282 | wrappy "1" 2283 | 2284 | onetime@^5.1.0: 2285 | version "5.1.1" 2286 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.1.tgz#5c8016847b0d67fcedb7eef254751cfcdc7e9418" 2287 | integrity sha512-ZpZpjcJeugQfWsfyQlshVoowIIQ1qBGSVll4rfDq6JJVO//fesjoX808hXWfBjY+ROZgpKDI5TRSRBSoJiZ8eg== 2288 | dependencies: 2289 | mimic-fn "^2.1.0" 2290 | 2291 | opencollective-postinstall@^2.0.2: 2292 | version "2.0.3" 2293 | resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" 2294 | integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== 2295 | 2296 | optionator@^0.9.1: 2297 | version "0.9.1" 2298 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 2299 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 2300 | dependencies: 2301 | deep-is "^0.1.3" 2302 | fast-levenshtein "^2.0.6" 2303 | levn "^0.4.1" 2304 | prelude-ls "^1.2.1" 2305 | type-check "^0.4.0" 2306 | word-wrap "^1.2.3" 2307 | 2308 | p-limit@^2.2.0: 2309 | version "2.3.0" 2310 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2311 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2312 | dependencies: 2313 | p-try "^2.0.0" 2314 | 2315 | p-locate@^4.1.0: 2316 | version "4.1.0" 2317 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2318 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2319 | dependencies: 2320 | p-limit "^2.2.0" 2321 | 2322 | p-map@^4.0.0: 2323 | version "4.0.0" 2324 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" 2325 | integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== 2326 | dependencies: 2327 | aggregate-error "^3.0.0" 2328 | 2329 | p-try@^2.0.0: 2330 | version "2.2.0" 2331 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2332 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2333 | 2334 | parent-module@^1.0.0: 2335 | version "1.0.1" 2336 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2337 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2338 | dependencies: 2339 | callsites "^3.0.0" 2340 | 2341 | parse-json@^5.0.0: 2342 | version "5.0.1" 2343 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.1.tgz#7cfe35c1ccd641bce3981467e6c2ece61b3b3878" 2344 | integrity sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ== 2345 | dependencies: 2346 | "@babel/code-frame" "^7.0.0" 2347 | error-ex "^1.3.1" 2348 | json-parse-better-errors "^1.0.1" 2349 | lines-and-columns "^1.1.6" 2350 | 2351 | path-exists@^4.0.0: 2352 | version "4.0.0" 2353 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2354 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2355 | 2356 | path-is-absolute@^1.0.0: 2357 | version "1.0.1" 2358 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2359 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2360 | 2361 | path-key@^3.0.0, path-key@^3.1.0: 2362 | version "3.1.1" 2363 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2364 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2365 | 2366 | path-parse@^1.0.6: 2367 | version "1.0.6" 2368 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2369 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2370 | 2371 | path-type@^4.0.0: 2372 | version "4.0.0" 2373 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 2374 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2375 | 2376 | picomatch@^2.0.5, picomatch@^2.2.2: 2377 | version "2.2.2" 2378 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 2379 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 2380 | 2381 | pkg-dir@^4.1.0, pkg-dir@^4.2.0: 2382 | version "4.2.0" 2383 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2384 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2385 | dependencies: 2386 | find-up "^4.0.0" 2387 | 2388 | please-upgrade-node@^3.2.0: 2389 | version "3.2.0" 2390 | resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" 2391 | integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== 2392 | dependencies: 2393 | semver-compare "^1.0.0" 2394 | 2395 | prelude-ls@^1.2.1: 2396 | version "1.2.1" 2397 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 2398 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2399 | 2400 | prettier-linter-helpers@^1.0.0: 2401 | version "1.0.0" 2402 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 2403 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 2404 | dependencies: 2405 | fast-diff "^1.1.2" 2406 | 2407 | prettier@^2.0.5: 2408 | version "2.0.5" 2409 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" 2410 | integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== 2411 | 2412 | progress@^2.0.0: 2413 | version "2.0.3" 2414 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 2415 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 2416 | 2417 | prop-types@^15.6.2, prop-types@^15.7.2: 2418 | version "15.7.2" 2419 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 2420 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 2421 | dependencies: 2422 | loose-envify "^1.4.0" 2423 | object-assign "^4.1.1" 2424 | react-is "^16.8.1" 2425 | 2426 | pump@^3.0.0: 2427 | version "3.0.0" 2428 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2429 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2430 | dependencies: 2431 | end-of-stream "^1.1.0" 2432 | once "^1.3.1" 2433 | 2434 | punycode@^2.1.0: 2435 | version "2.1.1" 2436 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2437 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2438 | 2439 | react-dom@^16.13.1: 2440 | version "16.13.1" 2441 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" 2442 | integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag== 2443 | dependencies: 2444 | loose-envify "^1.1.0" 2445 | object-assign "^4.1.1" 2446 | prop-types "^15.6.2" 2447 | scheduler "^0.19.1" 2448 | 2449 | react-is@^16.8.1: 2450 | version "16.13.1" 2451 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 2452 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 2453 | 2454 | react@^16.13.1: 2455 | version "16.13.1" 2456 | resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" 2457 | integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== 2458 | dependencies: 2459 | loose-envify "^1.1.0" 2460 | object-assign "^4.1.1" 2461 | prop-types "^15.6.2" 2462 | 2463 | regenerate-unicode-properties@^8.2.0: 2464 | version "8.2.0" 2465 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 2466 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 2467 | dependencies: 2468 | regenerate "^1.4.0" 2469 | 2470 | regenerate@^1.4.0: 2471 | version "1.4.1" 2472 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f" 2473 | integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A== 2474 | 2475 | regenerator-runtime@^0.13.4: 2476 | version "0.13.7" 2477 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 2478 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 2479 | 2480 | regenerator-transform@^0.14.2: 2481 | version "0.14.5" 2482 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 2483 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 2484 | dependencies: 2485 | "@babel/runtime" "^7.8.4" 2486 | 2487 | regexp.prototype.flags@^1.3.0: 2488 | version "1.3.0" 2489 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" 2490 | integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== 2491 | dependencies: 2492 | define-properties "^1.1.3" 2493 | es-abstract "^1.17.0-next.1" 2494 | 2495 | regexpp@^3.0.0, regexpp@^3.1.0: 2496 | version "3.1.0" 2497 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 2498 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 2499 | 2500 | regexpu-core@^4.7.0: 2501 | version "4.7.0" 2502 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" 2503 | integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== 2504 | dependencies: 2505 | regenerate "^1.4.0" 2506 | regenerate-unicode-properties "^8.2.0" 2507 | regjsgen "^0.5.1" 2508 | regjsparser "^0.6.4" 2509 | unicode-match-property-ecmascript "^1.0.4" 2510 | unicode-match-property-value-ecmascript "^1.2.0" 2511 | 2512 | regjsgen@^0.5.1: 2513 | version "0.5.2" 2514 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 2515 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 2516 | 2517 | regjsparser@^0.6.4: 2518 | version "0.6.4" 2519 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" 2520 | integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== 2521 | dependencies: 2522 | jsesc "~0.5.0" 2523 | 2524 | resolve-from@^4.0.0: 2525 | version "4.0.0" 2526 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2527 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2528 | 2529 | resolve@1.17.0, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.14.1, resolve@^1.17.0, resolve@^1.3.2: 2530 | version "1.17.0" 2531 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 2532 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 2533 | dependencies: 2534 | path-parse "^1.0.6" 2535 | 2536 | restore-cursor@^3.1.0: 2537 | version "3.1.0" 2538 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 2539 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 2540 | dependencies: 2541 | onetime "^5.1.0" 2542 | signal-exit "^3.0.2" 2543 | 2544 | rimraf@2.6.3: 2545 | version "2.6.3" 2546 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2547 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 2548 | dependencies: 2549 | glob "^7.1.3" 2550 | 2551 | rollup-plugin-babel@^4.4.0: 2552 | version "4.4.0" 2553 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz#d15bd259466a9d1accbdb2fe2fff17c52d030acb" 2554 | integrity sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw== 2555 | dependencies: 2556 | "@babel/helper-module-imports" "^7.0.0" 2557 | rollup-pluginutils "^2.8.1" 2558 | 2559 | rollup-plugin-commonjs@^10.1.0: 2560 | version "10.1.0" 2561 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz#417af3b54503878e084d127adf4d1caf8beb86fb" 2562 | integrity sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q== 2563 | dependencies: 2564 | estree-walker "^0.6.1" 2565 | is-reference "^1.1.2" 2566 | magic-string "^0.25.2" 2567 | resolve "^1.11.0" 2568 | rollup-pluginutils "^2.8.1" 2569 | 2570 | rollup-plugin-node-resolve@^5.2.0: 2571 | version "5.2.0" 2572 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz#730f93d10ed202473b1fb54a5997a7db8c6d8523" 2573 | integrity sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw== 2574 | dependencies: 2575 | "@types/resolve" "0.0.8" 2576 | builtin-modules "^3.1.0" 2577 | is-module "^1.0.0" 2578 | resolve "^1.11.1" 2579 | rollup-pluginutils "^2.8.1" 2580 | 2581 | rollup-plugin-peer-deps-external@^2.2.3: 2582 | version "2.2.3" 2583 | resolved "https://registry.yarnpkg.com/rollup-plugin-peer-deps-external/-/rollup-plugin-peer-deps-external-2.2.3.tgz#059a8aec1eefb48a475e9fcedc3b9e3deb521213" 2584 | integrity sha512-W6IePXTExGXVDAlfZbNUUrx3GxUOZP248u5n4a4ID1XZMrbQ+uGeNiEfapvdzwx0qZi5DNH/hDLiPUP+pzFIxg== 2585 | 2586 | rollup-plugin-typescript2@^0.27.2: 2587 | version "0.27.2" 2588 | resolved "https://registry.yarnpkg.com/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.27.2.tgz#871a7f5d2a774f9cef50d25da868eec72acc2ed8" 2589 | integrity sha512-zarMH2F8oT/NO6p20gl/jkts+WxyzOlhOIUwUU/EDx5e6ewdDPS/flwLj5XFuijUCr64bZwqKuRVwCPdXXYefQ== 2590 | dependencies: 2591 | "@rollup/pluginutils" "^3.1.0" 2592 | find-cache-dir "^3.3.1" 2593 | fs-extra "8.1.0" 2594 | resolve "1.17.0" 2595 | tslib "2.0.1" 2596 | 2597 | rollup-pluginutils@^2.8.1: 2598 | version "2.8.2" 2599 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" 2600 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== 2601 | dependencies: 2602 | estree-walker "^0.6.1" 2603 | 2604 | rollup@^2.23.1: 2605 | version "2.23.1" 2606 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.23.1.tgz#d458d28386dc7660c2e8a4978bea6f9494046c20" 2607 | integrity sha512-Heyl885+lyN/giQwxA8AYT2GY3U+gOlTqVLrMQYno8Z1X9lAOpfXPiKiZCyPc25e9BLJM3Zlh957dpTlO4pa8A== 2608 | optionalDependencies: 2609 | fsevents "~2.1.2" 2610 | 2611 | rxjs@^6.6.0: 2612 | version "6.6.2" 2613 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.2.tgz#8096a7ac03f2cc4fe5860ef6e572810d9e01c0d2" 2614 | integrity sha512-BHdBMVoWC2sL26w//BCu3YzKT4s2jip/WhwsGEDmeKYBhKDZeYezVUnHatYB7L85v5xs0BAQmg6BEYJEKxBabg== 2615 | dependencies: 2616 | tslib "^1.9.0" 2617 | 2618 | safe-buffer@~5.1.1: 2619 | version "5.1.2" 2620 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2621 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2622 | 2623 | scheduler@^0.19.1: 2624 | version "0.19.1" 2625 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" 2626 | integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== 2627 | dependencies: 2628 | loose-envify "^1.1.0" 2629 | object-assign "^4.1.1" 2630 | 2631 | semver-compare@^1.0.0: 2632 | version "1.0.0" 2633 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 2634 | integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= 2635 | 2636 | semver-regex@^2.0.0: 2637 | version "2.0.0" 2638 | resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" 2639 | integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== 2640 | 2641 | semver@7.0.0: 2642 | version "7.0.0" 2643 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 2644 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 2645 | 2646 | semver@^5.4.1, semver@^5.5.0: 2647 | version "5.7.1" 2648 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2649 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2650 | 2651 | semver@^6.0.0: 2652 | version "6.3.0" 2653 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2654 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2655 | 2656 | semver@^7.2.1, semver@^7.3.2: 2657 | version "7.3.2" 2658 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" 2659 | integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== 2660 | 2661 | shebang-command@^2.0.0: 2662 | version "2.0.0" 2663 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2664 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2665 | dependencies: 2666 | shebang-regex "^3.0.0" 2667 | 2668 | shebang-regex@^3.0.0: 2669 | version "3.0.0" 2670 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2671 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2672 | 2673 | side-channel@^1.0.2: 2674 | version "1.0.2" 2675 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz#df5d1abadb4e4bf4af1cd8852bf132d2f7876947" 2676 | integrity sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA== 2677 | dependencies: 2678 | es-abstract "^1.17.0-next.1" 2679 | object-inspect "^1.7.0" 2680 | 2681 | signal-exit@^3.0.2: 2682 | version "3.0.3" 2683 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 2684 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 2685 | 2686 | slash@^3.0.0: 2687 | version "3.0.0" 2688 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2689 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2690 | 2691 | slice-ansi@^2.1.0: 2692 | version "2.1.0" 2693 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 2694 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 2695 | dependencies: 2696 | ansi-styles "^3.2.0" 2697 | astral-regex "^1.0.0" 2698 | is-fullwidth-code-point "^2.0.0" 2699 | 2700 | slice-ansi@^3.0.0: 2701 | version "3.0.0" 2702 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" 2703 | integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== 2704 | dependencies: 2705 | ansi-styles "^4.0.0" 2706 | astral-regex "^2.0.0" 2707 | is-fullwidth-code-point "^3.0.0" 2708 | 2709 | slice-ansi@^4.0.0: 2710 | version "4.0.0" 2711 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 2712 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 2713 | dependencies: 2714 | ansi-styles "^4.0.0" 2715 | astral-regex "^2.0.0" 2716 | is-fullwidth-code-point "^3.0.0" 2717 | 2718 | source-map@^0.5.0: 2719 | version "0.5.7" 2720 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2721 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2722 | 2723 | sourcemap-codec@^1.4.4: 2724 | version "1.4.8" 2725 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 2726 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 2727 | 2728 | sprintf-js@~1.0.2: 2729 | version "1.0.3" 2730 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2731 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2732 | 2733 | string-argv@0.3.1: 2734 | version "0.3.1" 2735 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" 2736 | integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== 2737 | 2738 | string-width@^3.0.0: 2739 | version "3.1.0" 2740 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 2741 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 2742 | dependencies: 2743 | emoji-regex "^7.0.1" 2744 | is-fullwidth-code-point "^2.0.0" 2745 | strip-ansi "^5.1.0" 2746 | 2747 | string-width@^4.1.0, string-width@^4.2.0: 2748 | version "4.2.0" 2749 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 2750 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 2751 | dependencies: 2752 | emoji-regex "^8.0.0" 2753 | is-fullwidth-code-point "^3.0.0" 2754 | strip-ansi "^6.0.0" 2755 | 2756 | string.prototype.matchall@^4.0.2: 2757 | version "4.0.2" 2758 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e" 2759 | integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg== 2760 | dependencies: 2761 | define-properties "^1.1.3" 2762 | es-abstract "^1.17.0" 2763 | has-symbols "^1.0.1" 2764 | internal-slot "^1.0.2" 2765 | regexp.prototype.flags "^1.3.0" 2766 | side-channel "^1.0.2" 2767 | 2768 | string.prototype.trimend@^1.0.1: 2769 | version "1.0.1" 2770 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 2771 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 2772 | dependencies: 2773 | define-properties "^1.1.3" 2774 | es-abstract "^1.17.5" 2775 | 2776 | string.prototype.trimstart@^1.0.1: 2777 | version "1.0.1" 2778 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 2779 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 2780 | dependencies: 2781 | define-properties "^1.1.3" 2782 | es-abstract "^1.17.5" 2783 | 2784 | stringify-object@^3.3.0: 2785 | version "3.3.0" 2786 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" 2787 | integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== 2788 | dependencies: 2789 | get-own-enumerable-property-symbols "^3.0.0" 2790 | is-obj "^1.0.1" 2791 | is-regexp "^1.0.0" 2792 | 2793 | strip-ansi@^5.1.0: 2794 | version "5.2.0" 2795 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 2796 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 2797 | dependencies: 2798 | ansi-regex "^4.1.0" 2799 | 2800 | strip-ansi@^6.0.0: 2801 | version "6.0.0" 2802 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 2803 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 2804 | dependencies: 2805 | ansi-regex "^5.0.0" 2806 | 2807 | strip-final-newline@^2.0.0: 2808 | version "2.0.0" 2809 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 2810 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2811 | 2812 | strip-json-comments@^3.1.0: 2813 | version "3.1.1" 2814 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2815 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2816 | 2817 | supports-color@^5.3.0: 2818 | version "5.5.0" 2819 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2820 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2821 | dependencies: 2822 | has-flag "^3.0.0" 2823 | 2824 | supports-color@^7.1.0: 2825 | version "7.1.0" 2826 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 2827 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 2828 | dependencies: 2829 | has-flag "^4.0.0" 2830 | 2831 | table@^5.2.3: 2832 | version "5.4.6" 2833 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 2834 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== 2835 | dependencies: 2836 | ajv "^6.10.2" 2837 | lodash "^4.17.14" 2838 | slice-ansi "^2.1.0" 2839 | string-width "^3.0.0" 2840 | 2841 | text-table@^0.2.0: 2842 | version "0.2.0" 2843 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2844 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 2845 | 2846 | through@^2.3.8: 2847 | version "2.3.8" 2848 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2849 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 2850 | 2851 | to-fast-properties@^2.0.0: 2852 | version "2.0.0" 2853 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2854 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 2855 | 2856 | to-regex-range@^5.0.1: 2857 | version "5.0.1" 2858 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2859 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2860 | dependencies: 2861 | is-number "^7.0.0" 2862 | 2863 | tslib@2.0.1: 2864 | version "2.0.1" 2865 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.1.tgz#410eb0d113e5b6356490eec749603725b021b43e" 2866 | integrity sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ== 2867 | 2868 | tslib@^1.8.1, tslib@^1.9.0: 2869 | version "1.13.0" 2870 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" 2871 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== 2872 | 2873 | tsutils@^3.17.1: 2874 | version "3.17.1" 2875 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" 2876 | integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== 2877 | dependencies: 2878 | tslib "^1.8.1" 2879 | 2880 | type-check@^0.4.0, type-check@~0.4.0: 2881 | version "0.4.0" 2882 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2883 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2884 | dependencies: 2885 | prelude-ls "^1.2.1" 2886 | 2887 | type-fest@^0.11.0: 2888 | version "0.11.0" 2889 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 2890 | integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 2891 | 2892 | type-fest@^0.8.1: 2893 | version "0.8.1" 2894 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 2895 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 2896 | 2897 | typescript@^3.9.7: 2898 | version "3.9.7" 2899 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa" 2900 | integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== 2901 | 2902 | unicode-canonical-property-names-ecmascript@^1.0.4: 2903 | version "1.0.4" 2904 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 2905 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 2906 | 2907 | unicode-match-property-ecmascript@^1.0.4: 2908 | version "1.0.4" 2909 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 2910 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 2911 | dependencies: 2912 | unicode-canonical-property-names-ecmascript "^1.0.4" 2913 | unicode-property-aliases-ecmascript "^1.0.4" 2914 | 2915 | unicode-match-property-value-ecmascript@^1.2.0: 2916 | version "1.2.0" 2917 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 2918 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 2919 | 2920 | unicode-property-aliases-ecmascript@^1.0.4: 2921 | version "1.1.0" 2922 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 2923 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 2924 | 2925 | universalify@^0.1.0: 2926 | version "0.1.2" 2927 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 2928 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 2929 | 2930 | uri-js@^4.2.2: 2931 | version "4.2.2" 2932 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 2933 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 2934 | dependencies: 2935 | punycode "^2.1.0" 2936 | 2937 | v8-compile-cache@^2.0.3: 2938 | version "2.1.1" 2939 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" 2940 | integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== 2941 | 2942 | which-pm-runs@^1.0.0: 2943 | version "1.0.0" 2944 | resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" 2945 | integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= 2946 | 2947 | which@^2.0.1: 2948 | version "2.0.2" 2949 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2950 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2951 | dependencies: 2952 | isexe "^2.0.0" 2953 | 2954 | word-wrap@^1.2.3: 2955 | version "1.2.3" 2956 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2957 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2958 | 2959 | wrap-ansi@^6.2.0: 2960 | version "6.2.0" 2961 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 2962 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 2963 | dependencies: 2964 | ansi-styles "^4.0.0" 2965 | string-width "^4.1.0" 2966 | strip-ansi "^6.0.0" 2967 | 2968 | wrappy@1: 2969 | version "1.0.2" 2970 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2971 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2972 | 2973 | write@1.0.3: 2974 | version "1.0.3" 2975 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 2976 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 2977 | dependencies: 2978 | mkdirp "^0.5.1" 2979 | 2980 | yaml@^1.7.2: 2981 | version "1.10.0" 2982 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" 2983 | integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== 2984 | --------------------------------------------------------------------------------