├── .npmignore ├── .nvmrc ├── jest.config.js ├── .prettierrc ├── .gitignore ├── tsconfig.json ├── package.json ├── src ├── index.tsx └── index.test.tsx ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | src -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | testEnvironment: 'jsdom', 4 | }; -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "jsxSingleQuote": false, 4 | "useTabs": false, 5 | "printWidth": 80, 6 | "tabWidth": 2, 7 | "trailingComma": "all", 8 | "jsxBracketSameLine": false 9 | } 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | 3 | .vscode 4 | 5 | # dependencies 6 | node_modules 7 | 8 | # testing 9 | coverage 10 | 11 | # typescript 12 | .tscache 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "include": ["src/**/*.ts", "src/**/*.tsx"], 3 | "exclude": ["build", "src/**/*.test.ts", "src/**/*.test.tsx"], 4 | "compilerOptions": { 5 | "rootDir": "src", 6 | "outDir": "build", 7 | "declaration": true, 8 | "sourceMap": true, 9 | "strict": false, 10 | "module": "commonjs", 11 | "target": "esnext", 12 | "jsx": "react-jsx", 13 | "moduleResolution": "node", 14 | "allowSyntheticDefaultImports": true, 15 | "esModuleInterop": true, 16 | "lib": ["es2015", "es2016", "es2017", "dom"] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-accessible-headings", 3 | "version": "4.1.1", 4 | "description": "Accessible dynamic H1, H2, that will adjust for accessibility reasons! WCAG ARIA", 5 | "main": "./build/index.js", 6 | "scripts": { 7 | "build": "tsc", 8 | "prepublishOnly": "yarn build", 9 | "test": "jest" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/springload/react-accessible-headings/" 14 | }, 15 | "keywords": [ 16 | "react", 17 | "accessibility", 18 | "a11y", 19 | "wcag", 20 | "aria", 21 | "aria-level", 22 | "heading", 23 | "level", 24 | "depth", 25 | "h1", 26 | "h2" 27 | ], 28 | "author": "Matthew Holloway", 29 | "license": "ISC", 30 | "devDependencies": { 31 | "@testing-library/react": "^11.0.4", 32 | "@types/jest": "^26.0.14", 33 | "@types/node": "^17.0.21", 34 | "@types/react": "^18.0.5", 35 | "@types/react-dom": "^18.0.1", 36 | "jest": "26.5.3", 37 | "ts-jest": "^26.4.1", 38 | "typescript": "^4.6.3" 39 | }, 40 | "peerDependencies": { 41 | "react": ">16.8 || ^17.0.0 || ^18.0.0", 42 | "react-dom": ">16.8 || ^17.0.0 || ^18.0.0" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | createElement, 3 | createContext, 4 | useContext, 5 | DetailedHTMLProps, 6 | HTMLAttributes, 7 | ReactNode, 8 | } from 'react'; 9 | 10 | export const HeadingsContext = createContext< 11 | | undefined 12 | | { 13 | level: number; 14 | hClassName?: string; 15 | } 16 | >({ level: 1 }); 17 | 18 | type LevelProps = { 19 | value?: number; 20 | children: ReactNode; 21 | hClassName?: string; 22 | }; 23 | 24 | export function Level({ children, value, hClassName }: LevelProps) { 25 | const context = useContext(HeadingsContext); 26 | const level = levelRange(value !== undefined ? value : context.level + 1); 27 | 28 | return ( 29 | 35 | {children} 36 | 37 | ); 38 | } 39 | 40 | type HeadingProps = { 41 | offset?: number; 42 | } & DetailedHTMLProps, HTMLHeadingElement>; 43 | 44 | export function H({ 45 | children, 46 | offset, 47 | className, 48 | ...otherProps 49 | }: HeadingProps) { 50 | const context = useContext(HeadingsContext); 51 | const proposedLevel = context.level + (offset !== undefined ? offset : 0); 52 | const level = levelRange(proposedLevel); 53 | 54 | // merge and trim unneeded spaces between classNames 55 | const mergedClassName = [context.hClassName, className] 56 | .filter(Boolean) 57 | .join(' '); 58 | 59 | setTimeout(checkHeadingLevelsDom, CHECK_AFTER_MS); 60 | 61 | // couldn't have JSX syntax, because ts throws 62 | // "Property 'children' does not exist on type 'IntrinsicAttributes'" 63 | return createElement( 64 | `h${level}`, 65 | { className: mergedClassName, ...otherProps }, 66 | children, 67 | ); 68 | } 69 | 70 | function levelRange(level: number): number { 71 | if (level > 0 && level <= MAXIMUM_LEVEL) { 72 | return level; 73 | } 74 | const errorMessage = `Heading level "${level}" is not valid HTML5 which only allows levels 1-${MAXIMUM_LEVEL}`; 75 | console.error(errorMessage); 76 | return Math.min(Math.max(1, level), MAXIMUM_LEVEL); 77 | } 78 | 79 | export function useLevel(): number { 80 | const context = useContext(HeadingsContext); 81 | setTimeout(checkHeadingLevelsDom, CHECK_AFTER_MS); 82 | return levelRange(context.level); 83 | } 84 | 85 | export function useHClassName(): string { 86 | const context = useContext(HeadingsContext); 87 | return context.hClassName || ''; 88 | } 89 | 90 | function checkHeadingLevelsDom() { 91 | if (typeof window === 'undefined') return; // No need to run during SSR 92 | checkHeadingLevels( 93 | Array.from(document.querySelectorAll('h1,h2,h3,h4,h5,h6')).map((elm) => 94 | parseFloat(elm.tagName.substring(1)), 95 | ), 96 | ); 97 | } 98 | 99 | export function checkHeadingLevels(headings: number[]): number[] { 100 | const badHeadings = getBadHeadings(headings); 101 | if (badHeadings.length > 0) { 102 | const errorMessage = `WCAG accessibility issue detected: skipped heading levels ${badHeadings.map( 103 | (num) => `h${num}`, 104 | )}. See https://www.npmjs.com/package/react-accessible-headings#why`; 105 | console.error(errorMessage); 106 | } 107 | return badHeadings; 108 | } 109 | 110 | function getBadHeadings(headings: number[]): number[] { 111 | return headings.filter( 112 | // multiple H1s are not recommended. See docs. 113 | (heading): boolean => heading === 1, 114 | ).length >= 2 || 115 | headings.some((heading, index, arr): boolean => { 116 | // detect skipped levels 117 | const precedingHeading = arr[index - 1]; 118 | if (!precedingHeading) return false; 119 | return heading > precedingHeading + 1; 120 | }) 121 | ? headings 122 | : []; 123 | } 124 | 125 | const MAXIMUM_LEVEL = 6; 126 | 127 | const CHECK_AFTER_MS = 1; // used in setTimeout and browsers will typically clamp this to ~5ms 128 | -------------------------------------------------------------------------------- /src/index.test.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from '@testing-library/react'; 3 | 4 | import { checkHeadingLevels, H, Level, useHClassName, useLevel } from './index'; 5 | 6 | test('H renders an H1 be default', () => { 7 | const { getByText } = render(Foo); 8 | const headingEl = getByText('Foo'); 9 | 10 | expect(headingEl.tagName).toBe('H1'); 11 | }); 12 | 13 | test('H respects the offset prop', () => { 14 | const { getByText } = render(Foo); 15 | const headingEl = getByText('Foo'); 16 | 17 | expect(headingEl.tagName).toBe('H2'); 18 | }); 19 | 20 | test('Level increments the level rendered by H', () => { 21 | const { getByText } = render( 22 | 23 | Foo 24 | , 25 | ); 26 | const headingEl = getByText('Foo'); 27 | 28 | expect(headingEl.tagName).toBe('H2'); 29 | }); 30 | 31 | test('Level allows overriding the level', () => { 32 | const { getByText } = render( 33 | 34 | Foo 35 | , 36 | ); 37 | const headingEl = getByText('Foo'); 38 | 39 | expect(headingEl.tagName).toBe('H3'); 40 | }); 41 | 42 | test('Error if level is > 6', () => { 43 | const consoleMock = jest.spyOn(console, 'error').mockImplementation(); 44 | expect(consoleMock).not.toBeCalled(); 45 | render({''}); 46 | expect(consoleMock).toBeCalled(); 47 | consoleMock.mockRestore(); 48 | }); 49 | 50 | test('Valid heading levels are ignored', () => { 51 | const consoleMock = jest.spyOn(console, 'error').mockImplementation(); 52 | const goodHeadings = [1, 2, 3, 2]; 53 | expect(consoleMock).not.toBeCalled(); 54 | checkHeadingLevels(goodHeadings); 55 | expect(consoleMock).not.toBeCalled(); 56 | consoleMock.mockRestore(); 57 | }); 58 | 59 | test('Valid heading levels are ignored', () => { 60 | const consoleMock = jest.spyOn(console, 'error').mockImplementation(); 61 | const goodHeadings2 = [2, 3, 2, 1, 2, 3, 2]; 62 | expect(consoleMock).not.toBeCalled(); 63 | checkHeadingLevels(goodHeadings2); 64 | expect(consoleMock).not.toBeCalled(); 65 | consoleMock.mockRestore(); 66 | }); 67 | 68 | test('Valid heading levels are ignored', () => { 69 | const consoleMock = jest.spyOn(console, 'error').mockImplementation(); 70 | const goodHeadings3 = [1, 2, 3, 2]; 71 | expect(consoleMock).not.toBeCalled(); 72 | checkHeadingLevels(goodHeadings3); 73 | expect(consoleMock).not.toBeCalled(); 74 | consoleMock.mockRestore(); 75 | }); 76 | 77 | test('Invalid skipped headings are detected', () => { 78 | const consoleMock = jest.spyOn(console, 'error').mockImplementation(); 79 | const skippedHeadings = [1, 2, 4, 2]; 80 | expect(consoleMock).not.toBeCalled(); 81 | checkHeadingLevels(skippedHeadings); 82 | expect(consoleMock).toBeCalled(); 83 | consoleMock.mockRestore(); 84 | }); 85 | 86 | test('Multiple h1s are detected', () => { 87 | const consoleMock = jest.spyOn(console, 'error').mockImplementation(); 88 | const multipleH1s = [1, 2, 3, 1]; 89 | expect(consoleMock).not.toBeCalled(); 90 | checkHeadingLevels(multipleH1s); 91 | expect(consoleMock).toBeCalled(); 92 | consoleMock.mockRestore(); 93 | }); 94 | 95 | test('hClassName sets className on every decendant H elements', () => { 96 | const { getAllByText } = render( 97 | 98 | Foo 99 | Foo 100 | 101 | Foo 102 | 103 | , 104 | ); 105 | 106 | const hClassNames = getAllByText('Foo').map((el) => el.className); 107 | expect(hClassNames).toEqual(['h', 'h', 'h']); 108 | }); 109 | 110 | test('H elements can have className', () => { 111 | const { getByText } = render( 112 | 113 | Bar 114 | , 115 | ); 116 | 117 | const headingEl = getByText('Bar'); 118 | expect(headingEl.className).toBe('foo'); 119 | }); 120 | 121 | test("H element's className does not override hClassName", () => { 122 | const { getByText } = render( 123 | 124 | Baz 125 | , 126 | ); 127 | 128 | const headingEl = getByText('Baz'); 129 | expect(headingEl.className).toBe('foo bar'); 130 | }); 131 | 132 | test("Child's hClassName overrides the parent", () => { 133 | const { getByText } = render( 134 | 135 | 136 | Baz 137 | 138 | , 139 | ); 140 | 141 | const headingEl = getByText('Baz'); 142 | expect(headingEl.className).toBe('bar'); 143 | }); 144 | 145 | test('useHClassName returns the correct className', () => { 146 | function Test() { 147 | const className = useHClassName(); 148 | expect(className).toBe('foo'); 149 | return null; 150 | } 151 | 152 | render( 153 | 154 | 155 | , 156 | ); 157 | }); 158 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-accessible-headings 2 | 3 | ## Why? 4 | 5 | In order to make accessible web pages the [W3C: WCAG, WAI say](https://www.w3.org/WAI/tutorials/page-structure/headings/), 6 | 7 | > Skipping heading ranks can be confusing and should be avoided where possible: Make sure that a `

` is not followed directly by an `

`, for example. 8 | 9 | So an accessible app **must** not have heading levels like this... 10 | 11 | - H1 12 | - H6 13 | - H3 14 | - H1 (there should only be a single H1!) 15 | - H5 16 | - H4 17 | - H4 18 | - H1 19 | 20 | Instead they should look like, 21 | 22 | - H1 23 | - H2 24 | - H3 25 | - H3 26 | - H2 27 | - H3 28 | - H4 29 | - H4 30 | - H2 31 | 32 | ## Why a React library? 33 | 34 | However as developers of React components it's hard to make components match this semantic hierarchy. We typically hardcode heading levels, like an `

`, or an `

`, into a component. This would limit its flexibility and make it harder to adhere to W3C WCAG. 35 | 36 | By using `react-accessible-headings` you can have components with **flexible headings that fit the appropriate heading level**, allowing you to more easily create accessible components, with headings that don't skip levels. 37 | 38 | Could you instead write components that accept `props` to set a heading level? Sure. But that requires manual maintenance of the hierarchy. Indenting becomes harder, and it's easier to make mistakes. 39 | 40 | This library is 1 kilobyte (minified and compressed). 41 | 42 | ## Usage 43 | 44 | ```jsx 45 | import React from 'react'; 46 | import { Level, H } from 'react-accessible-headings'; 47 | 48 | export default function () { 49 | return ( 50 |
51 | This will be a heading 1 52 | 53 | and this a Heading 2 54 | 55 |
56 | ); 57 | } 58 | ``` 59 | 60 | ### Detecting skipped headings 61 | 62 | `react-accessible-headings` tries to encourage correct heading levels by polling the DOM for accessibility errors and printing errors to `console.error`. These errors are page-wide and not necessarily specific to `react-accessible-headings`. 63 | 64 | There are two types of errors that are checked 65 | 66 | 1. Whether there are skipped heading levels. Ie, `

` followed by an `

`; 67 | 2. Whether there are multiple `

`s in the page (there should only be a single `

`). 68 | 69 | A `console.error()` will be printed if an error occurs. 70 | 71 | Testing in [Axe](https://www.deque.com/axe/) will also reveal this type of error. 72 | 73 | The reason this was implemented by polling the DOM, rather than analysing the React VDOM (or something), is because only the real DOM knows the actual heading levels that screen readers will use for accessibility reasons. Pages could include headings outside of React apps that affect the heading level, so this library needs to poll the DOM. 74 | 75 | ## API 76 | 77 | All APIs have TypeScript types available. 78 | 79 | ### `` component 80 | 81 | This component renders either `

`, `

`, `

`, `

`, `

