├── .github
├── FUNDING.yml
└── workflows
│ ├── codeql-analysis.yml
│ └── test.yml
├── .gitignore
├── .npmignore
├── .vscode
└── settings.json
├── LICENSE
├── README.md
├── jest.config.js
├── package.json
├── src
├── cssjanus.d.ts
├── stylis-rtl.test.ts
└── stylis-rtl.ts
├── tsconfig.json
└── yarn.lock
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4 | patreon: probablyup
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9 | liberapay: # Replace with a single Liberapay username
10 | issuehunt: # Replace with a single IssueHunt username
11 | otechie: # Replace with a single Otechie username
12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
13 |
--------------------------------------------------------------------------------
/.github/workflows/codeql-analysis.yml:
--------------------------------------------------------------------------------
1 | # For most projects, this workflow file will not need changing; you simply need
2 | # to commit it to your repository.
3 | #
4 | # You may wish to alter this file to override the set of languages analyzed,
5 | # or to provide custom queries or build logic.
6 | #
7 | # ******** NOTE ********
8 | # We have attempted to detect the languages in your repository. Please check
9 | # the `language` matrix defined below to confirm you have the correct set of
10 | # supported CodeQL languages.
11 | #
12 | name: "CodeQL"
13 |
14 | on:
15 | push:
16 | branches: [ main ]
17 | pull_request:
18 | # The branches below must be a subset of the branches above
19 | branches: [ main ]
20 | schedule:
21 | - cron: '26 19 * * 3'
22 |
23 | jobs:
24 | analyze:
25 | name: Analyze
26 | runs-on: ubuntu-latest
27 | permissions:
28 | actions: read
29 | contents: read
30 | security-events: write
31 |
32 | strategy:
33 | fail-fast: false
34 | matrix:
35 | language: [ 'javascript' ]
36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
37 | # Learn more:
38 | # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
39 |
40 | steps:
41 | - name: Checkout repository
42 | uses: actions/checkout@v2
43 |
44 | # Initializes the CodeQL tools for scanning.
45 | - name: Initialize CodeQL
46 | uses: github/codeql-action/init@v1
47 | with:
48 | languages: ${{ matrix.language }}
49 | # If you wish to specify custom queries, you can do so here or in a config file.
50 | # By default, queries listed here will override any specified in a config file.
51 | # Prefix the list here with "+" to use these queries and those in the config file.
52 | # queries: ./path/to/local/query, your-org/your-repo/queries@main
53 |
54 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
55 | # If this step fails, then you should remove it and run the build manually (see below)
56 | - name: Autobuild
57 | uses: github/codeql-action/autobuild@v1
58 |
59 | # ℹ️ Command-line programs to run using the OS shell.
60 | # 📚 https://git.io/JvXDl
61 |
62 | # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
63 | # and modify them (or add more) to build your code if your project
64 | # uses a compiled language
65 |
66 | #- run: |
67 | # make bootstrap
68 | # make release
69 |
70 | - name: Perform CodeQL Analysis
71 | uses: github/codeql-action/analyze@v1
72 |
--------------------------------------------------------------------------------
/.github/workflows/test.yml:
--------------------------------------------------------------------------------
1 | name: CI
2 | on: push
3 | jobs:
4 | build:
5 | runs-on: ubuntu-latest
6 | steps:
7 | - uses: actions/checkout@v2
8 |
9 | - name: Get yarn cache directory path
10 | id: yarn-cache-dir-path
11 | run: echo "::set-output name=dir::$(yarn cache dir)"
12 |
13 | - uses: actions/cache@v2
14 | id: yarn-cache
15 | with:
16 | path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
17 | key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
18 | restore-keys: |
19 | ${{ runner.os }}-yarn-
20 | - name: Install modules
21 | run: yarn
22 | - name: Run tests
23 | run: yarn test
24 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 | .tsbuildinfo
4 | yarn-error.log
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | src
2 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "javascript.validate.enable": false
3 | }
4 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018-present styled-components
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # stylis-plugin-rtl
2 |
3 | Stylis RTL plugin based on CSSJanus
4 |
5 | > NOTE! Use v1 of this plugin for styled-components v5, NOT v2 (v2 is for libraries that have upgraded to stylis v4, which s-c has not yet. At the moment only emotion 11 is updated.)
6 |
7 | ## Installation
8 |
9 | ### v1
10 |
11 | ```shell
12 | yarn add stylis-plugin-rtl@^1
13 | ```
14 |
15 | ### v2
16 |
17 | ```shell
18 | yarn add stylis-plugin-rtl stylis
19 | ```
20 |
21 | ## Usage with styled-components v5+
22 |
23 | ```javascript
24 | import styled, { StyleSheetManager } from "styled-components";
25 | import rtlPlugin from "stylis-plugin-rtl";
26 |
27 | const Box = styled.div`
28 | padding-left: 10px;
29 | `;
30 |
31 | function MakeItRTL() {
32 | return (
33 |
34 | My padding will be on the right!
35 |
36 | );
37 | }
38 | ```
39 |
40 | #### NOTE: Preventing flipping
41 |
42 | Because minification removes all comments from your CSS before it passes to ``, `/* @noflip */` comment won't work.
43 | You will have to either:
44 | - add an exclamation mark at the beginning of the comment, like this `/*! @noflip */`, to prevent it from being removed
45 | - disable minification entirely by setting `minify` to `false` in `.babelrc` (see [styled-components documentation](https://styled-components.com/docs/tooling#minification)).
46 |
47 | This is a fork of `stylis-rtl` for use with styled-components v5+
--------------------------------------------------------------------------------
/jest.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | preset: 'ts-jest',
3 | };
4 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "stylis-plugin-rtl",
3 | "version": "2.1.1",
4 | "description": "Fork of stylis-rtl, uses cssjanus under the hood to flip style orientations for RTL",
5 | "module": "dist/stylis-rtl.js",
6 | "main": "dist/cjs/stylis-rtl.js",
7 | "types": "dist/stylis-rtl.d.ts",
8 | "scripts": {
9 | "build": "tsc && tsc --module commonjs --outDir dist/cjs",
10 | "prepublishOnly": "yarn build",
11 | "test": "jest"
12 | },
13 | "files": [
14 | "dist",
15 | "types"
16 | ],
17 | "repository": {
18 | "type": "git",
19 | "url": "git+https://github.com/styled-components/stylis-plugin-rtl.git"
20 | },
21 | "keywords": [
22 | "rtl",
23 | "bidi",
24 | "stylis",
25 | "emotion",
26 | "emotion-js",
27 | "css",
28 | "preprocessor",
29 | "styled-components"
30 | ],
31 | "author": "Jop de Klein",
32 | "contributors": [
33 | "Evan Jacobs (https://probablyup.com)"
34 | ],
35 | "license": "MIT",
36 | "bugs": {
37 | "url": "https://github.com/styled-components/stylis-plugin-rtl/issues"
38 | },
39 | "homepage": "https://github.com/styled-components/stylis-plugin-rtl#readme",
40 | "peerDependencies": {
41 | "stylis": "4.x"
42 | },
43 | "devDependencies": {
44 | "@types/jest": "^27.0.2",
45 | "@types/stylis": "^4.0.2",
46 | "jest": "^27.3.1",
47 | "prettier": "^2.4.1",
48 | "stylis": "^4.0.13",
49 | "ts-jest": "^27.0.7",
50 | "typescript": "^4.4.4"
51 | },
52 | "dependencies": {
53 | "cssjanus": "^2.0.1"
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/src/cssjanus.d.ts:
--------------------------------------------------------------------------------
1 | declare module 'cssjanus' {
2 | export function transform(input: string): string;
3 | }
4 |
--------------------------------------------------------------------------------
/src/stylis-rtl.test.ts:
--------------------------------------------------------------------------------
1 | import { compile, Middleware, middleware, prefixer, serialize, stringify } from 'stylis';
2 | import stylisRtlPlugin from './stylis-rtl';
3 |
4 | const stylis = (css: string, extraPlugins: Middleware[] = []) =>
5 | serialize(compile(css), middleware([...extraPlugins, stylisRtlPlugin, stringify]));
6 |
7 | describe('integration test with stylis', () => {
8 | it('flips simple rules', () => {
9 | expect(
10 | stylis(
11 | `.a {
12 | padding-left: 5px;
13 | margin-right: 5px;
14 | border-left: 1px solid red;
15 | }
16 | `
17 | )
18 | ).toMatchInlineSnapshot(`".a{padding-right:5px;margin-left:5px;border-right:1px solid red;}"`);
19 | });
20 |
21 | it('flips shorthands', () => {
22 | expect(
23 | stylis(
24 | `.a {
25 | padding: 0 5px 0 0;
26 | margin: 0 0 0 5px;
27 | }
28 | `
29 | )
30 | ).toMatchInlineSnapshot(`".a{padding:0 0 0 5px;margin:0 5px 0 0;}"`);
31 | });
32 |
33 | it('handles noflip directives', () => {
34 | expect(
35 | stylis(
36 | `
37 | .a {
38 | /* @noflip */
39 | padding: 0 5px 0 0;
40 | margin: 0 0 0 5px;
41 | }
42 | `
43 | )
44 | ).toMatchInlineSnapshot(`".a{padding:0 5px 0 0;margin:0 5px 0 0;}"`);
45 | });
46 |
47 | it('flips keyframes', () => {
48 | expect(
49 | stylis(
50 | `@keyframes a {
51 | 0% { left: 0px; }
52 | 100% { left: 100px; }
53 | }
54 | `
55 | )
56 | ).toMatchInlineSnapshot(`"@keyframes a{0%{right:0px;}100%{right:100px;}}"`);
57 | });
58 |
59 | it('flips media queries', () => {
60 | expect(
61 | stylis(
62 | `@media (min-width: 500px) {
63 | .a {
64 | padding-left: 5px;
65 | margin-right: 5px;
66 | border-left: 1px solid red;
67 | }
68 | }
69 | `
70 | )
71 | ).toMatchInlineSnapshot(
72 | `"@media (min-width: 500px){.a{padding-right:5px;margin-left:5px;border-right:1px solid red;}}"`
73 | );
74 | });
75 |
76 | it('flips supports queries', () => {
77 | expect(
78 | stylis(
79 | `@supports (display: flex) {
80 | .a {
81 | padding-left: 5px;
82 | margin-right: 5px;
83 | border-left: 1px solid red;
84 | }
85 | }
86 | `
87 | )
88 | ).toMatchInlineSnapshot(
89 | `"@supports (display: flex){.a{padding-right:5px;margin-left:5px;border-right:1px solid red;}}"`
90 | );
91 | });
92 |
93 | it('works in tandem with prefixer', () => {
94 | expect(
95 | stylis(
96 | `@keyframes a {
97 | 0% { left: 0px; }
98 | 100% { left: 100px; }
99 | }
100 | `,
101 | [prefixer]
102 | )
103 | ).toMatchInlineSnapshot(
104 | `"@-webkit-keyframes a{0%{right:0px;}100%{right:100px;}}@keyframes a{0%{right:0px;}100%{right:100px;}}"`
105 | );
106 | });
107 |
108 | it("doesn't crash on empty rules", () => {
109 | // this generates nodes for:
110 | // .cls{}
111 | // .cls .nested{color:hotpink;}
112 | expect(
113 | stylis(`
114 | .cls {
115 | & .nested {
116 | color:hotpink;
117 | }
118 | }
119 | `)
120 | ).toMatchInlineSnapshot(`".cls .nested{color:hotpink;}"`);
121 | });
122 |
123 | it('works for nested rules', () => {
124 | expect(
125 | stylis(`
126 | .cls {
127 | margin-right: 32px;
128 | & .first-child {
129 | margin-right: 32px;
130 | }
131 | }
132 | `)
133 | ).toMatchInlineSnapshot(`".cls{margin-left:32px;}.cls .first-child{margin-left:32px;}"`);
134 | });
135 | });
136 |
--------------------------------------------------------------------------------
/src/stylis-rtl.ts:
--------------------------------------------------------------------------------
1 | import cssjanus from 'cssjanus';
2 | import {
3 | COMMENT,
4 | compile,
5 | DECLARATION,
6 | IMPORT,
7 | RULESET,
8 | serialize,
9 | strlen,
10 | Middleware,
11 | KEYFRAMES,
12 | MEDIA,
13 | SUPPORTS,
14 | } from 'stylis';
15 |
16 | type MiddlewareParams = Parameters;
17 |
18 | function stringifyPreserveComments(
19 | element: MiddlewareParams[0],
20 | index: MiddlewareParams[1],
21 | children: MiddlewareParams[2]
22 | ): string {
23 | switch (element.type) {
24 | case IMPORT:
25 | case DECLARATION:
26 | case COMMENT:
27 | return (element.return = element.return || element.value);
28 | case RULESET: {
29 | element.value = Array.isArray(element.props) ? element.props.join(',') : element.props;
30 |
31 | if (Array.isArray(element.children)) {
32 | element.children.forEach((x) => {
33 | if (x.type === COMMENT) x.children = x.value;
34 | });
35 | }
36 | }
37 | }
38 |
39 | const serializedChildren = serialize(Array.prototype.concat(element.children), stringifyPreserveComments);
40 |
41 | return strlen(serializedChildren) ? (element.return = element.value + '{' + serializedChildren + '}') : '';
42 | }
43 |
44 | function stylisRTLPlugin(
45 | element: MiddlewareParams[0],
46 | index: MiddlewareParams[1],
47 | children: MiddlewareParams[2],
48 | callback: MiddlewareParams[3]
49 | ): string | void {
50 | if (
51 | element.type === KEYFRAMES ||
52 | element.type === SUPPORTS ||
53 | (element.type === RULESET && (!element.parent || element.parent.type === MEDIA || element.parent.type === RULESET))
54 | ) {
55 | const stringified = cssjanus.transform(stringifyPreserveComments(element, index, children));
56 |
57 | element.children = stringified ? compile(stringified)[0].children : [];
58 |
59 | element.return = '';
60 | }
61 | }
62 |
63 | // stable identifier that will not be dropped by minification unless the whole module
64 | // is unused
65 | Object.defineProperty(stylisRTLPlugin, 'name', { value: 'stylisRTLPlugin' });
66 |
67 | export default stylisRTLPlugin;
68 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "include": ["src/**/*.ts"],
3 | "exclude": ["src/**/*.test.ts"],
4 | "compilerOptions": {
5 | "outDir": "dist",
6 | "incremental": true /* Enable incremental compilation */,
7 | "target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
8 | "module": "esnext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
9 | "jsx": "react" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
10 | "declaration": true /* Generates corresponding '.d.ts' file. */,
11 | "declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */,
12 | "sourceMap": true /* Generates corresponding '.map' file. */,
13 | "strict": true /* Enable all strict type-checking options. */,
14 | "moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
15 | "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
16 | "skipLibCheck": true /* Skip type checking of declaration files. */,
17 | "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
18 | "tsBuildInfoFile": ".tsbuildinfo"
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5":
6 | version "7.14.5"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb"
8 | integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==
9 | dependencies:
10 | "@babel/highlight" "^7.14.5"
11 |
12 | "@babel/compat-data@^7.14.5":
13 | version "7.14.7"
14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz#7b047d7a3a89a67d2258dc61f604f098f1bc7e08"
15 | integrity sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==
16 |
17 | "@babel/core@^7.1.0", "@babel/core@^7.7.2", "@babel/core@^7.7.5":
18 | version "7.14.6"
19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab"
20 | integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==
21 | dependencies:
22 | "@babel/code-frame" "^7.14.5"
23 | "@babel/generator" "^7.14.5"
24 | "@babel/helper-compilation-targets" "^7.14.5"
25 | "@babel/helper-module-transforms" "^7.14.5"
26 | "@babel/helpers" "^7.14.6"
27 | "@babel/parser" "^7.14.6"
28 | "@babel/template" "^7.14.5"
29 | "@babel/traverse" "^7.14.5"
30 | "@babel/types" "^7.14.5"
31 | convert-source-map "^1.7.0"
32 | debug "^4.1.0"
33 | gensync "^1.0.0-beta.2"
34 | json5 "^2.1.2"
35 | semver "^6.3.0"
36 | source-map "^0.5.0"
37 |
38 | "@babel/generator@^7.14.5", "@babel/generator@^7.7.2":
39 | version "7.14.5"
40 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785"
41 | integrity sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==
42 | dependencies:
43 | "@babel/types" "^7.14.5"
44 | jsesc "^2.5.1"
45 | source-map "^0.5.0"
46 |
47 | "@babel/helper-compilation-targets@^7.14.5":
48 | version "7.14.5"
49 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf"
50 | integrity sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==
51 | dependencies:
52 | "@babel/compat-data" "^7.14.5"
53 | "@babel/helper-validator-option" "^7.14.5"
54 | browserslist "^4.16.6"
55 | semver "^6.3.0"
56 |
57 | "@babel/helper-function-name@^7.14.5":
58 | version "7.14.5"
59 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4"
60 | integrity sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==
61 | dependencies:
62 | "@babel/helper-get-function-arity" "^7.14.5"
63 | "@babel/template" "^7.14.5"
64 | "@babel/types" "^7.14.5"
65 |
66 | "@babel/helper-get-function-arity@^7.14.5":
67 | version "7.14.5"
68 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815"
69 | integrity sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==
70 | dependencies:
71 | "@babel/types" "^7.14.5"
72 |
73 | "@babel/helper-hoist-variables@^7.14.5":
74 | version "7.14.5"
75 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d"
76 | integrity sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==
77 | dependencies:
78 | "@babel/types" "^7.14.5"
79 |
80 | "@babel/helper-member-expression-to-functions@^7.14.5":
81 | version "7.14.7"
82 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz#97e56244beb94211fe277bd818e3a329c66f7970"
83 | integrity sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==
84 | dependencies:
85 | "@babel/types" "^7.14.5"
86 |
87 | "@babel/helper-module-imports@^7.14.5":
88 | version "7.14.5"
89 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3"
90 | integrity sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==
91 | dependencies:
92 | "@babel/types" "^7.14.5"
93 |
94 | "@babel/helper-module-transforms@^7.14.5":
95 | version "7.14.5"
96 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz#7de42f10d789b423eb902ebd24031ca77cb1e10e"
97 | integrity sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==
98 | dependencies:
99 | "@babel/helper-module-imports" "^7.14.5"
100 | "@babel/helper-replace-supers" "^7.14.5"
101 | "@babel/helper-simple-access" "^7.14.5"
102 | "@babel/helper-split-export-declaration" "^7.14.5"
103 | "@babel/helper-validator-identifier" "^7.14.5"
104 | "@babel/template" "^7.14.5"
105 | "@babel/traverse" "^7.14.5"
106 | "@babel/types" "^7.14.5"
107 |
108 | "@babel/helper-optimise-call-expression@^7.14.5":
109 | version "7.14.5"
110 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c"
111 | integrity sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==
112 | dependencies:
113 | "@babel/types" "^7.14.5"
114 |
115 | "@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":
116 | version "7.14.5"
117 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9"
118 | integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==
119 |
120 | "@babel/helper-replace-supers@^7.14.5":
121 | version "7.14.5"
122 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94"
123 | integrity sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==
124 | dependencies:
125 | "@babel/helper-member-expression-to-functions" "^7.14.5"
126 | "@babel/helper-optimise-call-expression" "^7.14.5"
127 | "@babel/traverse" "^7.14.5"
128 | "@babel/types" "^7.14.5"
129 |
130 | "@babel/helper-simple-access@^7.14.5":
131 | version "7.14.5"
132 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz#66ea85cf53ba0b4e588ba77fc813f53abcaa41c4"
133 | integrity sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==
134 | dependencies:
135 | "@babel/types" "^7.14.5"
136 |
137 | "@babel/helper-split-export-declaration@^7.14.5":
138 | version "7.14.5"
139 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a"
140 | integrity sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==
141 | dependencies:
142 | "@babel/types" "^7.14.5"
143 |
144 | "@babel/helper-validator-identifier@^7.14.5":
145 | version "7.14.5"
146 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8"
147 | integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==
148 |
149 | "@babel/helper-validator-option@^7.14.5":
150 | version "7.14.5"
151 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3"
152 | integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==
153 |
154 | "@babel/helpers@^7.14.6":
155 | version "7.14.6"
156 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.6.tgz#5b58306b95f1b47e2a0199434fa8658fa6c21635"
157 | integrity sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA==
158 | dependencies:
159 | "@babel/template" "^7.14.5"
160 | "@babel/traverse" "^7.14.5"
161 | "@babel/types" "^7.14.5"
162 |
163 | "@babel/highlight@^7.14.5":
164 | version "7.14.5"
165 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
166 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==
167 | dependencies:
168 | "@babel/helper-validator-identifier" "^7.14.5"
169 | chalk "^2.0.0"
170 | js-tokens "^4.0.0"
171 |
172 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.14.7", "@babel/parser@^7.7.2":
173 | version "7.14.7"
174 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz#6099720c8839ca865a2637e6c85852ead0bdb595"
175 | integrity sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==
176 |
177 | "@babel/plugin-syntax-async-generators@^7.8.4":
178 | version "7.8.4"
179 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
180 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
181 | dependencies:
182 | "@babel/helper-plugin-utils" "^7.8.0"
183 |
184 | "@babel/plugin-syntax-bigint@^7.8.3":
185 | version "7.8.3"
186 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
187 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
188 | dependencies:
189 | "@babel/helper-plugin-utils" "^7.8.0"
190 |
191 | "@babel/plugin-syntax-class-properties@^7.8.3":
192 | version "7.12.13"
193 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
194 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
195 | dependencies:
196 | "@babel/helper-plugin-utils" "^7.12.13"
197 |
198 | "@babel/plugin-syntax-import-meta@^7.8.3":
199 | version "7.10.4"
200 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
201 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
202 | dependencies:
203 | "@babel/helper-plugin-utils" "^7.10.4"
204 |
205 | "@babel/plugin-syntax-json-strings@^7.8.3":
206 | version "7.8.3"
207 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
208 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
209 | dependencies:
210 | "@babel/helper-plugin-utils" "^7.8.0"
211 |
212 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
213 | version "7.10.4"
214 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
215 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
216 | dependencies:
217 | "@babel/helper-plugin-utils" "^7.10.4"
218 |
219 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
220 | version "7.8.3"
221 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
222 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
223 | dependencies:
224 | "@babel/helper-plugin-utils" "^7.8.0"
225 |
226 | "@babel/plugin-syntax-numeric-separator@^7.8.3":
227 | version "7.10.4"
228 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
229 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
230 | dependencies:
231 | "@babel/helper-plugin-utils" "^7.10.4"
232 |
233 | "@babel/plugin-syntax-object-rest-spread@^7.8.3":
234 | version "7.8.3"
235 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
236 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
237 | dependencies:
238 | "@babel/helper-plugin-utils" "^7.8.0"
239 |
240 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
241 | version "7.8.3"
242 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
243 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
244 | dependencies:
245 | "@babel/helper-plugin-utils" "^7.8.0"
246 |
247 | "@babel/plugin-syntax-optional-chaining@^7.8.3":
248 | version "7.8.3"
249 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
250 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
251 | dependencies:
252 | "@babel/helper-plugin-utils" "^7.8.0"
253 |
254 | "@babel/plugin-syntax-top-level-await@^7.8.3":
255 | version "7.14.5"
256 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
257 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
258 | dependencies:
259 | "@babel/helper-plugin-utils" "^7.14.5"
260 |
261 | "@babel/plugin-syntax-typescript@^7.7.2":
262 | version "7.14.5"
263 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716"
264 | integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==
265 | dependencies:
266 | "@babel/helper-plugin-utils" "^7.14.5"
267 |
268 | "@babel/template@^7.14.5", "@babel/template@^7.3.3":
269 | version "7.14.5"
270 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4"
271 | integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==
272 | dependencies:
273 | "@babel/code-frame" "^7.14.5"
274 | "@babel/parser" "^7.14.5"
275 | "@babel/types" "^7.14.5"
276 |
277 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.7.2":
278 | version "7.14.7"
279 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz#64007c9774cfdc3abd23b0780bc18a3ce3631753"
280 | integrity sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==
281 | dependencies:
282 | "@babel/code-frame" "^7.14.5"
283 | "@babel/generator" "^7.14.5"
284 | "@babel/helper-function-name" "^7.14.5"
285 | "@babel/helper-hoist-variables" "^7.14.5"
286 | "@babel/helper-split-export-declaration" "^7.14.5"
287 | "@babel/parser" "^7.14.7"
288 | "@babel/types" "^7.14.5"
289 | debug "^4.1.0"
290 | globals "^11.1.0"
291 |
292 | "@babel/types@^7.0.0", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
293 | version "7.14.5"
294 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff"
295 | integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==
296 | dependencies:
297 | "@babel/helper-validator-identifier" "^7.14.5"
298 | to-fast-properties "^2.0.0"
299 |
300 | "@bcoe/v8-coverage@^0.2.3":
301 | version "0.2.3"
302 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
303 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
304 |
305 | "@istanbuljs/load-nyc-config@^1.0.0":
306 | version "1.1.0"
307 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
308 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
309 | dependencies:
310 | camelcase "^5.3.1"
311 | find-up "^4.1.0"
312 | get-package-type "^0.1.0"
313 | js-yaml "^3.13.1"
314 | resolve-from "^5.0.0"
315 |
316 | "@istanbuljs/schema@^0.1.2":
317 | version "0.1.3"
318 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
319 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
320 |
321 | "@jest/console@^27.3.1":
322 | version "27.3.1"
323 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.3.1.tgz#e8ea3a475d3f8162f23d69efbfaa9cbe486bee93"
324 | integrity sha512-RkFNWmv0iui+qsOr/29q9dyfKTTT5DCuP31kUwg7rmOKPT/ozLeGLKJKVIiOfbiKyleUZKIrHwhmiZWVe8IMdw==
325 | dependencies:
326 | "@jest/types" "^27.2.5"
327 | "@types/node" "*"
328 | chalk "^4.0.0"
329 | jest-message-util "^27.3.1"
330 | jest-util "^27.3.1"
331 | slash "^3.0.0"
332 |
333 | "@jest/core@^27.3.1":
334 | version "27.3.1"
335 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.3.1.tgz#04992ef1b58b17c459afb87ab56d81e63d386925"
336 | integrity sha512-DMNE90RR5QKx0EA+wqe3/TNEwiRpOkhshKNxtLxd4rt3IZpCt+RSL+FoJsGeblRZmqdK4upHA/mKKGPPRAifhg==
337 | dependencies:
338 | "@jest/console" "^27.3.1"
339 | "@jest/reporters" "^27.3.1"
340 | "@jest/test-result" "^27.3.1"
341 | "@jest/transform" "^27.3.1"
342 | "@jest/types" "^27.2.5"
343 | "@types/node" "*"
344 | ansi-escapes "^4.2.1"
345 | chalk "^4.0.0"
346 | emittery "^0.8.1"
347 | exit "^0.1.2"
348 | graceful-fs "^4.2.4"
349 | jest-changed-files "^27.3.0"
350 | jest-config "^27.3.1"
351 | jest-haste-map "^27.3.1"
352 | jest-message-util "^27.3.1"
353 | jest-regex-util "^27.0.6"
354 | jest-resolve "^27.3.1"
355 | jest-resolve-dependencies "^27.3.1"
356 | jest-runner "^27.3.1"
357 | jest-runtime "^27.3.1"
358 | jest-snapshot "^27.3.1"
359 | jest-util "^27.3.1"
360 | jest-validate "^27.3.1"
361 | jest-watcher "^27.3.1"
362 | micromatch "^4.0.4"
363 | rimraf "^3.0.0"
364 | slash "^3.0.0"
365 | strip-ansi "^6.0.0"
366 |
367 | "@jest/environment@^27.3.1":
368 | version "27.3.1"
369 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.3.1.tgz#2182defbce8d385fd51c5e7c7050f510bd4c86b1"
370 | integrity sha512-BCKCj4mOVLme6Tanoyc9k0ultp3pnmuyHw73UHRPeeZxirsU/7E3HC4le/VDb/SMzE1JcPnto+XBKFOcoiJzVw==
371 | dependencies:
372 | "@jest/fake-timers" "^27.3.1"
373 | "@jest/types" "^27.2.5"
374 | "@types/node" "*"
375 | jest-mock "^27.3.0"
376 |
377 | "@jest/fake-timers@^27.3.1":
378 | version "27.3.1"
379 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.3.1.tgz#1fad860ee9b13034762cdb94266e95609dfce641"
380 | integrity sha512-M3ZFgwwlqJtWZ+QkBG5NmC23A9w+A6ZxNsO5nJxJsKYt4yguBd3i8TpjQz5NfCX91nEve1KqD9RA2Q+Q1uWqoA==
381 | dependencies:
382 | "@jest/types" "^27.2.5"
383 | "@sinonjs/fake-timers" "^8.0.1"
384 | "@types/node" "*"
385 | jest-message-util "^27.3.1"
386 | jest-mock "^27.3.0"
387 | jest-util "^27.3.1"
388 |
389 | "@jest/globals@^27.3.1":
390 | version "27.3.1"
391 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.3.1.tgz#ce1dfb03d379237a9da6c1b99ecfaca1922a5f9e"
392 | integrity sha512-Q651FWiWQAIFiN+zS51xqhdZ8g9b88nGCobC87argAxA7nMfNQq0Q0i9zTfQYgLa6qFXk2cGANEqfK051CZ8Pg==
393 | dependencies:
394 | "@jest/environment" "^27.3.1"
395 | "@jest/types" "^27.2.5"
396 | expect "^27.3.1"
397 |
398 | "@jest/reporters@^27.3.1":
399 | version "27.3.1"
400 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.3.1.tgz#28b5c1f5789481e23788048fa822ed15486430b9"
401 | integrity sha512-m2YxPmL9Qn1emFVgZGEiMwDntDxRRQ2D58tiDQlwYTg5GvbFOKseYCcHtn0WsI8CG4vzPglo3nqbOiT8ySBT/w==
402 | dependencies:
403 | "@bcoe/v8-coverage" "^0.2.3"
404 | "@jest/console" "^27.3.1"
405 | "@jest/test-result" "^27.3.1"
406 | "@jest/transform" "^27.3.1"
407 | "@jest/types" "^27.2.5"
408 | "@types/node" "*"
409 | chalk "^4.0.0"
410 | collect-v8-coverage "^1.0.0"
411 | exit "^0.1.2"
412 | glob "^7.1.2"
413 | graceful-fs "^4.2.4"
414 | istanbul-lib-coverage "^3.0.0"
415 | istanbul-lib-instrument "^4.0.3"
416 | istanbul-lib-report "^3.0.0"
417 | istanbul-lib-source-maps "^4.0.0"
418 | istanbul-reports "^3.0.2"
419 | jest-haste-map "^27.3.1"
420 | jest-resolve "^27.3.1"
421 | jest-util "^27.3.1"
422 | jest-worker "^27.3.1"
423 | slash "^3.0.0"
424 | source-map "^0.6.0"
425 | string-length "^4.0.1"
426 | terminal-link "^2.0.0"
427 | v8-to-istanbul "^8.1.0"
428 |
429 | "@jest/source-map@^27.0.6":
430 | version "27.0.6"
431 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.0.6.tgz#be9e9b93565d49b0548b86e232092491fb60551f"
432 | integrity sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g==
433 | dependencies:
434 | callsites "^3.0.0"
435 | graceful-fs "^4.2.4"
436 | source-map "^0.6.0"
437 |
438 | "@jest/test-result@^27.3.1":
439 | version "27.3.1"
440 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.3.1.tgz#89adee8b771877c69b3b8d59f52f29dccc300194"
441 | integrity sha512-mLn6Thm+w2yl0opM8J/QnPTqrfS4FoXsXF2WIWJb2O/GBSyResL71BRuMYbYRsGt7ELwS5JGcEcGb52BNrumgg==
442 | dependencies:
443 | "@jest/console" "^27.3.1"
444 | "@jest/types" "^27.2.5"
445 | "@types/istanbul-lib-coverage" "^2.0.0"
446 | collect-v8-coverage "^1.0.0"
447 |
448 | "@jest/test-sequencer@^27.3.1":
449 | version "27.3.1"
450 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.3.1.tgz#4b3bde2dbb05ee74afdae608cf0768e3354683b1"
451 | integrity sha512-siySLo07IMEdSjA4fqEnxfIX8lB/lWYsBPwNFtkOvsFQvmBrL3yj3k3uFNZv/JDyApTakRpxbKLJ3CT8UGVCrA==
452 | dependencies:
453 | "@jest/test-result" "^27.3.1"
454 | graceful-fs "^4.2.4"
455 | jest-haste-map "^27.3.1"
456 | jest-runtime "^27.3.1"
457 |
458 | "@jest/transform@^27.3.1":
459 | version "27.3.1"
460 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.3.1.tgz#ff80eafbeabe811e9025e4b6f452126718455220"
461 | integrity sha512-3fSvQ02kuvjOI1C1ssqMVBKJpZf6nwoCiSu00zAKh5nrp3SptNtZy/8s5deayHnqxhjD9CWDJ+yqQwuQ0ZafXQ==
462 | dependencies:
463 | "@babel/core" "^7.1.0"
464 | "@jest/types" "^27.2.5"
465 | babel-plugin-istanbul "^6.0.0"
466 | chalk "^4.0.0"
467 | convert-source-map "^1.4.0"
468 | fast-json-stable-stringify "^2.0.0"
469 | graceful-fs "^4.2.4"
470 | jest-haste-map "^27.3.1"
471 | jest-regex-util "^27.0.6"
472 | jest-util "^27.3.1"
473 | micromatch "^4.0.4"
474 | pirates "^4.0.1"
475 | slash "^3.0.0"
476 | source-map "^0.6.1"
477 | write-file-atomic "^3.0.0"
478 |
479 | "@jest/types@^27.0.6":
480 | version "27.0.6"
481 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.0.6.tgz#9a992bc517e0c49f035938b8549719c2de40706b"
482 | integrity sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==
483 | dependencies:
484 | "@types/istanbul-lib-coverage" "^2.0.0"
485 | "@types/istanbul-reports" "^3.0.0"
486 | "@types/node" "*"
487 | "@types/yargs" "^16.0.0"
488 | chalk "^4.0.0"
489 |
490 | "@jest/types@^27.2.5":
491 | version "27.2.5"
492 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.2.5.tgz#420765c052605e75686982d24b061b4cbba22132"
493 | integrity sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ==
494 | dependencies:
495 | "@types/istanbul-lib-coverage" "^2.0.0"
496 | "@types/istanbul-reports" "^3.0.0"
497 | "@types/node" "*"
498 | "@types/yargs" "^16.0.0"
499 | chalk "^4.0.0"
500 |
501 | "@sinonjs/commons@^1.7.0":
502 | version "1.8.3"
503 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d"
504 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==
505 | dependencies:
506 | type-detect "4.0.8"
507 |
508 | "@sinonjs/fake-timers@^8.0.1":
509 | version "8.0.1"
510 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.0.1.tgz#1c1c9a91419f804e59ae8df316a07dd1c3a76b94"
511 | integrity sha512-AU7kwFxreVd6OAXcAFlKSmZquiRUU0FvYm44k1Y1QbK7Co4m0aqfGMhjykIeQp/H6rcl+nFmj0zfdUcGVs9Dew==
512 | dependencies:
513 | "@sinonjs/commons" "^1.7.0"
514 |
515 | "@tootallnate/once@1":
516 | version "1.1.2"
517 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
518 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
519 |
520 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14":
521 | version "7.1.15"
522 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.15.tgz#2ccfb1ad55a02c83f8e0ad327cbc332f55eb1024"
523 | integrity sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew==
524 | dependencies:
525 | "@babel/parser" "^7.1.0"
526 | "@babel/types" "^7.0.0"
527 | "@types/babel__generator" "*"
528 | "@types/babel__template" "*"
529 | "@types/babel__traverse" "*"
530 |
531 | "@types/babel__generator@*":
532 | version "7.6.3"
533 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5"
534 | integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==
535 | dependencies:
536 | "@babel/types" "^7.0.0"
537 |
538 | "@types/babel__template@*":
539 | version "7.4.1"
540 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969"
541 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==
542 | dependencies:
543 | "@babel/parser" "^7.1.0"
544 | "@babel/types" "^7.0.0"
545 |
546 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
547 | version "7.14.2"
548 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43"
549 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==
550 | dependencies:
551 | "@babel/types" "^7.3.0"
552 |
553 | "@types/graceful-fs@^4.1.2":
554 | version "4.1.5"
555 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
556 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
557 | dependencies:
558 | "@types/node" "*"
559 |
560 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
561 | version "2.0.3"
562 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762"
563 | integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==
564 |
565 | "@types/istanbul-lib-report@*":
566 | version "3.0.0"
567 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
568 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
569 | dependencies:
570 | "@types/istanbul-lib-coverage" "*"
571 |
572 | "@types/istanbul-reports@^3.0.0":
573 | version "3.0.1"
574 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff"
575 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==
576 | dependencies:
577 | "@types/istanbul-lib-report" "*"
578 |
579 | "@types/jest@^27.0.2":
580 | version "27.0.2"
581 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.0.2.tgz#ac383c4d4aaddd29bbf2b916d8d105c304a5fcd7"
582 | integrity sha512-4dRxkS/AFX0c5XW6IPMNOydLn2tEhNhJV7DnYK+0bjoJZ+QTmfucBlihX7aoEsh/ocYtkLC73UbnBXBXIxsULA==
583 | dependencies:
584 | jest-diff "^27.0.0"
585 | pretty-format "^27.0.0"
586 |
587 | "@types/node@*":
588 | version "16.3.0"
589 | resolved "https://registry.yarnpkg.com/@types/node/-/node-16.3.0.tgz#1836664e4fad13b51b07eb6e882a53925e6543c4"
590 | integrity sha512-OydMCocGMGqw/1BnWbhtK+AtwyWTOigtrQlRe57OQmTNcI3HKlVI5FGlh+c4mSqInMPLynFrTlYjfajPu9O/eQ==
591 |
592 | "@types/prettier@^2.1.5":
593 | version "2.3.2"
594 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.3.2.tgz#fc8c2825e4ed2142473b4a81064e6e081463d1b3"
595 | integrity sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog==
596 |
597 | "@types/stack-utils@^2.0.0":
598 | version "2.0.1"
599 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
600 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
601 |
602 | "@types/stylis@^4.0.2":
603 | version "4.0.2"
604 | resolved "https://registry.yarnpkg.com/@types/stylis/-/stylis-4.0.2.tgz#311c62d68a23dfb01462d54b04549484a4c5cb2a"
605 | integrity sha512-wtckGuk1eXUlUz0Qb1eXHG37Z7HWT2GfMdqRf8F/ifddTwadSS9Jwsqi4qtXk7cP7MtoyGVIHPElFCLc6HItbg==
606 |
607 | "@types/yargs-parser@*":
608 | version "20.2.1"
609 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129"
610 | integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==
611 |
612 | "@types/yargs@^16.0.0":
613 | version "16.0.4"
614 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977"
615 | integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==
616 | dependencies:
617 | "@types/yargs-parser" "*"
618 |
619 | abab@^2.0.3, abab@^2.0.5:
620 | version "2.0.5"
621 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
622 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
623 |
624 | acorn-globals@^6.0.0:
625 | version "6.0.0"
626 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45"
627 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
628 | dependencies:
629 | acorn "^7.1.1"
630 | acorn-walk "^7.1.1"
631 |
632 | acorn-walk@^7.1.1:
633 | version "7.2.0"
634 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
635 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
636 |
637 | acorn@^7.1.1:
638 | version "7.4.1"
639 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
640 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
641 |
642 | acorn@^8.2.4:
643 | version "8.4.1"
644 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.4.1.tgz#56c36251fc7cabc7096adc18f05afe814321a28c"
645 | integrity sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==
646 |
647 | agent-base@6:
648 | version "6.0.2"
649 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
650 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
651 | dependencies:
652 | debug "4"
653 |
654 | ansi-escapes@^4.2.1:
655 | version "4.3.2"
656 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
657 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
658 | dependencies:
659 | type-fest "^0.21.3"
660 |
661 | ansi-regex@^5.0.0, ansi-regex@^5.0.1:
662 | version "5.0.1"
663 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
664 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
665 |
666 | ansi-styles@^3.2.1:
667 | version "3.2.1"
668 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
669 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
670 | dependencies:
671 | color-convert "^1.9.0"
672 |
673 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
674 | version "4.3.0"
675 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
676 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
677 | dependencies:
678 | color-convert "^2.0.1"
679 |
680 | ansi-styles@^5.0.0:
681 | version "5.2.0"
682 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
683 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
684 |
685 | anymatch@^3.0.3:
686 | version "3.1.2"
687 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
688 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
689 | dependencies:
690 | normalize-path "^3.0.0"
691 | picomatch "^2.0.4"
692 |
693 | argparse@^1.0.7:
694 | version "1.0.10"
695 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
696 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
697 | dependencies:
698 | sprintf-js "~1.0.2"
699 |
700 | asynckit@^0.4.0:
701 | version "0.4.0"
702 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
703 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
704 |
705 | babel-jest@^27.3.1:
706 | version "27.3.1"
707 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.3.1.tgz#0636a3404c68e07001e434ac4956d82da8a80022"
708 | integrity sha512-SjIF8hh/ir0peae2D6S6ZKRhUy7q/DnpH7k/V6fT4Bgs/LXXUztOpX4G2tCgq8mLo5HA9mN6NmlFMeYtKmIsTQ==
709 | dependencies:
710 | "@jest/transform" "^27.3.1"
711 | "@jest/types" "^27.2.5"
712 | "@types/babel__core" "^7.1.14"
713 | babel-plugin-istanbul "^6.0.0"
714 | babel-preset-jest "^27.2.0"
715 | chalk "^4.0.0"
716 | graceful-fs "^4.2.4"
717 | slash "^3.0.0"
718 |
719 | babel-plugin-istanbul@^6.0.0:
720 | version "6.0.0"
721 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
722 | integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==
723 | dependencies:
724 | "@babel/helper-plugin-utils" "^7.0.0"
725 | "@istanbuljs/load-nyc-config" "^1.0.0"
726 | "@istanbuljs/schema" "^0.1.2"
727 | istanbul-lib-instrument "^4.0.0"
728 | test-exclude "^6.0.0"
729 |
730 | babel-plugin-jest-hoist@^27.2.0:
731 | version "27.2.0"
732 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.2.0.tgz#79f37d43f7e5c4fdc4b2ca3e10cc6cf545626277"
733 | integrity sha512-TOux9khNKdi64mW+0OIhcmbAn75tTlzKhxmiNXevQaPbrBYK7YKjP1jl6NHTJ6XR5UgUrJbCnWlKVnJn29dfjw==
734 | dependencies:
735 | "@babel/template" "^7.3.3"
736 | "@babel/types" "^7.3.3"
737 | "@types/babel__core" "^7.0.0"
738 | "@types/babel__traverse" "^7.0.6"
739 |
740 | babel-preset-current-node-syntax@^1.0.0:
741 | version "1.0.1"
742 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b"
743 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==
744 | dependencies:
745 | "@babel/plugin-syntax-async-generators" "^7.8.4"
746 | "@babel/plugin-syntax-bigint" "^7.8.3"
747 | "@babel/plugin-syntax-class-properties" "^7.8.3"
748 | "@babel/plugin-syntax-import-meta" "^7.8.3"
749 | "@babel/plugin-syntax-json-strings" "^7.8.3"
750 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
751 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
752 | "@babel/plugin-syntax-numeric-separator" "^7.8.3"
753 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
754 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
755 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
756 | "@babel/plugin-syntax-top-level-await" "^7.8.3"
757 |
758 | babel-preset-jest@^27.2.0:
759 | version "27.2.0"
760 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.2.0.tgz#556bbbf340608fed5670ab0ea0c8ef2449fba885"
761 | integrity sha512-z7MgQ3peBwN5L5aCqBKnF6iqdlvZvFUQynEhu0J+X9nHLU72jO3iY331lcYrg+AssJ8q7xsv5/3AICzVmJ/wvg==
762 | dependencies:
763 | babel-plugin-jest-hoist "^27.2.0"
764 | babel-preset-current-node-syntax "^1.0.0"
765 |
766 | balanced-match@^1.0.0:
767 | version "1.0.2"
768 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
769 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
770 |
771 | brace-expansion@^1.1.7:
772 | version "1.1.11"
773 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
774 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
775 | dependencies:
776 | balanced-match "^1.0.0"
777 | concat-map "0.0.1"
778 |
779 | braces@^3.0.1:
780 | version "3.0.2"
781 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
782 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
783 | dependencies:
784 | fill-range "^7.0.1"
785 |
786 | browser-process-hrtime@^1.0.0:
787 | version "1.0.0"
788 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
789 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
790 |
791 | browserslist@^4.16.6:
792 | version "4.16.6"
793 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
794 | integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
795 | dependencies:
796 | caniuse-lite "^1.0.30001219"
797 | colorette "^1.2.2"
798 | electron-to-chromium "^1.3.723"
799 | escalade "^3.1.1"
800 | node-releases "^1.1.71"
801 |
802 | bs-logger@0.x:
803 | version "0.2.6"
804 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8"
805 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==
806 | dependencies:
807 | fast-json-stable-stringify "2.x"
808 |
809 | bser@2.1.1:
810 | version "2.1.1"
811 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
812 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
813 | dependencies:
814 | node-int64 "^0.4.0"
815 |
816 | buffer-from@^1.0.0:
817 | version "1.1.1"
818 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
819 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
820 |
821 | callsites@^3.0.0:
822 | version "3.1.0"
823 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
824 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
825 |
826 | camelcase@^5.3.1:
827 | version "5.3.1"
828 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
829 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
830 |
831 | camelcase@^6.2.0:
832 | version "6.2.0"
833 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
834 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
835 |
836 | caniuse-lite@^1.0.30001219:
837 | version "1.0.30001243"
838 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001243.tgz#d9250155c91e872186671c523f3ae50cfc94a3aa"
839 | integrity sha512-vNxw9mkTBtkmLFnJRv/2rhs1yufpDfCkBZexG3Y0xdOH2Z/eE/85E4Dl5j1YUN34nZVsSp6vVRFQRrez9wJMRA==
840 |
841 | chalk@^2.0.0:
842 | version "2.4.2"
843 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
844 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
845 | dependencies:
846 | ansi-styles "^3.2.1"
847 | escape-string-regexp "^1.0.5"
848 | supports-color "^5.3.0"
849 |
850 | chalk@^4.0.0:
851 | version "4.1.1"
852 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
853 | integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
854 | dependencies:
855 | ansi-styles "^4.1.0"
856 | supports-color "^7.1.0"
857 |
858 | char-regex@^1.0.2:
859 | version "1.0.2"
860 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
861 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
862 |
863 | ci-info@^3.1.1, ci-info@^3.2.0:
864 | version "3.2.0"
865 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6"
866 | integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==
867 |
868 | cjs-module-lexer@^1.0.0:
869 | version "1.2.1"
870 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.1.tgz#2fd46d9906a126965aa541345c499aaa18e8cd73"
871 | integrity sha512-jVamGdJPDeuQilKhvVn1h3knuMOZzr8QDnpk+M9aMlCaMkTDd6fBWPhiDqFvFZ07pL0liqabAiuy8SY4jGHeaw==
872 |
873 | cliui@^7.0.2:
874 | version "7.0.4"
875 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
876 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
877 | dependencies:
878 | string-width "^4.2.0"
879 | strip-ansi "^6.0.0"
880 | wrap-ansi "^7.0.0"
881 |
882 | co@^4.6.0:
883 | version "4.6.0"
884 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
885 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
886 |
887 | collect-v8-coverage@^1.0.0:
888 | version "1.0.1"
889 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
890 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
891 |
892 | color-convert@^1.9.0:
893 | version "1.9.3"
894 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
895 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
896 | dependencies:
897 | color-name "1.1.3"
898 |
899 | color-convert@^2.0.1:
900 | version "2.0.1"
901 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
902 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
903 | dependencies:
904 | color-name "~1.1.4"
905 |
906 | color-name@1.1.3:
907 | version "1.1.3"
908 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
909 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
910 |
911 | color-name@~1.1.4:
912 | version "1.1.4"
913 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
914 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
915 |
916 | colorette@^1.2.2:
917 | version "1.2.2"
918 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
919 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
920 |
921 | combined-stream@^1.0.8:
922 | version "1.0.8"
923 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
924 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
925 | dependencies:
926 | delayed-stream "~1.0.0"
927 |
928 | concat-map@0.0.1:
929 | version "0.0.1"
930 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
931 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
932 |
933 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
934 | version "1.8.0"
935 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
936 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
937 | dependencies:
938 | safe-buffer "~5.1.1"
939 |
940 | cross-spawn@^7.0.3:
941 | version "7.0.3"
942 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
943 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
944 | dependencies:
945 | path-key "^3.1.0"
946 | shebang-command "^2.0.0"
947 | which "^2.0.1"
948 |
949 | cssjanus@^2.0.1:
950 | version "2.1.0"
951 | resolved "https://registry.yarnpkg.com/cssjanus/-/cssjanus-2.1.0.tgz#6f99070e0b7cc79f826ea48c63c03cb250713af1"
952 | integrity sha512-kAijbny3GmdOi9k+QT6DGIXqFvL96aksNlGr4Rhk9qXDZYWUojU4bRc3IHWxdaLNOqgEZHuXoe5Wl2l7dxLW5g==
953 |
954 | cssom@^0.4.4:
955 | version "0.4.4"
956 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
957 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
958 |
959 | cssom@~0.3.6:
960 | version "0.3.8"
961 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
962 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
963 |
964 | cssstyle@^2.3.0:
965 | version "2.3.0"
966 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
967 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
968 | dependencies:
969 | cssom "~0.3.6"
970 |
971 | data-urls@^2.0.0:
972 | version "2.0.0"
973 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
974 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
975 | dependencies:
976 | abab "^2.0.3"
977 | whatwg-mimetype "^2.3.0"
978 | whatwg-url "^8.0.0"
979 |
980 | debug@4, debug@^4.1.0, debug@^4.1.1:
981 | version "4.3.2"
982 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
983 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
984 | dependencies:
985 | ms "2.1.2"
986 |
987 | decimal.js@^10.2.1:
988 | version "10.3.1"
989 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783"
990 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==
991 |
992 | dedent@^0.7.0:
993 | version "0.7.0"
994 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
995 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
996 |
997 | deep-is@~0.1.3:
998 | version "0.1.3"
999 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
1000 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
1001 |
1002 | deepmerge@^4.2.2:
1003 | version "4.2.2"
1004 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
1005 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
1006 |
1007 | delayed-stream@~1.0.0:
1008 | version "1.0.0"
1009 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1010 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
1011 |
1012 | detect-newline@^3.0.0:
1013 | version "3.1.0"
1014 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
1015 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
1016 |
1017 | diff-sequences@^27.0.6:
1018 | version "27.0.6"
1019 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723"
1020 | integrity sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==
1021 |
1022 | domexception@^2.0.1:
1023 | version "2.0.1"
1024 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304"
1025 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
1026 | dependencies:
1027 | webidl-conversions "^5.0.0"
1028 |
1029 | electron-to-chromium@^1.3.723:
1030 | version "1.3.771"
1031 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.771.tgz#c4aa601e6420e11926095f75fe803956a1b4bd81"
1032 | integrity sha512-zHMomTqkpnAD9W5rhXE1aiU3ogGFrqWzdvM4C6222SREiqsWQb2w0S7P2Ii44qCaGimmAP1z+OydllM438uJyA==
1033 |
1034 | emittery@^0.8.1:
1035 | version "0.8.1"
1036 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860"
1037 | integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==
1038 |
1039 | emoji-regex@^8.0.0:
1040 | version "8.0.0"
1041 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
1042 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
1043 |
1044 | escalade@^3.1.1:
1045 | version "3.1.1"
1046 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
1047 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
1048 |
1049 | escape-string-regexp@^1.0.5:
1050 | version "1.0.5"
1051 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1052 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1053 |
1054 | escape-string-regexp@^2.0.0:
1055 | version "2.0.0"
1056 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
1057 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
1058 |
1059 | escodegen@^2.0.0:
1060 | version "2.0.0"
1061 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
1062 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
1063 | dependencies:
1064 | esprima "^4.0.1"
1065 | estraverse "^5.2.0"
1066 | esutils "^2.0.2"
1067 | optionator "^0.8.1"
1068 | optionalDependencies:
1069 | source-map "~0.6.1"
1070 |
1071 | esprima@^4.0.0, esprima@^4.0.1:
1072 | version "4.0.1"
1073 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1074 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1075 |
1076 | estraverse@^5.2.0:
1077 | version "5.2.0"
1078 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
1079 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
1080 |
1081 | esutils@^2.0.2:
1082 | version "2.0.3"
1083 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1084 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1085 |
1086 | execa@^5.0.0:
1087 | version "5.1.1"
1088 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
1089 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
1090 | dependencies:
1091 | cross-spawn "^7.0.3"
1092 | get-stream "^6.0.0"
1093 | human-signals "^2.1.0"
1094 | is-stream "^2.0.0"
1095 | merge-stream "^2.0.0"
1096 | npm-run-path "^4.0.1"
1097 | onetime "^5.1.2"
1098 | signal-exit "^3.0.3"
1099 | strip-final-newline "^2.0.0"
1100 |
1101 | exit@^0.1.2:
1102 | version "0.1.2"
1103 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
1104 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
1105 |
1106 | expect@^27.3.1:
1107 | version "27.3.1"
1108 | resolved "https://registry.yarnpkg.com/expect/-/expect-27.3.1.tgz#d0f170b1f5c8a2009bab0beffd4bb94f043e38e7"
1109 | integrity sha512-MrNXV2sL9iDRebWPGOGFdPQRl2eDQNu/uhxIMShjjx74T6kC6jFIkmQ6OqXDtevjGUkyB2IT56RzDBqXf/QPCg==
1110 | dependencies:
1111 | "@jest/types" "^27.2.5"
1112 | ansi-styles "^5.0.0"
1113 | jest-get-type "^27.3.1"
1114 | jest-matcher-utils "^27.3.1"
1115 | jest-message-util "^27.3.1"
1116 | jest-regex-util "^27.0.6"
1117 |
1118 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0:
1119 | version "2.1.0"
1120 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
1121 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
1122 |
1123 | fast-levenshtein@~2.0.6:
1124 | version "2.0.6"
1125 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1126 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
1127 |
1128 | fb-watchman@^2.0.0:
1129 | version "2.0.1"
1130 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
1131 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
1132 | dependencies:
1133 | bser "2.1.1"
1134 |
1135 | fill-range@^7.0.1:
1136 | version "7.0.1"
1137 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1138 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1139 | dependencies:
1140 | to-regex-range "^5.0.1"
1141 |
1142 | find-up@^4.0.0, find-up@^4.1.0:
1143 | version "4.1.0"
1144 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
1145 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
1146 | dependencies:
1147 | locate-path "^5.0.0"
1148 | path-exists "^4.0.0"
1149 |
1150 | form-data@^3.0.0:
1151 | version "3.0.1"
1152 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f"
1153 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==
1154 | dependencies:
1155 | asynckit "^0.4.0"
1156 | combined-stream "^1.0.8"
1157 | mime-types "^2.1.12"
1158 |
1159 | fs.realpath@^1.0.0:
1160 | version "1.0.0"
1161 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1162 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
1163 |
1164 | fsevents@^2.3.2:
1165 | version "2.3.2"
1166 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1167 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1168 |
1169 | function-bind@^1.1.1:
1170 | version "1.1.1"
1171 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1172 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1173 |
1174 | gensync@^1.0.0-beta.2:
1175 | version "1.0.0-beta.2"
1176 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
1177 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1178 |
1179 | get-caller-file@^2.0.5:
1180 | version "2.0.5"
1181 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
1182 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
1183 |
1184 | get-package-type@^0.1.0:
1185 | version "0.1.0"
1186 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
1187 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
1188 |
1189 | get-stream@^6.0.0:
1190 | version "6.0.1"
1191 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
1192 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
1193 |
1194 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
1195 | version "7.1.7"
1196 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
1197 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
1198 | dependencies:
1199 | fs.realpath "^1.0.0"
1200 | inflight "^1.0.4"
1201 | inherits "2"
1202 | minimatch "^3.0.4"
1203 | once "^1.3.0"
1204 | path-is-absolute "^1.0.0"
1205 |
1206 | globals@^11.1.0:
1207 | version "11.12.0"
1208 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1209 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1210 |
1211 | graceful-fs@^4.2.4:
1212 | version "4.2.6"
1213 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
1214 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
1215 |
1216 | has-flag@^3.0.0:
1217 | version "3.0.0"
1218 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1219 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1220 |
1221 | has-flag@^4.0.0:
1222 | version "4.0.0"
1223 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1224 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1225 |
1226 | has@^1.0.3:
1227 | version "1.0.3"
1228 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1229 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1230 | dependencies:
1231 | function-bind "^1.1.1"
1232 |
1233 | html-encoding-sniffer@^2.0.1:
1234 | version "2.0.1"
1235 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3"
1236 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
1237 | dependencies:
1238 | whatwg-encoding "^1.0.5"
1239 |
1240 | html-escaper@^2.0.0:
1241 | version "2.0.2"
1242 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
1243 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
1244 |
1245 | http-proxy-agent@^4.0.1:
1246 | version "4.0.1"
1247 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
1248 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
1249 | dependencies:
1250 | "@tootallnate/once" "1"
1251 | agent-base "6"
1252 | debug "4"
1253 |
1254 | https-proxy-agent@^5.0.0:
1255 | version "5.0.0"
1256 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2"
1257 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==
1258 | dependencies:
1259 | agent-base "6"
1260 | debug "4"
1261 |
1262 | human-signals@^2.1.0:
1263 | version "2.1.0"
1264 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
1265 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
1266 |
1267 | iconv-lite@0.4.24:
1268 | version "0.4.24"
1269 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
1270 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
1271 | dependencies:
1272 | safer-buffer ">= 2.1.2 < 3"
1273 |
1274 | import-local@^3.0.2:
1275 | version "3.0.2"
1276 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6"
1277 | integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
1278 | dependencies:
1279 | pkg-dir "^4.2.0"
1280 | resolve-cwd "^3.0.0"
1281 |
1282 | imurmurhash@^0.1.4:
1283 | version "0.1.4"
1284 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1285 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
1286 |
1287 | inflight@^1.0.4:
1288 | version "1.0.6"
1289 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1290 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
1291 | dependencies:
1292 | once "^1.3.0"
1293 | wrappy "1"
1294 |
1295 | inherits@2:
1296 | version "2.0.4"
1297 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1298 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1299 |
1300 | is-ci@^3.0.0:
1301 | version "3.0.0"
1302 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.0.tgz#c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994"
1303 | integrity sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==
1304 | dependencies:
1305 | ci-info "^3.1.1"
1306 |
1307 | is-core-module@^2.2.0:
1308 | version "2.4.0"
1309 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1"
1310 | integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==
1311 | dependencies:
1312 | has "^1.0.3"
1313 |
1314 | is-fullwidth-code-point@^3.0.0:
1315 | version "3.0.0"
1316 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
1317 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
1318 |
1319 | is-generator-fn@^2.0.0:
1320 | version "2.1.0"
1321 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
1322 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
1323 |
1324 | is-number@^7.0.0:
1325 | version "7.0.0"
1326 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1327 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1328 |
1329 | is-potential-custom-element-name@^1.0.1:
1330 | version "1.0.1"
1331 | resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
1332 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
1333 |
1334 | is-stream@^2.0.0:
1335 | version "2.0.0"
1336 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
1337 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
1338 |
1339 | is-typedarray@^1.0.0:
1340 | version "1.0.0"
1341 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1342 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
1343 |
1344 | isexe@^2.0.0:
1345 | version "2.0.0"
1346 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1347 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
1348 |
1349 | istanbul-lib-coverage@^3.0.0:
1350 | version "3.0.0"
1351 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
1352 | integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
1353 |
1354 | istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3:
1355 | version "4.0.3"
1356 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
1357 | integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
1358 | dependencies:
1359 | "@babel/core" "^7.7.5"
1360 | "@istanbuljs/schema" "^0.1.2"
1361 | istanbul-lib-coverage "^3.0.0"
1362 | semver "^6.3.0"
1363 |
1364 | istanbul-lib-report@^3.0.0:
1365 | version "3.0.0"
1366 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
1367 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
1368 | dependencies:
1369 | istanbul-lib-coverage "^3.0.0"
1370 | make-dir "^3.0.0"
1371 | supports-color "^7.1.0"
1372 |
1373 | istanbul-lib-source-maps@^4.0.0:
1374 | version "4.0.0"
1375 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9"
1376 | integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
1377 | dependencies:
1378 | debug "^4.1.1"
1379 | istanbul-lib-coverage "^3.0.0"
1380 | source-map "^0.6.1"
1381 |
1382 | istanbul-reports@^3.0.2:
1383 | version "3.0.2"
1384 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
1385 | integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
1386 | dependencies:
1387 | html-escaper "^2.0.0"
1388 | istanbul-lib-report "^3.0.0"
1389 |
1390 | jest-changed-files@^27.3.0:
1391 | version "27.3.0"
1392 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.3.0.tgz#22a02cc2b34583fc66e443171dc271c0529d263c"
1393 | integrity sha512-9DJs9garMHv4RhylUMZgbdCJ3+jHSkpL9aaVKp13xtXAD80qLTLrqcDZL1PHA9dYA0bCI86Nv2BhkLpLhrBcPg==
1394 | dependencies:
1395 | "@jest/types" "^27.2.5"
1396 | execa "^5.0.0"
1397 | throat "^6.0.1"
1398 |
1399 | jest-circus@^27.3.1:
1400 | version "27.3.1"
1401 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.3.1.tgz#1679e74387cbbf0c6a8b42de963250a6469e0797"
1402 | integrity sha512-v1dsM9II6gvXokgqq6Yh2jHCpfg7ZqV4jWY66u7npz24JnhP3NHxI0sKT7+ZMQ7IrOWHYAaeEllOySbDbWsiXw==
1403 | dependencies:
1404 | "@jest/environment" "^27.3.1"
1405 | "@jest/test-result" "^27.3.1"
1406 | "@jest/types" "^27.2.5"
1407 | "@types/node" "*"
1408 | chalk "^4.0.0"
1409 | co "^4.6.0"
1410 | dedent "^0.7.0"
1411 | expect "^27.3.1"
1412 | is-generator-fn "^2.0.0"
1413 | jest-each "^27.3.1"
1414 | jest-matcher-utils "^27.3.1"
1415 | jest-message-util "^27.3.1"
1416 | jest-runtime "^27.3.1"
1417 | jest-snapshot "^27.3.1"
1418 | jest-util "^27.3.1"
1419 | pretty-format "^27.3.1"
1420 | slash "^3.0.0"
1421 | stack-utils "^2.0.3"
1422 | throat "^6.0.1"
1423 |
1424 | jest-cli@^27.3.1:
1425 | version "27.3.1"
1426 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.3.1.tgz#b576f9d146ba6643ce0a162d782b40152b6b1d16"
1427 | integrity sha512-WHnCqpfK+6EvT62me6WVs8NhtbjAS4/6vZJnk7/2+oOr50cwAzG4Wxt6RXX0hu6m1169ZGMlhYYUNeKBXCph/Q==
1428 | dependencies:
1429 | "@jest/core" "^27.3.1"
1430 | "@jest/test-result" "^27.3.1"
1431 | "@jest/types" "^27.2.5"
1432 | chalk "^4.0.0"
1433 | exit "^0.1.2"
1434 | graceful-fs "^4.2.4"
1435 | import-local "^3.0.2"
1436 | jest-config "^27.3.1"
1437 | jest-util "^27.3.1"
1438 | jest-validate "^27.3.1"
1439 | prompts "^2.0.1"
1440 | yargs "^16.2.0"
1441 |
1442 | jest-config@^27.3.1:
1443 | version "27.3.1"
1444 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.3.1.tgz#cb3b7f6aaa8c0a7daad4f2b9573899ca7e09bbad"
1445 | integrity sha512-KY8xOIbIACZ/vdYCKSopL44I0xboxC751IX+DXL2+Wx6DKNycyEfV3rryC3BPm5Uq/BBqDoMrKuqLEUNJmMKKg==
1446 | dependencies:
1447 | "@babel/core" "^7.1.0"
1448 | "@jest/test-sequencer" "^27.3.1"
1449 | "@jest/types" "^27.2.5"
1450 | babel-jest "^27.3.1"
1451 | chalk "^4.0.0"
1452 | ci-info "^3.2.0"
1453 | deepmerge "^4.2.2"
1454 | glob "^7.1.1"
1455 | graceful-fs "^4.2.4"
1456 | jest-circus "^27.3.1"
1457 | jest-environment-jsdom "^27.3.1"
1458 | jest-environment-node "^27.3.1"
1459 | jest-get-type "^27.3.1"
1460 | jest-jasmine2 "^27.3.1"
1461 | jest-regex-util "^27.0.6"
1462 | jest-resolve "^27.3.1"
1463 | jest-runner "^27.3.1"
1464 | jest-util "^27.3.1"
1465 | jest-validate "^27.3.1"
1466 | micromatch "^4.0.4"
1467 | pretty-format "^27.3.1"
1468 |
1469 | jest-diff@^27.0.0, jest-diff@^27.3.1:
1470 | version "27.3.1"
1471 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.3.1.tgz#d2775fea15411f5f5aeda2a5e02c2f36440f6d55"
1472 | integrity sha512-PCeuAH4AWUo2O5+ksW4pL9v5xJAcIKPUPfIhZBcG1RKv/0+dvaWTQK1Nrau8d67dp65fOqbeMdoil+6PedyEPQ==
1473 | dependencies:
1474 | chalk "^4.0.0"
1475 | diff-sequences "^27.0.6"
1476 | jest-get-type "^27.3.1"
1477 | pretty-format "^27.3.1"
1478 |
1479 | jest-docblock@^27.0.6:
1480 | version "27.0.6"
1481 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.0.6.tgz#cc78266acf7fe693ca462cbbda0ea4e639e4e5f3"
1482 | integrity sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA==
1483 | dependencies:
1484 | detect-newline "^3.0.0"
1485 |
1486 | jest-each@^27.3.1:
1487 | version "27.3.1"
1488 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.3.1.tgz#14c56bb4f18dd18dc6bdd853919b5f16a17761ff"
1489 | integrity sha512-E4SwfzKJWYcvOYCjOxhZcxwL+AY0uFMvdCOwvzgutJiaiodFjkxQQDxHm8FQBeTqDnSmKsQWn7ldMRzTn2zJaQ==
1490 | dependencies:
1491 | "@jest/types" "^27.2.5"
1492 | chalk "^4.0.0"
1493 | jest-get-type "^27.3.1"
1494 | jest-util "^27.3.1"
1495 | pretty-format "^27.3.1"
1496 |
1497 | jest-environment-jsdom@^27.3.1:
1498 | version "27.3.1"
1499 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.3.1.tgz#63ac36d68f7a9303494df783494856222b57f73e"
1500 | integrity sha512-3MOy8qMzIkQlfb3W1TfrD7uZHj+xx8Olix5vMENkj5djPmRqndMaXtpnaZkxmxM+Qc3lo+yVzJjzuXbCcZjAlg==
1501 | dependencies:
1502 | "@jest/environment" "^27.3.1"
1503 | "@jest/fake-timers" "^27.3.1"
1504 | "@jest/types" "^27.2.5"
1505 | "@types/node" "*"
1506 | jest-mock "^27.3.0"
1507 | jest-util "^27.3.1"
1508 | jsdom "^16.6.0"
1509 |
1510 | jest-environment-node@^27.3.1:
1511 | version "27.3.1"
1512 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.3.1.tgz#af7d0eed04edafb740311b303f3fe7c8c27014bb"
1513 | integrity sha512-T89F/FgkE8waqrTSA7/ydMkcc52uYPgZZ6q8OaZgyiZkJb5QNNCF6oPZjH9IfPFfcc9uBWh1574N0kY0pSvTXw==
1514 | dependencies:
1515 | "@jest/environment" "^27.3.1"
1516 | "@jest/fake-timers" "^27.3.1"
1517 | "@jest/types" "^27.2.5"
1518 | "@types/node" "*"
1519 | jest-mock "^27.3.0"
1520 | jest-util "^27.3.1"
1521 |
1522 | jest-get-type@^27.3.1:
1523 | version "27.3.1"
1524 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.3.1.tgz#a8a2b0a12b50169773099eee60a0e6dd11423eff"
1525 | integrity sha512-+Ilqi8hgHSAdhlQ3s12CAVNd8H96ZkQBfYoXmArzZnOfAtVAJEiPDBirjByEblvG/4LPJmkL+nBqPO3A1YJAEg==
1526 |
1527 | jest-haste-map@^27.3.1:
1528 | version "27.3.1"
1529 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.3.1.tgz#7656fbd64bf48bda904e759fc9d93e2c807353ee"
1530 | integrity sha512-lYfNZIzwPccDJZIyk9Iz5iQMM/MH56NIIcGj7AFU1YyA4ewWFBl8z+YPJuSCRML/ee2cCt2y3W4K3VXPT6Nhzg==
1531 | dependencies:
1532 | "@jest/types" "^27.2.5"
1533 | "@types/graceful-fs" "^4.1.2"
1534 | "@types/node" "*"
1535 | anymatch "^3.0.3"
1536 | fb-watchman "^2.0.0"
1537 | graceful-fs "^4.2.4"
1538 | jest-regex-util "^27.0.6"
1539 | jest-serializer "^27.0.6"
1540 | jest-util "^27.3.1"
1541 | jest-worker "^27.3.1"
1542 | micromatch "^4.0.4"
1543 | walker "^1.0.7"
1544 | optionalDependencies:
1545 | fsevents "^2.3.2"
1546 |
1547 | jest-jasmine2@^27.3.1:
1548 | version "27.3.1"
1549 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.3.1.tgz#df6d3d07c7dafc344feb43a0072a6f09458d32b0"
1550 | integrity sha512-WK11ZUetDQaC09w4/j7o4FZDUIp+4iYWH/Lik34Pv7ukL+DuXFGdnmmi7dT58J2ZYKFB5r13GyE0z3NPeyJmsg==
1551 | dependencies:
1552 | "@babel/traverse" "^7.1.0"
1553 | "@jest/environment" "^27.3.1"
1554 | "@jest/source-map" "^27.0.6"
1555 | "@jest/test-result" "^27.3.1"
1556 | "@jest/types" "^27.2.5"
1557 | "@types/node" "*"
1558 | chalk "^4.0.0"
1559 | co "^4.6.0"
1560 | expect "^27.3.1"
1561 | is-generator-fn "^2.0.0"
1562 | jest-each "^27.3.1"
1563 | jest-matcher-utils "^27.3.1"
1564 | jest-message-util "^27.3.1"
1565 | jest-runtime "^27.3.1"
1566 | jest-snapshot "^27.3.1"
1567 | jest-util "^27.3.1"
1568 | pretty-format "^27.3.1"
1569 | throat "^6.0.1"
1570 |
1571 | jest-leak-detector@^27.3.1:
1572 | version "27.3.1"
1573 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.3.1.tgz#7fb632c2992ef707a1e73286e1e704f9cc1772b2"
1574 | integrity sha512-78QstU9tXbaHzwlRlKmTpjP9k4Pvre5l0r8Spo4SbFFVy/4Abg9I6ZjHwjg2QyKEAMg020XcjP+UgLZIY50yEg==
1575 | dependencies:
1576 | jest-get-type "^27.3.1"
1577 | pretty-format "^27.3.1"
1578 |
1579 | jest-matcher-utils@^27.3.1:
1580 | version "27.3.1"
1581 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.3.1.tgz#257ad61e54a6d4044e080d85dbdc4a08811e9c1c"
1582 | integrity sha512-hX8N7zXS4k+8bC1Aj0OWpGb7D3gIXxYvPNK1inP5xvE4ztbz3rc4AkI6jGVaerepBnfWB17FL5lWFJT3s7qo8w==
1583 | dependencies:
1584 | chalk "^4.0.0"
1585 | jest-diff "^27.3.1"
1586 | jest-get-type "^27.3.1"
1587 | pretty-format "^27.3.1"
1588 |
1589 | jest-message-util@^27.3.1:
1590 | version "27.3.1"
1591 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.3.1.tgz#f7c25688ad3410ab10bcb862bcfe3152345c6436"
1592 | integrity sha512-bh3JEmxsTZ/9rTm0jQrPElbY2+y48Rw2t47uMfByNyUVR+OfPh4anuyKsGqsNkXk/TI4JbLRZx+7p7Hdt6q1yg==
1593 | dependencies:
1594 | "@babel/code-frame" "^7.12.13"
1595 | "@jest/types" "^27.2.5"
1596 | "@types/stack-utils" "^2.0.0"
1597 | chalk "^4.0.0"
1598 | graceful-fs "^4.2.4"
1599 | micromatch "^4.0.4"
1600 | pretty-format "^27.3.1"
1601 | slash "^3.0.0"
1602 | stack-utils "^2.0.3"
1603 |
1604 | jest-mock@^27.3.0:
1605 | version "27.3.0"
1606 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.3.0.tgz#ddf0ec3cc3e68c8ccd489bef4d1f525571a1b867"
1607 | integrity sha512-ziZiLk0elZOQjD08bLkegBzv5hCABu/c8Ytx45nJKkysQwGaonvmTxwjLqEA4qGdasq9o2I8/HtdGMNnVsMTGw==
1608 | dependencies:
1609 | "@jest/types" "^27.2.5"
1610 | "@types/node" "*"
1611 |
1612 | jest-pnp-resolver@^1.2.2:
1613 | version "1.2.2"
1614 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
1615 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
1616 |
1617 | jest-regex-util@^27.0.6:
1618 | version "27.0.6"
1619 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.0.6.tgz#02e112082935ae949ce5d13b2675db3d8c87d9c5"
1620 | integrity sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ==
1621 |
1622 | jest-resolve-dependencies@^27.3.1:
1623 | version "27.3.1"
1624 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.3.1.tgz#85b99bdbdfa46e2c81c6228fc4c91076f624f6e2"
1625 | integrity sha512-X7iLzY8pCiYOnvYo2YrK3P9oSE8/3N2f4pUZMJ8IUcZnT81vlSonya1KTO9ZfKGuC+svE6FHK/XOb8SsoRUV1A==
1626 | dependencies:
1627 | "@jest/types" "^27.2.5"
1628 | jest-regex-util "^27.0.6"
1629 | jest-snapshot "^27.3.1"
1630 |
1631 | jest-resolve@^27.3.1:
1632 | version "27.3.1"
1633 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.3.1.tgz#0e5542172a1aa0270be6f66a65888647bdd74a3e"
1634 | integrity sha512-Dfzt25CFSPo3Y3GCbxynRBZzxq9AdyNN+x/v2IqYx6KVT5Z6me2Z/PsSGFSv3cOSUZqJ9pHxilao/I/m9FouLw==
1635 | dependencies:
1636 | "@jest/types" "^27.2.5"
1637 | chalk "^4.0.0"
1638 | graceful-fs "^4.2.4"
1639 | jest-haste-map "^27.3.1"
1640 | jest-pnp-resolver "^1.2.2"
1641 | jest-util "^27.3.1"
1642 | jest-validate "^27.3.1"
1643 | resolve "^1.20.0"
1644 | resolve.exports "^1.1.0"
1645 | slash "^3.0.0"
1646 |
1647 | jest-runner@^27.3.1:
1648 | version "27.3.1"
1649 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.3.1.tgz#1d594dcbf3bd8600a7e839e790384559eaf96e3e"
1650 | integrity sha512-r4W6kBn6sPr3TBwQNmqE94mPlYVn7fLBseeJfo4E2uCTmAyDFm2O5DYAQAFP7Q3YfiA/bMwg8TVsciP7k0xOww==
1651 | dependencies:
1652 | "@jest/console" "^27.3.1"
1653 | "@jest/environment" "^27.3.1"
1654 | "@jest/test-result" "^27.3.1"
1655 | "@jest/transform" "^27.3.1"
1656 | "@jest/types" "^27.2.5"
1657 | "@types/node" "*"
1658 | chalk "^4.0.0"
1659 | emittery "^0.8.1"
1660 | exit "^0.1.2"
1661 | graceful-fs "^4.2.4"
1662 | jest-docblock "^27.0.6"
1663 | jest-environment-jsdom "^27.3.1"
1664 | jest-environment-node "^27.3.1"
1665 | jest-haste-map "^27.3.1"
1666 | jest-leak-detector "^27.3.1"
1667 | jest-message-util "^27.3.1"
1668 | jest-resolve "^27.3.1"
1669 | jest-runtime "^27.3.1"
1670 | jest-util "^27.3.1"
1671 | jest-worker "^27.3.1"
1672 | source-map-support "^0.5.6"
1673 | throat "^6.0.1"
1674 |
1675 | jest-runtime@^27.3.1:
1676 | version "27.3.1"
1677 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.3.1.tgz#80fa32eb85fe5af575865ddf379874777ee993d7"
1678 | integrity sha512-qtO6VxPbS8umqhEDpjA4pqTkKQ1Hy4ZSi9mDVeE9Za7LKBo2LdW2jmT+Iod3XFaJqINikZQsn2wEi0j9wPRbLg==
1679 | dependencies:
1680 | "@jest/console" "^27.3.1"
1681 | "@jest/environment" "^27.3.1"
1682 | "@jest/globals" "^27.3.1"
1683 | "@jest/source-map" "^27.0.6"
1684 | "@jest/test-result" "^27.3.1"
1685 | "@jest/transform" "^27.3.1"
1686 | "@jest/types" "^27.2.5"
1687 | "@types/yargs" "^16.0.0"
1688 | chalk "^4.0.0"
1689 | cjs-module-lexer "^1.0.0"
1690 | collect-v8-coverage "^1.0.0"
1691 | execa "^5.0.0"
1692 | exit "^0.1.2"
1693 | glob "^7.1.3"
1694 | graceful-fs "^4.2.4"
1695 | jest-haste-map "^27.3.1"
1696 | jest-message-util "^27.3.1"
1697 | jest-mock "^27.3.0"
1698 | jest-regex-util "^27.0.6"
1699 | jest-resolve "^27.3.1"
1700 | jest-snapshot "^27.3.1"
1701 | jest-util "^27.3.1"
1702 | jest-validate "^27.3.1"
1703 | slash "^3.0.0"
1704 | strip-bom "^4.0.0"
1705 | yargs "^16.2.0"
1706 |
1707 | jest-serializer@^27.0.6:
1708 | version "27.0.6"
1709 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.0.6.tgz#93a6c74e0132b81a2d54623251c46c498bb5bec1"
1710 | integrity sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA==
1711 | dependencies:
1712 | "@types/node" "*"
1713 | graceful-fs "^4.2.4"
1714 |
1715 | jest-snapshot@^27.3.1:
1716 | version "27.3.1"
1717 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.3.1.tgz#1da5c0712a252d70917d46c037054f5918c49ee4"
1718 | integrity sha512-APZyBvSgQgOT0XumwfFu7X3G5elj6TGhCBLbBdn3R1IzYustPGPE38F51dBWMQ8hRXa9je0vAdeVDtqHLvB6lg==
1719 | dependencies:
1720 | "@babel/core" "^7.7.2"
1721 | "@babel/generator" "^7.7.2"
1722 | "@babel/parser" "^7.7.2"
1723 | "@babel/plugin-syntax-typescript" "^7.7.2"
1724 | "@babel/traverse" "^7.7.2"
1725 | "@babel/types" "^7.0.0"
1726 | "@jest/transform" "^27.3.1"
1727 | "@jest/types" "^27.2.5"
1728 | "@types/babel__traverse" "^7.0.4"
1729 | "@types/prettier" "^2.1.5"
1730 | babel-preset-current-node-syntax "^1.0.0"
1731 | chalk "^4.0.0"
1732 | expect "^27.3.1"
1733 | graceful-fs "^4.2.4"
1734 | jest-diff "^27.3.1"
1735 | jest-get-type "^27.3.1"
1736 | jest-haste-map "^27.3.1"
1737 | jest-matcher-utils "^27.3.1"
1738 | jest-message-util "^27.3.1"
1739 | jest-resolve "^27.3.1"
1740 | jest-util "^27.3.1"
1741 | natural-compare "^1.4.0"
1742 | pretty-format "^27.3.1"
1743 | semver "^7.3.2"
1744 |
1745 | jest-util@^27.0.0:
1746 | version "27.0.6"
1747 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.0.6.tgz#e8e04eec159de2f4d5f57f795df9cdc091e50297"
1748 | integrity sha512-1JjlaIh+C65H/F7D11GNkGDDZtDfMEM8EBXsvd+l/cxtgQ6QhxuloOaiayt89DxUvDarbVhqI98HhgrM1yliFQ==
1749 | dependencies:
1750 | "@jest/types" "^27.0.6"
1751 | "@types/node" "*"
1752 | chalk "^4.0.0"
1753 | graceful-fs "^4.2.4"
1754 | is-ci "^3.0.0"
1755 | picomatch "^2.2.3"
1756 |
1757 | jest-util@^27.3.1:
1758 | version "27.3.1"
1759 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.3.1.tgz#a58cdc7b6c8a560caac9ed6bdfc4e4ff23f80429"
1760 | integrity sha512-8fg+ifEH3GDryLQf/eKZck1DEs2YuVPBCMOaHQxVVLmQwl/CDhWzrvChTX4efLZxGrw+AA0mSXv78cyytBt/uw==
1761 | dependencies:
1762 | "@jest/types" "^27.2.5"
1763 | "@types/node" "*"
1764 | chalk "^4.0.0"
1765 | ci-info "^3.2.0"
1766 | graceful-fs "^4.2.4"
1767 | picomatch "^2.2.3"
1768 |
1769 | jest-validate@^27.3.1:
1770 | version "27.3.1"
1771 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.3.1.tgz#3a395d61a19cd13ae9054af8cdaf299116ef8a24"
1772 | integrity sha512-3H0XCHDFLA9uDII67Bwi1Vy7AqwA5HqEEjyy934lgVhtJ3eisw6ShOF1MDmRPspyikef5MyExvIm0/TuLzZ86Q==
1773 | dependencies:
1774 | "@jest/types" "^27.2.5"
1775 | camelcase "^6.2.0"
1776 | chalk "^4.0.0"
1777 | jest-get-type "^27.3.1"
1778 | leven "^3.1.0"
1779 | pretty-format "^27.3.1"
1780 |
1781 | jest-watcher@^27.3.1:
1782 | version "27.3.1"
1783 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.3.1.tgz#ba5e0bc6aa843612b54ddb7f009d1cbff7e05f3e"
1784 | integrity sha512-9/xbV6chABsGHWh9yPaAGYVVKurWoP3ZMCv6h+O1v9/+pkOroigs6WzZ0e9gLP/njokUwM7yQhr01LKJVMkaZA==
1785 | dependencies:
1786 | "@jest/test-result" "^27.3.1"
1787 | "@jest/types" "^27.2.5"
1788 | "@types/node" "*"
1789 | ansi-escapes "^4.2.1"
1790 | chalk "^4.0.0"
1791 | jest-util "^27.3.1"
1792 | string-length "^4.0.1"
1793 |
1794 | jest-worker@^27.3.1:
1795 | version "27.3.1"
1796 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.3.1.tgz#0def7feae5b8042be38479799aeb7b5facac24b2"
1797 | integrity sha512-ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g==
1798 | dependencies:
1799 | "@types/node" "*"
1800 | merge-stream "^2.0.0"
1801 | supports-color "^8.0.0"
1802 |
1803 | jest@^27.3.1:
1804 | version "27.3.1"
1805 | resolved "https://registry.yarnpkg.com/jest/-/jest-27.3.1.tgz#b5bab64e8f56b6f7e275ba1836898b0d9f1e5c8a"
1806 | integrity sha512-U2AX0AgQGd5EzMsiZpYt8HyZ+nSVIh5ujQ9CPp9EQZJMjXIiSZpJNweZl0swatKRoqHWgGKM3zaSwm4Zaz87ng==
1807 | dependencies:
1808 | "@jest/core" "^27.3.1"
1809 | import-local "^3.0.2"
1810 | jest-cli "^27.3.1"
1811 |
1812 | js-tokens@^4.0.0:
1813 | version "4.0.0"
1814 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1815 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1816 |
1817 | js-yaml@^3.13.1:
1818 | version "3.14.1"
1819 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
1820 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
1821 | dependencies:
1822 | argparse "^1.0.7"
1823 | esprima "^4.0.0"
1824 |
1825 | jsdom@^16.6.0:
1826 | version "16.6.0"
1827 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.6.0.tgz#f79b3786682065492a3da6a60a4695da983805ac"
1828 | integrity sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg==
1829 | dependencies:
1830 | abab "^2.0.5"
1831 | acorn "^8.2.4"
1832 | acorn-globals "^6.0.0"
1833 | cssom "^0.4.4"
1834 | cssstyle "^2.3.0"
1835 | data-urls "^2.0.0"
1836 | decimal.js "^10.2.1"
1837 | domexception "^2.0.1"
1838 | escodegen "^2.0.0"
1839 | form-data "^3.0.0"
1840 | html-encoding-sniffer "^2.0.1"
1841 | http-proxy-agent "^4.0.1"
1842 | https-proxy-agent "^5.0.0"
1843 | is-potential-custom-element-name "^1.0.1"
1844 | nwsapi "^2.2.0"
1845 | parse5 "6.0.1"
1846 | saxes "^5.0.1"
1847 | symbol-tree "^3.2.4"
1848 | tough-cookie "^4.0.0"
1849 | w3c-hr-time "^1.0.2"
1850 | w3c-xmlserializer "^2.0.0"
1851 | webidl-conversions "^6.1.0"
1852 | whatwg-encoding "^1.0.5"
1853 | whatwg-mimetype "^2.3.0"
1854 | whatwg-url "^8.5.0"
1855 | ws "^7.4.5"
1856 | xml-name-validator "^3.0.0"
1857 |
1858 | jsesc@^2.5.1:
1859 | version "2.5.2"
1860 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
1861 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
1862 |
1863 | json5@2.x, json5@^2.1.2:
1864 | version "2.2.0"
1865 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
1866 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
1867 | dependencies:
1868 | minimist "^1.2.5"
1869 |
1870 | kleur@^3.0.3:
1871 | version "3.0.3"
1872 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
1873 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
1874 |
1875 | leven@^3.1.0:
1876 | version "3.1.0"
1877 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
1878 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
1879 |
1880 | levn@~0.3.0:
1881 | version "0.3.0"
1882 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1883 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
1884 | dependencies:
1885 | prelude-ls "~1.1.2"
1886 | type-check "~0.3.2"
1887 |
1888 | locate-path@^5.0.0:
1889 | version "5.0.0"
1890 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
1891 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
1892 | dependencies:
1893 | p-locate "^4.1.0"
1894 |
1895 | lodash.memoize@4.x:
1896 | version "4.1.2"
1897 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
1898 | integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
1899 |
1900 | lodash@^4.7.0:
1901 | version "4.17.21"
1902 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
1903 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
1904 |
1905 | lru-cache@^6.0.0:
1906 | version "6.0.0"
1907 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1908 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1909 | dependencies:
1910 | yallist "^4.0.0"
1911 |
1912 | make-dir@^3.0.0:
1913 | version "3.1.0"
1914 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
1915 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
1916 | dependencies:
1917 | semver "^6.0.0"
1918 |
1919 | make-error@1.x:
1920 | version "1.3.6"
1921 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
1922 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
1923 |
1924 | makeerror@1.0.x:
1925 | version "1.0.11"
1926 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
1927 | integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
1928 | dependencies:
1929 | tmpl "1.0.x"
1930 |
1931 | merge-stream@^2.0.0:
1932 | version "2.0.0"
1933 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
1934 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
1935 |
1936 | micromatch@^4.0.4:
1937 | version "4.0.4"
1938 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
1939 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
1940 | dependencies:
1941 | braces "^3.0.1"
1942 | picomatch "^2.2.3"
1943 |
1944 | mime-db@1.48.0:
1945 | version "1.48.0"
1946 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d"
1947 | integrity sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==
1948 |
1949 | mime-types@^2.1.12:
1950 | version "2.1.31"
1951 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b"
1952 | integrity sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==
1953 | dependencies:
1954 | mime-db "1.48.0"
1955 |
1956 | mimic-fn@^2.1.0:
1957 | version "2.1.0"
1958 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
1959 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
1960 |
1961 | minimatch@^3.0.4:
1962 | version "3.0.4"
1963 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1964 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
1965 | dependencies:
1966 | brace-expansion "^1.1.7"
1967 |
1968 | minimist@^1.2.5:
1969 | version "1.2.5"
1970 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
1971 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
1972 |
1973 | ms@2.1.2:
1974 | version "2.1.2"
1975 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1976 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1977 |
1978 | natural-compare@^1.4.0:
1979 | version "1.4.0"
1980 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1981 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
1982 |
1983 | node-int64@^0.4.0:
1984 | version "0.4.0"
1985 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
1986 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
1987 |
1988 | node-modules-regexp@^1.0.0:
1989 | version "1.0.0"
1990 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
1991 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
1992 |
1993 | node-releases@^1.1.71:
1994 | version "1.1.73"
1995 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20"
1996 | integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==
1997 |
1998 | normalize-path@^3.0.0:
1999 | version "3.0.0"
2000 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
2001 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
2002 |
2003 | npm-run-path@^4.0.1:
2004 | version "4.0.1"
2005 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
2006 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
2007 | dependencies:
2008 | path-key "^3.0.0"
2009 |
2010 | nwsapi@^2.2.0:
2011 | version "2.2.0"
2012 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
2013 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
2014 |
2015 | once@^1.3.0:
2016 | version "1.4.0"
2017 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2018 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
2019 | dependencies:
2020 | wrappy "1"
2021 |
2022 | onetime@^5.1.2:
2023 | version "5.1.2"
2024 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
2025 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
2026 | dependencies:
2027 | mimic-fn "^2.1.0"
2028 |
2029 | optionator@^0.8.1:
2030 | version "0.8.3"
2031 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
2032 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
2033 | dependencies:
2034 | deep-is "~0.1.3"
2035 | fast-levenshtein "~2.0.6"
2036 | levn "~0.3.0"
2037 | prelude-ls "~1.1.2"
2038 | type-check "~0.3.2"
2039 | word-wrap "~1.2.3"
2040 |
2041 | p-limit@^2.2.0:
2042 | version "2.3.0"
2043 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
2044 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
2045 | dependencies:
2046 | p-try "^2.0.0"
2047 |
2048 | p-locate@^4.1.0:
2049 | version "4.1.0"
2050 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
2051 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
2052 | dependencies:
2053 | p-limit "^2.2.0"
2054 |
2055 | p-try@^2.0.0:
2056 | version "2.2.0"
2057 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
2058 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
2059 |
2060 | parse5@6.0.1:
2061 | version "6.0.1"
2062 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
2063 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
2064 |
2065 | path-exists@^4.0.0:
2066 | version "4.0.0"
2067 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
2068 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
2069 |
2070 | path-is-absolute@^1.0.0:
2071 | version "1.0.1"
2072 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2073 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
2074 |
2075 | path-key@^3.0.0, path-key@^3.1.0:
2076 | version "3.1.1"
2077 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
2078 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
2079 |
2080 | path-parse@^1.0.6:
2081 | version "1.0.7"
2082 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
2083 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
2084 |
2085 | picomatch@^2.0.4, picomatch@^2.2.3:
2086 | version "2.3.0"
2087 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
2088 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
2089 |
2090 | pirates@^4.0.1:
2091 | version "4.0.1"
2092 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
2093 | integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
2094 | dependencies:
2095 | node-modules-regexp "^1.0.0"
2096 |
2097 | pkg-dir@^4.2.0:
2098 | version "4.2.0"
2099 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
2100 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
2101 | dependencies:
2102 | find-up "^4.0.0"
2103 |
2104 | prelude-ls@~1.1.2:
2105 | version "1.1.2"
2106 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2107 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
2108 |
2109 | prettier@^2.4.1:
2110 | version "2.4.1"
2111 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.4.1.tgz#671e11c89c14a4cfc876ce564106c4a6726c9f5c"
2112 | integrity sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==
2113 |
2114 | pretty-format@^27.0.0, pretty-format@^27.3.1:
2115 | version "27.3.1"
2116 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.3.1.tgz#7e9486365ccdd4a502061fa761d3ab9ca1b78df5"
2117 | integrity sha512-DR/c+pvFc52nLimLROYjnXPtolawm+uWDxr4FjuLDLUn+ktWnSN851KoHwHzzqq6rfCOjkzN8FLgDrSub6UDuA==
2118 | dependencies:
2119 | "@jest/types" "^27.2.5"
2120 | ansi-regex "^5.0.1"
2121 | ansi-styles "^5.0.0"
2122 | react-is "^17.0.1"
2123 |
2124 | prompts@^2.0.1:
2125 | version "2.4.1"
2126 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61"
2127 | integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==
2128 | dependencies:
2129 | kleur "^3.0.3"
2130 | sisteransi "^1.0.5"
2131 |
2132 | psl@^1.1.33:
2133 | version "1.8.0"
2134 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
2135 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
2136 |
2137 | punycode@^2.1.1:
2138 | version "2.1.1"
2139 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
2140 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
2141 |
2142 | react-is@^17.0.1:
2143 | version "17.0.2"
2144 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
2145 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
2146 |
2147 | require-directory@^2.1.1:
2148 | version "2.1.1"
2149 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2150 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
2151 |
2152 | resolve-cwd@^3.0.0:
2153 | version "3.0.0"
2154 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
2155 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
2156 | dependencies:
2157 | resolve-from "^5.0.0"
2158 |
2159 | resolve-from@^5.0.0:
2160 | version "5.0.0"
2161 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
2162 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
2163 |
2164 | resolve.exports@^1.1.0:
2165 | version "1.1.0"
2166 | resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9"
2167 | integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==
2168 |
2169 | resolve@^1.20.0:
2170 | version "1.20.0"
2171 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
2172 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
2173 | dependencies:
2174 | is-core-module "^2.2.0"
2175 | path-parse "^1.0.6"
2176 |
2177 | rimraf@^3.0.0:
2178 | version "3.0.2"
2179 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
2180 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
2181 | dependencies:
2182 | glob "^7.1.3"
2183 |
2184 | safe-buffer@~5.1.1:
2185 | version "5.1.2"
2186 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
2187 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
2188 |
2189 | "safer-buffer@>= 2.1.2 < 3":
2190 | version "2.1.2"
2191 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
2192 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
2193 |
2194 | saxes@^5.0.1:
2195 | version "5.0.1"
2196 | resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
2197 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
2198 | dependencies:
2199 | xmlchars "^2.2.0"
2200 |
2201 | semver@7.x, semver@^7.3.2:
2202 | version "7.3.5"
2203 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
2204 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
2205 | dependencies:
2206 | lru-cache "^6.0.0"
2207 |
2208 | semver@^6.0.0, semver@^6.3.0:
2209 | version "6.3.0"
2210 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
2211 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
2212 |
2213 | shebang-command@^2.0.0:
2214 | version "2.0.0"
2215 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
2216 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
2217 | dependencies:
2218 | shebang-regex "^3.0.0"
2219 |
2220 | shebang-regex@^3.0.0:
2221 | version "3.0.0"
2222 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
2223 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
2224 |
2225 | signal-exit@^3.0.2, signal-exit@^3.0.3:
2226 | version "3.0.3"
2227 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
2228 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
2229 |
2230 | sisteransi@^1.0.5:
2231 | version "1.0.5"
2232 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
2233 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
2234 |
2235 | slash@^3.0.0:
2236 | version "3.0.0"
2237 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
2238 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
2239 |
2240 | source-map-support@^0.5.6:
2241 | version "0.5.19"
2242 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
2243 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
2244 | dependencies:
2245 | buffer-from "^1.0.0"
2246 | source-map "^0.6.0"
2247 |
2248 | source-map@^0.5.0:
2249 | version "0.5.7"
2250 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2251 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
2252 |
2253 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
2254 | version "0.6.1"
2255 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
2256 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
2257 |
2258 | source-map@^0.7.3:
2259 | version "0.7.3"
2260 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
2261 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
2262 |
2263 | sprintf-js@~1.0.2:
2264 | version "1.0.3"
2265 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2266 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
2267 |
2268 | stack-utils@^2.0.3:
2269 | version "2.0.3"
2270 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.3.tgz#cd5f030126ff116b78ccb3c027fe302713b61277"
2271 | integrity sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==
2272 | dependencies:
2273 | escape-string-regexp "^2.0.0"
2274 |
2275 | string-length@^4.0.1:
2276 | version "4.0.2"
2277 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a"
2278 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==
2279 | dependencies:
2280 | char-regex "^1.0.2"
2281 | strip-ansi "^6.0.0"
2282 |
2283 | string-width@^4.1.0, string-width@^4.2.0:
2284 | version "4.2.2"
2285 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
2286 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
2287 | dependencies:
2288 | emoji-regex "^8.0.0"
2289 | is-fullwidth-code-point "^3.0.0"
2290 | strip-ansi "^6.0.0"
2291 |
2292 | strip-ansi@^6.0.0:
2293 | version "6.0.0"
2294 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
2295 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
2296 | dependencies:
2297 | ansi-regex "^5.0.0"
2298 |
2299 | strip-bom@^4.0.0:
2300 | version "4.0.0"
2301 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878"
2302 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
2303 |
2304 | strip-final-newline@^2.0.0:
2305 | version "2.0.0"
2306 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
2307 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
2308 |
2309 | stylis@^4.0.13:
2310 | version "4.0.13"
2311 | resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91"
2312 | integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==
2313 |
2314 | supports-color@^5.3.0:
2315 | version "5.5.0"
2316 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
2317 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
2318 | dependencies:
2319 | has-flag "^3.0.0"
2320 |
2321 | supports-color@^7.0.0, supports-color@^7.1.0:
2322 | version "7.2.0"
2323 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
2324 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
2325 | dependencies:
2326 | has-flag "^4.0.0"
2327 |
2328 | supports-color@^8.0.0:
2329 | version "8.1.1"
2330 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
2331 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
2332 | dependencies:
2333 | has-flag "^4.0.0"
2334 |
2335 | supports-hyperlinks@^2.0.0:
2336 | version "2.2.0"
2337 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb"
2338 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==
2339 | dependencies:
2340 | has-flag "^4.0.0"
2341 | supports-color "^7.0.0"
2342 |
2343 | symbol-tree@^3.2.4:
2344 | version "3.2.4"
2345 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
2346 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
2347 |
2348 | terminal-link@^2.0.0:
2349 | version "2.1.1"
2350 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
2351 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
2352 | dependencies:
2353 | ansi-escapes "^4.2.1"
2354 | supports-hyperlinks "^2.0.0"
2355 |
2356 | test-exclude@^6.0.0:
2357 | version "6.0.0"
2358 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
2359 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
2360 | dependencies:
2361 | "@istanbuljs/schema" "^0.1.2"
2362 | glob "^7.1.4"
2363 | minimatch "^3.0.4"
2364 |
2365 | throat@^6.0.1:
2366 | version "6.0.1"
2367 | resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375"
2368 | integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==
2369 |
2370 | tmpl@1.0.x:
2371 | version "1.0.5"
2372 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
2373 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
2374 |
2375 | to-fast-properties@^2.0.0:
2376 | version "2.0.0"
2377 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
2378 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
2379 |
2380 | to-regex-range@^5.0.1:
2381 | version "5.0.1"
2382 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
2383 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2384 | dependencies:
2385 | is-number "^7.0.0"
2386 |
2387 | tough-cookie@^4.0.0:
2388 | version "4.0.0"
2389 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4"
2390 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==
2391 | dependencies:
2392 | psl "^1.1.33"
2393 | punycode "^2.1.1"
2394 | universalify "^0.1.2"
2395 |
2396 | tr46@^2.1.0:
2397 | version "2.1.0"
2398 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240"
2399 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==
2400 | dependencies:
2401 | punycode "^2.1.1"
2402 |
2403 | ts-jest@^27.0.7:
2404 | version "27.0.7"
2405 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.0.7.tgz#fb7c8c8cb5526ab371bc1b23d06e745652cca2d0"
2406 | integrity sha512-O41shibMqzdafpuP+CkrOL7ykbmLh+FqQrXEmV9CydQ5JBk0Sj0uAEF5TNNe94fZWKm3yYvWa/IbyV4Yg1zK2Q==
2407 | dependencies:
2408 | bs-logger "0.x"
2409 | fast-json-stable-stringify "2.x"
2410 | jest-util "^27.0.0"
2411 | json5 "2.x"
2412 | lodash.memoize "4.x"
2413 | make-error "1.x"
2414 | semver "7.x"
2415 | yargs-parser "20.x"
2416 |
2417 | type-check@~0.3.2:
2418 | version "0.3.2"
2419 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
2420 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
2421 | dependencies:
2422 | prelude-ls "~1.1.2"
2423 |
2424 | type-detect@4.0.8:
2425 | version "4.0.8"
2426 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
2427 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
2428 |
2429 | type-fest@^0.21.3:
2430 | version "0.21.3"
2431 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
2432 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
2433 |
2434 | typedarray-to-buffer@^3.1.5:
2435 | version "3.1.5"
2436 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
2437 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
2438 | dependencies:
2439 | is-typedarray "^1.0.0"
2440 |
2441 | typescript@^4.4.4:
2442 | version "4.4.4"
2443 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.4.tgz#2cd01a1a1f160704d3101fd5a58ff0f9fcb8030c"
2444 | integrity sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==
2445 |
2446 | universalify@^0.1.2:
2447 | version "0.1.2"
2448 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
2449 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
2450 |
2451 | v8-to-istanbul@^8.1.0:
2452 | version "8.1.0"
2453 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz#0aeb763894f1a0a1676adf8a8b7612a38902446c"
2454 | integrity sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA==
2455 | dependencies:
2456 | "@types/istanbul-lib-coverage" "^2.0.1"
2457 | convert-source-map "^1.6.0"
2458 | source-map "^0.7.3"
2459 |
2460 | w3c-hr-time@^1.0.2:
2461 | version "1.0.2"
2462 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
2463 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
2464 | dependencies:
2465 | browser-process-hrtime "^1.0.0"
2466 |
2467 | w3c-xmlserializer@^2.0.0:
2468 | version "2.0.0"
2469 | resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a"
2470 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==
2471 | dependencies:
2472 | xml-name-validator "^3.0.0"
2473 |
2474 | walker@^1.0.7:
2475 | version "1.0.7"
2476 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
2477 | integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
2478 | dependencies:
2479 | makeerror "1.0.x"
2480 |
2481 | webidl-conversions@^5.0.0:
2482 | version "5.0.0"
2483 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
2484 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
2485 |
2486 | webidl-conversions@^6.1.0:
2487 | version "6.1.0"
2488 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514"
2489 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
2490 |
2491 | whatwg-encoding@^1.0.5:
2492 | version "1.0.5"
2493 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
2494 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
2495 | dependencies:
2496 | iconv-lite "0.4.24"
2497 |
2498 | whatwg-mimetype@^2.3.0:
2499 | version "2.3.0"
2500 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
2501 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
2502 |
2503 | whatwg-url@^8.0.0, whatwg-url@^8.5.0:
2504 | version "8.7.0"
2505 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77"
2506 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==
2507 | dependencies:
2508 | lodash "^4.7.0"
2509 | tr46 "^2.1.0"
2510 | webidl-conversions "^6.1.0"
2511 |
2512 | which@^2.0.1:
2513 | version "2.0.2"
2514 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
2515 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2516 | dependencies:
2517 | isexe "^2.0.0"
2518 |
2519 | word-wrap@~1.2.3:
2520 | version "1.2.3"
2521 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
2522 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
2523 |
2524 | wrap-ansi@^7.0.0:
2525 | version "7.0.0"
2526 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
2527 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
2528 | dependencies:
2529 | ansi-styles "^4.0.0"
2530 | string-width "^4.1.0"
2531 | strip-ansi "^6.0.0"
2532 |
2533 | wrappy@1:
2534 | version "1.0.2"
2535 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2536 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
2537 |
2538 | write-file-atomic@^3.0.0:
2539 | version "3.0.3"
2540 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
2541 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
2542 | dependencies:
2543 | imurmurhash "^0.1.4"
2544 | is-typedarray "^1.0.0"
2545 | signal-exit "^3.0.2"
2546 | typedarray-to-buffer "^3.1.5"
2547 |
2548 | ws@^7.4.5:
2549 | version "7.5.2"
2550 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.2.tgz#09cc8fea3bec1bc5ed44ef51b42f945be36900f6"
2551 | integrity sha512-lkF7AWRicoB9mAgjeKbGqVUekLnSNO4VjKVnuPHpQeOxZOErX6BPXwJk70nFslRCEEA8EVW7ZjKwXaP9N+1sKQ==
2552 |
2553 | xml-name-validator@^3.0.0:
2554 | version "3.0.0"
2555 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
2556 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
2557 |
2558 | xmlchars@^2.2.0:
2559 | version "2.2.0"
2560 | resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
2561 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
2562 |
2563 | y18n@^5.0.5:
2564 | version "5.0.8"
2565 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
2566 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
2567 |
2568 | yallist@^4.0.0:
2569 | version "4.0.0"
2570 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
2571 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
2572 |
2573 | yargs-parser@20.x, yargs-parser@^20.2.2:
2574 | version "20.2.9"
2575 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
2576 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
2577 |
2578 | yargs@^16.2.0:
2579 | version "16.2.0"
2580 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
2581 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
2582 | dependencies:
2583 | cliui "^7.0.2"
2584 | escalade "^3.1.1"
2585 | get-caller-file "^2.0.5"
2586 | require-directory "^2.1.1"
2587 | string-width "^4.2.0"
2588 | y18n "^5.0.5"
2589 | yargs-parser "^20.2.2"
2590 |
--------------------------------------------------------------------------------