├── .babelrc
├── .gitignore
├── CHANGELOG.md
├── LICENSE
├── README.md
├── package.json
├── rollup.config.js
├── src
├── RovingTabindex.js
├── RovingTabindexContainer.js
├── constants.js
└── index.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [["@babel/env", { "modules": false }]]
3 | }
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | dist
2 | node_modules
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | All notable changes to this project will be documented in this file.
4 |
5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7 |
8 | ## [Unreleased]
9 |
10 | [2.0.0]: Update to Vue 3.
11 |
12 | ## [1.2.1] - 2021-03-24
13 |
14 | ### Changed
15 |
16 | - Updated Rollup and babel
17 |
18 | ## [1.2.0] - 2019-12-13
19 |
20 | ### Changed
21 |
22 | - Use rollup to create a transpiled bundle
23 |
24 | ## 1.1.0 - 2019-11-05
25 |
26 | ### Added
27 |
28 | - Initial release!
29 |
30 | [unreleased]: https://github.com/fork/vue-roving-tabindex/compare/v1.2.0...HEAD
31 | [1.2.0]: https://github.com/fork/vue-roving-tabindex/compare/v1.1.0...v1.2.0
32 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Fork Unstable Media GmbH
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 | # `@4rk/vue-roving-tabindex`
2 |
3 | Add a roving tabindex to a Vue component. This is useful to implement keyboard navigation inside components according to [WAI-ARIA](https://www.w3.org/TR/wai-aria-practices/#kbd_general_within).
4 |
5 | ## Installation
6 |
7 | ```javascript
8 | import VueRovingTabindex from "@4rk/vue-roving-tabindex";
9 |
10 | app.use(VueRovingTabindex);
11 | ```
12 |
13 | ## Usage
14 |
15 | ```vue
16 |
17 |
18 | foo
19 | bar
20 | baz
21 |
22 |
23 | ```
24 |
25 | ## Directive API
26 |
27 | The package provides two Vue directives:
28 |
29 | ### v-roving-tabindex-container
30 |
31 | This directive denotes the boundary of a roving tabindex sequence. Add it to a parent element of the `v-roving-tabindex` elements.
32 |
33 | It has a single boolean modifier to change the direction from vertical to horizontal:
34 |
35 | ```vue
36 |
37 | ```
38 |
39 | ### v-roving-tabindex
40 |
41 | This directive should be used on every focussable element inside a `v-roving-tabindex-container` that is part of the roving tabindex.
42 |
43 | Its value can be set to `false` to remove the element from the roving tabindex:
44 |
45 | ```vue
46 | ",
16 | "main": "dist/index.js",
17 | "repository": {
18 | "type": "git",
19 | "url": "https://github.com/fork/vue-roving-tabindex.git"
20 | },
21 | "scripts": {
22 | "build": "rollup -c",
23 | "preversion": "kacl prerelease",
24 | "version": "kacl release && prettier --write CHANGELOG.md && git add CHANGELOG.md"
25 | },
26 | "files": [
27 | "dist"
28 | ],
29 | "peerDependencies": {
30 | "vue": "3.x"
31 | },
32 | "devDependencies": {
33 | "@babel/core": "^7.7.5",
34 | "@babel/preset-env": "^7.7.6",
35 | "@brightcove/kacl": "^0.1.8",
36 | "prettier": "^1.19.1",
37 | "rollup": "^1.27.12",
38 | "rollup-plugin-babel": "^4.3.3"
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import babel from "rollup-plugin-babel";
2 |
3 | import pkg from "./package.json";
4 |
5 | export default {
6 | input: "src/index.js",
7 | output: {
8 | file: pkg.main,
9 | format: "es"
10 | },
11 | plugins: [
12 | babel({
13 | exclude: "node_modules/**" // only transpile our source code
14 | })
15 | ],
16 | external: ["vue"]
17 | };
18 |
--------------------------------------------------------------------------------
/src/RovingTabindex.js:
--------------------------------------------------------------------------------
1 | import { nextTick } from "vue";
2 |
3 | import { ATTR_CONTAINER, ATTR_ITEM } from "./constants";
4 | import { getContainerConfig } from "./RovingTabindexContainer";
5 |
6 | /**
7 | * Get roving tabindex siblings including self
8 | * @param {HTMLElement} el - Current [data-roving-tabindex] element
9 | * @returns {HTMLElement[]} Sibling tabindex elements
10 | */
11 | const getSiblings = el =>
12 | Array.from(
13 | el.closest(`[${ATTR_CONTAINER}]`).querySelectorAll(`[${ATTR_ITEM}]`)
14 | ).filter(
15 | $el =>
16 | $el.closest(`[${ATTR_CONTAINER}]`) === el.closest(`[${ATTR_CONTAINER}]`)
17 | );
18 |
19 | /**
20 | * Enable an an element's tabindex by it's index
21 | * Negative and overflowing index is allowed so just adding/subtracting from the current index works
22 | * @param {HTMLElement[]} $siblings - Array of elements
23 | * @param {Number} idx - Index of the to-be-enabled element
24 | * @returns {void}
25 | */
26 | const goTo = ($siblings, idx) => {
27 | const $next = $siblings.slice(idx % $siblings.length)[0];
28 | $siblings.forEach($sibling =>
29 | $sibling.setAttribute("tabindex", $sibling === $next ? "0" : "-1")
30 | );
31 | $next.focus();
32 | };
33 |
34 | /**
35 | * Keydown event handler for [data-roving-tabindex] elements
36 | * @param {KeyboardEvent} ev - Event handler
37 | * @returns {void}
38 | */
39 | const onKeydown = ev => {
40 | const { isHorizontal } = getContainerConfig(ev.target);
41 |
42 | // Get our desired keys
43 | const keyNext = isHorizontal ? "ArrowRight" : "ArrowDown";
44 | const keyPrev = isHorizontal ? "ArrowLeft" : "ArrowUp";
45 |
46 | switch (ev.key) {
47 | case keyPrev: {
48 | ev.preventDefault();
49 | const $siblings = getSiblings(ev.target);
50 | const cur = $siblings.indexOf(ev.target);
51 | goTo($siblings, cur - 1);
52 | break;
53 | }
54 |
55 | case keyNext: {
56 | ev.preventDefault();
57 | const $siblings = getSiblings(ev.target);
58 | const cur = $siblings.indexOf(ev.target);
59 | goTo($siblings, cur + 1);
60 | break;
61 | }
62 |
63 | case "Home": {
64 | ev.preventDefault();
65 | const $siblings = getSiblings(ev.target);
66 | goTo($siblings, 0);
67 | break;
68 | }
69 |
70 | case "End": {
71 | ev.preventDefault();
72 | const $siblings = getSiblings(ev.target);
73 | goTo($siblings, -1);
74 | break;
75 | }
76 |
77 | default: {
78 | break;
79 | }
80 | }
81 | };
82 |
83 | /**
84 | * Click handler for [data-roving-tabindex] elements
85 | * TODO reset on e.g. popups
86 | * @param {MouseEvent} ev - Event handler
87 | * @returns {void}
88 | */
89 | const onClick = ev => {
90 | const $siblings = getSiblings(ev.target);
91 | const cur = $siblings.indexOf(ev.target);
92 | goTo($siblings, cur);
93 | };
94 |
95 | /**
96 | * Register an element to the roving tabindex
97 | * @param {HTMLElement} el - Element that should be in a roving tabindex
98 | * @returns {void}
99 | */
100 | const bindRovingTabindex = el => {
101 | el.setAttribute(ATTR_ITEM, "");
102 | // el.addEventListener("click", onClick);
103 | el.addEventListener("keydown", onKeydown);
104 |
105 | // Initialise the tabindex
106 | nextTick(() => {
107 | const $siblings = getSiblings(el);
108 | el.setAttribute("tabindex", $siblings.indexOf(el) === 0 ? "0" : "-1");
109 | });
110 | };
111 |
112 | /**
113 | * Unregister an element from the roving tabindex
114 | * @param {HTMLElement} el - Element that should unregistered
115 | * @returns {void}
116 | */
117 | const unbindRovingTabindex = el => {
118 | el.removeAttribute(ATTR_ITEM);
119 | el.removeAttribute("tabindex");
120 | // el.removeEventListener("click", onClick);
121 | el.removeEventListener("keydown", onKeydown);
122 | };
123 |
124 | const RovingTabindex = {
125 | beforeMount(el, { value = true }) {
126 | if (value) {
127 | bindRovingTabindex(el);
128 | }
129 | },
130 | updated(el, { value = true, oldValue = true }) {
131 | if (value !== oldValue) {
132 | unbindRovingTabindex(el);
133 |
134 | if (value) {
135 | bindRovingTabindex(el);
136 | }
137 | }
138 | },
139 | unmounted(el) {
140 | unbindRovingTabindex(el);
141 | }
142 | };
143 |
144 | export default RovingTabindex;
145 |
--------------------------------------------------------------------------------
/src/RovingTabindexContainer.js:
--------------------------------------------------------------------------------
1 | import { ATTR_CONTAINER } from "./constants";
2 |
3 | const containers = new WeakMap();
4 |
5 | /**
6 | * Get the config of the related [data-roving-tabindex-container]
7 | * @param {HTMLElement} el - Current [data-roving-tabindex] element
8 | * @returns {Object} Container config
9 | */
10 | export const getContainerConfig = el =>
11 | containers.get(el.closest(`[${ATTR_CONTAINER}]`));
12 |
13 | /**
14 | * Register an element as roving tabindex container
15 | * @param {HTMLElement} el - Element that shold be a roving tabindex container
16 | * @param {Object} modifiers - Vue Directive Modifiers
17 | * @returns {void}
18 | */
19 | const bindContainer = (el, modifiers) => {
20 | el.setAttribute(ATTR_CONTAINER, "");
21 |
22 | const isHorizontal = modifiers.horizontal;
23 | containers.set(el, {
24 | isHorizontal
25 | });
26 | };
27 |
28 | /**
29 | * Unregister an element as being a roving tabindex container
30 | * @param {HTMLElement} el - Element that should be unregistered
31 | * @returns {void}
32 | */
33 | const unbindContainer = el => {
34 | el.removeAttribute(ATTR_CONTAINER);
35 | containers.delete(el);
36 | };
37 |
38 | const RovingTabindexContainer = {
39 | beforeMount(el, { modifiers }) {
40 | bindContainer(el, modifiers);
41 | },
42 | updated(el, { modifiers }) {
43 | bindContainer(el, modifiers);
44 | },
45 | unmounted(el) {
46 | unbindContainer(el);
47 | }
48 | };
49 |
50 | export default RovingTabindexContainer;
51 |
--------------------------------------------------------------------------------
/src/constants.js:
--------------------------------------------------------------------------------
1 | export const ATTR_CONTAINER = "data-roving-tabindex-container";
2 | export const ATTR_ITEM = "data-roving-tabindex";
3 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import RovingTabindex from "./RovingTabindex";
2 | import RovingTabindexContainer from "./RovingTabindexContainer";
3 |
4 | export default {
5 | install(app) {
6 | app.directive("roving-tabindex-container", RovingTabindexContainer);
7 | app.directive("roving-tabindex", RovingTabindex);
8 | },
9 | };
10 |
11 | export { RovingTabindexContainer, RovingTabindex };
12 |
--------------------------------------------------------------------------------
/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":
6 | version "7.12.13"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
8 | integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
9 | dependencies:
10 | "@babel/highlight" "^7.12.13"
11 |
12 | "@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.12", "@babel/compat-data@^7.13.8":
13 | version "7.13.12"
14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.12.tgz#a8a5ccac19c200f9dd49624cac6e19d7be1236a1"
15 | integrity sha512-3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ==
16 |
17 | "@babel/core@^7.7.5":
18 | version "7.13.10"
19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.10.tgz#07de050bbd8193fcd8a3c27918c0890613a94559"
20 | integrity sha512-bfIYcT0BdKeAZrovpMqX2Mx5NrgAckGbwT982AkdS5GNfn3KMGiprlBAtmBcFZRUmpaufS6WZFP8trvx8ptFDw==
21 | dependencies:
22 | "@babel/code-frame" "^7.12.13"
23 | "@babel/generator" "^7.13.9"
24 | "@babel/helper-compilation-targets" "^7.13.10"
25 | "@babel/helper-module-transforms" "^7.13.0"
26 | "@babel/helpers" "^7.13.10"
27 | "@babel/parser" "^7.13.10"
28 | "@babel/template" "^7.12.13"
29 | "@babel/traverse" "^7.13.0"
30 | "@babel/types" "^7.13.0"
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 | lodash "^4.17.19"
36 | semver "^6.3.0"
37 | source-map "^0.5.0"
38 |
39 | "@babel/generator@^7.13.0", "@babel/generator@^7.13.9":
40 | version "7.13.9"
41 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39"
42 | integrity sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==
43 | dependencies:
44 | "@babel/types" "^7.13.0"
45 | jsesc "^2.5.1"
46 | source-map "^0.5.0"
47 |
48 | "@babel/helper-annotate-as-pure@^7.12.13":
49 | version "7.12.13"
50 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab"
51 | integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==
52 | dependencies:
53 | "@babel/types" "^7.12.13"
54 |
55 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13":
56 | version "7.12.13"
57 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc"
58 | integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==
59 | dependencies:
60 | "@babel/helper-explode-assignable-expression" "^7.12.13"
61 | "@babel/types" "^7.12.13"
62 |
63 | "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.13.8":
64 | version "7.13.10"
65 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz#1310a1678cb8427c07a753750da4f8ce442bdd0c"
66 | integrity sha512-/Xju7Qg1GQO4mHZ/Kcs6Au7gfafgZnwm+a7sy/ow/tV1sHeraRUHbjdat8/UvDor4Tez+siGKDk6zIKtCPKVJA==
67 | dependencies:
68 | "@babel/compat-data" "^7.13.8"
69 | "@babel/helper-validator-option" "^7.12.17"
70 | browserslist "^4.14.5"
71 | semver "^6.3.0"
72 |
73 | "@babel/helper-create-class-features-plugin@^7.13.0":
74 | version "7.13.11"
75 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz#30d30a005bca2c953f5653fc25091a492177f4f6"
76 | integrity sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw==
77 | dependencies:
78 | "@babel/helper-function-name" "^7.12.13"
79 | "@babel/helper-member-expression-to-functions" "^7.13.0"
80 | "@babel/helper-optimise-call-expression" "^7.12.13"
81 | "@babel/helper-replace-supers" "^7.13.0"
82 | "@babel/helper-split-export-declaration" "^7.12.13"
83 |
84 | "@babel/helper-create-regexp-features-plugin@^7.12.13":
85 | version "7.12.17"
86 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz#a2ac87e9e319269ac655b8d4415e94d38d663cb7"
87 | integrity sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==
88 | dependencies:
89 | "@babel/helper-annotate-as-pure" "^7.12.13"
90 | regexpu-core "^4.7.1"
91 |
92 | "@babel/helper-define-polyfill-provider@^0.1.5":
93 | version "0.1.5"
94 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz#3c2f91b7971b9fc11fe779c945c014065dea340e"
95 | integrity sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==
96 | dependencies:
97 | "@babel/helper-compilation-targets" "^7.13.0"
98 | "@babel/helper-module-imports" "^7.12.13"
99 | "@babel/helper-plugin-utils" "^7.13.0"
100 | "@babel/traverse" "^7.13.0"
101 | debug "^4.1.1"
102 | lodash.debounce "^4.0.8"
103 | resolve "^1.14.2"
104 | semver "^6.1.2"
105 |
106 | "@babel/helper-explode-assignable-expression@^7.12.13":
107 | version "7.13.0"
108 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f"
109 | integrity sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==
110 | dependencies:
111 | "@babel/types" "^7.13.0"
112 |
113 | "@babel/helper-function-name@^7.12.13":
114 | version "7.12.13"
115 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a"
116 | integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==
117 | dependencies:
118 | "@babel/helper-get-function-arity" "^7.12.13"
119 | "@babel/template" "^7.12.13"
120 | "@babel/types" "^7.12.13"
121 |
122 | "@babel/helper-get-function-arity@^7.12.13":
123 | version "7.12.13"
124 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583"
125 | integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
126 | dependencies:
127 | "@babel/types" "^7.12.13"
128 |
129 | "@babel/helper-hoist-variables@^7.13.0":
130 | version "7.13.0"
131 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz#5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8"
132 | integrity sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g==
133 | dependencies:
134 | "@babel/traverse" "^7.13.0"
135 | "@babel/types" "^7.13.0"
136 |
137 | "@babel/helper-member-expression-to-functions@^7.13.0", "@babel/helper-member-expression-to-functions@^7.13.12":
138 | version "7.13.12"
139 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72"
140 | integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==
141 | dependencies:
142 | "@babel/types" "^7.13.12"
143 |
144 | "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.13.12":
145 | version "7.13.12"
146 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
147 | integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
148 | dependencies:
149 | "@babel/types" "^7.13.12"
150 |
151 | "@babel/helper-module-transforms@^7.13.0":
152 | version "7.13.12"
153 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.12.tgz#600e58350490828d82282631a1422268e982ba96"
154 | integrity sha512-7zVQqMO3V+K4JOOj40kxiCrMf6xlQAkewBB0eu2b03OO/Q21ZutOzjpfD79A5gtE/2OWi1nv625MrDlGlkbknQ==
155 | dependencies:
156 | "@babel/helper-module-imports" "^7.13.12"
157 | "@babel/helper-replace-supers" "^7.13.12"
158 | "@babel/helper-simple-access" "^7.13.12"
159 | "@babel/helper-split-export-declaration" "^7.12.13"
160 | "@babel/helper-validator-identifier" "^7.12.11"
161 | "@babel/template" "^7.12.13"
162 | "@babel/traverse" "^7.13.0"
163 | "@babel/types" "^7.13.12"
164 |
165 | "@babel/helper-optimise-call-expression@^7.12.13":
166 | version "7.12.13"
167 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea"
168 | integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==
169 | dependencies:
170 | "@babel/types" "^7.12.13"
171 |
172 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
173 | version "7.13.0"
174 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af"
175 | integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==
176 |
177 | "@babel/helper-remap-async-to-generator@^7.13.0":
178 | version "7.13.0"
179 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209"
180 | integrity sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==
181 | dependencies:
182 | "@babel/helper-annotate-as-pure" "^7.12.13"
183 | "@babel/helper-wrap-function" "^7.13.0"
184 | "@babel/types" "^7.13.0"
185 |
186 | "@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0", "@babel/helper-replace-supers@^7.13.12":
187 | version "7.13.12"
188 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz#6442f4c1ad912502481a564a7386de0c77ff3804"
189 | integrity sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw==
190 | dependencies:
191 | "@babel/helper-member-expression-to-functions" "^7.13.12"
192 | "@babel/helper-optimise-call-expression" "^7.12.13"
193 | "@babel/traverse" "^7.13.0"
194 | "@babel/types" "^7.13.12"
195 |
196 | "@babel/helper-simple-access@^7.12.13", "@babel/helper-simple-access@^7.13.12":
197 | version "7.13.12"
198 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6"
199 | integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==
200 | dependencies:
201 | "@babel/types" "^7.13.12"
202 |
203 | "@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
204 | version "7.12.1"
205 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf"
206 | integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==
207 | dependencies:
208 | "@babel/types" "^7.12.1"
209 |
210 | "@babel/helper-split-export-declaration@^7.12.13":
211 | version "7.12.13"
212 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05"
213 | integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
214 | dependencies:
215 | "@babel/types" "^7.12.13"
216 |
217 | "@babel/helper-validator-identifier@^7.12.11":
218 | version "7.12.11"
219 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
220 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
221 |
222 | "@babel/helper-validator-option@^7.12.17":
223 | version "7.12.17"
224 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"
225 | integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==
226 |
227 | "@babel/helper-wrap-function@^7.13.0":
228 | version "7.13.0"
229 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4"
230 | integrity sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==
231 | dependencies:
232 | "@babel/helper-function-name" "^7.12.13"
233 | "@babel/template" "^7.12.13"
234 | "@babel/traverse" "^7.13.0"
235 | "@babel/types" "^7.13.0"
236 |
237 | "@babel/helpers@^7.13.10":
238 | version "7.13.10"
239 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.13.10.tgz#fd8e2ba7488533cdeac45cc158e9ebca5e3c7df8"
240 | integrity sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ==
241 | dependencies:
242 | "@babel/template" "^7.12.13"
243 | "@babel/traverse" "^7.13.0"
244 | "@babel/types" "^7.13.0"
245 |
246 | "@babel/highlight@^7.12.13":
247 | version "7.13.10"
248 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1"
249 | integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==
250 | dependencies:
251 | "@babel/helper-validator-identifier" "^7.12.11"
252 | chalk "^2.0.0"
253 | js-tokens "^4.0.0"
254 |
255 | "@babel/parser@^7.12.13", "@babel/parser@^7.13.0", "@babel/parser@^7.13.10":
256 | version "7.13.12"
257 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.12.tgz#ba320059420774394d3b0c0233ba40e4250b81d1"
258 | integrity sha512-4T7Pb244rxH24yR116LAuJ+adxXXnHhZaLJjegJVKSdoNCe4x1eDBaud5YIcQFcqzsaD5BHvJw5BQ0AZapdCRw==
259 |
260 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12":
261 | version "7.13.12"
262 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a"
263 | integrity sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==
264 | dependencies:
265 | "@babel/helper-plugin-utils" "^7.13.0"
266 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
267 | "@babel/plugin-proposal-optional-chaining" "^7.13.12"
268 |
269 | "@babel/plugin-proposal-async-generator-functions@^7.13.8":
270 | version "7.13.8"
271 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz#87aacb574b3bc4b5603f6fe41458d72a5a2ec4b1"
272 | integrity sha512-rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA==
273 | dependencies:
274 | "@babel/helper-plugin-utils" "^7.13.0"
275 | "@babel/helper-remap-async-to-generator" "^7.13.0"
276 | "@babel/plugin-syntax-async-generators" "^7.8.4"
277 |
278 | "@babel/plugin-proposal-class-properties@^7.13.0":
279 | version "7.13.0"
280 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37"
281 | integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==
282 | dependencies:
283 | "@babel/helper-create-class-features-plugin" "^7.13.0"
284 | "@babel/helper-plugin-utils" "^7.13.0"
285 |
286 | "@babel/plugin-proposal-dynamic-import@^7.13.8":
287 | version "7.13.8"
288 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz#876a1f6966e1dec332e8c9451afda3bebcdf2e1d"
289 | integrity sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ==
290 | dependencies:
291 | "@babel/helper-plugin-utils" "^7.13.0"
292 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
293 |
294 | "@babel/plugin-proposal-export-namespace-from@^7.12.13":
295 | version "7.12.13"
296 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz#393be47a4acd03fa2af6e3cde9b06e33de1b446d"
297 | integrity sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==
298 | dependencies:
299 | "@babel/helper-plugin-utils" "^7.12.13"
300 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
301 |
302 | "@babel/plugin-proposal-json-strings@^7.13.8":
303 | version "7.13.8"
304 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz#bf1fb362547075afda3634ed31571c5901afef7b"
305 | integrity sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q==
306 | dependencies:
307 | "@babel/helper-plugin-utils" "^7.13.0"
308 | "@babel/plugin-syntax-json-strings" "^7.8.3"
309 |
310 | "@babel/plugin-proposal-logical-assignment-operators@^7.13.8":
311 | version "7.13.8"
312 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz#93fa78d63857c40ce3c8c3315220fd00bfbb4e1a"
313 | integrity sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A==
314 | dependencies:
315 | "@babel/helper-plugin-utils" "^7.13.0"
316 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
317 |
318 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8":
319 | version "7.13.8"
320 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz#3730a31dafd3c10d8ccd10648ed80a2ac5472ef3"
321 | integrity sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A==
322 | dependencies:
323 | "@babel/helper-plugin-utils" "^7.13.0"
324 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
325 |
326 | "@babel/plugin-proposal-numeric-separator@^7.12.13":
327 | version "7.12.13"
328 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz#bd9da3188e787b5120b4f9d465a8261ce67ed1db"
329 | integrity sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==
330 | dependencies:
331 | "@babel/helper-plugin-utils" "^7.12.13"
332 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
333 |
334 | "@babel/plugin-proposal-object-rest-spread@^7.13.8":
335 | version "7.13.8"
336 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz#5d210a4d727d6ce3b18f9de82cc99a3964eed60a"
337 | integrity sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==
338 | dependencies:
339 | "@babel/compat-data" "^7.13.8"
340 | "@babel/helper-compilation-targets" "^7.13.8"
341 | "@babel/helper-plugin-utils" "^7.13.0"
342 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
343 | "@babel/plugin-transform-parameters" "^7.13.0"
344 |
345 | "@babel/plugin-proposal-optional-catch-binding@^7.13.8":
346 | version "7.13.8"
347 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz#3ad6bd5901506ea996fc31bdcf3ccfa2bed71107"
348 | integrity sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA==
349 | dependencies:
350 | "@babel/helper-plugin-utils" "^7.13.0"
351 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
352 |
353 | "@babel/plugin-proposal-optional-chaining@^7.13.12":
354 | version "7.13.12"
355 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz#ba9feb601d422e0adea6760c2bd6bbb7bfec4866"
356 | integrity sha512-fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ==
357 | dependencies:
358 | "@babel/helper-plugin-utils" "^7.13.0"
359 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
360 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
361 |
362 | "@babel/plugin-proposal-private-methods@^7.13.0":
363 | version "7.13.0"
364 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787"
365 | integrity sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==
366 | dependencies:
367 | "@babel/helper-create-class-features-plugin" "^7.13.0"
368 | "@babel/helper-plugin-utils" "^7.13.0"
369 |
370 | "@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
371 | version "7.12.13"
372 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba"
373 | integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==
374 | dependencies:
375 | "@babel/helper-create-regexp-features-plugin" "^7.12.13"
376 | "@babel/helper-plugin-utils" "^7.12.13"
377 |
378 | "@babel/plugin-syntax-async-generators@^7.8.4":
379 | version "7.8.4"
380 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
381 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
382 | dependencies:
383 | "@babel/helper-plugin-utils" "^7.8.0"
384 |
385 | "@babel/plugin-syntax-class-properties@^7.12.13":
386 | version "7.12.13"
387 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
388 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
389 | dependencies:
390 | "@babel/helper-plugin-utils" "^7.12.13"
391 |
392 | "@babel/plugin-syntax-dynamic-import@^7.8.3":
393 | version "7.8.3"
394 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
395 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
396 | dependencies:
397 | "@babel/helper-plugin-utils" "^7.8.0"
398 |
399 | "@babel/plugin-syntax-export-namespace-from@^7.8.3":
400 | version "7.8.3"
401 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
402 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
403 | dependencies:
404 | "@babel/helper-plugin-utils" "^7.8.3"
405 |
406 | "@babel/plugin-syntax-json-strings@^7.8.3":
407 | version "7.8.3"
408 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
409 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
410 | dependencies:
411 | "@babel/helper-plugin-utils" "^7.8.0"
412 |
413 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
414 | version "7.10.4"
415 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
416 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
417 | dependencies:
418 | "@babel/helper-plugin-utils" "^7.10.4"
419 |
420 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
421 | version "7.8.3"
422 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
423 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
424 | dependencies:
425 | "@babel/helper-plugin-utils" "^7.8.0"
426 |
427 | "@babel/plugin-syntax-numeric-separator@^7.10.4":
428 | version "7.10.4"
429 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
430 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
431 | dependencies:
432 | "@babel/helper-plugin-utils" "^7.10.4"
433 |
434 | "@babel/plugin-syntax-object-rest-spread@^7.8.3":
435 | version "7.8.3"
436 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
437 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
438 | dependencies:
439 | "@babel/helper-plugin-utils" "^7.8.0"
440 |
441 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
442 | version "7.8.3"
443 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
444 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
445 | dependencies:
446 | "@babel/helper-plugin-utils" "^7.8.0"
447 |
448 | "@babel/plugin-syntax-optional-chaining@^7.8.3":
449 | version "7.8.3"
450 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
451 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
452 | dependencies:
453 | "@babel/helper-plugin-utils" "^7.8.0"
454 |
455 | "@babel/plugin-syntax-top-level-await@^7.12.13":
456 | version "7.12.13"
457 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178"
458 | integrity sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==
459 | dependencies:
460 | "@babel/helper-plugin-utils" "^7.12.13"
461 |
462 | "@babel/plugin-transform-arrow-functions@^7.13.0":
463 | version "7.13.0"
464 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae"
465 | integrity sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==
466 | dependencies:
467 | "@babel/helper-plugin-utils" "^7.13.0"
468 |
469 | "@babel/plugin-transform-async-to-generator@^7.13.0":
470 | version "7.13.0"
471 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f"
472 | integrity sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==
473 | dependencies:
474 | "@babel/helper-module-imports" "^7.12.13"
475 | "@babel/helper-plugin-utils" "^7.13.0"
476 | "@babel/helper-remap-async-to-generator" "^7.13.0"
477 |
478 | "@babel/plugin-transform-block-scoped-functions@^7.12.13":
479 | version "7.12.13"
480 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4"
481 | integrity sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==
482 | dependencies:
483 | "@babel/helper-plugin-utils" "^7.12.13"
484 |
485 | "@babel/plugin-transform-block-scoping@^7.12.13":
486 | version "7.12.13"
487 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz#f36e55076d06f41dfd78557ea039c1b581642e61"
488 | integrity sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==
489 | dependencies:
490 | "@babel/helper-plugin-utils" "^7.12.13"
491 |
492 | "@babel/plugin-transform-classes@^7.13.0":
493 | version "7.13.0"
494 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz#0265155075c42918bf4d3a4053134176ad9b533b"
495 | integrity sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==
496 | dependencies:
497 | "@babel/helper-annotate-as-pure" "^7.12.13"
498 | "@babel/helper-function-name" "^7.12.13"
499 | "@babel/helper-optimise-call-expression" "^7.12.13"
500 | "@babel/helper-plugin-utils" "^7.13.0"
501 | "@babel/helper-replace-supers" "^7.13.0"
502 | "@babel/helper-split-export-declaration" "^7.12.13"
503 | globals "^11.1.0"
504 |
505 | "@babel/plugin-transform-computed-properties@^7.13.0":
506 | version "7.13.0"
507 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed"
508 | integrity sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==
509 | dependencies:
510 | "@babel/helper-plugin-utils" "^7.13.0"
511 |
512 | "@babel/plugin-transform-destructuring@^7.13.0":
513 | version "7.13.0"
514 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz#c5dce270014d4e1ebb1d806116694c12b7028963"
515 | integrity sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==
516 | dependencies:
517 | "@babel/helper-plugin-utils" "^7.13.0"
518 |
519 | "@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4":
520 | version "7.12.13"
521 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad"
522 | integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==
523 | dependencies:
524 | "@babel/helper-create-regexp-features-plugin" "^7.12.13"
525 | "@babel/helper-plugin-utils" "^7.12.13"
526 |
527 | "@babel/plugin-transform-duplicate-keys@^7.12.13":
528 | version "7.12.13"
529 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de"
530 | integrity sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==
531 | dependencies:
532 | "@babel/helper-plugin-utils" "^7.12.13"
533 |
534 | "@babel/plugin-transform-exponentiation-operator@^7.12.13":
535 | version "7.12.13"
536 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1"
537 | integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==
538 | dependencies:
539 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13"
540 | "@babel/helper-plugin-utils" "^7.12.13"
541 |
542 | "@babel/plugin-transform-for-of@^7.13.0":
543 | version "7.13.0"
544 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062"
545 | integrity sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==
546 | dependencies:
547 | "@babel/helper-plugin-utils" "^7.13.0"
548 |
549 | "@babel/plugin-transform-function-name@^7.12.13":
550 | version "7.12.13"
551 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051"
552 | integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==
553 | dependencies:
554 | "@babel/helper-function-name" "^7.12.13"
555 | "@babel/helper-plugin-utils" "^7.12.13"
556 |
557 | "@babel/plugin-transform-literals@^7.12.13":
558 | version "7.12.13"
559 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9"
560 | integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==
561 | dependencies:
562 | "@babel/helper-plugin-utils" "^7.12.13"
563 |
564 | "@babel/plugin-transform-member-expression-literals@^7.12.13":
565 | version "7.12.13"
566 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40"
567 | integrity sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==
568 | dependencies:
569 | "@babel/helper-plugin-utils" "^7.12.13"
570 |
571 | "@babel/plugin-transform-modules-amd@^7.13.0":
572 | version "7.13.0"
573 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz#19f511d60e3d8753cc5a6d4e775d3a5184866cc3"
574 | integrity sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ==
575 | dependencies:
576 | "@babel/helper-module-transforms" "^7.13.0"
577 | "@babel/helper-plugin-utils" "^7.13.0"
578 | babel-plugin-dynamic-import-node "^2.3.3"
579 |
580 | "@babel/plugin-transform-modules-commonjs@^7.13.8":
581 | version "7.13.8"
582 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b"
583 | integrity sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw==
584 | dependencies:
585 | "@babel/helper-module-transforms" "^7.13.0"
586 | "@babel/helper-plugin-utils" "^7.13.0"
587 | "@babel/helper-simple-access" "^7.12.13"
588 | babel-plugin-dynamic-import-node "^2.3.3"
589 |
590 | "@babel/plugin-transform-modules-systemjs@^7.13.8":
591 | version "7.13.8"
592 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3"
593 | integrity sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==
594 | dependencies:
595 | "@babel/helper-hoist-variables" "^7.13.0"
596 | "@babel/helper-module-transforms" "^7.13.0"
597 | "@babel/helper-plugin-utils" "^7.13.0"
598 | "@babel/helper-validator-identifier" "^7.12.11"
599 | babel-plugin-dynamic-import-node "^2.3.3"
600 |
601 | "@babel/plugin-transform-modules-umd@^7.13.0":
602 | version "7.13.0"
603 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz#8a3d96a97d199705b9fd021580082af81c06e70b"
604 | integrity sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw==
605 | dependencies:
606 | "@babel/helper-module-transforms" "^7.13.0"
607 | "@babel/helper-plugin-utils" "^7.13.0"
608 |
609 | "@babel/plugin-transform-named-capturing-groups-regex@^7.12.13":
610 | version "7.12.13"
611 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9"
612 | integrity sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==
613 | dependencies:
614 | "@babel/helper-create-regexp-features-plugin" "^7.12.13"
615 |
616 | "@babel/plugin-transform-new-target@^7.12.13":
617 | version "7.12.13"
618 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c"
619 | integrity sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==
620 | dependencies:
621 | "@babel/helper-plugin-utils" "^7.12.13"
622 |
623 | "@babel/plugin-transform-object-super@^7.12.13":
624 | version "7.12.13"
625 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7"
626 | integrity sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==
627 | dependencies:
628 | "@babel/helper-plugin-utils" "^7.12.13"
629 | "@babel/helper-replace-supers" "^7.12.13"
630 |
631 | "@babel/plugin-transform-parameters@^7.13.0":
632 | version "7.13.0"
633 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz#8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007"
634 | integrity sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw==
635 | dependencies:
636 | "@babel/helper-plugin-utils" "^7.13.0"
637 |
638 | "@babel/plugin-transform-property-literals@^7.12.13":
639 | version "7.12.13"
640 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81"
641 | integrity sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==
642 | dependencies:
643 | "@babel/helper-plugin-utils" "^7.12.13"
644 |
645 | "@babel/plugin-transform-regenerator@^7.12.13":
646 | version "7.12.13"
647 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz#b628bcc9c85260ac1aeb05b45bde25210194a2f5"
648 | integrity sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==
649 | dependencies:
650 | regenerator-transform "^0.14.2"
651 |
652 | "@babel/plugin-transform-reserved-words@^7.12.13":
653 | version "7.12.13"
654 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695"
655 | integrity sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==
656 | dependencies:
657 | "@babel/helper-plugin-utils" "^7.12.13"
658 |
659 | "@babel/plugin-transform-shorthand-properties@^7.12.13":
660 | version "7.12.13"
661 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad"
662 | integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==
663 | dependencies:
664 | "@babel/helper-plugin-utils" "^7.12.13"
665 |
666 | "@babel/plugin-transform-spread@^7.13.0":
667 | version "7.13.0"
668 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd"
669 | integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==
670 | dependencies:
671 | "@babel/helper-plugin-utils" "^7.13.0"
672 | "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
673 |
674 | "@babel/plugin-transform-sticky-regex@^7.12.13":
675 | version "7.12.13"
676 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f"
677 | integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==
678 | dependencies:
679 | "@babel/helper-plugin-utils" "^7.12.13"
680 |
681 | "@babel/plugin-transform-template-literals@^7.13.0":
682 | version "7.13.0"
683 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d"
684 | integrity sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==
685 | dependencies:
686 | "@babel/helper-plugin-utils" "^7.13.0"
687 |
688 | "@babel/plugin-transform-typeof-symbol@^7.12.13":
689 | version "7.12.13"
690 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f"
691 | integrity sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==
692 | dependencies:
693 | "@babel/helper-plugin-utils" "^7.12.13"
694 |
695 | "@babel/plugin-transform-unicode-escapes@^7.12.13":
696 | version "7.12.13"
697 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74"
698 | integrity sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==
699 | dependencies:
700 | "@babel/helper-plugin-utils" "^7.12.13"
701 |
702 | "@babel/plugin-transform-unicode-regex@^7.12.13":
703 | version "7.12.13"
704 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac"
705 | integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==
706 | dependencies:
707 | "@babel/helper-create-regexp-features-plugin" "^7.12.13"
708 | "@babel/helper-plugin-utils" "^7.12.13"
709 |
710 | "@babel/preset-env@^7.7.6":
711 | version "7.13.12"
712 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.13.12.tgz#6dff470478290582ac282fb77780eadf32480237"
713 | integrity sha512-JzElc6jk3Ko6zuZgBtjOd01pf9yYDEIH8BcqVuYIuOkzOwDesoa/Nz4gIo4lBG6K861KTV9TvIgmFuT6ytOaAA==
714 | dependencies:
715 | "@babel/compat-data" "^7.13.12"
716 | "@babel/helper-compilation-targets" "^7.13.10"
717 | "@babel/helper-plugin-utils" "^7.13.0"
718 | "@babel/helper-validator-option" "^7.12.17"
719 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12"
720 | "@babel/plugin-proposal-async-generator-functions" "^7.13.8"
721 | "@babel/plugin-proposal-class-properties" "^7.13.0"
722 | "@babel/plugin-proposal-dynamic-import" "^7.13.8"
723 | "@babel/plugin-proposal-export-namespace-from" "^7.12.13"
724 | "@babel/plugin-proposal-json-strings" "^7.13.8"
725 | "@babel/plugin-proposal-logical-assignment-operators" "^7.13.8"
726 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8"
727 | "@babel/plugin-proposal-numeric-separator" "^7.12.13"
728 | "@babel/plugin-proposal-object-rest-spread" "^7.13.8"
729 | "@babel/plugin-proposal-optional-catch-binding" "^7.13.8"
730 | "@babel/plugin-proposal-optional-chaining" "^7.13.12"
731 | "@babel/plugin-proposal-private-methods" "^7.13.0"
732 | "@babel/plugin-proposal-unicode-property-regex" "^7.12.13"
733 | "@babel/plugin-syntax-async-generators" "^7.8.4"
734 | "@babel/plugin-syntax-class-properties" "^7.12.13"
735 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
736 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
737 | "@babel/plugin-syntax-json-strings" "^7.8.3"
738 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
739 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
740 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
741 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
742 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
743 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
744 | "@babel/plugin-syntax-top-level-await" "^7.12.13"
745 | "@babel/plugin-transform-arrow-functions" "^7.13.0"
746 | "@babel/plugin-transform-async-to-generator" "^7.13.0"
747 | "@babel/plugin-transform-block-scoped-functions" "^7.12.13"
748 | "@babel/plugin-transform-block-scoping" "^7.12.13"
749 | "@babel/plugin-transform-classes" "^7.13.0"
750 | "@babel/plugin-transform-computed-properties" "^7.13.0"
751 | "@babel/plugin-transform-destructuring" "^7.13.0"
752 | "@babel/plugin-transform-dotall-regex" "^7.12.13"
753 | "@babel/plugin-transform-duplicate-keys" "^7.12.13"
754 | "@babel/plugin-transform-exponentiation-operator" "^7.12.13"
755 | "@babel/plugin-transform-for-of" "^7.13.0"
756 | "@babel/plugin-transform-function-name" "^7.12.13"
757 | "@babel/plugin-transform-literals" "^7.12.13"
758 | "@babel/plugin-transform-member-expression-literals" "^7.12.13"
759 | "@babel/plugin-transform-modules-amd" "^7.13.0"
760 | "@babel/plugin-transform-modules-commonjs" "^7.13.8"
761 | "@babel/plugin-transform-modules-systemjs" "^7.13.8"
762 | "@babel/plugin-transform-modules-umd" "^7.13.0"
763 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13"
764 | "@babel/plugin-transform-new-target" "^7.12.13"
765 | "@babel/plugin-transform-object-super" "^7.12.13"
766 | "@babel/plugin-transform-parameters" "^7.13.0"
767 | "@babel/plugin-transform-property-literals" "^7.12.13"
768 | "@babel/plugin-transform-regenerator" "^7.12.13"
769 | "@babel/plugin-transform-reserved-words" "^7.12.13"
770 | "@babel/plugin-transform-shorthand-properties" "^7.12.13"
771 | "@babel/plugin-transform-spread" "^7.13.0"
772 | "@babel/plugin-transform-sticky-regex" "^7.12.13"
773 | "@babel/plugin-transform-template-literals" "^7.13.0"
774 | "@babel/plugin-transform-typeof-symbol" "^7.12.13"
775 | "@babel/plugin-transform-unicode-escapes" "^7.12.13"
776 | "@babel/plugin-transform-unicode-regex" "^7.12.13"
777 | "@babel/preset-modules" "^0.1.4"
778 | "@babel/types" "^7.13.12"
779 | babel-plugin-polyfill-corejs2 "^0.1.4"
780 | babel-plugin-polyfill-corejs3 "^0.1.3"
781 | babel-plugin-polyfill-regenerator "^0.1.2"
782 | core-js-compat "^3.9.0"
783 | semver "^6.3.0"
784 |
785 | "@babel/preset-modules@^0.1.4":
786 | version "0.1.4"
787 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
788 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
789 | dependencies:
790 | "@babel/helper-plugin-utils" "^7.0.0"
791 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
792 | "@babel/plugin-transform-dotall-regex" "^7.4.4"
793 | "@babel/types" "^7.4.4"
794 | esutils "^2.0.2"
795 |
796 | "@babel/runtime@^7.8.4":
797 | version "7.13.10"
798 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d"
799 | integrity sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==
800 | dependencies:
801 | regenerator-runtime "^0.13.4"
802 |
803 | "@babel/template@^7.12.13":
804 | version "7.12.13"
805 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
806 | integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
807 | dependencies:
808 | "@babel/code-frame" "^7.12.13"
809 | "@babel/parser" "^7.12.13"
810 | "@babel/types" "^7.12.13"
811 |
812 | "@babel/traverse@^7.13.0":
813 | version "7.13.0"
814 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.13.0.tgz#6d95752475f86ee7ded06536de309a65fc8966cc"
815 | integrity sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ==
816 | dependencies:
817 | "@babel/code-frame" "^7.12.13"
818 | "@babel/generator" "^7.13.0"
819 | "@babel/helper-function-name" "^7.12.13"
820 | "@babel/helper-split-export-declaration" "^7.12.13"
821 | "@babel/parser" "^7.13.0"
822 | "@babel/types" "^7.13.0"
823 | debug "^4.1.0"
824 | globals "^11.1.0"
825 | lodash "^4.17.19"
826 |
827 | "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.4.4":
828 | version "7.13.12"
829 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.13.12.tgz#edbf99208ef48852acdff1c8a681a1e4ade580cd"
830 | integrity sha512-K4nY2xFN4QMvQwkQ+zmBDp6ANMbVNw6BbxWmYA4qNjhR9W+Lj/8ky5MEY2Me5r+B2c6/v6F53oMndG+f9s3IiA==
831 | dependencies:
832 | "@babel/helper-validator-identifier" "^7.12.11"
833 | lodash "^4.17.19"
834 | to-fast-properties "^2.0.0"
835 |
836 | "@brightcove/kacl@^0.1.8":
837 | version "0.1.11"
838 | resolved "https://registry.yarnpkg.com/@brightcove/kacl/-/kacl-0.1.11.tgz#c924a59a98f7d08ba294098f43d22606c341a9ca"
839 | integrity sha512-1KdQpJKb6GhU5V6uAlmCIUvgVNcxyU8Wswzt2Gbe4O4sjnxCGWxNhDtbmkdvqyM0Qr+b5cvlw/Ophc9zzVl76w==
840 | dependencies:
841 | chalk "^2.4.1"
842 | keep-a-changelog "^0.10.0"
843 |
844 | "@types/estree@*":
845 | version "0.0.46"
846 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.46.tgz#0fb6bfbbeabd7a30880504993369c4bf1deab1fe"
847 | integrity sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg==
848 |
849 | "@types/node@*":
850 | version "14.14.35"
851 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.35.tgz#42c953a4e2b18ab931f72477e7012172f4ffa313"
852 | integrity sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag==
853 |
854 | acorn@^7.1.0:
855 | version "7.4.1"
856 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
857 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
858 |
859 | ansi-styles@^3.2.1:
860 | version "3.2.1"
861 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
862 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
863 | dependencies:
864 | color-convert "^1.9.0"
865 |
866 | babel-plugin-dynamic-import-node@^2.3.3:
867 | version "2.3.3"
868 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
869 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
870 | dependencies:
871 | object.assign "^4.1.0"
872 |
873 | babel-plugin-polyfill-corejs2@^0.1.4:
874 | version "0.1.10"
875 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz#a2c5c245f56c0cac3dbddbf0726a46b24f0f81d1"
876 | integrity sha512-DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA==
877 | dependencies:
878 | "@babel/compat-data" "^7.13.0"
879 | "@babel/helper-define-polyfill-provider" "^0.1.5"
880 | semver "^6.1.1"
881 |
882 | babel-plugin-polyfill-corejs3@^0.1.3:
883 | version "0.1.7"
884 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz#80449d9d6f2274912e05d9e182b54816904befd0"
885 | integrity sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==
886 | dependencies:
887 | "@babel/helper-define-polyfill-provider" "^0.1.5"
888 | core-js-compat "^3.8.1"
889 |
890 | babel-plugin-polyfill-regenerator@^0.1.2:
891 | version "0.1.6"
892 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz#0fe06a026fe0faa628ccc8ba3302da0a6ce02f3f"
893 | integrity sha512-OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg==
894 | dependencies:
895 | "@babel/helper-define-polyfill-provider" "^0.1.5"
896 |
897 | browserslist@^4.14.5, browserslist@^4.16.3:
898 | version "4.16.3"
899 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717"
900 | integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==
901 | dependencies:
902 | caniuse-lite "^1.0.30001181"
903 | colorette "^1.2.1"
904 | electron-to-chromium "^1.3.649"
905 | escalade "^3.1.1"
906 | node-releases "^1.1.70"
907 |
908 | call-bind@^1.0.0:
909 | version "1.0.2"
910 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
911 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
912 | dependencies:
913 | function-bind "^1.1.1"
914 | get-intrinsic "^1.0.2"
915 |
916 | camelcase@^5.0.0:
917 | version "5.3.1"
918 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
919 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
920 |
921 | caniuse-lite@^1.0.30001181:
922 | version "1.0.30001204"
923 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001204.tgz#256c85709a348ec4d175e847a3b515c66e79f2aa"
924 | integrity sha512-JUdjWpcxfJ9IPamy2f5JaRDCaqJOxDzOSKtbdx4rH9VivMd1vIzoPumsJa9LoMIi4Fx2BV2KZOxWhNkBjaYivQ==
925 |
926 | chalk@^2.0.0, chalk@^2.4.1:
927 | version "2.4.2"
928 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
929 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
930 | dependencies:
931 | ansi-styles "^3.2.1"
932 | escape-string-regexp "^1.0.5"
933 | supports-color "^5.3.0"
934 |
935 | color-convert@^1.9.0:
936 | version "1.9.3"
937 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
938 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
939 | dependencies:
940 | color-name "1.1.3"
941 |
942 | color-name@1.1.3:
943 | version "1.1.3"
944 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
945 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
946 |
947 | colorette@^1.2.1:
948 | version "1.2.2"
949 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
950 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
951 |
952 | convert-source-map@^1.7.0:
953 | version "1.7.0"
954 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
955 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
956 | dependencies:
957 | safe-buffer "~5.1.1"
958 |
959 | core-js-compat@^3.8.1, core-js-compat@^3.9.0:
960 | version "3.9.1"
961 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.9.1.tgz#4e572acfe90aff69d76d8c37759d21a5c59bb455"
962 | integrity sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA==
963 | dependencies:
964 | browserslist "^4.16.3"
965 | semver "7.0.0"
966 |
967 | debug@^4.1.0, debug@^4.1.1:
968 | version "4.3.1"
969 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
970 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
971 | dependencies:
972 | ms "2.1.2"
973 |
974 | decamelize@^1.2.0:
975 | version "1.2.0"
976 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
977 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
978 |
979 | define-properties@^1.1.3:
980 | version "1.1.3"
981 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
982 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
983 | dependencies:
984 | object-keys "^1.0.12"
985 |
986 | electron-to-chromium@^1.3.649:
987 | version "1.3.698"
988 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.698.tgz#5de813960f23581a268718a0058683dffa15d221"
989 | integrity sha512-VEXDzYblnlT+g8Q3gedwzgKOso1evkeJzV8lih7lV8mL8eAnGVnKyC3KsFT6S+R5PQO4ffdr1PI16/ElibY/kQ==
990 |
991 | escalade@^3.1.1:
992 | version "3.1.1"
993 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
994 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
995 |
996 | escape-string-regexp@^1.0.5:
997 | version "1.0.5"
998 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
999 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1000 |
1001 | estree-walker@^0.6.1:
1002 | version "0.6.1"
1003 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
1004 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
1005 |
1006 | esutils@^2.0.2:
1007 | version "2.0.3"
1008 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1009 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1010 |
1011 | function-bind@^1.1.1:
1012 | version "1.1.1"
1013 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1014 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1015 |
1016 | gensync@^1.0.0-beta.2:
1017 | version "1.0.0-beta.2"
1018 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
1019 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1020 |
1021 | get-intrinsic@^1.0.2:
1022 | version "1.1.1"
1023 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
1024 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
1025 | dependencies:
1026 | function-bind "^1.1.1"
1027 | has "^1.0.3"
1028 | has-symbols "^1.0.1"
1029 |
1030 | gitconfiglocal@^2.1.0:
1031 | version "2.1.0"
1032 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-2.1.0.tgz#07c28685c55cc5338b27b5acbcfe34aeb92e43d1"
1033 | integrity sha512-qoerOEliJn3z+Zyn1HW2F6eoYJqKwS6MgC9cztTLUB/xLWX8gD/6T60pKn4+t/d6tP7JlybI7Z3z+I572CR/Vg==
1034 | dependencies:
1035 | ini "^1.3.2"
1036 |
1037 | globals@^11.1.0:
1038 | version "11.12.0"
1039 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1040 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1041 |
1042 | has-flag@^3.0.0:
1043 | version "3.0.0"
1044 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1045 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1046 |
1047 | has-symbols@^1.0.1:
1048 | version "1.0.2"
1049 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
1050 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
1051 |
1052 | has@^1.0.3:
1053 | version "1.0.3"
1054 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1055 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1056 | dependencies:
1057 | function-bind "^1.1.1"
1058 |
1059 | ini@^1.3.2:
1060 | version "1.3.8"
1061 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
1062 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
1063 |
1064 | is-core-module@^2.2.0:
1065 | version "2.2.0"
1066 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a"
1067 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==
1068 | dependencies:
1069 | has "^1.0.3"
1070 |
1071 | js-tokens@^4.0.0:
1072 | version "4.0.0"
1073 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1074 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1075 |
1076 | jsesc@^2.5.1:
1077 | version "2.5.2"
1078 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
1079 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
1080 |
1081 | jsesc@~0.5.0:
1082 | version "0.5.0"
1083 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1084 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
1085 |
1086 | json5@^2.1.2:
1087 | version "2.2.0"
1088 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
1089 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
1090 | dependencies:
1091 | minimist "^1.2.5"
1092 |
1093 | keep-a-changelog@^0.10.0:
1094 | version "0.10.4"
1095 | resolved "https://registry.yarnpkg.com/keep-a-changelog/-/keep-a-changelog-0.10.4.tgz#fd2af71e7beccba26a8cf3857c7c47e524ade1cb"
1096 | integrity sha512-egtoaVyuQD5xFfZ/q3prVZM0TF8YYHcuWxbLg6jlPNu/PVkJba2Bvl6QukY+InoN6uXElbopE/gCLS3hNunhLg==
1097 | dependencies:
1098 | gitconfiglocal "^2.1.0"
1099 | semver "^7.3.2"
1100 | yargs-parser "^18.1.3"
1101 |
1102 | lodash.debounce@^4.0.8:
1103 | version "4.0.8"
1104 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
1105 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
1106 |
1107 | lodash@^4.17.19:
1108 | version "4.17.21"
1109 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
1110 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
1111 |
1112 | lru-cache@^6.0.0:
1113 | version "6.0.0"
1114 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1115 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1116 | dependencies:
1117 | yallist "^4.0.0"
1118 |
1119 | minimist@^1.2.5:
1120 | version "1.2.5"
1121 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
1122 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
1123 |
1124 | ms@2.1.2:
1125 | version "2.1.2"
1126 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1127 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1128 |
1129 | node-releases@^1.1.70:
1130 | version "1.1.71"
1131 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb"
1132 | integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==
1133 |
1134 | object-keys@^1.0.12, object-keys@^1.1.1:
1135 | version "1.1.1"
1136 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1137 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1138 |
1139 | object.assign@^4.1.0:
1140 | version "4.1.2"
1141 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1142 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1143 | dependencies:
1144 | call-bind "^1.0.0"
1145 | define-properties "^1.1.3"
1146 | has-symbols "^1.0.1"
1147 | object-keys "^1.1.1"
1148 |
1149 | path-parse@^1.0.6:
1150 | version "1.0.6"
1151 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
1152 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
1153 |
1154 | prettier@^1.19.1:
1155 | version "1.19.1"
1156 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
1157 | integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
1158 |
1159 | regenerate-unicode-properties@^8.2.0:
1160 | version "8.2.0"
1161 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
1162 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
1163 | dependencies:
1164 | regenerate "^1.4.0"
1165 |
1166 | regenerate@^1.4.0:
1167 | version "1.4.2"
1168 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
1169 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
1170 |
1171 | regenerator-runtime@^0.13.4:
1172 | version "0.13.7"
1173 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
1174 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
1175 |
1176 | regenerator-transform@^0.14.2:
1177 | version "0.14.5"
1178 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
1179 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
1180 | dependencies:
1181 | "@babel/runtime" "^7.8.4"
1182 |
1183 | regexpu-core@^4.7.1:
1184 | version "4.7.1"
1185 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6"
1186 | integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==
1187 | dependencies:
1188 | regenerate "^1.4.0"
1189 | regenerate-unicode-properties "^8.2.0"
1190 | regjsgen "^0.5.1"
1191 | regjsparser "^0.6.4"
1192 | unicode-match-property-ecmascript "^1.0.4"
1193 | unicode-match-property-value-ecmascript "^1.2.0"
1194 |
1195 | regjsgen@^0.5.1:
1196 | version "0.5.2"
1197 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
1198 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
1199 |
1200 | regjsparser@^0.6.4:
1201 | version "0.6.9"
1202 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
1203 | integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
1204 | dependencies:
1205 | jsesc "~0.5.0"
1206 |
1207 | resolve@^1.14.2:
1208 | version "1.20.0"
1209 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
1210 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
1211 | dependencies:
1212 | is-core-module "^2.2.0"
1213 | path-parse "^1.0.6"
1214 |
1215 | rollup-plugin-babel@^4.3.3:
1216 | version "4.4.0"
1217 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz#d15bd259466a9d1accbdb2fe2fff17c52d030acb"
1218 | integrity sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==
1219 | dependencies:
1220 | "@babel/helper-module-imports" "^7.0.0"
1221 | rollup-pluginutils "^2.8.1"
1222 |
1223 | rollup-pluginutils@^2.8.1:
1224 | version "2.8.2"
1225 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e"
1226 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
1227 | dependencies:
1228 | estree-walker "^0.6.1"
1229 |
1230 | rollup@^1.27.12:
1231 | version "1.32.1"
1232 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.32.1.tgz#4480e52d9d9e2ae4b46ba0d9ddeaf3163940f9c4"
1233 | integrity sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==
1234 | dependencies:
1235 | "@types/estree" "*"
1236 | "@types/node" "*"
1237 | acorn "^7.1.0"
1238 |
1239 | safe-buffer@~5.1.1:
1240 | version "5.1.2"
1241 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1242 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
1243 |
1244 | semver@7.0.0:
1245 | version "7.0.0"
1246 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
1247 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
1248 |
1249 | semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
1250 | version "6.3.0"
1251 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
1252 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
1253 |
1254 | semver@^7.3.2:
1255 | version "7.3.5"
1256 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
1257 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
1258 | dependencies:
1259 | lru-cache "^6.0.0"
1260 |
1261 | source-map@^0.5.0:
1262 | version "0.5.7"
1263 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1264 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
1265 |
1266 | supports-color@^5.3.0:
1267 | version "5.5.0"
1268 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1269 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1270 | dependencies:
1271 | has-flag "^3.0.0"
1272 |
1273 | to-fast-properties@^2.0.0:
1274 | version "2.0.0"
1275 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
1276 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
1277 |
1278 | unicode-canonical-property-names-ecmascript@^1.0.4:
1279 | version "1.0.4"
1280 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
1281 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
1282 |
1283 | unicode-match-property-ecmascript@^1.0.4:
1284 | version "1.0.4"
1285 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
1286 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
1287 | dependencies:
1288 | unicode-canonical-property-names-ecmascript "^1.0.4"
1289 | unicode-property-aliases-ecmascript "^1.0.4"
1290 |
1291 | unicode-match-property-value-ecmascript@^1.2.0:
1292 | version "1.2.0"
1293 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
1294 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
1295 |
1296 | unicode-property-aliases-ecmascript@^1.0.4:
1297 | version "1.1.0"
1298 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
1299 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
1300 |
1301 | yallist@^4.0.0:
1302 | version "4.0.0"
1303 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
1304 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
1305 |
1306 | yargs-parser@^18.1.3:
1307 | version "18.1.3"
1308 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
1309 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
1310 | dependencies:
1311 | camelcase "^5.0.0"
1312 | decamelize "^1.2.0"
1313 |
--------------------------------------------------------------------------------