`, or `
` based on how many ``s were above it. 82 | 83 | `react-accessible-headings` tries to help you maintain valid heading hierarchies, so it considers it an application bug to render an `` (the HTML spec only has 6 heading levels). This might happen if you have too many ``s above it. 84 | 85 | To help debug the error a message will printed via `console.error` if attempting to render invalid levels such as `h7`. To resolve this error fix the wrongly nested `` elements above it. 86 | 87 | All valid props / attributes for an HTML heading are also accepted. 88 | 89 | Props: `offset`: _(Optional)_ this optional prop will override the default behaviour. The default behaviour is when you use `` without this prop it will render the current heading level depth. If instead you want to render the `` with a different `offset` (number) then provide this prop. 90 | 91 | See _Examples: The 'Offset' Example_ for more. 92 | 93 | ### `` component 94 | 95 | Sets a new heading level depth, by incrementing the current heading level for all children using the `` component, or the `useLevel` hook. 96 | 97 | This component doesn't render anything except `children`, so there's no wrapper element. 98 | 99 | Props: `value`: _(Optional)_ this optional prop will override the default behaviour. The default behaviour is when you use `` without this prop it will increment the heading level by `1`. If you want to increment by a different `value` (number) that is not `1` then provide this `value` prop. You probably shouldn't be using this. 100 | Props: `hClassName`: _(Optional)_ this optional prop will set a className on all descendant ``s. 101 | 102 | An error will be logged via `console.error` if attempting to set an invalid value such as `7`, because HTML only has h1-h6. 103 | 104 | ### `useLevel` context hook 105 | 106 | If you'd like to inspect the current `level` context value then `useLevel()` which will return a **number** (integer) from 1-6. (see _Examples: The 'useLevel query' Example_ for more). 107 | 108 | An error will be logged via `console.error` if `useLevel` resolves to an invalid heading level such as `7` and the value will be clamped from 1-6 (because `7` is an invalid heading level and it would be pointless to use that). 109 | 110 | ### `useHClassName` context hook 111 | 112 | If for some reason you'd like to inspect the current `hClassName` value, then `useHClassName()` which will return a **string** representing the className of the Heading elements in the current tree (see _Examples: The 'useHClassName' Example_ for more). 113 | 114 | ### `LevelContext` context 115 | 116 | Provides direct access to the React Context which is an object with type `undefined | { level: number, hClassName?: string }`. Note that the value may be `undefined` in which case you should infer a `level` of `1`. No clamping of valid ranges of values occurs through this direct accesss. 117 | 118 | ## Further reading 119 | 120 | ### Prior art 121 | 122 | [DocBook](https://docbook.org/), the ill-fated [XHTML 2](https://www.w3.org/TR/xhtml2/mod-structural.html#sec_8.5.), and [HTML5's abandoned 'outline'](http://blog.paciellogroup.com/2013/10/html5-document-outline/) had a very similar idea. Also check out the 2014 project [html5-h](https://github.com/ThePacielloGroup/html5-h). 123 | 124 | ### References 125 | 126 | #### [WCAG 2: G141: Organizing a page using headings](https://www.w3.org/TR/2012/NOTE-WCAG20-TECHS-20120103/G141), 127 | 128 | > To facilitate navigation and understanding of overall document structure, authors should use headings that are properly nested (e.g., h1 followed by h2, h2 followed by h2 or h3, h3 followed by h3 or h4, etc.). 129 | 130 | #### [Axe: Heading levels should only increase by one](https://dequeuniversity.com/rules/axe/3.4/heading-order) 131 | 132 | > Ensure headings are in a logical order. For example, check that all headings are marked with `h1` through `h6` elements and that these are ordered hierarchically. For example, the heading level following an `h1` element should be an `h2` element, not an `h3` element. 133 | 134 | ##### [Axe: Page must contain a level-one heading](https://dequeuniversity.com/rules/axe/3.0/page-has-heading-one) 135 | 136 | > Generally, it is a best practice to ensure that the beginning of a page's main content starts with a h1 element, and also to ensure that the page contains only one h1 element. 137 | 138 | ## Justifications # 139 | 140 | Is this library necessary? Could you avoid this library and perhaps make component `props` that set the heading level, or use `children` to set the heading? Sure, that works, but (arguably) that manual approach becomes a maintenance problem across a larger app. Across a whole app this alternative approach is easier to refactor and 'indent' heading levels arbitrarily without having to synchronise the correct heading level numbers across components. 141 | 142 | ### The 'Card' Example # 143 | 144 | Imagine you have a hypothetical 'Card' component that is coded as, 145 | 146 | ```jsx 147 | export function Card({ children, heading }) { 148 | return ( 149 |
150 |

{heading}

151 | {children} 152 |
153 | ); 154 | } 155 | ``` 156 | 157 | But then you want to make the `

` configurable to make it either an `

`, `

`, or `

`. 158 | 159 | You might refactor the code to support that feature like this, 160 | 161 | ```jsx 162 | export function Card({ children, heading, headingLevel }) { 163 | return ( 164 |
165 | {headingLevel === 2 ? ( 166 |

{heading}

167 | ) : headingLevel === 3 ? ( 168 |

{heading}

169 | ) : headingLevel === 4 ? ( 170 |

{heading}

171 | ) : null} 172 | {children} 173 |
174 | ); 175 | } 176 | ``` 177 | 178 | or more concisely, 179 | 180 | ```jsx 181 | export function Card({ children, heading, headingLevel }) { 182 | const Heading = `H${headingLevel}`; 183 | return ( 184 |
185 | {heading} 186 | {children} 187 |
188 | ); 189 | } 190 | ``` 191 | 192 | ...which is a confusingly indirect way of making a heading level, and it creates a maintenance burden on developers to know the correct level depth of a heading. 193 | 194 | Alternatively, with `react-accessible-headings` the implementation details of `` can stay encapsulated and look like, 195 | 196 | ```jsx 197 | export function Card({ children, heading }) { 198 | return ( 199 |
200 | {heading} 201 | {children} 202 |
203 | ); 204 | } 205 | ``` 206 | 207 | And finally (for this example) let's consider another refactoring. If we want to add a new `h2` to the page and lower every other heading it's now easy to add another `` wrapper to indent everything and you're done. Much easier than updating lots of `h*` numbers around the code to realign them all... 208 | 209 | ```jsx 210 | Cards 211 | 212 | 213 |

body

214 |
215 | 216 | 217 |

body

