├── .prettierrc ├── index.js ├── .eslintrc ├── .vscode ├── extensions.json └── settings.json ├── .gitignore ├── .babelrc ├── .npmignore ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md └── workflows │ ├── pr_checks.yml │ └── yarn_publish.yml ├── LICENSE ├── package.json ├── CODE_OF_CONDUCT.md ├── README.md ├── src └── gatsby-browser.js └── yarn.lock /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // noop 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["devjmetivier"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | node_modules/ 4 | haters/ 5 | package-lock.json 6 | 7 | /gatsby-browser.js 8 | yarn-error.log 9 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "babel-preset-gatsby-package", 5 | { 6 | "browser": true 7 | } 8 | ] 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # config folders 2 | .idea 3 | .vscode 4 | .DS_Store 5 | .github 6 | 7 | # modules 8 | haters/ 9 | 10 | # config files 11 | .babelrc 12 | .eslintrc 13 | .gitignore 14 | .prettierrc 15 | 16 | # lock files 17 | package-lock.json 18 | yarn.lock 19 | 20 | # logs 21 | yarn-error.log 22 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.codeActionsOnSave": { 3 | "source.fixAll": true 4 | }, 5 | "[javascript]": { 6 | "editor.defaultFormatter": "dbaeumer.vscode-eslint" 7 | }, 8 | "[javascriptreact]": { 9 | "editor.defaultFormatter": "dbaeumer.vscode-eslint" 10 | }, 11 | "[typescript]": { 12 | "editor.defaultFormatter": "dbaeumer.vscode-eslint" 13 | }, 14 | "[typescriptreact]": { 15 | "editor.defaultFormatter": "dbaeumer.vscode-eslint" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/workflows/pr_checks.yml: -------------------------------------------------------------------------------- 1 | name: PR Checks 2 | 3 | on: 4 | pull_request: 5 | branches: 6 | - master 7 | - 'feature/*' 8 | 9 | jobs: 10 | lint: 11 | name: Lint 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: Checkout current branch 15 | uses: actions/checkout@v1 16 | - name: Setup node environment 17 | uses: actions/setup-node@v1 18 | with: 19 | node-version: 12.x 20 | - name: Install yarn && lint 21 | run: | 22 | npm i -g yarn 23 | yarn 24 | yarn lint 25 | 26 | build: 27 | name: Build 28 | needs: lint 29 | runs-on: ubuntu-latest 30 | steps: 31 | - name: Checkout current branch 32 | uses: actions/checkout@v1 33 | - name: Setup node environment 34 | uses: actions/setup-node@v1 35 | with: 36 | node-version: 12.x 37 | - name: Install yarn && build 38 | run: | 39 | npm i -g yarn 40 | yarn 41 | yarn build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Devin Metivier 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gatsby-plugin-page-progress", 3 | "description": "Progress indicator for the top of pages as user scrolls", 4 | "version": "2.2.1", 5 | "author": "Devin Metivier ", 6 | "license": "MIT", 7 | "repository": "git://github.com/dmetivier/gatsby-plugin-page-progress.git", 8 | "homepage": "https://github.com/dmetivier/gatsby-plugin-page-progress", 9 | "bugs": { 10 | "url": "https://github.com/dmetivier/gatsby-plugin-page-progress/issues" 11 | }, 12 | "keywords": [ 13 | "gatsby", 14 | "gatsby-plugin", 15 | "plugin", 16 | "progress", 17 | "scroll", 18 | "indicator", 19 | "bar" 20 | ], 21 | "main": "index.js", 22 | "scripts": { 23 | "build": "babel src --out-dir .", 24 | "prepublishOnly": "yarn build", 25 | "clean": "rm -rf node_modules", 26 | "watch": "babel -w src --out-dir .", 27 | "lint": "eslint .", 28 | "lint:fix": "eslint . --fix" 29 | }, 30 | "devDependencies": { 31 | "@babel/cli": "^7.10.5", 32 | "@babel/core": "^7.11.4", 33 | "@types/node": "^14.6.0", 34 | "babel-eslint": "^10.0.3", 35 | "babel-preset-gatsby-package": "0.2.16", 36 | "eslint-config-devjmetivier": "2.3.0", 37 | "react": "^16.13.1", 38 | "typescript": "^3.9.7" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /.github/workflows/yarn_publish.yml: -------------------------------------------------------------------------------- 1 | name: Publish 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | lint: 10 | name: Lint 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Checkout current branch 14 | uses: actions/checkout@v1 15 | - name: Setup node environment 16 | uses: actions/setup-node@v1 17 | with: 18 | node-version: 12.x 19 | - name: Install yarn && lint 20 | run: | 21 | npm i -g yarn 22 | yarn 23 | yarn lint 24 | 25 | build: 26 | name: Build 27 | needs: lint 28 | runs-on: ubuntu-latest 29 | steps: 30 | - name: Checkout current branch 31 | uses: actions/checkout@v1 32 | - name: Setup node environment 33 | uses: actions/setup-node@v1 34 | with: 35 | node-version: 12.x 36 | - name: Install yarn && build 37 | run: | 38 | npm i -g yarn 39 | yarn 40 | yarn build 41 | 42 | publish-npm: 43 | name: Publish to NPM Registry 44 | needs: [lint, build] 45 | runs-on: ubuntu-latest 46 | steps: 47 | - name: Checkout current branch 48 | uses: actions/checkout@v1 49 | - name: Setup node environment 50 | uses: actions/setup-node@v1 51 | with: 52 | node-version: 12.x 53 | registry-url: https://registry.npmjs.org/ 54 | - name: Install yarn && publish 55 | run: | 56 | npm i -g yarn 57 | yarn 58 | yarn config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN 59 | yarn publish 60 | env: 61 | NODE_AUTH_TOKEN: ${{secrets.npm_token}} 62 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | - Using welcoming and inclusive language 18 | - Being respectful of differing viewpoints and experiences 19 | - Gracefully accepting constructive criticism 20 | - Focusing on what is best for the community 21 | - Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | - The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | - Trolling, insulting/derogatory comments, and personal or political attacks 28 | - Public or private harassment 29 | - Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | - Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at devinmetivier@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # gatsby-plugin-page-progress 2 | 3 | ![npm](https://img.shields.io/npm/v/gatsby-plugin-page-progress.svg?color=green) 4 | ![npm (tag)](https://img.shields.io/npm/v/gatsby-plugin-page-progress/beta.svg?color=blue) 5 | ![npm bundle size](https://img.shields.io/bundlephobia/min/gatsby-plugin-page-progress.svg) 6 | ![npm](https://img.shields.io/npm/dt/gatsby-plugin-page-progress.svg) 7 | 8 | Add a page progress indicator to your Gatsby project 😎 9 | The progress bar moves as you scroll down the page. 10 | 11 | ![Page Progress Example](https://i.imgur.com/N1jdBST.gif) 12 | 13 | > Useful for blog sites and other reading material so users know how far they've read into an article or page. 14 | 15 | ## [Install](#install) 16 | 17 | `npm i gatsby-plugin-page-progress` 18 | 19 | ## [Options Example](#options-example) 20 | 21 | Inside `gatsby-config.js` 22 | 23 | ```js 24 | plugins: [ 25 | { 26 | resolve: "gatsby-plugin-page-progress", 27 | options: { 28 | includePaths: ["/", { regex: "^/blog" }], 29 | excludePaths: ["/blog/beep-beep-lettuce"], 30 | height: 3, 31 | prependToBody: false, 32 | color: `#663399`, 33 | footerHeight: 500, 34 | headerHeight: 0, 35 | }, 36 | }, 37 | ]; 38 | ``` 39 | 40 | If you'd like the progression bar to appear on all pages of your project, 41 | you can simply add the name of the plugin to your plugins array in `gatsby-config.js` 42 | 43 | ```js 44 | plugins: ["gatsby-plugin-page-progress"]; 45 | ``` 46 | 47 | ## [Options](#options) 48 | 49 | #### `includePaths` 50 | 51 | Required: ❌ 52 | 53 | Accepts: `[string | object]` 54 | 55 | Default: `[]` 56 | 57 | > Supports multiple paths. This option enables the plugin to include an array of paths. You can use regex to define multiple path inclusions. **See examples below** 58 | 59 | #### `excludePaths` 60 | 61 | Required: ❌ 62 | 63 | Accepts: `[string | object]` 64 | 65 | Default: `[]` 66 | 67 | > Supports multiple paths. This option enables the plugin to exclude an array of paths. You can use regex to multiple path exclusions. Defining paths to exclude will take precedence over `includePath` definitions. **See examples below** 68 | 69 | #### `prependToBody` 70 | 71 | Required: ❌ 72 | 73 | Accepts: `boolean` 74 | 75 | Default: `false` 76 | 77 | > If `false`, the bar is appended to the ``. If `true`, the bar is prepended to the ``. 78 | 79 | #### `height` 80 | 81 | Required: ❌ 82 | 83 | Accepts: `number` 84 | 85 | Default: `3` 86 | 87 | > Sets the `height` of the progress bar. 88 | 89 | #### `color` 90 | 91 | Required: ❌ 92 | 93 | Accepts: `string` 94 | 95 | Default: `#663399` 96 | 97 | > Sets the `color` of the progress bar. 98 | 99 | #### `footerHeight` 100 | 101 | Required: ❌ 102 | 103 | Accepts: `number` 104 | 105 | Default: `0` 106 | 107 | > Sets the height of the footer. The width of the progress bar will be scaled appropriately to reach 100% before reaching the page footer. 108 | 109 | #### `headerHeight` 110 | 111 | Required: ❌ 112 | 113 | Accepts: `number` 114 | 115 | Default: `0` 116 | 117 | > Sets the height of the header. The width of the progress bar will be scaled appropriately to reach 100% while offsetting the height of a fixed header and moves the progress bar below the header. 118 | 119 | ## [Examples](#examples) 120 | 121 | #### Only include the root path: 122 | 123 | ```js 124 | plugins: [ 125 | { 126 | resolve: "gatsby-plugin-page-progress", 127 | options: { 128 | includePaths: ["/"], 129 | excludePaths: [], 130 | }, 131 | }, 132 | ]; 133 | ``` 134 | 135 | #### Include the root path, plus all paths under the `/blog` route: 136 | 137 | ```js 138 | plugins: [ 139 | { 140 | resolve: "gatsby-plugin-page-progress", 141 | options: { 142 | includePaths: ["/", { regex: "^/blog" }], 143 | excludePaths: [], 144 | }, 145 | }, 146 | ]; 147 | ``` 148 | 149 | > This plugin calls the constructor function for [RegExp](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Creating_a_regular_expression). That's why we define any regex that we want to use inside an object. For more information on how to write regular expressions using the RegExp constructor use [MDN for reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp#Description). 150 | 151 | #### Exclude only the root path: 152 | 153 | ```js 154 | plugins: [ 155 | { 156 | resolve: "gatsby-plugin-page-progress", 157 | options: { 158 | includePaths: [], 159 | excludePaths: ["/"], 160 | }, 161 | }, 162 | ]; 163 | ``` 164 | 165 | #### Include the root path, plus every path under the `/blog` route, but exclude a specific path under `/blog`: 166 | 167 | ```js 168 | plugins: [ 169 | { 170 | resolve: "gatsby-plugin-page-progress", 171 | options: { 172 | includePaths: ["/", { regex: "^/blog" }], 173 | excludePaths: ["/blog/awesome/article"], 174 | }, 175 | }, 176 | ]; 177 | ``` 178 | 179 | #### Include the root path, plus all paths under the `/blog` route, but exclude all paths under `/blog` that end with `'react'`': 180 | 181 | ```js 182 | plugins: [ 183 | { 184 | resolve: "gatsby-plugin-page-progress", 185 | options: { 186 | includePaths: ["/", { regex: "^/blog" }], 187 | excludePaths: [{ regex: "^/blog.+react$" }], 188 | }, 189 | }, 190 | ]; 191 | ``` 192 | 193 | > Remember that exclusions always take precedence over inclusions. In the case above - If the plugin finds any path that begins with `/blog` and ends with `react` it will not apply the progress indicator because it already knows to exclude that route 😁 Inversely, if we were on a route under `/blog` that didn't end with `react`, it would apply the progress indicator because the exclusion rule wouldn't apply to that route. 194 | -------------------------------------------------------------------------------- /src/gatsby-browser.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-prototype-builtins */ 2 | // Source: https://github.com/jserz/js_piece/blob/master/DOM/ParentNode/prepend()/prepend().md 3 | (function (arr) { 4 | arr.forEach(function (item) { 5 | if (item.hasOwnProperty('prepend')) { 6 | return; 7 | } 8 | Object.defineProperty(item, 'prepend', { 9 | configurable: true, 10 | enumerable: true, 11 | writable: true, 12 | value: function prepend() { 13 | var argArr = Array.prototype.slice.call(arguments), 14 | docFrag = document.createDocumentFragment(); 15 | 16 | argArr.forEach(function (argItem) { 17 | var isNode = argItem instanceof Node; 18 | docFrag.appendChild(isNode ? argItem : document.createTextNode(String(argItem))); 19 | }); 20 | 21 | this.insertBefore(docFrag, this.firstChild); 22 | }, 23 | }); 24 | }); 25 | })([Element.prototype, Document.prototype, DocumentFragment.prototype]); 26 | 27 | // Source: https://github.com/jserz/js_piece/blob/master/DOM/ParentNode/append()/append().md 28 | (function (arr) { 29 | arr.forEach(function (item) { 30 | if (item.hasOwnProperty('append')) { 31 | return; 32 | } 33 | Object.defineProperty(item, 'append', { 34 | configurable: true, 35 | enumerable: true, 36 | writable: true, 37 | value: function append() { 38 | var argArr = Array.prototype.slice.call(arguments), 39 | docFrag = document.createDocumentFragment(); 40 | 41 | argArr.forEach(function (argItem) { 42 | var isNode = argItem instanceof Node; 43 | docFrag.appendChild(isNode ? argItem : document.createTextNode(String(argItem))); 44 | }); 45 | 46 | this.appendChild(docFrag); 47 | }, 48 | }); 49 | }); 50 | })([Element.prototype, Document.prototype, DocumentFragment.prototype]); 51 | 52 | // from:https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/remove()/remove().md 53 | (function (arr) { 54 | arr.forEach(function (item) { 55 | if (item.hasOwnProperty('remove')) { 56 | return; 57 | } 58 | Object.defineProperty(item, 'remove', { 59 | configurable: true, 60 | enumerable: true, 61 | writable: true, 62 | value: function remove() { 63 | if (this.parentNode === null) { 64 | return; 65 | } 66 | this.parentNode.removeChild(this); 67 | }, 68 | }); 69 | }); 70 | })([Element.prototype, CharacterData.prototype, DocumentType.prototype]); 71 | 72 | const defaultOptions = { 73 | includePaths: [], 74 | excludePaths: [], 75 | height: 3, 76 | prependToBody: false, 77 | color: `#663399`, 78 | footerHeight: 0, 79 | headerHeight: 0, 80 | }; 81 | 82 | // browser API usage: https://www.gatsbyjs.org/docs/browser-apis/#onRouteUpdate 83 | export const onRouteUpdate = ({ location: { pathname } }, pluginOptions = {}) => { 84 | // merge default options with user defined options in `gatsby-config.js` 85 | const options = { ...defaultOptions, ...pluginOptions }; 86 | 87 | const { includePaths, excludePaths, height, prependToBody, color, footerHeight, headerHeight } = options; 88 | 89 | function pageProgress() { 90 | // create progress indicator container and append/prepend to document body 91 | const node = document.createElement(`div`); 92 | node.id = `gatsby-plugin-page-progress`; 93 | // eslint-disable-next-line 94 | prependToBody ? document.body.prepend(node) : document.body.append(node); 95 | 96 | // set defaults and grab progress indicator from the DOM 97 | let scrolling = false; 98 | const indicator = document.getElementById(`gatsby-plugin-page-progress`); 99 | 100 | // determine width of progress indicator 101 | const getIndicatorPercentageWidth = (currentPos, totalScroll) => { 102 | return Math.min(1.0, currentPos / totalScroll) * 100; 103 | }; 104 | 105 | // find the total height of window 106 | const getScrollHeight = () => { 107 | // https://javascript.info/size-and-scroll-window#width-height-of-the-document 108 | return Math.max( 109 | document.body.scrollHeight, 110 | document.documentElement.scrollHeight, 111 | document.body.offsetHeight, 112 | document.documentElement.offsetHeight, 113 | document.body.clientHeight, 114 | document.documentElement.clientHeight, 115 | ); 116 | }; 117 | 118 | // add throttled listener to update on scroll 119 | window.addEventListener(`scroll`, () => { 120 | const currentPos = window.scrollY; 121 | const { innerHeight } = window; 122 | const scrollHeight = getScrollHeight(); 123 | const scrollDistance = scrollHeight - innerHeight - footerHeight - headerHeight; 124 | 125 | if (!scrolling) { 126 | window.requestAnimationFrame(() => { 127 | const indicatorWidth = getIndicatorPercentageWidth(currentPos, scrollDistance); 128 | const initialScrollPosition = headerHeight ? headerHeight : 0; 129 | 130 | indicator.setAttribute( 131 | `style`, 132 | // eslint-disable-next-line 133 | `width: ${indicatorWidth}%; position: fixed; height: ${height}px; background-color: ${color}; top: ${initialScrollPosition}px; left: 0; transition: width 0.25s; z-index: 9999;` 134 | ); 135 | 136 | scrolling = false; 137 | }); 138 | scrolling = true; 139 | } 140 | }); 141 | } 142 | 143 | function checkPaths(val, paths) { 144 | if (paths.length === 0) return val; // return if no paths 145 | let returnVal = val; 146 | 147 | // loop over each path 148 | paths.forEach((x) => { 149 | // if returnVal has already changed => return 150 | if (returnVal === !val) return; 151 | // regex is supplied in an object: { regex: '/beep/beep/lettuce' } 152 | const isRegex = typeof x === `object`; 153 | 154 | // if regex is present test it against the pathname - if test passes, change returnVal 155 | if (isRegex && new RegExp(x.regex, `gm`).test(pathname)) returnVal = !returnVal; 156 | // otherwise if the current path is strictly equal to the pathname, change returnVal 157 | if (x === pathname) returnVal = !returnVal; 158 | }); 159 | 160 | return returnVal; 161 | } 162 | 163 | // check to see if the scroll indicator already exists - if it does, remove it 164 | function removeProgressIndicator() { 165 | const indicatorCheck = document.getElementById(`gatsby-plugin-page-progress`); 166 | if (indicatorCheck) indicatorCheck.remove(); 167 | } 168 | 169 | // if there's no excluded paths && no included paths 170 | if (!excludePaths.length && !includePaths.length) { 171 | removeProgressIndicator(); 172 | pageProgress(); 173 | // if there's excluded paths && no included paths 174 | } else if (excludePaths.length && !includePaths.length) { 175 | const continueAfterExclude = checkPaths(true, excludePaths); 176 | removeProgressIndicator(); 177 | 178 | if (continueAfterExclude) pageProgress(); 179 | // if there's either excluded paths && included paths || no excluded paths && included paths 180 | } else { 181 | const continueAfterExclude = checkPaths(true, excludePaths); 182 | removeProgressIndicator(); 183 | 184 | if (continueAfterExclude) { 185 | const match = checkPaths(false, includePaths); 186 | match && pageProgress(); 187 | } 188 | } 189 | }; 190 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/cli@^7.10.5": 6 | version "7.13.10" 7 | resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.13.10.tgz#3a9254cbe806639c8ca4ebd49ebe54b4267b88c9" 8 | integrity sha512-lYSBC7B4B9hJ7sv0Ojx1BrGhuzCoOIYfLjd+Xpd4rOzdS+a47yi8voV8vFkfjlZR1N5qZO7ixOCbobUdT304PQ== 9 | dependencies: 10 | commander "^4.0.1" 11 | convert-source-map "^1.1.0" 12 | fs-readdir-recursive "^1.1.0" 13 | glob "^7.0.0" 14 | lodash "^4.17.19" 15 | make-dir "^2.1.0" 16 | slash "^2.0.0" 17 | source-map "^0.5.0" 18 | optionalDependencies: 19 | "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents" 20 | chokidar "^3.4.0" 21 | 22 | "@babel/code-frame@7.12.11": 23 | version "7.12.11" 24 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 25 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 26 | dependencies: 27 | "@babel/highlight" "^7.10.4" 28 | 29 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13": 30 | version "7.12.13" 31 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658" 32 | integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== 33 | dependencies: 34 | "@babel/highlight" "^7.12.13" 35 | 36 | "@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.8": 37 | version "7.13.11" 38 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.11.tgz#9c8fe523c206979c9a81b1e12fe50c1254f1aa35" 39 | integrity sha512-BwKEkO+2a67DcFeS3RLl0Z3Gs2OvdXewuWjc1Hfokhb5eQWP9YRYH1/+VrVZvql2CfjOiNGqSAFOYt4lsqTHzg== 40 | 41 | "@babel/core@^7.11.4": 42 | version "7.13.10" 43 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.10.tgz#07de050bbd8193fcd8a3c27918c0890613a94559" 44 | integrity sha512-bfIYcT0BdKeAZrovpMqX2Mx5NrgAckGbwT982AkdS5GNfn3KMGiprlBAtmBcFZRUmpaufS6WZFP8trvx8ptFDw== 45 | dependencies: 46 | "@babel/code-frame" "^7.12.13" 47 | "@babel/generator" "^7.13.9" 48 | "@babel/helper-compilation-targets" "^7.13.10" 49 | "@babel/helper-module-transforms" "^7.13.0" 50 | "@babel/helpers" "^7.13.10" 51 | "@babel/parser" "^7.13.10" 52 | "@babel/template" "^7.12.13" 53 | "@babel/traverse" "^7.13.0" 54 | "@babel/types" "^7.13.0" 55 | convert-source-map "^1.7.0" 56 | debug "^4.1.0" 57 | gensync "^1.0.0-beta.2" 58 | json5 "^2.1.2" 59 | lodash "^4.17.19" 60 | semver "^6.3.0" 61 | source-map "^0.5.0" 62 | 63 | "@babel/generator@^7.13.0", "@babel/generator@^7.13.9": 64 | version "7.13.9" 65 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39" 66 | integrity sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw== 67 | dependencies: 68 | "@babel/types" "^7.13.0" 69 | jsesc "^2.5.1" 70 | source-map "^0.5.0" 71 | 72 | "@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13": 73 | version "7.12.13" 74 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab" 75 | integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw== 76 | dependencies: 77 | "@babel/types" "^7.12.13" 78 | 79 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13": 80 | version "7.12.13" 81 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc" 82 | integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA== 83 | dependencies: 84 | "@babel/helper-explode-assignable-expression" "^7.12.13" 85 | "@babel/types" "^7.12.13" 86 | 87 | "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.13.8": 88 | version "7.13.10" 89 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz#1310a1678cb8427c07a753750da4f8ce442bdd0c" 90 | integrity sha512-/Xju7Qg1GQO4mHZ/Kcs6Au7gfafgZnwm+a7sy/ow/tV1sHeraRUHbjdat8/UvDor4Tez+siGKDk6zIKtCPKVJA== 91 | dependencies: 92 | "@babel/compat-data" "^7.13.8" 93 | "@babel/helper-validator-option" "^7.12.17" 94 | browserslist "^4.14.5" 95 | semver "^6.3.0" 96 | 97 | "@babel/helper-create-class-features-plugin@^7.13.0": 98 | version "7.13.11" 99 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz#30d30a005bca2c953f5653fc25091a492177f4f6" 100 | integrity sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw== 101 | dependencies: 102 | "@babel/helper-function-name" "^7.12.13" 103 | "@babel/helper-member-expression-to-functions" "^7.13.0" 104 | "@babel/helper-optimise-call-expression" "^7.12.13" 105 | "@babel/helper-replace-supers" "^7.13.0" 106 | "@babel/helper-split-export-declaration" "^7.12.13" 107 | 108 | "@babel/helper-create-regexp-features-plugin@^7.12.13": 109 | version "7.12.17" 110 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz#a2ac87e9e319269ac655b8d4415e94d38d663cb7" 111 | integrity sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg== 112 | dependencies: 113 | "@babel/helper-annotate-as-pure" "^7.12.13" 114 | regexpu-core "^4.7.1" 115 | 116 | "@babel/helper-define-polyfill-provider@^0.1.5": 117 | version "0.1.5" 118 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz#3c2f91b7971b9fc11fe779c945c014065dea340e" 119 | integrity sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg== 120 | dependencies: 121 | "@babel/helper-compilation-targets" "^7.13.0" 122 | "@babel/helper-module-imports" "^7.12.13" 123 | "@babel/helper-plugin-utils" "^7.13.0" 124 | "@babel/traverse" "^7.13.0" 125 | debug "^4.1.1" 126 | lodash.debounce "^4.0.8" 127 | resolve "^1.14.2" 128 | semver "^6.1.2" 129 | 130 | "@babel/helper-explode-assignable-expression@^7.12.13": 131 | version "7.13.0" 132 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f" 133 | integrity sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA== 134 | dependencies: 135 | "@babel/types" "^7.13.0" 136 | 137 | "@babel/helper-function-name@^7.12.13": 138 | version "7.12.13" 139 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a" 140 | integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA== 141 | dependencies: 142 | "@babel/helper-get-function-arity" "^7.12.13" 143 | "@babel/template" "^7.12.13" 144 | "@babel/types" "^7.12.13" 145 | 146 | "@babel/helper-get-function-arity@^7.12.13": 147 | version "7.12.13" 148 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583" 149 | integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg== 150 | dependencies: 151 | "@babel/types" "^7.12.13" 152 | 153 | "@babel/helper-hoist-variables@^7.13.0": 154 | version "7.13.0" 155 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz#5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8" 156 | integrity sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g== 157 | dependencies: 158 | "@babel/traverse" "^7.13.0" 159 | "@babel/types" "^7.13.0" 160 | 161 | "@babel/helper-member-expression-to-functions@^7.13.0": 162 | version "7.13.0" 163 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz#6aa4bb678e0f8c22f58cdb79451d30494461b091" 164 | integrity sha512-yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ== 165 | dependencies: 166 | "@babel/types" "^7.13.0" 167 | 168 | "@babel/helper-module-imports@^7.12.13": 169 | version "7.12.13" 170 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz#ec67e4404f41750463e455cc3203f6a32e93fcb0" 171 | integrity sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g== 172 | dependencies: 173 | "@babel/types" "^7.12.13" 174 | 175 | "@babel/helper-module-transforms@^7.13.0": 176 | version "7.13.0" 177 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz#42eb4bd8eea68bab46751212c357bfed8b40f6f1" 178 | integrity sha512-Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw== 179 | dependencies: 180 | "@babel/helper-module-imports" "^7.12.13" 181 | "@babel/helper-replace-supers" "^7.13.0" 182 | "@babel/helper-simple-access" "^7.12.13" 183 | "@babel/helper-split-export-declaration" "^7.12.13" 184 | "@babel/helper-validator-identifier" "^7.12.11" 185 | "@babel/template" "^7.12.13" 186 | "@babel/traverse" "^7.13.0" 187 | "@babel/types" "^7.13.0" 188 | lodash "^4.17.19" 189 | 190 | "@babel/helper-optimise-call-expression@^7.12.13": 191 | version "7.12.13" 192 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea" 193 | integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA== 194 | dependencies: 195 | "@babel/types" "^7.12.13" 196 | 197 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 198 | version "7.13.0" 199 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af" 200 | integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ== 201 | 202 | "@babel/helper-remap-async-to-generator@^7.13.0": 203 | version "7.13.0" 204 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209" 205 | integrity sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg== 206 | dependencies: 207 | "@babel/helper-annotate-as-pure" "^7.12.13" 208 | "@babel/helper-wrap-function" "^7.13.0" 209 | "@babel/types" "^7.13.0" 210 | 211 | "@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0": 212 | version "7.13.0" 213 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz#6034b7b51943094cb41627848cb219cb02be1d24" 214 | integrity sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw== 215 | dependencies: 216 | "@babel/helper-member-expression-to-functions" "^7.13.0" 217 | "@babel/helper-optimise-call-expression" "^7.12.13" 218 | "@babel/traverse" "^7.13.0" 219 | "@babel/types" "^7.13.0" 220 | 221 | "@babel/helper-simple-access@^7.12.13": 222 | version "7.12.13" 223 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz#8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4" 224 | integrity sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA== 225 | dependencies: 226 | "@babel/types" "^7.12.13" 227 | 228 | "@babel/helper-skip-transparent-expression-wrappers@^7.12.1": 229 | version "7.12.1" 230 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf" 231 | integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA== 232 | dependencies: 233 | "@babel/types" "^7.12.1" 234 | 235 | "@babel/helper-split-export-declaration@^7.12.13": 236 | version "7.12.13" 237 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05" 238 | integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg== 239 | dependencies: 240 | "@babel/types" "^7.12.13" 241 | 242 | "@babel/helper-validator-identifier@^7.12.11": 243 | version "7.12.11" 244 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" 245 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 246 | 247 | "@babel/helper-validator-option@^7.12.17": 248 | version "7.12.17" 249 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831" 250 | integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw== 251 | 252 | "@babel/helper-wrap-function@^7.13.0": 253 | version "7.13.0" 254 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4" 255 | integrity sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA== 256 | dependencies: 257 | "@babel/helper-function-name" "^7.12.13" 258 | "@babel/template" "^7.12.13" 259 | "@babel/traverse" "^7.13.0" 260 | "@babel/types" "^7.13.0" 261 | 262 | "@babel/helpers@^7.13.10": 263 | version "7.13.10" 264 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.13.10.tgz#fd8e2ba7488533cdeac45cc158e9ebca5e3c7df8" 265 | integrity sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ== 266 | dependencies: 267 | "@babel/template" "^7.12.13" 268 | "@babel/traverse" "^7.13.0" 269 | "@babel/types" "^7.13.0" 270 | 271 | "@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": 272 | version "7.13.10" 273 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1" 274 | integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg== 275 | dependencies: 276 | "@babel/helper-validator-identifier" "^7.12.11" 277 | chalk "^2.0.0" 278 | js-tokens "^4.0.0" 279 | 280 | "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10", "@babel/parser@^7.7.0": 281 | version "7.13.11" 282 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.11.tgz#f93ebfc99d21c1772afbbaa153f47e7ce2f50b88" 283 | integrity sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q== 284 | 285 | "@babel/plugin-proposal-async-generator-functions@^7.13.8": 286 | version "7.13.8" 287 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz#87aacb574b3bc4b5603f6fe41458d72a5a2ec4b1" 288 | integrity sha512-rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA== 289 | dependencies: 290 | "@babel/helper-plugin-utils" "^7.13.0" 291 | "@babel/helper-remap-async-to-generator" "^7.13.0" 292 | "@babel/plugin-syntax-async-generators" "^7.8.4" 293 | 294 | "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.7.4": 295 | version "7.13.0" 296 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37" 297 | integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg== 298 | dependencies: 299 | "@babel/helper-create-class-features-plugin" "^7.13.0" 300 | "@babel/helper-plugin-utils" "^7.13.0" 301 | 302 | "@babel/plugin-proposal-dynamic-import@^7.13.8": 303 | version "7.13.8" 304 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz#876a1f6966e1dec332e8c9451afda3bebcdf2e1d" 305 | integrity sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ== 306 | dependencies: 307 | "@babel/helper-plugin-utils" "^7.13.0" 308 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 309 | 310 | "@babel/plugin-proposal-export-namespace-from@^7.12.13": 311 | version "7.12.13" 312 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz#393be47a4acd03fa2af6e3cde9b06e33de1b446d" 313 | integrity sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw== 314 | dependencies: 315 | "@babel/helper-plugin-utils" "^7.12.13" 316 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 317 | 318 | "@babel/plugin-proposal-json-strings@^7.13.8": 319 | version "7.13.8" 320 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz#bf1fb362547075afda3634ed31571c5901afef7b" 321 | integrity sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q== 322 | dependencies: 323 | "@babel/helper-plugin-utils" "^7.13.0" 324 | "@babel/plugin-syntax-json-strings" "^7.8.3" 325 | 326 | "@babel/plugin-proposal-logical-assignment-operators@^7.13.8": 327 | version "7.13.8" 328 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz#93fa78d63857c40ce3c8c3315220fd00bfbb4e1a" 329 | integrity sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A== 330 | dependencies: 331 | "@babel/helper-plugin-utils" "^7.13.0" 332 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 333 | 334 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.7.4": 335 | version "7.13.8" 336 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz#3730a31dafd3c10d8ccd10648ed80a2ac5472ef3" 337 | integrity sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A== 338 | dependencies: 339 | "@babel/helper-plugin-utils" "^7.13.0" 340 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 341 | 342 | "@babel/plugin-proposal-numeric-separator@^7.12.13": 343 | version "7.12.13" 344 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz#bd9da3188e787b5120b4f9d465a8261ce67ed1db" 345 | integrity sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w== 346 | dependencies: 347 | "@babel/helper-plugin-utils" "^7.12.13" 348 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 349 | 350 | "@babel/plugin-proposal-object-rest-spread@^7.13.8": 351 | version "7.13.8" 352 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz#5d210a4d727d6ce3b18f9de82cc99a3964eed60a" 353 | integrity sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g== 354 | dependencies: 355 | "@babel/compat-data" "^7.13.8" 356 | "@babel/helper-compilation-targets" "^7.13.8" 357 | "@babel/helper-plugin-utils" "^7.13.0" 358 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 359 | "@babel/plugin-transform-parameters" "^7.13.0" 360 | 361 | "@babel/plugin-proposal-optional-catch-binding@^7.13.8": 362 | version "7.13.8" 363 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz#3ad6bd5901506ea996fc31bdcf3ccfa2bed71107" 364 | integrity sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA== 365 | dependencies: 366 | "@babel/helper-plugin-utils" "^7.13.0" 367 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 368 | 369 | "@babel/plugin-proposal-optional-chaining@^7.13.8", "@babel/plugin-proposal-optional-chaining@^7.7.5": 370 | version "7.13.8" 371 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz#e39df93efe7e7e621841babc197982e140e90756" 372 | integrity sha512-hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ== 373 | dependencies: 374 | "@babel/helper-plugin-utils" "^7.13.0" 375 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 376 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 377 | 378 | "@babel/plugin-proposal-private-methods@^7.13.0": 379 | version "7.13.0" 380 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787" 381 | integrity sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q== 382 | dependencies: 383 | "@babel/helper-create-class-features-plugin" "^7.13.0" 384 | "@babel/helper-plugin-utils" "^7.13.0" 385 | 386 | "@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": 387 | version "7.12.13" 388 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba" 389 | integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg== 390 | dependencies: 391 | "@babel/helper-create-regexp-features-plugin" "^7.12.13" 392 | "@babel/helper-plugin-utils" "^7.12.13" 393 | 394 | "@babel/plugin-syntax-async-generators@^7.8.4": 395 | version "7.8.4" 396 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 397 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 398 | dependencies: 399 | "@babel/helper-plugin-utils" "^7.8.0" 400 | 401 | "@babel/plugin-syntax-class-properties@^7.12.13": 402 | version "7.12.13" 403 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 404 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 405 | dependencies: 406 | "@babel/helper-plugin-utils" "^7.12.13" 407 | 408 | "@babel/plugin-syntax-dynamic-import@^7.7.4", "@babel/plugin-syntax-dynamic-import@^7.8.3": 409 | version "7.8.3" 410 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 411 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 412 | dependencies: 413 | "@babel/helper-plugin-utils" "^7.8.0" 414 | 415 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 416 | version "7.8.3" 417 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 418 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 419 | dependencies: 420 | "@babel/helper-plugin-utils" "^7.8.3" 421 | 422 | "@babel/plugin-syntax-flow@^7.12.13": 423 | version "7.12.13" 424 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz#5df9962503c0a9c918381c929d51d4d6949e7e86" 425 | integrity sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA== 426 | dependencies: 427 | "@babel/helper-plugin-utils" "^7.12.13" 428 | 429 | "@babel/plugin-syntax-json-strings@^7.8.3": 430 | version "7.8.3" 431 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 432 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 433 | dependencies: 434 | "@babel/helper-plugin-utils" "^7.8.0" 435 | 436 | "@babel/plugin-syntax-jsx@^7.12.13": 437 | version "7.12.13" 438 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz#044fb81ebad6698fe62c478875575bcbb9b70f15" 439 | integrity sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g== 440 | dependencies: 441 | "@babel/helper-plugin-utils" "^7.12.13" 442 | 443 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": 444 | version "7.10.4" 445 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 446 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 447 | dependencies: 448 | "@babel/helper-plugin-utils" "^7.10.4" 449 | 450 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 451 | version "7.8.3" 452 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 453 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 454 | dependencies: 455 | "@babel/helper-plugin-utils" "^7.8.0" 456 | 457 | "@babel/plugin-syntax-numeric-separator@^7.10.4": 458 | version "7.10.4" 459 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 460 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 461 | dependencies: 462 | "@babel/helper-plugin-utils" "^7.10.4" 463 | 464 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 465 | version "7.8.3" 466 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 467 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 468 | dependencies: 469 | "@babel/helper-plugin-utils" "^7.8.0" 470 | 471 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 472 | version "7.8.3" 473 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 474 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 475 | dependencies: 476 | "@babel/helper-plugin-utils" "^7.8.0" 477 | 478 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 479 | version "7.8.3" 480 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 481 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 482 | dependencies: 483 | "@babel/helper-plugin-utils" "^7.8.0" 484 | 485 | "@babel/plugin-syntax-top-level-await@^7.12.13": 486 | version "7.12.13" 487 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178" 488 | integrity sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ== 489 | dependencies: 490 | "@babel/helper-plugin-utils" "^7.12.13" 491 | 492 | "@babel/plugin-transform-arrow-functions@^7.13.0": 493 | version "7.13.0" 494 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae" 495 | integrity sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg== 496 | dependencies: 497 | "@babel/helper-plugin-utils" "^7.13.0" 498 | 499 | "@babel/plugin-transform-async-to-generator@^7.13.0": 500 | version "7.13.0" 501 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f" 502 | integrity sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg== 503 | dependencies: 504 | "@babel/helper-module-imports" "^7.12.13" 505 | "@babel/helper-plugin-utils" "^7.13.0" 506 | "@babel/helper-remap-async-to-generator" "^7.13.0" 507 | 508 | "@babel/plugin-transform-block-scoped-functions@^7.12.13": 509 | version "7.12.13" 510 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4" 511 | integrity sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg== 512 | dependencies: 513 | "@babel/helper-plugin-utils" "^7.12.13" 514 | 515 | "@babel/plugin-transform-block-scoping@^7.12.13": 516 | version "7.12.13" 517 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz#f36e55076d06f41dfd78557ea039c1b581642e61" 518 | integrity sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ== 519 | dependencies: 520 | "@babel/helper-plugin-utils" "^7.12.13" 521 | 522 | "@babel/plugin-transform-classes@^7.13.0": 523 | version "7.13.0" 524 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz#0265155075c42918bf4d3a4053134176ad9b533b" 525 | integrity sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g== 526 | dependencies: 527 | "@babel/helper-annotate-as-pure" "^7.12.13" 528 | "@babel/helper-function-name" "^7.12.13" 529 | "@babel/helper-optimise-call-expression" "^7.12.13" 530 | "@babel/helper-plugin-utils" "^7.13.0" 531 | "@babel/helper-replace-supers" "^7.13.0" 532 | "@babel/helper-split-export-declaration" "^7.12.13" 533 | globals "^11.1.0" 534 | 535 | "@babel/plugin-transform-computed-properties@^7.13.0": 536 | version "7.13.0" 537 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed" 538 | integrity sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg== 539 | dependencies: 540 | "@babel/helper-plugin-utils" "^7.13.0" 541 | 542 | "@babel/plugin-transform-destructuring@^7.13.0": 543 | version "7.13.0" 544 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz#c5dce270014d4e1ebb1d806116694c12b7028963" 545 | integrity sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA== 546 | dependencies: 547 | "@babel/helper-plugin-utils" "^7.13.0" 548 | 549 | "@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4": 550 | version "7.12.13" 551 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad" 552 | integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ== 553 | dependencies: 554 | "@babel/helper-create-regexp-features-plugin" "^7.12.13" 555 | "@babel/helper-plugin-utils" "^7.12.13" 556 | 557 | "@babel/plugin-transform-duplicate-keys@^7.12.13": 558 | version "7.12.13" 559 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de" 560 | integrity sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ== 561 | dependencies: 562 | "@babel/helper-plugin-utils" "^7.12.13" 563 | 564 | "@babel/plugin-transform-exponentiation-operator@^7.12.13": 565 | version "7.12.13" 566 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1" 567 | integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA== 568 | dependencies: 569 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13" 570 | "@babel/helper-plugin-utils" "^7.12.13" 571 | 572 | "@babel/plugin-transform-flow-strip-types@^7.12.13": 573 | version "7.13.0" 574 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.13.0.tgz#58177a48c209971e8234e99906cb6bd1122addd3" 575 | integrity sha512-EXAGFMJgSX8gxWD7PZtW/P6M+z74jpx3wm/+9pn+c2dOawPpBkUX7BrfyPvo6ZpXbgRIEuwgwDb/MGlKvu2pOg== 576 | dependencies: 577 | "@babel/helper-plugin-utils" "^7.13.0" 578 | "@babel/plugin-syntax-flow" "^7.12.13" 579 | 580 | "@babel/plugin-transform-for-of@^7.13.0": 581 | version "7.13.0" 582 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062" 583 | integrity sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg== 584 | dependencies: 585 | "@babel/helper-plugin-utils" "^7.13.0" 586 | 587 | "@babel/plugin-transform-function-name@^7.12.13": 588 | version "7.12.13" 589 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051" 590 | integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ== 591 | dependencies: 592 | "@babel/helper-function-name" "^7.12.13" 593 | "@babel/helper-plugin-utils" "^7.12.13" 594 | 595 | "@babel/plugin-transform-literals@^7.12.13": 596 | version "7.12.13" 597 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9" 598 | integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ== 599 | dependencies: 600 | "@babel/helper-plugin-utils" "^7.12.13" 601 | 602 | "@babel/plugin-transform-member-expression-literals@^7.12.13": 603 | version "7.12.13" 604 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40" 605 | integrity sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg== 606 | dependencies: 607 | "@babel/helper-plugin-utils" "^7.12.13" 608 | 609 | "@babel/plugin-transform-modules-amd@^7.13.0": 610 | version "7.13.0" 611 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz#19f511d60e3d8753cc5a6d4e775d3a5184866cc3" 612 | integrity sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ== 613 | dependencies: 614 | "@babel/helper-module-transforms" "^7.13.0" 615 | "@babel/helper-plugin-utils" "^7.13.0" 616 | babel-plugin-dynamic-import-node "^2.3.3" 617 | 618 | "@babel/plugin-transform-modules-commonjs@^7.13.8": 619 | version "7.13.8" 620 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b" 621 | integrity sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw== 622 | dependencies: 623 | "@babel/helper-module-transforms" "^7.13.0" 624 | "@babel/helper-plugin-utils" "^7.13.0" 625 | "@babel/helper-simple-access" "^7.12.13" 626 | babel-plugin-dynamic-import-node "^2.3.3" 627 | 628 | "@babel/plugin-transform-modules-systemjs@^7.13.8": 629 | version "7.13.8" 630 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3" 631 | integrity sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A== 632 | dependencies: 633 | "@babel/helper-hoist-variables" "^7.13.0" 634 | "@babel/helper-module-transforms" "^7.13.0" 635 | "@babel/helper-plugin-utils" "^7.13.0" 636 | "@babel/helper-validator-identifier" "^7.12.11" 637 | babel-plugin-dynamic-import-node "^2.3.3" 638 | 639 | "@babel/plugin-transform-modules-umd@^7.13.0": 640 | version "7.13.0" 641 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz#8a3d96a97d199705b9fd021580082af81c06e70b" 642 | integrity sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw== 643 | dependencies: 644 | "@babel/helper-module-transforms" "^7.13.0" 645 | "@babel/helper-plugin-utils" "^7.13.0" 646 | 647 | "@babel/plugin-transform-named-capturing-groups-regex@^7.12.13": 648 | version "7.12.13" 649 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9" 650 | integrity sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA== 651 | dependencies: 652 | "@babel/helper-create-regexp-features-plugin" "^7.12.13" 653 | 654 | "@babel/plugin-transform-new-target@^7.12.13": 655 | version "7.12.13" 656 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c" 657 | integrity sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ== 658 | dependencies: 659 | "@babel/helper-plugin-utils" "^7.12.13" 660 | 661 | "@babel/plugin-transform-object-super@^7.12.13": 662 | version "7.12.13" 663 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7" 664 | integrity sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ== 665 | dependencies: 666 | "@babel/helper-plugin-utils" "^7.12.13" 667 | "@babel/helper-replace-supers" "^7.12.13" 668 | 669 | "@babel/plugin-transform-parameters@^7.13.0": 670 | version "7.13.0" 671 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz#8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007" 672 | integrity sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw== 673 | dependencies: 674 | "@babel/helper-plugin-utils" "^7.13.0" 675 | 676 | "@babel/plugin-transform-property-literals@^7.12.13": 677 | version "7.12.13" 678 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81" 679 | integrity sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A== 680 | dependencies: 681 | "@babel/helper-plugin-utils" "^7.12.13" 682 | 683 | "@babel/plugin-transform-react-display-name@^7.12.13": 684 | version "7.12.13" 685 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz#c28effd771b276f4647411c9733dbb2d2da954bd" 686 | integrity sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA== 687 | dependencies: 688 | "@babel/helper-plugin-utils" "^7.12.13" 689 | 690 | "@babel/plugin-transform-react-jsx-development@^7.12.12": 691 | version "7.12.17" 692 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz#f510c0fa7cd7234153539f9a362ced41a5ca1447" 693 | integrity sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ== 694 | dependencies: 695 | "@babel/plugin-transform-react-jsx" "^7.12.17" 696 | 697 | "@babel/plugin-transform-react-jsx@^7.12.13", "@babel/plugin-transform-react-jsx@^7.12.17": 698 | version "7.12.17" 699 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz#dd2c1299f5e26de584939892de3cfc1807a38f24" 700 | integrity sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw== 701 | dependencies: 702 | "@babel/helper-annotate-as-pure" "^7.12.13" 703 | "@babel/helper-module-imports" "^7.12.13" 704 | "@babel/helper-plugin-utils" "^7.12.13" 705 | "@babel/plugin-syntax-jsx" "^7.12.13" 706 | "@babel/types" "^7.12.17" 707 | 708 | "@babel/plugin-transform-react-pure-annotations@^7.12.1": 709 | version "7.12.1" 710 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42" 711 | integrity sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg== 712 | dependencies: 713 | "@babel/helper-annotate-as-pure" "^7.10.4" 714 | "@babel/helper-plugin-utils" "^7.10.4" 715 | 716 | "@babel/plugin-transform-regenerator@^7.12.13": 717 | version "7.12.13" 718 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz#b628bcc9c85260ac1aeb05b45bde25210194a2f5" 719 | integrity sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA== 720 | dependencies: 721 | regenerator-transform "^0.14.2" 722 | 723 | "@babel/plugin-transform-reserved-words@^7.12.13": 724 | version "7.12.13" 725 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695" 726 | integrity sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg== 727 | dependencies: 728 | "@babel/helper-plugin-utils" "^7.12.13" 729 | 730 | "@babel/plugin-transform-runtime@^7.7.6": 731 | version "7.13.10" 732 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.10.tgz#a1e40d22e2bf570c591c9c7e5ab42d6bf1e419e1" 733 | integrity sha512-Y5k8ipgfvz5d/76tx7JYbKQTcgFSU6VgJ3kKQv4zGTKr+a9T/KBvfRvGtSFgKDQGt/DBykQixV0vNWKIdzWErA== 734 | dependencies: 735 | "@babel/helper-module-imports" "^7.12.13" 736 | "@babel/helper-plugin-utils" "^7.13.0" 737 | babel-plugin-polyfill-corejs2 "^0.1.4" 738 | babel-plugin-polyfill-corejs3 "^0.1.3" 739 | babel-plugin-polyfill-regenerator "^0.1.2" 740 | semver "^6.3.0" 741 | 742 | "@babel/plugin-transform-shorthand-properties@^7.12.13": 743 | version "7.12.13" 744 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad" 745 | integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw== 746 | dependencies: 747 | "@babel/helper-plugin-utils" "^7.12.13" 748 | 749 | "@babel/plugin-transform-spread@^7.13.0": 750 | version "7.13.0" 751 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd" 752 | integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg== 753 | dependencies: 754 | "@babel/helper-plugin-utils" "^7.13.0" 755 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" 756 | 757 | "@babel/plugin-transform-sticky-regex@^7.12.13": 758 | version "7.12.13" 759 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f" 760 | integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg== 761 | dependencies: 762 | "@babel/helper-plugin-utils" "^7.12.13" 763 | 764 | "@babel/plugin-transform-template-literals@^7.13.0": 765 | version "7.13.0" 766 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d" 767 | integrity sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw== 768 | dependencies: 769 | "@babel/helper-plugin-utils" "^7.13.0" 770 | 771 | "@babel/plugin-transform-typeof-symbol@^7.12.13": 772 | version "7.12.13" 773 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f" 774 | integrity sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ== 775 | dependencies: 776 | "@babel/helper-plugin-utils" "^7.12.13" 777 | 778 | "@babel/plugin-transform-unicode-escapes@^7.12.13": 779 | version "7.12.13" 780 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74" 781 | integrity sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw== 782 | dependencies: 783 | "@babel/helper-plugin-utils" "^7.12.13" 784 | 785 | "@babel/plugin-transform-unicode-regex@^7.12.13": 786 | version "7.12.13" 787 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac" 788 | integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA== 789 | dependencies: 790 | "@babel/helper-create-regexp-features-plugin" "^7.12.13" 791 | "@babel/helper-plugin-utils" "^7.12.13" 792 | 793 | "@babel/preset-env@^7.7.6": 794 | version "7.13.10" 795 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.13.10.tgz#b5cde31d5fe77ab2a6ab3d453b59041a1b3a5252" 796 | integrity sha512-nOsTScuoRghRtUsRr/c69d042ysfPHcu+KOB4A9aAO9eJYqrkat+LF8G1yp1HD18QiwixT2CisZTr/0b3YZPXQ== 797 | dependencies: 798 | "@babel/compat-data" "^7.13.8" 799 | "@babel/helper-compilation-targets" "^7.13.10" 800 | "@babel/helper-plugin-utils" "^7.13.0" 801 | "@babel/helper-validator-option" "^7.12.17" 802 | "@babel/plugin-proposal-async-generator-functions" "^7.13.8" 803 | "@babel/plugin-proposal-class-properties" "^7.13.0" 804 | "@babel/plugin-proposal-dynamic-import" "^7.13.8" 805 | "@babel/plugin-proposal-export-namespace-from" "^7.12.13" 806 | "@babel/plugin-proposal-json-strings" "^7.13.8" 807 | "@babel/plugin-proposal-logical-assignment-operators" "^7.13.8" 808 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" 809 | "@babel/plugin-proposal-numeric-separator" "^7.12.13" 810 | "@babel/plugin-proposal-object-rest-spread" "^7.13.8" 811 | "@babel/plugin-proposal-optional-catch-binding" "^7.13.8" 812 | "@babel/plugin-proposal-optional-chaining" "^7.13.8" 813 | "@babel/plugin-proposal-private-methods" "^7.13.0" 814 | "@babel/plugin-proposal-unicode-property-regex" "^7.12.13" 815 | "@babel/plugin-syntax-async-generators" "^7.8.4" 816 | "@babel/plugin-syntax-class-properties" "^7.12.13" 817 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 818 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 819 | "@babel/plugin-syntax-json-strings" "^7.8.3" 820 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 821 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 822 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 823 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 824 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 825 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 826 | "@babel/plugin-syntax-top-level-await" "^7.12.13" 827 | "@babel/plugin-transform-arrow-functions" "^7.13.0" 828 | "@babel/plugin-transform-async-to-generator" "^7.13.0" 829 | "@babel/plugin-transform-block-scoped-functions" "^7.12.13" 830 | "@babel/plugin-transform-block-scoping" "^7.12.13" 831 | "@babel/plugin-transform-classes" "^7.13.0" 832 | "@babel/plugin-transform-computed-properties" "^7.13.0" 833 | "@babel/plugin-transform-destructuring" "^7.13.0" 834 | "@babel/plugin-transform-dotall-regex" "^7.12.13" 835 | "@babel/plugin-transform-duplicate-keys" "^7.12.13" 836 | "@babel/plugin-transform-exponentiation-operator" "^7.12.13" 837 | "@babel/plugin-transform-for-of" "^7.13.0" 838 | "@babel/plugin-transform-function-name" "^7.12.13" 839 | "@babel/plugin-transform-literals" "^7.12.13" 840 | "@babel/plugin-transform-member-expression-literals" "^7.12.13" 841 | "@babel/plugin-transform-modules-amd" "^7.13.0" 842 | "@babel/plugin-transform-modules-commonjs" "^7.13.8" 843 | "@babel/plugin-transform-modules-systemjs" "^7.13.8" 844 | "@babel/plugin-transform-modules-umd" "^7.13.0" 845 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13" 846 | "@babel/plugin-transform-new-target" "^7.12.13" 847 | "@babel/plugin-transform-object-super" "^7.12.13" 848 | "@babel/plugin-transform-parameters" "^7.13.0" 849 | "@babel/plugin-transform-property-literals" "^7.12.13" 850 | "@babel/plugin-transform-regenerator" "^7.12.13" 851 | "@babel/plugin-transform-reserved-words" "^7.12.13" 852 | "@babel/plugin-transform-shorthand-properties" "^7.12.13" 853 | "@babel/plugin-transform-spread" "^7.13.0" 854 | "@babel/plugin-transform-sticky-regex" "^7.12.13" 855 | "@babel/plugin-transform-template-literals" "^7.13.0" 856 | "@babel/plugin-transform-typeof-symbol" "^7.12.13" 857 | "@babel/plugin-transform-unicode-escapes" "^7.12.13" 858 | "@babel/plugin-transform-unicode-regex" "^7.12.13" 859 | "@babel/preset-modules" "^0.1.4" 860 | "@babel/types" "^7.13.0" 861 | babel-plugin-polyfill-corejs2 "^0.1.4" 862 | babel-plugin-polyfill-corejs3 "^0.1.3" 863 | babel-plugin-polyfill-regenerator "^0.1.2" 864 | core-js-compat "^3.9.0" 865 | semver "^6.3.0" 866 | 867 | "@babel/preset-flow@^7.7.4": 868 | version "7.12.13" 869 | resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.12.13.tgz#71ee7fe65a95b507ac12bcad65a4ced27d8dfc3e" 870 | integrity sha512-gcEjiwcGHa3bo9idURBp5fmJPcyFPOszPQjztXrOjUE2wWVqc6fIVJPgWPIQksaQ5XZ2HWiRsf2s1fRGVjUtVw== 871 | dependencies: 872 | "@babel/helper-plugin-utils" "^7.12.13" 873 | "@babel/plugin-transform-flow-strip-types" "^7.12.13" 874 | 875 | "@babel/preset-modules@^0.1.4": 876 | version "0.1.4" 877 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" 878 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== 879 | dependencies: 880 | "@babel/helper-plugin-utils" "^7.0.0" 881 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" 882 | "@babel/plugin-transform-dotall-regex" "^7.4.4" 883 | "@babel/types" "^7.4.4" 884 | esutils "^2.0.2" 885 | 886 | "@babel/preset-react@^7.7.4": 887 | version "7.12.13" 888 | resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.13.tgz#5f911b2eb24277fa686820d5bd81cad9a0602a0a" 889 | integrity sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA== 890 | dependencies: 891 | "@babel/helper-plugin-utils" "^7.12.13" 892 | "@babel/plugin-transform-react-display-name" "^7.12.13" 893 | "@babel/plugin-transform-react-jsx" "^7.12.13" 894 | "@babel/plugin-transform-react-jsx-development" "^7.12.12" 895 | "@babel/plugin-transform-react-pure-annotations" "^7.12.1" 896 | 897 | "@babel/runtime-corejs3@^7.10.2": 898 | version "7.13.10" 899 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz#14c3f4c85de22ba88e8e86685d13e8861a82fe86" 900 | integrity sha512-x/XYVQ1h684pp1mJwOV4CyvqZXqbc8CMsMGUnAbuc82ZCdv1U63w5RSUzgDSXQHG5Rps/kiksH6g2D5BuaKyXg== 901 | dependencies: 902 | core-js-pure "^3.0.0" 903 | regenerator-runtime "^0.13.4" 904 | 905 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.8.4": 906 | version "7.13.10" 907 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d" 908 | integrity sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw== 909 | dependencies: 910 | regenerator-runtime "^0.13.4" 911 | 912 | "@babel/template@^7.12.13": 913 | version "7.12.13" 914 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327" 915 | integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA== 916 | dependencies: 917 | "@babel/code-frame" "^7.12.13" 918 | "@babel/parser" "^7.12.13" 919 | "@babel/types" "^7.12.13" 920 | 921 | "@babel/traverse@^7.13.0", "@babel/traverse@^7.7.0": 922 | version "7.13.0" 923 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.13.0.tgz#6d95752475f86ee7ded06536de309a65fc8966cc" 924 | integrity sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ== 925 | dependencies: 926 | "@babel/code-frame" "^7.12.13" 927 | "@babel/generator" "^7.13.0" 928 | "@babel/helper-function-name" "^7.12.13" 929 | "@babel/helper-split-export-declaration" "^7.12.13" 930 | "@babel/parser" "^7.13.0" 931 | "@babel/types" "^7.13.0" 932 | debug "^4.1.0" 933 | globals "^11.1.0" 934 | lodash "^4.17.19" 935 | 936 | "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.17", "@babel/types@^7.13.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0": 937 | version "7.13.0" 938 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.13.0.tgz#74424d2816f0171b4100f0ab34e9a374efdf7f80" 939 | integrity sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA== 940 | dependencies: 941 | "@babel/helper-validator-identifier" "^7.12.11" 942 | lodash "^4.17.19" 943 | to-fast-properties "^2.0.0" 944 | 945 | "@eslint/eslintrc@^0.4.0": 946 | version "0.4.0" 947 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547" 948 | integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog== 949 | dependencies: 950 | ajv "^6.12.4" 951 | debug "^4.1.1" 952 | espree "^7.3.0" 953 | globals "^12.1.0" 954 | ignore "^4.0.6" 955 | import-fresh "^3.2.1" 956 | js-yaml "^3.13.1" 957 | minimatch "^3.0.4" 958 | strip-json-comments "^3.1.1" 959 | 960 | "@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents": 961 | version "2.1.8-no-fsevents" 962 | resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.tgz#da7c3996b8e6e19ebd14d82eaced2313e7769f9b" 963 | integrity sha512-+nb9vWloHNNMFHjGofEam3wopE3m1yuambrrd/fnPc+lFOMB9ROTqQlche9ByFWNkdNqfSgR/kkQtQ8DzEWt2w== 964 | dependencies: 965 | anymatch "^2.0.0" 966 | async-each "^1.0.1" 967 | braces "^2.3.2" 968 | glob-parent "^3.1.0" 969 | inherits "^2.0.3" 970 | is-binary-path "^1.0.0" 971 | is-glob "^4.0.0" 972 | normalize-path "^3.0.0" 973 | path-is-absolute "^1.0.0" 974 | readdirp "^2.2.1" 975 | upath "^1.1.1" 976 | 977 | "@nodelib/fs.scandir@2.1.4": 978 | version "2.1.4" 979 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" 980 | integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA== 981 | dependencies: 982 | "@nodelib/fs.stat" "2.0.4" 983 | run-parallel "^1.1.9" 984 | 985 | "@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2": 986 | version "2.0.4" 987 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz#a3f2dd61bab43b8db8fa108a121cfffe4c676655" 988 | integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q== 989 | 990 | "@nodelib/fs.walk@^1.2.3": 991 | version "1.2.6" 992 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz#cce9396b30aa5afe9e3756608f5831adcb53d063" 993 | integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow== 994 | dependencies: 995 | "@nodelib/fs.scandir" "2.1.4" 996 | fastq "^1.6.0" 997 | 998 | "@types/json-schema@^7.0.3": 999 | version "7.0.7" 1000 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" 1001 | integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== 1002 | 1003 | "@types/json5@^0.0.29": 1004 | version "0.0.29" 1005 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 1006 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 1007 | 1008 | "@types/node@^14.6.0": 1009 | version "14.14.35" 1010 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.35.tgz#42c953a4e2b18ab931f72477e7012172f4ffa313" 1011 | integrity sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag== 1012 | 1013 | "@typescript-eslint/eslint-plugin@^4.15.2": 1014 | version "4.18.0" 1015 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.18.0.tgz#50fbce93211b5b690895d20ebec6fe8db48af1f6" 1016 | integrity sha512-Lzkc/2+7EoH7+NjIWLS2lVuKKqbEmJhtXe3rmfA8cyiKnZm3IfLf51irnBcmow8Q/AptVV0XBZmBJKuUJTe6cQ== 1017 | dependencies: 1018 | "@typescript-eslint/experimental-utils" "4.18.0" 1019 | "@typescript-eslint/scope-manager" "4.18.0" 1020 | debug "^4.1.1" 1021 | functional-red-black-tree "^1.0.1" 1022 | lodash "^4.17.15" 1023 | regexpp "^3.0.0" 1024 | semver "^7.3.2" 1025 | tsutils "^3.17.1" 1026 | 1027 | "@typescript-eslint/experimental-utils@4.18.0": 1028 | version "4.18.0" 1029 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.18.0.tgz#ed6c955b940334132b17100d2917449b99a91314" 1030 | integrity sha512-92h723Kblt9JcT2RRY3QS2xefFKar4ZQFVs3GityOKWQYgtajxt/tuXIzL7sVCUlM1hgreiV5gkGYyBpdOwO6A== 1031 | dependencies: 1032 | "@types/json-schema" "^7.0.3" 1033 | "@typescript-eslint/scope-manager" "4.18.0" 1034 | "@typescript-eslint/types" "4.18.0" 1035 | "@typescript-eslint/typescript-estree" "4.18.0" 1036 | eslint-scope "^5.0.0" 1037 | eslint-utils "^2.0.0" 1038 | 1039 | "@typescript-eslint/parser@^4.15.2": 1040 | version "4.18.0" 1041 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.18.0.tgz#a211edb14a69fc5177054bec04c95b185b4dde21" 1042 | integrity sha512-W3z5S0ZbecwX3PhJEAnq4mnjK5JJXvXUDBYIYGoweCyWyuvAKfGHvzmpUzgB5L4cRBb+cTu9U/ro66dx7dIimA== 1043 | dependencies: 1044 | "@typescript-eslint/scope-manager" "4.18.0" 1045 | "@typescript-eslint/types" "4.18.0" 1046 | "@typescript-eslint/typescript-estree" "4.18.0" 1047 | debug "^4.1.1" 1048 | 1049 | "@typescript-eslint/scope-manager@4.18.0": 1050 | version "4.18.0" 1051 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.18.0.tgz#d75b55234c35d2ff6ac945758d6d9e53be84a427" 1052 | integrity sha512-olX4yN6rvHR2eyFOcb6E4vmhDPsfdMyfQ3qR+oQNkAv8emKKlfxTWUXU5Mqxs2Fwe3Pf1BoPvrwZtwngxDzYzQ== 1053 | dependencies: 1054 | "@typescript-eslint/types" "4.18.0" 1055 | "@typescript-eslint/visitor-keys" "4.18.0" 1056 | 1057 | "@typescript-eslint/types@4.18.0": 1058 | version "4.18.0" 1059 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.18.0.tgz#bebe323f81f2a7e2e320fac9415e60856267584a" 1060 | integrity sha512-/BRociARpj5E+9yQ7cwCF/SNOWwXJ3qhjurMuK2hIFUbr9vTuDeu476Zpu+ptxY2kSxUHDGLLKy+qGq2sOg37A== 1061 | 1062 | "@typescript-eslint/typescript-estree@4.18.0": 1063 | version "4.18.0" 1064 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.18.0.tgz#756d3e61da8c16ab99185532c44872f4cd5538cb" 1065 | integrity sha512-wt4xvF6vvJI7epz+rEqxmoNQ4ZADArGQO9gDU+cM0U5fdVv7N+IAuVoVAoZSOZxzGHBfvE3XQMLdy+scsqFfeg== 1066 | dependencies: 1067 | "@typescript-eslint/types" "4.18.0" 1068 | "@typescript-eslint/visitor-keys" "4.18.0" 1069 | debug "^4.1.1" 1070 | globby "^11.0.1" 1071 | is-glob "^4.0.1" 1072 | semver "^7.3.2" 1073 | tsutils "^3.17.1" 1074 | 1075 | "@typescript-eslint/visitor-keys@4.18.0": 1076 | version "4.18.0" 1077 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.18.0.tgz#4e6fe2a175ee33418318a029610845a81e2ff7b6" 1078 | integrity sha512-Q9t90JCvfYaN0OfFUgaLqByOfz8yPeTAdotn/XYNm5q9eHax90gzdb+RJ6E9T5s97Kv/UHWKERTmqA0jTKAEHw== 1079 | dependencies: 1080 | "@typescript-eslint/types" "4.18.0" 1081 | eslint-visitor-keys "^2.0.0" 1082 | 1083 | acorn-jsx@^5.3.1: 1084 | version "5.3.1" 1085 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" 1086 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== 1087 | 1088 | acorn@^7.4.0: 1089 | version "7.4.1" 1090 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 1091 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 1092 | 1093 | ajv@^6.10.0, ajv@^6.12.4: 1094 | version "6.12.6" 1095 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 1096 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 1097 | dependencies: 1098 | fast-deep-equal "^3.1.1" 1099 | fast-json-stable-stringify "^2.0.0" 1100 | json-schema-traverse "^0.4.1" 1101 | uri-js "^4.2.2" 1102 | 1103 | ajv@^7.0.2: 1104 | version "7.2.1" 1105 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.2.1.tgz#a5ac226171912447683524fa2f1248fcf8bac83d" 1106 | integrity sha512-+nu0HDv7kNSOua9apAVc979qd932rrZeb3WOvoiD31A/p1mIE5/9bN2027pE2rOPYEdS3UHzsvof4hY+lM9/WQ== 1107 | dependencies: 1108 | fast-deep-equal "^3.1.1" 1109 | json-schema-traverse "^1.0.0" 1110 | require-from-string "^2.0.2" 1111 | uri-js "^4.2.2" 1112 | 1113 | ansi-colors@^4.1.1: 1114 | version "4.1.1" 1115 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 1116 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 1117 | 1118 | ansi-regex@^5.0.0: 1119 | version "5.0.1" 1120 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 1121 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 1122 | 1123 | ansi-styles@^3.2.1: 1124 | version "3.2.1" 1125 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1126 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1127 | dependencies: 1128 | color-convert "^1.9.0" 1129 | 1130 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 1131 | version "4.3.0" 1132 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 1133 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1134 | dependencies: 1135 | color-convert "^2.0.1" 1136 | 1137 | anymatch@^2.0.0: 1138 | version "2.0.0" 1139 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 1140 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 1141 | dependencies: 1142 | micromatch "^3.1.4" 1143 | normalize-path "^2.1.1" 1144 | 1145 | anymatch@~3.1.1: 1146 | version "3.1.1" 1147 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 1148 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 1149 | dependencies: 1150 | normalize-path "^3.0.0" 1151 | picomatch "^2.0.4" 1152 | 1153 | argparse@^1.0.7: 1154 | version "1.0.10" 1155 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 1156 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 1157 | dependencies: 1158 | sprintf-js "~1.0.2" 1159 | 1160 | aria-query@^4.2.2: 1161 | version "4.2.2" 1162 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 1163 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 1164 | dependencies: 1165 | "@babel/runtime" "^7.10.2" 1166 | "@babel/runtime-corejs3" "^7.10.2" 1167 | 1168 | arr-diff@^4.0.0: 1169 | version "4.0.0" 1170 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 1171 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 1172 | 1173 | arr-flatten@^1.1.0: 1174 | version "1.1.0" 1175 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 1176 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 1177 | 1178 | arr-union@^3.1.0: 1179 | version "3.1.0" 1180 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 1181 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 1182 | 1183 | array-includes@^3.1.1, array-includes@^3.1.2: 1184 | version "3.1.3" 1185 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a" 1186 | integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== 1187 | dependencies: 1188 | call-bind "^1.0.2" 1189 | define-properties "^1.1.3" 1190 | es-abstract "^1.18.0-next.2" 1191 | get-intrinsic "^1.1.1" 1192 | is-string "^1.0.5" 1193 | 1194 | array-union@^2.1.0: 1195 | version "2.1.0" 1196 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 1197 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 1198 | 1199 | array-unique@^0.3.2: 1200 | version "0.3.2" 1201 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 1202 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 1203 | 1204 | array.prototype.flat@^1.2.3: 1205 | version "1.2.4" 1206 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123" 1207 | integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg== 1208 | dependencies: 1209 | call-bind "^1.0.0" 1210 | define-properties "^1.1.3" 1211 | es-abstract "^1.18.0-next.1" 1212 | 1213 | array.prototype.flatmap@^1.2.3: 1214 | version "1.2.4" 1215 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9" 1216 | integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q== 1217 | dependencies: 1218 | call-bind "^1.0.0" 1219 | define-properties "^1.1.3" 1220 | es-abstract "^1.18.0-next.1" 1221 | function-bind "^1.1.1" 1222 | 1223 | assign-symbols@^1.0.0: 1224 | version "1.0.0" 1225 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 1226 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 1227 | 1228 | ast-types-flow@^0.0.7: 1229 | version "0.0.7" 1230 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 1231 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= 1232 | 1233 | astral-regex@^2.0.0: 1234 | version "2.0.0" 1235 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 1236 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 1237 | 1238 | async-each@^1.0.1: 1239 | version "1.0.3" 1240 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 1241 | integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== 1242 | 1243 | atob@^2.1.2: 1244 | version "2.1.2" 1245 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 1246 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 1247 | 1248 | axe-core@^4.0.2: 1249 | version "4.1.3" 1250 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.1.3.tgz#64a4c85509e0991f5168340edc4bedd1ceea6966" 1251 | integrity sha512-vwPpH4Aj4122EW38mxO/fxhGKtwWTMLDIJfZ1He0Edbtjcfna/R3YB67yVhezUMzqc3Jr3+Ii50KRntlENL4xQ== 1252 | 1253 | axobject-query@^2.2.0: 1254 | version "2.2.0" 1255 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 1256 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 1257 | 1258 | babel-eslint@^10.0.3: 1259 | version "10.1.0" 1260 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" 1261 | integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== 1262 | dependencies: 1263 | "@babel/code-frame" "^7.0.0" 1264 | "@babel/parser" "^7.7.0" 1265 | "@babel/traverse" "^7.7.0" 1266 | "@babel/types" "^7.7.0" 1267 | eslint-visitor-keys "^1.0.0" 1268 | resolve "^1.12.0" 1269 | 1270 | babel-plugin-dynamic-import-node@^2.3.0, babel-plugin-dynamic-import-node@^2.3.3: 1271 | version "2.3.3" 1272 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" 1273 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== 1274 | dependencies: 1275 | object.assign "^4.1.0" 1276 | 1277 | babel-plugin-polyfill-corejs2@^0.1.4: 1278 | version "0.1.10" 1279 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz#a2c5c245f56c0cac3dbddbf0726a46b24f0f81d1" 1280 | integrity sha512-DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA== 1281 | dependencies: 1282 | "@babel/compat-data" "^7.13.0" 1283 | "@babel/helper-define-polyfill-provider" "^0.1.5" 1284 | semver "^6.1.1" 1285 | 1286 | babel-plugin-polyfill-corejs3@^0.1.3: 1287 | version "0.1.7" 1288 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz#80449d9d6f2274912e05d9e182b54816904befd0" 1289 | integrity sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw== 1290 | dependencies: 1291 | "@babel/helper-define-polyfill-provider" "^0.1.5" 1292 | core-js-compat "^3.8.1" 1293 | 1294 | babel-plugin-polyfill-regenerator@^0.1.2: 1295 | version "0.1.6" 1296 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz#0fe06a026fe0faa628ccc8ba3302da0a6ce02f3f" 1297 | integrity sha512-OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg== 1298 | dependencies: 1299 | "@babel/helper-define-polyfill-provider" "^0.1.5" 1300 | 1301 | babel-preset-gatsby-package@0.2.16: 1302 | version "0.2.16" 1303 | resolved "https://registry.yarnpkg.com/babel-preset-gatsby-package/-/babel-preset-gatsby-package-0.2.16.tgz#521fdfdcc39277c21a2ddd77595afd0bdff482e0" 1304 | integrity sha512-mXO1Pk4AZsqt//XgI5ONKo29BAntDE2b5NZ2O/rFjZn/MzwjfhwOz4oz+D4wrP1gCe29ICWWab4vsUXuwPaKUQ== 1305 | dependencies: 1306 | "@babel/plugin-proposal-class-properties" "^7.7.4" 1307 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.7.4" 1308 | "@babel/plugin-proposal-optional-chaining" "^7.7.5" 1309 | "@babel/plugin-syntax-dynamic-import" "^7.7.4" 1310 | "@babel/plugin-transform-runtime" "^7.7.6" 1311 | "@babel/preset-env" "^7.7.6" 1312 | "@babel/preset-flow" "^7.7.4" 1313 | "@babel/preset-react" "^7.7.4" 1314 | babel-plugin-dynamic-import-node "^2.3.0" 1315 | core-js "^2.6.11" 1316 | 1317 | balanced-match@^1.0.0: 1318 | version "1.0.2" 1319 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 1320 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1321 | 1322 | base@^0.11.1: 1323 | version "0.11.2" 1324 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 1325 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 1326 | dependencies: 1327 | cache-base "^1.0.1" 1328 | class-utils "^0.3.5" 1329 | component-emitter "^1.2.1" 1330 | define-property "^1.0.0" 1331 | isobject "^3.0.1" 1332 | mixin-deep "^1.2.0" 1333 | pascalcase "^0.1.1" 1334 | 1335 | binary-extensions@^1.0.0: 1336 | version "1.13.1" 1337 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" 1338 | integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== 1339 | 1340 | binary-extensions@^2.0.0: 1341 | version "2.2.0" 1342 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 1343 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 1344 | 1345 | brace-expansion@^1.1.7: 1346 | version "1.1.11" 1347 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 1348 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 1349 | dependencies: 1350 | balanced-match "^1.0.0" 1351 | concat-map "0.0.1" 1352 | 1353 | braces@^2.3.1, braces@^2.3.2: 1354 | version "2.3.2" 1355 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 1356 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 1357 | dependencies: 1358 | arr-flatten "^1.1.0" 1359 | array-unique "^0.3.2" 1360 | extend-shallow "^2.0.1" 1361 | fill-range "^4.0.0" 1362 | isobject "^3.0.1" 1363 | repeat-element "^1.1.2" 1364 | snapdragon "^0.8.1" 1365 | snapdragon-node "^2.0.1" 1366 | split-string "^3.0.2" 1367 | to-regex "^3.0.1" 1368 | 1369 | braces@^3.0.1, braces@~3.0.2: 1370 | version "3.0.2" 1371 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 1372 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1373 | dependencies: 1374 | fill-range "^7.0.1" 1375 | 1376 | browserslist@^4.14.5, browserslist@^4.16.3: 1377 | version "4.16.6" 1378 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" 1379 | integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== 1380 | dependencies: 1381 | caniuse-lite "^1.0.30001219" 1382 | colorette "^1.2.2" 1383 | electron-to-chromium "^1.3.723" 1384 | escalade "^3.1.1" 1385 | node-releases "^1.1.71" 1386 | 1387 | cache-base@^1.0.1: 1388 | version "1.0.1" 1389 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 1390 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 1391 | dependencies: 1392 | collection-visit "^1.0.0" 1393 | component-emitter "^1.2.1" 1394 | get-value "^2.0.6" 1395 | has-value "^1.0.0" 1396 | isobject "^3.0.1" 1397 | set-value "^2.0.0" 1398 | to-object-path "^0.3.0" 1399 | union-value "^1.0.0" 1400 | unset-value "^1.0.0" 1401 | 1402 | call-bind@^1.0.0, call-bind@^1.0.2: 1403 | version "1.0.2" 1404 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 1405 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 1406 | dependencies: 1407 | function-bind "^1.1.1" 1408 | get-intrinsic "^1.0.2" 1409 | 1410 | callsites@^3.0.0: 1411 | version "3.1.0" 1412 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1413 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1414 | 1415 | caniuse-lite@^1.0.30001219: 1416 | version "1.0.30001228" 1417 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001228.tgz#bfdc5942cd3326fa51ee0b42fbef4da9d492a7fa" 1418 | integrity sha512-QQmLOGJ3DEgokHbMSA8cj2a+geXqmnpyOFT0lhQV6P3/YOJvGDEwoedcwxEQ30gJIwIIunHIicunJ2rzK5gB2A== 1419 | 1420 | chalk@^2.0.0: 1421 | version "2.4.2" 1422 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1423 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1424 | dependencies: 1425 | ansi-styles "^3.2.1" 1426 | escape-string-regexp "^1.0.5" 1427 | supports-color "^5.3.0" 1428 | 1429 | chalk@^4.0.0: 1430 | version "4.1.0" 1431 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 1432 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 1433 | dependencies: 1434 | ansi-styles "^4.1.0" 1435 | supports-color "^7.1.0" 1436 | 1437 | chokidar@^3.4.0: 1438 | version "3.5.1" 1439 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" 1440 | integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== 1441 | dependencies: 1442 | anymatch "~3.1.1" 1443 | braces "~3.0.2" 1444 | glob-parent "~5.1.0" 1445 | is-binary-path "~2.1.0" 1446 | is-glob "~4.0.1" 1447 | normalize-path "~3.0.0" 1448 | readdirp "~3.5.0" 1449 | optionalDependencies: 1450 | fsevents "~2.3.1" 1451 | 1452 | class-utils@^0.3.5: 1453 | version "0.3.6" 1454 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1455 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 1456 | dependencies: 1457 | arr-union "^3.1.0" 1458 | define-property "^0.2.5" 1459 | isobject "^3.0.0" 1460 | static-extend "^0.1.1" 1461 | 1462 | collection-visit@^1.0.0: 1463 | version "1.0.0" 1464 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1465 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 1466 | dependencies: 1467 | map-visit "^1.0.0" 1468 | object-visit "^1.0.0" 1469 | 1470 | color-convert@^1.9.0: 1471 | version "1.9.3" 1472 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1473 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1474 | dependencies: 1475 | color-name "1.1.3" 1476 | 1477 | color-convert@^2.0.1: 1478 | version "2.0.1" 1479 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1480 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1481 | dependencies: 1482 | color-name "~1.1.4" 1483 | 1484 | color-name@1.1.3: 1485 | version "1.1.3" 1486 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1487 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1488 | 1489 | color-name@~1.1.4: 1490 | version "1.1.4" 1491 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1492 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1493 | 1494 | colorette@^1.2.2: 1495 | version "1.2.2" 1496 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" 1497 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== 1498 | 1499 | commander@^4.0.1: 1500 | version "4.1.1" 1501 | resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" 1502 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 1503 | 1504 | component-emitter@^1.2.1: 1505 | version "1.3.0" 1506 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 1507 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 1508 | 1509 | concat-map@0.0.1: 1510 | version "0.0.1" 1511 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1512 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 1513 | 1514 | contains-path@^0.1.0: 1515 | version "0.1.0" 1516 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1517 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 1518 | 1519 | convert-source-map@^1.1.0, convert-source-map@^1.7.0: 1520 | version "1.7.0" 1521 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1522 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1523 | dependencies: 1524 | safe-buffer "~5.1.1" 1525 | 1526 | copy-descriptor@^0.1.0: 1527 | version "0.1.1" 1528 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1529 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1530 | 1531 | core-js-compat@^3.8.1, core-js-compat@^3.9.0: 1532 | version "3.9.1" 1533 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.9.1.tgz#4e572acfe90aff69d76d8c37759d21a5c59bb455" 1534 | integrity sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA== 1535 | dependencies: 1536 | browserslist "^4.16.3" 1537 | semver "7.0.0" 1538 | 1539 | core-js-pure@^3.0.0: 1540 | version "3.9.1" 1541 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.9.1.tgz#677b322267172bd490e4464696f790cbc355bec5" 1542 | integrity sha512-laz3Zx0avrw9a4QEIdmIblnVuJz8W51leY9iLThatCsFawWxC3sE4guASC78JbCin+DkwMpCdp1AVAuzL/GN7A== 1543 | 1544 | core-js@^2.6.11: 1545 | version "2.6.12" 1546 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" 1547 | integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== 1548 | 1549 | core-util-is@~1.0.0: 1550 | version "1.0.2" 1551 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1552 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 1553 | 1554 | cross-spawn@^7.0.2: 1555 | version "7.0.3" 1556 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1557 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1558 | dependencies: 1559 | path-key "^3.1.0" 1560 | shebang-command "^2.0.0" 1561 | which "^2.0.1" 1562 | 1563 | damerau-levenshtein@^1.0.6: 1564 | version "1.0.6" 1565 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" 1566 | integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug== 1567 | 1568 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: 1569 | version "2.6.9" 1570 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1571 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1572 | dependencies: 1573 | ms "2.0.0" 1574 | 1575 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: 1576 | version "4.3.1" 1577 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 1578 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 1579 | dependencies: 1580 | ms "2.1.2" 1581 | 1582 | decode-uri-component@^0.2.0: 1583 | version "0.2.2" 1584 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" 1585 | integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== 1586 | 1587 | deep-is@^0.1.3: 1588 | version "0.1.3" 1589 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1590 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1591 | 1592 | define-properties@^1.1.3: 1593 | version "1.1.3" 1594 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1595 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1596 | dependencies: 1597 | object-keys "^1.0.12" 1598 | 1599 | define-property@^0.2.5: 1600 | version "0.2.5" 1601 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1602 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 1603 | dependencies: 1604 | is-descriptor "^0.1.0" 1605 | 1606 | define-property@^1.0.0: 1607 | version "1.0.0" 1608 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1609 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 1610 | dependencies: 1611 | is-descriptor "^1.0.0" 1612 | 1613 | define-property@^2.0.2: 1614 | version "2.0.2" 1615 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1616 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 1617 | dependencies: 1618 | is-descriptor "^1.0.2" 1619 | isobject "^3.0.1" 1620 | 1621 | dir-glob@^3.0.1: 1622 | version "3.0.1" 1623 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 1624 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 1625 | dependencies: 1626 | path-type "^4.0.0" 1627 | 1628 | doctrine@1.5.0: 1629 | version "1.5.0" 1630 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1631 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 1632 | dependencies: 1633 | esutils "^2.0.2" 1634 | isarray "^1.0.0" 1635 | 1636 | doctrine@^2.1.0: 1637 | version "2.1.0" 1638 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1639 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 1640 | dependencies: 1641 | esutils "^2.0.2" 1642 | 1643 | doctrine@^3.0.0: 1644 | version "3.0.0" 1645 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 1646 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 1647 | dependencies: 1648 | esutils "^2.0.2" 1649 | 1650 | electron-to-chromium@^1.3.723: 1651 | version "1.3.738" 1652 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.738.tgz#aec24b091c82acbfabbdcce08076a703941d17ca" 1653 | integrity sha512-vCMf4gDOpEylPSLPLSwAEsz+R3ShP02Y3cAKMZvTqule3XcPp7tgc/0ESI7IS6ZeyBlGClE50N53fIOkcIVnpw== 1654 | 1655 | emoji-regex@^8.0.0: 1656 | version "8.0.0" 1657 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1658 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1659 | 1660 | emoji-regex@^9.0.0: 1661 | version "9.2.2" 1662 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 1663 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 1664 | 1665 | enquirer@^2.3.5: 1666 | version "2.3.6" 1667 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 1668 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 1669 | dependencies: 1670 | ansi-colors "^4.1.1" 1671 | 1672 | error-ex@^1.2.0: 1673 | version "1.3.2" 1674 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1675 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1676 | dependencies: 1677 | is-arrayish "^0.2.1" 1678 | 1679 | es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2: 1680 | version "1.18.0" 1681 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4" 1682 | integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== 1683 | dependencies: 1684 | call-bind "^1.0.2" 1685 | es-to-primitive "^1.2.1" 1686 | function-bind "^1.1.1" 1687 | get-intrinsic "^1.1.1" 1688 | has "^1.0.3" 1689 | has-symbols "^1.0.2" 1690 | is-callable "^1.2.3" 1691 | is-negative-zero "^2.0.1" 1692 | is-regex "^1.1.2" 1693 | is-string "^1.0.5" 1694 | object-inspect "^1.9.0" 1695 | object-keys "^1.1.1" 1696 | object.assign "^4.1.2" 1697 | string.prototype.trimend "^1.0.4" 1698 | string.prototype.trimstart "^1.0.4" 1699 | unbox-primitive "^1.0.0" 1700 | 1701 | es-to-primitive@^1.2.1: 1702 | version "1.2.1" 1703 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1704 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1705 | dependencies: 1706 | is-callable "^1.1.4" 1707 | is-date-object "^1.0.1" 1708 | is-symbol "^1.0.2" 1709 | 1710 | escalade@^3.1.1: 1711 | version "3.1.1" 1712 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1713 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1714 | 1715 | escape-string-regexp@^1.0.5: 1716 | version "1.0.5" 1717 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1718 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1719 | 1720 | eslint-config-devjmetivier@2.3.0: 1721 | version "2.3.0" 1722 | resolved "https://registry.yarnpkg.com/eslint-config-devjmetivier/-/eslint-config-devjmetivier-2.3.0.tgz#1e9be68028dc4798e692fd6b6d2ff93ba9be1ea3" 1723 | integrity sha512-0YuG/FsgCMvdaUyw1BxUH9MhPvTZwf/CwMOguk72djUt7F2fHGVzHDgMXVsWo+sms+R5KH7qunl3CpomynBW7g== 1724 | dependencies: 1725 | "@typescript-eslint/eslint-plugin" "^4.15.2" 1726 | "@typescript-eslint/parser" "^4.15.2" 1727 | eslint "^7.20.0" 1728 | eslint-config-prettier "^8.1.0" 1729 | eslint-plugin-import "^2.22.1" 1730 | eslint-plugin-jsx-a11y "^6.4.1" 1731 | eslint-plugin-prettier "^3.3.1" 1732 | eslint-plugin-react "^7.22.0" 1733 | eslint-plugin-react-hooks "^4.2.0" 1734 | prettier "^2.2.1" 1735 | 1736 | eslint-config-prettier@^8.1.0: 1737 | version "8.1.0" 1738 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz#4ef1eaf97afe5176e6a75ddfb57c335121abc5a6" 1739 | integrity sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw== 1740 | 1741 | eslint-import-resolver-node@^0.3.4: 1742 | version "0.3.4" 1743 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" 1744 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== 1745 | dependencies: 1746 | debug "^2.6.9" 1747 | resolve "^1.13.1" 1748 | 1749 | eslint-module-utils@^2.6.0: 1750 | version "2.6.0" 1751 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" 1752 | integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== 1753 | dependencies: 1754 | debug "^2.6.9" 1755 | pkg-dir "^2.0.0" 1756 | 1757 | eslint-plugin-import@^2.22.1: 1758 | version "2.22.1" 1759 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz#0896c7e6a0cf44109a2d97b95903c2bb689d7702" 1760 | integrity sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw== 1761 | dependencies: 1762 | array-includes "^3.1.1" 1763 | array.prototype.flat "^1.2.3" 1764 | contains-path "^0.1.0" 1765 | debug "^2.6.9" 1766 | doctrine "1.5.0" 1767 | eslint-import-resolver-node "^0.3.4" 1768 | eslint-module-utils "^2.6.0" 1769 | has "^1.0.3" 1770 | minimatch "^3.0.4" 1771 | object.values "^1.1.1" 1772 | read-pkg-up "^2.0.0" 1773 | resolve "^1.17.0" 1774 | tsconfig-paths "^3.9.0" 1775 | 1776 | eslint-plugin-jsx-a11y@^6.4.1: 1777 | version "6.4.1" 1778 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz#a2d84caa49756942f42f1ffab9002436391718fd" 1779 | integrity sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg== 1780 | dependencies: 1781 | "@babel/runtime" "^7.11.2" 1782 | aria-query "^4.2.2" 1783 | array-includes "^3.1.1" 1784 | ast-types-flow "^0.0.7" 1785 | axe-core "^4.0.2" 1786 | axobject-query "^2.2.0" 1787 | damerau-levenshtein "^1.0.6" 1788 | emoji-regex "^9.0.0" 1789 | has "^1.0.3" 1790 | jsx-ast-utils "^3.1.0" 1791 | language-tags "^1.0.5" 1792 | 1793 | eslint-plugin-prettier@^3.3.1: 1794 | version "3.3.1" 1795 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz#7079cfa2497078905011e6f82e8dd8453d1371b7" 1796 | integrity sha512-Rq3jkcFY8RYeQLgk2cCwuc0P7SEFwDravPhsJZOQ5N4YI4DSg50NyqJ/9gdZHzQlHf8MvafSesbNJCcP/FF6pQ== 1797 | dependencies: 1798 | prettier-linter-helpers "^1.0.0" 1799 | 1800 | eslint-plugin-react-hooks@^4.2.0: 1801 | version "4.2.0" 1802 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556" 1803 | integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ== 1804 | 1805 | eslint-plugin-react@^7.22.0: 1806 | version "7.22.0" 1807 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz#3d1c542d1d3169c45421c1215d9470e341707269" 1808 | integrity sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA== 1809 | dependencies: 1810 | array-includes "^3.1.1" 1811 | array.prototype.flatmap "^1.2.3" 1812 | doctrine "^2.1.0" 1813 | has "^1.0.3" 1814 | jsx-ast-utils "^2.4.1 || ^3.0.0" 1815 | object.entries "^1.1.2" 1816 | object.fromentries "^2.0.2" 1817 | object.values "^1.1.1" 1818 | prop-types "^15.7.2" 1819 | resolve "^1.18.1" 1820 | string.prototype.matchall "^4.0.2" 1821 | 1822 | eslint-scope@^5.0.0, eslint-scope@^5.1.1: 1823 | version "5.1.1" 1824 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 1825 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 1826 | dependencies: 1827 | esrecurse "^4.3.0" 1828 | estraverse "^4.1.1" 1829 | 1830 | eslint-utils@^2.0.0, eslint-utils@^2.1.0: 1831 | version "2.1.0" 1832 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 1833 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 1834 | dependencies: 1835 | eslint-visitor-keys "^1.1.0" 1836 | 1837 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 1838 | version "1.3.0" 1839 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 1840 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 1841 | 1842 | eslint-visitor-keys@^2.0.0: 1843 | version "2.0.0" 1844 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" 1845 | integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== 1846 | 1847 | eslint@^7.20.0: 1848 | version "7.22.0" 1849 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.22.0.tgz#07ecc61052fec63661a2cab6bd507127c07adc6f" 1850 | integrity sha512-3VawOtjSJUQiiqac8MQc+w457iGLfuNGLFn8JmF051tTKbh5/x/0vlcEj8OgDCaw7Ysa2Jn8paGshV7x2abKXg== 1851 | dependencies: 1852 | "@babel/code-frame" "7.12.11" 1853 | "@eslint/eslintrc" "^0.4.0" 1854 | ajv "^6.10.0" 1855 | chalk "^4.0.0" 1856 | cross-spawn "^7.0.2" 1857 | debug "^4.0.1" 1858 | doctrine "^3.0.0" 1859 | enquirer "^2.3.5" 1860 | eslint-scope "^5.1.1" 1861 | eslint-utils "^2.1.0" 1862 | eslint-visitor-keys "^2.0.0" 1863 | espree "^7.3.1" 1864 | esquery "^1.4.0" 1865 | esutils "^2.0.2" 1866 | file-entry-cache "^6.0.1" 1867 | functional-red-black-tree "^1.0.1" 1868 | glob-parent "^5.0.0" 1869 | globals "^13.6.0" 1870 | ignore "^4.0.6" 1871 | import-fresh "^3.0.0" 1872 | imurmurhash "^0.1.4" 1873 | is-glob "^4.0.0" 1874 | js-yaml "^3.13.1" 1875 | json-stable-stringify-without-jsonify "^1.0.1" 1876 | levn "^0.4.1" 1877 | lodash "^4.17.21" 1878 | minimatch "^3.0.4" 1879 | natural-compare "^1.4.0" 1880 | optionator "^0.9.1" 1881 | progress "^2.0.0" 1882 | regexpp "^3.1.0" 1883 | semver "^7.2.1" 1884 | strip-ansi "^6.0.0" 1885 | strip-json-comments "^3.1.0" 1886 | table "^6.0.4" 1887 | text-table "^0.2.0" 1888 | v8-compile-cache "^2.0.3" 1889 | 1890 | espree@^7.3.0, espree@^7.3.1: 1891 | version "7.3.1" 1892 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" 1893 | integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== 1894 | dependencies: 1895 | acorn "^7.4.0" 1896 | acorn-jsx "^5.3.1" 1897 | eslint-visitor-keys "^1.3.0" 1898 | 1899 | esprima@^4.0.0: 1900 | version "4.0.1" 1901 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1902 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1903 | 1904 | esquery@^1.4.0: 1905 | version "1.4.0" 1906 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 1907 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 1908 | dependencies: 1909 | estraverse "^5.1.0" 1910 | 1911 | esrecurse@^4.3.0: 1912 | version "4.3.0" 1913 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1914 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1915 | dependencies: 1916 | estraverse "^5.2.0" 1917 | 1918 | estraverse@^4.1.1: 1919 | version "4.3.0" 1920 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1921 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1922 | 1923 | estraverse@^5.1.0, estraverse@^5.2.0: 1924 | version "5.2.0" 1925 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 1926 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 1927 | 1928 | esutils@^2.0.2: 1929 | version "2.0.3" 1930 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1931 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1932 | 1933 | expand-brackets@^2.1.4: 1934 | version "2.1.4" 1935 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1936 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1937 | dependencies: 1938 | debug "^2.3.3" 1939 | define-property "^0.2.5" 1940 | extend-shallow "^2.0.1" 1941 | posix-character-classes "^0.1.0" 1942 | regex-not "^1.0.0" 1943 | snapdragon "^0.8.1" 1944 | to-regex "^3.0.1" 1945 | 1946 | extend-shallow@^2.0.1: 1947 | version "2.0.1" 1948 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1949 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1950 | dependencies: 1951 | is-extendable "^0.1.0" 1952 | 1953 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1954 | version "3.0.2" 1955 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1956 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1957 | dependencies: 1958 | assign-symbols "^1.0.0" 1959 | is-extendable "^1.0.1" 1960 | 1961 | extglob@^2.0.4: 1962 | version "2.0.4" 1963 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1964 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1965 | dependencies: 1966 | array-unique "^0.3.2" 1967 | define-property "^1.0.0" 1968 | expand-brackets "^2.1.4" 1969 | extend-shallow "^2.0.1" 1970 | fragment-cache "^0.2.1" 1971 | regex-not "^1.0.0" 1972 | snapdragon "^0.8.1" 1973 | to-regex "^3.0.1" 1974 | 1975 | fast-deep-equal@^3.1.1: 1976 | version "3.1.3" 1977 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1978 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1979 | 1980 | fast-diff@^1.1.2: 1981 | version "1.2.0" 1982 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 1983 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 1984 | 1985 | fast-glob@^3.1.1: 1986 | version "3.2.5" 1987 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661" 1988 | integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg== 1989 | dependencies: 1990 | "@nodelib/fs.stat" "^2.0.2" 1991 | "@nodelib/fs.walk" "^1.2.3" 1992 | glob-parent "^5.1.0" 1993 | merge2 "^1.3.0" 1994 | micromatch "^4.0.2" 1995 | picomatch "^2.2.1" 1996 | 1997 | fast-json-stable-stringify@^2.0.0: 1998 | version "2.1.0" 1999 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 2000 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 2001 | 2002 | fast-levenshtein@^2.0.6: 2003 | version "2.0.6" 2004 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 2005 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 2006 | 2007 | fastq@^1.6.0: 2008 | version "1.11.0" 2009 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858" 2010 | integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g== 2011 | dependencies: 2012 | reusify "^1.0.4" 2013 | 2014 | file-entry-cache@^6.0.1: 2015 | version "6.0.1" 2016 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 2017 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 2018 | dependencies: 2019 | flat-cache "^3.0.4" 2020 | 2021 | fill-range@^4.0.0: 2022 | version "4.0.0" 2023 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 2024 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 2025 | dependencies: 2026 | extend-shallow "^2.0.1" 2027 | is-number "^3.0.0" 2028 | repeat-string "^1.6.1" 2029 | to-regex-range "^2.1.0" 2030 | 2031 | fill-range@^7.0.1: 2032 | version "7.0.1" 2033 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 2034 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 2035 | dependencies: 2036 | to-regex-range "^5.0.1" 2037 | 2038 | find-up@^2.0.0, find-up@^2.1.0: 2039 | version "2.1.0" 2040 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 2041 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 2042 | dependencies: 2043 | locate-path "^2.0.0" 2044 | 2045 | flat-cache@^3.0.4: 2046 | version "3.0.4" 2047 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 2048 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 2049 | dependencies: 2050 | flatted "^3.1.0" 2051 | rimraf "^3.0.2" 2052 | 2053 | flatted@^3.1.0: 2054 | version "3.1.1" 2055 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469" 2056 | integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA== 2057 | 2058 | for-in@^1.0.2: 2059 | version "1.0.2" 2060 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 2061 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 2062 | 2063 | fragment-cache@^0.2.1: 2064 | version "0.2.1" 2065 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 2066 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 2067 | dependencies: 2068 | map-cache "^0.2.2" 2069 | 2070 | fs-readdir-recursive@^1.1.0: 2071 | version "1.1.0" 2072 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 2073 | integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== 2074 | 2075 | fs.realpath@^1.0.0: 2076 | version "1.0.0" 2077 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 2078 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 2079 | 2080 | fsevents@~2.3.1: 2081 | version "2.3.2" 2082 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 2083 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 2084 | 2085 | function-bind@^1.1.1: 2086 | version "1.1.1" 2087 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 2088 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 2089 | 2090 | functional-red-black-tree@^1.0.1: 2091 | version "1.0.1" 2092 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 2093 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 2094 | 2095 | gensync@^1.0.0-beta.2: 2096 | version "1.0.0-beta.2" 2097 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 2098 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 2099 | 2100 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 2101 | version "1.1.1" 2102 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 2103 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 2104 | dependencies: 2105 | function-bind "^1.1.1" 2106 | has "^1.0.3" 2107 | has-symbols "^1.0.1" 2108 | 2109 | get-value@^2.0.3, get-value@^2.0.6: 2110 | version "2.0.6" 2111 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 2112 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 2113 | 2114 | glob-parent@^3.1.0: 2115 | version "3.1.0" 2116 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 2117 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= 2118 | dependencies: 2119 | is-glob "^3.1.0" 2120 | path-dirname "^1.0.0" 2121 | 2122 | glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0: 2123 | version "5.1.2" 2124 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 2125 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 2126 | dependencies: 2127 | is-glob "^4.0.1" 2128 | 2129 | glob@^7.0.0, glob@^7.1.3: 2130 | version "7.1.6" 2131 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 2132 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 2133 | dependencies: 2134 | fs.realpath "^1.0.0" 2135 | inflight "^1.0.4" 2136 | inherits "2" 2137 | minimatch "^3.0.4" 2138 | once "^1.3.0" 2139 | path-is-absolute "^1.0.0" 2140 | 2141 | globals@^11.1.0: 2142 | version "11.12.0" 2143 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 2144 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 2145 | 2146 | globals@^12.1.0: 2147 | version "12.4.0" 2148 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 2149 | integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 2150 | dependencies: 2151 | type-fest "^0.8.1" 2152 | 2153 | globals@^13.6.0: 2154 | version "13.6.0" 2155 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.6.0.tgz#d77138e53738567bb96a3916ff6f6b487af20ef7" 2156 | integrity sha512-YFKCX0SiPg7l5oKYCJ2zZGxcXprVXHcSnVuvzrT3oSENQonVLqM5pf9fN5dLGZGyCjhw8TN8Btwe/jKnZ0pjvQ== 2157 | dependencies: 2158 | type-fest "^0.20.2" 2159 | 2160 | globby@^11.0.1: 2161 | version "11.0.2" 2162 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.2.tgz#1af538b766a3b540ebfb58a32b2e2d5897321d83" 2163 | integrity sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og== 2164 | dependencies: 2165 | array-union "^2.1.0" 2166 | dir-glob "^3.0.1" 2167 | fast-glob "^3.1.1" 2168 | ignore "^5.1.4" 2169 | merge2 "^1.3.0" 2170 | slash "^3.0.0" 2171 | 2172 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 2173 | version "4.2.6" 2174 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 2175 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 2176 | 2177 | has-bigints@^1.0.0: 2178 | version "1.0.1" 2179 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 2180 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 2181 | 2182 | has-flag@^3.0.0: 2183 | version "3.0.0" 2184 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 2185 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 2186 | 2187 | has-flag@^4.0.0: 2188 | version "4.0.0" 2189 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 2190 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 2191 | 2192 | has-symbols@^1.0.0, has-symbols@^1.0.1, has-symbols@^1.0.2: 2193 | version "1.0.2" 2194 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 2195 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 2196 | 2197 | has-value@^0.3.1: 2198 | version "0.3.1" 2199 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 2200 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 2201 | dependencies: 2202 | get-value "^2.0.3" 2203 | has-values "^0.1.4" 2204 | isobject "^2.0.0" 2205 | 2206 | has-value@^1.0.0: 2207 | version "1.0.0" 2208 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 2209 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 2210 | dependencies: 2211 | get-value "^2.0.6" 2212 | has-values "^1.0.0" 2213 | isobject "^3.0.0" 2214 | 2215 | has-values@^0.1.4: 2216 | version "0.1.4" 2217 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 2218 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 2219 | 2220 | has-values@^1.0.0: 2221 | version "1.0.0" 2222 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 2223 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 2224 | dependencies: 2225 | is-number "^3.0.0" 2226 | kind-of "^4.0.0" 2227 | 2228 | has@^1.0.3: 2229 | version "1.0.3" 2230 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 2231 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 2232 | dependencies: 2233 | function-bind "^1.1.1" 2234 | 2235 | hosted-git-info@^2.1.4: 2236 | version "2.8.9" 2237 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 2238 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 2239 | 2240 | ignore@^4.0.6: 2241 | version "4.0.6" 2242 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 2243 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 2244 | 2245 | ignore@^5.1.4: 2246 | version "5.1.8" 2247 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 2248 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 2249 | 2250 | import-fresh@^3.0.0, import-fresh@^3.2.1: 2251 | version "3.3.0" 2252 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 2253 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 2254 | dependencies: 2255 | parent-module "^1.0.0" 2256 | resolve-from "^4.0.0" 2257 | 2258 | imurmurhash@^0.1.4: 2259 | version "0.1.4" 2260 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2261 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 2262 | 2263 | inflight@^1.0.4: 2264 | version "1.0.6" 2265 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2266 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 2267 | dependencies: 2268 | once "^1.3.0" 2269 | wrappy "1" 2270 | 2271 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 2272 | version "2.0.4" 2273 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 2274 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 2275 | 2276 | internal-slot@^1.0.3: 2277 | version "1.0.3" 2278 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 2279 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 2280 | dependencies: 2281 | get-intrinsic "^1.1.0" 2282 | has "^1.0.3" 2283 | side-channel "^1.0.4" 2284 | 2285 | is-accessor-descriptor@^0.1.6: 2286 | version "0.1.6" 2287 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 2288 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 2289 | dependencies: 2290 | kind-of "^3.0.2" 2291 | 2292 | is-accessor-descriptor@^1.0.0: 2293 | version "1.0.0" 2294 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 2295 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 2296 | dependencies: 2297 | kind-of "^6.0.0" 2298 | 2299 | is-arrayish@^0.2.1: 2300 | version "0.2.1" 2301 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2302 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 2303 | 2304 | is-bigint@^1.0.1: 2305 | version "1.0.1" 2306 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2" 2307 | integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== 2308 | 2309 | is-binary-path@^1.0.0: 2310 | version "1.0.1" 2311 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2312 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 2313 | dependencies: 2314 | binary-extensions "^1.0.0" 2315 | 2316 | is-binary-path@~2.1.0: 2317 | version "2.1.0" 2318 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 2319 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 2320 | dependencies: 2321 | binary-extensions "^2.0.0" 2322 | 2323 | is-boolean-object@^1.1.0: 2324 | version "1.1.0" 2325 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0" 2326 | integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== 2327 | dependencies: 2328 | call-bind "^1.0.0" 2329 | 2330 | is-buffer@^1.1.5: 2331 | version "1.1.6" 2332 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2333 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 2334 | 2335 | is-callable@^1.1.4, is-callable@^1.2.3: 2336 | version "1.2.3" 2337 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" 2338 | integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== 2339 | 2340 | is-core-module@^2.2.0: 2341 | version "2.2.0" 2342 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 2343 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 2344 | dependencies: 2345 | has "^1.0.3" 2346 | 2347 | is-data-descriptor@^0.1.4: 2348 | version "0.1.4" 2349 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2350 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 2351 | dependencies: 2352 | kind-of "^3.0.2" 2353 | 2354 | is-data-descriptor@^1.0.0: 2355 | version "1.0.0" 2356 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2357 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 2358 | dependencies: 2359 | kind-of "^6.0.0" 2360 | 2361 | is-date-object@^1.0.1: 2362 | version "1.0.2" 2363 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 2364 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 2365 | 2366 | is-descriptor@^0.1.0: 2367 | version "0.1.6" 2368 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2369 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 2370 | dependencies: 2371 | is-accessor-descriptor "^0.1.6" 2372 | is-data-descriptor "^0.1.4" 2373 | kind-of "^5.0.0" 2374 | 2375 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2376 | version "1.0.2" 2377 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2378 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 2379 | dependencies: 2380 | is-accessor-descriptor "^1.0.0" 2381 | is-data-descriptor "^1.0.0" 2382 | kind-of "^6.0.2" 2383 | 2384 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2385 | version "0.1.1" 2386 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2387 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 2388 | 2389 | is-extendable@^1.0.1: 2390 | version "1.0.1" 2391 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2392 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 2393 | dependencies: 2394 | is-plain-object "^2.0.4" 2395 | 2396 | is-extglob@^2.1.0, is-extglob@^2.1.1: 2397 | version "2.1.1" 2398 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2399 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 2400 | 2401 | is-fullwidth-code-point@^3.0.0: 2402 | version "3.0.0" 2403 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 2404 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 2405 | 2406 | is-glob@^3.1.0: 2407 | version "3.1.0" 2408 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 2409 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= 2410 | dependencies: 2411 | is-extglob "^2.1.0" 2412 | 2413 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: 2414 | version "4.0.1" 2415 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 2416 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 2417 | dependencies: 2418 | is-extglob "^2.1.1" 2419 | 2420 | is-negative-zero@^2.0.1: 2421 | version "2.0.1" 2422 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" 2423 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 2424 | 2425 | is-number-object@^1.0.4: 2426 | version "1.0.4" 2427 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" 2428 | integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== 2429 | 2430 | is-number@^3.0.0: 2431 | version "3.0.0" 2432 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2433 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 2434 | dependencies: 2435 | kind-of "^3.0.2" 2436 | 2437 | is-number@^7.0.0: 2438 | version "7.0.0" 2439 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 2440 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 2441 | 2442 | is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2443 | version "2.0.4" 2444 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2445 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 2446 | dependencies: 2447 | isobject "^3.0.1" 2448 | 2449 | is-regex@^1.1.2: 2450 | version "1.1.2" 2451 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251" 2452 | integrity sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg== 2453 | dependencies: 2454 | call-bind "^1.0.2" 2455 | has-symbols "^1.0.1" 2456 | 2457 | is-string@^1.0.5: 2458 | version "1.0.5" 2459 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 2460 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 2461 | 2462 | is-symbol@^1.0.2, is-symbol@^1.0.3: 2463 | version "1.0.3" 2464 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 2465 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 2466 | dependencies: 2467 | has-symbols "^1.0.1" 2468 | 2469 | is-windows@^1.0.2: 2470 | version "1.0.2" 2471 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2472 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 2473 | 2474 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2475 | version "1.0.0" 2476 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2477 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 2478 | 2479 | isexe@^2.0.0: 2480 | version "2.0.0" 2481 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2482 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2483 | 2484 | isobject@^2.0.0: 2485 | version "2.1.0" 2486 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2487 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 2488 | dependencies: 2489 | isarray "1.0.0" 2490 | 2491 | isobject@^3.0.0, isobject@^3.0.1: 2492 | version "3.0.1" 2493 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2494 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 2495 | 2496 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2497 | version "4.0.0" 2498 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2499 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2500 | 2501 | js-yaml@^3.13.1: 2502 | version "3.14.1" 2503 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 2504 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 2505 | dependencies: 2506 | argparse "^1.0.7" 2507 | esprima "^4.0.0" 2508 | 2509 | jsesc@^2.5.1: 2510 | version "2.5.2" 2511 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2512 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2513 | 2514 | jsesc@~0.5.0: 2515 | version "0.5.0" 2516 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2517 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2518 | 2519 | json-schema-traverse@^0.4.1: 2520 | version "0.4.1" 2521 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2522 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 2523 | 2524 | json-schema-traverse@^1.0.0: 2525 | version "1.0.0" 2526 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" 2527 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== 2528 | 2529 | json-stable-stringify-without-jsonify@^1.0.1: 2530 | version "1.0.1" 2531 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2532 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 2533 | 2534 | json5@^1.0.1: 2535 | version "1.0.1" 2536 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 2537 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 2538 | dependencies: 2539 | minimist "^1.2.0" 2540 | 2541 | json5@^2.1.2: 2542 | version "2.2.0" 2543 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 2544 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 2545 | dependencies: 2546 | minimist "^1.2.5" 2547 | 2548 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0: 2549 | version "3.2.0" 2550 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82" 2551 | integrity sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q== 2552 | dependencies: 2553 | array-includes "^3.1.2" 2554 | object.assign "^4.1.2" 2555 | 2556 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2557 | version "3.2.2" 2558 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2559 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 2560 | dependencies: 2561 | is-buffer "^1.1.5" 2562 | 2563 | kind-of@^4.0.0: 2564 | version "4.0.0" 2565 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2566 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 2567 | dependencies: 2568 | is-buffer "^1.1.5" 2569 | 2570 | kind-of@^5.0.0: 2571 | version "5.1.0" 2572 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2573 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 2574 | 2575 | kind-of@^6.0.0, kind-of@^6.0.2: 2576 | version "6.0.3" 2577 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 2578 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 2579 | 2580 | language-subtag-registry@~0.3.2: 2581 | version "0.3.21" 2582 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" 2583 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== 2584 | 2585 | language-tags@^1.0.5: 2586 | version "1.0.5" 2587 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 2588 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo= 2589 | dependencies: 2590 | language-subtag-registry "~0.3.2" 2591 | 2592 | levn@^0.4.1: 2593 | version "0.4.1" 2594 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 2595 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 2596 | dependencies: 2597 | prelude-ls "^1.2.1" 2598 | type-check "~0.4.0" 2599 | 2600 | load-json-file@^2.0.0: 2601 | version "2.0.0" 2602 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2603 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 2604 | dependencies: 2605 | graceful-fs "^4.1.2" 2606 | parse-json "^2.2.0" 2607 | pify "^2.0.0" 2608 | strip-bom "^3.0.0" 2609 | 2610 | locate-path@^2.0.0: 2611 | version "2.0.0" 2612 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2613 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 2614 | dependencies: 2615 | p-locate "^2.0.0" 2616 | path-exists "^3.0.0" 2617 | 2618 | lodash.debounce@^4.0.8: 2619 | version "4.0.8" 2620 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2621 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= 2622 | 2623 | lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21: 2624 | version "4.17.21" 2625 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2626 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 2627 | 2628 | loose-envify@^1.1.0, loose-envify@^1.4.0: 2629 | version "1.4.0" 2630 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2631 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2632 | dependencies: 2633 | js-tokens "^3.0.0 || ^4.0.0" 2634 | 2635 | lru-cache@^6.0.0: 2636 | version "6.0.0" 2637 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 2638 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2639 | dependencies: 2640 | yallist "^4.0.0" 2641 | 2642 | make-dir@^2.1.0: 2643 | version "2.1.0" 2644 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" 2645 | integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== 2646 | dependencies: 2647 | pify "^4.0.1" 2648 | semver "^5.6.0" 2649 | 2650 | map-cache@^0.2.2: 2651 | version "0.2.2" 2652 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2653 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2654 | 2655 | map-visit@^1.0.0: 2656 | version "1.0.0" 2657 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2658 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2659 | dependencies: 2660 | object-visit "^1.0.0" 2661 | 2662 | merge2@^1.3.0: 2663 | version "1.4.1" 2664 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 2665 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 2666 | 2667 | micromatch@^3.1.10, micromatch@^3.1.4: 2668 | version "3.1.10" 2669 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2670 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2671 | dependencies: 2672 | arr-diff "^4.0.0" 2673 | array-unique "^0.3.2" 2674 | braces "^2.3.1" 2675 | define-property "^2.0.2" 2676 | extend-shallow "^3.0.2" 2677 | extglob "^2.0.4" 2678 | fragment-cache "^0.2.1" 2679 | kind-of "^6.0.2" 2680 | nanomatch "^1.2.9" 2681 | object.pick "^1.3.0" 2682 | regex-not "^1.0.0" 2683 | snapdragon "^0.8.1" 2684 | to-regex "^3.0.2" 2685 | 2686 | micromatch@^4.0.2: 2687 | version "4.0.2" 2688 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 2689 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 2690 | dependencies: 2691 | braces "^3.0.1" 2692 | picomatch "^2.0.5" 2693 | 2694 | minimatch@^3.0.4: 2695 | version "3.1.2" 2696 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 2697 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 2698 | dependencies: 2699 | brace-expansion "^1.1.7" 2700 | 2701 | minimist@^1.2.0, minimist@^1.2.5: 2702 | version "1.2.6" 2703 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 2704 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 2705 | 2706 | mixin-deep@^1.2.0: 2707 | version "1.3.2" 2708 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2709 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== 2710 | dependencies: 2711 | for-in "^1.0.2" 2712 | is-extendable "^1.0.1" 2713 | 2714 | ms@2.0.0: 2715 | version "2.0.0" 2716 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2717 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2718 | 2719 | ms@2.1.2: 2720 | version "2.1.2" 2721 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2722 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2723 | 2724 | nanomatch@^1.2.9: 2725 | version "1.2.13" 2726 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2727 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 2728 | dependencies: 2729 | arr-diff "^4.0.0" 2730 | array-unique "^0.3.2" 2731 | define-property "^2.0.2" 2732 | extend-shallow "^3.0.2" 2733 | fragment-cache "^0.2.1" 2734 | is-windows "^1.0.2" 2735 | kind-of "^6.0.2" 2736 | object.pick "^1.3.0" 2737 | regex-not "^1.0.0" 2738 | snapdragon "^0.8.1" 2739 | to-regex "^3.0.1" 2740 | 2741 | natural-compare@^1.4.0: 2742 | version "1.4.0" 2743 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2744 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2745 | 2746 | node-releases@^1.1.71: 2747 | version "1.1.72" 2748 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe" 2749 | integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw== 2750 | 2751 | normalize-package-data@^2.3.2: 2752 | version "2.5.0" 2753 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 2754 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 2755 | dependencies: 2756 | hosted-git-info "^2.1.4" 2757 | resolve "^1.10.0" 2758 | semver "2 || 3 || 4 || 5" 2759 | validate-npm-package-license "^3.0.1" 2760 | 2761 | normalize-path@^2.1.1: 2762 | version "2.1.1" 2763 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2764 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2765 | dependencies: 2766 | remove-trailing-separator "^1.0.1" 2767 | 2768 | normalize-path@^3.0.0, normalize-path@~3.0.0: 2769 | version "3.0.0" 2770 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2771 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2772 | 2773 | object-assign@^4.1.1: 2774 | version "4.1.1" 2775 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2776 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2777 | 2778 | object-copy@^0.1.0: 2779 | version "0.1.0" 2780 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2781 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2782 | dependencies: 2783 | copy-descriptor "^0.1.0" 2784 | define-property "^0.2.5" 2785 | kind-of "^3.0.3" 2786 | 2787 | object-inspect@^1.9.0: 2788 | version "1.9.0" 2789 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" 2790 | integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== 2791 | 2792 | object-keys@^1.0.12, object-keys@^1.1.1: 2793 | version "1.1.1" 2794 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2795 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2796 | 2797 | object-visit@^1.0.0: 2798 | version "1.0.1" 2799 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2800 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2801 | dependencies: 2802 | isobject "^3.0.0" 2803 | 2804 | object.assign@^4.1.0, object.assign@^4.1.2: 2805 | version "4.1.2" 2806 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 2807 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 2808 | dependencies: 2809 | call-bind "^1.0.0" 2810 | define-properties "^1.1.3" 2811 | has-symbols "^1.0.1" 2812 | object-keys "^1.1.1" 2813 | 2814 | object.entries@^1.1.2: 2815 | version "1.1.3" 2816 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz#c601c7f168b62374541a07ddbd3e2d5e4f7711a6" 2817 | integrity sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg== 2818 | dependencies: 2819 | call-bind "^1.0.0" 2820 | define-properties "^1.1.3" 2821 | es-abstract "^1.18.0-next.1" 2822 | has "^1.0.3" 2823 | 2824 | object.fromentries@^2.0.2: 2825 | version "2.0.4" 2826 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8" 2827 | integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ== 2828 | dependencies: 2829 | call-bind "^1.0.2" 2830 | define-properties "^1.1.3" 2831 | es-abstract "^1.18.0-next.2" 2832 | has "^1.0.3" 2833 | 2834 | object.pick@^1.3.0: 2835 | version "1.3.0" 2836 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2837 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2838 | dependencies: 2839 | isobject "^3.0.1" 2840 | 2841 | object.values@^1.1.1: 2842 | version "1.1.3" 2843 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.3.tgz#eaa8b1e17589f02f698db093f7c62ee1699742ee" 2844 | integrity sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw== 2845 | dependencies: 2846 | call-bind "^1.0.2" 2847 | define-properties "^1.1.3" 2848 | es-abstract "^1.18.0-next.2" 2849 | has "^1.0.3" 2850 | 2851 | once@^1.3.0: 2852 | version "1.4.0" 2853 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2854 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2855 | dependencies: 2856 | wrappy "1" 2857 | 2858 | optionator@^0.9.1: 2859 | version "0.9.1" 2860 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 2861 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 2862 | dependencies: 2863 | deep-is "^0.1.3" 2864 | fast-levenshtein "^2.0.6" 2865 | levn "^0.4.1" 2866 | prelude-ls "^1.2.1" 2867 | type-check "^0.4.0" 2868 | word-wrap "^1.2.3" 2869 | 2870 | p-limit@^1.1.0: 2871 | version "1.3.0" 2872 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2873 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 2874 | dependencies: 2875 | p-try "^1.0.0" 2876 | 2877 | p-locate@^2.0.0: 2878 | version "2.0.0" 2879 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2880 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 2881 | dependencies: 2882 | p-limit "^1.1.0" 2883 | 2884 | p-try@^1.0.0: 2885 | version "1.0.0" 2886 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2887 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 2888 | 2889 | parent-module@^1.0.0: 2890 | version "1.0.1" 2891 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2892 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2893 | dependencies: 2894 | callsites "^3.0.0" 2895 | 2896 | parse-json@^2.2.0: 2897 | version "2.2.0" 2898 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2899 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 2900 | dependencies: 2901 | error-ex "^1.2.0" 2902 | 2903 | pascalcase@^0.1.1: 2904 | version "0.1.1" 2905 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2906 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2907 | 2908 | path-dirname@^1.0.0: 2909 | version "1.0.2" 2910 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2911 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= 2912 | 2913 | path-exists@^3.0.0: 2914 | version "3.0.0" 2915 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2916 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 2917 | 2918 | path-is-absolute@^1.0.0: 2919 | version "1.0.1" 2920 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2921 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2922 | 2923 | path-key@^3.1.0: 2924 | version "3.1.1" 2925 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2926 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2927 | 2928 | path-parse@^1.0.6: 2929 | version "1.0.7" 2930 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2931 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2932 | 2933 | path-type@^2.0.0: 2934 | version "2.0.0" 2935 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2936 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 2937 | dependencies: 2938 | pify "^2.0.0" 2939 | 2940 | path-type@^4.0.0: 2941 | version "4.0.0" 2942 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 2943 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2944 | 2945 | picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: 2946 | version "2.2.2" 2947 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 2948 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 2949 | 2950 | pify@^2.0.0: 2951 | version "2.3.0" 2952 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2953 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 2954 | 2955 | pify@^4.0.1: 2956 | version "4.0.1" 2957 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 2958 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 2959 | 2960 | pkg-dir@^2.0.0: 2961 | version "2.0.0" 2962 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2963 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 2964 | dependencies: 2965 | find-up "^2.1.0" 2966 | 2967 | posix-character-classes@^0.1.0: 2968 | version "0.1.1" 2969 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2970 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2971 | 2972 | prelude-ls@^1.2.1: 2973 | version "1.2.1" 2974 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 2975 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2976 | 2977 | prettier-linter-helpers@^1.0.0: 2978 | version "1.0.0" 2979 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 2980 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 2981 | dependencies: 2982 | fast-diff "^1.1.2" 2983 | 2984 | prettier@^2.2.1: 2985 | version "2.2.1" 2986 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" 2987 | integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== 2988 | 2989 | process-nextick-args@~2.0.0: 2990 | version "2.0.1" 2991 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 2992 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 2993 | 2994 | progress@^2.0.0: 2995 | version "2.0.3" 2996 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 2997 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 2998 | 2999 | prop-types@^15.6.2, prop-types@^15.7.2: 3000 | version "15.7.2" 3001 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 3002 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 3003 | dependencies: 3004 | loose-envify "^1.4.0" 3005 | object-assign "^4.1.1" 3006 | react-is "^16.8.1" 3007 | 3008 | punycode@^2.1.0: 3009 | version "2.1.1" 3010 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 3011 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 3012 | 3013 | queue-microtask@^1.2.2: 3014 | version "1.2.2" 3015 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.2.tgz#abf64491e6ecf0f38a6502403d4cda04f372dfd3" 3016 | integrity sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg== 3017 | 3018 | react-is@^16.8.1: 3019 | version "16.13.1" 3020 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 3021 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 3022 | 3023 | react@^16.13.1: 3024 | version "16.14.0" 3025 | resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d" 3026 | integrity sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g== 3027 | dependencies: 3028 | loose-envify "^1.1.0" 3029 | object-assign "^4.1.1" 3030 | prop-types "^15.6.2" 3031 | 3032 | read-pkg-up@^2.0.0: 3033 | version "2.0.0" 3034 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3035 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 3036 | dependencies: 3037 | find-up "^2.0.0" 3038 | read-pkg "^2.0.0" 3039 | 3040 | read-pkg@^2.0.0: 3041 | version "2.0.0" 3042 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3043 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 3044 | dependencies: 3045 | load-json-file "^2.0.0" 3046 | normalize-package-data "^2.3.2" 3047 | path-type "^2.0.0" 3048 | 3049 | readable-stream@^2.0.2: 3050 | version "2.3.7" 3051 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 3052 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 3053 | dependencies: 3054 | core-util-is "~1.0.0" 3055 | inherits "~2.0.3" 3056 | isarray "~1.0.0" 3057 | process-nextick-args "~2.0.0" 3058 | safe-buffer "~5.1.1" 3059 | string_decoder "~1.1.1" 3060 | util-deprecate "~1.0.1" 3061 | 3062 | readdirp@^2.2.1: 3063 | version "2.2.1" 3064 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 3065 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== 3066 | dependencies: 3067 | graceful-fs "^4.1.11" 3068 | micromatch "^3.1.10" 3069 | readable-stream "^2.0.2" 3070 | 3071 | readdirp@~3.5.0: 3072 | version "3.5.0" 3073 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" 3074 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== 3075 | dependencies: 3076 | picomatch "^2.2.1" 3077 | 3078 | regenerate-unicode-properties@^8.2.0: 3079 | version "8.2.0" 3080 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" 3081 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== 3082 | dependencies: 3083 | regenerate "^1.4.0" 3084 | 3085 | regenerate@^1.4.0: 3086 | version "1.4.2" 3087 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 3088 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 3089 | 3090 | regenerator-runtime@^0.13.4: 3091 | version "0.13.7" 3092 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 3093 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 3094 | 3095 | regenerator-transform@^0.14.2: 3096 | version "0.14.5" 3097 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" 3098 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== 3099 | dependencies: 3100 | "@babel/runtime" "^7.8.4" 3101 | 3102 | regex-not@^1.0.0, regex-not@^1.0.2: 3103 | version "1.0.2" 3104 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3105 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 3106 | dependencies: 3107 | extend-shallow "^3.0.2" 3108 | safe-regex "^1.1.0" 3109 | 3110 | regexp.prototype.flags@^1.3.1: 3111 | version "1.3.1" 3112 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" 3113 | integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== 3114 | dependencies: 3115 | call-bind "^1.0.2" 3116 | define-properties "^1.1.3" 3117 | 3118 | regexpp@^3.0.0, regexpp@^3.1.0: 3119 | version "3.1.0" 3120 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 3121 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 3122 | 3123 | regexpu-core@^4.7.1: 3124 | version "4.7.1" 3125 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6" 3126 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ== 3127 | dependencies: 3128 | regenerate "^1.4.0" 3129 | regenerate-unicode-properties "^8.2.0" 3130 | regjsgen "^0.5.1" 3131 | regjsparser "^0.6.4" 3132 | unicode-match-property-ecmascript "^1.0.4" 3133 | unicode-match-property-value-ecmascript "^1.2.0" 3134 | 3135 | regjsgen@^0.5.1: 3136 | version "0.5.2" 3137 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" 3138 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== 3139 | 3140 | regjsparser@^0.6.4: 3141 | version "0.6.7" 3142 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.7.tgz#c00164e1e6713c2e3ee641f1701c4b7aa0a7f86c" 3143 | integrity sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ== 3144 | dependencies: 3145 | jsesc "~0.5.0" 3146 | 3147 | remove-trailing-separator@^1.0.1: 3148 | version "1.1.0" 3149 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3150 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 3151 | 3152 | repeat-element@^1.1.2: 3153 | version "1.1.3" 3154 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 3155 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 3156 | 3157 | repeat-string@^1.6.1: 3158 | version "1.6.1" 3159 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3160 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 3161 | 3162 | require-from-string@^2.0.2: 3163 | version "2.0.2" 3164 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 3165 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 3166 | 3167 | resolve-from@^4.0.0: 3168 | version "4.0.0" 3169 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 3170 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 3171 | 3172 | resolve-url@^0.2.1: 3173 | version "0.2.1" 3174 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3175 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 3176 | 3177 | resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.18.1: 3178 | version "1.20.0" 3179 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 3180 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 3181 | dependencies: 3182 | is-core-module "^2.2.0" 3183 | path-parse "^1.0.6" 3184 | 3185 | ret@~0.1.10: 3186 | version "0.1.15" 3187 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3188 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 3189 | 3190 | reusify@^1.0.4: 3191 | version "1.0.4" 3192 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 3193 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 3194 | 3195 | rimraf@^3.0.2: 3196 | version "3.0.2" 3197 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 3198 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 3199 | dependencies: 3200 | glob "^7.1.3" 3201 | 3202 | run-parallel@^1.1.9: 3203 | version "1.2.0" 3204 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 3205 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 3206 | dependencies: 3207 | queue-microtask "^1.2.2" 3208 | 3209 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3210 | version "5.1.2" 3211 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3212 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 3213 | 3214 | safe-regex@^1.1.0: 3215 | version "1.1.0" 3216 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3217 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 3218 | dependencies: 3219 | ret "~0.1.10" 3220 | 3221 | "semver@2 || 3 || 4 || 5", semver@^5.6.0: 3222 | version "5.7.1" 3223 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 3224 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 3225 | 3226 | semver@7.0.0: 3227 | version "7.0.0" 3228 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 3229 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 3230 | 3231 | semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: 3232 | version "6.3.0" 3233 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 3234 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 3235 | 3236 | semver@^7.2.1, semver@^7.3.2: 3237 | version "7.3.4" 3238 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" 3239 | integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== 3240 | dependencies: 3241 | lru-cache "^6.0.0" 3242 | 3243 | set-value@^2.0.0, set-value@^2.0.1: 3244 | version "2.0.1" 3245 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 3246 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== 3247 | dependencies: 3248 | extend-shallow "^2.0.1" 3249 | is-extendable "^0.1.1" 3250 | is-plain-object "^2.0.3" 3251 | split-string "^3.0.1" 3252 | 3253 | shebang-command@^2.0.0: 3254 | version "2.0.0" 3255 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 3256 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 3257 | dependencies: 3258 | shebang-regex "^3.0.0" 3259 | 3260 | shebang-regex@^3.0.0: 3261 | version "3.0.0" 3262 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 3263 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 3264 | 3265 | side-channel@^1.0.4: 3266 | version "1.0.4" 3267 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 3268 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 3269 | dependencies: 3270 | call-bind "^1.0.0" 3271 | get-intrinsic "^1.0.2" 3272 | object-inspect "^1.9.0" 3273 | 3274 | slash@^2.0.0: 3275 | version "2.0.0" 3276 | resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 3277 | integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== 3278 | 3279 | slash@^3.0.0: 3280 | version "3.0.0" 3281 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 3282 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3283 | 3284 | slice-ansi@^4.0.0: 3285 | version "4.0.0" 3286 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 3287 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 3288 | dependencies: 3289 | ansi-styles "^4.0.0" 3290 | astral-regex "^2.0.0" 3291 | is-fullwidth-code-point "^3.0.0" 3292 | 3293 | snapdragon-node@^2.0.1: 3294 | version "2.1.1" 3295 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3296 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 3297 | dependencies: 3298 | define-property "^1.0.0" 3299 | isobject "^3.0.0" 3300 | snapdragon-util "^3.0.1" 3301 | 3302 | snapdragon-util@^3.0.1: 3303 | version "3.0.1" 3304 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3305 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 3306 | dependencies: 3307 | kind-of "^3.2.0" 3308 | 3309 | snapdragon@^0.8.1: 3310 | version "0.8.2" 3311 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3312 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 3313 | dependencies: 3314 | base "^0.11.1" 3315 | debug "^2.2.0" 3316 | define-property "^0.2.5" 3317 | extend-shallow "^2.0.1" 3318 | map-cache "^0.2.2" 3319 | source-map "^0.5.6" 3320 | source-map-resolve "^0.5.0" 3321 | use "^3.1.0" 3322 | 3323 | source-map-resolve@^0.5.0: 3324 | version "0.5.3" 3325 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" 3326 | integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== 3327 | dependencies: 3328 | atob "^2.1.2" 3329 | decode-uri-component "^0.2.0" 3330 | resolve-url "^0.2.1" 3331 | source-map-url "^0.4.0" 3332 | urix "^0.1.0" 3333 | 3334 | source-map-url@^0.4.0: 3335 | version "0.4.1" 3336 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" 3337 | integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== 3338 | 3339 | source-map@^0.5.0, source-map@^0.5.6: 3340 | version "0.5.7" 3341 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3342 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3343 | 3344 | spdx-correct@^3.0.0: 3345 | version "3.1.1" 3346 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 3347 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 3348 | dependencies: 3349 | spdx-expression-parse "^3.0.0" 3350 | spdx-license-ids "^3.0.0" 3351 | 3352 | spdx-exceptions@^2.1.0: 3353 | version "2.3.0" 3354 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 3355 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 3356 | 3357 | spdx-expression-parse@^3.0.0: 3358 | version "3.0.1" 3359 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 3360 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 3361 | dependencies: 3362 | spdx-exceptions "^2.1.0" 3363 | spdx-license-ids "^3.0.0" 3364 | 3365 | spdx-license-ids@^3.0.0: 3366 | version "3.0.7" 3367 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" 3368 | integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== 3369 | 3370 | split-string@^3.0.1, split-string@^3.0.2: 3371 | version "3.1.0" 3372 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3373 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 3374 | dependencies: 3375 | extend-shallow "^3.0.0" 3376 | 3377 | sprintf-js@~1.0.2: 3378 | version "1.0.3" 3379 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3380 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3381 | 3382 | static-extend@^0.1.1: 3383 | version "0.1.2" 3384 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3385 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 3386 | dependencies: 3387 | define-property "^0.2.5" 3388 | object-copy "^0.1.0" 3389 | 3390 | string-width@^4.2.0: 3391 | version "4.2.2" 3392 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 3393 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 3394 | dependencies: 3395 | emoji-regex "^8.0.0" 3396 | is-fullwidth-code-point "^3.0.0" 3397 | strip-ansi "^6.0.0" 3398 | 3399 | string.prototype.matchall@^4.0.2: 3400 | version "4.0.4" 3401 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz#608f255e93e072107f5de066f81a2dfb78cf6b29" 3402 | integrity sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ== 3403 | dependencies: 3404 | call-bind "^1.0.2" 3405 | define-properties "^1.1.3" 3406 | es-abstract "^1.18.0-next.2" 3407 | has-symbols "^1.0.1" 3408 | internal-slot "^1.0.3" 3409 | regexp.prototype.flags "^1.3.1" 3410 | side-channel "^1.0.4" 3411 | 3412 | string.prototype.trimend@^1.0.4: 3413 | version "1.0.4" 3414 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 3415 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 3416 | dependencies: 3417 | call-bind "^1.0.2" 3418 | define-properties "^1.1.3" 3419 | 3420 | string.prototype.trimstart@^1.0.4: 3421 | version "1.0.4" 3422 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 3423 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 3424 | dependencies: 3425 | call-bind "^1.0.2" 3426 | define-properties "^1.1.3" 3427 | 3428 | string_decoder@~1.1.1: 3429 | version "1.1.1" 3430 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3431 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 3432 | dependencies: 3433 | safe-buffer "~5.1.0" 3434 | 3435 | strip-ansi@^6.0.0: 3436 | version "6.0.0" 3437 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 3438 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 3439 | dependencies: 3440 | ansi-regex "^5.0.0" 3441 | 3442 | strip-bom@^3.0.0: 3443 | version "3.0.0" 3444 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3445 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 3446 | 3447 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 3448 | version "3.1.1" 3449 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 3450 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 3451 | 3452 | supports-color@^5.3.0: 3453 | version "5.5.0" 3454 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3455 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3456 | dependencies: 3457 | has-flag "^3.0.0" 3458 | 3459 | supports-color@^7.1.0: 3460 | version "7.2.0" 3461 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 3462 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3463 | dependencies: 3464 | has-flag "^4.0.0" 3465 | 3466 | table@^6.0.4: 3467 | version "6.0.7" 3468 | resolved "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz#e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34" 3469 | integrity sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g== 3470 | dependencies: 3471 | ajv "^7.0.2" 3472 | lodash "^4.17.20" 3473 | slice-ansi "^4.0.0" 3474 | string-width "^4.2.0" 3475 | 3476 | text-table@^0.2.0: 3477 | version "0.2.0" 3478 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3479 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 3480 | 3481 | to-fast-properties@^2.0.0: 3482 | version "2.0.0" 3483 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3484 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3485 | 3486 | to-object-path@^0.3.0: 3487 | version "0.3.0" 3488 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3489 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3490 | dependencies: 3491 | kind-of "^3.0.2" 3492 | 3493 | to-regex-range@^2.1.0: 3494 | version "2.1.1" 3495 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3496 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3497 | dependencies: 3498 | is-number "^3.0.0" 3499 | repeat-string "^1.6.1" 3500 | 3501 | to-regex-range@^5.0.1: 3502 | version "5.0.1" 3503 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3504 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3505 | dependencies: 3506 | is-number "^7.0.0" 3507 | 3508 | to-regex@^3.0.1, to-regex@^3.0.2: 3509 | version "3.0.2" 3510 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3511 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 3512 | dependencies: 3513 | define-property "^2.0.2" 3514 | extend-shallow "^3.0.2" 3515 | regex-not "^1.0.2" 3516 | safe-regex "^1.1.0" 3517 | 3518 | tsconfig-paths@^3.9.0: 3519 | version "3.9.0" 3520 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" 3521 | integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== 3522 | dependencies: 3523 | "@types/json5" "^0.0.29" 3524 | json5 "^1.0.1" 3525 | minimist "^1.2.0" 3526 | strip-bom "^3.0.0" 3527 | 3528 | tslib@^1.8.1: 3529 | version "1.14.1" 3530 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 3531 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 3532 | 3533 | tsutils@^3.17.1: 3534 | version "3.21.0" 3535 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 3536 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 3537 | dependencies: 3538 | tslib "^1.8.1" 3539 | 3540 | type-check@^0.4.0, type-check@~0.4.0: 3541 | version "0.4.0" 3542 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 3543 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 3544 | dependencies: 3545 | prelude-ls "^1.2.1" 3546 | 3547 | type-fest@^0.20.2: 3548 | version "0.20.2" 3549 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 3550 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 3551 | 3552 | type-fest@^0.8.1: 3553 | version "0.8.1" 3554 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 3555 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 3556 | 3557 | typescript@^3.9.7: 3558 | version "3.9.9" 3559 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.9.tgz#e69905c54bc0681d0518bd4d587cc6f2d0b1a674" 3560 | integrity sha512-kdMjTiekY+z/ubJCATUPlRDl39vXYiMV9iyeMuEuXZh2we6zz80uovNN2WlAxmmdE/Z/YQe+EbOEXB5RHEED3w== 3561 | 3562 | unbox-primitive@^1.0.0: 3563 | version "1.0.0" 3564 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.0.tgz#eeacbc4affa28e9b3d36b5eaeccc50b3251b1d3f" 3565 | integrity sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA== 3566 | dependencies: 3567 | function-bind "^1.1.1" 3568 | has-bigints "^1.0.0" 3569 | has-symbols "^1.0.0" 3570 | which-boxed-primitive "^1.0.1" 3571 | 3572 | unicode-canonical-property-names-ecmascript@^1.0.4: 3573 | version "1.0.4" 3574 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 3575 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 3576 | 3577 | unicode-match-property-ecmascript@^1.0.4: 3578 | version "1.0.4" 3579 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 3580 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 3581 | dependencies: 3582 | unicode-canonical-property-names-ecmascript "^1.0.4" 3583 | unicode-property-aliases-ecmascript "^1.0.4" 3584 | 3585 | unicode-match-property-value-ecmascript@^1.2.0: 3586 | version "1.2.0" 3587 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" 3588 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== 3589 | 3590 | unicode-property-aliases-ecmascript@^1.0.4: 3591 | version "1.1.0" 3592 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" 3593 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== 3594 | 3595 | union-value@^1.0.0: 3596 | version "1.0.1" 3597 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 3598 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== 3599 | dependencies: 3600 | arr-union "^3.1.0" 3601 | get-value "^2.0.6" 3602 | is-extendable "^0.1.1" 3603 | set-value "^2.0.1" 3604 | 3605 | unset-value@^1.0.0: 3606 | version "1.0.0" 3607 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3608 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3609 | dependencies: 3610 | has-value "^0.3.1" 3611 | isobject "^3.0.0" 3612 | 3613 | upath@^1.1.1: 3614 | version "1.2.0" 3615 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" 3616 | integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== 3617 | 3618 | uri-js@^4.2.2: 3619 | version "4.4.1" 3620 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 3621 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 3622 | dependencies: 3623 | punycode "^2.1.0" 3624 | 3625 | urix@^0.1.0: 3626 | version "0.1.0" 3627 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3628 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3629 | 3630 | use@^3.1.0: 3631 | version "3.1.1" 3632 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3633 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3634 | 3635 | util-deprecate@~1.0.1: 3636 | version "1.0.2" 3637 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3638 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3639 | 3640 | v8-compile-cache@^2.0.3: 3641 | version "2.3.0" 3642 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 3643 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 3644 | 3645 | validate-npm-package-license@^3.0.1: 3646 | version "3.0.4" 3647 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3648 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 3649 | dependencies: 3650 | spdx-correct "^3.0.0" 3651 | spdx-expression-parse "^3.0.0" 3652 | 3653 | which-boxed-primitive@^1.0.1: 3654 | version "1.0.2" 3655 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 3656 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 3657 | dependencies: 3658 | is-bigint "^1.0.1" 3659 | is-boolean-object "^1.1.0" 3660 | is-number-object "^1.0.4" 3661 | is-string "^1.0.5" 3662 | is-symbol "^1.0.3" 3663 | 3664 | which@^2.0.1: 3665 | version "2.0.2" 3666 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 3667 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3668 | dependencies: 3669 | isexe "^2.0.0" 3670 | 3671 | word-wrap@^1.2.3: 3672 | version "1.2.3" 3673 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 3674 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3675 | 3676 | wrappy@1: 3677 | version "1.0.2" 3678 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3679 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3680 | 3681 | yallist@^4.0.0: 3682 | version "4.0.0" 3683 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 3684 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3685 | --------------------------------------------------------------------------------