├── CHANGELOG.md
├── .gitignore
├── babel.config.js
├── rollup.config.js
├── tsconfig.json
├── package.json
├── LICENSE
├── docs
├── Development.md
└── API.md
├── CONTRIBUTING.md
├── README.md
├── test
└── SyncPromise.spec.ts
├── src
└── SyncPromise.ts
└── yarn.lock
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | ## 1.0.0
2 |
3 | * Initial release
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea/
2 | lib/
3 | node_modules/
4 | sync-promise-js.iml
5 |
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | ['@babel/preset-env', {targets: {node: 'current'}}],
4 | '@babel/preset-typescript',
5 | ],
6 | };
7 |
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import typescript from '@rollup/plugin-typescript';
2 |
3 | export default {
4 | input: 'src/SyncPromise.ts',
5 | output: {
6 | format: 'cjs',
7 | dir: 'lib',
8 | exports: 'default',
9 | sourcemap: true,
10 | strict: true
11 | },
12 | external: ['process'],
13 | plugins: [
14 | typescript()
15 | ]
16 | };
17 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "include": [
3 | "src/**/*.ts"
4 | ],
5 | "exclude": [
6 | "node_modules"
7 | ],
8 | "compilerOptions": {
9 | "baseUrl": ".",
10 | "module": "ES2020",
11 | "moduleResolution": "Node",
12 | "outDir": "lib/",
13 | "declaration": true,
14 | "allowJs": true,
15 | "lib": ["ES2017", "DOM"],
16 | "target": "ES2015",
17 | "resolveJsonModule": true,
18 | "isolatedModules": true,
19 | "allowSyntheticDefaultImports": true,
20 | "skipLibCheck": true,
21 | "strictBindCallApply": true,
22 | "strictFunctionTypes": true,
23 | "strictNullChecks": true
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "sync-promise-js",
3 | "version": "1.0.0",
4 | "main": "lib/SyncPromise.js",
5 | "types": "lib/SyncPromise.d.ts",
6 | "keywords": [
7 | "wolfram",
8 | "promise",
9 | "sync",
10 | "synchronous"
11 | ],
12 | "license": "MIT",
13 | "files": [
14 | "lib/",
15 | "README.md"
16 | ],
17 | "scripts": {
18 | "prepublishOnly": "rollup -c",
19 | "test": "jest",
20 | "build": "rollup -c"
21 | },
22 | "devDependencies": {
23 | "@babel/core": "^7.15.5",
24 | "@babel/preset-env": "^7.15.6",
25 | "@babel/preset-typescript": "^7.15.0",
26 | "@rollup/plugin-typescript": "^8.2.5",
27 | "@types/jest": "^27.0.2",
28 | "@types/node": "^16.10.2",
29 | "jest": "^27.2.4",
30 | "rollup": "^2.58.0",
31 | "tslib": "^2.3.1",
32 | "typescript": "^4.4.3"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright 2021 Wolfram Research Inc.
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of
4 | this software and associated documentation files (the "Software"), to deal in
5 | the Software without restriction, including without limitation the rights to
6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
7 | the Software, and to permit persons to whom the Software is furnished to do so,
8 | subject to the following conditions:
9 |
10 | The above copyright notice and this permission notice shall be included in all
11 | copies or substantial portions of the Software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
15 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
16 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 |
--------------------------------------------------------------------------------
/docs/Development.md:
--------------------------------------------------------------------------------
1 | # Development
2 |
3 | Please read the [Contributing Agreement](../CONTRIBUTING.md) first. By contributing to this repository, you agree to the licensing terms herein.
4 |
5 | To install all required dependencies for development of this library, run:
6 |
7 | yarn install
8 |
9 | ## Test
10 |
11 | To run the tests:
12 |
13 | yarn test
14 |
15 | ## Releasing a new version
16 |
17 | To release a new version, log in to npm using
18 |
19 | yarn login
20 |
21 | as an owner of this package.
22 |
23 | Check out the `master` branch and make sure there are no uncommitted changes:
24 |
25 | git checkout master
26 |
27 | Then run
28 |
29 | yarn publish
30 |
31 | which asks for the new package version, updates `package.json` accordingly, runs a build, creates a Git tag, and publishes the package.
32 |
33 | If publishing fails due to missing authentication even though you have run `yarn login`, you might have to delete `~/.npmrc` and log in again (see [this Yarn issue](https://github.com/yarnpkg/yarn/issues/4709)).
34 |
35 | If [two-factor authentication](https://docs.npmjs.com/configuring-two-factor-authentication) is enabled for your account, you will be asked for a one-time password during the publishing process.
36 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing to Wolfram®
2 |
3 | Thank you for taking the time to contribute to the [Wolfram Research](https://github.com/wolframresearch) repos on GitHub.
4 |
5 | ## Licensing of Contributions
6 |
7 | By contributing to Wolfram, you agree and affirm that:
8 |
9 | > Wolfram may release your contribution under the terms of the [MIT license](https://opensource.org/licenses/MIT); and
10 |
11 | > You have read and agreed to the [Developer Certificate of Origin](http://developercertificate.org/), version 1.1 or later.
12 |
13 | Please see [LICENSE](LICENSE) for licensing conditions pertaining
14 | to individual repositories.
15 |
16 |
17 | ## Bug reports
18 |
19 | ### Security Bugs
20 |
21 | Please **DO NOT** file a public issue regarding a security issue.
22 | Rather, send your report privately to security@wolfram.com. Security
23 | reports are appreciated and we will credit you for it. We do not offer
24 | a security bounty, but the forecast in your neighborhood will be cloudy
25 | with a chance of Wolfram schwag!
26 |
27 | ### General Bugs
28 |
29 | Please use the repository issues page to submit general bug issues.
30 |
31 | Please do not duplicate issues.
32 |
33 | Please do send a complete and well-written report to us. Note: **the
34 | thoroughness of your report will positively correlate to our willingness
35 | and ability to address it**.
36 |
37 | When reporting issues, always include:
38 |
39 | * Your version of *Mathematica*® or the Wolfram Language™.
40 | * Your version of the Wolfram Cloud™.
41 | * Your operating system.
42 | * Your web browser, including version number.
43 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # sync-promise-js
2 |
3 | An efficient, complete promise implementation with synchronous promise resolution.
4 |
5 | SyncPromise is compliant with the Promise/A+ spec, *except* [part 2.2.4](https://promisesaplus.com/#point-34).
6 |
7 | ## Why
8 |
9 | Why synchronous promise resolution can be useful:
10 |
11 | * Some APIs such as various clipboard operations in browsers still expect synchronous handling.
12 | * Synchronous operations can be faster than operations that require a new execution context.
13 |
14 | There exist some similar libraries, but they don't offer the same, complete promise API as this library:
15 |
16 | * [sync-promise](https://www.npmjs.com/package/sync-promise)
17 | * [synchronous-promise](https://www.npmjs.com/package/synchronous-promise)
18 | * [syncpromise](https://www.npmjs.com/package/syncpromise)
19 |
20 | ## Installation
21 |
22 | Assuming you are using a package manager such as [npm](https://www.npmjs.com/get-npm) or [Yarn](https://yarnpkg.com/en/), just install this package from the npm repository:
23 |
24 | npm install sync-promise-js
25 |
26 | Then you can import `SyncPromise` in your JavaScript code:
27 |
28 | import SyncPromise from 'sync-promise-js';
29 |
30 | ## Example
31 |
32 | SyncPromise.race([
33 | SyncPromise.resolve('sync'),
34 | SyncPromise.delay(100).then(() => 'async')
35 | ]).then(result => {
36 | console.log(result);
37 | // will print 'sync' synchronously
38 | });
39 |
40 | ## Usage & Documentation
41 |
42 | See the **[SyncPromise API documentation](docs/API.md)**.
43 |
44 | ## Contributing
45 |
46 | Everyone is welcome to contribute. Please read the [Contributing agreement](CONTRIBUTING.md) and the [Development guide](./docs/Development.md) for more information, including how to run the tests.
47 |
48 | ## Versioning
49 |
50 | We use [semantic versioning](https://semver.org/) for this library and its API.
51 |
52 | See the [changelog](CHANGELOG.md) for details about the changes in each release.
53 |
--------------------------------------------------------------------------------
/docs/API.md:
--------------------------------------------------------------------------------
1 | # SyncPromise API
2 |
3 | ## Constructor
4 |
5 | ### new SyncPromise(executor)
6 |
7 | Constructs a new promise based on the given executor function.
8 |
9 | The executor receives two arguments, `resolve` and `reject`. One of them should eventually be called (synchronously or asynchronously) to settle the promise.
10 |
11 | #### Example
12 |
13 | new SyncPromise((resolve, reject) => {
14 | if (2 > 1) {
15 | resolve('correct');
16 | } else {
17 | reject(new Error('incorrect'));
18 | }
19 | });
20 |
21 | ## Static methods
22 |
23 | ### SyncPromise.resolve(result)
24 |
25 | Constructs a new (resolved) promise based on the given ("static") result.
26 |
27 | #### Example
28 |
29 | SyncPromise.resolve(42).then(result => {
30 | console.log(result);
31 | // will print 42 (synchronously)
32 | });
33 |
34 | ### SyncPromise.reject(exception)
35 |
36 | Constructs a new (rejected) promise based on the given exception.
37 |
38 | #### Example
39 |
40 | SyncPromise.reject(new Error('error')).catch(exc => {
41 | console.error(exc);
42 | });
43 |
44 | ### SyncPromise.method(func)
45 |
46 | Constructs a new promise based on the given callback function.
47 |
48 | If the function throws an exception (whether that happens synchronously or asynchronously), the returned promise is rejected.
49 |
50 | ### SyncPromise.all(array)
51 |
52 | Returns a promise that resolves when all the promises in the given array are resolved.
53 |
54 | If any of the given promises is rejected, the returned promise is rejected with the same exception.
55 |
56 | Non-promise array values are treated like resolved promises.
57 |
58 | ### SyncPromise.race(array)
59 |
60 | Returns a promise the is settled as soon as the first promise in the given array is settled.
61 |
62 | The returned promise can be either fulfilled or rejected, depending on the outcome of the first settled promise.
63 |
64 | Non-promise array values are treated like resolved promises.
65 |
66 | ### SyncPromise.reduce(array, reducer, initialValue)
67 |
68 | Applies a reducer to an array of promises, receiving and returning an accumulated value.
69 |
70 | Promises are waited to resolve before applying the reducer. The reducer might return a promise, which is also waited for before continuing.
71 |
72 | Non-promise array values are treated like resolved promises.
73 |
74 | ### SyncPromise.waterfall(array, func)
75 |
76 | Applies a function to each value of an array, waiting for promises to resolve at each step.
77 |
78 | This is similar to `SyncPromise.reduce`, but does not maintain an accumulated value.
79 |
80 | ### SyncPromise.delay(ms)
81 |
82 | Returns a promise that waits for a given number of milliseconds and then resolves to `undefined`.
83 |
84 | ### SyncPromise.defer()
85 |
86 | Returns a promise that asynchronously resolves to `undefined`.
87 |
88 | ## Instance methods
89 |
90 | ### SyncPromise#then(onFulfilled, onRejected)
91 |
92 | Executes either `onFulfilled` or `onRejected` when this promise is fulfilled or rejected, respectively.
93 |
94 | This method is "chainable": It returns another promise that resolves depending on the return value of the called handler function (which can also be another promise).
95 |
96 | ### SyncPromise#catch(onRejected)
97 |
98 | Executes the callback function if/when this promise is rejected.
99 |
100 | Like `SyncPromise#then`, this method is chainable.
101 |
102 | ### SyncPromise#finally(func)
103 |
104 | Executes the given function when this promise is settled (fulfilled or rejected), and then resolves with the original result or error.
105 |
106 | ### SyncPromise#isPending()
107 |
108 | Returns whether the promise is currently pending, i.e. it has not been fulfilled or rejected yet.
109 |
110 | ### SyncPromise#isSettled()
111 |
112 | Returns whether this promise is already settled, i.e. it has been fulfilled or rejected.
113 |
114 | ### SyncPromise#isFulfilled()
115 |
116 | Returns whether this promise is fulfilled.
117 |
118 | ### SyncPromise#isRejected()
119 |
120 | Returns whether this promise has been rejected.
121 |
122 | ### SyncPromise#async
123 |
124 | Returns a promise with the same resolution (fulfilled or rejected) as this promise, but is guaranteed to resolve asynchronously.
125 |
126 | ### SyncPromise#getValueSync
127 |
128 | Synchronously retrieves the fulfilled value of this promise, or `undefined` if this promise has not been fulfilled (yet).
129 |
130 | ### SyncPromise#getExceptionSync
131 |
132 | Synchronously retrieves the rejection value (exception) of this promise, or `undefined` if this promise has not been rejected (yet).
133 |
--------------------------------------------------------------------------------
/test/SyncPromise.spec.ts:
--------------------------------------------------------------------------------
1 | import SyncPromise from '../src/SyncPromise';
2 |
3 | describe('SyncPromise', () => {
4 | function setTimeout(func, delay) {
5 | SyncPromise.defer().then(func);
6 | return 1;
7 | }
8 |
9 | it('resolves synchronously when possible (1)', done => {
10 | const f = new SyncPromise(resolve => {
11 | resolve(42);
12 | });
13 | const handler = jest.fn();
14 | f.then(handler);
15 | expect(handler).toHaveBeenCalledWith(42);
16 | f.then(value => {
17 | expect(value).toBe(42);
18 | done();
19 | });
20 | });
21 | it('resolves synchronously when possible (2)', done => {
22 | let sameExecutionFrame = true;
23 | SyncPromise.resolve(1).then(() => {
24 | expect(sameExecutionFrame).toBe(true);
25 | done();
26 | });
27 | sameExecutionFrame = false;
28 | });
29 | it('does not settle a non-pending promise in the case of an uncaught rejection', () => {
30 | const promise = SyncPromise.reject(1).then(() => {});
31 | expect(promise._fulfilledNonPending).not.toBeDefined();
32 | expect(promise._rejectedNonPending).not.toBeDefined();
33 | // Catch the error eventually to avoid the exception being re-thrown.
34 | promise.catch(() => {});
35 | });
36 | describe('.async', () => {
37 | it('forces asynchronous resolution', done => {
38 | let sameContext = true;
39 | SyncPromise.resolve(1)
40 | .async()
41 | .then(() => {
42 | expect(sameContext).toBe(false);
43 | done();
44 | });
45 | sameContext = false;
46 | });
47 | });
48 | it('supports synchronous inspection of its state', () => {
49 | const fulfilled = SyncPromise.resolve(1);
50 | expect(fulfilled.isSettled()).toBe(true);
51 | expect(fulfilled.isPending()).toBe(false);
52 | expect(fulfilled.isFulfilled()).toBe(true);
53 | expect(fulfilled.isRejected()).toBe(false);
54 | const rejected = SyncPromise.reject(1);
55 | expect(rejected.isSettled()).toBe(true);
56 | expect(rejected.isPending()).toBe(false);
57 | expect(rejected.isFulfilled()).toBe(false);
58 | expect(rejected.isRejected()).toBe(true);
59 | rejected.catch(() => {}); // ignore the error
60 | });
61 | it('can resolve asynchronously', done => {
62 | const f = new SyncPromise(resolve => {
63 | setTimeout(() => {
64 | resolve(42);
65 | }, 10);
66 | });
67 | f.then(value => {
68 | expect(value).toBe(42);
69 | done();
70 | });
71 | });
72 | describe('.resolve', () => {
73 | it('resolves a plain value to the value', done => {
74 | SyncPromise.resolve(1).then(value => {
75 | expect(value).toBe(1);
76 | done();
77 | });
78 | });
79 | it('resolves another SyncPromise to its value', done => {
80 | SyncPromise.resolve(SyncPromise.resolve(2)).then(value => {
81 | expect(value).toBe(2);
82 | done();
83 | });
84 | });
85 | it('rejects if a given SyncPromise rejects synchronously', done => {
86 | SyncPromise.resolve(SyncPromise.reject('error')).catch(error => {
87 | expect(error).toEqual('error');
88 | done();
89 | });
90 | });
91 | it('rejects if a given SyncPromise rejects asynchronously', done => {
92 | SyncPromise.resolve(
93 | new SyncPromise((resolve, reject) => {
94 | setTimeout(() => {
95 | reject('error');
96 | }, 1);
97 | })
98 | ).catch(error => {
99 | expect(error).toEqual('error');
100 | done();
101 | });
102 | });
103 | it('resolves any other thenable to its value', done => {
104 | SyncPromise.resolve(Promise.resolve(3)).then(value => {
105 | expect(value).toBe(3);
106 | done();
107 | });
108 | });
109 | });
110 | describe('.method', () => {
111 | it('returns a rejected SyncPromise if a function throws synchronously', () => {
112 | return SyncPromise.method(() => {
113 | throw new Error('error');
114 | }).catch(error => {
115 | expect(error).toMatchObject({
116 | message: 'error'
117 | });
118 | });
119 | });
120 | it('returns the result as a SyncPromise if a function returns synchronously', done => {
121 | SyncPromise.method(() => 1)
122 | .then(result => {
123 | expect(result).toBe(1);
124 | })
125 | .then(done);
126 | });
127 | it('returns the result as a SyncPromise if a function returns a promise', done => {
128 | SyncPromise.method(() => SyncPromise.delay(1).then(() => 2))
129 | .then(result => {
130 | expect(result).toBe(2);
131 | })
132 | .then(done);
133 | });
134 | it('returns a rejecting SyncPromise if a function returns a rejecting promise', () => {
135 | return SyncPromise.method(() =>
136 | SyncPromise.delay(1).then(() => {
137 | throw new Error('error');
138 | })
139 | ).catch(error => {
140 | expect(error).toMatchObject({
141 | message: 'error'
142 | });
143 | });
144 | });
145 | });
146 | describe('.all', () => {
147 | it('resolves all futures before resolving', done => {
148 | const f = SyncPromise.all([SyncPromise.resolve(1), SyncPromise.resolve(2)]);
149 | f.then(values => {
150 | expect(values).toEqual([1, 2]);
151 | done();
152 | });
153 | });
154 | it('resolves an empty list of futures', done => {
155 | const f = SyncPromise.all([]);
156 | f.then(values => {
157 | expect(values).toEqual([]);
158 | done();
159 | });
160 | });
161 | it('accepts non-array iterables', () => {
162 | function* gen() {
163 | yield 1;
164 | yield SyncPromise.delay(1).then(() => 2);
165 | yield 3;
166 | }
167 |
168 | return SyncPromise.all(gen()).then(values => {
169 | expect(values).toEqual([1, 2, 3]);
170 | });
171 | });
172 | });
173 | describe('.race', () => {
174 | it('resolves to the first resolving promise', () => {
175 | const short = SyncPromise.delay(1).then(() => 1);
176 | const long = SyncPromise.delay(2000).then(() => 2);
177 | return SyncPromise.all([SyncPromise.race([short, long]).then(
178 | result => {
179 | expect(result).toBe(1);
180 | }
181 | ), long]);
182 | });
183 | it('rejects if the first settled promise is rejected', () => {
184 | const short = SyncPromise.delay(1).then(() => {
185 | throw new Error('error');
186 | });
187 | const long = SyncPromise.delay(2000).then(() => 2);
188 | return SyncPromise.all([SyncPromise.race([short])
189 | .catch(error => {
190 | expect(error).toMatchObject({
191 | message: 'error'
192 | });
193 | return 'error';
194 | })
195 | .then(result => {
196 | expect(result).toBe('error');
197 | }), long]);
198 | });
199 | it('accepts non-promise values', () => {
200 | return SyncPromise.race([SyncPromise.defer().then(() => 1), 2, 3]).then(result => {
201 | expect(result).toBe(2);
202 | });
203 | });
204 | it('does not settle the returned promise when an empty list of values is passed in', () => {
205 | const result = SyncPromise.race([]);
206 | return SyncPromise.delay(20).then(() => {
207 | expect(result.isPending()).toBeTruthy();
208 | });
209 | });
210 | it('accepts non-array iterables', () => {
211 | function* gen() {
212 | yield SyncPromise.delay(1).then(() => 1);
213 | yield 2;
214 | yield 3;
215 | }
216 |
217 | return SyncPromise.race(gen()).then(value => {
218 | expect(value).toBe(2);
219 | });
220 | });
221 | });
222 | describe('.reduce', () => {
223 | it('takes an array of promises and waits for promises returned by the reducer function, passing through the accumulated expression', done => {
224 | SyncPromise.reduce(
225 | [SyncPromise.defer().then(() => 1), SyncPromise.defer().then(() => 2)],
226 | (acc, value) => acc + value,
227 | 0
228 | ).then(sum => {
229 | expect(sum).toBe(3);
230 | done();
231 | });
232 | });
233 | });
234 | describe('.waterfall', () => {
235 | it('takes an array of promises and waits for promises returned by the reducer function', done => {
236 | let sum = 0;
237 | SyncPromise.waterfall([SyncPromise.defer().then(() => 1), SyncPromise.defer().then(() => 2)], value => {
238 | sum += value;
239 | }).then(() => {
240 | expect(sum).toBe(3);
241 | done();
242 | });
243 | });
244 | });
245 | it('supports chaining of .then with a non-SyncPromise value', done => {
246 | SyncPromise.resolve(1)
247 | .then(value => {
248 | expect(value).toEqual(1);
249 | return 2;
250 | })
251 | .then(value => {
252 | expect(value).toEqual(2);
253 | done();
254 | });
255 | });
256 | it('supports chaining of .then with a new SyncPromise', done => {
257 | new SyncPromise((resolve, reject) => {
258 | setTimeout(() => resolve(1), 5);
259 | })
260 | .then(value => {
261 | expect(value).toEqual(1);
262 | return new SyncPromise((resolve, reject) => {
263 | setTimeout(() => resolve(2), 5);
264 | });
265 | })
266 | .then(value => {
267 | expect(value).toEqual(2);
268 | done();
269 | });
270 | });
271 | it('forwards exceptions through a .then chain', done => {
272 | SyncPromise.reject('error')
273 | .then(() => {
274 | return 1;
275 | })
276 | .catch(error => {
277 | expect(error).toEqual('error');
278 | done();
279 | });
280 | });
281 | it('rejects on exceptions in the executor', done => {
282 | new SyncPromise((resolve, reject) => {
283 | throw new Error('error');
284 | }).catch(error => {
285 | expect(error).toMatchObject({
286 | message: 'error'
287 | });
288 | done();
289 | });
290 | });
291 | it('rejects on exceptions in handlers', done => {
292 | SyncPromise.resolve(1)
293 | .then(value => {
294 | throw new Error('error');
295 | })
296 | .catch(error => {
297 | expect(error).toMatchObject({
298 | message: 'error'
299 | });
300 | throw new Error('error2');
301 | })
302 | .catch(error => {
303 | expect(error).toMatchObject({
304 | message: 'error2'
305 | });
306 | return 2;
307 | })
308 | .then(value => {
309 | expect(value).toEqual(2);
310 | done();
311 | });
312 | });
313 | it('waits for fulfilled promises transparently', done => {
314 | SyncPromise.resolve()
315 | .then(() => {
316 | return new SyncPromise(resolve => {
317 | resolve(
318 | new SyncPromise(resolve2 => {
319 | resolve2(SyncPromise.resolve(42));
320 | })
321 | );
322 | });
323 | })
324 | .then(value => {
325 | expect(value).toBe(42);
326 | })
327 | .then(done);
328 | });
329 | it('waits for rejected promises transparently', done => {
330 | SyncPromise.resolve()
331 | .then(() => {
332 | return new SyncPromise(resolve => {
333 | resolve(
334 | new SyncPromise(resolve2 => {
335 | resolve2(SyncPromise.reject('error'));
336 | })
337 | );
338 | });
339 | })
340 | .catch(error => {
341 | expect(error).toBe('error');
342 | done();
343 | });
344 | });
345 | it('supports .catch', done => {
346 | const handler = jest.fn();
347 | new SyncPromise((resolve, reject) => {
348 | reject(42);
349 | })
350 | .catch(handler)
351 | .then(() => {
352 | expect(handler).toHaveBeenCalledWith(42);
353 | done();
354 | });
355 | });
356 | it('propagates errors in .catch', done => {
357 | SyncPromise.reject('error')
358 | .catch(error => {
359 | expect(error).toEqual('error');
360 | throw new Error('error2');
361 | })
362 | .catch(error => {
363 | expect(error).toMatchObject({
364 | message: 'error2'
365 | });
366 | done();
367 | });
368 | });
369 | describe('.catch', () => {
370 | it('does not affect successful promises', done => {
371 | SyncPromise.resolve(42)
372 | .catch(() => {})
373 | .then(result => {
374 | expect(result).toBe(42);
375 | })
376 | .then(done);
377 | });
378 | it('waits for returned promises', done => {
379 | SyncPromise.reject('error')
380 | .catch(error => {
381 | return SyncPromise.defer().then(() => 42);
382 | })
383 | .then(result => {
384 | expect(result).toBe(42);
385 | })
386 | .then(done);
387 | });
388 | it('waits for returned promises that resolve to promises themselves', done => {
389 | SyncPromise.reject('error')
390 | .catch(error => {
391 | return new SyncPromise(resolve => {
392 | resolve(SyncPromise.resolve(42));
393 | });
394 | })
395 | .then(result => {
396 | expect(result).toBe(42);
397 | })
398 | .then(done);
399 | });
400 | });
401 | describe('.delay', () => {
402 | it('waits until executing a callback function', done => {
403 | SyncPromise.delay(1).then(done);
404 | });
405 | });
406 | describe('.defer', () => {
407 | it('defers execution of a callback function until the next execution frame', done => {
408 | SyncPromise.defer().then(done);
409 | });
410 | });
411 | it('executes sync handlers when the SyncPromise is resolved synchronously', done => {
412 | const handler = jest.fn();
413 | new SyncPromise(resolve => resolve(1)).thenAsync(handler).thenSync(value => {
414 | expect(value).toEqual(1);
415 | expect(handler).not.toHaveBeenCalled();
416 | done();
417 | });
418 | });
419 | it('executes async handlers when the SyncPromise is resolved asynchronously', done => {
420 | const handler = jest.fn();
421 | new SyncPromise(resolve => {
422 | setTimeout(() => {
423 | resolve(44);
424 | }, 0);
425 | })
426 | .thenSync(handler)
427 | .thenAsync(value => {
428 | expect(handler).not.toHaveBeenCalled();
429 | done();
430 | });
431 | });
432 | it('handles errors in .thenSync', done => {
433 | SyncPromise.resolve(42)
434 | .thenSync(() => {
435 | throw new Error('error');
436 | })
437 | .thenAsync(
438 | () => {},
439 | () => {}
440 | )
441 | .catch(error => {
442 | expect(error).toMatchObject({
443 | message: 'error'
444 | });
445 | })
446 | .then(done);
447 | });
448 | it('calls the onAsyncStart callback before resolving asynchronously', done => {
449 | const p = SyncPromise.delay(10);
450 | let started = false;
451 | p.thenAsync(
452 | value => {
453 | expect(started).toBe(true);
454 | done();
455 | },
456 | () => {
457 | started = true;
458 | }
459 | );
460 | expect(started).toBe(true);
461 | });
462 | it('catches errors in the onAsyncStart callback', done => {
463 | SyncPromise.delay(10)
464 | .thenAsync(
465 | () => {},
466 | () => {
467 | throw new Error('error');
468 | }
469 | )
470 | .catchSync(error => {
471 | expect(error).toMatchObject({
472 | message: 'error'
473 | });
474 | done();
475 | });
476 | });
477 | describe('(long async specs)', () => {
478 | const CALL_COUNT = 30000;
479 | it('supports long .then chains without overflowing the stack', done => {
480 | let p = SyncPromise.delay().then(() => 0);
481 |
482 | for (let i = 0; i < CALL_COUNT; ++i) {
483 | p = p.then(value => value + 1);
484 | }
485 |
486 | p.then(value => {
487 | expect(value).toBe(CALL_COUNT);
488 | done();
489 | });
490 | });
491 | it('supports long .then chains returning SyncPromises without overflowing the stack', done => {
492 | let sameExecutionFrame = true;
493 | let p = SyncPromise.delay().then(() => 0);
494 |
495 | for (let i = 0; i < CALL_COUNT; ++i) {
496 | p = p.then(value => SyncPromise.resolve(value + 1));
497 | }
498 |
499 | p.then(value => {
500 | expect(value).toBe(CALL_COUNT);
501 | expect(sameExecutionFrame).toBe(false);
502 | done();
503 | });
504 | sameExecutionFrame = false;
505 | });
506 | });
507 | });
508 |
--------------------------------------------------------------------------------
/src/SyncPromise.ts:
--------------------------------------------------------------------------------
1 | import process from 'process';
2 |
3 | // TODO: Use proper logger.
4 | const logger = console;
5 |
6 | // import * as loggers from 'loggers';
7 | //
8 | // const logger = loggers.create('main');
9 |
10 | const DEBUG = process.env.NODE_ENV !== 'production';
11 |
12 | const PENDING = 0;
13 | const FULFILLED = 1;
14 | const REJECTED = 2;
15 | type Thenable = SyncPromise | Promise | PromiseLike | T; // {then: (callback?: (value: T) => R) => Thenable} | T;
16 |
17 | type Executor = (resolve: (value?: Thenable) => void, reject: (exception?: any) => void) => void;
18 | type Callback = (value: T) => Thenable | null | undefined;
19 | type Handler = (value: any) => void;
20 | type StartCallback = (cancel: () => void) => void;
21 |
22 | // To save memory, we combine the handler count, promise state, stack depth and the handled flag
23 | // into one single (31-bit) bitfield (which just fits into a 32-bit number, which is what
24 | // bitwise operations work with in JS). Below are the bit offsets of the parts of the bitfield,
25 | // starting with the least significant.
26 | const TOTAL_BITS = 32;
27 | const OFFSET_HANDLER_COUNT = 0;
28 | const BITS_HANDLER_COUNT = 18;
29 | const OFFSET_STATE = BITS_HANDLER_COUNT;
30 | const BITS_STATE = 2;
31 | const OFFSET_STACK_DEPTH = OFFSET_STATE + BITS_STATE;
32 | const BITS_STACK_DEPTH = 10;
33 | const OFFSET_IS_HANDLED = OFFSET_STACK_DEPTH + BITS_STACK_DEPTH;
34 |
35 | const MAX_HANDLER_COUNT = 1 << (BITS_HANDLER_COUNT - 1);
36 | const MASK_HANDLER_COUNT = (~0 >>> (TOTAL_BITS - BITS_HANDLER_COUNT)) << OFFSET_HANDLER_COUNT;
37 | const MASK_STATE = (~0 >>> (TOTAL_BITS - BITS_STATE)) << OFFSET_STATE;
38 | const MASK_STACK_DEPTH = (~0 >>> (TOTAL_BITS - BITS_STACK_DEPTH)) << OFFSET_STACK_DEPTH;
39 | const FLAG_HANDLED = 1 << OFFSET_IS_HANDLED;
40 |
41 | /**
42 | * Sets the promise state in the flags bitfield.
43 | * @param flags Bitfield for the various SyncPromise flags.
44 | * @param state New state value.
45 | * @returns The new flags bitfield.
46 | */
47 | function setStateFlags(flags: number, state: number): number {
48 | return (flags & ~MASK_STATE) | (state << OFFSET_STATE);
49 | }
50 |
51 | /**
52 | * The maximum stack depth until which to proceed synchronously.
53 | * Once this limit is reached, the SyncPromise will introduce an asynchronous step.
54 | * This is to avoid reaching the browser's maximum recursion depth.
55 | * Note that this must be smaller than `1 << (STACK_DEPTH_BIT_END - STACK_DEPTH_BIT_START)`.
56 | */
57 | const MAX_STACK_DEPTH = 1000;
58 |
59 | /**
60 | * Data layout for storing fulfill and reject handlers in SyncPromise.
61 | * Store the first handler as a property (having a single handler is the most common use case, so we optimize for that).
62 | * Store all other handlers as indexed properties on the SyncPromise itself (avoiding allocation of any other Arrays).
63 | * Inspired by https://github.com/cscott/babybird
64 | */
65 | type HandlerStore = {
66 | flags: number;
67 | fulfillHandler0: Handler | null | undefined;
68 | rejectHandler0: Handler | null | undefined;
69 | } & (Handler | null | undefined)[];
70 |
71 | function addHandlers(
72 | promise: HandlerStore,
73 | fulfillHandler: Handler | null | undefined,
74 | rejectHandler: Handler | null | undefined
75 | ) {
76 | const c = (promise.flags & MASK_HANDLER_COUNT) >>> OFFSET_HANDLER_COUNT;
77 | if (c >= MAX_HANDLER_COUNT) {
78 | throw new Error('Too many handlers on SyncPromise');
79 | }
80 | if (c) {
81 | // If there is 1 handler already, we need to write to slots 0 and 1;
82 | // If there is 2, we write to slots 2 and 3, etc.
83 | const i = c - 1;
84 | promise[2 * i] = fulfillHandler;
85 | promise[2 * i + 1] = rejectHandler;
86 | } else {
87 | // If there is no handler yet, use the shortcut properties.
88 | promise.fulfillHandler0 = fulfillHandler;
89 | promise.rejectHandler0 = rejectHandler;
90 | }
91 | ++promise.flags;
92 | }
93 |
94 | function executeHandlers(promise: HandlerStore, offset: 0 | 1, arg: any): boolean {
95 | const c = (promise.flags & MASK_HANDLER_COUNT) >>> OFFSET_HANDLER_COUNT;
96 | if (c >= 1) {
97 | const handler0 = offset ? promise.rejectHandler0 : promise.fulfillHandler0;
98 | if (handler0) {
99 | handler0(arg);
100 | }
101 | // Reset the handler count to 0.
102 | promise.flags &= ~MASK_HANDLER_COUNT;
103 | promise.fulfillHandler0 = null;
104 | promise.rejectHandler0 = null;
105 | for (let i = 0; i < c - 1; ++i) {
106 | const handler = promise[2 * i + offset];
107 | if (handler) {
108 | handler(arg);
109 | }
110 | // Don't even bother shrinking the array (which would only need more time), just write `null`s to it.
111 | promise[2 * i] = null;
112 | promise[2 * i + 1] = null;
113 | }
114 | return true;
115 | }
116 | return false;
117 | }
118 |
119 | function createHandler(
120 | callback: Callback | null | undefined,
121 | resolve,
122 | reject,
123 | async = false,
124 | isReject = false
125 | ): Handler {
126 | function handler(value) {
127 | let successful = false;
128 | let result = value;
129 | try {
130 | if (callback) {
131 | result = callback(value);
132 | successful = true;
133 | } else if (isReject) {
134 | // If this is the rejection handler being called (i.e. the original promise was rejected)
135 | // and the .then call didn't specify an explicit onRejected callback,
136 | // then reject the resulting promise immediately.
137 | // In that case, don't set `successful = true`, otherwise we would try to settle the promise again
138 | // after rejecting it here.
139 | reject(value);
140 | } else {
141 | // If there is no callback and this is not a rejection handler, resolve the promise with the
142 | // original value.
143 | successful = true;
144 | }
145 | } catch (error) {
146 | successful = false;
147 | reject(error);
148 | }
149 | if (successful) {
150 | const then = result && result.then;
151 | if (then && typeof then === 'function') {
152 | then.call(result, resolve, reject);
153 | } else {
154 | resolve(result);
155 | }
156 | }
157 | }
158 |
159 | if (async) {
160 | return value => {
161 | setTimeout(() => {
162 | handler(value);
163 | }, 0);
164 | };
165 | } else {
166 | return handler;
167 | }
168 | }
169 |
170 | function execute(executor: Executor, fulfill: (value?: Thenable) => void, reject: (exception: any) => void) {
171 | try {
172 | executor(fulfill, reject);
173 | } catch (exception) {
174 | reject(exception);
175 | }
176 | }
177 |
178 | function monitorCatch(promise: SyncPromise) {
179 | setTimeout(() => {
180 | const isHandled = promise.flags & FLAG_HANDLED;
181 | if (!isHandled) {
182 | const exception = promise.result;
183 | logger.error('Exception in SyncPromise without .catch', exception);
184 | throw exception;
185 | }
186 | }, 0);
187 | }
188 |
189 | /**
190 | * A synchronous Promise implementation.
191 | * Follows the spec https://promisesaplus.com/ except for https://promisesaplus.com/#point-34 .
192 | * An alternative would have been https://github.com/paldepind/sync-promise but it doesn't allow chaining.
193 | */
194 | class SyncPromise implements PromiseLike {
195 | /**
196 | * The flags property contains the handler count, the current stack depth, the promise state, and the is-handled flag
197 | * in one single bitfield.
198 | */
199 | flags: number;
200 |
201 | result: any;
202 | fulfillHandler0: Handler | null | undefined;
203 | rejectHandler0: Handler | null | undefined;
204 | _fulfilledNonPending: boolean;
205 | _rejectedNonPending: boolean;
206 |
207 | static resolve(
208 | value?:
209 | | SyncPromise
210 | | Promise
211 | | {
212 | then: () => R;
213 | }
214 | | R,
215 | depth?: number
216 | ): SyncPromise {
217 | const then: Executor | null | undefined = value && ((value as any).then as any);
218 |
219 | if (typeof then === 'function') {
220 | return new SyncPromise((resolve, reject) => {
221 | then.call(value, resolve, reject);
222 | }, depth);
223 | } else {
224 | const promise = new SyncPromise(null, depth);
225 | promise.flags = setStateFlags(promise.flags, FULFILLED);
226 | promise.result = value;
227 | return promise as any;
228 | }
229 | }
230 |
231 | static reject(exception?: any, depth?: number): SyncPromise {
232 | const promise = new SyncPromise(null, depth);
233 | promise.flags = setStateFlags(promise.flags, REJECTED);
234 | promise.result = exception;
235 | if (DEBUG) {
236 | monitorCatch(promise);
237 | }
238 | return promise;
239 | }
240 |
241 | static method(func: () => any, depth?: number): SyncPromise {
242 | try {
243 | return SyncPromise.resolve(func(), depth);
244 | } catch (error) {
245 | return SyncPromise.reject(error, depth) as any;
246 | }
247 | }
248 |
249 | static all(futures: Iterable | Array): SyncPromise {
250 | const futuresArray: Array = Array.isArray(futures) ? futures : Array.from(futures);
251 | if (!futuresArray.length) {
252 | return SyncPromise.resolve([]);
253 | }
254 | return new SyncPromise((resolve, reject) => {
255 | let resolvedCount = 0;
256 | const values: any[] = [];
257 | let done = false;
258 |
259 | function resolver(i, l) {
260 | return value => {
261 | if (!done) {
262 | values[i] = value;
263 | ++resolvedCount;
264 | if (resolvedCount === l) {
265 | done = true;
266 | resolve(values);
267 | }
268 | }
269 | };
270 | }
271 |
272 | function rejecter() {
273 | return error => {
274 | if (!done) {
275 | reject(error);
276 | done = true;
277 | }
278 | };
279 | }
280 |
281 | for (let i = 0, l = futuresArray.length; i < l; ++i) {
282 | const future = futuresArray[i];
283 | const then = future && future.then;
284 | if (then && typeof then === 'function') {
285 | then.call(future, resolver(i, l), rejecter());
286 | } else {
287 | // If an item is not a Promise, treat it like it's resolved immediately.
288 | resolver(i, l)(future);
289 | }
290 | }
291 | });
292 | }
293 |
294 | /**
295 | * Returns a promise that settles as soon as one of the given promise is settled,
296 | * either resolving or rejecting with the same value or error as that promise.
297 | * @param futures Array of Promises, SyncPromises, or other values.
298 | * @returns A SyncPromise. If one of the given values is not a promise, it is assumed
299 | * to already be resolved, so the result will resolve synchronously to that value.
300 | * If the list of futures is empty, a never-resolving promise is returned.
301 | */
302 | static race(futures: Iterable | Array): SyncPromise {
303 | const futuresArray: Array = Array.isArray(futures) ? futures : Array.from(futures);
304 | if (!futuresArray.length) {
305 | return new SyncPromise();
306 | }
307 | return new SyncPromise((resolve, reject) => {
308 | let done = false;
309 |
310 | function resolver(value) {
311 | if (!done) {
312 | resolve(value);
313 | done = true;
314 | }
315 | }
316 |
317 | function rejecter(error) {
318 | if (!done) {
319 | reject(error);
320 | done = true;
321 | }
322 | }
323 |
324 | for (let i = 0, l = futuresArray.length; i < l; ++i) {
325 | const future = futuresArray[i];
326 | const then = future && future.then;
327 | if (then && typeof then === 'function') {
328 | then.call(future, resolver, rejecter);
329 | } else {
330 | // If an item is not a Promise, treat it like it's resolved immediately.
331 | resolver(future);
332 | }
333 | }
334 | });
335 | }
336 |
337 | /**
338 | * Applies a reducer to an array of values, receiving and returning an accumulated value.
339 | * @param futures Array of values. Might contain promises, which are waited for before applying the reducer.
340 | * @param reducer Reducer function receiving the current accumulator and the current value.
341 | * Might return a promise which is waited for before moving on to the next value.
342 | * @param initialValue Initial value of the accumulator, i.e. the value passed to the first invocation of the reducer.
343 | * @returns Promise resolving to the final accumulator value returned by the last invocation of the reducer
344 | * (or the `initialValue` if `futures` is empty).
345 | */
346 | static reduce(
347 | futures: Array | SyncPromise>,
348 | reducer: (accumulator: Acc, item: Value, index: number, length: number) => Acc | SyncPromise,
349 | initialValue: Acc
350 | ): SyncPromise {
351 | const length = futures.length;
352 | return futures.reduce((accPromise, valuePromise, currentIndex) => {
353 | return accPromise.then(acc => {
354 | return SyncPromise.resolve(valuePromise).then((value: Value) => {
355 | return reducer(acc, value, currentIndex, length);
356 | });
357 | });
358 | }, SyncPromise.resolve(initialValue));
359 | }
360 |
361 | /**
362 | * Applies a function to each value of an array, waiting for promises to resolve at each step.
363 | * Similar to `SyncPromise.reduce`, but does not maintain an accumulated value.
364 | * @param futures Array of values. Might contain promises, which are waited for before applying the iterator.
365 | * @param iterator Function applied to all (resolved) values of the array.
366 | * Might return a promise which is waited for before moving on to the next value.
367 | * @returns Promise resolving when all values have been iterated over.
368 | */
369 | static waterfall(
370 | futures: ReadonlyArray | SyncPromise>,
371 | iterator: (item: Value, index: number, length: number) => SyncPromise | Result
372 | ): SyncPromise {
373 | const length = futures.length;
374 | return futures.reduce((accPromise, valuePromise, currentIndex) => {
375 | return (accPromise as any).then(acc => {
376 | return SyncPromise.resolve(valuePromise).then(value => {
377 | return iterator(value, currentIndex, length);
378 | });
379 | });
380 | }, SyncPromise.resolve()) as any;
381 | }
382 |
383 | static delay(ms?: number) {
384 | return new SyncPromise(resolve => {
385 | setTimeout(resolve, ms || 0);
386 | });
387 | }
388 |
389 | static defer() {
390 | return SyncPromise.delay(0);
391 | }
392 |
393 | constructor(executor?: Executor | null | undefined, depth?: number) {
394 | this.flags = (depth || 0) << OFFSET_STACK_DEPTH;
395 | this.result = null;
396 | this.fulfillHandler0 = null;
397 | this.rejectHandler0 = null;
398 | if (executor) {
399 | execute(executor, this.dangerouslyResolve.bind(this), this.dangerouslyReject.bind(this));
400 | }
401 | }
402 |
403 | then(
404 | onFulfilled: Callback | null | undefined,
405 | onRejected?: Callback | null | undefined
406 | ): SyncPromise {
407 | const flags = this.flags;
408 | const stackDepth = (flags & MASK_STACK_DEPTH) >>> OFFSET_STACK_DEPTH;
409 | const async = stackDepth >= MAX_STACK_DEPTH;
410 | const state = (flags & MASK_STATE) >>> OFFSET_STATE;
411 | switch (state) {
412 | case FULFILLED:
413 | if (onFulfilled) {
414 | this.flags |= FLAG_HANDLED;
415 | if (async) {
416 | return SyncPromise.defer().then(() => onFulfilled && onFulfilled(this.result));
417 | }
418 | return SyncPromise.method(() => onFulfilled && onFulfilled(this.result), stackDepth + 1);
419 | } else {
420 | return this;
421 | }
422 | case REJECTED:
423 | if (onRejected) {
424 | this.flags |= FLAG_HANDLED;
425 | if (async) {
426 | return SyncPromise.defer().then(() => onRejected && onRejected(this.result));
427 | }
428 | return SyncPromise.method(() => onRejected && onRejected(this.result), stackDepth + 1);
429 | } else {
430 | return this;
431 | }
432 | default:
433 | this.flags |= FLAG_HANDLED;
434 | return new SyncPromise(
435 | (resolve, reject) => {
436 | const fulfillHandler = createHandler(onFulfilled, resolve, reject, async);
437 | const rejectHandler = createHandler(onRejected, resolve, reject, async, true);
438 | addHandlers(this as any, fulfillHandler, rejectHandler);
439 | },
440 | async ? 0 : stackDepth + 1
441 | );
442 | }
443 | }
444 |
445 | catch(errorHandler: Callback | null | undefined): SyncPromise {
446 | return this.then(null, errorHandler);
447 | }
448 |
449 | finally(handler: Callback): SyncPromise {
450 | return this.then(
451 | value => {
452 | handler(undefined);
453 | return value;
454 | },
455 | error => {
456 | handler(undefined);
457 | throw error;
458 | }
459 | );
460 | }
461 |
462 | isPending() {
463 | const state = (this.flags & MASK_STATE) >>> OFFSET_STATE;
464 | return state === PENDING;
465 | }
466 |
467 | isSettled() {
468 | const state = (this.flags & MASK_STATE) >>> OFFSET_STATE;
469 | return state !== PENDING;
470 | }
471 |
472 | isFulfilled() {
473 | const state = (this.flags & MASK_STATE) >>> OFFSET_STATE;
474 | return state === FULFILLED;
475 | }
476 |
477 | isRejected() {
478 | const state = (this.flags & MASK_STATE) >>> OFFSET_STATE;
479 | return state === REJECTED;
480 | }
481 |
482 | async() {
483 | return SyncPromise.resolve(this, MAX_STACK_DEPTH);
484 | }
485 |
486 | getValueSync(): T | null | undefined {
487 | if (this.isFulfilled()) {
488 | return this.result;
489 | }
490 | return undefined;
491 | }
492 |
493 | getExceptionSync() {
494 | if (this.isRejected()) {
495 | // When an exception is queried synchronously, consider it "handled".
496 | // This avoids a bunch of "Exception in SyncPromise without a .catch" errors
497 | // due to how _doPrepare in Component.js works.
498 | this.flags |= FLAG_HANDLED;
499 | return this.result;
500 | }
501 | return undefined;
502 | }
503 |
504 | thenSync(onSyncFulfilled: Callback): SyncPromise | SyncPromise {
505 | if (this.isSettled()) {
506 | return this.then(onSyncFulfilled);
507 | }
508 | return this;
509 | }
510 |
511 | thenAsync(onAsyncFulfilled: Callback, onAsyncStart?: StartCallback): SyncPromise | SyncPromise {
512 | if (this.isPending()) {
513 | let cancelled = false;
514 | if (onAsyncStart) {
515 | try {
516 | onAsyncStart(() => {
517 | cancelled = true;
518 | });
519 | } catch (error) {
520 | return SyncPromise.reject(error) as any;
521 | }
522 | }
523 |
524 | return this.then(result => {
525 | if (cancelled) {
526 | return undefined;
527 | }
528 | return onAsyncFulfilled(result);
529 | });
530 | }
531 | return this;
532 | }
533 |
534 | catchSync(onSyncError: Callback): SyncPromise | SyncPromise {
535 | if (this.isSettled()) {
536 | return this.catch(onSyncError);
537 | }
538 | return this;
539 | }
540 |
541 | catchAsync(onAsyncError: Callback): SyncPromise | SyncPromise {
542 | if (this.isPending()) {
543 | return this.catch(onAsyncError);
544 | }
545 | return this;
546 | }
547 |
548 | /**
549 | * Directly resolves this SyncPromise instance.
550 | * This is not part of the official Promise API and should only be used if absolutely necessary.
551 | * Usually, a promise should be resolved from within the executor passed to the constructor.
552 | * @param value Value to resolve the promise to.
553 | */
554 | dangerouslyResolve(value?: Thenable): void {
555 | const flags = this.flags;
556 | const state = (this.flags & MASK_STATE) >>> OFFSET_STATE;
557 | if (state === PENDING) {
558 | const then: Executor | null | undefined = value && ((value as any).then as any);
559 |
560 | if (then && typeof then === 'function') {
561 | then.call(value, this.dangerouslyResolve.bind(this), this.dangerouslyReject.bind(this));
562 | } else {
563 | this.result = value;
564 | this.flags = setStateFlags(flags, FULFILLED);
565 | executeHandlers(this as any, 0, value);
566 | }
567 | } else {
568 | logger.warn('Fulfilling non-pending SyncPromise', this);
569 | // Set a flag for testing purposes.
570 | this._fulfilledNonPending = true;
571 | }
572 | }
573 |
574 | /**
575 | * Directly rejects this SyncPromise instance.
576 | * This is not part of the official Promise API and should only be used if absolutely necessary.
577 | * Usually, a promise should be rejected from within the executor passed to the constructor.
578 | * @param exception Error to reject the promise with.
579 | */
580 | dangerouslyReject(exception: any): void {
581 | const flags = this.flags;
582 | const state = (flags & MASK_STATE) >>> OFFSET_STATE;
583 | if (state === PENDING) {
584 | this.result = exception;
585 | this.flags = setStateFlags(flags, REJECTED);
586 | const hadHandlers = executeHandlers(this as any, 1, exception);
587 |
588 | if (DEBUG && !hadHandlers) {
589 | // If the SyncPromise is rejected and there are no reject handlers,
590 | // wait for another tick to see if the rejection is handled afterwards,
591 | // as in `SyncPromise.reject().catch()`.
592 | // If it's still not handled, then throw an error.
593 | // Only do this in DEBUG mode, since it has a significant performance impact.
594 | monitorCatch(this);
595 | }
596 | } else {
597 | logger.warn('Rejecting non-pending SyncPromise', this);
598 | // Set a flag for testing purposes.
599 | this._rejectedNonPending = true;
600 | }
601 | }
602 | }
603 |
604 | export default SyncPromise;
605 |
--------------------------------------------------------------------------------
/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.13.11", "@babel/compat-data@^7.15.0":
13 | version "7.15.0"
14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176"
15 | integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==
16 |
17 | "@babel/core@^7.1.0", "@babel/core@^7.15.5", "@babel/core@^7.7.2", "@babel/core@^7.7.5":
18 | version "7.15.5"
19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.15.5.tgz#f8ed9ace730722544609f90c9bb49162dc3bf5b9"
20 | integrity sha512-pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg==
21 | dependencies:
22 | "@babel/code-frame" "^7.14.5"
23 | "@babel/generator" "^7.15.4"
24 | "@babel/helper-compilation-targets" "^7.15.4"
25 | "@babel/helper-module-transforms" "^7.15.4"
26 | "@babel/helpers" "^7.15.4"
27 | "@babel/parser" "^7.15.5"
28 | "@babel/template" "^7.15.4"
29 | "@babel/traverse" "^7.15.4"
30 | "@babel/types" "^7.15.4"
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.15.4", "@babel/generator@^7.7.2":
39 | version "7.15.4"
40 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.4.tgz#85acb159a267ca6324f9793986991ee2022a05b0"
41 | integrity sha512-d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw==
42 | dependencies:
43 | "@babel/types" "^7.15.4"
44 | jsesc "^2.5.1"
45 | source-map "^0.5.0"
46 |
47 | "@babel/helper-annotate-as-pure@^7.14.5", "@babel/helper-annotate-as-pure@^7.15.4":
48 | version "7.15.4"
49 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz#3d0e43b00c5e49fdb6c57e421601a7a658d5f835"
50 | integrity sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==
51 | dependencies:
52 | "@babel/types" "^7.15.4"
53 |
54 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5":
55 | version "7.15.4"
56 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz#21ad815f609b84ee0e3058676c33cf6d1670525f"
57 | integrity sha512-P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==
58 | dependencies:
59 | "@babel/helper-explode-assignable-expression" "^7.15.4"
60 | "@babel/types" "^7.15.4"
61 |
62 | "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.15.4":
63 | version "7.15.4"
64 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz#cf6d94f30fbefc139123e27dd6b02f65aeedb7b9"
65 | integrity sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==
66 | dependencies:
67 | "@babel/compat-data" "^7.15.0"
68 | "@babel/helper-validator-option" "^7.14.5"
69 | browserslist "^4.16.6"
70 | semver "^6.3.0"
71 |
72 | "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.15.4":
73 | version "7.15.4"
74 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz#7f977c17bd12a5fba363cb19bea090394bf37d2e"
75 | integrity sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==
76 | dependencies:
77 | "@babel/helper-annotate-as-pure" "^7.15.4"
78 | "@babel/helper-function-name" "^7.15.4"
79 | "@babel/helper-member-expression-to-functions" "^7.15.4"
80 | "@babel/helper-optimise-call-expression" "^7.15.4"
81 | "@babel/helper-replace-supers" "^7.15.4"
82 | "@babel/helper-split-export-declaration" "^7.15.4"
83 |
84 | "@babel/helper-create-regexp-features-plugin@^7.14.5":
85 | version "7.14.5"
86 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4"
87 | integrity sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==
88 | dependencies:
89 | "@babel/helper-annotate-as-pure" "^7.14.5"
90 | regexpu-core "^4.7.1"
91 |
92 | "@babel/helper-define-polyfill-provider@^0.2.2":
93 | version "0.2.3"
94 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6"
95 | integrity sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==
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.15.4":
107 | version "7.15.4"
108 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz#f9aec9d219f271eaf92b9f561598ca6b2682600c"
109 | integrity sha512-J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==
110 | dependencies:
111 | "@babel/types" "^7.15.4"
112 |
113 | "@babel/helper-function-name@^7.14.5", "@babel/helper-function-name@^7.15.4":
114 | version "7.15.4"
115 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc"
116 | integrity sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==
117 | dependencies:
118 | "@babel/helper-get-function-arity" "^7.15.4"
119 | "@babel/template" "^7.15.4"
120 | "@babel/types" "^7.15.4"
121 |
122 | "@babel/helper-get-function-arity@^7.15.4":
123 | version "7.15.4"
124 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b"
125 | integrity sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==
126 | dependencies:
127 | "@babel/types" "^7.15.4"
128 |
129 | "@babel/helper-hoist-variables@^7.15.4":
130 | version "7.15.4"
131 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df"
132 | integrity sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==
133 | dependencies:
134 | "@babel/types" "^7.15.4"
135 |
136 | "@babel/helper-member-expression-to-functions@^7.15.4":
137 | version "7.15.4"
138 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef"
139 | integrity sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==
140 | dependencies:
141 | "@babel/types" "^7.15.4"
142 |
143 | "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5", "@babel/helper-module-imports@^7.15.4":
144 | version "7.15.4"
145 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f"
146 | integrity sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==
147 | dependencies:
148 | "@babel/types" "^7.15.4"
149 |
150 | "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.4":
151 | version "7.15.7"
152 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.7.tgz#7da80c8cbc1f02655d83f8b79d25866afe50d226"
153 | integrity sha512-ZNqjjQG/AuFfekFTY+7nY4RgBSklgTu970c7Rj3m/JOhIu5KPBUuTA9AY6zaKcUvk4g6EbDXdBnhi35FAssdSw==
154 | dependencies:
155 | "@babel/helper-module-imports" "^7.15.4"
156 | "@babel/helper-replace-supers" "^7.15.4"
157 | "@babel/helper-simple-access" "^7.15.4"
158 | "@babel/helper-split-export-declaration" "^7.15.4"
159 | "@babel/helper-validator-identifier" "^7.15.7"
160 | "@babel/template" "^7.15.4"
161 | "@babel/traverse" "^7.15.4"
162 | "@babel/types" "^7.15.6"
163 |
164 | "@babel/helper-optimise-call-expression@^7.15.4":
165 | version "7.15.4"
166 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171"
167 | integrity sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==
168 | dependencies:
169 | "@babel/types" "^7.15.4"
170 |
171 | "@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.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
172 | version "7.14.5"
173 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9"
174 | integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==
175 |
176 | "@babel/helper-remap-async-to-generator@^7.14.5", "@babel/helper-remap-async-to-generator@^7.15.4":
177 | version "7.15.4"
178 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz#2637c0731e4c90fbf58ac58b50b2b5a192fc970f"
179 | integrity sha512-v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==
180 | dependencies:
181 | "@babel/helper-annotate-as-pure" "^7.15.4"
182 | "@babel/helper-wrap-function" "^7.15.4"
183 | "@babel/types" "^7.15.4"
184 |
185 | "@babel/helper-replace-supers@^7.14.5", "@babel/helper-replace-supers@^7.15.4":
186 | version "7.15.4"
187 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz#52a8ab26ba918c7f6dee28628b07071ac7b7347a"
188 | integrity sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==
189 | dependencies:
190 | "@babel/helper-member-expression-to-functions" "^7.15.4"
191 | "@babel/helper-optimise-call-expression" "^7.15.4"
192 | "@babel/traverse" "^7.15.4"
193 | "@babel/types" "^7.15.4"
194 |
195 | "@babel/helper-simple-access@^7.15.4":
196 | version "7.15.4"
197 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b"
198 | integrity sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==
199 | dependencies:
200 | "@babel/types" "^7.15.4"
201 |
202 | "@babel/helper-skip-transparent-expression-wrappers@^7.14.5", "@babel/helper-skip-transparent-expression-wrappers@^7.15.4":
203 | version "7.15.4"
204 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz#707dbdba1f4ad0fa34f9114fc8197aec7d5da2eb"
205 | integrity sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==
206 | dependencies:
207 | "@babel/types" "^7.15.4"
208 |
209 | "@babel/helper-split-export-declaration@^7.15.4":
210 | version "7.15.4"
211 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257"
212 | integrity sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==
213 | dependencies:
214 | "@babel/types" "^7.15.4"
215 |
216 | "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7":
217 | version "7.15.7"
218 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389"
219 | integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==
220 |
221 | "@babel/helper-validator-option@^7.14.5":
222 | version "7.14.5"
223 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3"
224 | integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==
225 |
226 | "@babel/helper-wrap-function@^7.15.4":
227 | version "7.15.4"
228 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz#6f754b2446cfaf3d612523e6ab8d79c27c3a3de7"
229 | integrity sha512-Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==
230 | dependencies:
231 | "@babel/helper-function-name" "^7.15.4"
232 | "@babel/template" "^7.15.4"
233 | "@babel/traverse" "^7.15.4"
234 | "@babel/types" "^7.15.4"
235 |
236 | "@babel/helpers@^7.15.4":
237 | version "7.15.4"
238 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.4.tgz#5f40f02050a3027121a3cf48d497c05c555eaf43"
239 | integrity sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==
240 | dependencies:
241 | "@babel/template" "^7.15.4"
242 | "@babel/traverse" "^7.15.4"
243 | "@babel/types" "^7.15.4"
244 |
245 | "@babel/highlight@^7.14.5":
246 | version "7.14.5"
247 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
248 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==
249 | dependencies:
250 | "@babel/helper-validator-identifier" "^7.14.5"
251 | chalk "^2.0.0"
252 | js-tokens "^4.0.0"
253 |
254 | "@babel/parser@^7.1.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.5", "@babel/parser@^7.7.2":
255 | version "7.15.7"
256 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.7.tgz#0c3ed4a2eb07b165dfa85b3cc45c727334c4edae"
257 | integrity sha512-rycZXvQ+xS9QyIcJ9HXeDWf1uxqlbVFAUq0Rq0dbc50Zb/+wUe/ehyfzGfm9KZZF0kBejYgxltBXocP+gKdL2g==
258 |
259 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.15.4":
260 | version "7.15.4"
261 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz#dbdeabb1e80f622d9f0b583efb2999605e0a567e"
262 | integrity sha512-eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog==
263 | dependencies:
264 | "@babel/helper-plugin-utils" "^7.14.5"
265 | "@babel/helper-skip-transparent-expression-wrappers" "^7.15.4"
266 | "@babel/plugin-proposal-optional-chaining" "^7.14.5"
267 |
268 | "@babel/plugin-proposal-async-generator-functions@^7.15.4":
269 | version "7.15.4"
270 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.4.tgz#f82aabe96c135d2ceaa917feb9f5fca31635277e"
271 | integrity sha512-2zt2g5vTXpMC3OmK6uyjvdXptbhBXfA77XGrd3gh93zwG8lZYBLOBImiGBEG0RANu3JqKEACCz5CGk73OJROBw==
272 | dependencies:
273 | "@babel/helper-plugin-utils" "^7.14.5"
274 | "@babel/helper-remap-async-to-generator" "^7.15.4"
275 | "@babel/plugin-syntax-async-generators" "^7.8.4"
276 |
277 | "@babel/plugin-proposal-class-properties@^7.14.5":
278 | version "7.14.5"
279 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e"
280 | integrity sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==
281 | dependencies:
282 | "@babel/helper-create-class-features-plugin" "^7.14.5"
283 | "@babel/helper-plugin-utils" "^7.14.5"
284 |
285 | "@babel/plugin-proposal-class-static-block@^7.15.4":
286 | version "7.15.4"
287 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz#3e7ca6128453c089e8b477a99f970c63fc1cb8d7"
288 | integrity sha512-M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA==
289 | dependencies:
290 | "@babel/helper-create-class-features-plugin" "^7.15.4"
291 | "@babel/helper-plugin-utils" "^7.14.5"
292 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
293 |
294 | "@babel/plugin-proposal-dynamic-import@^7.14.5":
295 | version "7.14.5"
296 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz#0c6617df461c0c1f8fff3b47cd59772360101d2c"
297 | integrity sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==
298 | dependencies:
299 | "@babel/helper-plugin-utils" "^7.14.5"
300 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
301 |
302 | "@babel/plugin-proposal-export-namespace-from@^7.14.5":
303 | version "7.14.5"
304 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz#dbad244310ce6ccd083072167d8cea83a52faf76"
305 | integrity sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==
306 | dependencies:
307 | "@babel/helper-plugin-utils" "^7.14.5"
308 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
309 |
310 | "@babel/plugin-proposal-json-strings@^7.14.5":
311 | version "7.14.5"
312 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz#38de60db362e83a3d8c944ac858ddf9f0c2239eb"
313 | integrity sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==
314 | dependencies:
315 | "@babel/helper-plugin-utils" "^7.14.5"
316 | "@babel/plugin-syntax-json-strings" "^7.8.3"
317 |
318 | "@babel/plugin-proposal-logical-assignment-operators@^7.14.5":
319 | version "7.14.5"
320 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz#6e6229c2a99b02ab2915f82571e0cc646a40c738"
321 | integrity sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==
322 | dependencies:
323 | "@babel/helper-plugin-utils" "^7.14.5"
324 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
325 |
326 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5":
327 | version "7.14.5"
328 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz#ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6"
329 | integrity sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==
330 | dependencies:
331 | "@babel/helper-plugin-utils" "^7.14.5"
332 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
333 |
334 | "@babel/plugin-proposal-numeric-separator@^7.14.5":
335 | version "7.14.5"
336 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz#83631bf33d9a51df184c2102a069ac0c58c05f18"
337 | integrity sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==
338 | dependencies:
339 | "@babel/helper-plugin-utils" "^7.14.5"
340 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
341 |
342 | "@babel/plugin-proposal-object-rest-spread@^7.15.6":
343 | version "7.15.6"
344 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz#ef68050c8703d07b25af402cb96cf7f34a68ed11"
345 | integrity sha512-qtOHo7A1Vt+O23qEAX+GdBpqaIuD3i9VRrWgCJeq7WO6H2d14EK3q11urj5Te2MAeK97nMiIdRpwd/ST4JFbNg==
346 | dependencies:
347 | "@babel/compat-data" "^7.15.0"
348 | "@babel/helper-compilation-targets" "^7.15.4"
349 | "@babel/helper-plugin-utils" "^7.14.5"
350 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
351 | "@babel/plugin-transform-parameters" "^7.15.4"
352 |
353 | "@babel/plugin-proposal-optional-catch-binding@^7.14.5":
354 | version "7.14.5"
355 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz#939dd6eddeff3a67fdf7b3f044b5347262598c3c"
356 | integrity sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==
357 | dependencies:
358 | "@babel/helper-plugin-utils" "^7.14.5"
359 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
360 |
361 | "@babel/plugin-proposal-optional-chaining@^7.14.5":
362 | version "7.14.5"
363 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz#fa83651e60a360e3f13797eef00b8d519695b603"
364 | integrity sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==
365 | dependencies:
366 | "@babel/helper-plugin-utils" "^7.14.5"
367 | "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
368 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
369 |
370 | "@babel/plugin-proposal-private-methods@^7.14.5":
371 | version "7.14.5"
372 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz#37446495996b2945f30f5be5b60d5e2aa4f5792d"
373 | integrity sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==
374 | dependencies:
375 | "@babel/helper-create-class-features-plugin" "^7.14.5"
376 | "@babel/helper-plugin-utils" "^7.14.5"
377 |
378 | "@babel/plugin-proposal-private-property-in-object@^7.15.4":
379 | version "7.15.4"
380 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz#55c5e3b4d0261fd44fe637e3f624cfb0f484e3e5"
381 | integrity sha512-X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA==
382 | dependencies:
383 | "@babel/helper-annotate-as-pure" "^7.15.4"
384 | "@babel/helper-create-class-features-plugin" "^7.15.4"
385 | "@babel/helper-plugin-utils" "^7.14.5"
386 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
387 |
388 | "@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
389 | version "7.14.5"
390 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz#0f95ee0e757a5d647f378daa0eca7e93faa8bbe8"
391 | integrity sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==
392 | dependencies:
393 | "@babel/helper-create-regexp-features-plugin" "^7.14.5"
394 | "@babel/helper-plugin-utils" "^7.14.5"
395 |
396 | "@babel/plugin-syntax-async-generators@^7.8.4":
397 | version "7.8.4"
398 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
399 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
400 | dependencies:
401 | "@babel/helper-plugin-utils" "^7.8.0"
402 |
403 | "@babel/plugin-syntax-bigint@^7.8.3":
404 | version "7.8.3"
405 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
406 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
407 | dependencies:
408 | "@babel/helper-plugin-utils" "^7.8.0"
409 |
410 | "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3":
411 | version "7.12.13"
412 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
413 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
414 | dependencies:
415 | "@babel/helper-plugin-utils" "^7.12.13"
416 |
417 | "@babel/plugin-syntax-class-static-block@^7.14.5":
418 | version "7.14.5"
419 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
420 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
421 | dependencies:
422 | "@babel/helper-plugin-utils" "^7.14.5"
423 |
424 | "@babel/plugin-syntax-dynamic-import@^7.8.3":
425 | version "7.8.3"
426 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
427 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
428 | dependencies:
429 | "@babel/helper-plugin-utils" "^7.8.0"
430 |
431 | "@babel/plugin-syntax-export-namespace-from@^7.8.3":
432 | version "7.8.3"
433 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
434 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
435 | dependencies:
436 | "@babel/helper-plugin-utils" "^7.8.3"
437 |
438 | "@babel/plugin-syntax-import-meta@^7.8.3":
439 | version "7.10.4"
440 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
441 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
442 | dependencies:
443 | "@babel/helper-plugin-utils" "^7.10.4"
444 |
445 | "@babel/plugin-syntax-json-strings@^7.8.3":
446 | version "7.8.3"
447 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
448 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
449 | dependencies:
450 | "@babel/helper-plugin-utils" "^7.8.0"
451 |
452 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
453 | version "7.10.4"
454 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
455 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
456 | dependencies:
457 | "@babel/helper-plugin-utils" "^7.10.4"
458 |
459 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
460 | version "7.8.3"
461 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
462 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
463 | dependencies:
464 | "@babel/helper-plugin-utils" "^7.8.0"
465 |
466 | "@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3":
467 | version "7.10.4"
468 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
469 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
470 | dependencies:
471 | "@babel/helper-plugin-utils" "^7.10.4"
472 |
473 | "@babel/plugin-syntax-object-rest-spread@^7.8.3":
474 | version "7.8.3"
475 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
476 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
477 | dependencies:
478 | "@babel/helper-plugin-utils" "^7.8.0"
479 |
480 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
481 | version "7.8.3"
482 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
483 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
484 | dependencies:
485 | "@babel/helper-plugin-utils" "^7.8.0"
486 |
487 | "@babel/plugin-syntax-optional-chaining@^7.8.3":
488 | version "7.8.3"
489 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
490 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
491 | dependencies:
492 | "@babel/helper-plugin-utils" "^7.8.0"
493 |
494 | "@babel/plugin-syntax-private-property-in-object@^7.14.5":
495 | version "7.14.5"
496 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
497 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
498 | dependencies:
499 | "@babel/helper-plugin-utils" "^7.14.5"
500 |
501 | "@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3":
502 | version "7.14.5"
503 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
504 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
505 | dependencies:
506 | "@babel/helper-plugin-utils" "^7.14.5"
507 |
508 | "@babel/plugin-syntax-typescript@^7.14.5", "@babel/plugin-syntax-typescript@^7.7.2":
509 | version "7.14.5"
510 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716"
511 | integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==
512 | dependencies:
513 | "@babel/helper-plugin-utils" "^7.14.5"
514 |
515 | "@babel/plugin-transform-arrow-functions@^7.14.5":
516 | version "7.14.5"
517 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a"
518 | integrity sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==
519 | dependencies:
520 | "@babel/helper-plugin-utils" "^7.14.5"
521 |
522 | "@babel/plugin-transform-async-to-generator@^7.14.5":
523 | version "7.14.5"
524 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz#72c789084d8f2094acb945633943ef8443d39e67"
525 | integrity sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==
526 | dependencies:
527 | "@babel/helper-module-imports" "^7.14.5"
528 | "@babel/helper-plugin-utils" "^7.14.5"
529 | "@babel/helper-remap-async-to-generator" "^7.14.5"
530 |
531 | "@babel/plugin-transform-block-scoped-functions@^7.14.5":
532 | version "7.14.5"
533 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4"
534 | integrity sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==
535 | dependencies:
536 | "@babel/helper-plugin-utils" "^7.14.5"
537 |
538 | "@babel/plugin-transform-block-scoping@^7.15.3":
539 | version "7.15.3"
540 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz#94c81a6e2fc230bcce6ef537ac96a1e4d2b3afaf"
541 | integrity sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==
542 | dependencies:
543 | "@babel/helper-plugin-utils" "^7.14.5"
544 |
545 | "@babel/plugin-transform-classes@^7.15.4":
546 | version "7.15.4"
547 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz#50aee17aaf7f332ae44e3bce4c2e10534d5d3bf1"
548 | integrity sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==
549 | dependencies:
550 | "@babel/helper-annotate-as-pure" "^7.15.4"
551 | "@babel/helper-function-name" "^7.15.4"
552 | "@babel/helper-optimise-call-expression" "^7.15.4"
553 | "@babel/helper-plugin-utils" "^7.14.5"
554 | "@babel/helper-replace-supers" "^7.15.4"
555 | "@babel/helper-split-export-declaration" "^7.15.4"
556 | globals "^11.1.0"
557 |
558 | "@babel/plugin-transform-computed-properties@^7.14.5":
559 | version "7.14.5"
560 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f"
561 | integrity sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==
562 | dependencies:
563 | "@babel/helper-plugin-utils" "^7.14.5"
564 |
565 | "@babel/plugin-transform-destructuring@^7.14.7":
566 | version "7.14.7"
567 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz#0ad58ed37e23e22084d109f185260835e5557576"
568 | integrity sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==
569 | dependencies:
570 | "@babel/helper-plugin-utils" "^7.14.5"
571 |
572 | "@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4":
573 | version "7.14.5"
574 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz#2f6bf76e46bdf8043b4e7e16cf24532629ba0c7a"
575 | integrity sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==
576 | dependencies:
577 | "@babel/helper-create-regexp-features-plugin" "^7.14.5"
578 | "@babel/helper-plugin-utils" "^7.14.5"
579 |
580 | "@babel/plugin-transform-duplicate-keys@^7.14.5":
581 | version "7.14.5"
582 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz#365a4844881bdf1501e3a9f0270e7f0f91177954"
583 | integrity sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==
584 | dependencies:
585 | "@babel/helper-plugin-utils" "^7.14.5"
586 |
587 | "@babel/plugin-transform-exponentiation-operator@^7.14.5":
588 | version "7.14.5"
589 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz#5154b8dd6a3dfe6d90923d61724bd3deeb90b493"
590 | integrity sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==
591 | dependencies:
592 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5"
593 | "@babel/helper-plugin-utils" "^7.14.5"
594 |
595 | "@babel/plugin-transform-for-of@^7.15.4":
596 | version "7.15.4"
597 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz#25c62cce2718cfb29715f416e75d5263fb36a8c2"
598 | integrity sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==
599 | dependencies:
600 | "@babel/helper-plugin-utils" "^7.14.5"
601 |
602 | "@babel/plugin-transform-function-name@^7.14.5":
603 | version "7.14.5"
604 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2"
605 | integrity sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==
606 | dependencies:
607 | "@babel/helper-function-name" "^7.14.5"
608 | "@babel/helper-plugin-utils" "^7.14.5"
609 |
610 | "@babel/plugin-transform-literals@^7.14.5":
611 | version "7.14.5"
612 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78"
613 | integrity sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==
614 | dependencies:
615 | "@babel/helper-plugin-utils" "^7.14.5"
616 |
617 | "@babel/plugin-transform-member-expression-literals@^7.14.5":
618 | version "7.14.5"
619 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7"
620 | integrity sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==
621 | dependencies:
622 | "@babel/helper-plugin-utils" "^7.14.5"
623 |
624 | "@babel/plugin-transform-modules-amd@^7.14.5":
625 | version "7.14.5"
626 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz#4fd9ce7e3411cb8b83848480b7041d83004858f7"
627 | integrity sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==
628 | dependencies:
629 | "@babel/helper-module-transforms" "^7.14.5"
630 | "@babel/helper-plugin-utils" "^7.14.5"
631 | babel-plugin-dynamic-import-node "^2.3.3"
632 |
633 | "@babel/plugin-transform-modules-commonjs@^7.15.4":
634 | version "7.15.4"
635 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz#8201101240eabb5a76c08ef61b2954f767b6b4c1"
636 | integrity sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==
637 | dependencies:
638 | "@babel/helper-module-transforms" "^7.15.4"
639 | "@babel/helper-plugin-utils" "^7.14.5"
640 | "@babel/helper-simple-access" "^7.15.4"
641 | babel-plugin-dynamic-import-node "^2.3.3"
642 |
643 | "@babel/plugin-transform-modules-systemjs@^7.15.4":
644 | version "7.15.4"
645 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz#b42890c7349a78c827719f1d2d0cd38c7d268132"
646 | integrity sha512-fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==
647 | dependencies:
648 | "@babel/helper-hoist-variables" "^7.15.4"
649 | "@babel/helper-module-transforms" "^7.15.4"
650 | "@babel/helper-plugin-utils" "^7.14.5"
651 | "@babel/helper-validator-identifier" "^7.14.9"
652 | babel-plugin-dynamic-import-node "^2.3.3"
653 |
654 | "@babel/plugin-transform-modules-umd@^7.14.5":
655 | version "7.14.5"
656 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz#fb662dfee697cce274a7cda525190a79096aa6e0"
657 | integrity sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==
658 | dependencies:
659 | "@babel/helper-module-transforms" "^7.14.5"
660 | "@babel/helper-plugin-utils" "^7.14.5"
661 |
662 | "@babel/plugin-transform-named-capturing-groups-regex@^7.14.9":
663 | version "7.14.9"
664 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz#c68f5c5d12d2ebaba3762e57c2c4f6347a46e7b2"
665 | integrity sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==
666 | dependencies:
667 | "@babel/helper-create-regexp-features-plugin" "^7.14.5"
668 |
669 | "@babel/plugin-transform-new-target@^7.14.5":
670 | version "7.14.5"
671 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz#31bdae8b925dc84076ebfcd2a9940143aed7dbf8"
672 | integrity sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==
673 | dependencies:
674 | "@babel/helper-plugin-utils" "^7.14.5"
675 |
676 | "@babel/plugin-transform-object-super@^7.14.5":
677 | version "7.14.5"
678 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45"
679 | integrity sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==
680 | dependencies:
681 | "@babel/helper-plugin-utils" "^7.14.5"
682 | "@babel/helper-replace-supers" "^7.14.5"
683 |
684 | "@babel/plugin-transform-parameters@^7.15.4":
685 | version "7.15.4"
686 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz#5f2285cc3160bf48c8502432716b48504d29ed62"
687 | integrity sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==
688 | dependencies:
689 | "@babel/helper-plugin-utils" "^7.14.5"
690 |
691 | "@babel/plugin-transform-property-literals@^7.14.5":
692 | version "7.14.5"
693 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34"
694 | integrity sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==
695 | dependencies:
696 | "@babel/helper-plugin-utils" "^7.14.5"
697 |
698 | "@babel/plugin-transform-regenerator@^7.14.5":
699 | version "7.14.5"
700 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz#9676fd5707ed28f522727c5b3c0aa8544440b04f"
701 | integrity sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==
702 | dependencies:
703 | regenerator-transform "^0.14.2"
704 |
705 | "@babel/plugin-transform-reserved-words@^7.14.5":
706 | version "7.14.5"
707 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz#c44589b661cfdbef8d4300dcc7469dffa92f8304"
708 | integrity sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==
709 | dependencies:
710 | "@babel/helper-plugin-utils" "^7.14.5"
711 |
712 | "@babel/plugin-transform-shorthand-properties@^7.14.5":
713 | version "7.14.5"
714 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58"
715 | integrity sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==
716 | dependencies:
717 | "@babel/helper-plugin-utils" "^7.14.5"
718 |
719 | "@babel/plugin-transform-spread@^7.14.6":
720 | version "7.14.6"
721 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz#6bd40e57fe7de94aa904851963b5616652f73144"
722 | integrity sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==
723 | dependencies:
724 | "@babel/helper-plugin-utils" "^7.14.5"
725 | "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
726 |
727 | "@babel/plugin-transform-sticky-regex@^7.14.5":
728 | version "7.14.5"
729 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz#5b617542675e8b7761294381f3c28c633f40aeb9"
730 | integrity sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==
731 | dependencies:
732 | "@babel/helper-plugin-utils" "^7.14.5"
733 |
734 | "@babel/plugin-transform-template-literals@^7.14.5":
735 | version "7.14.5"
736 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93"
737 | integrity sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==
738 | dependencies:
739 | "@babel/helper-plugin-utils" "^7.14.5"
740 |
741 | "@babel/plugin-transform-typeof-symbol@^7.14.5":
742 | version "7.14.5"
743 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz#39af2739e989a2bd291bf6b53f16981423d457d4"
744 | integrity sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==
745 | dependencies:
746 | "@babel/helper-plugin-utils" "^7.14.5"
747 |
748 | "@babel/plugin-transform-typescript@^7.15.0":
749 | version "7.15.4"
750 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.4.tgz#db7a062dcf8be5fc096bc0eeb40a13fbfa1fa251"
751 | integrity sha512-sM1/FEjwYjXvMwu1PJStH11kJ154zd/lpY56NQJ5qH2D0mabMv1CAy/kdvS9RP4Xgfj9fBBA3JiSLdDHgXdzOA==
752 | dependencies:
753 | "@babel/helper-create-class-features-plugin" "^7.15.4"
754 | "@babel/helper-plugin-utils" "^7.14.5"
755 | "@babel/plugin-syntax-typescript" "^7.14.5"
756 |
757 | "@babel/plugin-transform-unicode-escapes@^7.14.5":
758 | version "7.14.5"
759 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz#9d4bd2a681e3c5d7acf4f57fa9e51175d91d0c6b"
760 | integrity sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==
761 | dependencies:
762 | "@babel/helper-plugin-utils" "^7.14.5"
763 |
764 | "@babel/plugin-transform-unicode-regex@^7.14.5":
765 | version "7.14.5"
766 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz#4cd09b6c8425dd81255c7ceb3fb1836e7414382e"
767 | integrity sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==
768 | dependencies:
769 | "@babel/helper-create-regexp-features-plugin" "^7.14.5"
770 | "@babel/helper-plugin-utils" "^7.14.5"
771 |
772 | "@babel/preset-env@^7.15.6":
773 | version "7.15.6"
774 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.15.6.tgz#0f3898db9d63d320f21b17380d8462779de57659"
775 | integrity sha512-L+6jcGn7EWu7zqaO2uoTDjjMBW+88FXzV8KvrBl2z6MtRNxlsmUNRlZPaNNPUTgqhyC5DHNFk/2Jmra+ublZWw==
776 | dependencies:
777 | "@babel/compat-data" "^7.15.0"
778 | "@babel/helper-compilation-targets" "^7.15.4"
779 | "@babel/helper-plugin-utils" "^7.14.5"
780 | "@babel/helper-validator-option" "^7.14.5"
781 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.15.4"
782 | "@babel/plugin-proposal-async-generator-functions" "^7.15.4"
783 | "@babel/plugin-proposal-class-properties" "^7.14.5"
784 | "@babel/plugin-proposal-class-static-block" "^7.15.4"
785 | "@babel/plugin-proposal-dynamic-import" "^7.14.5"
786 | "@babel/plugin-proposal-export-namespace-from" "^7.14.5"
787 | "@babel/plugin-proposal-json-strings" "^7.14.5"
788 | "@babel/plugin-proposal-logical-assignment-operators" "^7.14.5"
789 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5"
790 | "@babel/plugin-proposal-numeric-separator" "^7.14.5"
791 | "@babel/plugin-proposal-object-rest-spread" "^7.15.6"
792 | "@babel/plugin-proposal-optional-catch-binding" "^7.14.5"
793 | "@babel/plugin-proposal-optional-chaining" "^7.14.5"
794 | "@babel/plugin-proposal-private-methods" "^7.14.5"
795 | "@babel/plugin-proposal-private-property-in-object" "^7.15.4"
796 | "@babel/plugin-proposal-unicode-property-regex" "^7.14.5"
797 | "@babel/plugin-syntax-async-generators" "^7.8.4"
798 | "@babel/plugin-syntax-class-properties" "^7.12.13"
799 | "@babel/plugin-syntax-class-static-block" "^7.14.5"
800 | "@babel/plugin-syntax-dynamic-import" "^7.8.3"
801 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
802 | "@babel/plugin-syntax-json-strings" "^7.8.3"
803 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
804 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
805 | "@babel/plugin-syntax-numeric-separator" "^7.10.4"
806 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
807 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
808 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
809 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
810 | "@babel/plugin-syntax-top-level-await" "^7.14.5"
811 | "@babel/plugin-transform-arrow-functions" "^7.14.5"
812 | "@babel/plugin-transform-async-to-generator" "^7.14.5"
813 | "@babel/plugin-transform-block-scoped-functions" "^7.14.5"
814 | "@babel/plugin-transform-block-scoping" "^7.15.3"
815 | "@babel/plugin-transform-classes" "^7.15.4"
816 | "@babel/plugin-transform-computed-properties" "^7.14.5"
817 | "@babel/plugin-transform-destructuring" "^7.14.7"
818 | "@babel/plugin-transform-dotall-regex" "^7.14.5"
819 | "@babel/plugin-transform-duplicate-keys" "^7.14.5"
820 | "@babel/plugin-transform-exponentiation-operator" "^7.14.5"
821 | "@babel/plugin-transform-for-of" "^7.15.4"
822 | "@babel/plugin-transform-function-name" "^7.14.5"
823 | "@babel/plugin-transform-literals" "^7.14.5"
824 | "@babel/plugin-transform-member-expression-literals" "^7.14.5"
825 | "@babel/plugin-transform-modules-amd" "^7.14.5"
826 | "@babel/plugin-transform-modules-commonjs" "^7.15.4"
827 | "@babel/plugin-transform-modules-systemjs" "^7.15.4"
828 | "@babel/plugin-transform-modules-umd" "^7.14.5"
829 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.9"
830 | "@babel/plugin-transform-new-target" "^7.14.5"
831 | "@babel/plugin-transform-object-super" "^7.14.5"
832 | "@babel/plugin-transform-parameters" "^7.15.4"
833 | "@babel/plugin-transform-property-literals" "^7.14.5"
834 | "@babel/plugin-transform-regenerator" "^7.14.5"
835 | "@babel/plugin-transform-reserved-words" "^7.14.5"
836 | "@babel/plugin-transform-shorthand-properties" "^7.14.5"
837 | "@babel/plugin-transform-spread" "^7.14.6"
838 | "@babel/plugin-transform-sticky-regex" "^7.14.5"
839 | "@babel/plugin-transform-template-literals" "^7.14.5"
840 | "@babel/plugin-transform-typeof-symbol" "^7.14.5"
841 | "@babel/plugin-transform-unicode-escapes" "^7.14.5"
842 | "@babel/plugin-transform-unicode-regex" "^7.14.5"
843 | "@babel/preset-modules" "^0.1.4"
844 | "@babel/types" "^7.15.6"
845 | babel-plugin-polyfill-corejs2 "^0.2.2"
846 | babel-plugin-polyfill-corejs3 "^0.2.2"
847 | babel-plugin-polyfill-regenerator "^0.2.2"
848 | core-js-compat "^3.16.0"
849 | semver "^6.3.0"
850 |
851 | "@babel/preset-modules@^0.1.4":
852 | version "0.1.4"
853 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
854 | integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
855 | dependencies:
856 | "@babel/helper-plugin-utils" "^7.0.0"
857 | "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
858 | "@babel/plugin-transform-dotall-regex" "^7.4.4"
859 | "@babel/types" "^7.4.4"
860 | esutils "^2.0.2"
861 |
862 | "@babel/preset-typescript@^7.15.0":
863 | version "7.15.0"
864 | resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz#e8fca638a1a0f64f14e1119f7fe4500277840945"
865 | integrity sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==
866 | dependencies:
867 | "@babel/helper-plugin-utils" "^7.14.5"
868 | "@babel/helper-validator-option" "^7.14.5"
869 | "@babel/plugin-transform-typescript" "^7.15.0"
870 |
871 | "@babel/runtime@^7.8.4":
872 | version "7.15.4"
873 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a"
874 | integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==
875 | dependencies:
876 | regenerator-runtime "^0.13.4"
877 |
878 | "@babel/template@^7.15.4", "@babel/template@^7.3.3":
879 | version "7.15.4"
880 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.15.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f194"
881 | integrity sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==
882 | dependencies:
883 | "@babel/code-frame" "^7.14.5"
884 | "@babel/parser" "^7.15.4"
885 | "@babel/types" "^7.15.4"
886 |
887 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.7.2":
888 | version "7.15.4"
889 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d"
890 | integrity sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==
891 | dependencies:
892 | "@babel/code-frame" "^7.14.5"
893 | "@babel/generator" "^7.15.4"
894 | "@babel/helper-function-name" "^7.15.4"
895 | "@babel/helper-hoist-variables" "^7.15.4"
896 | "@babel/helper-split-export-declaration" "^7.15.4"
897 | "@babel/parser" "^7.15.4"
898 | "@babel/types" "^7.15.4"
899 | debug "^4.1.0"
900 | globals "^11.1.0"
901 |
902 | "@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
903 | version "7.15.6"
904 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f"
905 | integrity sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==
906 | dependencies:
907 | "@babel/helper-validator-identifier" "^7.14.9"
908 | to-fast-properties "^2.0.0"
909 |
910 | "@bcoe/v8-coverage@^0.2.3":
911 | version "0.2.3"
912 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
913 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
914 |
915 | "@istanbuljs/load-nyc-config@^1.0.0":
916 | version "1.1.0"
917 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
918 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
919 | dependencies:
920 | camelcase "^5.3.1"
921 | find-up "^4.1.0"
922 | get-package-type "^0.1.0"
923 | js-yaml "^3.13.1"
924 | resolve-from "^5.0.0"
925 |
926 | "@istanbuljs/schema@^0.1.2":
927 | version "0.1.3"
928 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
929 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
930 |
931 | "@jest/console@^27.2.4":
932 | version "27.2.4"
933 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.2.4.tgz#2f1a4bf82b9940065d4818fac271def99ec55e5e"
934 | integrity sha512-94znCKynPZpDpYHQ6esRJSc11AmONrVkBOBZiD7S+bSubHhrUfbS95EY5HIOxhm4PQO7cnvZkL3oJcY0oMA+Wg==
935 | dependencies:
936 | "@jest/types" "^27.2.4"
937 | "@types/node" "*"
938 | chalk "^4.0.0"
939 | jest-message-util "^27.2.4"
940 | jest-util "^27.2.4"
941 | slash "^3.0.0"
942 |
943 | "@jest/core@^27.2.4":
944 | version "27.2.4"
945 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.2.4.tgz#0b932da787d64848eab720dbb88e5b7a3f86e539"
946 | integrity sha512-UNQLyy+rXoojNm2MGlapgzWhZD1CT1zcHZQYeiD0xE7MtJfC19Q6J5D/Lm2l7i4V97T30usKDoEtjI8vKwWcLg==
947 | dependencies:
948 | "@jest/console" "^27.2.4"
949 | "@jest/reporters" "^27.2.4"
950 | "@jest/test-result" "^27.2.4"
951 | "@jest/transform" "^27.2.4"
952 | "@jest/types" "^27.2.4"
953 | "@types/node" "*"
954 | ansi-escapes "^4.2.1"
955 | chalk "^4.0.0"
956 | emittery "^0.8.1"
957 | exit "^0.1.2"
958 | graceful-fs "^4.2.4"
959 | jest-changed-files "^27.2.4"
960 | jest-config "^27.2.4"
961 | jest-haste-map "^27.2.4"
962 | jest-message-util "^27.2.4"
963 | jest-regex-util "^27.0.6"
964 | jest-resolve "^27.2.4"
965 | jest-resolve-dependencies "^27.2.4"
966 | jest-runner "^27.2.4"
967 | jest-runtime "^27.2.4"
968 | jest-snapshot "^27.2.4"
969 | jest-util "^27.2.4"
970 | jest-validate "^27.2.4"
971 | jest-watcher "^27.2.4"
972 | micromatch "^4.0.4"
973 | rimraf "^3.0.0"
974 | slash "^3.0.0"
975 | strip-ansi "^6.0.0"
976 |
977 | "@jest/environment@^27.2.4":
978 | version "27.2.4"
979 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.2.4.tgz#db3e60f7dd30ab950f6ce2d6d7293ed9a6b7cbcd"
980 | integrity sha512-wkuui5yr3SSQW0XD0Qm3TATUbL/WE3LDEM3ulC+RCQhMf2yxhci8x7svGkZ4ivJ6Pc94oOzpZ6cdHBAMSYd1ew==
981 | dependencies:
982 | "@jest/fake-timers" "^27.2.4"
983 | "@jest/types" "^27.2.4"
984 | "@types/node" "*"
985 | jest-mock "^27.2.4"
986 |
987 | "@jest/fake-timers@^27.2.4":
988 | version "27.2.4"
989 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.2.4.tgz#00df08bd60332bd59503cb5b6db21e4903785f86"
990 | integrity sha512-cs/TzvwWUM7kAA6Qm/890SK6JJ2pD5RfDNM3SSEom6BmdyV6OiWP1qf/pqo6ts6xwpcM36oN0wSEzcZWc6/B6w==
991 | dependencies:
992 | "@jest/types" "^27.2.4"
993 | "@sinonjs/fake-timers" "^8.0.1"
994 | "@types/node" "*"
995 | jest-message-util "^27.2.4"
996 | jest-mock "^27.2.4"
997 | jest-util "^27.2.4"
998 |
999 | "@jest/globals@^27.2.4":
1000 | version "27.2.4"
1001 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.2.4.tgz#0aeb22b011f8c8c4b8ff3b4dbd1ee0392fe0dd8a"
1002 | integrity sha512-DRsRs5dh0i+fA9mGHylTU19+8fhzNJoEzrgsu+zgJoZth3x8/0juCQ8nVVdW1er4Cqifb/ET7/hACYVPD0dBEA==
1003 | dependencies:
1004 | "@jest/environment" "^27.2.4"
1005 | "@jest/types" "^27.2.4"
1006 | expect "^27.2.4"
1007 |
1008 | "@jest/reporters@^27.2.4":
1009 | version "27.2.4"
1010 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.2.4.tgz#1482ff007f2e919d85c54b1563abb8b2ea2d5198"
1011 | integrity sha512-LHeSdDnDZkDnJ8kvnjcqV8P1Yv/32yL4d4XfR5gBiy3xGO0onwll1QEbvtW96fIwhx2nejug0GTaEdNDoyr3fQ==
1012 | dependencies:
1013 | "@bcoe/v8-coverage" "^0.2.3"
1014 | "@jest/console" "^27.2.4"
1015 | "@jest/test-result" "^27.2.4"
1016 | "@jest/transform" "^27.2.4"
1017 | "@jest/types" "^27.2.4"
1018 | chalk "^4.0.0"
1019 | collect-v8-coverage "^1.0.0"
1020 | exit "^0.1.2"
1021 | glob "^7.1.2"
1022 | graceful-fs "^4.2.4"
1023 | istanbul-lib-coverage "^3.0.0"
1024 | istanbul-lib-instrument "^4.0.3"
1025 | istanbul-lib-report "^3.0.0"
1026 | istanbul-lib-source-maps "^4.0.0"
1027 | istanbul-reports "^3.0.2"
1028 | jest-haste-map "^27.2.4"
1029 | jest-resolve "^27.2.4"
1030 | jest-util "^27.2.4"
1031 | jest-worker "^27.2.4"
1032 | slash "^3.0.0"
1033 | source-map "^0.6.0"
1034 | string-length "^4.0.1"
1035 | terminal-link "^2.0.0"
1036 | v8-to-istanbul "^8.1.0"
1037 |
1038 | "@jest/source-map@^27.0.6":
1039 | version "27.0.6"
1040 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.0.6.tgz#be9e9b93565d49b0548b86e232092491fb60551f"
1041 | integrity sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g==
1042 | dependencies:
1043 | callsites "^3.0.0"
1044 | graceful-fs "^4.2.4"
1045 | source-map "^0.6.0"
1046 |
1047 | "@jest/test-result@^27.2.4":
1048 | version "27.2.4"
1049 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.2.4.tgz#d1ca8298d168f1b0be834bfb543b1ac0294c05d7"
1050 | integrity sha512-eU+PRo0+lIS01b0dTmMdVZ0TtcRSxEaYquZTRFMQz6CvsehGhx9bRzi9Zdw6VROviJyv7rstU+qAMX5pNBmnfQ==
1051 | dependencies:
1052 | "@jest/console" "^27.2.4"
1053 | "@jest/types" "^27.2.4"
1054 | "@types/istanbul-lib-coverage" "^2.0.0"
1055 | collect-v8-coverage "^1.0.0"
1056 |
1057 | "@jest/test-sequencer@^27.2.4":
1058 | version "27.2.4"
1059 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.2.4.tgz#df66422a3e9e7440ce8b7498e255fa6b52c0bc03"
1060 | integrity sha512-fpk5eknU3/DXE2QCCG1wv/a468+cfPo3Asu6d6yUtM9LOPh709ubZqrhuUOYfM8hXMrIpIdrv1CdCrWWabX0rQ==
1061 | dependencies:
1062 | "@jest/test-result" "^27.2.4"
1063 | graceful-fs "^4.2.4"
1064 | jest-haste-map "^27.2.4"
1065 | jest-runtime "^27.2.4"
1066 |
1067 | "@jest/transform@^27.2.4":
1068 | version "27.2.4"
1069 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.2.4.tgz#2fe5b6836895f7a1b8bdec442c51e83943c62733"
1070 | integrity sha512-n5FlX2TH0oQGwyVDKPxdJ5nI2sO7TJBFe3u3KaAtt7TOiV4yL+Y+rSFDl+Ic5MpbiA/eqXmLAQxjnBmWgS2rEA==
1071 | dependencies:
1072 | "@babel/core" "^7.1.0"
1073 | "@jest/types" "^27.2.4"
1074 | babel-plugin-istanbul "^6.0.0"
1075 | chalk "^4.0.0"
1076 | convert-source-map "^1.4.0"
1077 | fast-json-stable-stringify "^2.0.0"
1078 | graceful-fs "^4.2.4"
1079 | jest-haste-map "^27.2.4"
1080 | jest-regex-util "^27.0.6"
1081 | jest-util "^27.2.4"
1082 | micromatch "^4.0.4"
1083 | pirates "^4.0.1"
1084 | slash "^3.0.0"
1085 | source-map "^0.6.1"
1086 | write-file-atomic "^3.0.0"
1087 |
1088 | "@jest/types@^27.2.4":
1089 | version "27.2.4"
1090 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.2.4.tgz#2430042a66e00dc5b140c3636f4474d464c21ee8"
1091 | integrity sha512-IDO2ezTxeMvQAHxzG/ZvEyA47q0aVfzT95rGFl7bZs/Go0aIucvfDbS2rmnoEdXxlLQhcolmoG/wvL/uKx4tKA==
1092 | dependencies:
1093 | "@types/istanbul-lib-coverage" "^2.0.0"
1094 | "@types/istanbul-reports" "^3.0.0"
1095 | "@types/node" "*"
1096 | "@types/yargs" "^16.0.0"
1097 | chalk "^4.0.0"
1098 |
1099 | "@rollup/plugin-typescript@^8.2.5":
1100 | version "8.2.5"
1101 | resolved "https://registry.yarnpkg.com/@rollup/plugin-typescript/-/plugin-typescript-8.2.5.tgz#e0319761b2b5105615e5a0c371ae05bc2984b7de"
1102 | integrity sha512-QL/LvDol/PAGB2O0S7/+q2HpSUNodpw7z6nGn9BfoVCPOZ0r4EALrojFU29Bkoi2Hr2jgTocTejJ5GGWZfOxbQ==
1103 | dependencies:
1104 | "@rollup/pluginutils" "^3.1.0"
1105 | resolve "^1.17.0"
1106 |
1107 | "@rollup/pluginutils@^3.1.0":
1108 | version "3.1.0"
1109 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b"
1110 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
1111 | dependencies:
1112 | "@types/estree" "0.0.39"
1113 | estree-walker "^1.0.1"
1114 | picomatch "^2.2.2"
1115 |
1116 | "@sinonjs/commons@^1.7.0":
1117 | version "1.8.3"
1118 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d"
1119 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==
1120 | dependencies:
1121 | type-detect "4.0.8"
1122 |
1123 | "@sinonjs/fake-timers@^8.0.1":
1124 | version "8.0.1"
1125 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.0.1.tgz#1c1c9a91419f804e59ae8df316a07dd1c3a76b94"
1126 | integrity sha512-AU7kwFxreVd6OAXcAFlKSmZquiRUU0FvYm44k1Y1QbK7Co4m0aqfGMhjykIeQp/H6rcl+nFmj0zfdUcGVs9Dew==
1127 | dependencies:
1128 | "@sinonjs/commons" "^1.7.0"
1129 |
1130 | "@tootallnate/once@1":
1131 | version "1.1.2"
1132 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
1133 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
1134 |
1135 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14":
1136 | version "7.1.16"
1137 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.16.tgz#bc12c74b7d65e82d29876b5d0baf5c625ac58702"
1138 | integrity sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==
1139 | dependencies:
1140 | "@babel/parser" "^7.1.0"
1141 | "@babel/types" "^7.0.0"
1142 | "@types/babel__generator" "*"
1143 | "@types/babel__template" "*"
1144 | "@types/babel__traverse" "*"
1145 |
1146 | "@types/babel__generator@*":
1147 | version "7.6.3"
1148 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5"
1149 | integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==
1150 | dependencies:
1151 | "@babel/types" "^7.0.0"
1152 |
1153 | "@types/babel__template@*":
1154 | version "7.4.1"
1155 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969"
1156 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==
1157 | dependencies:
1158 | "@babel/parser" "^7.1.0"
1159 | "@babel/types" "^7.0.0"
1160 |
1161 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
1162 | version "7.14.2"
1163 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43"
1164 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==
1165 | dependencies:
1166 | "@babel/types" "^7.3.0"
1167 |
1168 | "@types/estree@0.0.39":
1169 | version "0.0.39"
1170 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
1171 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
1172 |
1173 | "@types/graceful-fs@^4.1.2":
1174 | version "4.1.5"
1175 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
1176 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
1177 | dependencies:
1178 | "@types/node" "*"
1179 |
1180 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
1181 | version "2.0.3"
1182 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762"
1183 | integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==
1184 |
1185 | "@types/istanbul-lib-report@*":
1186 | version "3.0.0"
1187 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
1188 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
1189 | dependencies:
1190 | "@types/istanbul-lib-coverage" "*"
1191 |
1192 | "@types/istanbul-reports@^3.0.0":
1193 | version "3.0.1"
1194 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff"
1195 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==
1196 | dependencies:
1197 | "@types/istanbul-lib-report" "*"
1198 |
1199 | "@types/jest@^27.0.2":
1200 | version "27.0.2"
1201 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.0.2.tgz#ac383c4d4aaddd29bbf2b916d8d105c304a5fcd7"
1202 | integrity sha512-4dRxkS/AFX0c5XW6IPMNOydLn2tEhNhJV7DnYK+0bjoJZ+QTmfucBlihX7aoEsh/ocYtkLC73UbnBXBXIxsULA==
1203 | dependencies:
1204 | jest-diff "^27.0.0"
1205 | pretty-format "^27.0.0"
1206 |
1207 | "@types/node@*", "@types/node@^16.10.2":
1208 | version "16.10.2"
1209 | resolved "https://registry.yarnpkg.com/@types/node/-/node-16.10.2.tgz#5764ca9aa94470adb4e1185fe2e9f19458992b2e"
1210 | integrity sha512-zCclL4/rx+W5SQTzFs9wyvvyCwoK9QtBpratqz2IYJ3O8Umrn0m3nsTv0wQBk9sRGpvUe9CwPDrQFB10f1FIjQ==
1211 |
1212 | "@types/prettier@^2.1.5":
1213 | version "2.4.1"
1214 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.1.tgz#e1303048d5389563e130f5bdd89d37a99acb75eb"
1215 | integrity sha512-Fo79ojj3vdEZOHg3wR9ksAMRz4P3S5fDB5e/YWZiFnyFQI1WY2Vftu9XoXVVtJfxB7Bpce/QTqWSSntkz2Znrw==
1216 |
1217 | "@types/stack-utils@^2.0.0":
1218 | version "2.0.1"
1219 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
1220 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
1221 |
1222 | "@types/yargs-parser@*":
1223 | version "20.2.1"
1224 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129"
1225 | integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==
1226 |
1227 | "@types/yargs@^16.0.0":
1228 | version "16.0.4"
1229 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977"
1230 | integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==
1231 | dependencies:
1232 | "@types/yargs-parser" "*"
1233 |
1234 | abab@^2.0.3, abab@^2.0.5:
1235 | version "2.0.5"
1236 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
1237 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
1238 |
1239 | acorn-globals@^6.0.0:
1240 | version "6.0.0"
1241 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45"
1242 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
1243 | dependencies:
1244 | acorn "^7.1.1"
1245 | acorn-walk "^7.1.1"
1246 |
1247 | acorn-walk@^7.1.1:
1248 | version "7.2.0"
1249 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
1250 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
1251 |
1252 | acorn@^7.1.1:
1253 | version "7.4.1"
1254 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
1255 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
1256 |
1257 | acorn@^8.2.4:
1258 | version "8.5.0"
1259 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2"
1260 | integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==
1261 |
1262 | agent-base@6:
1263 | version "6.0.2"
1264 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
1265 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
1266 | dependencies:
1267 | debug "4"
1268 |
1269 | ansi-escapes@^4.2.1:
1270 | version "4.3.2"
1271 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
1272 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
1273 | dependencies:
1274 | type-fest "^0.21.3"
1275 |
1276 | ansi-regex@^5.0.1:
1277 | version "5.0.1"
1278 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
1279 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
1280 |
1281 | ansi-styles@^3.2.1:
1282 | version "3.2.1"
1283 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
1284 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
1285 | dependencies:
1286 | color-convert "^1.9.0"
1287 |
1288 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
1289 | version "4.3.0"
1290 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
1291 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
1292 | dependencies:
1293 | color-convert "^2.0.1"
1294 |
1295 | ansi-styles@^5.0.0:
1296 | version "5.2.0"
1297 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
1298 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
1299 |
1300 | anymatch@^3.0.3:
1301 | version "3.1.2"
1302 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
1303 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
1304 | dependencies:
1305 | normalize-path "^3.0.0"
1306 | picomatch "^2.0.4"
1307 |
1308 | argparse@^1.0.7:
1309 | version "1.0.10"
1310 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
1311 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
1312 | dependencies:
1313 | sprintf-js "~1.0.2"
1314 |
1315 | asynckit@^0.4.0:
1316 | version "0.4.0"
1317 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
1318 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
1319 |
1320 | babel-jest@^27.2.4:
1321 | version "27.2.4"
1322 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.2.4.tgz#21ed6729d51bdd75470bbbf3c8b08d86209fb0dc"
1323 | integrity sha512-f24OmxyWymk5jfgLdlCMu4fTs4ldxFBIdn5sJdhvGC1m08rSkJ5hYbWkNmfBSvE/DjhCVNSHXepxsI6THGfGsg==
1324 | dependencies:
1325 | "@jest/transform" "^27.2.4"
1326 | "@jest/types" "^27.2.4"
1327 | "@types/babel__core" "^7.1.14"
1328 | babel-plugin-istanbul "^6.0.0"
1329 | babel-preset-jest "^27.2.0"
1330 | chalk "^4.0.0"
1331 | graceful-fs "^4.2.4"
1332 | slash "^3.0.0"
1333 |
1334 | babel-plugin-dynamic-import-node@^2.3.3:
1335 | version "2.3.3"
1336 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
1337 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
1338 | dependencies:
1339 | object.assign "^4.1.0"
1340 |
1341 | babel-plugin-istanbul@^6.0.0:
1342 | version "6.0.0"
1343 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
1344 | integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==
1345 | dependencies:
1346 | "@babel/helper-plugin-utils" "^7.0.0"
1347 | "@istanbuljs/load-nyc-config" "^1.0.0"
1348 | "@istanbuljs/schema" "^0.1.2"
1349 | istanbul-lib-instrument "^4.0.0"
1350 | test-exclude "^6.0.0"
1351 |
1352 | babel-plugin-jest-hoist@^27.2.0:
1353 | version "27.2.0"
1354 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.2.0.tgz#79f37d43f7e5c4fdc4b2ca3e10cc6cf545626277"
1355 | integrity sha512-TOux9khNKdi64mW+0OIhcmbAn75tTlzKhxmiNXevQaPbrBYK7YKjP1jl6NHTJ6XR5UgUrJbCnWlKVnJn29dfjw==
1356 | dependencies:
1357 | "@babel/template" "^7.3.3"
1358 | "@babel/types" "^7.3.3"
1359 | "@types/babel__core" "^7.0.0"
1360 | "@types/babel__traverse" "^7.0.6"
1361 |
1362 | babel-plugin-polyfill-corejs2@^0.2.2:
1363 | version "0.2.2"
1364 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327"
1365 | integrity sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==
1366 | dependencies:
1367 | "@babel/compat-data" "^7.13.11"
1368 | "@babel/helper-define-polyfill-provider" "^0.2.2"
1369 | semver "^6.1.1"
1370 |
1371 | babel-plugin-polyfill-corejs3@^0.2.2:
1372 | version "0.2.5"
1373 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz#2779846a16a1652244ae268b1e906ada107faf92"
1374 | integrity sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==
1375 | dependencies:
1376 | "@babel/helper-define-polyfill-provider" "^0.2.2"
1377 | core-js-compat "^3.16.2"
1378 |
1379 | babel-plugin-polyfill-regenerator@^0.2.2:
1380 | version "0.2.2"
1381 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077"
1382 | integrity sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==
1383 | dependencies:
1384 | "@babel/helper-define-polyfill-provider" "^0.2.2"
1385 |
1386 | babel-preset-current-node-syntax@^1.0.0:
1387 | version "1.0.1"
1388 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b"
1389 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==
1390 | dependencies:
1391 | "@babel/plugin-syntax-async-generators" "^7.8.4"
1392 | "@babel/plugin-syntax-bigint" "^7.8.3"
1393 | "@babel/plugin-syntax-class-properties" "^7.8.3"
1394 | "@babel/plugin-syntax-import-meta" "^7.8.3"
1395 | "@babel/plugin-syntax-json-strings" "^7.8.3"
1396 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
1397 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
1398 | "@babel/plugin-syntax-numeric-separator" "^7.8.3"
1399 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
1400 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
1401 | "@babel/plugin-syntax-optional-chaining" "^7.8.3"
1402 | "@babel/plugin-syntax-top-level-await" "^7.8.3"
1403 |
1404 | babel-preset-jest@^27.2.0:
1405 | version "27.2.0"
1406 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.2.0.tgz#556bbbf340608fed5670ab0ea0c8ef2449fba885"
1407 | integrity sha512-z7MgQ3peBwN5L5aCqBKnF6iqdlvZvFUQynEhu0J+X9nHLU72jO3iY331lcYrg+AssJ8q7xsv5/3AICzVmJ/wvg==
1408 | dependencies:
1409 | babel-plugin-jest-hoist "^27.2.0"
1410 | babel-preset-current-node-syntax "^1.0.0"
1411 |
1412 | balanced-match@^1.0.0:
1413 | version "1.0.2"
1414 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
1415 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
1416 |
1417 | brace-expansion@^1.1.7:
1418 | version "1.1.11"
1419 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1420 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
1421 | dependencies:
1422 | balanced-match "^1.0.0"
1423 | concat-map "0.0.1"
1424 |
1425 | braces@^3.0.1:
1426 | version "3.0.2"
1427 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
1428 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
1429 | dependencies:
1430 | fill-range "^7.0.1"
1431 |
1432 | browser-process-hrtime@^1.0.0:
1433 | version "1.0.0"
1434 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
1435 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
1436 |
1437 | browserslist@^4.16.6, browserslist@^4.17.1:
1438 | version "4.17.2"
1439 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.17.2.tgz#aa15dbd2fab399a399fe4df601bb09363c5458a6"
1440 | integrity sha512-jSDZyqJmkKMEMi7SZAgX5UltFdR5NAO43vY0AwTpu4X3sGH7GLLQ83KiUomgrnvZRCeW0yPPnKqnxPqQOER9zQ==
1441 | dependencies:
1442 | caniuse-lite "^1.0.30001261"
1443 | electron-to-chromium "^1.3.854"
1444 | escalade "^3.1.1"
1445 | nanocolors "^0.2.12"
1446 | node-releases "^1.1.76"
1447 |
1448 | bser@2.1.1:
1449 | version "2.1.1"
1450 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
1451 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
1452 | dependencies:
1453 | node-int64 "^0.4.0"
1454 |
1455 | buffer-from@^1.0.0:
1456 | version "1.1.2"
1457 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
1458 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
1459 |
1460 | call-bind@^1.0.0:
1461 | version "1.0.2"
1462 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
1463 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
1464 | dependencies:
1465 | function-bind "^1.1.1"
1466 | get-intrinsic "^1.0.2"
1467 |
1468 | callsites@^3.0.0:
1469 | version "3.1.0"
1470 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
1471 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
1472 |
1473 | camelcase@^5.3.1:
1474 | version "5.3.1"
1475 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
1476 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
1477 |
1478 | camelcase@^6.2.0:
1479 | version "6.2.0"
1480 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
1481 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
1482 |
1483 | caniuse-lite@^1.0.30001261:
1484 | version "1.0.30001263"
1485 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001263.tgz#7ce7a6fb482a137585cbc908aaf38e90c53a16a4"
1486 | integrity sha512-doiV5dft6yzWO1WwU19kt8Qz8R0/8DgEziz6/9n2FxUasteZNwNNYSmJO3GLBH8lCVE73AB1RPDPAeYbcO5Cvw==
1487 |
1488 | chalk@^2.0.0:
1489 | version "2.4.2"
1490 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
1491 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
1492 | dependencies:
1493 | ansi-styles "^3.2.1"
1494 | escape-string-regexp "^1.0.5"
1495 | supports-color "^5.3.0"
1496 |
1497 | chalk@^4.0.0:
1498 | version "4.1.2"
1499 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
1500 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
1501 | dependencies:
1502 | ansi-styles "^4.1.0"
1503 | supports-color "^7.1.0"
1504 |
1505 | char-regex@^1.0.2:
1506 | version "1.0.2"
1507 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
1508 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
1509 |
1510 | ci-info@^3.1.1:
1511 | version "3.2.0"
1512 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6"
1513 | integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==
1514 |
1515 | cjs-module-lexer@^1.0.0:
1516 | version "1.2.2"
1517 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40"
1518 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==
1519 |
1520 | cliui@^7.0.2:
1521 | version "7.0.4"
1522 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
1523 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
1524 | dependencies:
1525 | string-width "^4.2.0"
1526 | strip-ansi "^6.0.0"
1527 | wrap-ansi "^7.0.0"
1528 |
1529 | co@^4.6.0:
1530 | version "4.6.0"
1531 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
1532 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
1533 |
1534 | collect-v8-coverage@^1.0.0:
1535 | version "1.0.1"
1536 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
1537 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
1538 |
1539 | color-convert@^1.9.0:
1540 | version "1.9.3"
1541 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1542 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
1543 | dependencies:
1544 | color-name "1.1.3"
1545 |
1546 | color-convert@^2.0.1:
1547 | version "2.0.1"
1548 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
1549 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
1550 | dependencies:
1551 | color-name "~1.1.4"
1552 |
1553 | color-name@1.1.3:
1554 | version "1.1.3"
1555 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1556 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
1557 |
1558 | color-name@~1.1.4:
1559 | version "1.1.4"
1560 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
1561 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
1562 |
1563 | combined-stream@^1.0.8:
1564 | version "1.0.8"
1565 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
1566 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
1567 | dependencies:
1568 | delayed-stream "~1.0.0"
1569 |
1570 | concat-map@0.0.1:
1571 | version "0.0.1"
1572 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1573 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
1574 |
1575 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
1576 | version "1.8.0"
1577 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
1578 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
1579 | dependencies:
1580 | safe-buffer "~5.1.1"
1581 |
1582 | core-js-compat@^3.16.0, core-js-compat@^3.16.2:
1583 | version "3.18.1"
1584 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.18.1.tgz#01942a0877caf9c6e5007c027183cf0bdae6a191"
1585 | integrity sha512-XJMYx58zo4W0kLPmIingVZA10+7TuKrMLPt83+EzDmxFJQUMcTVVmQ+n5JP4r6Z14qSzhQBRi3NSWoeVyKKXUg==
1586 | dependencies:
1587 | browserslist "^4.17.1"
1588 | semver "7.0.0"
1589 |
1590 | cross-spawn@^7.0.3:
1591 | version "7.0.3"
1592 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
1593 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
1594 | dependencies:
1595 | path-key "^3.1.0"
1596 | shebang-command "^2.0.0"
1597 | which "^2.0.1"
1598 |
1599 | cssom@^0.4.4:
1600 | version "0.4.4"
1601 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
1602 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
1603 |
1604 | cssom@~0.3.6:
1605 | version "0.3.8"
1606 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
1607 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
1608 |
1609 | cssstyle@^2.3.0:
1610 | version "2.3.0"
1611 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
1612 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
1613 | dependencies:
1614 | cssom "~0.3.6"
1615 |
1616 | data-urls@^2.0.0:
1617 | version "2.0.0"
1618 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
1619 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
1620 | dependencies:
1621 | abab "^2.0.3"
1622 | whatwg-mimetype "^2.3.0"
1623 | whatwg-url "^8.0.0"
1624 |
1625 | debug@4, debug@^4.1.0, debug@^4.1.1:
1626 | version "4.3.2"
1627 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
1628 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
1629 | dependencies:
1630 | ms "2.1.2"
1631 |
1632 | decimal.js@^10.2.1:
1633 | version "10.3.1"
1634 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783"
1635 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==
1636 |
1637 | dedent@^0.7.0:
1638 | version "0.7.0"
1639 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
1640 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
1641 |
1642 | deep-is@~0.1.3:
1643 | version "0.1.4"
1644 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
1645 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
1646 |
1647 | deepmerge@^4.2.2:
1648 | version "4.2.2"
1649 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
1650 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
1651 |
1652 | define-properties@^1.1.3:
1653 | version "1.1.3"
1654 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
1655 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
1656 | dependencies:
1657 | object-keys "^1.0.12"
1658 |
1659 | delayed-stream@~1.0.0:
1660 | version "1.0.0"
1661 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1662 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
1663 |
1664 | detect-newline@^3.0.0:
1665 | version "3.1.0"
1666 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
1667 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
1668 |
1669 | diff-sequences@^27.0.6:
1670 | version "27.0.6"
1671 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723"
1672 | integrity sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==
1673 |
1674 | domexception@^2.0.1:
1675 | version "2.0.1"
1676 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304"
1677 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
1678 | dependencies:
1679 | webidl-conversions "^5.0.0"
1680 |
1681 | electron-to-chromium@^1.3.854:
1682 | version "1.3.857"
1683 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.857.tgz#dcc239ff8a12b6e4b501e6a5ad20fd0d5a3210f9"
1684 | integrity sha512-a5kIr2lajm4bJ5E4D3fp8Y/BRB0Dx2VOcCRE5Gtb679mXIME/OFhWler8Gy2ksrf8gFX+EFCSIGA33FB3gqYpg==
1685 |
1686 | emittery@^0.8.1:
1687 | version "0.8.1"
1688 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860"
1689 | integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==
1690 |
1691 | emoji-regex@^8.0.0:
1692 | version "8.0.0"
1693 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
1694 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
1695 |
1696 | escalade@^3.1.1:
1697 | version "3.1.1"
1698 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
1699 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
1700 |
1701 | escape-string-regexp@^1.0.5:
1702 | version "1.0.5"
1703 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1704 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1705 |
1706 | escape-string-regexp@^2.0.0:
1707 | version "2.0.0"
1708 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
1709 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
1710 |
1711 | escodegen@^2.0.0:
1712 | version "2.0.0"
1713 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
1714 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
1715 | dependencies:
1716 | esprima "^4.0.1"
1717 | estraverse "^5.2.0"
1718 | esutils "^2.0.2"
1719 | optionator "^0.8.1"
1720 | optionalDependencies:
1721 | source-map "~0.6.1"
1722 |
1723 | esprima@^4.0.0, esprima@^4.0.1:
1724 | version "4.0.1"
1725 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
1726 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1727 |
1728 | estraverse@^5.2.0:
1729 | version "5.2.0"
1730 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
1731 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
1732 |
1733 | estree-walker@^1.0.1:
1734 | version "1.0.1"
1735 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
1736 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
1737 |
1738 | esutils@^2.0.2:
1739 | version "2.0.3"
1740 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1741 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1742 |
1743 | execa@^5.0.0:
1744 | version "5.1.1"
1745 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
1746 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
1747 | dependencies:
1748 | cross-spawn "^7.0.3"
1749 | get-stream "^6.0.0"
1750 | human-signals "^2.1.0"
1751 | is-stream "^2.0.0"
1752 | merge-stream "^2.0.0"
1753 | npm-run-path "^4.0.1"
1754 | onetime "^5.1.2"
1755 | signal-exit "^3.0.3"
1756 | strip-final-newline "^2.0.0"
1757 |
1758 | exit@^0.1.2:
1759 | version "0.1.2"
1760 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
1761 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
1762 |
1763 | expect@^27.2.4:
1764 | version "27.2.4"
1765 | resolved "https://registry.yarnpkg.com/expect/-/expect-27.2.4.tgz#4debf546050bcdad8914a8c95fec7662e02bf67c"
1766 | integrity sha512-gOtuonQ8TCnbNNCSw2fhVzRf8EFYDII4nB5NmG4IEV0rbUnW1I5zXvoTntU4iicB/Uh0oZr20NGlOLdJiwsOZA==
1767 | dependencies:
1768 | "@jest/types" "^27.2.4"
1769 | ansi-styles "^5.0.0"
1770 | jest-get-type "^27.0.6"
1771 | jest-matcher-utils "^27.2.4"
1772 | jest-message-util "^27.2.4"
1773 | jest-regex-util "^27.0.6"
1774 |
1775 | fast-json-stable-stringify@^2.0.0:
1776 | version "2.1.0"
1777 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
1778 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
1779 |
1780 | fast-levenshtein@~2.0.6:
1781 | version "2.0.6"
1782 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1783 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
1784 |
1785 | fb-watchman@^2.0.0:
1786 | version "2.0.1"
1787 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
1788 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
1789 | dependencies:
1790 | bser "2.1.1"
1791 |
1792 | fill-range@^7.0.1:
1793 | version "7.0.1"
1794 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1795 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1796 | dependencies:
1797 | to-regex-range "^5.0.1"
1798 |
1799 | find-up@^4.0.0, find-up@^4.1.0:
1800 | version "4.1.0"
1801 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
1802 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
1803 | dependencies:
1804 | locate-path "^5.0.0"
1805 | path-exists "^4.0.0"
1806 |
1807 | form-data@^3.0.0:
1808 | version "3.0.1"
1809 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f"
1810 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==
1811 | dependencies:
1812 | asynckit "^0.4.0"
1813 | combined-stream "^1.0.8"
1814 | mime-types "^2.1.12"
1815 |
1816 | fs.realpath@^1.0.0:
1817 | version "1.0.0"
1818 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1819 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
1820 |
1821 | fsevents@^2.3.2, fsevents@~2.3.2:
1822 | version "2.3.2"
1823 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1824 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1825 |
1826 | function-bind@^1.1.1:
1827 | version "1.1.1"
1828 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1829 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1830 |
1831 | gensync@^1.0.0-beta.2:
1832 | version "1.0.0-beta.2"
1833 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
1834 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
1835 |
1836 | get-caller-file@^2.0.5:
1837 | version "2.0.5"
1838 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
1839 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
1840 |
1841 | get-intrinsic@^1.0.2:
1842 | version "1.1.1"
1843 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
1844 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
1845 | dependencies:
1846 | function-bind "^1.1.1"
1847 | has "^1.0.3"
1848 | has-symbols "^1.0.1"
1849 |
1850 | get-package-type@^0.1.0:
1851 | version "0.1.0"
1852 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
1853 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
1854 |
1855 | get-stream@^6.0.0:
1856 | version "6.0.1"
1857 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
1858 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
1859 |
1860 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
1861 | version "7.2.0"
1862 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
1863 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
1864 | dependencies:
1865 | fs.realpath "^1.0.0"
1866 | inflight "^1.0.4"
1867 | inherits "2"
1868 | minimatch "^3.0.4"
1869 | once "^1.3.0"
1870 | path-is-absolute "^1.0.0"
1871 |
1872 | globals@^11.1.0:
1873 | version "11.12.0"
1874 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
1875 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
1876 |
1877 | graceful-fs@^4.2.4:
1878 | version "4.2.8"
1879 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a"
1880 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==
1881 |
1882 | has-flag@^3.0.0:
1883 | version "3.0.0"
1884 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1885 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
1886 |
1887 | has-flag@^4.0.0:
1888 | version "4.0.0"
1889 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1890 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1891 |
1892 | has-symbols@^1.0.1:
1893 | version "1.0.2"
1894 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
1895 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
1896 |
1897 | has@^1.0.3:
1898 | version "1.0.3"
1899 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1900 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1901 | dependencies:
1902 | function-bind "^1.1.1"
1903 |
1904 | html-encoding-sniffer@^2.0.1:
1905 | version "2.0.1"
1906 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3"
1907 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
1908 | dependencies:
1909 | whatwg-encoding "^1.0.5"
1910 |
1911 | html-escaper@^2.0.0:
1912 | version "2.0.2"
1913 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
1914 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
1915 |
1916 | http-proxy-agent@^4.0.1:
1917 | version "4.0.1"
1918 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
1919 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
1920 | dependencies:
1921 | "@tootallnate/once" "1"
1922 | agent-base "6"
1923 | debug "4"
1924 |
1925 | https-proxy-agent@^5.0.0:
1926 | version "5.0.0"
1927 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2"
1928 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==
1929 | dependencies:
1930 | agent-base "6"
1931 | debug "4"
1932 |
1933 | human-signals@^2.1.0:
1934 | version "2.1.0"
1935 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
1936 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
1937 |
1938 | iconv-lite@0.4.24:
1939 | version "0.4.24"
1940 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
1941 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
1942 | dependencies:
1943 | safer-buffer ">= 2.1.2 < 3"
1944 |
1945 | import-local@^3.0.2:
1946 | version "3.0.2"
1947 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6"
1948 | integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
1949 | dependencies:
1950 | pkg-dir "^4.2.0"
1951 | resolve-cwd "^3.0.0"
1952 |
1953 | imurmurhash@^0.1.4:
1954 | version "0.1.4"
1955 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1956 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
1957 |
1958 | inflight@^1.0.4:
1959 | version "1.0.6"
1960 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1961 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
1962 | dependencies:
1963 | once "^1.3.0"
1964 | wrappy "1"
1965 |
1966 | inherits@2:
1967 | version "2.0.4"
1968 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1969 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1970 |
1971 | is-ci@^3.0.0:
1972 | version "3.0.0"
1973 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.0.tgz#c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994"
1974 | integrity sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==
1975 | dependencies:
1976 | ci-info "^3.1.1"
1977 |
1978 | is-core-module@^2.2.0:
1979 | version "2.7.0"
1980 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.7.0.tgz#3c0ef7d31b4acfc574f80c58409d568a836848e3"
1981 | integrity sha512-ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ==
1982 | dependencies:
1983 | has "^1.0.3"
1984 |
1985 | is-fullwidth-code-point@^3.0.0:
1986 | version "3.0.0"
1987 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
1988 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
1989 |
1990 | is-generator-fn@^2.0.0:
1991 | version "2.1.0"
1992 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
1993 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
1994 |
1995 | is-number@^7.0.0:
1996 | version "7.0.0"
1997 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1998 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1999 |
2000 | is-potential-custom-element-name@^1.0.1:
2001 | version "1.0.1"
2002 | resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
2003 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
2004 |
2005 | is-stream@^2.0.0:
2006 | version "2.0.1"
2007 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
2008 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
2009 |
2010 | is-typedarray@^1.0.0:
2011 | version "1.0.0"
2012 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2013 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
2014 |
2015 | isexe@^2.0.0:
2016 | version "2.0.0"
2017 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2018 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
2019 |
2020 | istanbul-lib-coverage@^3.0.0:
2021 | version "3.0.1"
2022 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.1.tgz#e8900b3ed6069759229cf30f7067388d148aeb5e"
2023 | integrity sha512-GvCYYTxaCPqwMjobtVcVKvSHtAGe48MNhGjpK8LtVF8K0ISX7hCKl85LgtuaSneWVyQmaGcW3iXVV3GaZSLpmQ==
2024 |
2025 | istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3:
2026 | version "4.0.3"
2027 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
2028 | integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
2029 | dependencies:
2030 | "@babel/core" "^7.7.5"
2031 | "@istanbuljs/schema" "^0.1.2"
2032 | istanbul-lib-coverage "^3.0.0"
2033 | semver "^6.3.0"
2034 |
2035 | istanbul-lib-report@^3.0.0:
2036 | version "3.0.0"
2037 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
2038 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
2039 | dependencies:
2040 | istanbul-lib-coverage "^3.0.0"
2041 | make-dir "^3.0.0"
2042 | supports-color "^7.1.0"
2043 |
2044 | istanbul-lib-source-maps@^4.0.0:
2045 | version "4.0.0"
2046 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9"
2047 | integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
2048 | dependencies:
2049 | debug "^4.1.1"
2050 | istanbul-lib-coverage "^3.0.0"
2051 | source-map "^0.6.1"
2052 |
2053 | istanbul-reports@^3.0.2:
2054 | version "3.0.2"
2055 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
2056 | integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
2057 | dependencies:
2058 | html-escaper "^2.0.0"
2059 | istanbul-lib-report "^3.0.0"
2060 |
2061 | jest-changed-files@^27.2.4:
2062 | version "27.2.4"
2063 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.2.4.tgz#d7de46e90e5a599c47e260760f5ab53516e835e6"
2064 | integrity sha512-eeO1C1u4ex7pdTroYXezr+rbr957myyVoKGjcY4R1TJi3A+9v+4fu1Iv9J4eLq1bgFyT3O3iRWU9lZsEE7J72Q==
2065 | dependencies:
2066 | "@jest/types" "^27.2.4"
2067 | execa "^5.0.0"
2068 | throat "^6.0.1"
2069 |
2070 | jest-circus@^27.2.4:
2071 | version "27.2.4"
2072 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.2.4.tgz#3bd898a29dcaf6a506f3f1b780dff5f67ca83c23"
2073 | integrity sha512-TtheheTElrGjlsY9VxkzUU1qwIx05ItIusMVKnvNkMt4o/PeegLRcjq3Db2Jz0GGdBalJdbzLZBgeulZAJxJWA==
2074 | dependencies:
2075 | "@jest/environment" "^27.2.4"
2076 | "@jest/test-result" "^27.2.4"
2077 | "@jest/types" "^27.2.4"
2078 | "@types/node" "*"
2079 | chalk "^4.0.0"
2080 | co "^4.6.0"
2081 | dedent "^0.7.0"
2082 | expect "^27.2.4"
2083 | is-generator-fn "^2.0.0"
2084 | jest-each "^27.2.4"
2085 | jest-matcher-utils "^27.2.4"
2086 | jest-message-util "^27.2.4"
2087 | jest-runtime "^27.2.4"
2088 | jest-snapshot "^27.2.4"
2089 | jest-util "^27.2.4"
2090 | pretty-format "^27.2.4"
2091 | slash "^3.0.0"
2092 | stack-utils "^2.0.3"
2093 | throat "^6.0.1"
2094 |
2095 | jest-cli@^27.2.4:
2096 | version "27.2.4"
2097 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.2.4.tgz#acda7f367aa6e674723fc1a7334e0ae1799448d2"
2098 | integrity sha512-4kpQQkg74HYLaXo3nzwtg4PYxSLgL7puz1LXHj5Tu85KmlIpxQFjRkXlx4V47CYFFIDoyl3rHA/cXOxUWyMpNg==
2099 | dependencies:
2100 | "@jest/core" "^27.2.4"
2101 | "@jest/test-result" "^27.2.4"
2102 | "@jest/types" "^27.2.4"
2103 | chalk "^4.0.0"
2104 | exit "^0.1.2"
2105 | graceful-fs "^4.2.4"
2106 | import-local "^3.0.2"
2107 | jest-config "^27.2.4"
2108 | jest-util "^27.2.4"
2109 | jest-validate "^27.2.4"
2110 | prompts "^2.0.1"
2111 | yargs "^16.2.0"
2112 |
2113 | jest-config@^27.2.4:
2114 | version "27.2.4"
2115 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.2.4.tgz#0204969f5ae2e5190d47be2c14c04d631b7836e2"
2116 | integrity sha512-tWy0UxhdzqiKyp4l5Vq4HxLyD+gH5td+GCF3c22/DJ0bYAOsMo+qi2XtbJI6oYMH5JOJQs9nLW/r34nvFCehjA==
2117 | dependencies:
2118 | "@babel/core" "^7.1.0"
2119 | "@jest/test-sequencer" "^27.2.4"
2120 | "@jest/types" "^27.2.4"
2121 | babel-jest "^27.2.4"
2122 | chalk "^4.0.0"
2123 | deepmerge "^4.2.2"
2124 | glob "^7.1.1"
2125 | graceful-fs "^4.2.4"
2126 | is-ci "^3.0.0"
2127 | jest-circus "^27.2.4"
2128 | jest-environment-jsdom "^27.2.4"
2129 | jest-environment-node "^27.2.4"
2130 | jest-get-type "^27.0.6"
2131 | jest-jasmine2 "^27.2.4"
2132 | jest-regex-util "^27.0.6"
2133 | jest-resolve "^27.2.4"
2134 | jest-runner "^27.2.4"
2135 | jest-util "^27.2.4"
2136 | jest-validate "^27.2.4"
2137 | micromatch "^4.0.4"
2138 | pretty-format "^27.2.4"
2139 |
2140 | jest-diff@^27.0.0, jest-diff@^27.2.4:
2141 | version "27.2.4"
2142 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.2.4.tgz#171c51d3d2c105c457100fee6e7bf7cee51c8d8c"
2143 | integrity sha512-bLAVlDSCR3gqUPGv+4nzVpEXGsHh98HjUL7Vb2hVyyuBDoQmja8eJb0imUABsuxBeUVmf47taJSAd9nDrwWKEg==
2144 | dependencies:
2145 | chalk "^4.0.0"
2146 | diff-sequences "^27.0.6"
2147 | jest-get-type "^27.0.6"
2148 | pretty-format "^27.2.4"
2149 |
2150 | jest-docblock@^27.0.6:
2151 | version "27.0.6"
2152 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.0.6.tgz#cc78266acf7fe693ca462cbbda0ea4e639e4e5f3"
2153 | integrity sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA==
2154 | dependencies:
2155 | detect-newline "^3.0.0"
2156 |
2157 | jest-each@^27.2.4:
2158 | version "27.2.4"
2159 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.2.4.tgz#b4f280aafd63129ba82e345f0e74c5a10200aeef"
2160 | integrity sha512-w9XVc+0EDBUTJS4xBNJ7N2JCcWItFd006lFjz77OarAQcQ10eFDBMrfDv2GBJMKlXe9aq0HrIIF51AXcZrRJyg==
2161 | dependencies:
2162 | "@jest/types" "^27.2.4"
2163 | chalk "^4.0.0"
2164 | jest-get-type "^27.0.6"
2165 | jest-util "^27.2.4"
2166 | pretty-format "^27.2.4"
2167 |
2168 | jest-environment-jsdom@^27.2.4:
2169 | version "27.2.4"
2170 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.2.4.tgz#39ae80bbb8675306bfaf0440be1e5f877554539a"
2171 | integrity sha512-X70pTXFSypD7AIzKT1mLnDi5hP9w9mdTRcOGOmoDoBrNyNEg4rYm6d4LQWFLc9ps1VnMuDOkFSG0wjSNYGjkng==
2172 | dependencies:
2173 | "@jest/environment" "^27.2.4"
2174 | "@jest/fake-timers" "^27.2.4"
2175 | "@jest/types" "^27.2.4"
2176 | "@types/node" "*"
2177 | jest-mock "^27.2.4"
2178 | jest-util "^27.2.4"
2179 | jsdom "^16.6.0"
2180 |
2181 | jest-environment-node@^27.2.4:
2182 | version "27.2.4"
2183 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.2.4.tgz#b79f98cb36e0c9111aac859c9c99f04eb2f74ff6"
2184 | integrity sha512-ZbVbFSnbzTvhLOIkqh5lcLuGCCFvtG4xTXIRPK99rV2KzQT3kNg16KZwfTnLNlIiWCE8do960eToeDfcqmpSAw==
2185 | dependencies:
2186 | "@jest/environment" "^27.2.4"
2187 | "@jest/fake-timers" "^27.2.4"
2188 | "@jest/types" "^27.2.4"
2189 | "@types/node" "*"
2190 | jest-mock "^27.2.4"
2191 | jest-util "^27.2.4"
2192 |
2193 | jest-get-type@^27.0.6:
2194 | version "27.0.6"
2195 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.0.6.tgz#0eb5c7f755854279ce9b68a9f1a4122f69047cfe"
2196 | integrity sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==
2197 |
2198 | jest-haste-map@^27.2.4:
2199 | version "27.2.4"
2200 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.2.4.tgz#f8974807bedf07348ca9fd24e5861ab7c8e61aba"
2201 | integrity sha512-bkJ4bT00T2K+1NZXbRcyKnbJ42I6QBvoDNMTAQQDBhaGNnZreiQKUNqax0e6hLTx7E75pKDeltVu3V1HAdu+YA==
2202 | dependencies:
2203 | "@jest/types" "^27.2.4"
2204 | "@types/graceful-fs" "^4.1.2"
2205 | "@types/node" "*"
2206 | anymatch "^3.0.3"
2207 | fb-watchman "^2.0.0"
2208 | graceful-fs "^4.2.4"
2209 | jest-regex-util "^27.0.6"
2210 | jest-serializer "^27.0.6"
2211 | jest-util "^27.2.4"
2212 | jest-worker "^27.2.4"
2213 | micromatch "^4.0.4"
2214 | walker "^1.0.7"
2215 | optionalDependencies:
2216 | fsevents "^2.3.2"
2217 |
2218 | jest-jasmine2@^27.2.4:
2219 | version "27.2.4"
2220 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.2.4.tgz#4a1608133dbdb4d68b5929bfd785503ed9c9ba51"
2221 | integrity sha512-fcffjO/xLWLVnW2ct3No4EksxM5RyPwHDYu9QU+90cC+/eSMLkFAxS55vkqsxexOO5zSsZ3foVpMQcg/amSeIQ==
2222 | dependencies:
2223 | "@babel/traverse" "^7.1.0"
2224 | "@jest/environment" "^27.2.4"
2225 | "@jest/source-map" "^27.0.6"
2226 | "@jest/test-result" "^27.2.4"
2227 | "@jest/types" "^27.2.4"
2228 | "@types/node" "*"
2229 | chalk "^4.0.0"
2230 | co "^4.6.0"
2231 | expect "^27.2.4"
2232 | is-generator-fn "^2.0.0"
2233 | jest-each "^27.2.4"
2234 | jest-matcher-utils "^27.2.4"
2235 | jest-message-util "^27.2.4"
2236 | jest-runtime "^27.2.4"
2237 | jest-snapshot "^27.2.4"
2238 | jest-util "^27.2.4"
2239 | pretty-format "^27.2.4"
2240 | throat "^6.0.1"
2241 |
2242 | jest-leak-detector@^27.2.4:
2243 | version "27.2.4"
2244 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.2.4.tgz#9bb7eab26a73bb280e9298be8d80f389288ec8f1"
2245 | integrity sha512-SrcHWbe0EHg/bw2uBjVoHacTo5xosl068x2Q0aWsjr2yYuW2XwqrSkZV4lurUop0jhv1709ymG4or+8E4sH27Q==
2246 | dependencies:
2247 | jest-get-type "^27.0.6"
2248 | pretty-format "^27.2.4"
2249 |
2250 | jest-matcher-utils@^27.2.4:
2251 | version "27.2.4"
2252 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.2.4.tgz#008fff018151415ad1b6cfc083fd70fe1e012525"
2253 | integrity sha512-nQeLfFAIPPkyhkDfifAPfP/U5wm1x0fLtAzqXZSSKckXDNuk2aaOfQiDYv1Mgf5GY6yOsxfUnvNm3dDjXM+BXw==
2254 | dependencies:
2255 | chalk "^4.0.0"
2256 | jest-diff "^27.2.4"
2257 | jest-get-type "^27.0.6"
2258 | pretty-format "^27.2.4"
2259 |
2260 | jest-message-util@^27.2.4:
2261 | version "27.2.4"
2262 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.2.4.tgz#667e8c0f2b973156d1bac7398a7f677705cafaca"
2263 | integrity sha512-wbKT/BNGnBVB9nzi+IoaLkXt6fbSvqUxx+IYY66YFh96J3goY33BAaNG3uPqaw/Sh/FR9YpXGVDfd5DJdbh4nA==
2264 | dependencies:
2265 | "@babel/code-frame" "^7.12.13"
2266 | "@jest/types" "^27.2.4"
2267 | "@types/stack-utils" "^2.0.0"
2268 | chalk "^4.0.0"
2269 | graceful-fs "^4.2.4"
2270 | micromatch "^4.0.4"
2271 | pretty-format "^27.2.4"
2272 | slash "^3.0.0"
2273 | stack-utils "^2.0.3"
2274 |
2275 | jest-mock@^27.2.4:
2276 | version "27.2.4"
2277 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.2.4.tgz#c8f0ef33f73d8ff53e3f60b16d59f1128f4072ae"
2278 | integrity sha512-iVRU905rutaAoUcrt5Tm1JoHHWi24YabqEGXjPJI4tAyA6wZ7mzDi3GrZ+M7ebgWBqUkZE93GAx1STk7yCMIQA==
2279 | dependencies:
2280 | "@jest/types" "^27.2.4"
2281 | "@types/node" "*"
2282 |
2283 | jest-pnp-resolver@^1.2.2:
2284 | version "1.2.2"
2285 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
2286 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
2287 |
2288 | jest-regex-util@^27.0.6:
2289 | version "27.0.6"
2290 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.0.6.tgz#02e112082935ae949ce5d13b2675db3d8c87d9c5"
2291 | integrity sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ==
2292 |
2293 | jest-resolve-dependencies@^27.2.4:
2294 | version "27.2.4"
2295 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.2.4.tgz#20c41cc02b66aa45169b282356ec73b133013089"
2296 | integrity sha512-i5s7Uh9B3Q6uwxLpMhNKlgBf6pcemvWaORxsW1zNF/YCY3jd5EftvnGBI+fxVwJ1CBxkVfxqCvm1lpZkbaoGmg==
2297 | dependencies:
2298 | "@jest/types" "^27.2.4"
2299 | jest-regex-util "^27.0.6"
2300 | jest-snapshot "^27.2.4"
2301 |
2302 | jest-resolve@^27.2.4:
2303 | version "27.2.4"
2304 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.2.4.tgz#d3b999f073ff84a8ae109ce99ff7f3223048701a"
2305 | integrity sha512-IsAO/3+3BZnKjI2I4f3835TBK/90dxR7Otgufn3mnrDFTByOSXclDi3G2XJsawGV4/18IMLARJ+V7Wm7t+J89Q==
2306 | dependencies:
2307 | "@jest/types" "^27.2.4"
2308 | chalk "^4.0.0"
2309 | escalade "^3.1.1"
2310 | graceful-fs "^4.2.4"
2311 | jest-haste-map "^27.2.4"
2312 | jest-pnp-resolver "^1.2.2"
2313 | jest-util "^27.2.4"
2314 | jest-validate "^27.2.4"
2315 | resolve "^1.20.0"
2316 | slash "^3.0.0"
2317 |
2318 | jest-runner@^27.2.4:
2319 | version "27.2.4"
2320 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.2.4.tgz#d816f4cb4af04f3cba703afcf5a35a335b77cad4"
2321 | integrity sha512-hIo5PPuNUyVDidZS8EetntuuJbQ+4IHWxmHgYZz9FIDbG2wcZjrP6b52uMDjAEQiHAn8yn8ynNe+TL8UuGFYKg==
2322 | dependencies:
2323 | "@jest/console" "^27.2.4"
2324 | "@jest/environment" "^27.2.4"
2325 | "@jest/test-result" "^27.2.4"
2326 | "@jest/transform" "^27.2.4"
2327 | "@jest/types" "^27.2.4"
2328 | "@types/node" "*"
2329 | chalk "^4.0.0"
2330 | emittery "^0.8.1"
2331 | exit "^0.1.2"
2332 | graceful-fs "^4.2.4"
2333 | jest-docblock "^27.0.6"
2334 | jest-environment-jsdom "^27.2.4"
2335 | jest-environment-node "^27.2.4"
2336 | jest-haste-map "^27.2.4"
2337 | jest-leak-detector "^27.2.4"
2338 | jest-message-util "^27.2.4"
2339 | jest-resolve "^27.2.4"
2340 | jest-runtime "^27.2.4"
2341 | jest-util "^27.2.4"
2342 | jest-worker "^27.2.4"
2343 | source-map-support "^0.5.6"
2344 | throat "^6.0.1"
2345 |
2346 | jest-runtime@^27.2.4:
2347 | version "27.2.4"
2348 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.2.4.tgz#170044041e5d30625ab8d753516bbe503f213a5c"
2349 | integrity sha512-ICKzzYdjIi70P17MZsLLIgIQFCQmIjMFf+xYww3aUySiUA/QBPUTdUqo5B2eg4HOn9/KkUsV0z6GVgaqAPBJvg==
2350 | dependencies:
2351 | "@jest/console" "^27.2.4"
2352 | "@jest/environment" "^27.2.4"
2353 | "@jest/fake-timers" "^27.2.4"
2354 | "@jest/globals" "^27.2.4"
2355 | "@jest/source-map" "^27.0.6"
2356 | "@jest/test-result" "^27.2.4"
2357 | "@jest/transform" "^27.2.4"
2358 | "@jest/types" "^27.2.4"
2359 | "@types/yargs" "^16.0.0"
2360 | chalk "^4.0.0"
2361 | cjs-module-lexer "^1.0.0"
2362 | collect-v8-coverage "^1.0.0"
2363 | execa "^5.0.0"
2364 | exit "^0.1.2"
2365 | glob "^7.1.3"
2366 | graceful-fs "^4.2.4"
2367 | jest-haste-map "^27.2.4"
2368 | jest-message-util "^27.2.4"
2369 | jest-mock "^27.2.4"
2370 | jest-regex-util "^27.0.6"
2371 | jest-resolve "^27.2.4"
2372 | jest-snapshot "^27.2.4"
2373 | jest-util "^27.2.4"
2374 | jest-validate "^27.2.4"
2375 | slash "^3.0.0"
2376 | strip-bom "^4.0.0"
2377 | yargs "^16.2.0"
2378 |
2379 | jest-serializer@^27.0.6:
2380 | version "27.0.6"
2381 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.0.6.tgz#93a6c74e0132b81a2d54623251c46c498bb5bec1"
2382 | integrity sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA==
2383 | dependencies:
2384 | "@types/node" "*"
2385 | graceful-fs "^4.2.4"
2386 |
2387 | jest-snapshot@^27.2.4:
2388 | version "27.2.4"
2389 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.2.4.tgz#277b2269437e3ffcb91d95a73b24becf33c5a871"
2390 | integrity sha512-5DFxK31rYS8X8C6WXsFx8XxrxW3PGa6+9IrUcZdTLg1aEyXDGIeiBh4jbwvh655bg/9vTETbEj/njfZicHTZZw==
2391 | dependencies:
2392 | "@babel/core" "^7.7.2"
2393 | "@babel/generator" "^7.7.2"
2394 | "@babel/parser" "^7.7.2"
2395 | "@babel/plugin-syntax-typescript" "^7.7.2"
2396 | "@babel/traverse" "^7.7.2"
2397 | "@babel/types" "^7.0.0"
2398 | "@jest/transform" "^27.2.4"
2399 | "@jest/types" "^27.2.4"
2400 | "@types/babel__traverse" "^7.0.4"
2401 | "@types/prettier" "^2.1.5"
2402 | babel-preset-current-node-syntax "^1.0.0"
2403 | chalk "^4.0.0"
2404 | expect "^27.2.4"
2405 | graceful-fs "^4.2.4"
2406 | jest-diff "^27.2.4"
2407 | jest-get-type "^27.0.6"
2408 | jest-haste-map "^27.2.4"
2409 | jest-matcher-utils "^27.2.4"
2410 | jest-message-util "^27.2.4"
2411 | jest-resolve "^27.2.4"
2412 | jest-util "^27.2.4"
2413 | natural-compare "^1.4.0"
2414 | pretty-format "^27.2.4"
2415 | semver "^7.3.2"
2416 |
2417 | jest-util@^27.2.4:
2418 | version "27.2.4"
2419 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.2.4.tgz#3d7ce081b2e7f4cfe0156452ac01f3cb456cc656"
2420 | integrity sha512-mW++4u+fSvAt3YBWm5IpbmRAceUqa2B++JlUZTiuEt2AmNYn0Yw5oay4cP17TGsMINRNPSGiJ2zNnX60g+VbFg==
2421 | dependencies:
2422 | "@jest/types" "^27.2.4"
2423 | "@types/node" "*"
2424 | chalk "^4.0.0"
2425 | graceful-fs "^4.2.4"
2426 | is-ci "^3.0.0"
2427 | picomatch "^2.2.3"
2428 |
2429 | jest-validate@^27.2.4:
2430 | version "27.2.4"
2431 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.2.4.tgz#b66d462b2fb93d7e16a47d1aa8763d5600bf2cfa"
2432 | integrity sha512-VMtbxbkd7LHnIH7PChdDtrluCFRJ4b1YV2YJzNwwsASMWftq/HgqiqjvptBOWyWOtevgO3f14wPxkPcLlVBRog==
2433 | dependencies:
2434 | "@jest/types" "^27.2.4"
2435 | camelcase "^6.2.0"
2436 | chalk "^4.0.0"
2437 | jest-get-type "^27.0.6"
2438 | leven "^3.1.0"
2439 | pretty-format "^27.2.4"
2440 |
2441 | jest-watcher@^27.2.4:
2442 | version "27.2.4"
2443 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.2.4.tgz#b1d5c39ab94f59f4f35f66cc96f7761a10e0cfc4"
2444 | integrity sha512-LXC/0+dKxhK7cfF7reflRYlzDIaQE+fL4ynhKhzg8IMILNMuI4xcjXXfUJady7OR4/TZeMg7X8eHx8uan9vqaQ==
2445 | dependencies:
2446 | "@jest/test-result" "^27.2.4"
2447 | "@jest/types" "^27.2.4"
2448 | "@types/node" "*"
2449 | ansi-escapes "^4.2.1"
2450 | chalk "^4.0.0"
2451 | jest-util "^27.2.4"
2452 | string-length "^4.0.1"
2453 |
2454 | jest-worker@^27.2.4:
2455 | version "27.2.4"
2456 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.2.4.tgz#881455df75e22e7726a53f43703ab74d6b36f82d"
2457 | integrity sha512-Zq9A2Pw59KkVjBBKD1i3iE2e22oSjXhUKKuAK1HGX8flGwkm6NMozyEYzKd41hXc64dbd/0eWFeEEuxqXyhM+g==
2458 | dependencies:
2459 | "@types/node" "*"
2460 | merge-stream "^2.0.0"
2461 | supports-color "^8.0.0"
2462 |
2463 | jest@^27.2.4:
2464 | version "27.2.4"
2465 | resolved "https://registry.yarnpkg.com/jest/-/jest-27.2.4.tgz#70e27bef873138afc123aa4769f7124c50ad3efb"
2466 | integrity sha512-h4uqb1EQLfPulWyUFFWv9e9Nn8sCqsJ/j3wk/KCY0p4s4s0ICCfP3iMf6hRf5hEhsDyvyrCgKiZXma63gMz16A==
2467 | dependencies:
2468 | "@jest/core" "^27.2.4"
2469 | import-local "^3.0.2"
2470 | jest-cli "^27.2.4"
2471 |
2472 | js-tokens@^4.0.0:
2473 | version "4.0.0"
2474 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2475 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
2476 |
2477 | js-yaml@^3.13.1:
2478 | version "3.14.1"
2479 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
2480 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
2481 | dependencies:
2482 | argparse "^1.0.7"
2483 | esprima "^4.0.0"
2484 |
2485 | jsdom@^16.6.0:
2486 | version "16.7.0"
2487 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710"
2488 | integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==
2489 | dependencies:
2490 | abab "^2.0.5"
2491 | acorn "^8.2.4"
2492 | acorn-globals "^6.0.0"
2493 | cssom "^0.4.4"
2494 | cssstyle "^2.3.0"
2495 | data-urls "^2.0.0"
2496 | decimal.js "^10.2.1"
2497 | domexception "^2.0.1"
2498 | escodegen "^2.0.0"
2499 | form-data "^3.0.0"
2500 | html-encoding-sniffer "^2.0.1"
2501 | http-proxy-agent "^4.0.1"
2502 | https-proxy-agent "^5.0.0"
2503 | is-potential-custom-element-name "^1.0.1"
2504 | nwsapi "^2.2.0"
2505 | parse5 "6.0.1"
2506 | saxes "^5.0.1"
2507 | symbol-tree "^3.2.4"
2508 | tough-cookie "^4.0.0"
2509 | w3c-hr-time "^1.0.2"
2510 | w3c-xmlserializer "^2.0.0"
2511 | webidl-conversions "^6.1.0"
2512 | whatwg-encoding "^1.0.5"
2513 | whatwg-mimetype "^2.3.0"
2514 | whatwg-url "^8.5.0"
2515 | ws "^7.4.6"
2516 | xml-name-validator "^3.0.0"
2517 |
2518 | jsesc@^2.5.1:
2519 | version "2.5.2"
2520 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
2521 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
2522 |
2523 | jsesc@~0.5.0:
2524 | version "0.5.0"
2525 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2526 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
2527 |
2528 | json5@^2.1.2:
2529 | version "2.2.0"
2530 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
2531 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
2532 | dependencies:
2533 | minimist "^1.2.5"
2534 |
2535 | kleur@^3.0.3:
2536 | version "3.0.3"
2537 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
2538 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
2539 |
2540 | leven@^3.1.0:
2541 | version "3.1.0"
2542 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
2543 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
2544 |
2545 | levn@~0.3.0:
2546 | version "0.3.0"
2547 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
2548 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
2549 | dependencies:
2550 | prelude-ls "~1.1.2"
2551 | type-check "~0.3.2"
2552 |
2553 | locate-path@^5.0.0:
2554 | version "5.0.0"
2555 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
2556 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
2557 | dependencies:
2558 | p-locate "^4.1.0"
2559 |
2560 | lodash.debounce@^4.0.8:
2561 | version "4.0.8"
2562 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
2563 | integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
2564 |
2565 | lodash@^4.7.0:
2566 | version "4.17.21"
2567 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
2568 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
2569 |
2570 | lru-cache@^6.0.0:
2571 | version "6.0.0"
2572 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
2573 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
2574 | dependencies:
2575 | yallist "^4.0.0"
2576 |
2577 | make-dir@^3.0.0:
2578 | version "3.1.0"
2579 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
2580 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
2581 | dependencies:
2582 | semver "^6.0.0"
2583 |
2584 | makeerror@1.0.x:
2585 | version "1.0.11"
2586 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
2587 | integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
2588 | dependencies:
2589 | tmpl "1.0.x"
2590 |
2591 | merge-stream@^2.0.0:
2592 | version "2.0.0"
2593 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
2594 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
2595 |
2596 | micromatch@^4.0.4:
2597 | version "4.0.4"
2598 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
2599 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
2600 | dependencies:
2601 | braces "^3.0.1"
2602 | picomatch "^2.2.3"
2603 |
2604 | mime-db@1.50.0:
2605 | version "1.50.0"
2606 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.50.0.tgz#abd4ac94e98d3c0e185016c67ab45d5fde40c11f"
2607 | integrity sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==
2608 |
2609 | mime-types@^2.1.12:
2610 | version "2.1.33"
2611 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.33.tgz#1fa12a904472fafd068e48d9e8401f74d3f70edb"
2612 | integrity sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==
2613 | dependencies:
2614 | mime-db "1.50.0"
2615 |
2616 | mimic-fn@^2.1.0:
2617 | version "2.1.0"
2618 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
2619 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
2620 |
2621 | minimatch@^3.0.4:
2622 | version "3.0.4"
2623 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2624 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
2625 | dependencies:
2626 | brace-expansion "^1.1.7"
2627 |
2628 | minimist@^1.2.5:
2629 | version "1.2.5"
2630 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
2631 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
2632 |
2633 | ms@2.1.2:
2634 | version "2.1.2"
2635 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2636 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2637 |
2638 | nanocolors@^0.2.12:
2639 | version "0.2.12"
2640 | resolved "https://registry.yarnpkg.com/nanocolors/-/nanocolors-0.2.12.tgz#4d05932e70116078673ea4cc6699a1c56cc77777"
2641 | integrity sha512-SFNdALvzW+rVlzqexid6epYdt8H9Zol7xDoQarioEFcFN0JHo4CYNztAxmtfgGTVRCmFlEOqqhBpoFGKqSAMug==
2642 |
2643 | natural-compare@^1.4.0:
2644 | version "1.4.0"
2645 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2646 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
2647 |
2648 | node-int64@^0.4.0:
2649 | version "0.4.0"
2650 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
2651 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
2652 |
2653 | node-modules-regexp@^1.0.0:
2654 | version "1.0.0"
2655 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
2656 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
2657 |
2658 | node-releases@^1.1.76:
2659 | version "1.1.77"
2660 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.77.tgz#50b0cfede855dd374e7585bf228ff34e57c1c32e"
2661 | integrity sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==
2662 |
2663 | normalize-path@^3.0.0:
2664 | version "3.0.0"
2665 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
2666 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
2667 |
2668 | npm-run-path@^4.0.1:
2669 | version "4.0.1"
2670 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
2671 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
2672 | dependencies:
2673 | path-key "^3.0.0"
2674 |
2675 | nwsapi@^2.2.0:
2676 | version "2.2.0"
2677 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
2678 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
2679 |
2680 | object-keys@^1.0.12, object-keys@^1.1.1:
2681 | version "1.1.1"
2682 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2683 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
2684 |
2685 | object.assign@^4.1.0:
2686 | version "4.1.2"
2687 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
2688 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
2689 | dependencies:
2690 | call-bind "^1.0.0"
2691 | define-properties "^1.1.3"
2692 | has-symbols "^1.0.1"
2693 | object-keys "^1.1.1"
2694 |
2695 | once@^1.3.0:
2696 | version "1.4.0"
2697 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2698 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
2699 | dependencies:
2700 | wrappy "1"
2701 |
2702 | onetime@^5.1.2:
2703 | version "5.1.2"
2704 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
2705 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
2706 | dependencies:
2707 | mimic-fn "^2.1.0"
2708 |
2709 | optionator@^0.8.1:
2710 | version "0.8.3"
2711 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
2712 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
2713 | dependencies:
2714 | deep-is "~0.1.3"
2715 | fast-levenshtein "~2.0.6"
2716 | levn "~0.3.0"
2717 | prelude-ls "~1.1.2"
2718 | type-check "~0.3.2"
2719 | word-wrap "~1.2.3"
2720 |
2721 | p-limit@^2.2.0:
2722 | version "2.3.0"
2723 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
2724 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
2725 | dependencies:
2726 | p-try "^2.0.0"
2727 |
2728 | p-locate@^4.1.0:
2729 | version "4.1.0"
2730 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
2731 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
2732 | dependencies:
2733 | p-limit "^2.2.0"
2734 |
2735 | p-try@^2.0.0:
2736 | version "2.2.0"
2737 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
2738 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
2739 |
2740 | parse5@6.0.1:
2741 | version "6.0.1"
2742 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
2743 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
2744 |
2745 | path-exists@^4.0.0:
2746 | version "4.0.0"
2747 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
2748 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
2749 |
2750 | path-is-absolute@^1.0.0:
2751 | version "1.0.1"
2752 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2753 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
2754 |
2755 | path-key@^3.0.0, path-key@^3.1.0:
2756 | version "3.1.1"
2757 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
2758 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
2759 |
2760 | path-parse@^1.0.6:
2761 | version "1.0.7"
2762 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
2763 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
2764 |
2765 | picomatch@^2.0.4, picomatch@^2.2.2, picomatch@^2.2.3:
2766 | version "2.3.0"
2767 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
2768 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
2769 |
2770 | pirates@^4.0.1:
2771 | version "4.0.1"
2772 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
2773 | integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
2774 | dependencies:
2775 | node-modules-regexp "^1.0.0"
2776 |
2777 | pkg-dir@^4.2.0:
2778 | version "4.2.0"
2779 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
2780 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
2781 | dependencies:
2782 | find-up "^4.0.0"
2783 |
2784 | prelude-ls@~1.1.2:
2785 | version "1.1.2"
2786 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2787 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
2788 |
2789 | pretty-format@^27.0.0, pretty-format@^27.2.4:
2790 | version "27.2.4"
2791 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.2.4.tgz#08ea39c5eab41b082852d7093059a091f6ddc748"
2792 | integrity sha512-NUjw22WJHldzxyps2YjLZkUj6q1HvjqFezkB9Y2cklN8NtVZN/kZEXGZdFw4uny3oENzV5EEMESrkI0YDUH8vg==
2793 | dependencies:
2794 | "@jest/types" "^27.2.4"
2795 | ansi-regex "^5.0.1"
2796 | ansi-styles "^5.0.0"
2797 | react-is "^17.0.1"
2798 |
2799 | prompts@^2.0.1:
2800 | version "2.4.1"
2801 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61"
2802 | integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==
2803 | dependencies:
2804 | kleur "^3.0.3"
2805 | sisteransi "^1.0.5"
2806 |
2807 | psl@^1.1.33:
2808 | version "1.8.0"
2809 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
2810 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
2811 |
2812 | punycode@^2.1.1:
2813 | version "2.1.1"
2814 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
2815 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
2816 |
2817 | react-is@^17.0.1:
2818 | version "17.0.2"
2819 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
2820 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
2821 |
2822 | regenerate-unicode-properties@^9.0.0:
2823 | version "9.0.0"
2824 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz#54d09c7115e1f53dc2314a974b32c1c344efe326"
2825 | integrity sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==
2826 | dependencies:
2827 | regenerate "^1.4.2"
2828 |
2829 | regenerate@^1.4.2:
2830 | version "1.4.2"
2831 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
2832 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
2833 |
2834 | regenerator-runtime@^0.13.4:
2835 | version "0.13.9"
2836 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
2837 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
2838 |
2839 | regenerator-transform@^0.14.2:
2840 | version "0.14.5"
2841 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
2842 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
2843 | dependencies:
2844 | "@babel/runtime" "^7.8.4"
2845 |
2846 | regexpu-core@^4.7.1:
2847 | version "4.8.0"
2848 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0"
2849 | integrity sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==
2850 | dependencies:
2851 | regenerate "^1.4.2"
2852 | regenerate-unicode-properties "^9.0.0"
2853 | regjsgen "^0.5.2"
2854 | regjsparser "^0.7.0"
2855 | unicode-match-property-ecmascript "^2.0.0"
2856 | unicode-match-property-value-ecmascript "^2.0.0"
2857 |
2858 | regjsgen@^0.5.2:
2859 | version "0.5.2"
2860 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
2861 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
2862 |
2863 | regjsparser@^0.7.0:
2864 | version "0.7.0"
2865 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.7.0.tgz#a6b667b54c885e18b52554cb4960ef71187e9968"
2866 | integrity sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==
2867 | dependencies:
2868 | jsesc "~0.5.0"
2869 |
2870 | require-directory@^2.1.1:
2871 | version "2.1.1"
2872 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2873 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
2874 |
2875 | resolve-cwd@^3.0.0:
2876 | version "3.0.0"
2877 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
2878 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
2879 | dependencies:
2880 | resolve-from "^5.0.0"
2881 |
2882 | resolve-from@^5.0.0:
2883 | version "5.0.0"
2884 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
2885 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
2886 |
2887 | resolve@^1.14.2, resolve@^1.17.0, resolve@^1.20.0:
2888 | version "1.20.0"
2889 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
2890 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
2891 | dependencies:
2892 | is-core-module "^2.2.0"
2893 | path-parse "^1.0.6"
2894 |
2895 | rimraf@^3.0.0:
2896 | version "3.0.2"
2897 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
2898 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
2899 | dependencies:
2900 | glob "^7.1.3"
2901 |
2902 | rollup@^2.58.0:
2903 | version "2.58.0"
2904 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.58.0.tgz#a643983365e7bf7f5b7c62a8331b983b7c4c67fb"
2905 | integrity sha512-NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw==
2906 | optionalDependencies:
2907 | fsevents "~2.3.2"
2908 |
2909 | safe-buffer@~5.1.1:
2910 | version "5.1.2"
2911 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
2912 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
2913 |
2914 | "safer-buffer@>= 2.1.2 < 3":
2915 | version "2.1.2"
2916 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
2917 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
2918 |
2919 | saxes@^5.0.1:
2920 | version "5.0.1"
2921 | resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
2922 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
2923 | dependencies:
2924 | xmlchars "^2.2.0"
2925 |
2926 | semver@7.0.0:
2927 | version "7.0.0"
2928 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
2929 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
2930 |
2931 | semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
2932 | version "6.3.0"
2933 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
2934 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
2935 |
2936 | semver@^7.3.2:
2937 | version "7.3.5"
2938 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
2939 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
2940 | dependencies:
2941 | lru-cache "^6.0.0"
2942 |
2943 | shebang-command@^2.0.0:
2944 | version "2.0.0"
2945 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
2946 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
2947 | dependencies:
2948 | shebang-regex "^3.0.0"
2949 |
2950 | shebang-regex@^3.0.0:
2951 | version "3.0.0"
2952 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
2953 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
2954 |
2955 | signal-exit@^3.0.2, signal-exit@^3.0.3:
2956 | version "3.0.5"
2957 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f"
2958 | integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==
2959 |
2960 | sisteransi@^1.0.5:
2961 | version "1.0.5"
2962 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
2963 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
2964 |
2965 | slash@^3.0.0:
2966 | version "3.0.0"
2967 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
2968 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
2969 |
2970 | source-map-support@^0.5.6:
2971 | version "0.5.20"
2972 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9"
2973 | integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==
2974 | dependencies:
2975 | buffer-from "^1.0.0"
2976 | source-map "^0.6.0"
2977 |
2978 | source-map@^0.5.0:
2979 | version "0.5.7"
2980 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2981 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
2982 |
2983 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
2984 | version "0.6.1"
2985 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
2986 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
2987 |
2988 | source-map@^0.7.3:
2989 | version "0.7.3"
2990 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
2991 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
2992 |
2993 | sprintf-js@~1.0.2:
2994 | version "1.0.3"
2995 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2996 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
2997 |
2998 | stack-utils@^2.0.3:
2999 | version "2.0.5"
3000 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5"
3001 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==
3002 | dependencies:
3003 | escape-string-regexp "^2.0.0"
3004 |
3005 | string-length@^4.0.1:
3006 | version "4.0.2"
3007 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a"
3008 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==
3009 | dependencies:
3010 | char-regex "^1.0.2"
3011 | strip-ansi "^6.0.0"
3012 |
3013 | string-width@^4.1.0, string-width@^4.2.0:
3014 | version "4.2.3"
3015 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
3016 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
3017 | dependencies:
3018 | emoji-regex "^8.0.0"
3019 | is-fullwidth-code-point "^3.0.0"
3020 | strip-ansi "^6.0.1"
3021 |
3022 | strip-ansi@^6.0.0, strip-ansi@^6.0.1:
3023 | version "6.0.1"
3024 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
3025 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
3026 | dependencies:
3027 | ansi-regex "^5.0.1"
3028 |
3029 | strip-bom@^4.0.0:
3030 | version "4.0.0"
3031 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878"
3032 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
3033 |
3034 | strip-final-newline@^2.0.0:
3035 | version "2.0.0"
3036 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
3037 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
3038 |
3039 | supports-color@^5.3.0:
3040 | version "5.5.0"
3041 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
3042 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
3043 | dependencies:
3044 | has-flag "^3.0.0"
3045 |
3046 | supports-color@^7.0.0, supports-color@^7.1.0:
3047 | version "7.2.0"
3048 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
3049 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
3050 | dependencies:
3051 | has-flag "^4.0.0"
3052 |
3053 | supports-color@^8.0.0:
3054 | version "8.1.1"
3055 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
3056 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
3057 | dependencies:
3058 | has-flag "^4.0.0"
3059 |
3060 | supports-hyperlinks@^2.0.0:
3061 | version "2.2.0"
3062 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb"
3063 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==
3064 | dependencies:
3065 | has-flag "^4.0.0"
3066 | supports-color "^7.0.0"
3067 |
3068 | symbol-tree@^3.2.4:
3069 | version "3.2.4"
3070 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
3071 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
3072 |
3073 | terminal-link@^2.0.0:
3074 | version "2.1.1"
3075 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
3076 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
3077 | dependencies:
3078 | ansi-escapes "^4.2.1"
3079 | supports-hyperlinks "^2.0.0"
3080 |
3081 | test-exclude@^6.0.0:
3082 | version "6.0.0"
3083 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
3084 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
3085 | dependencies:
3086 | "@istanbuljs/schema" "^0.1.2"
3087 | glob "^7.1.4"
3088 | minimatch "^3.0.4"
3089 |
3090 | throat@^6.0.1:
3091 | version "6.0.1"
3092 | resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375"
3093 | integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==
3094 |
3095 | tmpl@1.0.x:
3096 | version "1.0.5"
3097 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
3098 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
3099 |
3100 | to-fast-properties@^2.0.0:
3101 | version "2.0.0"
3102 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
3103 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
3104 |
3105 | to-regex-range@^5.0.1:
3106 | version "5.0.1"
3107 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
3108 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
3109 | dependencies:
3110 | is-number "^7.0.0"
3111 |
3112 | tough-cookie@^4.0.0:
3113 | version "4.0.0"
3114 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4"
3115 | integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==
3116 | dependencies:
3117 | psl "^1.1.33"
3118 | punycode "^2.1.1"
3119 | universalify "^0.1.2"
3120 |
3121 | tr46@^2.1.0:
3122 | version "2.1.0"
3123 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240"
3124 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==
3125 | dependencies:
3126 | punycode "^2.1.1"
3127 |
3128 | tslib@^2.3.1:
3129 | version "2.3.1"
3130 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
3131 | integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
3132 |
3133 | type-check@~0.3.2:
3134 | version "0.3.2"
3135 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
3136 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
3137 | dependencies:
3138 | prelude-ls "~1.1.2"
3139 |
3140 | type-detect@4.0.8:
3141 | version "4.0.8"
3142 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
3143 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
3144 |
3145 | type-fest@^0.21.3:
3146 | version "0.21.3"
3147 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
3148 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
3149 |
3150 | typedarray-to-buffer@^3.1.5:
3151 | version "3.1.5"
3152 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
3153 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
3154 | dependencies:
3155 | is-typedarray "^1.0.0"
3156 |
3157 | typescript@^4.4.3:
3158 | version "4.4.3"
3159 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.3.tgz#bdc5407caa2b109efd4f82fe130656f977a29324"
3160 | integrity sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==
3161 |
3162 | unicode-canonical-property-names-ecmascript@^2.0.0:
3163 | version "2.0.0"
3164 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
3165 | integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
3166 |
3167 | unicode-match-property-ecmascript@^2.0.0:
3168 | version "2.0.0"
3169 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3"
3170 | integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
3171 | dependencies:
3172 | unicode-canonical-property-names-ecmascript "^2.0.0"
3173 | unicode-property-aliases-ecmascript "^2.0.0"
3174 |
3175 | unicode-match-property-value-ecmascript@^2.0.0:
3176 | version "2.0.0"
3177 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714"
3178 | integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==
3179 |
3180 | unicode-property-aliases-ecmascript@^2.0.0:
3181 | version "2.0.0"
3182 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8"
3183 | integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==
3184 |
3185 | universalify@^0.1.2:
3186 | version "0.1.2"
3187 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
3188 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
3189 |
3190 | v8-to-istanbul@^8.1.0:
3191 | version "8.1.0"
3192 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz#0aeb763894f1a0a1676adf8a8b7612a38902446c"
3193 | integrity sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA==
3194 | dependencies:
3195 | "@types/istanbul-lib-coverage" "^2.0.1"
3196 | convert-source-map "^1.6.0"
3197 | source-map "^0.7.3"
3198 |
3199 | w3c-hr-time@^1.0.2:
3200 | version "1.0.2"
3201 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
3202 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
3203 | dependencies:
3204 | browser-process-hrtime "^1.0.0"
3205 |
3206 | w3c-xmlserializer@^2.0.0:
3207 | version "2.0.0"
3208 | resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a"
3209 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==
3210 | dependencies:
3211 | xml-name-validator "^3.0.0"
3212 |
3213 | walker@^1.0.7:
3214 | version "1.0.7"
3215 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
3216 | integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
3217 | dependencies:
3218 | makeerror "1.0.x"
3219 |
3220 | webidl-conversions@^5.0.0:
3221 | version "5.0.0"
3222 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
3223 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
3224 |
3225 | webidl-conversions@^6.1.0:
3226 | version "6.1.0"
3227 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514"
3228 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
3229 |
3230 | whatwg-encoding@^1.0.5:
3231 | version "1.0.5"
3232 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
3233 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
3234 | dependencies:
3235 | iconv-lite "0.4.24"
3236 |
3237 | whatwg-mimetype@^2.3.0:
3238 | version "2.3.0"
3239 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
3240 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
3241 |
3242 | whatwg-url@^8.0.0, whatwg-url@^8.5.0:
3243 | version "8.7.0"
3244 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77"
3245 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==
3246 | dependencies:
3247 | lodash "^4.7.0"
3248 | tr46 "^2.1.0"
3249 | webidl-conversions "^6.1.0"
3250 |
3251 | which@^2.0.1:
3252 | version "2.0.2"
3253 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
3254 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
3255 | dependencies:
3256 | isexe "^2.0.0"
3257 |
3258 | word-wrap@~1.2.3:
3259 | version "1.2.3"
3260 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
3261 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
3262 |
3263 | wrap-ansi@^7.0.0:
3264 | version "7.0.0"
3265 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
3266 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
3267 | dependencies:
3268 | ansi-styles "^4.0.0"
3269 | string-width "^4.1.0"
3270 | strip-ansi "^6.0.0"
3271 |
3272 | wrappy@1:
3273 | version "1.0.2"
3274 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3275 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
3276 |
3277 | write-file-atomic@^3.0.0:
3278 | version "3.0.3"
3279 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
3280 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
3281 | dependencies:
3282 | imurmurhash "^0.1.4"
3283 | is-typedarray "^1.0.0"
3284 | signal-exit "^3.0.2"
3285 | typedarray-to-buffer "^3.1.5"
3286 |
3287 | ws@^7.4.6:
3288 | version "7.5.5"
3289 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881"
3290 | integrity sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==
3291 |
3292 | xml-name-validator@^3.0.0:
3293 | version "3.0.0"
3294 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
3295 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
3296 |
3297 | xmlchars@^2.2.0:
3298 | version "2.2.0"
3299 | resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
3300 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
3301 |
3302 | y18n@^5.0.5:
3303 | version "5.0.8"
3304 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
3305 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
3306 |
3307 | yallist@^4.0.0:
3308 | version "4.0.0"
3309 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
3310 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
3311 |
3312 | yargs-parser@^20.2.2:
3313 | version "20.2.9"
3314 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
3315 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
3316 |
3317 | yargs@^16.2.0:
3318 | version "16.2.0"
3319 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
3320 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
3321 | dependencies:
3322 | cliui "^7.0.2"
3323 | escalade "^3.1.1"
3324 | get-caller-file "^2.0.5"
3325 | require-directory "^2.1.1"
3326 | string-width "^4.2.0"
3327 | y18n "^5.0.5"
3328 | yargs-parser "^20.2.2"
3329 |
--------------------------------------------------------------------------------