├── .github ├── FUNDING.yml ├── linters │ └── .eslintrc.yml └── workflows │ ├── codeql-analysis.yml │ ├── linter.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── DISCLAIMER.md ├── LICENSE ├── README.md ├── examples ├── ExampleBlockTool.ts ├── ExampleDefaultBlockTool.ts ├── ExampleEditorConfigTools.ts ├── ExampleEditorJSData.ts ├── ExampleReactBlockTool │ ├── Content.tsx │ ├── ExampleReactBlockTool.tsx │ └── index.ts └── onDataChange.ts ├── package.json ├── tsconfig.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [hata6502] 2 | -------------------------------------------------------------------------------- /.github/linters/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: 2 | - react-app 3 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- 1 | name: CodeQL 2 | on: 3 | push: 4 | branches: 5 | - main 6 | pull_request: 7 | branches: 8 | - main 9 | schedule: 10 | - cron: "0 3 * * 1" 11 | jobs: 12 | analyze: 13 | runs-on: ubuntu-latest 14 | strategy: 15 | fail-fast: false 16 | matrix: 17 | language: ["javascript"] 18 | steps: 19 | - uses: actions/checkout@v2 20 | with: 21 | fetch-depth: 2 22 | - run: git checkout HEAD^2 23 | if: ${{ github.event_name == 'pull_request' }} 24 | - uses: github/codeql-action/init@v1 25 | with: 26 | languages: ${{ matrix.language }} 27 | - uses: github/codeql-action/autobuild@v1 28 | - uses: github/codeql-action/analyze@v1 29 | -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- 1 | name: Lint Code Base 2 | on: 3 | push: 4 | branches: 5 | - main 6 | pull_request: 7 | branches: 8 | - main 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: docker://github/super-linter:v3 15 | env: 16 | DEFAULT_BRANCH: main 17 | VALIDATE_ALL_CODEBASE: false 18 | VALIDATE_JAVASCRIPT_STANDARD: false 19 | VALIDATE_TYPESCRIPT_STANDARD: false 20 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Test 2 | on: 3 | push: 4 | branches: 5 | - main 6 | pull_request: 7 | branches: 8 | - main 9 | jobs: 10 | test: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: actions/setup-node@v1 15 | with: 16 | node-version: 12.x 17 | - run: yarn 18 | - run: yarn test 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn-error.log 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | DISCLAIMER.md 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | - Demonstrating empathy and kindness toward other people 21 | - Being respectful of differing opinions, viewpoints, and experiences 22 | - Giving and gracefully accepting constructive feedback 23 | - Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | - Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | - The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | - Trolling, insulting or derogatory comments, and personal or political attacks 33 | - Public or private harassment 34 | - Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | - Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | hato6502@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # editorjs-examples 2 | 3 | Examples of using Editor.js. 4 | This repository introduces the better way to use Editor.js with React and TypeScript. 5 | 6 | ## Contents 7 | 8 | - [examples/ExampleBlockTool.ts](https://github.com/hata6502/editorjs-examples/blob/main/examples/ExampleBlockTool.ts): An example Block Tool written in TypeScript. 9 | 10 | - [examples/ExampleDefaultBlockTool.ts](https://github.com/hata6502/editorjs-examples/blob/main/examples/ExampleDefaultBlockTool.ts): An example Default Block Tool written in TypeScript. 11 | 12 | - [examples/ExampleEditorConfigTools.ts](https://github.com/hata6502/editorjs-examples/blob/main/examples/ExampleEditorConfigTools.ts): A type definition improved EditorConfig\["tools"\]. 13 | 14 | - [examples/ExampleEditorJSData.ts](https://github.com/hata6502/editorjs-examples/blob/main/examples/ExampleEditorJSData.ts): A type definition improved OutputData. 15 | 16 | - [examples/ExampleReactBlockTool](https://github.com/hata6502/editorjs-examples/blob/main/examples/ExampleReactBlockTool): An example React Block Tool. 17 | 18 | - [examples/onDataChange.ts](https://github.com/hata6502/editorjs-examples/blob/main/examples/onDataChange.ts): Events that occur with EditorJS data changes 19 | -------------------------------------------------------------------------------- /examples/ExampleBlockTool.ts: -------------------------------------------------------------------------------- 1 | import type { 2 | BlockTool, 3 | BlockToolConstructorOptions, 4 | } from "@editorjs/editorjs"; 5 | 6 | interface ExampleBlockToolConfig { 7 | availableIds: string[]; 8 | } 9 | 10 | interface ExampleBlockToolData { 11 | id?: string; 12 | name: string; 13 | } 14 | 15 | interface ValidatedExampleBlockToolData extends ExampleBlockToolData { 16 | id: string; 17 | } 18 | 19 | class ExampleBlockTool implements BlockTool { 20 | #id?: string; 21 | #config!: ExampleBlockToolConfig; 22 | #name: string; 23 | 24 | constructor({ 25 | config, 26 | data, 27 | }: BlockToolConstructorOptions< 28 | // Specify ExampleBlockToolData to accept pasted block data. 29 | // See also: https://github.com/hata6502/editorjs-layout#copied-data 30 | ExampleBlockToolData, 31 | ExampleBlockToolConfig 32 | >) { 33 | // Filter undefined and empty object. 34 | // See also: https://github.com/codex-team/editor.js/issues/1432 35 | if (config && "availableIds" in config) { 36 | this.#config = config; 37 | } 38 | 39 | // Filter undefined and empty object. 40 | // See also: https://github.com/codex-team/editor.js/issues/1432 41 | if (data && "name" in data) { 42 | this.#id = data.id; 43 | this.#name = data.name; 44 | } else { 45 | this.#name = ""; 46 | } 47 | } 48 | 49 | render() { 50 | return document.createElement("div"); 51 | } 52 | 53 | save(): ExampleBlockToolData { 54 | return { 55 | id: this.#id, 56 | name: this.#name, 57 | }; 58 | } 59 | 60 | validate({ id, ...other }: ExampleBlockToolData) { 61 | if (!id) { 62 | return false; 63 | } 64 | 65 | // eslint-disable-next-line @typescript-eslint/no-unused-vars 66 | const compatibilityCheck: ValidatedExampleBlockToolData = { 67 | ...other, 68 | id, 69 | }; 70 | 71 | return true; 72 | } 73 | } 74 | 75 | export { ExampleBlockTool }; 76 | export type { 77 | ExampleBlockToolConfig, 78 | ExampleBlockToolData, 79 | ValidatedExampleBlockToolData, 80 | }; 81 | -------------------------------------------------------------------------------- /examples/ExampleDefaultBlockTool.ts: -------------------------------------------------------------------------------- 1 | import type { 2 | BlockTool, 3 | BlockToolConstructorOptions, 4 | } from "@editorjs/editorjs"; 5 | 6 | interface DefaultBlockToolData { 7 | text: string; 8 | } 9 | 10 | // DefaultBlockToolData must extends DefaultBlockToolData 11 | // See also: https://github.com/codex-team/editor.js/issues/1520 12 | interface ExampleDefaultBlockToolData extends DefaultBlockToolData { 13 | style: string; 14 | } 15 | 16 | interface ValidatedExampleDefaultBlockToolData 17 | extends ExampleDefaultBlockToolData {} 18 | 19 | class ExampleDefaultBlockTool implements BlockTool { 20 | #style: string; 21 | #text: string; 22 | 23 | constructor({ 24 | data, 25 | }: BlockToolConstructorOptions< 26 | // Specify also DefaultBlockToolData to accept splitted default block data. 27 | // See also: https://github.com/codex-team/editor.js/issues/1520 28 | DefaultBlockToolData | ExampleDefaultBlockToolData 29 | >) { 30 | // Filter undefined and empty object. 31 | // See also: https://github.com/codex-team/editor.js/issues/1432 32 | if (data && "text" in data) { 33 | this.#text = data.text; 34 | } else { 35 | this.#text = ""; 36 | } 37 | 38 | // Filter undefined and empty object. 39 | // See also: https://github.com/codex-team/editor.js/issues/1432 40 | if (data && "style" in data) { 41 | this.#style = data.style; 42 | } else { 43 | this.#style = ""; 44 | } 45 | } 46 | 47 | render() { 48 | return document.createElement("div"); 49 | } 50 | 51 | save(): ExampleDefaultBlockToolData { 52 | return { 53 | style: this.#style, 54 | text: this.#text, 55 | }; 56 | } 57 | 58 | validate(data: ExampleDefaultBlockToolData) { 59 | // eslint-disable-next-line @typescript-eslint/no-unused-vars 60 | const compatibilityCheck: ValidatedExampleDefaultBlockToolData = data; 61 | 62 | return true; 63 | } 64 | } 65 | 66 | export { ExampleDefaultBlockTool }; 67 | export type { 68 | ExampleDefaultBlockToolData, 69 | ValidatedExampleDefaultBlockToolData, 70 | }; 71 | -------------------------------------------------------------------------------- /examples/ExampleEditorConfigTools.ts: -------------------------------------------------------------------------------- 1 | import type { 2 | ToolConfig, 3 | ToolConstructable, 4 | ToolSettings, 5 | } from "@editorjs/editorjs"; 6 | import type { ExampleBlockToolConfig } from "./ExampleBlockTool"; 7 | 8 | /** Type definition improved ToolSettings */ 9 | // See also: https://github.com/codex-team/editor.js/issues/1516 10 | interface ToolSettingsWithConfig 11 | extends ToolSettings { 12 | config?: Config; 13 | } 14 | 15 | type EditorConfigTool = 16 | | ToolConstructable 17 | | ToolSettingsWithConfig; 18 | 19 | interface ExampleEditorConfigTools { 20 | example?: EditorConfigTool; 21 | exampleReact?: EditorConfigTool; 22 | } 23 | 24 | export type { ExampleEditorConfigTools }; 25 | -------------------------------------------------------------------------------- /examples/ExampleEditorJSData.ts: -------------------------------------------------------------------------------- 1 | import type { 2 | BlockToolData, 3 | OutputBlockData, 4 | OutputData, 5 | } from "@editorjs/editorjs"; 6 | import type { ValidatedExampleBlockToolData } from "./ExampleBlockTool"; 7 | import type { ValidatedExampleReactBlockToolData } from "./ExampleReactBlockTool"; 8 | 9 | /** Type definition improved OutputBlockData */ 10 | // See also: https://github.com/codex-team/editor.js/pull/1326 11 | interface BlockData 12 | extends OutputBlockData { 13 | type: Type; 14 | data: BlockToolData; 15 | } 16 | 17 | type SupportedBlockData = 18 | | BlockData<"example", ValidatedExampleBlockToolData> 19 | | BlockData<"exampleReact", ValidatedExampleReactBlockToolData>; 20 | 21 | interface ExampleEditorJSData extends OutputData { 22 | blocks: SupportedBlockData[]; 23 | } 24 | 25 | export type { ExampleEditorJSData }; 26 | -------------------------------------------------------------------------------- /examples/ExampleReactBlockTool/Content.tsx: -------------------------------------------------------------------------------- 1 | import { useCallback } from "react"; 2 | import type { ChangeEventHandler, FunctionComponent } from "react"; 3 | import type { ExampleReactBlockToolDispatchData } from "./ExampleReactBlockTool"; 4 | 5 | const Content: FunctionComponent<{ 6 | dispatchData: ExampleReactBlockToolDispatchData; 7 | text: string; 8 | }> = ({ dispatchData, text }) => { 9 | const handleTextChange: ChangeEventHandler = useCallback( 10 | (event) => dispatchData({ text: event.target.value }), 11 | [dispatchData] 12 | ); 13 | 14 | return ; 15 | }; 16 | 17 | export { Content }; 18 | -------------------------------------------------------------------------------- /examples/ExampleReactBlockTool/ExampleReactBlockTool.tsx: -------------------------------------------------------------------------------- 1 | import type { BlockTool } from "@editorjs/editorjs"; 2 | import { nanoid } from "nanoid"; 3 | import ReactDOM from "react-dom"; 4 | import { Content } from "./Content"; 5 | 6 | interface ExampleReactBlockToolData { 7 | text: string; 8 | } 9 | 10 | interface ValidatedExampleReactBlockToolData 11 | extends ExampleReactBlockToolData {} 12 | 13 | type ExampleReactBlockToolDispatchData = (action: { text?: string }) => void; 14 | 15 | class ExampleReactBlockTool implements BlockTool { 16 | #container: HTMLDivElement; 17 | #editorJSChangeEventID: string; 18 | #text: string; 19 | 20 | constructor() { 21 | this.#container = document.createElement("div"); 22 | this.#editorJSChangeEventID = nanoid(); 23 | this.#text = ""; 24 | } 25 | 26 | render() { 27 | this.renderContainer(); 28 | 29 | return this.#container; 30 | } 31 | 32 | save(): ValidatedExampleReactBlockToolData { 33 | return { 34 | text: this.#text, 35 | }; 36 | } 37 | 38 | #dispatchData: ExampleReactBlockToolDispatchData = (action) => { 39 | if (action.text !== undefined) { 40 | this.#text = action.text; 41 | } 42 | 43 | // Dispatch Editor.js change event even without DOM changes. 44 | this.#editorJSChangeEventID = nanoid(); 45 | 46 | this.renderContainer(); 47 | }; 48 | 49 | renderContainer() { 50 | ReactDOM.render( 51 |
52 | 53 |
, 54 | this.#container 55 | ); 56 | } 57 | } 58 | 59 | export { ExampleReactBlockTool }; 60 | export type { 61 | ExampleReactBlockToolDispatchData, 62 | ExampleReactBlockToolData, 63 | ValidatedExampleReactBlockToolData, 64 | }; 65 | -------------------------------------------------------------------------------- /examples/ExampleReactBlockTool/index.ts: -------------------------------------------------------------------------------- 1 | export { ExampleReactBlockTool } from "./ExampleReactBlockTool"; 2 | export type { 3 | ExampleReactBlockToolData, 4 | ValidatedExampleReactBlockToolData, 5 | } from "./ExampleReactBlockTool"; 6 | -------------------------------------------------------------------------------- /examples/onDataChange.ts: -------------------------------------------------------------------------------- 1 | import EditorJS from "@editorjs/editorjs"; 2 | import type { OutputData } from "@editorjs/editorjs"; 3 | import equal from "fast-deep-equal"; 4 | 5 | let prevEditorJSData: OutputData | undefined; 6 | 7 | const editorJS = new EditorJS({ 8 | onChange: async () => { 9 | const data = await editorJS.save(); 10 | 11 | // Don't use JSON.stringify() for deep equal. 12 | if (!equal(prevEditorJSData?.blocks, data.blocks)) { 13 | // onDataChange process here. 14 | } 15 | 16 | prevEditorJSData = data; 17 | }, 18 | }); 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "editorjs-examples", 3 | "version": "0.0.0", 4 | "private": true, 5 | "description": "Examples of using Editor.js", 6 | "repository": "git@github.com:hata6502/editorjs-examples.git", 7 | "license": "CC0-1.0", 8 | "author": "Tomoyuki Hata ", 9 | "scripts": { 10 | "fix": "prettier --write .", 11 | "generate-disclaimer": "yarn licenses generate-disclaimer --ignore-platform > DISCLAIMER.md", 12 | "license-checker": "license-checker --excludePackages 'css-select@1.2.0;dictionary-en@3.0.0;domutils@1.5.1;optimist@0.6.1;tiny-segmenter@0.2.0;trim@0.0.1;union@0.5.0;unorm@1.6.0;zlibjs@0.2.0' --excludePrivatePackages --onlyAllow 'Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause;CC0-1.0;CC-BY-3.0;CC-BY-4.0;ISC;MIT;Public Domain;Unlicense;WTFPL' --production --unknown > /dev/null", 13 | "test": "yarn license-checker && prettier --check . && tsc --noEmit" 14 | }, 15 | "dependencies": { 16 | "@editorjs/editorjs": "^2.19.1", 17 | "fast-deep-equal": "^3.1.3", 18 | "nanoid": "^3.1.20", 19 | "react": "^17.0.1", 20 | "react-dom": "^17.0.1" 21 | }, 22 | "devDependencies": { 23 | "@types/react": "^17.0.0", 24 | "@types/react-dom": "^17.0.0", 25 | "@typescript-eslint/eslint-plugin": "^4.0.0", 26 | "@typescript-eslint/parser": "^4.0.0", 27 | "babel-eslint": "^10.0.0", 28 | "eslint": "^7.5.0", 29 | "eslint-config-react-app": "^6.0.0", 30 | "eslint-plugin-flowtype": "^5.2.0", 31 | "eslint-plugin-import": "^2.22.0", 32 | "eslint-plugin-jsx-a11y": "^6.3.1", 33 | "eslint-plugin-react": "^7.20.3", 34 | "eslint-plugin-react-hooks": "^4.0.8", 35 | "license-checker": "^25.0.1", 36 | "prettier": "^2.2.1", 37 | "typescript": "^4.1.3" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "allowSyntheticDefaultImports": true, 4 | "jsx": "react-jsx", 5 | "module": "ES2015", 6 | "moduleResolution": "node", 7 | "pretty": true, 8 | "skipLibCheck": true, 9 | "strict": true, 10 | "target": "ES2015" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.11": 6 | version "7.12.11" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/generator@^7.12.11": 13 | version "7.12.11" 14 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.11.tgz#98a7df7b8c358c9a37ab07a24056853016aba3af" 15 | integrity sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA== 16 | dependencies: 17 | "@babel/types" "^7.12.11" 18 | jsesc "^2.5.1" 19 | source-map "^0.5.0" 20 | 21 | "@babel/helper-function-name@^7.12.11": 22 | version "7.12.11" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz#1fd7738aee5dcf53c3ecff24f1da9c511ec47b42" 24 | integrity sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA== 25 | dependencies: 26 | "@babel/helper-get-function-arity" "^7.12.10" 27 | "@babel/template" "^7.12.7" 28 | "@babel/types" "^7.12.11" 29 | 30 | "@babel/helper-get-function-arity@^7.12.10": 31 | version "7.12.10" 32 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz#b158817a3165b5faa2047825dfa61970ddcc16cf" 33 | integrity sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag== 34 | dependencies: 35 | "@babel/types" "^7.12.10" 36 | 37 | "@babel/helper-split-export-declaration@^7.12.11": 38 | version "7.12.11" 39 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz#1b4cc424458643c47d37022223da33d76ea4603a" 40 | integrity sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g== 41 | dependencies: 42 | "@babel/types" "^7.12.11" 43 | 44 | "@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11": 45 | version "7.12.11" 46 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" 47 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 48 | 49 | "@babel/highlight@^7.10.4": 50 | version "7.10.4" 51 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 52 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 53 | dependencies: 54 | "@babel/helper-validator-identifier" "^7.10.4" 55 | chalk "^2.0.0" 56 | js-tokens "^4.0.0" 57 | 58 | "@babel/parser@^7.12.11", "@babel/parser@^7.12.7", "@babel/parser@^7.7.0": 59 | version "7.12.11" 60 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79" 61 | integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg== 62 | 63 | "@babel/runtime-corejs3@^7.10.2": 64 | version "7.12.5" 65 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz#ffee91da0eb4c6dae080774e94ba606368e414f4" 66 | integrity sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ== 67 | dependencies: 68 | core-js-pure "^3.0.0" 69 | regenerator-runtime "^0.13.4" 70 | 71 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2": 72 | version "7.12.5" 73 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e" 74 | integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== 75 | dependencies: 76 | regenerator-runtime "^0.13.4" 77 | 78 | "@babel/template@^7.12.7": 79 | version "7.12.7" 80 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc" 81 | integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== 82 | dependencies: 83 | "@babel/code-frame" "^7.10.4" 84 | "@babel/parser" "^7.12.7" 85 | "@babel/types" "^7.12.7" 86 | 87 | "@babel/traverse@^7.7.0": 88 | version "7.12.12" 89 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.12.tgz#d0cd87892704edd8da002d674bc811ce64743376" 90 | integrity sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w== 91 | dependencies: 92 | "@babel/code-frame" "^7.12.11" 93 | "@babel/generator" "^7.12.11" 94 | "@babel/helper-function-name" "^7.12.11" 95 | "@babel/helper-split-export-declaration" "^7.12.11" 96 | "@babel/parser" "^7.12.11" 97 | "@babel/types" "^7.12.12" 98 | debug "^4.1.0" 99 | globals "^11.1.0" 100 | lodash "^4.17.19" 101 | 102 | "@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.12", "@babel/types@^7.12.7", "@babel/types@^7.7.0": 103 | version "7.12.12" 104 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.12.tgz#4608a6ec313abbd87afa55004d373ad04a96c299" 105 | integrity sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ== 106 | dependencies: 107 | "@babel/helper-validator-identifier" "^7.12.11" 108 | lodash "^4.17.19" 109 | to-fast-properties "^2.0.0" 110 | 111 | "@editorjs/editorjs@^2.19.1": 112 | version "2.19.1" 113 | resolved "https://registry.yarnpkg.com/@editorjs/editorjs/-/editorjs-2.19.1.tgz#081daf80dc4f524d457e415f07eb73d0ca6d86ce" 114 | integrity sha512-5lN7r5B2NCE8VJdsS3poX3Qg9rNwzpxZ+6Jjif3hAVZTYpQwg5wXEpAHFNbuavS0T5Ji+0ID31DQFotVI4PosA== 115 | dependencies: 116 | codex-notifier "^1.1.2" 117 | codex-tooltip "^1.0.1" 118 | 119 | "@eslint/eslintrc@^0.2.2": 120 | version "0.2.2" 121 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.2.2.tgz#d01fc791e2fc33e88a29d6f3dc7e93d0cd784b76" 122 | integrity sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ== 123 | dependencies: 124 | ajv "^6.12.4" 125 | debug "^4.1.1" 126 | espree "^7.3.0" 127 | globals "^12.1.0" 128 | ignore "^4.0.6" 129 | import-fresh "^3.2.1" 130 | js-yaml "^3.13.1" 131 | lodash "^4.17.19" 132 | minimatch "^3.0.4" 133 | strip-json-comments "^3.1.1" 134 | 135 | "@nodelib/fs.scandir@2.1.4": 136 | version "2.1.4" 137 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" 138 | integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA== 139 | dependencies: 140 | "@nodelib/fs.stat" "2.0.4" 141 | run-parallel "^1.1.9" 142 | 143 | "@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2": 144 | version "2.0.4" 145 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz#a3f2dd61bab43b8db8fa108a121cfffe4c676655" 146 | integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q== 147 | 148 | "@nodelib/fs.walk@^1.2.3": 149 | version "1.2.6" 150 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz#cce9396b30aa5afe9e3756608f5831adcb53d063" 151 | integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow== 152 | dependencies: 153 | "@nodelib/fs.scandir" "2.1.4" 154 | fastq "^1.6.0" 155 | 156 | "@types/json-schema@^7.0.3": 157 | version "7.0.6" 158 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" 159 | integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== 160 | 161 | "@types/json5@^0.0.29": 162 | version "0.0.29" 163 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 164 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 165 | 166 | "@types/prop-types@*": 167 | version "15.7.3" 168 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 169 | integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 170 | 171 | "@types/react-dom@^17.0.0": 172 | version "17.0.0" 173 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.0.tgz#b3b691eb956c4b3401777ee67b900cb28415d95a" 174 | integrity sha512-lUqY7OlkF/RbNtD5nIq7ot8NquXrdFrjSOR6+w9a9RFQevGi1oZO1dcJbXMeONAPKtZ2UrZOEJ5UOCVsxbLk/g== 175 | dependencies: 176 | "@types/react" "*" 177 | 178 | "@types/react@*", "@types/react@^17.0.0": 179 | version "17.0.0" 180 | resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.0.tgz#5af3eb7fad2807092f0046a1302b7823e27919b8" 181 | integrity sha512-aj/L7RIMsRlWML3YB6KZiXB3fV2t41+5RBGYF8z+tAKU43Px8C3cYUZsDvf1/+Bm4FK21QWBrDutu8ZJ/70qOw== 182 | dependencies: 183 | "@types/prop-types" "*" 184 | csstype "^3.0.2" 185 | 186 | "@typescript-eslint/eslint-plugin@^4.0.0": 187 | version "4.13.0" 188 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.13.0.tgz#5f580ea520fa46442deb82c038460c3dd3524bb6" 189 | integrity sha512-ygqDUm+BUPvrr0jrXqoteMqmIaZ/bixYOc3A4BRwzEPTZPi6E+n44rzNZWaB0YvtukgP+aoj0i/fyx7FkM2p1w== 190 | dependencies: 191 | "@typescript-eslint/experimental-utils" "4.13.0" 192 | "@typescript-eslint/scope-manager" "4.13.0" 193 | debug "^4.1.1" 194 | functional-red-black-tree "^1.0.1" 195 | lodash "^4.17.15" 196 | regexpp "^3.0.0" 197 | semver "^7.3.2" 198 | tsutils "^3.17.1" 199 | 200 | "@typescript-eslint/experimental-utils@4.13.0": 201 | version "4.13.0" 202 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.13.0.tgz#9dc9ab375d65603b43d938a0786190a0c72be44e" 203 | integrity sha512-/ZsuWmqagOzNkx30VWYV3MNB/Re/CGv/7EzlqZo5RegBN8tMuPaBgNK6vPBCQA8tcYrbsrTdbx3ixMRRKEEGVw== 204 | dependencies: 205 | "@types/json-schema" "^7.0.3" 206 | "@typescript-eslint/scope-manager" "4.13.0" 207 | "@typescript-eslint/types" "4.13.0" 208 | "@typescript-eslint/typescript-estree" "4.13.0" 209 | eslint-scope "^5.0.0" 210 | eslint-utils "^2.0.0" 211 | 212 | "@typescript-eslint/parser@^4.0.0": 213 | version "4.13.0" 214 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.13.0.tgz#c413d640ea66120cfcc37f891e8cb3fd1c9d247d" 215 | integrity sha512-KO0J5SRF08pMXzq9+abyHnaGQgUJZ3Z3ax+pmqz9vl81JxmTTOUfQmq7/4awVfq09b6C4owNlOgOwp61pYRBSg== 216 | dependencies: 217 | "@typescript-eslint/scope-manager" "4.13.0" 218 | "@typescript-eslint/types" "4.13.0" 219 | "@typescript-eslint/typescript-estree" "4.13.0" 220 | debug "^4.1.1" 221 | 222 | "@typescript-eslint/scope-manager@4.13.0": 223 | version "4.13.0" 224 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.13.0.tgz#5b45912a9aa26b29603d8fa28f5e09088b947141" 225 | integrity sha512-UpK7YLG2JlTp/9G4CHe7GxOwd93RBf3aHO5L+pfjIrhtBvZjHKbMhBXTIQNkbz7HZ9XOe++yKrXutYm5KmjWgQ== 226 | dependencies: 227 | "@typescript-eslint/types" "4.13.0" 228 | "@typescript-eslint/visitor-keys" "4.13.0" 229 | 230 | "@typescript-eslint/types@4.13.0": 231 | version "4.13.0" 232 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.13.0.tgz#6a7c6015a59a08fbd70daa8c83dfff86250502f8" 233 | integrity sha512-/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ== 234 | 235 | "@typescript-eslint/typescript-estree@4.13.0": 236 | version "4.13.0" 237 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.13.0.tgz#cf6e2207c7d760f5dfd8d18051428fadfc37b45e" 238 | integrity sha512-9A0/DFZZLlGXn5XA349dWQFwPZxcyYyCFX5X88nWs2uachRDwGeyPz46oTsm9ZJE66EALvEns1lvBwa4d9QxMg== 239 | dependencies: 240 | "@typescript-eslint/types" "4.13.0" 241 | "@typescript-eslint/visitor-keys" "4.13.0" 242 | debug "^4.1.1" 243 | globby "^11.0.1" 244 | is-glob "^4.0.1" 245 | lodash "^4.17.15" 246 | semver "^7.3.2" 247 | tsutils "^3.17.1" 248 | 249 | "@typescript-eslint/visitor-keys@4.13.0": 250 | version "4.13.0" 251 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.13.0.tgz#9acb1772d3b3183182b6540d3734143dce9476fe" 252 | integrity sha512-6RoxWK05PAibukE7jElqAtNMq+RWZyqJ6Q/GdIxaiUj2Ept8jh8+FUVlbq9WxMYxkmEOPvCE5cRSyupMpwW31g== 253 | dependencies: 254 | "@typescript-eslint/types" "4.13.0" 255 | eslint-visitor-keys "^2.0.0" 256 | 257 | abbrev@1: 258 | version "1.1.1" 259 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 260 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 261 | 262 | acorn-jsx@^5.3.1: 263 | version "5.3.1" 264 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" 265 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== 266 | 267 | acorn@^7.4.0: 268 | version "7.4.1" 269 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 270 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 271 | 272 | ajv@^6.10.0, ajv@^6.12.4: 273 | version "6.12.6" 274 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 275 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 276 | dependencies: 277 | fast-deep-equal "^3.1.1" 278 | fast-json-stable-stringify "^2.0.0" 279 | json-schema-traverse "^0.4.1" 280 | uri-js "^4.2.2" 281 | 282 | ajv@^7.0.2: 283 | version "7.0.3" 284 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.0.3.tgz#13ae747eff125cafb230ac504b2406cf371eece2" 285 | integrity sha512-R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ== 286 | dependencies: 287 | fast-deep-equal "^3.1.1" 288 | json-schema-traverse "^1.0.0" 289 | require-from-string "^2.0.2" 290 | uri-js "^4.2.2" 291 | 292 | ansi-colors@^4.1.1: 293 | version "4.1.1" 294 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 295 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 296 | 297 | ansi-regex@^5.0.0: 298 | version "5.0.0" 299 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 300 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 301 | 302 | ansi-styles@^3.2.1: 303 | version "3.2.1" 304 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 305 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 306 | dependencies: 307 | color-convert "^1.9.0" 308 | 309 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 310 | version "4.3.0" 311 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 312 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 313 | dependencies: 314 | color-convert "^2.0.1" 315 | 316 | argparse@^1.0.7: 317 | version "1.0.10" 318 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 319 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 320 | dependencies: 321 | sprintf-js "~1.0.2" 322 | 323 | aria-query@^4.2.2: 324 | version "4.2.2" 325 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 326 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 327 | dependencies: 328 | "@babel/runtime" "^7.10.2" 329 | "@babel/runtime-corejs3" "^7.10.2" 330 | 331 | array-find-index@^1.0.2: 332 | version "1.0.2" 333 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 334 | integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= 335 | 336 | array-includes@^3.1.1, array-includes@^3.1.2: 337 | version "3.1.2" 338 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.2.tgz#a8db03e0b88c8c6aeddc49cb132f9bcab4ebf9c8" 339 | integrity sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw== 340 | dependencies: 341 | call-bind "^1.0.0" 342 | define-properties "^1.1.3" 343 | es-abstract "^1.18.0-next.1" 344 | get-intrinsic "^1.0.1" 345 | is-string "^1.0.5" 346 | 347 | array-union@^2.1.0: 348 | version "2.1.0" 349 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 350 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 351 | 352 | array.prototype.flat@^1.2.3: 353 | version "1.2.4" 354 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123" 355 | integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg== 356 | dependencies: 357 | call-bind "^1.0.0" 358 | define-properties "^1.1.3" 359 | es-abstract "^1.18.0-next.1" 360 | 361 | array.prototype.flatmap@^1.2.3: 362 | version "1.2.4" 363 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9" 364 | integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q== 365 | dependencies: 366 | call-bind "^1.0.0" 367 | define-properties "^1.1.3" 368 | es-abstract "^1.18.0-next.1" 369 | function-bind "^1.1.1" 370 | 371 | asap@^2.0.0: 372 | version "2.0.6" 373 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 374 | integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= 375 | 376 | ast-types-flow@^0.0.7: 377 | version "0.0.7" 378 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 379 | integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= 380 | 381 | astral-regex@^2.0.0: 382 | version "2.0.0" 383 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 384 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 385 | 386 | axe-core@^4.0.2: 387 | version "4.1.1" 388 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.1.1.tgz#70a7855888e287f7add66002211a423937063eaf" 389 | integrity sha512-5Kgy8Cz6LPC9DJcNb3yjAXTu3XihQgEdnIg50c//zOC/MyLP0Clg+Y8Sh9ZjjnvBrDZU4DgXS9C3T9r4/scGZQ== 390 | 391 | axobject-query@^2.2.0: 392 | version "2.2.0" 393 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 394 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 395 | 396 | babel-eslint@^10.0.0: 397 | version "10.1.0" 398 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" 399 | integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== 400 | dependencies: 401 | "@babel/code-frame" "^7.0.0" 402 | "@babel/parser" "^7.7.0" 403 | "@babel/traverse" "^7.7.0" 404 | "@babel/types" "^7.7.0" 405 | eslint-visitor-keys "^1.0.0" 406 | resolve "^1.12.0" 407 | 408 | balanced-match@^1.0.0: 409 | version "1.0.0" 410 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 411 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 412 | 413 | brace-expansion@^1.1.7: 414 | version "1.1.11" 415 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 416 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 417 | dependencies: 418 | balanced-match "^1.0.0" 419 | concat-map "0.0.1" 420 | 421 | braces@^3.0.1: 422 | version "3.0.2" 423 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 424 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 425 | dependencies: 426 | fill-range "^7.0.1" 427 | 428 | call-bind@^1.0.0: 429 | version "1.0.2" 430 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 431 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 432 | dependencies: 433 | function-bind "^1.1.1" 434 | get-intrinsic "^1.0.2" 435 | 436 | callsites@^3.0.0: 437 | version "3.1.0" 438 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 439 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 440 | 441 | chalk@^2.0.0, chalk@^2.4.1: 442 | version "2.4.2" 443 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 444 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 445 | dependencies: 446 | ansi-styles "^3.2.1" 447 | escape-string-regexp "^1.0.5" 448 | supports-color "^5.3.0" 449 | 450 | chalk@^4.0.0: 451 | version "4.1.0" 452 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 453 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 454 | dependencies: 455 | ansi-styles "^4.1.0" 456 | supports-color "^7.1.0" 457 | 458 | codex-notifier@^1.1.2: 459 | version "1.1.2" 460 | resolved "https://registry.yarnpkg.com/codex-notifier/-/codex-notifier-1.1.2.tgz#a733079185f4c927fa296f1d71eb8753fe080895" 461 | integrity sha512-DCp6xe/LGueJ1N5sXEwcBc3r3PyVkEEDNWCVigfvywAkeXcZMk9K41a31tkEFBW0Ptlwji6/JlAb49E3Yrxbtg== 462 | 463 | codex-tooltip@^1.0.1: 464 | version "1.0.2" 465 | resolved "https://registry.yarnpkg.com/codex-tooltip/-/codex-tooltip-1.0.2.tgz#81a9d3e2937658c6e5312106b47b9f094ff7be63" 466 | integrity sha512-oC+Bu5X/zyhbPydgMSLWKoM/+vkJMqaLWu3Dt/jZgXS3MWK23INwC5DMBrVXZSufAFk0i0SUni38k9rLMyZn/w== 467 | 468 | color-convert@^1.9.0: 469 | version "1.9.3" 470 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 471 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 472 | dependencies: 473 | color-name "1.1.3" 474 | 475 | color-convert@^2.0.1: 476 | version "2.0.1" 477 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 478 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 479 | dependencies: 480 | color-name "~1.1.4" 481 | 482 | color-name@1.1.3: 483 | version "1.1.3" 484 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 485 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 486 | 487 | color-name@~1.1.4: 488 | version "1.1.4" 489 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 490 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 491 | 492 | concat-map@0.0.1: 493 | version "0.0.1" 494 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 495 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 496 | 497 | confusing-browser-globals@^1.0.10: 498 | version "1.0.10" 499 | resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz#30d1e7f3d1b882b25ec4933d1d1adac353d20a59" 500 | integrity sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA== 501 | 502 | contains-path@^0.1.0: 503 | version "0.1.0" 504 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 505 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 506 | 507 | core-js-pure@^3.0.0: 508 | version "3.8.2" 509 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.8.2.tgz#286f885c0dac1cdcd6d78397392abc25ddeca225" 510 | integrity sha512-v6zfIQqL/pzTVAbZvYUozsxNfxcFb6Ks3ZfEbuneJl3FW9Jb8F6vLWB6f+qTmAu72msUdyb84V8d/yBFf7FNnw== 511 | 512 | cross-spawn@^7.0.2: 513 | version "7.0.3" 514 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 515 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 516 | dependencies: 517 | path-key "^3.1.0" 518 | shebang-command "^2.0.0" 519 | which "^2.0.1" 520 | 521 | csstype@^3.0.2: 522 | version "3.0.6" 523 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.6.tgz#865d0b5833d7d8d40f4e5b8a6d76aea3de4725ef" 524 | integrity sha512-+ZAmfyWMT7TiIlzdqJgjMb7S4f1beorDbWbsocyK4RaiqA5RTX3K14bnBWmmA9QEM0gRdsjyyrEmcyga8Zsxmw== 525 | 526 | damerau-levenshtein@^1.0.6: 527 | version "1.0.6" 528 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" 529 | integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug== 530 | 531 | debug@^2.6.9: 532 | version "2.6.9" 533 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 534 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 535 | dependencies: 536 | ms "2.0.0" 537 | 538 | debug@^3.1.0: 539 | version "3.2.7" 540 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 541 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 542 | dependencies: 543 | ms "^2.1.1" 544 | 545 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: 546 | version "4.3.1" 547 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 548 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 549 | dependencies: 550 | ms "2.1.2" 551 | 552 | debuglog@^1.0.1: 553 | version "1.0.1" 554 | resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" 555 | integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI= 556 | 557 | deep-is@^0.1.3: 558 | version "0.1.3" 559 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 560 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 561 | 562 | define-properties@^1.1.3: 563 | version "1.1.3" 564 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 565 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 566 | dependencies: 567 | object-keys "^1.0.12" 568 | 569 | dezalgo@^1.0.0: 570 | version "1.0.3" 571 | resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" 572 | integrity sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY= 573 | dependencies: 574 | asap "^2.0.0" 575 | wrappy "1" 576 | 577 | dir-glob@^3.0.1: 578 | version "3.0.1" 579 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 580 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 581 | dependencies: 582 | path-type "^4.0.0" 583 | 584 | doctrine@1.5.0: 585 | version "1.5.0" 586 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 587 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 588 | dependencies: 589 | esutils "^2.0.2" 590 | isarray "^1.0.0" 591 | 592 | doctrine@^2.1.0: 593 | version "2.1.0" 594 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 595 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 596 | dependencies: 597 | esutils "^2.0.2" 598 | 599 | doctrine@^3.0.0: 600 | version "3.0.0" 601 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 602 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 603 | dependencies: 604 | esutils "^2.0.2" 605 | 606 | emoji-regex@^8.0.0: 607 | version "8.0.0" 608 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 609 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 610 | 611 | emoji-regex@^9.0.0: 612 | version "9.2.0" 613 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.0.tgz#a26da8e832b16a9753309f25e35e3c0efb9a066a" 614 | integrity sha512-DNc3KFPK18bPdElMJnf/Pkv5TXhxFU3YFDEuGLDRtPmV4rkmCjBkCSEp22u6rBHdSN9Vlp/GK7k98prmE1Jgug== 615 | 616 | enquirer@^2.3.5: 617 | version "2.3.6" 618 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 619 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 620 | dependencies: 621 | ansi-colors "^4.1.1" 622 | 623 | error-ex@^1.2.0: 624 | version "1.3.2" 625 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 626 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 627 | dependencies: 628 | is-arrayish "^0.2.1" 629 | 630 | es-abstract@^1.17.0-next.1: 631 | version "1.17.7" 632 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" 633 | integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== 634 | dependencies: 635 | es-to-primitive "^1.2.1" 636 | function-bind "^1.1.1" 637 | has "^1.0.3" 638 | has-symbols "^1.0.1" 639 | is-callable "^1.2.2" 640 | is-regex "^1.1.1" 641 | object-inspect "^1.8.0" 642 | object-keys "^1.1.1" 643 | object.assign "^4.1.1" 644 | string.prototype.trimend "^1.0.1" 645 | string.prototype.trimstart "^1.0.1" 646 | 647 | es-abstract@^1.18.0-next.1: 648 | version "1.18.0-next.1" 649 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" 650 | integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== 651 | dependencies: 652 | es-to-primitive "^1.2.1" 653 | function-bind "^1.1.1" 654 | has "^1.0.3" 655 | has-symbols "^1.0.1" 656 | is-callable "^1.2.2" 657 | is-negative-zero "^2.0.0" 658 | is-regex "^1.1.1" 659 | object-inspect "^1.8.0" 660 | object-keys "^1.1.1" 661 | object.assign "^4.1.1" 662 | string.prototype.trimend "^1.0.1" 663 | string.prototype.trimstart "^1.0.1" 664 | 665 | es-to-primitive@^1.2.1: 666 | version "1.2.1" 667 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 668 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 669 | dependencies: 670 | is-callable "^1.1.4" 671 | is-date-object "^1.0.1" 672 | is-symbol "^1.0.2" 673 | 674 | escape-string-regexp@^1.0.5: 675 | version "1.0.5" 676 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 677 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 678 | 679 | eslint-config-react-app@^6.0.0: 680 | version "6.0.0" 681 | resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz#ccff9fc8e36b322902844cbd79197982be355a0e" 682 | integrity sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A== 683 | dependencies: 684 | confusing-browser-globals "^1.0.10" 685 | 686 | eslint-import-resolver-node@^0.3.4: 687 | version "0.3.4" 688 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" 689 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== 690 | dependencies: 691 | debug "^2.6.9" 692 | resolve "^1.13.1" 693 | 694 | eslint-module-utils@^2.6.0: 695 | version "2.6.0" 696 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" 697 | integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== 698 | dependencies: 699 | debug "^2.6.9" 700 | pkg-dir "^2.0.0" 701 | 702 | eslint-plugin-flowtype@^5.2.0: 703 | version "5.2.0" 704 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.2.0.tgz#a4bef5dc18f9b2bdb41569a4ab05d73805a3d261" 705 | integrity sha512-z7ULdTxuhlRJcEe1MVljePXricuPOrsWfScRXFhNzVD5dmTHWjIF57AxD0e7AbEoLSbjSsaA5S+hCg43WvpXJQ== 706 | dependencies: 707 | lodash "^4.17.15" 708 | string-natural-compare "^3.0.1" 709 | 710 | eslint-plugin-import@^2.22.0: 711 | version "2.22.1" 712 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz#0896c7e6a0cf44109a2d97b95903c2bb689d7702" 713 | integrity sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw== 714 | dependencies: 715 | array-includes "^3.1.1" 716 | array.prototype.flat "^1.2.3" 717 | contains-path "^0.1.0" 718 | debug "^2.6.9" 719 | doctrine "1.5.0" 720 | eslint-import-resolver-node "^0.3.4" 721 | eslint-module-utils "^2.6.0" 722 | has "^1.0.3" 723 | minimatch "^3.0.4" 724 | object.values "^1.1.1" 725 | read-pkg-up "^2.0.0" 726 | resolve "^1.17.0" 727 | tsconfig-paths "^3.9.0" 728 | 729 | eslint-plugin-jsx-a11y@^6.3.1: 730 | version "6.4.1" 731 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz#a2d84caa49756942f42f1ffab9002436391718fd" 732 | integrity sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg== 733 | dependencies: 734 | "@babel/runtime" "^7.11.2" 735 | aria-query "^4.2.2" 736 | array-includes "^3.1.1" 737 | ast-types-flow "^0.0.7" 738 | axe-core "^4.0.2" 739 | axobject-query "^2.2.0" 740 | damerau-levenshtein "^1.0.6" 741 | emoji-regex "^9.0.0" 742 | has "^1.0.3" 743 | jsx-ast-utils "^3.1.0" 744 | language-tags "^1.0.5" 745 | 746 | eslint-plugin-react-hooks@^4.0.8: 747 | version "4.2.0" 748 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556" 749 | integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ== 750 | 751 | eslint-plugin-react@^7.20.3: 752 | version "7.22.0" 753 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz#3d1c542d1d3169c45421c1215d9470e341707269" 754 | integrity sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA== 755 | dependencies: 756 | array-includes "^3.1.1" 757 | array.prototype.flatmap "^1.2.3" 758 | doctrine "^2.1.0" 759 | has "^1.0.3" 760 | jsx-ast-utils "^2.4.1 || ^3.0.0" 761 | object.entries "^1.1.2" 762 | object.fromentries "^2.0.2" 763 | object.values "^1.1.1" 764 | prop-types "^15.7.2" 765 | resolve "^1.18.1" 766 | string.prototype.matchall "^4.0.2" 767 | 768 | eslint-scope@^5.0.0, eslint-scope@^5.1.1: 769 | version "5.1.1" 770 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 771 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 772 | dependencies: 773 | esrecurse "^4.3.0" 774 | estraverse "^4.1.1" 775 | 776 | eslint-utils@^2.0.0, eslint-utils@^2.1.0: 777 | version "2.1.0" 778 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 779 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 780 | dependencies: 781 | eslint-visitor-keys "^1.1.0" 782 | 783 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 784 | version "1.3.0" 785 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 786 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 787 | 788 | eslint-visitor-keys@^2.0.0: 789 | version "2.0.0" 790 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" 791 | integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== 792 | 793 | eslint@^7.5.0: 794 | version "7.17.0" 795 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.17.0.tgz#4ccda5bf12572ad3bf760e6f195886f50569adb0" 796 | integrity sha512-zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ== 797 | dependencies: 798 | "@babel/code-frame" "^7.0.0" 799 | "@eslint/eslintrc" "^0.2.2" 800 | ajv "^6.10.0" 801 | chalk "^4.0.0" 802 | cross-spawn "^7.0.2" 803 | debug "^4.0.1" 804 | doctrine "^3.0.0" 805 | enquirer "^2.3.5" 806 | eslint-scope "^5.1.1" 807 | eslint-utils "^2.1.0" 808 | eslint-visitor-keys "^2.0.0" 809 | espree "^7.3.1" 810 | esquery "^1.2.0" 811 | esutils "^2.0.2" 812 | file-entry-cache "^6.0.0" 813 | functional-red-black-tree "^1.0.1" 814 | glob-parent "^5.0.0" 815 | globals "^12.1.0" 816 | ignore "^4.0.6" 817 | import-fresh "^3.0.0" 818 | imurmurhash "^0.1.4" 819 | is-glob "^4.0.0" 820 | js-yaml "^3.13.1" 821 | json-stable-stringify-without-jsonify "^1.0.1" 822 | levn "^0.4.1" 823 | lodash "^4.17.19" 824 | minimatch "^3.0.4" 825 | natural-compare "^1.4.0" 826 | optionator "^0.9.1" 827 | progress "^2.0.0" 828 | regexpp "^3.1.0" 829 | semver "^7.2.1" 830 | strip-ansi "^6.0.0" 831 | strip-json-comments "^3.1.0" 832 | table "^6.0.4" 833 | text-table "^0.2.0" 834 | v8-compile-cache "^2.0.3" 835 | 836 | espree@^7.3.0, espree@^7.3.1: 837 | version "7.3.1" 838 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" 839 | integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== 840 | dependencies: 841 | acorn "^7.4.0" 842 | acorn-jsx "^5.3.1" 843 | eslint-visitor-keys "^1.3.0" 844 | 845 | esprima@^4.0.0: 846 | version "4.0.1" 847 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 848 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 849 | 850 | esquery@^1.2.0: 851 | version "1.3.1" 852 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 853 | integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== 854 | dependencies: 855 | estraverse "^5.1.0" 856 | 857 | esrecurse@^4.3.0: 858 | version "4.3.0" 859 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 860 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 861 | dependencies: 862 | estraverse "^5.2.0" 863 | 864 | estraverse@^4.1.1: 865 | version "4.3.0" 866 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 867 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 868 | 869 | estraverse@^5.1.0, estraverse@^5.2.0: 870 | version "5.2.0" 871 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 872 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 873 | 874 | esutils@^2.0.2: 875 | version "2.0.3" 876 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 877 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 878 | 879 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 880 | version "3.1.3" 881 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 882 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 883 | 884 | fast-glob@^3.1.1: 885 | version "3.2.4" 886 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3" 887 | integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ== 888 | dependencies: 889 | "@nodelib/fs.stat" "^2.0.2" 890 | "@nodelib/fs.walk" "^1.2.3" 891 | glob-parent "^5.1.0" 892 | merge2 "^1.3.0" 893 | micromatch "^4.0.2" 894 | picomatch "^2.2.1" 895 | 896 | fast-json-stable-stringify@^2.0.0: 897 | version "2.1.0" 898 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 899 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 900 | 901 | fast-levenshtein@^2.0.6: 902 | version "2.0.6" 903 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 904 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 905 | 906 | fastq@^1.6.0: 907 | version "1.10.0" 908 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.10.0.tgz#74dbefccade964932cdf500473ef302719c652bb" 909 | integrity sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA== 910 | dependencies: 911 | reusify "^1.0.4" 912 | 913 | file-entry-cache@^6.0.0: 914 | version "6.0.0" 915 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.0.tgz#7921a89c391c6d93efec2169ac6bf300c527ea0a" 916 | integrity sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA== 917 | dependencies: 918 | flat-cache "^3.0.4" 919 | 920 | fill-range@^7.0.1: 921 | version "7.0.1" 922 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 923 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 924 | dependencies: 925 | to-regex-range "^5.0.1" 926 | 927 | find-up@^2.0.0, find-up@^2.1.0: 928 | version "2.1.0" 929 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 930 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 931 | dependencies: 932 | locate-path "^2.0.0" 933 | 934 | flat-cache@^3.0.4: 935 | version "3.0.4" 936 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 937 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 938 | dependencies: 939 | flatted "^3.1.0" 940 | rimraf "^3.0.2" 941 | 942 | flatted@^3.1.0: 943 | version "3.1.0" 944 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.0.tgz#a5d06b4a8b01e3a63771daa5cb7a1903e2e57067" 945 | integrity sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA== 946 | 947 | fs.realpath@^1.0.0: 948 | version "1.0.0" 949 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 950 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 951 | 952 | function-bind@^1.1.1: 953 | version "1.1.1" 954 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 955 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 956 | 957 | functional-red-black-tree@^1.0.1: 958 | version "1.0.1" 959 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 960 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 961 | 962 | get-intrinsic@^1.0.1, get-intrinsic@^1.0.2: 963 | version "1.0.2" 964 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.2.tgz#6820da226e50b24894e08859469dc68361545d49" 965 | integrity sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg== 966 | dependencies: 967 | function-bind "^1.1.1" 968 | has "^1.0.3" 969 | has-symbols "^1.0.1" 970 | 971 | glob-parent@^5.0.0, glob-parent@^5.1.0: 972 | version "5.1.1" 973 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 974 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 975 | dependencies: 976 | is-glob "^4.0.1" 977 | 978 | glob@^7.1.1, glob@^7.1.3: 979 | version "7.1.6" 980 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 981 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 982 | dependencies: 983 | fs.realpath "^1.0.0" 984 | inflight "^1.0.4" 985 | inherits "2" 986 | minimatch "^3.0.4" 987 | once "^1.3.0" 988 | path-is-absolute "^1.0.0" 989 | 990 | globals@^11.1.0: 991 | version "11.12.0" 992 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 993 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 994 | 995 | globals@^12.1.0: 996 | version "12.4.0" 997 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 998 | integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 999 | dependencies: 1000 | type-fest "^0.8.1" 1001 | 1002 | globby@^11.0.1: 1003 | version "11.0.2" 1004 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.2.tgz#1af538b766a3b540ebfb58a32b2e2d5897321d83" 1005 | integrity sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og== 1006 | dependencies: 1007 | array-union "^2.1.0" 1008 | dir-glob "^3.0.1" 1009 | fast-glob "^3.1.1" 1010 | ignore "^5.1.4" 1011 | merge2 "^1.3.0" 1012 | slash "^3.0.0" 1013 | 1014 | graceful-fs@^4.1.2: 1015 | version "4.2.4" 1016 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1017 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 1018 | 1019 | has-flag@^3.0.0: 1020 | version "3.0.0" 1021 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1022 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1023 | 1024 | has-flag@^4.0.0: 1025 | version "4.0.0" 1026 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1027 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1028 | 1029 | has-symbols@^1.0.1: 1030 | version "1.0.1" 1031 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1032 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1033 | 1034 | has@^1.0.3: 1035 | version "1.0.3" 1036 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1037 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1038 | dependencies: 1039 | function-bind "^1.1.1" 1040 | 1041 | hosted-git-info@^2.1.4: 1042 | version "2.8.8" 1043 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 1044 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 1045 | 1046 | ignore@^4.0.6: 1047 | version "4.0.6" 1048 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1049 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 1050 | 1051 | ignore@^5.1.4: 1052 | version "5.1.8" 1053 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 1054 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 1055 | 1056 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1057 | version "3.3.0" 1058 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1059 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1060 | dependencies: 1061 | parent-module "^1.0.0" 1062 | resolve-from "^4.0.0" 1063 | 1064 | imurmurhash@^0.1.4: 1065 | version "0.1.4" 1066 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1067 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1068 | 1069 | inflight@^1.0.4: 1070 | version "1.0.6" 1071 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1072 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1073 | dependencies: 1074 | once "^1.3.0" 1075 | wrappy "1" 1076 | 1077 | inherits@2: 1078 | version "2.0.4" 1079 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1080 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1081 | 1082 | internal-slot@^1.0.2: 1083 | version "1.0.2" 1084 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3" 1085 | integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g== 1086 | dependencies: 1087 | es-abstract "^1.17.0-next.1" 1088 | has "^1.0.3" 1089 | side-channel "^1.0.2" 1090 | 1091 | is-arrayish@^0.2.1: 1092 | version "0.2.1" 1093 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1094 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1095 | 1096 | is-callable@^1.1.4, is-callable@^1.2.2: 1097 | version "1.2.2" 1098 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" 1099 | integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== 1100 | 1101 | is-core-module@^2.1.0: 1102 | version "2.2.0" 1103 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 1104 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 1105 | dependencies: 1106 | has "^1.0.3" 1107 | 1108 | is-date-object@^1.0.1: 1109 | version "1.0.2" 1110 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1111 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1112 | 1113 | is-extglob@^2.1.1: 1114 | version "2.1.1" 1115 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1116 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1117 | 1118 | is-fullwidth-code-point@^3.0.0: 1119 | version "3.0.0" 1120 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1121 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1122 | 1123 | is-glob@^4.0.0, is-glob@^4.0.1: 1124 | version "4.0.1" 1125 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1126 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1127 | dependencies: 1128 | is-extglob "^2.1.1" 1129 | 1130 | is-negative-zero@^2.0.0: 1131 | version "2.0.1" 1132 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" 1133 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 1134 | 1135 | is-number@^7.0.0: 1136 | version "7.0.0" 1137 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1138 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1139 | 1140 | is-regex@^1.1.1: 1141 | version "1.1.1" 1142 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 1143 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 1144 | dependencies: 1145 | has-symbols "^1.0.1" 1146 | 1147 | is-string@^1.0.5: 1148 | version "1.0.5" 1149 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 1150 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 1151 | 1152 | is-symbol@^1.0.2: 1153 | version "1.0.3" 1154 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1155 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1156 | dependencies: 1157 | has-symbols "^1.0.1" 1158 | 1159 | isarray@^1.0.0: 1160 | version "1.0.0" 1161 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1162 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1163 | 1164 | isexe@^2.0.0: 1165 | version "2.0.0" 1166 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1167 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1168 | 1169 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1170 | version "4.0.0" 1171 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1172 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1173 | 1174 | js-yaml@^3.13.1: 1175 | version "3.14.1" 1176 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1177 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1178 | dependencies: 1179 | argparse "^1.0.7" 1180 | esprima "^4.0.0" 1181 | 1182 | jsesc@^2.5.1: 1183 | version "2.5.2" 1184 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1185 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1186 | 1187 | json-parse-even-better-errors@^2.3.0: 1188 | version "2.3.1" 1189 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1190 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1191 | 1192 | json-schema-traverse@^0.4.1: 1193 | version "0.4.1" 1194 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1195 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1196 | 1197 | json-schema-traverse@^1.0.0: 1198 | version "1.0.0" 1199 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" 1200 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== 1201 | 1202 | json-stable-stringify-without-jsonify@^1.0.1: 1203 | version "1.0.1" 1204 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1205 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1206 | 1207 | json5@^1.0.1: 1208 | version "1.0.1" 1209 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1210 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1211 | dependencies: 1212 | minimist "^1.2.0" 1213 | 1214 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.1.0: 1215 | version "3.2.0" 1216 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82" 1217 | integrity sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q== 1218 | dependencies: 1219 | array-includes "^3.1.2" 1220 | object.assign "^4.1.2" 1221 | 1222 | language-subtag-registry@~0.3.2: 1223 | version "0.3.21" 1224 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" 1225 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== 1226 | 1227 | language-tags@^1.0.5: 1228 | version "1.0.5" 1229 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1230 | integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo= 1231 | dependencies: 1232 | language-subtag-registry "~0.3.2" 1233 | 1234 | levn@^0.4.1: 1235 | version "0.4.1" 1236 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1237 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1238 | dependencies: 1239 | prelude-ls "^1.2.1" 1240 | type-check "~0.4.0" 1241 | 1242 | license-checker@^25.0.1: 1243 | version "25.0.1" 1244 | resolved "https://registry.yarnpkg.com/license-checker/-/license-checker-25.0.1.tgz#4d14504478a5240a857bb3c21cd0491a00d761fa" 1245 | integrity sha512-mET5AIwl7MR2IAKYYoVBBpV0OnkKQ1xGj2IMMeEFIs42QAkEVjRtFZGWmQ28WeU7MP779iAgOaOy93Mn44mn6g== 1246 | dependencies: 1247 | chalk "^2.4.1" 1248 | debug "^3.1.0" 1249 | mkdirp "^0.5.1" 1250 | nopt "^4.0.1" 1251 | read-installed "~4.0.3" 1252 | semver "^5.5.0" 1253 | spdx-correct "^3.0.0" 1254 | spdx-expression-parse "^3.0.0" 1255 | spdx-satisfies "^4.0.0" 1256 | treeify "^1.1.0" 1257 | 1258 | load-json-file@^2.0.0: 1259 | version "2.0.0" 1260 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1261 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 1262 | dependencies: 1263 | graceful-fs "^4.1.2" 1264 | parse-json "^2.2.0" 1265 | pify "^2.0.0" 1266 | strip-bom "^3.0.0" 1267 | 1268 | locate-path@^2.0.0: 1269 | version "2.0.0" 1270 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1271 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1272 | dependencies: 1273 | p-locate "^2.0.0" 1274 | path-exists "^3.0.0" 1275 | 1276 | lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20: 1277 | version "4.17.20" 1278 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 1279 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 1280 | 1281 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1282 | version "1.4.0" 1283 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1284 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1285 | dependencies: 1286 | js-tokens "^3.0.0 || ^4.0.0" 1287 | 1288 | lru-cache@^6.0.0: 1289 | version "6.0.0" 1290 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1291 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1292 | dependencies: 1293 | yallist "^4.0.0" 1294 | 1295 | merge2@^1.3.0: 1296 | version "1.4.1" 1297 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1298 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1299 | 1300 | micromatch@^4.0.2: 1301 | version "4.0.2" 1302 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 1303 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 1304 | dependencies: 1305 | braces "^3.0.1" 1306 | picomatch "^2.0.5" 1307 | 1308 | minimatch@^3.0.4: 1309 | version "3.0.4" 1310 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1311 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1312 | dependencies: 1313 | brace-expansion "^1.1.7" 1314 | 1315 | minimist@^1.2.0, minimist@^1.2.5: 1316 | version "1.2.5" 1317 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1318 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1319 | 1320 | mkdirp@^0.5.1: 1321 | version "0.5.5" 1322 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1323 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1324 | dependencies: 1325 | minimist "^1.2.5" 1326 | 1327 | ms@2.0.0: 1328 | version "2.0.0" 1329 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1330 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1331 | 1332 | ms@2.1.2: 1333 | version "2.1.2" 1334 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1335 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1336 | 1337 | ms@^2.1.1: 1338 | version "2.1.3" 1339 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1340 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1341 | 1342 | nanoid@^3.1.20: 1343 | version "3.1.20" 1344 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" 1345 | integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== 1346 | 1347 | natural-compare@^1.4.0: 1348 | version "1.4.0" 1349 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1350 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1351 | 1352 | nopt@^4.0.1: 1353 | version "4.0.3" 1354 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" 1355 | integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== 1356 | dependencies: 1357 | abbrev "1" 1358 | osenv "^0.1.4" 1359 | 1360 | normalize-package-data@^2.0.0, normalize-package-data@^2.3.2: 1361 | version "2.5.0" 1362 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1363 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1364 | dependencies: 1365 | hosted-git-info "^2.1.4" 1366 | resolve "^1.10.0" 1367 | semver "2 || 3 || 4 || 5" 1368 | validate-npm-package-license "^3.0.1" 1369 | 1370 | npm-normalize-package-bin@^1.0.0: 1371 | version "1.0.1" 1372 | resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" 1373 | integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== 1374 | 1375 | object-assign@^4.1.1: 1376 | version "4.1.1" 1377 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1378 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1379 | 1380 | object-inspect@^1.8.0, object-inspect@^1.9.0: 1381 | version "1.9.0" 1382 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" 1383 | integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== 1384 | 1385 | object-keys@^1.0.12, object-keys@^1.1.1: 1386 | version "1.1.1" 1387 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1388 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1389 | 1390 | object.assign@^4.1.1, object.assign@^4.1.2: 1391 | version "4.1.2" 1392 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1393 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1394 | dependencies: 1395 | call-bind "^1.0.0" 1396 | define-properties "^1.1.3" 1397 | has-symbols "^1.0.1" 1398 | object-keys "^1.1.1" 1399 | 1400 | object.entries@^1.1.2: 1401 | version "1.1.3" 1402 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz#c601c7f168b62374541a07ddbd3e2d5e4f7711a6" 1403 | integrity sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg== 1404 | dependencies: 1405 | call-bind "^1.0.0" 1406 | define-properties "^1.1.3" 1407 | es-abstract "^1.18.0-next.1" 1408 | has "^1.0.3" 1409 | 1410 | object.fromentries@^2.0.2: 1411 | version "2.0.3" 1412 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.3.tgz#13cefcffa702dc67750314a3305e8cb3fad1d072" 1413 | integrity sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw== 1414 | dependencies: 1415 | call-bind "^1.0.0" 1416 | define-properties "^1.1.3" 1417 | es-abstract "^1.18.0-next.1" 1418 | has "^1.0.3" 1419 | 1420 | object.values@^1.1.1: 1421 | version "1.1.2" 1422 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.2.tgz#7a2015e06fcb0f546bd652486ce8583a4731c731" 1423 | integrity sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag== 1424 | dependencies: 1425 | call-bind "^1.0.0" 1426 | define-properties "^1.1.3" 1427 | es-abstract "^1.18.0-next.1" 1428 | has "^1.0.3" 1429 | 1430 | once@^1.3.0: 1431 | version "1.4.0" 1432 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1433 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1434 | dependencies: 1435 | wrappy "1" 1436 | 1437 | optionator@^0.9.1: 1438 | version "0.9.1" 1439 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1440 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1441 | dependencies: 1442 | deep-is "^0.1.3" 1443 | fast-levenshtein "^2.0.6" 1444 | levn "^0.4.1" 1445 | prelude-ls "^1.2.1" 1446 | type-check "^0.4.0" 1447 | word-wrap "^1.2.3" 1448 | 1449 | os-homedir@^1.0.0: 1450 | version "1.0.2" 1451 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1452 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 1453 | 1454 | os-tmpdir@^1.0.0: 1455 | version "1.0.2" 1456 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1457 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1458 | 1459 | osenv@^0.1.4: 1460 | version "0.1.5" 1461 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1462 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== 1463 | dependencies: 1464 | os-homedir "^1.0.0" 1465 | os-tmpdir "^1.0.0" 1466 | 1467 | p-limit@^1.1.0: 1468 | version "1.3.0" 1469 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1470 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1471 | dependencies: 1472 | p-try "^1.0.0" 1473 | 1474 | p-locate@^2.0.0: 1475 | version "2.0.0" 1476 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1477 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1478 | dependencies: 1479 | p-limit "^1.1.0" 1480 | 1481 | p-try@^1.0.0: 1482 | version "1.0.0" 1483 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1484 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1485 | 1486 | parent-module@^1.0.0: 1487 | version "1.0.1" 1488 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1489 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1490 | dependencies: 1491 | callsites "^3.0.0" 1492 | 1493 | parse-json@^2.2.0: 1494 | version "2.2.0" 1495 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1496 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1497 | dependencies: 1498 | error-ex "^1.2.0" 1499 | 1500 | path-exists@^3.0.0: 1501 | version "3.0.0" 1502 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1503 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1504 | 1505 | path-is-absolute@^1.0.0: 1506 | version "1.0.1" 1507 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1508 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1509 | 1510 | path-key@^3.1.0: 1511 | version "3.1.1" 1512 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1513 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1514 | 1515 | path-parse@^1.0.6: 1516 | version "1.0.6" 1517 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1518 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1519 | 1520 | path-type@^2.0.0: 1521 | version "2.0.0" 1522 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1523 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 1524 | dependencies: 1525 | pify "^2.0.0" 1526 | 1527 | path-type@^4.0.0: 1528 | version "4.0.0" 1529 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1530 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1531 | 1532 | picomatch@^2.0.5, picomatch@^2.2.1: 1533 | version "2.2.2" 1534 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 1535 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 1536 | 1537 | pify@^2.0.0: 1538 | version "2.3.0" 1539 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1540 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1541 | 1542 | pkg-dir@^2.0.0: 1543 | version "2.0.0" 1544 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 1545 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 1546 | dependencies: 1547 | find-up "^2.1.0" 1548 | 1549 | prelude-ls@^1.2.1: 1550 | version "1.2.1" 1551 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1552 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1553 | 1554 | prettier@^2.2.1: 1555 | version "2.2.1" 1556 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" 1557 | integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== 1558 | 1559 | progress@^2.0.0: 1560 | version "2.0.3" 1561 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1562 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1563 | 1564 | prop-types@^15.7.2: 1565 | version "15.7.2" 1566 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 1567 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 1568 | dependencies: 1569 | loose-envify "^1.4.0" 1570 | object-assign "^4.1.1" 1571 | react-is "^16.8.1" 1572 | 1573 | punycode@^2.1.0: 1574 | version "2.1.1" 1575 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1576 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1577 | 1578 | react-dom@^17.0.1: 1579 | version "17.0.1" 1580 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.1.tgz#1de2560474ec9f0e334285662ede52dbc5426fc6" 1581 | integrity sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug== 1582 | dependencies: 1583 | loose-envify "^1.1.0" 1584 | object-assign "^4.1.1" 1585 | scheduler "^0.20.1" 1586 | 1587 | react-is@^16.8.1: 1588 | version "16.13.1" 1589 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1590 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1591 | 1592 | react@^17.0.1: 1593 | version "17.0.1" 1594 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.1.tgz#6e0600416bd57574e3f86d92edba3d9008726127" 1595 | integrity sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w== 1596 | dependencies: 1597 | loose-envify "^1.1.0" 1598 | object-assign "^4.1.1" 1599 | 1600 | read-installed@~4.0.3: 1601 | version "4.0.3" 1602 | resolved "https://registry.yarnpkg.com/read-installed/-/read-installed-4.0.3.tgz#ff9b8b67f187d1e4c29b9feb31f6b223acd19067" 1603 | integrity sha1-/5uLZ/GH0eTCm5/rMfayI6zRkGc= 1604 | dependencies: 1605 | debuglog "^1.0.1" 1606 | read-package-json "^2.0.0" 1607 | readdir-scoped-modules "^1.0.0" 1608 | semver "2 || 3 || 4 || 5" 1609 | slide "~1.1.3" 1610 | util-extend "^1.0.1" 1611 | optionalDependencies: 1612 | graceful-fs "^4.1.2" 1613 | 1614 | read-package-json@^2.0.0: 1615 | version "2.1.2" 1616 | resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.2.tgz#6992b2b66c7177259feb8eaac73c3acd28b9222a" 1617 | integrity sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA== 1618 | dependencies: 1619 | glob "^7.1.1" 1620 | json-parse-even-better-errors "^2.3.0" 1621 | normalize-package-data "^2.0.0" 1622 | npm-normalize-package-bin "^1.0.0" 1623 | 1624 | read-pkg-up@^2.0.0: 1625 | version "2.0.0" 1626 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1627 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 1628 | dependencies: 1629 | find-up "^2.0.0" 1630 | read-pkg "^2.0.0" 1631 | 1632 | read-pkg@^2.0.0: 1633 | version "2.0.0" 1634 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1635 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 1636 | dependencies: 1637 | load-json-file "^2.0.0" 1638 | normalize-package-data "^2.3.2" 1639 | path-type "^2.0.0" 1640 | 1641 | readdir-scoped-modules@^1.0.0: 1642 | version "1.1.0" 1643 | resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309" 1644 | integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw== 1645 | dependencies: 1646 | debuglog "^1.0.1" 1647 | dezalgo "^1.0.0" 1648 | graceful-fs "^4.1.2" 1649 | once "^1.3.0" 1650 | 1651 | regenerator-runtime@^0.13.4: 1652 | version "0.13.7" 1653 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" 1654 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== 1655 | 1656 | regexp.prototype.flags@^1.3.0: 1657 | version "1.3.0" 1658 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" 1659 | integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== 1660 | dependencies: 1661 | define-properties "^1.1.3" 1662 | es-abstract "^1.17.0-next.1" 1663 | 1664 | regexpp@^3.0.0, regexpp@^3.1.0: 1665 | version "3.1.0" 1666 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 1667 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 1668 | 1669 | require-from-string@^2.0.2: 1670 | version "2.0.2" 1671 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 1672 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 1673 | 1674 | resolve-from@^4.0.0: 1675 | version "4.0.0" 1676 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1677 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1678 | 1679 | resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.18.1: 1680 | version "1.19.0" 1681 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" 1682 | integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== 1683 | dependencies: 1684 | is-core-module "^2.1.0" 1685 | path-parse "^1.0.6" 1686 | 1687 | reusify@^1.0.4: 1688 | version "1.0.4" 1689 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1690 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1691 | 1692 | rimraf@^3.0.2: 1693 | version "3.0.2" 1694 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1695 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1696 | dependencies: 1697 | glob "^7.1.3" 1698 | 1699 | run-parallel@^1.1.9: 1700 | version "1.1.10" 1701 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz#60a51b2ae836636c81377df16cb107351bcd13ef" 1702 | integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw== 1703 | 1704 | scheduler@^0.20.1: 1705 | version "0.20.1" 1706 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.1.tgz#da0b907e24026b01181ecbc75efdc7f27b5a000c" 1707 | integrity sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw== 1708 | dependencies: 1709 | loose-envify "^1.1.0" 1710 | object-assign "^4.1.1" 1711 | 1712 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 1713 | version "5.7.1" 1714 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1715 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1716 | 1717 | semver@^7.2.1, semver@^7.3.2: 1718 | version "7.3.4" 1719 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" 1720 | integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== 1721 | dependencies: 1722 | lru-cache "^6.0.0" 1723 | 1724 | shebang-command@^2.0.0: 1725 | version "2.0.0" 1726 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1727 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1728 | dependencies: 1729 | shebang-regex "^3.0.0" 1730 | 1731 | shebang-regex@^3.0.0: 1732 | version "3.0.0" 1733 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1734 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1735 | 1736 | side-channel@^1.0.2, side-channel@^1.0.3: 1737 | version "1.0.4" 1738 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1739 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1740 | dependencies: 1741 | call-bind "^1.0.0" 1742 | get-intrinsic "^1.0.2" 1743 | object-inspect "^1.9.0" 1744 | 1745 | slash@^3.0.0: 1746 | version "3.0.0" 1747 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1748 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1749 | 1750 | slice-ansi@^4.0.0: 1751 | version "4.0.0" 1752 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 1753 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 1754 | dependencies: 1755 | ansi-styles "^4.0.0" 1756 | astral-regex "^2.0.0" 1757 | is-fullwidth-code-point "^3.0.0" 1758 | 1759 | slide@~1.1.3: 1760 | version "1.1.6" 1761 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 1762 | integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc= 1763 | 1764 | source-map@^0.5.0: 1765 | version "0.5.7" 1766 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1767 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 1768 | 1769 | spdx-compare@^1.0.0: 1770 | version "1.0.0" 1771 | resolved "https://registry.yarnpkg.com/spdx-compare/-/spdx-compare-1.0.0.tgz#2c55f117362078d7409e6d7b08ce70a857cd3ed7" 1772 | integrity sha512-C1mDZOX0hnu0ep9dfmuoi03+eOdDoz2yvK79RxbcrVEG1NO1Ph35yW102DHWKN4pk80nwCgeMmSY5L25VE4D9A== 1773 | dependencies: 1774 | array-find-index "^1.0.2" 1775 | spdx-expression-parse "^3.0.0" 1776 | spdx-ranges "^2.0.0" 1777 | 1778 | spdx-correct@^3.0.0: 1779 | version "3.1.1" 1780 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1781 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1782 | dependencies: 1783 | spdx-expression-parse "^3.0.0" 1784 | spdx-license-ids "^3.0.0" 1785 | 1786 | spdx-exceptions@^2.1.0: 1787 | version "2.3.0" 1788 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1789 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1790 | 1791 | spdx-expression-parse@^3.0.0: 1792 | version "3.0.1" 1793 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1794 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1795 | dependencies: 1796 | spdx-exceptions "^2.1.0" 1797 | spdx-license-ids "^3.0.0" 1798 | 1799 | spdx-license-ids@^3.0.0: 1800 | version "3.0.7" 1801 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" 1802 | integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== 1803 | 1804 | spdx-ranges@^2.0.0: 1805 | version "2.1.1" 1806 | resolved "https://registry.yarnpkg.com/spdx-ranges/-/spdx-ranges-2.1.1.tgz#87573927ba51e92b3f4550ab60bfc83dd07bac20" 1807 | integrity sha512-mcdpQFV7UDAgLpXEE/jOMqvK4LBoO0uTQg0uvXUewmEFhpiZx5yJSZITHB8w1ZahKdhfZqP5GPEOKLyEq5p8XA== 1808 | 1809 | spdx-satisfies@^4.0.0: 1810 | version "4.0.1" 1811 | resolved "https://registry.yarnpkg.com/spdx-satisfies/-/spdx-satisfies-4.0.1.tgz#9a09a68d80f5f1a31cfaebb384b0c6009e4969fe" 1812 | integrity sha512-WVzZ/cXAzoNmjCWiEluEA3BjHp5tiUmmhn9MK+X0tBbR9sOqtC6UQwmgCNrAIZvNlMuBUYAaHYfb2oqlF9SwKA== 1813 | dependencies: 1814 | spdx-compare "^1.0.0" 1815 | spdx-expression-parse "^3.0.0" 1816 | spdx-ranges "^2.0.0" 1817 | 1818 | sprintf-js@~1.0.2: 1819 | version "1.0.3" 1820 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1821 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 1822 | 1823 | string-natural-compare@^3.0.1: 1824 | version "3.0.1" 1825 | resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4" 1826 | integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw== 1827 | 1828 | string-width@^4.2.0: 1829 | version "4.2.0" 1830 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 1831 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 1832 | dependencies: 1833 | emoji-regex "^8.0.0" 1834 | is-fullwidth-code-point "^3.0.0" 1835 | strip-ansi "^6.0.0" 1836 | 1837 | string.prototype.matchall@^4.0.2: 1838 | version "4.0.3" 1839 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.3.tgz#24243399bc31b0a49d19e2b74171a15653ec996a" 1840 | integrity sha512-OBxYDA2ifZQ2e13cP82dWFMaCV9CGF8GzmN4fljBVw5O5wep0lu4gacm1OL6MjROoUnB8VbkWRThqkV2YFLNxw== 1841 | dependencies: 1842 | call-bind "^1.0.0" 1843 | define-properties "^1.1.3" 1844 | es-abstract "^1.18.0-next.1" 1845 | has-symbols "^1.0.1" 1846 | internal-slot "^1.0.2" 1847 | regexp.prototype.flags "^1.3.0" 1848 | side-channel "^1.0.3" 1849 | 1850 | string.prototype.trimend@^1.0.1: 1851 | version "1.0.3" 1852 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b" 1853 | integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== 1854 | dependencies: 1855 | call-bind "^1.0.0" 1856 | define-properties "^1.1.3" 1857 | 1858 | string.prototype.trimstart@^1.0.1: 1859 | version "1.0.3" 1860 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa" 1861 | integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== 1862 | dependencies: 1863 | call-bind "^1.0.0" 1864 | define-properties "^1.1.3" 1865 | 1866 | strip-ansi@^6.0.0: 1867 | version "6.0.0" 1868 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1869 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1870 | dependencies: 1871 | ansi-regex "^5.0.0" 1872 | 1873 | strip-bom@^3.0.0: 1874 | version "3.0.0" 1875 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1876 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1877 | 1878 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1879 | version "3.1.1" 1880 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1881 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1882 | 1883 | supports-color@^5.3.0: 1884 | version "5.5.0" 1885 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1886 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1887 | dependencies: 1888 | has-flag "^3.0.0" 1889 | 1890 | supports-color@^7.1.0: 1891 | version "7.2.0" 1892 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1893 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1894 | dependencies: 1895 | has-flag "^4.0.0" 1896 | 1897 | table@^6.0.4: 1898 | version "6.0.7" 1899 | resolved "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz#e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34" 1900 | integrity sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g== 1901 | dependencies: 1902 | ajv "^7.0.2" 1903 | lodash "^4.17.20" 1904 | slice-ansi "^4.0.0" 1905 | string-width "^4.2.0" 1906 | 1907 | text-table@^0.2.0: 1908 | version "0.2.0" 1909 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1910 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1911 | 1912 | to-fast-properties@^2.0.0: 1913 | version "2.0.0" 1914 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1915 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 1916 | 1917 | to-regex-range@^5.0.1: 1918 | version "5.0.1" 1919 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1920 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1921 | dependencies: 1922 | is-number "^7.0.0" 1923 | 1924 | treeify@^1.1.0: 1925 | version "1.1.0" 1926 | resolved "https://registry.yarnpkg.com/treeify/-/treeify-1.1.0.tgz#4e31c6a463accd0943879f30667c4fdaff411bb8" 1927 | integrity sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A== 1928 | 1929 | tsconfig-paths@^3.9.0: 1930 | version "3.9.0" 1931 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" 1932 | integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== 1933 | dependencies: 1934 | "@types/json5" "^0.0.29" 1935 | json5 "^1.0.1" 1936 | minimist "^1.2.0" 1937 | strip-bom "^3.0.0" 1938 | 1939 | tslib@^1.8.1: 1940 | version "1.14.1" 1941 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 1942 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 1943 | 1944 | tsutils@^3.17.1: 1945 | version "3.19.1" 1946 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.19.1.tgz#d8566e0c51c82f32f9c25a4d367cd62409a547a9" 1947 | integrity sha512-GEdoBf5XI324lu7ycad7s6laADfnAqCw6wLGI+knxvw9vsIYBaJfYdmeCEG3FMMUiSm3OGgNb+m6utsWf5h9Vw== 1948 | dependencies: 1949 | tslib "^1.8.1" 1950 | 1951 | type-check@^0.4.0, type-check@~0.4.0: 1952 | version "0.4.0" 1953 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1954 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1955 | dependencies: 1956 | prelude-ls "^1.2.1" 1957 | 1958 | type-fest@^0.8.1: 1959 | version "0.8.1" 1960 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1961 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1962 | 1963 | typescript@^4.1.3: 1964 | version "4.1.3" 1965 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.1.3.tgz#519d582bd94cba0cf8934c7d8e8467e473f53bb7" 1966 | integrity sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg== 1967 | 1968 | uri-js@^4.2.2: 1969 | version "4.4.1" 1970 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1971 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1972 | dependencies: 1973 | punycode "^2.1.0" 1974 | 1975 | util-extend@^1.0.1: 1976 | version "1.0.3" 1977 | resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" 1978 | integrity sha1-p8IW0mdUUWljeztu3GypEZ4v+T8= 1979 | 1980 | v8-compile-cache@^2.0.3: 1981 | version "2.2.0" 1982 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132" 1983 | integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== 1984 | 1985 | validate-npm-package-license@^3.0.1: 1986 | version "3.0.4" 1987 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1988 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1989 | dependencies: 1990 | spdx-correct "^3.0.0" 1991 | spdx-expression-parse "^3.0.0" 1992 | 1993 | which@^2.0.1: 1994 | version "2.0.2" 1995 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1996 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1997 | dependencies: 1998 | isexe "^2.0.0" 1999 | 2000 | word-wrap@^1.2.3: 2001 | version "1.2.3" 2002 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2003 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2004 | 2005 | wrappy@1: 2006 | version "1.0.2" 2007 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2008 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2009 | 2010 | yallist@^4.0.0: 2011 | version "4.0.0" 2012 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2013 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2014 | --------------------------------------------------------------------------------