218 |
219 |
220 |
221 | ``` 222 | 223 | So `react-accessible-headings` is an alternative composition technique for page headings that may make it easier to refactor and reuse code. The `` concept means you only need to think about whether it's a deeper level, without having to know the specific heading level number. 224 | 225 | That all said, having a flexible heading level may be more abstract and confusing to some developers. It's an extra thing to learn, even though it is a simple concept. It may not be appropriate for some codebases. 226 | 227 | ### The 'useLevel query' Example # 228 | 229 | If you want to programatically query the current level you can, 230 | 231 | ```jsx 232 | import { useLevel, H } from 'react-accessible-headings'; 233 | 234 | export default function () { 235 | const level = useLevel(); // level is a number (integer) from 1-6 236 | return ( 237 |
238 | text 239 |
240 | ); 241 | } 242 | ``` 243 | 244 | ### The 'Offset' Example # 245 | 246 | If you want to have heading levels relative to the current level you can provide an `offset` prop, 247 | 248 | ```jsx 249 |
250 | This will be the current heading level 251 | 252 | This will be one level deeper 253 | 254 | {children} 255 |
256 | ``` 257 | 258 | which is a more concise way of writing this, 259 | 260 | ```jsx 261 |
262 | This will be the current heading level 263 | 264 | This will be one level deeper 265 | 266 | {children} 267 |
268 | ``` 269 | 270 | However `` will establish a new deeper _heading level_ context whereas `offset` will not. 271 | 272 | ### The 'hClassName' Example # 273 | 274 | If you ever need to style multiple headings with css, you might find that your highly composable React code (for a good reason) 275 | hides the heading selectors from you: 276 | 277 | ```css 278 | .card h{???} { 279 | margin-top: 2em; 280 | } 281 | ``` 282 | 283 | In this case you can set `className` on every `` element and use the class selector in CSS, or as a shorthand you can provide `hClassName` prop to a `` element, which will set your className on every decendant heading element in the sub-tree: 284 | 285 | ```jsx 286 | 287 | My ClassName is `heading` 288 | My ClassName is `heading custom` 289 | 290 | My ClassName is also `heading` 291 | 292 | Mine changed to `card-heading` 293 | 294 | 295 | 296 | ``` 297 | 298 | ### The 'useHClassName' Example # 299 | 300 | This example shows how you can utilize `useHClassName` to extend `hClassName` instead of overriding it. 301 | 302 | ```jsx 303 | import { useHClassName, Level } from 'react-accessible-headings'; 304 | 305 | function Nested() { 306 | const hClassName = useHClassName(); // className declared by parent 307 | return ...; 308 | } 309 | 310 | 311 | 312 | ; 313 | // hClassName changed to "heading__with-bem-syntax" 314 | ``` 315 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ampproject/remapping@^2.1.0": 6 | version "2.1.2" 7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.2.tgz#4edca94973ded9630d20101cd8559cedb8d8bd34" 8 | integrity sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg== 9 | dependencies: 10 | "@jridgewell/trace-mapping" "^0.3.0" 11 | 12 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.7": 13 | version "7.16.7" 14 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" 15 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== 16 | dependencies: 17 | "@babel/highlight" "^7.16.7" 18 | 19 | "@babel/compat-data@^7.17.7": 20 | version "7.17.7" 21 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.7.tgz#078d8b833fbbcc95286613be8c716cef2b519fa2" 22 | integrity sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ== 23 | 24 | "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.5": 25 | version "7.17.9" 26 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.9.tgz#6bae81a06d95f4d0dec5bb9d74bbc1f58babdcfe" 27 | integrity sha512-5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw== 28 | dependencies: 29 | "@ampproject/remapping" "^2.1.0" 30 | "@babel/code-frame" "^7.16.7" 31 | "@babel/generator" "^7.17.9" 32 | "@babel/helper-compilation-targets" "^7.17.7" 33 | "@babel/helper-module-transforms" "^7.17.7" 34 | "@babel/helpers" "^7.17.9" 35 | "@babel/parser" "^7.17.9" 36 | "@babel/template" "^7.16.7" 37 | "@babel/traverse" "^7.17.9" 38 | "@babel/types" "^7.17.0" 39 | convert-source-map "^1.7.0" 40 | debug "^4.1.0" 41 | gensync "^1.0.0-beta.2" 42 | json5 "^2.2.1" 43 | semver "^6.3.0" 44 | 45 | "@babel/generator@^7.17.9": 46 | version "7.17.9" 47 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.9.tgz#f4af9fd38fa8de143c29fce3f71852406fc1e2fc" 48 | integrity sha512-rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ== 49 | dependencies: 50 | "@babel/types" "^7.17.0" 51 | jsesc "^2.5.1" 52 | source-map "^0.5.0" 53 | 54 | "@babel/helper-compilation-targets@^7.17.7": 55 | version "7.17.7" 56 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz#a3c2924f5e5f0379b356d4cfb313d1414dc30e46" 57 | integrity sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w== 58 | dependencies: 59 | "@babel/compat-data" "^7.17.7" 60 | "@babel/helper-validator-option" "^7.16.7" 61 | browserslist "^4.17.5" 62 | semver "^6.3.0" 63 | 64 | "@babel/helper-environment-visitor@^7.16.7": 65 | version "7.16.7" 66 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" 67 | integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== 68 | dependencies: 69 | "@babel/types" "^7.16.7" 70 | 71 | "@babel/helper-function-name@^7.17.9": 72 | version "7.17.9" 73 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12" 74 | integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg== 75 | dependencies: 76 | "@babel/template" "^7.16.7" 77 | "@babel/types" "^7.17.0" 78 | 79 | "@babel/helper-hoist-variables@^7.16.7": 80 | version "7.16.7" 81 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" 82 | integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== 83 | dependencies: 84 | "@babel/types" "^7.16.7" 85 | 86 | "@babel/helper-module-imports@^7.16.7": 87 | version "7.16.7" 88 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" 89 | integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== 90 | dependencies: 91 | "@babel/types" "^7.16.7" 92 | 93 | "@babel/helper-module-transforms@^7.17.7": 94 | version "7.17.7" 95 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz#3943c7f777139e7954a5355c815263741a9c1cbd" 96 | integrity sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw== 97 | dependencies: 98 | "@babel/helper-environment-visitor" "^7.16.7" 99 | "@babel/helper-module-imports" "^7.16.7" 100 | "@babel/helper-simple-access" "^7.17.7" 101 | "@babel/helper-split-export-declaration" "^7.16.7" 102 | "@babel/helper-validator-identifier" "^7.16.7" 103 | "@babel/template" "^7.16.7" 104 | "@babel/traverse" "^7.17.3" 105 | "@babel/types" "^7.17.0" 106 | 107 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0": 108 | version "7.16.7" 109 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5" 110 | integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA== 111 | 112 | "@babel/helper-simple-access@^7.17.7": 113 | version "7.17.7" 114 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz#aaa473de92b7987c6dfa7ce9a7d9674724823367" 115 | integrity sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA== 116 | dependencies: 117 | "@babel/types" "^7.17.0" 118 | 119 | "@babel/helper-split-export-declaration@^7.16.7": 120 | version "7.16.7" 121 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" 122 | integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== 123 | dependencies: 124 | "@babel/types" "^7.16.7" 125 | 126 | "@babel/helper-validator-identifier@^7.16.7": 127 | version "7.16.7" 128 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" 129 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== 130 | 131 | "@babel/helper-validator-option@^7.16.7": 132 | version "7.16.7" 133 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23" 134 | integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ== 135 | 136 | "@babel/helpers@^7.17.9": 137 | version "7.17.9" 138 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.9.tgz#b2af120821bfbe44f9907b1826e168e819375a1a" 139 | integrity sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q== 140 | dependencies: 141 | "@babel/template" "^7.16.7" 142 | "@babel/traverse" "^7.17.9" 143 | "@babel/types" "^7.17.0" 144 | 145 | "@babel/highlight@^7.16.7": 146 | version "7.17.9" 147 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.9.tgz#61b2ee7f32ea0454612def4fccdae0de232b73e3" 148 | integrity sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg== 149 | dependencies: 150 | "@babel/helper-validator-identifier" "^7.16.7" 151 | chalk "^2.0.0" 152 | js-tokens "^4.0.0" 153 | 154 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.9": 155 | version "7.17.9" 156 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.9.tgz#9c94189a6062f0291418ca021077983058e171ef" 157 | integrity sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg== 158 | 159 | "@babel/plugin-syntax-async-generators@^7.8.4": 160 | version "7.8.4" 161 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 162 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 163 | dependencies: 164 | "@babel/helper-plugin-utils" "^7.8.0" 165 | 166 | "@babel/plugin-syntax-bigint@^7.8.3": 167 | version "7.8.3" 168 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 169 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 170 | dependencies: 171 | "@babel/helper-plugin-utils" "^7.8.0" 172 | 173 | "@babel/plugin-syntax-class-properties@^7.8.3": 174 | version "7.12.13" 175 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 176 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 177 | dependencies: 178 | "@babel/helper-plugin-utils" "^7.12.13" 179 | 180 | "@babel/plugin-syntax-import-meta@^7.8.3": 181 | version "7.10.4" 182 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 183 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 184 | dependencies: 185 | "@babel/helper-plugin-utils" "^7.10.4" 186 | 187 | "@babel/plugin-syntax-json-strings@^7.8.3": 188 | version "7.8.3" 189 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 190 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 191 | dependencies: 192 | "@babel/helper-plugin-utils" "^7.8.0" 193 | 194 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 195 | version "7.10.4" 196 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 197 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 198 | dependencies: 199 | "@babel/helper-plugin-utils" "^7.10.4" 200 | 201 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 202 | version "7.8.3" 203 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 204 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 205 | dependencies: 206 | "@babel/helper-plugin-utils" "^7.8.0" 207 | 208 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 209 | version "7.10.4" 210 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 211 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 212 | dependencies: 213 | "@babel/helper-plugin-utils" "^7.10.4" 214 | 215 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 216 | version "7.8.3" 217 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 218 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 219 | dependencies: 220 | "@babel/helper-plugin-utils" "^7.8.0" 221 | 222 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 223 | version "7.8.3" 224 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 225 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 226 | dependencies: 227 | "@babel/helper-plugin-utils" "^7.8.0" 228 | 229 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 230 | version "7.8.3" 231 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 232 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 233 | dependencies: 234 | "@babel/helper-plugin-utils" "^7.8.0" 235 | 236 | "@babel/plugin-syntax-top-level-await@^7.8.3": 237 | version "7.14.5" 238 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 239 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 240 | dependencies: 241 | "@babel/helper-plugin-utils" "^7.14.5" 242 | 243 | "@babel/runtime-corejs3@^7.10.2": 244 | version "7.17.9" 245 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.9.tgz#3d02d0161f0fbf3ada8e88159375af97690f4055" 246 | integrity sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw== 247 | dependencies: 248 | core-js-pure "^3.20.2" 249 | regenerator-runtime "^0.13.4" 250 | 251 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5": 252 | version "7.17.9" 253 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.9.tgz#d19fbf802d01a8cb6cf053a64e472d42c434ba72" 254 | integrity sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg== 255 | dependencies: 256 | regenerator-runtime "^0.13.4" 257 | 258 | "@babel/template@^7.16.7", "@babel/template@^7.3.3": 259 | version "7.16.7" 260 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" 261 | integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== 262 | dependencies: 263 | "@babel/code-frame" "^7.16.7" 264 | "@babel/parser" "^7.16.7" 265 | "@babel/types" "^7.16.7" 266 | 267 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.17.3", "@babel/traverse@^7.17.9": 268 | version "7.17.9" 269 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.9.tgz#1f9b207435d9ae4a8ed6998b2b82300d83c37a0d" 270 | integrity sha512-PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw== 271 | dependencies: 272 | "@babel/code-frame" "^7.16.7" 273 | "@babel/generator" "^7.17.9" 274 | "@babel/helper-environment-visitor" "^7.16.7" 275 | "@babel/helper-function-name" "^7.17.9" 276 | "@babel/helper-hoist-variables" "^7.16.7" 277 | "@babel/helper-split-export-declaration" "^7.16.7" 278 | "@babel/parser" "^7.17.9" 279 | "@babel/types" "^7.17.0" 280 | debug "^4.1.0" 281 | globals "^11.1.0" 282 | 283 | "@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 284 | version "7.17.0" 285 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b" 286 | integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw== 287 | dependencies: 288 | "@babel/helper-validator-identifier" "^7.16.7" 289 | to-fast-properties "^2.0.0" 290 | 291 | "@bcoe/v8-coverage@^0.2.3": 292 | version "0.2.3" 293 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 294 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 295 | 296 | "@cnakazawa/watch@^1.0.3": 297 | version "1.0.4" 298 | resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" 299 | integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== 300 | dependencies: 301 | exec-sh "^0.3.2" 302 | minimist "^1.2.0" 303 | 304 | "@istanbuljs/load-nyc-config@^1.0.0": 305 | version "1.1.0" 306 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 307 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 308 | dependencies: 309 | camelcase "^5.3.1" 310 | find-up "^4.1.0" 311 | get-package-type "^0.1.0" 312 | js-yaml "^3.13.1" 313 | resolve-from "^5.0.0" 314 | 315 | "@istanbuljs/schema@^0.1.2": 316 | version "0.1.3" 317 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 318 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 319 | 320 | "@jest/console@^26.6.2": 321 | version "26.6.2" 322 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.6.2.tgz#4e04bc464014358b03ab4937805ee36a0aeb98f2" 323 | integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g== 324 | dependencies: 325 | "@jest/types" "^26.6.2" 326 | "@types/node" "*" 327 | chalk "^4.0.0" 328 | jest-message-util "^26.6.2" 329 | jest-util "^26.6.2" 330 | slash "^3.0.0" 331 | 332 | "@jest/core@^26.5.3", "@jest/core@^26.6.3": 333 | version "26.6.3" 334 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.6.3.tgz#7639fcb3833d748a4656ada54bde193051e45fad" 335 | integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw== 336 | dependencies: 337 | "@jest/console" "^26.6.2" 338 | "@jest/reporters" "^26.6.2" 339 | "@jest/test-result" "^26.6.2" 340 | "@jest/transform" "^26.6.2" 341 | "@jest/types" "^26.6.2" 342 | "@types/node" "*" 343 | ansi-escapes "^4.2.1" 344 | chalk "^4.0.0" 345 | exit "^0.1.2" 346 | graceful-fs "^4.2.4" 347 | jest-changed-files "^26.6.2" 348 | jest-config "^26.6.3" 349 | jest-haste-map "^26.6.2" 350 | jest-message-util "^26.6.2" 351 | jest-regex-util "^26.0.0" 352 | jest-resolve "^26.6.2" 353 | jest-resolve-dependencies "^26.6.3" 354 | jest-runner "^26.6.3" 355 | jest-runtime "^26.6.3" 356 | jest-snapshot "^26.6.2" 357 | jest-util "^26.6.2" 358 | jest-validate "^26.6.2" 359 | jest-watcher "^26.6.2" 360 | micromatch "^4.0.2" 361 | p-each-series "^2.1.0" 362 | rimraf "^3.0.0" 363 | slash "^3.0.0" 364 | strip-ansi "^6.0.0" 365 | 366 | "@jest/environment@^26.6.2": 367 | version "26.6.2" 368 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.6.2.tgz#ba364cc72e221e79cc8f0a99555bf5d7577cf92c" 369 | integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA== 370 | dependencies: 371 | "@jest/fake-timers" "^26.6.2" 372 | "@jest/types" "^26.6.2" 373 | "@types/node" "*" 374 | jest-mock "^26.6.2" 375 | 376 | "@jest/fake-timers@^26.6.2": 377 | version "26.6.2" 378 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.6.2.tgz#459c329bcf70cee4af4d7e3f3e67848123535aad" 379 | integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA== 380 | dependencies: 381 | "@jest/types" "^26.6.2" 382 | "@sinonjs/fake-timers" "^6.0.1" 383 | "@types/node" "*" 384 | jest-message-util "^26.6.2" 385 | jest-mock "^26.6.2" 386 | jest-util "^26.6.2" 387 | 388 | "@jest/globals@^26.6.2": 389 | version "26.6.2" 390 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.6.2.tgz#5b613b78a1aa2655ae908eba638cc96a20df720a" 391 | integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA== 392 | dependencies: 393 | "@jest/environment" "^26.6.2" 394 | "@jest/types" "^26.6.2" 395 | expect "^26.6.2" 396 | 397 | "@jest/reporters@^26.6.2": 398 | version "26.6.2" 399 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.6.2.tgz#1f518b99637a5f18307bd3ecf9275f6882a667f6" 400 | integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw== 401 | dependencies: 402 | "@bcoe/v8-coverage" "^0.2.3" 403 | "@jest/console" "^26.6.2" 404 | "@jest/test-result" "^26.6.2" 405 | "@jest/transform" "^26.6.2" 406 | "@jest/types" "^26.6.2" 407 | chalk "^4.0.0" 408 | collect-v8-coverage "^1.0.0" 409 | exit "^0.1.2" 410 | glob "^7.1.2" 411 | graceful-fs "^4.2.4" 412 | istanbul-lib-coverage "^3.0.0" 413 | istanbul-lib-instrument "^4.0.3" 414 | istanbul-lib-report "^3.0.0" 415 | istanbul-lib-source-maps "^4.0.0" 416 | istanbul-reports "^3.0.2" 417 | jest-haste-map "^26.6.2" 418 | jest-resolve "^26.6.2" 419 | jest-util "^26.6.2" 420 | jest-worker "^26.6.2" 421 | slash "^3.0.0" 422 | source-map "^0.6.0" 423 | string-length "^4.0.1" 424 | terminal-link "^2.0.0" 425 | v8-to-istanbul "^7.0.0" 426 | optionalDependencies: 427 | node-notifier "^8.0.0" 428 | 429 | "@jest/source-map@^26.6.2": 430 | version "26.6.2" 431 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.6.2.tgz#29af5e1e2e324cafccc936f218309f54ab69d535" 432 | integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA== 433 | dependencies: 434 | callsites "^3.0.0" 435 | graceful-fs "^4.2.4" 436 | source-map "^0.6.0" 437 | 438 | "@jest/test-result@^26.6.2": 439 | version "26.6.2" 440 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.6.2.tgz#55da58b62df134576cc95476efa5f7949e3f5f18" 441 | integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ== 442 | dependencies: 443 | "@jest/console" "^26.6.2" 444 | "@jest/types" "^26.6.2" 445 | "@types/istanbul-lib-coverage" "^2.0.0" 446 | collect-v8-coverage "^1.0.0" 447 | 448 | "@jest/test-sequencer@^26.6.3": 449 | version "26.6.3" 450 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz#98e8a45100863886d074205e8ffdc5a7eb582b17" 451 | integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw== 452 | dependencies: 453 | "@jest/test-result" "^26.6.2" 454 | graceful-fs "^4.2.4" 455 | jest-haste-map "^26.6.2" 456 | jest-runner "^26.6.3" 457 | jest-runtime "^26.6.3" 458 | 459 | "@jest/transform@^26.6.2": 460 | version "26.6.2" 461 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.6.2.tgz#5ac57c5fa1ad17b2aae83e73e45813894dcf2e4b" 462 | integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA== 463 | dependencies: 464 | "@babel/core" "^7.1.0" 465 | "@jest/types" "^26.6.2" 466 | babel-plugin-istanbul "^6.0.0" 467 | chalk "^4.0.0" 468 | convert-source-map "^1.4.0" 469 | fast-json-stable-stringify "^2.0.0" 470 | graceful-fs "^4.2.4" 471 | jest-haste-map "^26.6.2" 472 | jest-regex-util "^26.0.0" 473 | jest-util "^26.6.2" 474 | micromatch "^4.0.2" 475 | pirates "^4.0.1" 476 | slash "^3.0.0" 477 | source-map "^0.6.1" 478 | write-file-atomic "^3.0.0" 479 | 480 | "@jest/types@^26.6.2": 481 | version "26.6.2" 482 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" 483 | integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== 484 | dependencies: 485 | "@types/istanbul-lib-coverage" "^2.0.0" 486 | "@types/istanbul-reports" "^3.0.0" 487 | "@types/node" "*" 488 | "@types/yargs" "^15.0.0" 489 | chalk "^4.0.0" 490 | 491 | "@jridgewell/resolve-uri@^3.0.3": 492 | version "3.0.5" 493 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz#68eb521368db76d040a6315cdb24bf2483037b9c" 494 | integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew== 495 | 496 | "@jridgewell/sourcemap-codec@^1.4.10": 497 | version "1.4.11" 498 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz#771a1d8d744eeb71b6adb35808e1a6c7b9b8c8ec" 499 | integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg== 500 | 501 | "@jridgewell/trace-mapping@^0.3.0": 502 | version "0.3.4" 503 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz#f6a0832dffd5b8a6aaa633b7d9f8e8e94c83a0c3" 504 | integrity sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ== 505 | dependencies: 506 | "@jridgewell/resolve-uri" "^3.0.3" 507 | "@jridgewell/sourcemap-codec" "^1.4.10" 508 | 509 | "@sinonjs/commons@^1.7.0": 510 | version "1.8.3" 511 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" 512 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 513 | dependencies: 514 | type-detect "4.0.8" 515 | 516 | "@sinonjs/fake-timers@^6.0.1": 517 | version "6.0.1" 518 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40" 519 | integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA== 520 | dependencies: 521 | "@sinonjs/commons" "^1.7.0" 522 | 523 | "@testing-library/dom@^7.28.1": 524 | version "7.31.2" 525 | resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.31.2.tgz#df361db38f5212b88555068ab8119f5d841a8c4a" 526 | integrity sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ== 527 | dependencies: 528 | "@babel/code-frame" "^7.10.4" 529 | "@babel/runtime" "^7.12.5" 530 | "@types/aria-query" "^4.2.0" 531 | aria-query "^4.2.2" 532 | chalk "^4.1.0" 533 | dom-accessibility-api "^0.5.6" 534 | lz-string "^1.4.4" 535 | pretty-format "^26.6.2" 536 | 537 | "@testing-library/react@^11.0.4": 538 | version "11.2.7" 539 | resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-11.2.7.tgz#b29e2e95c6765c815786c0bc1d5aed9cb2bf7818" 540 | integrity sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA== 541 | dependencies: 542 | "@babel/runtime" "^7.12.5" 543 | "@testing-library/dom" "^7.28.1" 544 | 545 | "@tootallnate/once@1": 546 | version "1.1.2" 547 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 548 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 549 | 550 | "@types/aria-query@^4.2.0": 551 | version "4.2.2" 552 | resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.2.tgz#ed4e0ad92306a704f9fb132a0cfcf77486dbe2bc" 553 | integrity sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig== 554 | 555 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": 556 | version "7.1.19" 557 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460" 558 | integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== 559 | dependencies: 560 | "@babel/parser" "^7.1.0" 561 | "@babel/types" "^7.0.0" 562 | "@types/babel__generator" "*" 563 | "@types/babel__template" "*" 564 | "@types/babel__traverse" "*" 565 | 566 | "@types/babel__generator@*": 567 | version "7.6.4" 568 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" 569 | integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== 570 | dependencies: 571 | "@babel/types" "^7.0.0" 572 | 573 | "@types/babel__template@*": 574 | version "7.4.1" 575 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" 576 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 577 | dependencies: 578 | "@babel/parser" "^7.1.0" 579 | "@babel/types" "^7.0.0" 580 | 581 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 582 | version "7.17.0" 583 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.17.0.tgz#7a9b80f712fe2052bc20da153ff1e552404d8e4b" 584 | integrity sha512-r8aveDbd+rzGP+ykSdF3oPuTVRWRfbBiHl0rVDM2yNEmSMXfkObQLV46b4RnCv3Lra51OlfnZhkkFaDl2MIRaA== 585 | dependencies: 586 | "@babel/types" "^7.3.0" 587 | 588 | "@types/graceful-fs@^4.1.2": 589 | version "4.1.5" 590 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 591 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 592 | dependencies: 593 | "@types/node" "*" 594 | 595 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 596 | version "2.0.4" 597 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" 598 | integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== 599 | 600 | "@types/istanbul-lib-report@*": 601 | version "3.0.0" 602 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 603 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 604 | dependencies: 605 | "@types/istanbul-lib-coverage" "*" 606 | 607 | "@types/istanbul-reports@^3.0.0": 608 | version "3.0.1" 609 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" 610 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 611 | dependencies: 612 | "@types/istanbul-lib-report" "*" 613 | 614 | "@types/jest@^26.0.14": 615 | version "26.0.24" 616 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.24.tgz#943d11976b16739185913a1936e0de0c4a7d595a" 617 | integrity sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w== 618 | dependencies: 619 | jest-diff "^26.0.0" 620 | pretty-format "^26.0.0" 621 | 622 | "@types/node@*", "@types/node@^17.0.21": 623 | version "17.0.25" 624 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.25.tgz#527051f3c2f77aa52e5dc74e45a3da5fb2301448" 625 | integrity sha512-wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w== 626 | 627 | "@types/normalize-package-data@^2.4.0": 628 | version "2.4.1" 629 | resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" 630 | integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== 631 | 632 | "@types/prettier@^2.0.0": 633 | version "2.6.0" 634 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759" 635 | integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== 636 | 637 | "@types/prop-types@*": 638 | version "15.7.5" 639 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 640 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 641 | 642 | "@types/react-dom@^18.0.1": 643 | version "18.0.1" 644 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.1.tgz#cb3cc10ea91141b12c71001fede1017acfbce4db" 645 | integrity sha512-jCwTXvHtRLiyVvKm9aEdHXs8rflVOGd5Sl913JZrPshfXjn8NYsTNZOz70bCsA31IR0TOqwi3ad+X4tSCBoMTw== 646 | dependencies: 647 | "@types/react" "*" 648 | 649 | "@types/react@*", "@types/react@^18.0.5": 650 | version "18.0.5" 651 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.5.tgz#1a4d4b705ae6af5aed369dec22800b20f89f5301" 652 | integrity sha512-UPxNGInDCIKlfqBrm8LDXYWNfLHwIdisWcsH5GpMyGjhEDLFgTtlRBaoWuCua9HcyuE0rMkmAeZ3FXV1pYLIYQ== 653 | dependencies: 654 | "@types/prop-types" "*" 655 | "@types/scheduler" "*" 656 | csstype "^3.0.2" 657 | 658 | "@types/scheduler@*": 659 | version "0.16.2" 660 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 661 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 662 | 663 | "@types/stack-utils@^2.0.0": 664 | version "2.0.1" 665 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" 666 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 667 | 668 | "@types/yargs-parser@*": 669 | version "21.0.0" 670 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" 671 | integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== 672 | 673 | "@types/yargs@^15.0.0": 674 | version "15.0.14" 675 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz#26d821ddb89e70492160b66d10a0eb6df8f6fb06" 676 | integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ== 677 | dependencies: 678 | "@types/yargs-parser" "*" 679 | 680 | abab@^2.0.3, abab@^2.0.5: 681 | version "2.0.6" 682 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" 683 | integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== 684 | 685 | acorn-globals@^6.0.0: 686 | version "6.0.0" 687 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 688 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 689 | dependencies: 690 | acorn "^7.1.1" 691 | acorn-walk "^7.1.1" 692 | 693 | acorn-walk@^7.1.1: 694 | version "7.2.0" 695 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 696 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 697 | 698 | acorn@^7.1.1: 699 | version "7.4.1" 700 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 701 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 702 | 703 | acorn@^8.2.4: 704 | version "8.7.0" 705 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" 706 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== 707 | 708 | agent-base@6: 709 | version "6.0.2" 710 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 711 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 712 | dependencies: 713 | debug "4" 714 | 715 | ansi-escapes@^4.2.1: 716 | version "4.3.2" 717 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 718 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 719 | dependencies: 720 | type-fest "^0.21.3" 721 | 722 | ansi-regex@^5.0.0, ansi-regex@^5.0.1: 723 | version "5.0.1" 724 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 725 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 726 | 727 | ansi-styles@^3.2.1: 728 | version "3.2.1" 729 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 730 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 731 | dependencies: 732 | color-convert "^1.9.0" 733 | 734 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 735 | version "4.3.0" 736 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 737 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 738 | dependencies: 739 | color-convert "^2.0.1" 740 | 741 | anymatch@^2.0.0: 742 | version "2.0.0" 743 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 744 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 745 | dependencies: 746 | micromatch "^3.1.4" 747 | normalize-path "^2.1.1" 748 | 749 | anymatch@^3.0.3: 750 | version "3.1.2" 751 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 752 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 753 | dependencies: 754 | normalize-path "^3.0.0" 755 | picomatch "^2.0.4" 756 | 757 | argparse@^1.0.7: 758 | version "1.0.10" 759 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 760 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 761 | dependencies: 762 | sprintf-js "~1.0.2" 763 | 764 | aria-query@^4.2.2: 765 | version "4.2.2" 766 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 767 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 768 | dependencies: 769 | "@babel/runtime" "^7.10.2" 770 | "@babel/runtime-corejs3" "^7.10.2" 771 | 772 | arr-diff@^4.0.0: 773 | version "4.0.0" 774 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 775 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 776 | 777 | arr-flatten@^1.1.0: 778 | version "1.1.0" 779 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 780 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 781 | 782 | arr-union@^3.1.0: 783 | version "3.1.0" 784 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 785 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 786 | 787 | array-unique@^0.3.2: 788 | version "0.3.2" 789 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 790 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 791 | 792 | assign-symbols@^1.0.0: 793 | version "1.0.0" 794 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 795 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 796 | 797 | asynckit@^0.4.0: 798 | version "0.4.0" 799 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 800 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 801 | 802 | atob@^2.1.2: 803 | version "2.1.2" 804 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 805 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 806 | 807 | babel-jest@^26.6.3: 808 | version "26.6.3" 809 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056" 810 | integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA== 811 | dependencies: 812 | "@jest/transform" "^26.6.2" 813 | "@jest/types" "^26.6.2" 814 | "@types/babel__core" "^7.1.7" 815 | babel-plugin-istanbul "^6.0.0" 816 | babel-preset-jest "^26.6.2" 817 | chalk "^4.0.0" 818 | graceful-fs "^4.2.4" 819 | slash "^3.0.0" 820 | 821 | babel-plugin-istanbul@^6.0.0: 822 | version "6.1.1" 823 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" 824 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 825 | dependencies: 826 | "@babel/helper-plugin-utils" "^7.0.0" 827 | "@istanbuljs/load-nyc-config" "^1.0.0" 828 | "@istanbuljs/schema" "^0.1.2" 829 | istanbul-lib-instrument "^5.0.4" 830 | test-exclude "^6.0.0" 831 | 832 | babel-plugin-jest-hoist@^26.6.2: 833 | version "26.6.2" 834 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz#8185bd030348d254c6d7dd974355e6a28b21e62d" 835 | integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw== 836 | dependencies: 837 | "@babel/template" "^7.3.3" 838 | "@babel/types" "^7.3.3" 839 | "@types/babel__core" "^7.0.0" 840 | "@types/babel__traverse" "^7.0.6" 841 | 842 | babel-preset-current-node-syntax@^1.0.0: 843 | version "1.0.1" 844 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 845 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 846 | dependencies: 847 | "@babel/plugin-syntax-async-generators" "^7.8.4" 848 | "@babel/plugin-syntax-bigint" "^7.8.3" 849 | "@babel/plugin-syntax-class-properties" "^7.8.3" 850 | "@babel/plugin-syntax-import-meta" "^7.8.3" 851 | "@babel/plugin-syntax-json-strings" "^7.8.3" 852 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 853 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 854 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 855 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 856 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 857 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 858 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 859 | 860 | babel-preset-jest@^26.6.2: 861 | version "26.6.2" 862 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz#747872b1171df032252426586881d62d31798fee" 863 | integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ== 864 | dependencies: 865 | babel-plugin-jest-hoist "^26.6.2" 866 | babel-preset-current-node-syntax "^1.0.0" 867 | 868 | balanced-match@^1.0.0: 869 | version "1.0.2" 870 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 871 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 872 | 873 | base@^0.11.1: 874 | version "0.11.2" 875 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 876 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 877 | dependencies: 878 | cache-base "^1.0.1" 879 | class-utils "^0.3.5" 880 | component-emitter "^1.2.1" 881 | define-property "^1.0.0" 882 | isobject "^3.0.1" 883 | mixin-deep "^1.2.0" 884 | pascalcase "^0.1.1" 885 | 886 | brace-expansion@^1.1.7: 887 | version "1.1.11" 888 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 889 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 890 | dependencies: 891 | balanced-match "^1.0.0" 892 | concat-map "0.0.1" 893 | 894 | braces@^2.3.1: 895 | version "2.3.2" 896 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 897 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 898 | dependencies: 899 | arr-flatten "^1.1.0" 900 | array-unique "^0.3.2" 901 | extend-shallow "^2.0.1" 902 | fill-range "^4.0.0" 903 | isobject "^3.0.1" 904 | repeat-element "^1.1.2" 905 | snapdragon "^0.8.1" 906 | snapdragon-node "^2.0.1" 907 | split-string "^3.0.2" 908 | to-regex "^3.0.1" 909 | 910 | braces@^3.0.2: 911 | version "3.0.2" 912 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 913 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 914 | dependencies: 915 | fill-range "^7.0.1" 916 | 917 | browser-process-hrtime@^1.0.0: 918 | version "1.0.0" 919 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 920 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 921 | 922 | browserslist@^4.17.5: 923 | version "4.20.2" 924 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.2.tgz#567b41508757ecd904dab4d1c646c612cd3d4f88" 925 | integrity sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA== 926 | dependencies: 927 | caniuse-lite "^1.0.30001317" 928 | electron-to-chromium "^1.4.84" 929 | escalade "^3.1.1" 930 | node-releases "^2.0.2" 931 | picocolors "^1.0.0" 932 | 933 | bs-logger@0.x: 934 | version "0.2.6" 935 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 936 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== 937 | dependencies: 938 | fast-json-stable-stringify "2.x" 939 | 940 | bser@2.1.1: 941 | version "2.1.1" 942 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 943 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 944 | dependencies: 945 | node-int64 "^0.4.0" 946 | 947 | buffer-from@1.x, buffer-from@^1.0.0: 948 | version "1.1.2" 949 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 950 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 951 | 952 | cache-base@^1.0.1: 953 | version "1.0.1" 954 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 955 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 956 | dependencies: 957 | collection-visit "^1.0.0" 958 | component-emitter "^1.2.1" 959 | get-value "^2.0.6" 960 | has-value "^1.0.0" 961 | isobject "^3.0.1" 962 | set-value "^2.0.0" 963 | to-object-path "^0.3.0" 964 | union-value "^1.0.0" 965 | unset-value "^1.0.0" 966 | 967 | callsites@^3.0.0: 968 | version "3.1.0" 969 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 970 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 971 | 972 | camelcase@^5.0.0, camelcase@^5.3.1: 973 | version "5.3.1" 974 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 975 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 976 | 977 | camelcase@^6.0.0: 978 | version "6.3.0" 979 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 980 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 981 | 982 | caniuse-lite@^1.0.30001317: 983 | version "1.0.30001332" 984 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001332.tgz#39476d3aa8d83ea76359c70302eafdd4a1d727dd" 985 | integrity sha512-10T30NYOEQtN6C11YGg411yebhvpnC6Z102+B95eAsN0oB6KUs01ivE8u+G6FMIRtIrVlYXhL+LUwQ3/hXwDWw== 986 | 987 | capture-exit@^2.0.0: 988 | version "2.0.0" 989 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" 990 | integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== 991 | dependencies: 992 | rsvp "^4.8.4" 993 | 994 | chalk@^2.0.0: 995 | version "2.4.2" 996 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 997 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 998 | dependencies: 999 | ansi-styles "^3.2.1" 1000 | escape-string-regexp "^1.0.5" 1001 | supports-color "^5.3.0" 1002 | 1003 | chalk@^4.0.0, chalk@^4.1.0: 1004 | version "4.1.2" 1005 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 1006 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1007 | dependencies: 1008 | ansi-styles "^4.1.0" 1009 | supports-color "^7.1.0" 1010 | 1011 | char-regex@^1.0.2: 1012 | version "1.0.2" 1013 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 1014 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 1015 | 1016 | ci-info@^2.0.0: 1017 | version "2.0.0" 1018 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 1019 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 1020 | 1021 | cjs-module-lexer@^0.6.0: 1022 | version "0.6.0" 1023 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz#4186fcca0eae175970aee870b9fe2d6cf8d5655f" 1024 | integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw== 1025 | 1026 | class-utils@^0.3.5: 1027 | version "0.3.6" 1028 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1029 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 1030 | dependencies: 1031 | arr-union "^3.1.0" 1032 | define-property "^0.2.5" 1033 | isobject "^3.0.0" 1034 | static-extend "^0.1.1" 1035 | 1036 | cliui@^6.0.0: 1037 | version "6.0.0" 1038 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 1039 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 1040 | dependencies: 1041 | string-width "^4.2.0" 1042 | strip-ansi "^6.0.0" 1043 | wrap-ansi "^6.2.0" 1044 | 1045 | co@^4.6.0: 1046 | version "4.6.0" 1047 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1048 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 1049 | 1050 | collect-v8-coverage@^1.0.0: 1051 | version "1.0.1" 1052 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 1053 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 1054 | 1055 | collection-visit@^1.0.0: 1056 | version "1.0.0" 1057 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1058 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 1059 | dependencies: 1060 | map-visit "^1.0.0" 1061 | object-visit "^1.0.0" 1062 | 1063 | color-convert@^1.9.0: 1064 | version "1.9.3" 1065 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1066 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1067 | dependencies: 1068 | color-name "1.1.3" 1069 | 1070 | color-convert@^2.0.1: 1071 | version "2.0.1" 1072 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1073 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1074 | dependencies: 1075 | color-name "~1.1.4" 1076 | 1077 | color-name@1.1.3: 1078 | version "1.1.3" 1079 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1080 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1081 | 1082 | color-name@~1.1.4: 1083 | version "1.1.4" 1084 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1085 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1086 | 1087 | combined-stream@^1.0.8: 1088 | version "1.0.8" 1089 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 1090 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 1091 | dependencies: 1092 | delayed-stream "~1.0.0" 1093 | 1094 | component-emitter@^1.2.1: 1095 | version "1.3.0" 1096 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 1097 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 1098 | 1099 | concat-map@0.0.1: 1100 | version "0.0.1" 1101 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1102 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1103 | 1104 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 1105 | version "1.8.0" 1106 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 1107 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 1108 | dependencies: 1109 | safe-buffer "~5.1.1" 1110 | 1111 | copy-descriptor@^0.1.0: 1112 | version "0.1.1" 1113 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1114 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1115 | 1116 | core-js-pure@^3.20.2: 1117 | version "3.22.0" 1118 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.22.0.tgz#0eaa54b6d1f4ebb4d19976bb4916dfad149a3747" 1119 | integrity sha512-ylOC9nVy0ak1N+fPIZj00umoZHgUVqmucklP5RT5N+vJof38klKn8Ze6KGyvchdClvEBr6LcQqJpI216LUMqYA== 1120 | 1121 | cross-spawn@^6.0.0: 1122 | version "6.0.5" 1123 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 1124 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 1125 | dependencies: 1126 | nice-try "^1.0.4" 1127 | path-key "^2.0.1" 1128 | semver "^5.5.0" 1129 | shebang-command "^1.2.0" 1130 | which "^1.2.9" 1131 | 1132 | cross-spawn@^7.0.0: 1133 | version "7.0.3" 1134 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1135 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1136 | dependencies: 1137 | path-key "^3.1.0" 1138 | shebang-command "^2.0.0" 1139 | which "^2.0.1" 1140 | 1141 | cssom@^0.4.4: 1142 | version "0.4.4" 1143 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 1144 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 1145 | 1146 | cssom@~0.3.6: 1147 | version "0.3.8" 1148 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 1149 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 1150 | 1151 | cssstyle@^2.3.0: 1152 | version "2.3.0" 1153 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 1154 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 1155 | dependencies: 1156 | cssom "~0.3.6" 1157 | 1158 | csstype@^3.0.2: 1159 | version "3.0.11" 1160 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.11.tgz#d66700c5eacfac1940deb4e3ee5642792d85cd33" 1161 | integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw== 1162 | 1163 | data-urls@^2.0.0: 1164 | version "2.0.0" 1165 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 1166 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 1167 | dependencies: 1168 | abab "^2.0.3" 1169 | whatwg-mimetype "^2.3.0" 1170 | whatwg-url "^8.0.0" 1171 | 1172 | debug@4, debug@^4.1.0, debug@^4.1.1: 1173 | version "4.3.4" 1174 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 1175 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 1176 | dependencies: 1177 | ms "2.1.2" 1178 | 1179 | debug@^2.2.0, debug@^2.3.3: 1180 | version "2.6.9" 1181 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1182 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1183 | dependencies: 1184 | ms "2.0.0" 1185 | 1186 | decamelize@^1.2.0: 1187 | version "1.2.0" 1188 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1189 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 1190 | 1191 | decimal.js@^10.2.1: 1192 | version "10.3.1" 1193 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" 1194 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== 1195 | 1196 | decode-uri-component@^0.2.0: 1197 | version "0.2.0" 1198 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1199 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 1200 | 1201 | deep-is@~0.1.3: 1202 | version "0.1.4" 1203 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 1204 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1205 | 1206 | deepmerge@^4.2.2: 1207 | version "4.2.2" 1208 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1209 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1210 | 1211 | define-property@^0.2.5: 1212 | version "0.2.5" 1213 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1214 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 1215 | dependencies: 1216 | is-descriptor "^0.1.0" 1217 | 1218 | define-property@^1.0.0: 1219 | version "1.0.0" 1220 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1221 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 1222 | dependencies: 1223 | is-descriptor "^1.0.0" 1224 | 1225 | define-property@^2.0.2: 1226 | version "2.0.2" 1227 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1228 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 1229 | dependencies: 1230 | is-descriptor "^1.0.2" 1231 | isobject "^3.0.1" 1232 | 1233 | delayed-stream@~1.0.0: 1234 | version "1.0.0" 1235 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1236 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 1237 | 1238 | detect-newline@^3.0.0: 1239 | version "3.1.0" 1240 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 1241 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1242 | 1243 | diff-sequences@^26.6.2: 1244 | version "26.6.2" 1245 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" 1246 | integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== 1247 | 1248 | dom-accessibility-api@^0.5.6: 1249 | version "0.5.13" 1250 | resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.13.tgz#102ee5f25eacce09bdf1cfa5a298f86da473be4b" 1251 | integrity sha512-R305kwb5CcMDIpSHUnLyIAp7SrSPBx6F0VfQFB3M75xVMHhXJJIdePYgbPPh1o57vCHNu5QztokWUPsLjWzFqw== 1252 | 1253 | domexception@^2.0.1: 1254 | version "2.0.1" 1255 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 1256 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 1257 | dependencies: 1258 | webidl-conversions "^5.0.0" 1259 | 1260 | electron-to-chromium@^1.4.84: 1261 | version "1.4.113" 1262 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.113.tgz#b3425c086e2f4fc31e9e53a724c6f239e3adb8b9" 1263 | integrity sha512-s30WKxp27F3bBH6fA07FYL2Xm/FYnYrKpMjHr3XVCTUb9anAyZn/BeZfPWgTZGAbJeT4NxNwISSbLcYZvggPMA== 1264 | 1265 | emittery@^0.7.1: 1266 | version "0.7.2" 1267 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.2.tgz#25595908e13af0f5674ab419396e2fb394cdfa82" 1268 | integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ== 1269 | 1270 | emoji-regex@^8.0.0: 1271 | version "8.0.0" 1272 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1273 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1274 | 1275 | end-of-stream@^1.1.0: 1276 | version "1.4.4" 1277 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 1278 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1279 | dependencies: 1280 | once "^1.4.0" 1281 | 1282 | error-ex@^1.3.1: 1283 | version "1.3.2" 1284 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1285 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1286 | dependencies: 1287 | is-arrayish "^0.2.1" 1288 | 1289 | escalade@^3.1.1: 1290 | version "3.1.1" 1291 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1292 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1293 | 1294 | escape-string-regexp@^1.0.5: 1295 | version "1.0.5" 1296 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1297 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1298 | 1299 | escape-string-regexp@^2.0.0: 1300 | version "2.0.0" 1301 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1302 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1303 | 1304 | escodegen@^2.0.0: 1305 | version "2.0.0" 1306 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 1307 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 1308 | dependencies: 1309 | esprima "^4.0.1" 1310 | estraverse "^5.2.0" 1311 | esutils "^2.0.2" 1312 | optionator "^0.8.1" 1313 | optionalDependencies: 1314 | source-map "~0.6.1" 1315 | 1316 | esprima@^4.0.0, esprima@^4.0.1: 1317 | version "4.0.1" 1318 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1319 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1320 | 1321 | estraverse@^5.2.0: 1322 | version "5.3.0" 1323 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1324 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1325 | 1326 | esutils@^2.0.2: 1327 | version "2.0.3" 1328 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1329 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1330 | 1331 | exec-sh@^0.3.2: 1332 | version "0.3.6" 1333 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" 1334 | integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== 1335 | 1336 | execa@^1.0.0: 1337 | version "1.0.0" 1338 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 1339 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 1340 | dependencies: 1341 | cross-spawn "^6.0.0" 1342 | get-stream "^4.0.0" 1343 | is-stream "^1.1.0" 1344 | npm-run-path "^2.0.0" 1345 | p-finally "^1.0.0" 1346 | signal-exit "^3.0.0" 1347 | strip-eof "^1.0.0" 1348 | 1349 | execa@^4.0.0: 1350 | version "4.1.0" 1351 | resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" 1352 | integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== 1353 | dependencies: 1354 | cross-spawn "^7.0.0" 1355 | get-stream "^5.0.0" 1356 | human-signals "^1.1.1" 1357 | is-stream "^2.0.0" 1358 | merge-stream "^2.0.0" 1359 | npm-run-path "^4.0.0" 1360 | onetime "^5.1.0" 1361 | signal-exit "^3.0.2" 1362 | strip-final-newline "^2.0.0" 1363 | 1364 | exit@^0.1.2: 1365 | version "0.1.2" 1366 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1367 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1368 | 1369 | expand-brackets@^2.1.4: 1370 | version "2.1.4" 1371 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1372 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1373 | dependencies: 1374 | debug "^2.3.3" 1375 | define-property "^0.2.5" 1376 | extend-shallow "^2.0.1" 1377 | posix-character-classes "^0.1.0" 1378 | regex-not "^1.0.0" 1379 | snapdragon "^0.8.1" 1380 | to-regex "^3.0.1" 1381 | 1382 | expect@^26.6.2: 1383 | version "26.6.2" 1384 | resolved "https://registry.yarnpkg.com/expect/-/expect-26.6.2.tgz#c6b996bf26bf3fe18b67b2d0f51fc981ba934417" 1385 | integrity sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA== 1386 | dependencies: 1387 | "@jest/types" "^26.6.2" 1388 | ansi-styles "^4.0.0" 1389 | jest-get-type "^26.3.0" 1390 | jest-matcher-utils "^26.6.2" 1391 | jest-message-util "^26.6.2" 1392 | jest-regex-util "^26.0.0" 1393 | 1394 | extend-shallow@^2.0.1: 1395 | version "2.0.1" 1396 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1397 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1398 | dependencies: 1399 | is-extendable "^0.1.0" 1400 | 1401 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1402 | version "3.0.2" 1403 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1404 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1405 | dependencies: 1406 | assign-symbols "^1.0.0" 1407 | is-extendable "^1.0.1" 1408 | 1409 | extglob@^2.0.4: 1410 | version "2.0.4" 1411 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1412 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1413 | dependencies: 1414 | array-unique "^0.3.2" 1415 | define-property "^1.0.0" 1416 | expand-brackets "^2.1.4" 1417 | extend-shallow "^2.0.1" 1418 | fragment-cache "^0.2.1" 1419 | regex-not "^1.0.0" 1420 | snapdragon "^0.8.1" 1421 | to-regex "^3.0.1" 1422 | 1423 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 1424 | version "2.1.0" 1425 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1426 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1427 | 1428 | fast-levenshtein@~2.0.6: 1429 | version "2.0.6" 1430 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1431 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1432 | 1433 | fb-watchman@^2.0.0: 1434 | version "2.0.1" 1435 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 1436 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 1437 | dependencies: 1438 | bser "2.1.1" 1439 | 1440 | fill-range@^4.0.0: 1441 | version "4.0.0" 1442 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1443 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1444 | dependencies: 1445 | extend-shallow "^2.0.1" 1446 | is-number "^3.0.0" 1447 | repeat-string "^1.6.1" 1448 | to-regex-range "^2.1.0" 1449 | 1450 | fill-range@^7.0.1: 1451 | version "7.0.1" 1452 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1453 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1454 | dependencies: 1455 | to-regex-range "^5.0.1" 1456 | 1457 | find-up@^4.0.0, find-up@^4.1.0: 1458 | version "4.1.0" 1459 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1460 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1461 | dependencies: 1462 | locate-path "^5.0.0" 1463 | path-exists "^4.0.0" 1464 | 1465 | for-in@^1.0.2: 1466 | version "1.0.2" 1467 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1468 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1469 | 1470 | form-data@^3.0.0: 1471 | version "3.0.1" 1472 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 1473 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 1474 | dependencies: 1475 | asynckit "^0.4.0" 1476 | combined-stream "^1.0.8" 1477 | mime-types "^2.1.12" 1478 | 1479 | fragment-cache@^0.2.1: 1480 | version "0.2.1" 1481 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1482 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1483 | dependencies: 1484 | map-cache "^0.2.2" 1485 | 1486 | fs.realpath@^1.0.0: 1487 | version "1.0.0" 1488 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1489 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1490 | 1491 | fsevents@^2.1.2: 1492 | version "2.3.2" 1493 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1494 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1495 | 1496 | function-bind@^1.1.1: 1497 | version "1.1.1" 1498 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1499 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1500 | 1501 | gensync@^1.0.0-beta.2: 1502 | version "1.0.0-beta.2" 1503 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1504 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1505 | 1506 | get-caller-file@^2.0.1: 1507 | version "2.0.5" 1508 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1509 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1510 | 1511 | get-package-type@^0.1.0: 1512 | version "0.1.0" 1513 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1514 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1515 | 1516 | get-stream@^4.0.0: 1517 | version "4.1.0" 1518 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1519 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 1520 | dependencies: 1521 | pump "^3.0.0" 1522 | 1523 | get-stream@^5.0.0: 1524 | version "5.2.0" 1525 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 1526 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 1527 | dependencies: 1528 | pump "^3.0.0" 1529 | 1530 | get-value@^2.0.3, get-value@^2.0.6: 1531 | version "2.0.6" 1532 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1533 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1534 | 1535 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 1536 | version "7.2.0" 1537 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1538 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1539 | dependencies: 1540 | fs.realpath "^1.0.0" 1541 | inflight "^1.0.4" 1542 | inherits "2" 1543 | minimatch "^3.0.4" 1544 | once "^1.3.0" 1545 | path-is-absolute "^1.0.0" 1546 | 1547 | globals@^11.1.0: 1548 | version "11.12.0" 1549 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1550 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1551 | 1552 | graceful-fs@^4.2.4: 1553 | version "4.2.10" 1554 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1555 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1556 | 1557 | growly@^1.3.0: 1558 | version "1.3.0" 1559 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1560 | integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= 1561 | 1562 | has-flag@^3.0.0: 1563 | version "3.0.0" 1564 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1565 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1566 | 1567 | has-flag@^4.0.0: 1568 | version "4.0.0" 1569 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1570 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1571 | 1572 | has-value@^0.3.1: 1573 | version "0.3.1" 1574 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1575 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1576 | dependencies: 1577 | get-value "^2.0.3" 1578 | has-values "^0.1.4" 1579 | isobject "^2.0.0" 1580 | 1581 | has-value@^1.0.0: 1582 | version "1.0.0" 1583 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1584 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1585 | dependencies: 1586 | get-value "^2.0.6" 1587 | has-values "^1.0.0" 1588 | isobject "^3.0.0" 1589 | 1590 | has-values@^0.1.4: 1591 | version "0.1.4" 1592 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1593 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1594 | 1595 | has-values@^1.0.0: 1596 | version "1.0.0" 1597 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1598 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1599 | dependencies: 1600 | is-number "^3.0.0" 1601 | kind-of "^4.0.0" 1602 | 1603 | has@^1.0.3: 1604 | version "1.0.3" 1605 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1606 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1607 | dependencies: 1608 | function-bind "^1.1.1" 1609 | 1610 | hosted-git-info@^2.1.4: 1611 | version "2.8.9" 1612 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1613 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1614 | 1615 | html-encoding-sniffer@^2.0.1: 1616 | version "2.0.1" 1617 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 1618 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 1619 | dependencies: 1620 | whatwg-encoding "^1.0.5" 1621 | 1622 | html-escaper@^2.0.0: 1623 | version "2.0.2" 1624 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1625 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1626 | 1627 | http-proxy-agent@^4.0.1: 1628 | version "4.0.1" 1629 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1630 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1631 | dependencies: 1632 | "@tootallnate/once" "1" 1633 | agent-base "6" 1634 | debug "4" 1635 | 1636 | https-proxy-agent@^5.0.0: 1637 | version "5.0.1" 1638 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" 1639 | integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== 1640 | dependencies: 1641 | agent-base "6" 1642 | debug "4" 1643 | 1644 | human-signals@^1.1.1: 1645 | version "1.1.1" 1646 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" 1647 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 1648 | 1649 | iconv-lite@0.4.24: 1650 | version "0.4.24" 1651 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1652 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1653 | dependencies: 1654 | safer-buffer ">= 2.1.2 < 3" 1655 | 1656 | import-local@^3.0.2: 1657 | version "3.1.0" 1658 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" 1659 | integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== 1660 | dependencies: 1661 | pkg-dir "^4.2.0" 1662 | resolve-cwd "^3.0.0" 1663 | 1664 | imurmurhash@^0.1.4: 1665 | version "0.1.4" 1666 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1667 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1668 | 1669 | inflight@^1.0.4: 1670 | version "1.0.6" 1671 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1672 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1673 | dependencies: 1674 | once "^1.3.0" 1675 | wrappy "1" 1676 | 1677 | inherits@2: 1678 | version "2.0.4" 1679 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1680 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1681 | 1682 | is-accessor-descriptor@^0.1.6: 1683 | version "0.1.6" 1684 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1685 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1686 | dependencies: 1687 | kind-of "^3.0.2" 1688 | 1689 | is-accessor-descriptor@^1.0.0: 1690 | version "1.0.0" 1691 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1692 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1693 | dependencies: 1694 | kind-of "^6.0.0" 1695 | 1696 | is-arrayish@^0.2.1: 1697 | version "0.2.1" 1698 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1699 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1700 | 1701 | is-buffer@^1.1.5: 1702 | version "1.1.6" 1703 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1704 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1705 | 1706 | is-ci@^2.0.0: 1707 | version "2.0.0" 1708 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 1709 | integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 1710 | dependencies: 1711 | ci-info "^2.0.0" 1712 | 1713 | is-core-module@^2.8.1: 1714 | version "2.8.1" 1715 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211" 1716 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA== 1717 | dependencies: 1718 | has "^1.0.3" 1719 | 1720 | is-data-descriptor@^0.1.4: 1721 | version "0.1.4" 1722 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1723 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1724 | dependencies: 1725 | kind-of "^3.0.2" 1726 | 1727 | is-data-descriptor@^1.0.0: 1728 | version "1.0.0" 1729 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1730 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1731 | dependencies: 1732 | kind-of "^6.0.0" 1733 | 1734 | is-descriptor@^0.1.0: 1735 | version "0.1.6" 1736 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1737 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 1738 | dependencies: 1739 | is-accessor-descriptor "^0.1.6" 1740 | is-data-descriptor "^0.1.4" 1741 | kind-of "^5.0.0" 1742 | 1743 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1744 | version "1.0.2" 1745 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1746 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 1747 | dependencies: 1748 | is-accessor-descriptor "^1.0.0" 1749 | is-data-descriptor "^1.0.0" 1750 | kind-of "^6.0.2" 1751 | 1752 | is-docker@^2.0.0: 1753 | version "2.2.1" 1754 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" 1755 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 1756 | 1757 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1758 | version "0.1.1" 1759 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1760 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1761 | 1762 | is-extendable@^1.0.1: 1763 | version "1.0.1" 1764 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1765 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 1766 | dependencies: 1767 | is-plain-object "^2.0.4" 1768 | 1769 | is-fullwidth-code-point@^3.0.0: 1770 | version "3.0.0" 1771 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1772 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1773 | 1774 | is-generator-fn@^2.0.0: 1775 | version "2.1.0" 1776 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1777 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1778 | 1779 | is-number@^3.0.0: 1780 | version "3.0.0" 1781 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1782 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 1783 | dependencies: 1784 | kind-of "^3.0.2" 1785 | 1786 | is-number@^7.0.0: 1787 | version "7.0.0" 1788 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1789 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1790 | 1791 | is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1792 | version "2.0.4" 1793 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1794 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1795 | dependencies: 1796 | isobject "^3.0.1" 1797 | 1798 | is-potential-custom-element-name@^1.0.1: 1799 | version "1.0.1" 1800 | resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 1801 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 1802 | 1803 | is-stream@^1.1.0: 1804 | version "1.1.0" 1805 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1806 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1807 | 1808 | is-stream@^2.0.0: 1809 | version "2.0.1" 1810 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 1811 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1812 | 1813 | is-typedarray@^1.0.0: 1814 | version "1.0.0" 1815 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1816 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1817 | 1818 | is-windows@^1.0.2: 1819 | version "1.0.2" 1820 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1821 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1822 | 1823 | is-wsl@^2.2.0: 1824 | version "2.2.0" 1825 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 1826 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 1827 | dependencies: 1828 | is-docker "^2.0.0" 1829 | 1830 | isarray@1.0.0: 1831 | version "1.0.0" 1832 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1833 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1834 | 1835 | isexe@^2.0.0: 1836 | version "2.0.0" 1837 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1838 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1839 | 1840 | isobject@^2.0.0: 1841 | version "2.1.0" 1842 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1843 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 1844 | dependencies: 1845 | isarray "1.0.0" 1846 | 1847 | isobject@^3.0.0, isobject@^3.0.1: 1848 | version "3.0.1" 1849 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1850 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 1851 | 1852 | istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 1853 | version "3.2.0" 1854 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" 1855 | integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== 1856 | 1857 | istanbul-lib-instrument@^4.0.3: 1858 | version "4.0.3" 1859 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" 1860 | integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== 1861 | dependencies: 1862 | "@babel/core" "^7.7.5" 1863 | "@istanbuljs/schema" "^0.1.2" 1864 | istanbul-lib-coverage "^3.0.0" 1865 | semver "^6.3.0" 1866 | 1867 | istanbul-lib-instrument@^5.0.4: 1868 | version "5.1.0" 1869 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz#7b49198b657b27a730b8e9cb601f1e1bff24c59a" 1870 | integrity sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q== 1871 | dependencies: 1872 | "@babel/core" "^7.12.3" 1873 | "@babel/parser" "^7.14.7" 1874 | "@istanbuljs/schema" "^0.1.2" 1875 | istanbul-lib-coverage "^3.2.0" 1876 | semver "^6.3.0" 1877 | 1878 | istanbul-lib-report@^3.0.0: 1879 | version "3.0.0" 1880 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 1881 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 1882 | dependencies: 1883 | istanbul-lib-coverage "^3.0.0" 1884 | make-dir "^3.0.0" 1885 | supports-color "^7.1.0" 1886 | 1887 | istanbul-lib-source-maps@^4.0.0: 1888 | version "4.0.1" 1889 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" 1890 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 1891 | dependencies: 1892 | debug "^4.1.1" 1893 | istanbul-lib-coverage "^3.0.0" 1894 | source-map "^0.6.1" 1895 | 1896 | istanbul-reports@^3.0.2: 1897 | version "3.1.4" 1898 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c" 1899 | integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== 1900 | dependencies: 1901 | html-escaper "^2.0.0" 1902 | istanbul-lib-report "^3.0.0" 1903 | 1904 | jest-changed-files@^26.6.2: 1905 | version "26.6.2" 1906 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.6.2.tgz#f6198479e1cc66f22f9ae1e22acaa0b429c042d0" 1907 | integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ== 1908 | dependencies: 1909 | "@jest/types" "^26.6.2" 1910 | execa "^4.0.0" 1911 | throat "^5.0.0" 1912 | 1913 | jest-cli@^26.5.3: 1914 | version "26.6.3" 1915 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.6.3.tgz#43117cfef24bc4cd691a174a8796a532e135e92a" 1916 | integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg== 1917 | dependencies: 1918 | "@jest/core" "^26.6.3" 1919 | "@jest/test-result" "^26.6.2" 1920 | "@jest/types" "^26.6.2" 1921 | chalk "^4.0.0" 1922 | exit "^0.1.2" 1923 | graceful-fs "^4.2.4" 1924 | import-local "^3.0.2" 1925 | is-ci "^2.0.0" 1926 | jest-config "^26.6.3" 1927 | jest-util "^26.6.2" 1928 | jest-validate "^26.6.2" 1929 | prompts "^2.0.1" 1930 | yargs "^15.4.1" 1931 | 1932 | jest-config@^26.6.3: 1933 | version "26.6.3" 1934 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.6.3.tgz#64f41444eef9eb03dc51d5c53b75c8c71f645349" 1935 | integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg== 1936 | dependencies: 1937 | "@babel/core" "^7.1.0" 1938 | "@jest/test-sequencer" "^26.6.3" 1939 | "@jest/types" "^26.6.2" 1940 | babel-jest "^26.6.3" 1941 | chalk "^4.0.0" 1942 | deepmerge "^4.2.2" 1943 | glob "^7.1.1" 1944 | graceful-fs "^4.2.4" 1945 | jest-environment-jsdom "^26.6.2" 1946 | jest-environment-node "^26.6.2" 1947 | jest-get-type "^26.3.0" 1948 | jest-jasmine2 "^26.6.3" 1949 | jest-regex-util "^26.0.0" 1950 | jest-resolve "^26.6.2" 1951 | jest-util "^26.6.2" 1952 | jest-validate "^26.6.2" 1953 | micromatch "^4.0.2" 1954 | pretty-format "^26.6.2" 1955 | 1956 | jest-diff@^26.0.0, jest-diff@^26.6.2: 1957 | version "26.6.2" 1958 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" 1959 | integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== 1960 | dependencies: 1961 | chalk "^4.0.0" 1962 | diff-sequences "^26.6.2" 1963 | jest-get-type "^26.3.0" 1964 | pretty-format "^26.6.2" 1965 | 1966 | jest-docblock@^26.0.0: 1967 | version "26.0.0" 1968 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5" 1969 | integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w== 1970 | dependencies: 1971 | detect-newline "^3.0.0" 1972 | 1973 | jest-each@^26.6.2: 1974 | version "26.6.2" 1975 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.6.2.tgz#02526438a77a67401c8a6382dfe5999952c167cb" 1976 | integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A== 1977 | dependencies: 1978 | "@jest/types" "^26.6.2" 1979 | chalk "^4.0.0" 1980 | jest-get-type "^26.3.0" 1981 | jest-util "^26.6.2" 1982 | pretty-format "^26.6.2" 1983 | 1984 | jest-environment-jsdom@^26.6.2: 1985 | version "26.6.2" 1986 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz#78d09fe9cf019a357009b9b7e1f101d23bd1da3e" 1987 | integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q== 1988 | dependencies: 1989 | "@jest/environment" "^26.6.2" 1990 | "@jest/fake-timers" "^26.6.2" 1991 | "@jest/types" "^26.6.2" 1992 | "@types/node" "*" 1993 | jest-mock "^26.6.2" 1994 | jest-util "^26.6.2" 1995 | jsdom "^16.4.0" 1996 | 1997 | jest-environment-node@^26.6.2: 1998 | version "26.6.2" 1999 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.6.2.tgz#824e4c7fb4944646356f11ac75b229b0035f2b0c" 2000 | integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag== 2001 | dependencies: 2002 | "@jest/environment" "^26.6.2" 2003 | "@jest/fake-timers" "^26.6.2" 2004 | "@jest/types" "^26.6.2" 2005 | "@types/node" "*" 2006 | jest-mock "^26.6.2" 2007 | jest-util "^26.6.2" 2008 | 2009 | jest-get-type@^26.3.0: 2010 | version "26.3.0" 2011 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" 2012 | integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== 2013 | 2014 | jest-haste-map@^26.6.2: 2015 | version "26.6.2" 2016 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa" 2017 | integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w== 2018 | dependencies: 2019 | "@jest/types" "^26.6.2" 2020 | "@types/graceful-fs" "^4.1.2" 2021 | "@types/node" "*" 2022 | anymatch "^3.0.3" 2023 | fb-watchman "^2.0.0" 2024 | graceful-fs "^4.2.4" 2025 | jest-regex-util "^26.0.0" 2026 | jest-serializer "^26.6.2" 2027 | jest-util "^26.6.2" 2028 | jest-worker "^26.6.2" 2029 | micromatch "^4.0.2" 2030 | sane "^4.0.3" 2031 | walker "^1.0.7" 2032 | optionalDependencies: 2033 | fsevents "^2.1.2" 2034 | 2035 | jest-jasmine2@^26.6.3: 2036 | version "26.6.3" 2037 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz#adc3cf915deacb5212c93b9f3547cd12958f2edd" 2038 | integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg== 2039 | dependencies: 2040 | "@babel/traverse" "^7.1.0" 2041 | "@jest/environment" "^26.6.2" 2042 | "@jest/source-map" "^26.6.2" 2043 | "@jest/test-result" "^26.6.2" 2044 | "@jest/types" "^26.6.2" 2045 | "@types/node" "*" 2046 | chalk "^4.0.0" 2047 | co "^4.6.0" 2048 | expect "^26.6.2" 2049 | is-generator-fn "^2.0.0" 2050 | jest-each "^26.6.2" 2051 | jest-matcher-utils "^26.6.2" 2052 | jest-message-util "^26.6.2" 2053 | jest-runtime "^26.6.3" 2054 | jest-snapshot "^26.6.2" 2055 | jest-util "^26.6.2" 2056 | pretty-format "^26.6.2" 2057 | throat "^5.0.0" 2058 | 2059 | jest-leak-detector@^26.6.2: 2060 | version "26.6.2" 2061 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz#7717cf118b92238f2eba65054c8a0c9c653a91af" 2062 | integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg== 2063 | dependencies: 2064 | jest-get-type "^26.3.0" 2065 | pretty-format "^26.6.2" 2066 | 2067 | jest-matcher-utils@^26.6.2: 2068 | version "26.6.2" 2069 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz#8e6fd6e863c8b2d31ac6472eeb237bc595e53e7a" 2070 | integrity sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw== 2071 | dependencies: 2072 | chalk "^4.0.0" 2073 | jest-diff "^26.6.2" 2074 | jest-get-type "^26.3.0" 2075 | pretty-format "^26.6.2" 2076 | 2077 | jest-message-util@^26.6.2: 2078 | version "26.6.2" 2079 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.6.2.tgz#58173744ad6fc0506b5d21150b9be56ef001ca07" 2080 | integrity sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA== 2081 | dependencies: 2082 | "@babel/code-frame" "^7.0.0" 2083 | "@jest/types" "^26.6.2" 2084 | "@types/stack-utils" "^2.0.0" 2085 | chalk "^4.0.0" 2086 | graceful-fs "^4.2.4" 2087 | micromatch "^4.0.2" 2088 | pretty-format "^26.6.2" 2089 | slash "^3.0.0" 2090 | stack-utils "^2.0.2" 2091 | 2092 | jest-mock@^26.6.2: 2093 | version "26.6.2" 2094 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.6.2.tgz#d6cb712b041ed47fe0d9b6fc3474bc6543feb302" 2095 | integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew== 2096 | dependencies: 2097 | "@jest/types" "^26.6.2" 2098 | "@types/node" "*" 2099 | 2100 | jest-pnp-resolver@^1.2.2: 2101 | version "1.2.2" 2102 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 2103 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 2104 | 2105 | jest-regex-util@^26.0.0: 2106 | version "26.0.0" 2107 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" 2108 | integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== 2109 | 2110 | jest-resolve-dependencies@^26.6.3: 2111 | version "26.6.3" 2112 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz#6680859ee5d22ee5dcd961fe4871f59f4c784fb6" 2113 | integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg== 2114 | dependencies: 2115 | "@jest/types" "^26.6.2" 2116 | jest-regex-util "^26.0.0" 2117 | jest-snapshot "^26.6.2" 2118 | 2119 | jest-resolve@^26.6.2: 2120 | version "26.6.2" 2121 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.6.2.tgz#a3ab1517217f469b504f1b56603c5bb541fbb507" 2122 | integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ== 2123 | dependencies: 2124 | "@jest/types" "^26.6.2" 2125 | chalk "^4.0.0" 2126 | graceful-fs "^4.2.4" 2127 | jest-pnp-resolver "^1.2.2" 2128 | jest-util "^26.6.2" 2129 | read-pkg-up "^7.0.1" 2130 | resolve "^1.18.1" 2131 | slash "^3.0.0" 2132 | 2133 | jest-runner@^26.6.3: 2134 | version "26.6.3" 2135 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.6.3.tgz#2d1fed3d46e10f233fd1dbd3bfaa3fe8924be159" 2136 | integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ== 2137 | dependencies: 2138 | "@jest/console" "^26.6.2" 2139 | "@jest/environment" "^26.6.2" 2140 | "@jest/test-result" "^26.6.2" 2141 | "@jest/types" "^26.6.2" 2142 | "@types/node" "*" 2143 | chalk "^4.0.0" 2144 | emittery "^0.7.1" 2145 | exit "^0.1.2" 2146 | graceful-fs "^4.2.4" 2147 | jest-config "^26.6.3" 2148 | jest-docblock "^26.0.0" 2149 | jest-haste-map "^26.6.2" 2150 | jest-leak-detector "^26.6.2" 2151 | jest-message-util "^26.6.2" 2152 | jest-resolve "^26.6.2" 2153 | jest-runtime "^26.6.3" 2154 | jest-util "^26.6.2" 2155 | jest-worker "^26.6.2" 2156 | source-map-support "^0.5.6" 2157 | throat "^5.0.0" 2158 | 2159 | jest-runtime@^26.6.3: 2160 | version "26.6.3" 2161 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.6.3.tgz#4f64efbcfac398331b74b4b3c82d27d401b8fa2b" 2162 | integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw== 2163 | dependencies: 2164 | "@jest/console" "^26.6.2" 2165 | "@jest/environment" "^26.6.2" 2166 | "@jest/fake-timers" "^26.6.2" 2167 | "@jest/globals" "^26.6.2" 2168 | "@jest/source-map" "^26.6.2" 2169 | "@jest/test-result" "^26.6.2" 2170 | "@jest/transform" "^26.6.2" 2171 | "@jest/types" "^26.6.2" 2172 | "@types/yargs" "^15.0.0" 2173 | chalk "^4.0.0" 2174 | cjs-module-lexer "^0.6.0" 2175 | collect-v8-coverage "^1.0.0" 2176 | exit "^0.1.2" 2177 | glob "^7.1.3" 2178 | graceful-fs "^4.2.4" 2179 | jest-config "^26.6.3" 2180 | jest-haste-map "^26.6.2" 2181 | jest-message-util "^26.6.2" 2182 | jest-mock "^26.6.2" 2183 | jest-regex-util "^26.0.0" 2184 | jest-resolve "^26.6.2" 2185 | jest-snapshot "^26.6.2" 2186 | jest-util "^26.6.2" 2187 | jest-validate "^26.6.2" 2188 | slash "^3.0.0" 2189 | strip-bom "^4.0.0" 2190 | yargs "^15.4.1" 2191 | 2192 | jest-serializer@^26.6.2: 2193 | version "26.6.2" 2194 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.6.2.tgz#d139aafd46957d3a448f3a6cdabe2919ba0742d1" 2195 | integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g== 2196 | dependencies: 2197 | "@types/node" "*" 2198 | graceful-fs "^4.2.4" 2199 | 2200 | jest-snapshot@^26.6.2: 2201 | version "26.6.2" 2202 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.6.2.tgz#f3b0af1acb223316850bd14e1beea9837fb39c84" 2203 | integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og== 2204 | dependencies: 2205 | "@babel/types" "^7.0.0" 2206 | "@jest/types" "^26.6.2" 2207 | "@types/babel__traverse" "^7.0.4" 2208 | "@types/prettier" "^2.0.0" 2209 | chalk "^4.0.0" 2210 | expect "^26.6.2" 2211 | graceful-fs "^4.2.4" 2212 | jest-diff "^26.6.2" 2213 | jest-get-type "^26.3.0" 2214 | jest-haste-map "^26.6.2" 2215 | jest-matcher-utils "^26.6.2" 2216 | jest-message-util "^26.6.2" 2217 | jest-resolve "^26.6.2" 2218 | natural-compare "^1.4.0" 2219 | pretty-format "^26.6.2" 2220 | semver "^7.3.2" 2221 | 2222 | jest-util@^26.1.0, jest-util@^26.6.2: 2223 | version "26.6.2" 2224 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1" 2225 | integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q== 2226 | dependencies: 2227 | "@jest/types" "^26.6.2" 2228 | "@types/node" "*" 2229 | chalk "^4.0.0" 2230 | graceful-fs "^4.2.4" 2231 | is-ci "^2.0.0" 2232 | micromatch "^4.0.2" 2233 | 2234 | jest-validate@^26.6.2: 2235 | version "26.6.2" 2236 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec" 2237 | integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ== 2238 | dependencies: 2239 | "@jest/types" "^26.6.2" 2240 | camelcase "^6.0.0" 2241 | chalk "^4.0.0" 2242 | jest-get-type "^26.3.0" 2243 | leven "^3.1.0" 2244 | pretty-format "^26.6.2" 2245 | 2246 | jest-watcher@^26.6.2: 2247 | version "26.6.2" 2248 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.6.2.tgz#a5b683b8f9d68dbcb1d7dae32172d2cca0592975" 2249 | integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ== 2250 | dependencies: 2251 | "@jest/test-result" "^26.6.2" 2252 | "@jest/types" "^26.6.2" 2253 | "@types/node" "*" 2254 | ansi-escapes "^4.2.1" 2255 | chalk "^4.0.0" 2256 | jest-util "^26.6.2" 2257 | string-length "^4.0.1" 2258 | 2259 | jest-worker@^26.6.2: 2260 | version "26.6.2" 2261 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" 2262 | integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 2263 | dependencies: 2264 | "@types/node" "*" 2265 | merge-stream "^2.0.0" 2266 | supports-color "^7.0.0" 2267 | 2268 | jest@26.5.3: 2269 | version "26.5.3" 2270 | resolved "https://registry.yarnpkg.com/jest/-/jest-26.5.3.tgz#5e7a322d16f558dc565ca97639e85993ef5affe6" 2271 | integrity sha512-uJi3FuVSLmkZrWvaDyaVTZGLL8WcfynbRnFXyAHuEtYiSZ+ijDDIMOw1ytmftK+y/+OdAtsG9QrtbF7WIBmOyA== 2272 | dependencies: 2273 | "@jest/core" "^26.5.3" 2274 | import-local "^3.0.2" 2275 | jest-cli "^26.5.3" 2276 | 2277 | js-tokens@^4.0.0: 2278 | version "4.0.0" 2279 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2280 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2281 | 2282 | js-yaml@^3.13.1: 2283 | version "3.14.1" 2284 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 2285 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 2286 | dependencies: 2287 | argparse "^1.0.7" 2288 | esprima "^4.0.0" 2289 | 2290 | jsdom@^16.4.0: 2291 | version "16.7.0" 2292 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" 2293 | integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== 2294 | dependencies: 2295 | abab "^2.0.5" 2296 | acorn "^8.2.4" 2297 | acorn-globals "^6.0.0" 2298 | cssom "^0.4.4" 2299 | cssstyle "^2.3.0" 2300 | data-urls "^2.0.0" 2301 | decimal.js "^10.2.1" 2302 | domexception "^2.0.1" 2303 | escodegen "^2.0.0" 2304 | form-data "^3.0.0" 2305 | html-encoding-sniffer "^2.0.1" 2306 | http-proxy-agent "^4.0.1" 2307 | https-proxy-agent "^5.0.0" 2308 | is-potential-custom-element-name "^1.0.1" 2309 | nwsapi "^2.2.0" 2310 | parse5 "6.0.1" 2311 | saxes "^5.0.1" 2312 | symbol-tree "^3.2.4" 2313 | tough-cookie "^4.0.0" 2314 | w3c-hr-time "^1.0.2" 2315 | w3c-xmlserializer "^2.0.0" 2316 | webidl-conversions "^6.1.0" 2317 | whatwg-encoding "^1.0.5" 2318 | whatwg-mimetype "^2.3.0" 2319 | whatwg-url "^8.5.0" 2320 | ws "^7.4.6" 2321 | xml-name-validator "^3.0.0" 2322 | 2323 | jsesc@^2.5.1: 2324 | version "2.5.2" 2325 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2326 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2327 | 2328 | json-parse-even-better-errors@^2.3.0: 2329 | version "2.3.1" 2330 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 2331 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 2332 | 2333 | json5@2.x, json5@^2.2.1: 2334 | version "2.2.1" 2335 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" 2336 | integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== 2337 | 2338 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2339 | version "3.2.2" 2340 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2341 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 2342 | dependencies: 2343 | is-buffer "^1.1.5" 2344 | 2345 | kind-of@^4.0.0: 2346 | version "4.0.0" 2347 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2348 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 2349 | dependencies: 2350 | is-buffer "^1.1.5" 2351 | 2352 | kind-of@^5.0.0: 2353 | version "5.1.0" 2354 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2355 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 2356 | 2357 | kind-of@^6.0.0, kind-of@^6.0.2: 2358 | version "6.0.3" 2359 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 2360 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 2361 | 2362 | kleur@^3.0.3: 2363 | version "3.0.3" 2364 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 2365 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2366 | 2367 | leven@^3.1.0: 2368 | version "3.1.0" 2369 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2370 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2371 | 2372 | levn@~0.3.0: 2373 | version "0.3.0" 2374 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2375 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2376 | dependencies: 2377 | prelude-ls "~1.1.2" 2378 | type-check "~0.3.2" 2379 | 2380 | lines-and-columns@^1.1.6: 2381 | version "1.2.4" 2382 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 2383 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 2384 | 2385 | locate-path@^5.0.0: 2386 | version "5.0.0" 2387 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2388 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2389 | dependencies: 2390 | p-locate "^4.1.0" 2391 | 2392 | lodash@4.x, lodash@^4.7.0: 2393 | version "4.17.21" 2394 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2395 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 2396 | 2397 | lru-cache@^6.0.0: 2398 | version "6.0.0" 2399 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 2400 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2401 | dependencies: 2402 | yallist "^4.0.0" 2403 | 2404 | lz-string@^1.4.4: 2405 | version "1.4.4" 2406 | resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26" 2407 | integrity sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY= 2408 | 2409 | make-dir@^3.0.0: 2410 | version "3.1.0" 2411 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 2412 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2413 | dependencies: 2414 | semver "^6.0.0" 2415 | 2416 | make-error@1.x: 2417 | version "1.3.6" 2418 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 2419 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 2420 | 2421 | makeerror@1.0.12: 2422 | version "1.0.12" 2423 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" 2424 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 2425 | dependencies: 2426 | tmpl "1.0.5" 2427 | 2428 | map-cache@^0.2.2: 2429 | version "0.2.2" 2430 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2431 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2432 | 2433 | map-visit@^1.0.0: 2434 | version "1.0.0" 2435 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2436 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2437 | dependencies: 2438 | object-visit "^1.0.0" 2439 | 2440 | merge-stream@^2.0.0: 2441 | version "2.0.0" 2442 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2443 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2444 | 2445 | micromatch@^3.1.4: 2446 | version "3.1.10" 2447 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2448 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2449 | dependencies: 2450 | arr-diff "^4.0.0" 2451 | array-unique "^0.3.2" 2452 | braces "^2.3.1" 2453 | define-property "^2.0.2" 2454 | extend-shallow "^3.0.2" 2455 | extglob "^2.0.4" 2456 | fragment-cache "^0.2.1" 2457 | kind-of "^6.0.2" 2458 | nanomatch "^1.2.9" 2459 | object.pick "^1.3.0" 2460 | regex-not "^1.0.0" 2461 | snapdragon "^0.8.1" 2462 | to-regex "^3.0.2" 2463 | 2464 | micromatch@^4.0.2: 2465 | version "4.0.5" 2466 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 2467 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 2468 | dependencies: 2469 | braces "^3.0.2" 2470 | picomatch "^2.3.1" 2471 | 2472 | mime-db@1.52.0: 2473 | version "1.52.0" 2474 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 2475 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 2476 | 2477 | mime-types@^2.1.12: 2478 | version "2.1.35" 2479 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 2480 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 2481 | dependencies: 2482 | mime-db "1.52.0" 2483 | 2484 | mimic-fn@^2.1.0: 2485 | version "2.1.0" 2486 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2487 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2488 | 2489 | minimatch@^3.0.4: 2490 | version "3.1.2" 2491 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 2492 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 2493 | dependencies: 2494 | brace-expansion "^1.1.7" 2495 | 2496 | minimist@^1.1.1, minimist@^1.2.0: 2497 | version "1.2.6" 2498 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 2499 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 2500 | 2501 | mixin-deep@^1.2.0: 2502 | version "1.3.2" 2503 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2504 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== 2505 | dependencies: 2506 | for-in "^1.0.2" 2507 | is-extendable "^1.0.1" 2508 | 2509 | mkdirp@1.x: 2510 | version "1.0.4" 2511 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 2512 | integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 2513 | 2514 | ms@2.0.0: 2515 | version "2.0.0" 2516 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2517 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2518 | 2519 | ms@2.1.2: 2520 | version "2.1.2" 2521 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2522 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2523 | 2524 | nanomatch@^1.2.9: 2525 | version "1.2.13" 2526 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2527 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 2528 | dependencies: 2529 | arr-diff "^4.0.0" 2530 | array-unique "^0.3.2" 2531 | define-property "^2.0.2" 2532 | extend-shallow "^3.0.2" 2533 | fragment-cache "^0.2.1" 2534 | is-windows "^1.0.2" 2535 | kind-of "^6.0.2" 2536 | object.pick "^1.3.0" 2537 | regex-not "^1.0.0" 2538 | snapdragon "^0.8.1" 2539 | to-regex "^3.0.1" 2540 | 2541 | natural-compare@^1.4.0: 2542 | version "1.4.0" 2543 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2544 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2545 | 2546 | nice-try@^1.0.4: 2547 | version "1.0.5" 2548 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2549 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 2550 | 2551 | node-int64@^0.4.0: 2552 | version "0.4.0" 2553 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2554 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 2555 | 2556 | node-notifier@^8.0.0: 2557 | version "8.0.2" 2558 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz#f3167a38ef0d2c8a866a83e318c1ba0efeb702c5" 2559 | integrity sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg== 2560 | dependencies: 2561 | growly "^1.3.0" 2562 | is-wsl "^2.2.0" 2563 | semver "^7.3.2" 2564 | shellwords "^0.1.1" 2565 | uuid "^8.3.0" 2566 | which "^2.0.2" 2567 | 2568 | node-releases@^2.0.2: 2569 | version "2.0.3" 2570 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.3.tgz#225ee7488e4a5e636da8da52854844f9d716ca96" 2571 | integrity sha512-maHFz6OLqYxz+VQyCAtA3PTX4UP/53pa05fyDNc9CwjvJ0yEh6+xBwKsgCxMNhS8taUKBFYxfuiaD9U/55iFaw== 2572 | 2573 | normalize-package-data@^2.5.0: 2574 | version "2.5.0" 2575 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 2576 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 2577 | dependencies: 2578 | hosted-git-info "^2.1.4" 2579 | resolve "^1.10.0" 2580 | semver "2 || 3 || 4 || 5" 2581 | validate-npm-package-license "^3.0.1" 2582 | 2583 | normalize-path@^2.1.1: 2584 | version "2.1.1" 2585 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2586 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2587 | dependencies: 2588 | remove-trailing-separator "^1.0.1" 2589 | 2590 | normalize-path@^3.0.0: 2591 | version "3.0.0" 2592 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2593 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2594 | 2595 | npm-run-path@^2.0.0: 2596 | version "2.0.2" 2597 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2598 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 2599 | dependencies: 2600 | path-key "^2.0.0" 2601 | 2602 | npm-run-path@^4.0.0: 2603 | version "4.0.1" 2604 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2605 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2606 | dependencies: 2607 | path-key "^3.0.0" 2608 | 2609 | nwsapi@^2.2.0: 2610 | version "2.2.0" 2611 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 2612 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 2613 | 2614 | object-copy@^0.1.0: 2615 | version "0.1.0" 2616 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2617 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2618 | dependencies: 2619 | copy-descriptor "^0.1.0" 2620 | define-property "^0.2.5" 2621 | kind-of "^3.0.3" 2622 | 2623 | object-visit@^1.0.0: 2624 | version "1.0.1" 2625 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2626 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2627 | dependencies: 2628 | isobject "^3.0.0" 2629 | 2630 | object.pick@^1.3.0: 2631 | version "1.3.0" 2632 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2633 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2634 | dependencies: 2635 | isobject "^3.0.1" 2636 | 2637 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2638 | version "1.4.0" 2639 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2640 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2641 | dependencies: 2642 | wrappy "1" 2643 | 2644 | onetime@^5.1.0: 2645 | version "5.1.2" 2646 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2647 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2648 | dependencies: 2649 | mimic-fn "^2.1.0" 2650 | 2651 | optionator@^0.8.1: 2652 | version "0.8.3" 2653 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 2654 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 2655 | dependencies: 2656 | deep-is "~0.1.3" 2657 | fast-levenshtein "~2.0.6" 2658 | levn "~0.3.0" 2659 | prelude-ls "~1.1.2" 2660 | type-check "~0.3.2" 2661 | word-wrap "~1.2.3" 2662 | 2663 | p-each-series@^2.1.0: 2664 | version "2.2.0" 2665 | resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" 2666 | integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== 2667 | 2668 | p-finally@^1.0.0: 2669 | version "1.0.0" 2670 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2671 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2672 | 2673 | p-limit@^2.2.0: 2674 | version "2.3.0" 2675 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2676 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2677 | dependencies: 2678 | p-try "^2.0.0" 2679 | 2680 | p-locate@^4.1.0: 2681 | version "4.1.0" 2682 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2683 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2684 | dependencies: 2685 | p-limit "^2.2.0" 2686 | 2687 | p-try@^2.0.0: 2688 | version "2.2.0" 2689 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2690 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2691 | 2692 | parse-json@^5.0.0: 2693 | version "5.2.0" 2694 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 2695 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2696 | dependencies: 2697 | "@babel/code-frame" "^7.0.0" 2698 | error-ex "^1.3.1" 2699 | json-parse-even-better-errors "^2.3.0" 2700 | lines-and-columns "^1.1.6" 2701 | 2702 | parse5@6.0.1: 2703 | version "6.0.1" 2704 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 2705 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 2706 | 2707 | pascalcase@^0.1.1: 2708 | version "0.1.1" 2709 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2710 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2711 | 2712 | path-exists@^4.0.0: 2713 | version "4.0.0" 2714 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2715 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2716 | 2717 | path-is-absolute@^1.0.0: 2718 | version "1.0.1" 2719 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2720 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2721 | 2722 | path-key@^2.0.0, path-key@^2.0.1: 2723 | version "2.0.1" 2724 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2725 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2726 | 2727 | path-key@^3.0.0, path-key@^3.1.0: 2728 | version "3.1.1" 2729 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2730 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2731 | 2732 | path-parse@^1.0.7: 2733 | version "1.0.7" 2734 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2735 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2736 | 2737 | picocolors@^1.0.0: 2738 | version "1.0.0" 2739 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 2740 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2741 | 2742 | picomatch@^2.0.4, picomatch@^2.3.1: 2743 | version "2.3.1" 2744 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 2745 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 2746 | 2747 | pirates@^4.0.1: 2748 | version "4.0.5" 2749 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" 2750 | integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== 2751 | 2752 | pkg-dir@^4.2.0: 2753 | version "4.2.0" 2754 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2755 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2756 | dependencies: 2757 | find-up "^4.0.0" 2758 | 2759 | posix-character-classes@^0.1.0: 2760 | version "0.1.1" 2761 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2762 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2763 | 2764 | prelude-ls@~1.1.2: 2765 | version "1.1.2" 2766 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2767 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2768 | 2769 | pretty-format@^26.0.0, pretty-format@^26.6.2: 2770 | version "26.6.2" 2771 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" 2772 | integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== 2773 | dependencies: 2774 | "@jest/types" "^26.6.2" 2775 | ansi-regex "^5.0.0" 2776 | ansi-styles "^4.0.0" 2777 | react-is "^17.0.1" 2778 | 2779 | prompts@^2.0.1: 2780 | version "2.4.2" 2781 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" 2782 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 2783 | dependencies: 2784 | kleur "^3.0.3" 2785 | sisteransi "^1.0.5" 2786 | 2787 | psl@^1.1.33: 2788 | version "1.8.0" 2789 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 2790 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 2791 | 2792 | pump@^3.0.0: 2793 | version "3.0.0" 2794 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2795 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2796 | dependencies: 2797 | end-of-stream "^1.1.0" 2798 | once "^1.3.1" 2799 | 2800 | punycode@^2.1.1: 2801 | version "2.1.1" 2802 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2803 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2804 | 2805 | react-is@^17.0.1: 2806 | version "17.0.2" 2807 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 2808 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 2809 | 2810 | read-pkg-up@^7.0.1: 2811 | version "7.0.1" 2812 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 2813 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 2814 | dependencies: 2815 | find-up "^4.1.0" 2816 | read-pkg "^5.2.0" 2817 | type-fest "^0.8.1" 2818 | 2819 | read-pkg@^5.2.0: 2820 | version "5.2.0" 2821 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 2822 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 2823 | dependencies: 2824 | "@types/normalize-package-data" "^2.4.0" 2825 | normalize-package-data "^2.5.0" 2826 | parse-json "^5.0.0" 2827 | type-fest "^0.6.0" 2828 | 2829 | regenerator-runtime@^0.13.4: 2830 | version "0.13.9" 2831 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 2832 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 2833 | 2834 | regex-not@^1.0.0, regex-not@^1.0.2: 2835 | version "1.0.2" 2836 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2837 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 2838 | dependencies: 2839 | extend-shallow "^3.0.2" 2840 | safe-regex "^1.1.0" 2841 | 2842 | remove-trailing-separator@^1.0.1: 2843 | version "1.1.0" 2844 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2845 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 2846 | 2847 | repeat-element@^1.1.2: 2848 | version "1.1.4" 2849 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" 2850 | integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== 2851 | 2852 | repeat-string@^1.6.1: 2853 | version "1.6.1" 2854 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2855 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 2856 | 2857 | require-directory@^2.1.1: 2858 | version "2.1.1" 2859 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2860 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2861 | 2862 | require-main-filename@^2.0.0: 2863 | version "2.0.0" 2864 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 2865 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 2866 | 2867 | resolve-cwd@^3.0.0: 2868 | version "3.0.0" 2869 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 2870 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2871 | dependencies: 2872 | resolve-from "^5.0.0" 2873 | 2874 | resolve-from@^5.0.0: 2875 | version "5.0.0" 2876 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2877 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2878 | 2879 | resolve-url@^0.2.1: 2880 | version "0.2.1" 2881 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2882 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 2883 | 2884 | resolve@^1.10.0, resolve@^1.18.1: 2885 | version "1.22.0" 2886 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" 2887 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== 2888 | dependencies: 2889 | is-core-module "^2.8.1" 2890 | path-parse "^1.0.7" 2891 | supports-preserve-symlinks-flag "^1.0.0" 2892 | 2893 | ret@~0.1.10: 2894 | version "0.1.15" 2895 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2896 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 2897 | 2898 | rimraf@^3.0.0: 2899 | version "3.0.2" 2900 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2901 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2902 | dependencies: 2903 | glob "^7.1.3" 2904 | 2905 | rsvp@^4.8.4: 2906 | version "4.8.5" 2907 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" 2908 | integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== 2909 | 2910 | safe-buffer@~5.1.1: 2911 | version "5.1.2" 2912 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2913 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2914 | 2915 | safe-regex@^1.1.0: 2916 | version "1.1.0" 2917 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2918 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 2919 | dependencies: 2920 | ret "~0.1.10" 2921 | 2922 | "safer-buffer@>= 2.1.2 < 3": 2923 | version "2.1.2" 2924 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2925 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2926 | 2927 | sane@^4.0.3: 2928 | version "4.1.0" 2929 | resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" 2930 | integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== 2931 | dependencies: 2932 | "@cnakazawa/watch" "^1.0.3" 2933 | anymatch "^2.0.0" 2934 | capture-exit "^2.0.0" 2935 | exec-sh "^0.3.2" 2936 | execa "^1.0.0" 2937 | fb-watchman "^2.0.0" 2938 | micromatch "^3.1.4" 2939 | minimist "^1.1.1" 2940 | walker "~1.0.5" 2941 | 2942 | saxes@^5.0.1: 2943 | version "5.0.1" 2944 | resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 2945 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 2946 | dependencies: 2947 | xmlchars "^2.2.0" 2948 | 2949 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 2950 | version "5.7.1" 2951 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2952 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2953 | 2954 | semver@7.x, semver@^7.3.2: 2955 | version "7.3.7" 2956 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" 2957 | integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== 2958 | dependencies: 2959 | lru-cache "^6.0.0" 2960 | 2961 | semver@^6.0.0, semver@^6.3.0: 2962 | version "6.3.0" 2963 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2964 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2965 | 2966 | set-blocking@^2.0.0: 2967 | version "2.0.0" 2968 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2969 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2970 | 2971 | set-value@^2.0.0, set-value@^2.0.1: 2972 | version "2.0.1" 2973 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 2974 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== 2975 | dependencies: 2976 | extend-shallow "^2.0.1" 2977 | is-extendable "^0.1.1" 2978 | is-plain-object "^2.0.3" 2979 | split-string "^3.0.1" 2980 | 2981 | shebang-command@^1.2.0: 2982 | version "1.2.0" 2983 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2984 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2985 | dependencies: 2986 | shebang-regex "^1.0.0" 2987 | 2988 | shebang-command@^2.0.0: 2989 | version "2.0.0" 2990 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2991 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2992 | dependencies: 2993 | shebang-regex "^3.0.0" 2994 | 2995 | shebang-regex@^1.0.0: 2996 | version "1.0.0" 2997 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2998 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2999 | 3000 | shebang-regex@^3.0.0: 3001 | version "3.0.0" 3002 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 3003 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 3004 | 3005 | shellwords@^0.1.1: 3006 | version "0.1.1" 3007 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3008 | integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== 3009 | 3010 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3011 | version "3.0.7" 3012 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 3013 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 3014 | 3015 | sisteransi@^1.0.5: 3016 | version "1.0.5" 3017 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 3018 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 3019 | 3020 | slash@^3.0.0: 3021 | version "3.0.0" 3022 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 3023 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 3024 | 3025 | snapdragon-node@^2.0.1: 3026 | version "2.1.1" 3027 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3028 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 3029 | dependencies: 3030 | define-property "^1.0.0" 3031 | isobject "^3.0.0" 3032 | snapdragon-util "^3.0.1" 3033 | 3034 | snapdragon-util@^3.0.1: 3035 | version "3.0.1" 3036 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3037 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 3038 | dependencies: 3039 | kind-of "^3.2.0" 3040 | 3041 | snapdragon@^0.8.1: 3042 | version "0.8.2" 3043 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3044 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 3045 | dependencies: 3046 | base "^0.11.1" 3047 | debug "^2.2.0" 3048 | define-property "^0.2.5" 3049 | extend-shallow "^2.0.1" 3050 | map-cache "^0.2.2" 3051 | source-map "^0.5.6" 3052 | source-map-resolve "^0.5.0" 3053 | use "^3.1.0" 3054 | 3055 | source-map-resolve@^0.5.0: 3056 | version "0.5.3" 3057 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" 3058 | integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== 3059 | dependencies: 3060 | atob "^2.1.2" 3061 | decode-uri-component "^0.2.0" 3062 | resolve-url "^0.2.1" 3063 | source-map-url "^0.4.0" 3064 | urix "^0.1.0" 3065 | 3066 | source-map-support@^0.5.6: 3067 | version "0.5.21" 3068 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" 3069 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 3070 | dependencies: 3071 | buffer-from "^1.0.0" 3072 | source-map "^0.6.0" 3073 | 3074 | source-map-url@^0.4.0: 3075 | version "0.4.1" 3076 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" 3077 | integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== 3078 | 3079 | source-map@^0.5.0, source-map@^0.5.6: 3080 | version "0.5.7" 3081 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3082 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3083 | 3084 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3085 | version "0.6.1" 3086 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3087 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3088 | 3089 | source-map@^0.7.3: 3090 | version "0.7.3" 3091 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 3092 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 3093 | 3094 | spdx-correct@^3.0.0: 3095 | version "3.1.1" 3096 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 3097 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 3098 | dependencies: 3099 | spdx-expression-parse "^3.0.0" 3100 | spdx-license-ids "^3.0.0" 3101 | 3102 | spdx-exceptions@^2.1.0: 3103 | version "2.3.0" 3104 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 3105 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 3106 | 3107 | spdx-expression-parse@^3.0.0: 3108 | version "3.0.1" 3109 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 3110 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 3111 | dependencies: 3112 | spdx-exceptions "^2.1.0" 3113 | spdx-license-ids "^3.0.0" 3114 | 3115 | spdx-license-ids@^3.0.0: 3116 | version "3.0.11" 3117 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz#50c0d8c40a14ec1bf449bae69a0ea4685a9d9f95" 3118 | integrity sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g== 3119 | 3120 | split-string@^3.0.1, split-string@^3.0.2: 3121 | version "3.1.0" 3122 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3123 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 3124 | dependencies: 3125 | extend-shallow "^3.0.0" 3126 | 3127 | sprintf-js@~1.0.2: 3128 | version "1.0.3" 3129 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3130 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3131 | 3132 | stack-utils@^2.0.2: 3133 | version "2.0.5" 3134 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" 3135 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== 3136 | dependencies: 3137 | escape-string-regexp "^2.0.0" 3138 | 3139 | static-extend@^0.1.1: 3140 | version "0.1.2" 3141 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3142 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 3143 | dependencies: 3144 | define-property "^0.2.5" 3145 | object-copy "^0.1.0" 3146 | 3147 | string-length@^4.0.1: 3148 | version "4.0.2" 3149 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 3150 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 3151 | dependencies: 3152 | char-regex "^1.0.2" 3153 | strip-ansi "^6.0.0" 3154 | 3155 | string-width@^4.1.0, string-width@^4.2.0: 3156 | version "4.2.3" 3157 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 3158 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 3159 | dependencies: 3160 | emoji-regex "^8.0.0" 3161 | is-fullwidth-code-point "^3.0.0" 3162 | strip-ansi "^6.0.1" 3163 | 3164 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 3165 | version "6.0.1" 3166 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 3167 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 3168 | dependencies: 3169 | ansi-regex "^5.0.1" 3170 | 3171 | strip-bom@^4.0.0: 3172 | version "4.0.0" 3173 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 3174 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 3175 | 3176 | strip-eof@^1.0.0: 3177 | version "1.0.0" 3178 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3179 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 3180 | 3181 | strip-final-newline@^2.0.0: 3182 | version "2.0.0" 3183 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 3184 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 3185 | 3186 | supports-color@^5.3.0: 3187 | version "5.5.0" 3188 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3189 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3190 | dependencies: 3191 | has-flag "^3.0.0" 3192 | 3193 | supports-color@^7.0.0, supports-color@^7.1.0: 3194 | version "7.2.0" 3195 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 3196 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3197 | dependencies: 3198 | has-flag "^4.0.0" 3199 | 3200 | supports-hyperlinks@^2.0.0: 3201 | version "2.2.0" 3202 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" 3203 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 3204 | dependencies: 3205 | has-flag "^4.0.0" 3206 | supports-color "^7.0.0" 3207 | 3208 | supports-preserve-symlinks-flag@^1.0.0: 3209 | version "1.0.0" 3210 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 3211 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 3212 | 3213 | symbol-tree@^3.2.4: 3214 | version "3.2.4" 3215 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 3216 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 3217 | 3218 | terminal-link@^2.0.0: 3219 | version "2.1.1" 3220 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 3221 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 3222 | dependencies: 3223 | ansi-escapes "^4.2.1" 3224 | supports-hyperlinks "^2.0.0" 3225 | 3226 | test-exclude@^6.0.0: 3227 | version "6.0.0" 3228 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 3229 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 3230 | dependencies: 3231 | "@istanbuljs/schema" "^0.1.2" 3232 | glob "^7.1.4" 3233 | minimatch "^3.0.4" 3234 | 3235 | throat@^5.0.0: 3236 | version "5.0.0" 3237 | resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" 3238 | integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== 3239 | 3240 | tmpl@1.0.5: 3241 | version "1.0.5" 3242 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 3243 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 3244 | 3245 | to-fast-properties@^2.0.0: 3246 | version "2.0.0" 3247 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3248 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3249 | 3250 | to-object-path@^0.3.0: 3251 | version "0.3.0" 3252 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3253 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3254 | dependencies: 3255 | kind-of "^3.0.2" 3256 | 3257 | to-regex-range@^2.1.0: 3258 | version "2.1.1" 3259 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3260 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3261 | dependencies: 3262 | is-number "^3.0.0" 3263 | repeat-string "^1.6.1" 3264 | 3265 | to-regex-range@^5.0.1: 3266 | version "5.0.1" 3267 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3268 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3269 | dependencies: 3270 | is-number "^7.0.0" 3271 | 3272 | to-regex@^3.0.1, to-regex@^3.0.2: 3273 | version "3.0.2" 3274 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3275 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 3276 | dependencies: 3277 | define-property "^2.0.2" 3278 | extend-shallow "^3.0.2" 3279 | regex-not "^1.0.2" 3280 | safe-regex "^1.1.0" 3281 | 3282 | tough-cookie@^4.0.0: 3283 | version "4.0.0" 3284 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 3285 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 3286 | dependencies: 3287 | psl "^1.1.33" 3288 | punycode "^2.1.1" 3289 | universalify "^0.1.2" 3290 | 3291 | tr46@^2.1.0: 3292 | version "2.1.0" 3293 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" 3294 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== 3295 | dependencies: 3296 | punycode "^2.1.1" 3297 | 3298 | ts-jest@^26.4.1: 3299 | version "26.5.6" 3300 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-26.5.6.tgz#c32e0746425274e1dfe333f43cd3c800e014ec35" 3301 | integrity sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA== 3302 | dependencies: 3303 | bs-logger "0.x" 3304 | buffer-from "1.x" 3305 | fast-json-stable-stringify "2.x" 3306 | jest-util "^26.1.0" 3307 | json5 "2.x" 3308 | lodash "4.x" 3309 | make-error "1.x" 3310 | mkdirp "1.x" 3311 | semver "7.x" 3312 | yargs-parser "20.x" 3313 | 3314 | type-check@~0.3.2: 3315 | version "0.3.2" 3316 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3317 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3318 | dependencies: 3319 | prelude-ls "~1.1.2" 3320 | 3321 | type-detect@4.0.8: 3322 | version "4.0.8" 3323 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3324 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 3325 | 3326 | type-fest@^0.21.3: 3327 | version "0.21.3" 3328 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 3329 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 3330 | 3331 | type-fest@^0.6.0: 3332 | version "0.6.0" 3333 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 3334 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 3335 | 3336 | type-fest@^0.8.1: 3337 | version "0.8.1" 3338 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 3339 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 3340 | 3341 | typedarray-to-buffer@^3.1.5: 3342 | version "3.1.5" 3343 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 3344 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 3345 | dependencies: 3346 | is-typedarray "^1.0.0" 3347 | 3348 | typescript@^4.6.3: 3349 | version "4.6.3" 3350 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.3.tgz#eefeafa6afdd31d725584c67a0eaba80f6fc6c6c" 3351 | integrity sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw== 3352 | 3353 | union-value@^1.0.0: 3354 | version "1.0.1" 3355 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 3356 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== 3357 | dependencies: 3358 | arr-union "^3.1.0" 3359 | get-value "^2.0.6" 3360 | is-extendable "^0.1.1" 3361 | set-value "^2.0.1" 3362 | 3363 | universalify@^0.1.2: 3364 | version "0.1.2" 3365 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3366 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3367 | 3368 | unset-value@^1.0.0: 3369 | version "1.0.0" 3370 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3371 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3372 | dependencies: 3373 | has-value "^0.3.1" 3374 | isobject "^3.0.0" 3375 | 3376 | urix@^0.1.0: 3377 | version "0.1.0" 3378 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3379 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3380 | 3381 | use@^3.1.0: 3382 | version "3.1.1" 3383 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3384 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3385 | 3386 | uuid@^8.3.0: 3387 | version "8.3.2" 3388 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 3389 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 3390 | 3391 | v8-to-istanbul@^7.0.0: 3392 | version "7.1.2" 3393 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1" 3394 | integrity sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow== 3395 | dependencies: 3396 | "@types/istanbul-lib-coverage" "^2.0.1" 3397 | convert-source-map "^1.6.0" 3398 | source-map "^0.7.3" 3399 | 3400 | validate-npm-package-license@^3.0.1: 3401 | version "3.0.4" 3402 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3403 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 3404 | dependencies: 3405 | spdx-correct "^3.0.0" 3406 | spdx-expression-parse "^3.0.0" 3407 | 3408 | w3c-hr-time@^1.0.2: 3409 | version "1.0.2" 3410 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 3411 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 3412 | dependencies: 3413 | browser-process-hrtime "^1.0.0" 3414 | 3415 | w3c-xmlserializer@^2.0.0: 3416 | version "2.0.0" 3417 | resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 3418 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 3419 | dependencies: 3420 | xml-name-validator "^3.0.0" 3421 | 3422 | walker@^1.0.7, walker@~1.0.5: 3423 | version "1.0.8" 3424 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" 3425 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 3426 | dependencies: 3427 | makeerror "1.0.12" 3428 | 3429 | webidl-conversions@^5.0.0: 3430 | version "5.0.0" 3431 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 3432 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 3433 | 3434 | webidl-conversions@^6.1.0: 3435 | version "6.1.0" 3436 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 3437 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 3438 | 3439 | whatwg-encoding@^1.0.5: 3440 | version "1.0.5" 3441 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 3442 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 3443 | dependencies: 3444 | iconv-lite "0.4.24" 3445 | 3446 | whatwg-mimetype@^2.3.0: 3447 | version "2.3.0" 3448 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 3449 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 3450 | 3451 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 3452 | version "8.7.0" 3453 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" 3454 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== 3455 | dependencies: 3456 | lodash "^4.7.0" 3457 | tr46 "^2.1.0" 3458 | webidl-conversions "^6.1.0" 3459 | 3460 | which-module@^2.0.0: 3461 | version "2.0.0" 3462 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3463 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 3464 | 3465 | which@^1.2.9: 3466 | version "1.3.1" 3467 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3468 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3469 | dependencies: 3470 | isexe "^2.0.0" 3471 | 3472 | which@^2.0.1, which@^2.0.2: 3473 | version "2.0.2" 3474 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 3475 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3476 | dependencies: 3477 | isexe "^2.0.0" 3478 | 3479 | word-wrap@~1.2.3: 3480 | version "1.2.3" 3481 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 3482 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3483 | 3484 | wrap-ansi@^6.2.0: 3485 | version "6.2.0" 3486 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 3487 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 3488 | dependencies: 3489 | ansi-styles "^4.0.0" 3490 | string-width "^4.1.0" 3491 | strip-ansi "^6.0.0" 3492 | 3493 | wrappy@1: 3494 | version "1.0.2" 3495 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3496 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3497 | 3498 | write-file-atomic@^3.0.0: 3499 | version "3.0.3" 3500 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 3501 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 3502 | dependencies: 3503 | imurmurhash "^0.1.4" 3504 | is-typedarray "^1.0.0" 3505 | signal-exit "^3.0.2" 3506 | typedarray-to-buffer "^3.1.5" 3507 | 3508 | ws@^7.4.6: 3509 | version "7.5.7" 3510 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.7.tgz#9e0ac77ee50af70d58326ecff7e85eb3fa375e67" 3511 | integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A== 3512 | 3513 | xml-name-validator@^3.0.0: 3514 | version "3.0.0" 3515 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3516 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 3517 | 3518 | xmlchars@^2.2.0: 3519 | version "2.2.0" 3520 | resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 3521 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 3522 | 3523 | y18n@^4.0.0: 3524 | version "4.0.3" 3525 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" 3526 | integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== 3527 | 3528 | yallist@^4.0.0: 3529 | version "4.0.0" 3530 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 3531 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3532 | 3533 | yargs-parser@20.x: 3534 | version "20.2.9" 3535 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 3536 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 3537 | 3538 | yargs-parser@^18.1.2: 3539 | version "18.1.3" 3540 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" 3541 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== 3542 | dependencies: 3543 | camelcase "^5.0.0" 3544 | decamelize "^1.2.0" 3545 | 3546 | yargs@^15.4.1: 3547 | version "15.4.1" 3548 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" 3549 | integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== 3550 | dependencies: 3551 | cliui "^6.0.0" 3552 | decamelize "^1.2.0" 3553 | find-up "^4.1.0" 3554 | get-caller-file "^2.0.1" 3555 | require-directory "^2.1.1" 3556 | require-main-filename "^2.0.0" 3557 | set-blocking "^2.0.0" 3558 | string-width "^4.2.0" 3559 | which-module "^2.0.0" 3560 | y18n "^4.0.0" 3561 | yargs-parser "^18.1.2" 3562 | --------------------------------------------------------------------------------