webpacker 5.0.0 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +32 -43
- data/lib/webpacker/version.rb +1 -1
- data/package.json +23 -23
- data/package/rules/sass.js +6 -1
- data/yarn.lock +1634 -1092
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fcfdb400418dee827f9e717fab7d39291ca7a8c900cc82ce364553ae27eaf9d7
|
4
|
+
data.tar.gz: f05c4be4f53c4462be6c0d94ae35377f58da4bc27609fb904137c2ef4c8eb6ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd03a035e7f9cb7462b60c66a9426c7b66377f8c571df82be2ed3a624bfe719531465241403290b06feff1391ac4423730e2df3b5510aed74ad8d56347f1e4bd
|
7
|
+
data.tar.gz: 492dbcb6e2793b357e3d4aee8ab99fa112300f57ed03c600b203dc445d47d2257493ebbab118efc9097f3d4f2d3a923f42cd9054b8e0e8c00060fcb8cfe0ee99
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
**Please note that Webpacker 4.1.0 has an installer bug. Please use 4.2.0 or above**
|
4
4
|
|
5
|
+
## [[5.0.1]](https://github.com/rails/webpacker/compare/v4.2.2...v5.0.0) - 2020-03-22
|
6
|
+
|
7
|
+
- Upgrade deps and fix sass loader config options bug [#2508](https://github.com/rails/webpacker/pull/2508)
|
8
|
+
|
5
9
|
## [[5.0.0]](https://github.com/rails/webpacker/compare/v4.2.2...v5.0.0) - 2020-03-22
|
6
10
|
|
7
11
|
- Bump minimum node version [#2428](https://github.com/rails/webpacker/pull/2428)
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -13,10 +13,11 @@ even JavaScript Sprinkles (that all continues to live in app/assets).
|
|
13
13
|
However, it is possible to use Webpacker for CSS, images and fonts assets as well,
|
14
14
|
in which case you may not even need the asset pipeline. This is mostly relevant when exclusively using component-based JavaScript frameworks.
|
15
15
|
|
16
|
-
**NOTE:** The master branch now hosts the code for
|
16
|
+
**NOTE:** The master branch now hosts the code for v5.x.x. Please refer to [4-x-stable](https://github.com/rails/webpacker/tree/4-x-stable) branch for 4.x documentation.
|
17
17
|
|
18
18
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
19
19
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
20
|
+
|
20
21
|
## Table of Contents
|
21
22
|
|
22
23
|
- [Prerequisites](#prerequisites)
|
@@ -47,29 +48,26 @@ in which case you may not even need the asset pipeline. This is mostly relevant
|
|
47
48
|
|
48
49
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
49
50
|
|
50
|
-
|
51
51
|
## Prerequisites
|
52
52
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
53
|
+
- Ruby 2.4+
|
54
|
+
- Rails 5.2+
|
55
|
+
- Node.js 10.13.0+
|
56
|
+
- Yarn 1.x+
|
58
57
|
|
59
58
|
## Features
|
60
59
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
60
|
+
- [webpack 4.x.x](https://webpack.js.org/)
|
61
|
+
- ES6 with [babel](https://babeljs.io/)
|
62
|
+
- Automatic code splitting using multiple entry points
|
63
|
+
- Stylesheets - Sass and CSS
|
64
|
+
- Images and fonts
|
65
|
+
- PostCSS - Auto-Prefixer
|
66
|
+
- Asset compression, source-maps, and minification
|
67
|
+
- CDN support
|
68
|
+
- React, Angular, Elm and Vue support out-of-the-box
|
69
|
+
- Rails view helpers
|
70
|
+
- Extensible and configurable
|
73
71
|
|
74
72
|
## Installation
|
75
73
|
|
@@ -127,8 +125,8 @@ app/javascript:
|
|
127
125
|
In `/packs/application.js`, include this at the top of the file:
|
128
126
|
|
129
127
|
```js
|
130
|
-
import
|
131
|
-
import
|
128
|
+
import 'core-js/stable'
|
129
|
+
import 'regenerator-runtime/runtime'
|
132
130
|
```
|
133
131
|
|
134
132
|
You can then link the JavaScript pack in Rails views using the `javascript_pack_tag` helper.
|
@@ -175,7 +173,6 @@ helper otherwise you will get duplicated chunks on the page.
|
|
175
173
|
**Note:** In order for your styles or static assets files to be available in your view,
|
176
174
|
you would need to link them in your "pack" or entry file.
|
177
175
|
|
178
|
-
|
179
176
|
### Development
|
180
177
|
|
181
178
|
Webpacker ships with two binstubs: `./bin/webpack` and `./bin/webpack-dev-server`.
|
@@ -240,7 +237,6 @@ WEBPACKER_DEV_SERVER_HOST=0.0.0.0 ./bin/webpack-dev-server
|
|
240
237
|
|
241
238
|
See [docs/webpack](docs/webpack.md) for modifying webpack configuration and loaders.
|
242
239
|
|
243
|
-
|
244
240
|
### Custom Rails environments
|
245
241
|
|
246
242
|
Out of the box Webpacker ships with - development, test and production environments in `config/webpacker.yml` however, in most production apps extra environments are needed as part of deployment workflow. Webpacker supports this out of the box from version 3.4.0+ onwards.
|
@@ -290,7 +286,6 @@ bundle exec rails assets:precompile
|
|
290
286
|
bundle exec rails webpacker:compile
|
291
287
|
```
|
292
288
|
|
293
|
-
|
294
289
|
### Upgrading
|
295
290
|
|
296
291
|
You can run following commands to upgrade Webpacker to the latest stable version. This process involves upgrading the gem and related JavaScript packages:
|
@@ -322,7 +317,7 @@ development:
|
|
322
317
|
You may also turn on this feature by adding the config option for any Rails environment in `config/webpacker.yml`:
|
323
318
|
|
324
319
|
```yaml
|
325
|
-
|
320
|
+
check_yarn_integrity: true
|
326
321
|
```
|
327
322
|
|
328
323
|
## Integrations
|
@@ -331,15 +326,15 @@ Webpacker ships with basic out-of-the-box integration. You can see a list of ava
|
|
331
326
|
|
332
327
|
Included install integrations:
|
333
328
|
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
329
|
+
- [React](./docs/integrations.md#React)
|
330
|
+
- [Angular with TypeScript](./docs/integrations.md#Angular-with-TypeScript)
|
331
|
+
- [Vue](./docs/integrations.md#Vue)
|
332
|
+
- [Elm](./docs/integrations.md#Elm)
|
333
|
+
- [Svelte](./docs/integrations.md#Svelte)
|
334
|
+
- [Stimulus](./docs/integrations.md#Stimulus)
|
335
|
+
- [CoffeeScript](./docs/integrations.md#CoffeeScript)
|
336
|
+
- [Typescript](./docs/integrations.md)
|
337
|
+
- [Erb](./docs/integrations.md#Erb)
|
343
338
|
|
344
339
|
See [Integrations](./docs/integrations.md) for further details.
|
345
340
|
|
@@ -378,7 +373,6 @@ development:
|
|
378
373
|
|
379
374
|
If you have `hmr` turned to true, then the `stylesheet_pack_tag` generates no output, as you will want to configure your styles to be inlined in your JavaScript for hot reloading. During production and testing, the `stylesheet_pack_tag` will create the appropriate HTML tags.
|
380
375
|
|
381
|
-
|
382
376
|
### Resolved
|
383
377
|
|
384
378
|
If you are adding Webpacker to an existing app that has most of the assets inside
|
@@ -403,7 +397,6 @@ import 'images/rails.png'
|
|
403
397
|
will make the compilation slow, consider adding specific paths instead of
|
404
398
|
whole parent directory if you just need to reference one or two modules
|
405
399
|
|
406
|
-
|
407
400
|
### Watched
|
408
401
|
|
409
402
|
By default, the lazy compilation is cached until a file is changed under your
|
@@ -416,12 +409,10 @@ by adding new paths to `watched_paths` array. This is much like Rails' `autoload
|
|
416
409
|
Webpacker::Compiler.watched_paths << 'bower_components'
|
417
410
|
```
|
418
411
|
|
419
|
-
|
420
412
|
## Deployment
|
421
413
|
|
422
414
|
Webpacker hooks up a new `webpacker:compile` task to `assets:precompile`, which gets run whenever you run `assets:precompile`. If you are not using Sprockets, `webpacker:compile` is automatically aliased to `assets:precompile`. Similar to sprockets both rake tasks will compile packs in production mode but will use `RAILS_ENV` to load configuration from `config/webpacker.yml` (if available).
|
423
415
|
|
424
|
-
|
425
416
|
## Docs
|
426
417
|
|
427
418
|
- [Development](https://github.com/rails/webpacker#development)
|
@@ -429,9 +420,7 @@ Webpacker hooks up a new `webpacker:compile` task to `assets:precompile`, which
|
|
429
420
|
- [Webpack-dev-server](./docs/webpack-dev-server.md)
|
430
421
|
- [Environment Variables](./docs/env.md)
|
431
422
|
- [Folder Structure](./docs/folder-structure.md)
|
432
|
-
- [Assets](./docs/assets.md)
|
433
|
-
- [CSS, Sass and SCSS](./docs/css.md)
|
434
|
-
- [ES6](./docs/es6.md)
|
423
|
+
- [Assets](./docs/assets.md) - [CSS, Sass and SCSS](./docs/css.md) - [ES6](./docs/es6.md)
|
435
424
|
- [Props](./docs/props.md)
|
436
425
|
- [Typescript](./docs/typescript.md)
|
437
426
|
- [Yarn](./docs/yarn.md)
|
@@ -444,12 +433,12 @@ Webpacker hooks up a new `webpacker:compile` task to `assets:precompile`, which
|
|
444
433
|
- [Troubleshooting](./docs/troubleshooting.md)
|
445
434
|
- [v3 to v4 Upgrade Guide](./docs/v4-upgrade.md)
|
446
435
|
|
447
|
-
|
448
436
|
## Contributing
|
437
|
+
|
449
438
|
[](https://www.codetriage.com/rails/webpacker)
|
450
439
|
|
451
440
|
We encourage you to contribute to Webpacker! See [CONTRIBUTING](CONTRIBUTING.md) for guidelines about how to proceed.
|
452
441
|
|
453
|
-
|
454
442
|
## License
|
443
|
+
|
455
444
|
Webpacker is released under the [MIT License](https://opensource.org/licenses/MIT).
|
data/lib/webpacker/version.rb
CHANGED
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@rails/webpacker",
|
3
|
-
"version": "5.0.
|
3
|
+
"version": "5.0.1",
|
4
4
|
"description": "Use webpack to manage app-like JavaScript modules in Rails",
|
5
5
|
"main": "package/index.js",
|
6
6
|
"files": [
|
@@ -12,23 +12,23 @@
|
|
12
12
|
"yarn": ">=1 <2"
|
13
13
|
},
|
14
14
|
"dependencies": {
|
15
|
-
"@babel/core": "^7.
|
15
|
+
"@babel/core": "^7.9.0",
|
16
16
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
17
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.
|
17
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
|
18
18
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
19
19
|
"@babel/plugin-transform-destructuring": "^7.8.8",
|
20
20
|
"@babel/plugin-transform-regenerator": "^7.8.7",
|
21
|
-
"@babel/plugin-transform-runtime": "^7.
|
22
|
-
"@babel/preset-env": "^7.
|
23
|
-
"@babel/runtime": "^7.
|
24
|
-
"babel-loader": "^8.0
|
21
|
+
"@babel/plugin-transform-runtime": "^7.9.0",
|
22
|
+
"@babel/preset-env": "^7.9.0",
|
23
|
+
"@babel/runtime": "^7.9.2",
|
24
|
+
"babel-loader": "^8.1.0",
|
25
25
|
"babel-plugin-dynamic-import-node": "^2.3.0",
|
26
26
|
"babel-plugin-macros": "^2.8.0",
|
27
|
-
"case-sensitive-paths-webpack-plugin": "^2.
|
28
|
-
"compression-webpack-plugin": "^3.0
|
27
|
+
"case-sensitive-paths-webpack-plugin": "^2.3.0",
|
28
|
+
"compression-webpack-plugin": "^3.1.0",
|
29
29
|
"core-js": "^3.6.4",
|
30
|
-
"css-loader": "^3.4.
|
31
|
-
"file-loader": "^
|
30
|
+
"css-loader": "^3.4.2",
|
31
|
+
"file-loader": "^6.0.0",
|
32
32
|
"flatted": "^2.0.1",
|
33
33
|
"glob": "^7.1.6",
|
34
34
|
"js-yaml": "^3.13.1",
|
@@ -36,28 +36,28 @@
|
|
36
36
|
"node-sass": "^4.13.1",
|
37
37
|
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
38
38
|
"path-complete-extname": "^1.0.0",
|
39
|
-
"pnp-webpack-plugin": "^1.
|
40
|
-
"postcss-flexbugs-fixes": "^4.
|
39
|
+
"pnp-webpack-plugin": "^1.6.4",
|
40
|
+
"postcss-flexbugs-fixes": "^4.2.0",
|
41
41
|
"postcss-import": "^12.0.1",
|
42
42
|
"postcss-loader": "^3.0.0",
|
43
43
|
"postcss-preset-env": "^6.7.0",
|
44
|
-
"postcss-safe-parser": "^4.0.
|
45
|
-
"regenerator-runtime": "^0.13.
|
46
|
-
"sass-loader": "^
|
47
|
-
"style-loader": "^1.1.
|
44
|
+
"postcss-safe-parser": "^4.0.2",
|
45
|
+
"regenerator-runtime": "^0.13.5",
|
46
|
+
"sass-loader": "^8.0.2",
|
47
|
+
"style-loader": "^1.1.3",
|
48
48
|
"terser-webpack-plugin": "^2.3.5",
|
49
|
-
"webpack": "^4.42.
|
49
|
+
"webpack": "^4.42.1",
|
50
50
|
"webpack-assets-manifest": "^3.1.1",
|
51
|
-
"webpack-cli": "^3.3.
|
51
|
+
"webpack-cli": "^3.3.11",
|
52
52
|
"webpack-sources": "^1.4.3"
|
53
53
|
},
|
54
54
|
"devDependencies": {
|
55
55
|
"eslint": "^6.8.0",
|
56
|
-
"eslint-config-airbnb": "^18.0
|
57
|
-
"eslint-plugin-import": "^2.
|
56
|
+
"eslint-config-airbnb": "^18.1.0",
|
57
|
+
"eslint-plugin-import": "^2.20.1",
|
58
58
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
59
|
-
"eslint-plugin-react": "^7.
|
60
|
-
"jest": "^
|
59
|
+
"eslint-plugin-react": "^7.19.0",
|
60
|
+
"jest": "^25.1.0"
|
61
61
|
},
|
62
62
|
"jest": {
|
63
63
|
"testRegex": "(/__tests__/.*|(\\.|/))\\.jsx?$",
|
data/package/rules/sass.js
CHANGED
@@ -4,6 +4,11 @@ const { resolved_paths: includePaths } = require('../config')
|
|
4
4
|
module.exports = getStyleRule(/\.(scss|sass)(\.erb)?$/i, false, [
|
5
5
|
{
|
6
6
|
loader: 'sass-loader',
|
7
|
-
options: {
|
7
|
+
options: {
|
8
|
+
sourceMap: true,
|
9
|
+
sassOptions: {
|
10
|
+
includePaths
|
11
|
+
}
|
12
|
+
}
|
8
13
|
}
|
9
14
|
])
|
data/yarn.lock
CHANGED
@@ -25,6 +25,15 @@
|
|
25
25
|
invariant "^2.2.4"
|
26
26
|
semver "^5.5.0"
|
27
27
|
|
28
|
+
"@babel/compat-data@^7.9.0":
|
29
|
+
version "7.9.0"
|
30
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.9.0.tgz#04815556fc90b0c174abd2c0c1bb966faa036a6c"
|
31
|
+
integrity sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g==
|
32
|
+
dependencies:
|
33
|
+
browserslist "^4.9.1"
|
34
|
+
invariant "^2.2.4"
|
35
|
+
semver "^5.5.0"
|
36
|
+
|
28
37
|
"@babel/core@^7.1.0":
|
29
38
|
version "7.7.2"
|
30
39
|
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.2.tgz#ea5b99693bcfc058116f42fa1dd54da412b29d91"
|
@@ -45,28 +54,29 @@
|
|
45
54
|
semver "^5.4.1"
|
46
55
|
source-map "^0.5.0"
|
47
56
|
|
48
|
-
"@babel/core@^7.
|
49
|
-
version "7.
|
50
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.
|
51
|
-
integrity sha512-
|
57
|
+
"@babel/core@^7.7.5", "@babel/core@^7.9.0":
|
58
|
+
version "7.9.0"
|
59
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e"
|
60
|
+
integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==
|
52
61
|
dependencies:
|
53
62
|
"@babel/code-frame" "^7.8.3"
|
54
|
-
"@babel/generator" "^7.
|
55
|
-
"@babel/
|
56
|
-
"@babel/
|
63
|
+
"@babel/generator" "^7.9.0"
|
64
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
65
|
+
"@babel/helpers" "^7.9.0"
|
66
|
+
"@babel/parser" "^7.9.0"
|
57
67
|
"@babel/template" "^7.8.6"
|
58
|
-
"@babel/traverse" "^7.
|
59
|
-
"@babel/types" "^7.
|
68
|
+
"@babel/traverse" "^7.9.0"
|
69
|
+
"@babel/types" "^7.9.0"
|
60
70
|
convert-source-map "^1.7.0"
|
61
71
|
debug "^4.1.0"
|
62
72
|
gensync "^1.0.0-beta.1"
|
63
|
-
json5 "^2.1.
|
73
|
+
json5 "^2.1.2"
|
64
74
|
lodash "^4.17.13"
|
65
75
|
resolve "^1.3.2"
|
66
76
|
semver "^5.4.1"
|
67
77
|
source-map "^0.5.0"
|
68
78
|
|
69
|
-
"@babel/generator@^7.
|
79
|
+
"@babel/generator@^7.7.2":
|
70
80
|
version "7.7.2"
|
71
81
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.2.tgz#2f4852d04131a5e17ea4f6645488b5da66ebf3af"
|
72
82
|
integrity sha512-WthSArvAjYLz4TcbKOi88me+KmDJdKSlfwwN8CnUYn9jBkzhq0ZEPuBfkAWIvjJ3AdEV1Cf/+eSQTnp3IDJKlQ==
|
@@ -86,12 +96,12 @@
|
|
86
96
|
lodash "^4.17.13"
|
87
97
|
source-map "^0.5.0"
|
88
98
|
|
89
|
-
"@babel/generator@^7.
|
90
|
-
version "7.
|
91
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
92
|
-
integrity sha512-
|
99
|
+
"@babel/generator@^7.9.0":
|
100
|
+
version "7.9.4"
|
101
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.4.tgz#12441e90c3b3c4159cdecf312075bf1a8ce2dbce"
|
102
|
+
integrity sha512-rjP8ahaDy/ouhrvCoU1E5mqaitWrxwuNGU+dy1EpaoK48jZay4MdkskKGIMHLZNewg8sAsqpGSREJwP0zH3YQA==
|
93
103
|
dependencies:
|
94
|
-
"@babel/types" "^7.
|
104
|
+
"@babel/types" "^7.9.0"
|
95
105
|
jsesc "^2.5.1"
|
96
106
|
lodash "^4.17.13"
|
97
107
|
source-map "^0.5.0"
|
@@ -152,6 +162,15 @@
|
|
152
162
|
"@babel/helper-regex" "^7.8.3"
|
153
163
|
regexpu-core "^4.6.0"
|
154
164
|
|
165
|
+
"@babel/helper-create-regexp-features-plugin@^7.8.8":
|
166
|
+
version "7.8.8"
|
167
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087"
|
168
|
+
integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==
|
169
|
+
dependencies:
|
170
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
171
|
+
"@babel/helper-regex" "^7.8.3"
|
172
|
+
regexpu-core "^4.7.0"
|
173
|
+
|
155
174
|
"@babel/helper-define-map@^7.8.3":
|
156
175
|
version "7.8.3"
|
157
176
|
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15"
|
@@ -222,17 +241,17 @@
|
|
222
241
|
dependencies:
|
223
242
|
"@babel/types" "^7.8.3"
|
224
243
|
|
225
|
-
"@babel/helper-module-transforms@^7.
|
226
|
-
version "7.
|
227
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.
|
228
|
-
integrity sha512-
|
244
|
+
"@babel/helper-module-transforms@^7.9.0":
|
245
|
+
version "7.9.0"
|
246
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5"
|
247
|
+
integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==
|
229
248
|
dependencies:
|
230
249
|
"@babel/helper-module-imports" "^7.8.3"
|
231
250
|
"@babel/helper-replace-supers" "^7.8.6"
|
232
251
|
"@babel/helper-simple-access" "^7.8.3"
|
233
252
|
"@babel/helper-split-export-declaration" "^7.8.3"
|
234
253
|
"@babel/template" "^7.8.6"
|
235
|
-
"@babel/types" "^7.
|
254
|
+
"@babel/types" "^7.9.0"
|
236
255
|
lodash "^4.17.13"
|
237
256
|
|
238
257
|
"@babel/helper-optimise-call-expression@^7.8.3":
|
@@ -302,6 +321,11 @@
|
|
302
321
|
dependencies:
|
303
322
|
"@babel/types" "^7.8.3"
|
304
323
|
|
324
|
+
"@babel/helper-validator-identifier@^7.9.0":
|
325
|
+
version "7.9.0"
|
326
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz#ad53562a7fc29b3b9a91bbf7d10397fd146346ed"
|
327
|
+
integrity sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw==
|
328
|
+
|
305
329
|
"@babel/helper-wrap-function@^7.8.3":
|
306
330
|
version "7.8.3"
|
307
331
|
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610"
|
@@ -321,14 +345,14 @@
|
|
321
345
|
"@babel/traverse" "^7.7.0"
|
322
346
|
"@babel/types" "^7.7.0"
|
323
347
|
|
324
|
-
"@babel/helpers@^7.
|
325
|
-
version "7.
|
326
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.
|
327
|
-
integrity sha512-
|
348
|
+
"@babel/helpers@^7.9.0":
|
349
|
+
version "7.9.2"
|
350
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f"
|
351
|
+
integrity sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA==
|
328
352
|
dependencies:
|
329
353
|
"@babel/template" "^7.8.3"
|
330
|
-
"@babel/traverse" "^7.
|
331
|
-
"@babel/types" "^7.
|
354
|
+
"@babel/traverse" "^7.9.0"
|
355
|
+
"@babel/types" "^7.9.0"
|
332
356
|
|
333
357
|
"@babel/highlight@^7.0.0":
|
334
358
|
version "7.5.0"
|
@@ -348,21 +372,21 @@
|
|
348
372
|
esutils "^2.0.2"
|
349
373
|
js-tokens "^4.0.0"
|
350
374
|
|
351
|
-
"@babel/parser@^7.1.0", "@babel/parser@^7.
|
375
|
+
"@babel/parser@^7.1.0", "@babel/parser@^7.7.0", "@babel/parser@^7.7.2":
|
352
376
|
version "7.7.3"
|
353
377
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.3.tgz#5fad457c2529de476a248f75b0f090b3060af043"
|
354
378
|
integrity sha512-bqv+iCo9i+uLVbI0ILzKkvMorqxouI+GbV13ivcARXn9NNEabi2IEz912IgNpT/60BNXac5dgcfjb94NjsF33A==
|
355
379
|
|
380
|
+
"@babel/parser@^7.7.5", "@babel/parser@^7.9.0":
|
381
|
+
version "7.9.4"
|
382
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
|
383
|
+
integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
|
384
|
+
|
356
385
|
"@babel/parser@^7.8.6":
|
357
386
|
version "7.8.6"
|
358
387
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.6.tgz#ba5c9910cddb77685a008e3c587af8d27b67962c"
|
359
388
|
integrity sha512-trGNYSfwq5s0SgM1BMEB8hX3NDmO7EP2wsDGDexiaKMB92BaRpS+qZfpkMqUBhcsOTBwNy9B/jieo4ad/t/z2g==
|
360
389
|
|
361
|
-
"@babel/parser@^7.8.7":
|
362
|
-
version "7.8.8"
|
363
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.8.tgz#4c3b7ce36db37e0629be1f0d50a571d2f86f6cd4"
|
364
|
-
integrity sha512-mO5GWzBPsPf6865iIbzNE0AvkKF3NE+2S3eRUpE+FE07BOAkXh6G+GW/Pj01hhXjve1WScbaIO4UlY1JKeqCcA==
|
365
|
-
|
366
390
|
"@babel/plugin-proposal-async-generator-functions@^7.8.3":
|
367
391
|
version "7.8.3"
|
368
392
|
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f"
|
@@ -404,10 +428,18 @@
|
|
404
428
|
"@babel/helper-plugin-utils" "^7.8.3"
|
405
429
|
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
406
430
|
|
407
|
-
"@babel/plugin-proposal-
|
431
|
+
"@babel/plugin-proposal-numeric-separator@^7.8.3":
|
408
432
|
version "7.8.3"
|
409
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
410
|
-
integrity sha512-
|
433
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8"
|
434
|
+
integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==
|
435
|
+
dependencies:
|
436
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
437
|
+
"@babel/plugin-syntax-numeric-separator" "^7.8.3"
|
438
|
+
|
439
|
+
"@babel/plugin-proposal-object-rest-spread@^7.9.0":
|
440
|
+
version "7.9.0"
|
441
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.0.tgz#a28993699fc13df165995362693962ba6b061d6f"
|
442
|
+
integrity sha512-UgqBv6bjq4fDb8uku9f+wcm1J7YxJ5nT7WO/jBr0cl0PLKb7t1O6RNR1kZbjgx2LQtsDI9hwoQVmn0yhXeQyow==
|
411
443
|
dependencies:
|
412
444
|
"@babel/helper-plugin-utils" "^7.8.3"
|
413
445
|
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
@@ -420,14 +452,22 @@
|
|
420
452
|
"@babel/helper-plugin-utils" "^7.8.3"
|
421
453
|
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
422
454
|
|
423
|
-
"@babel/plugin-proposal-optional-chaining@^7.
|
424
|
-
version "7.
|
425
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.
|
426
|
-
integrity sha512-
|
455
|
+
"@babel/plugin-proposal-optional-chaining@^7.9.0":
|
456
|
+
version "7.9.0"
|
457
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58"
|
458
|
+
integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==
|
427
459
|
dependencies:
|
428
460
|
"@babel/helper-plugin-utils" "^7.8.3"
|
429
461
|
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
430
462
|
|
463
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
|
464
|
+
version "7.8.8"
|
465
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d"
|
466
|
+
integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==
|
467
|
+
dependencies:
|
468
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.8"
|
469
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
470
|
+
|
431
471
|
"@babel/plugin-proposal-unicode-property-regex@^7.8.3":
|
432
472
|
version "7.8.3"
|
433
473
|
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.3.tgz#b646c3adea5f98800c9ab45105ac34d06cd4a47f"
|
@@ -443,6 +483,13 @@
|
|
443
483
|
dependencies:
|
444
484
|
"@babel/helper-plugin-utils" "^7.8.0"
|
445
485
|
|
486
|
+
"@babel/plugin-syntax-bigint@^7.0.0":
|
487
|
+
version "7.8.3"
|
488
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
|
489
|
+
integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
|
490
|
+
dependencies:
|
491
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
492
|
+
|
446
493
|
"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3":
|
447
494
|
version "7.8.3"
|
448
495
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
|
@@ -464,6 +511,13 @@
|
|
464
511
|
dependencies:
|
465
512
|
"@babel/helper-plugin-utils" "^7.8.0"
|
466
513
|
|
514
|
+
"@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3":
|
515
|
+
version "7.8.3"
|
516
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f"
|
517
|
+
integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw==
|
518
|
+
dependencies:
|
519
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
520
|
+
|
467
521
|
"@babel/plugin-syntax-object-rest-spread@^7.0.0":
|
468
522
|
version "7.2.0"
|
469
523
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e"
|
@@ -530,10 +584,10 @@
|
|
530
584
|
"@babel/helper-plugin-utils" "^7.8.3"
|
531
585
|
lodash "^4.17.13"
|
532
586
|
|
533
|
-
"@babel/plugin-transform-classes@^7.
|
534
|
-
version "7.
|
535
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
|
536
|
-
integrity sha512-
|
587
|
+
"@babel/plugin-transform-classes@^7.9.0":
|
588
|
+
version "7.9.2"
|
589
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.2.tgz#8603fc3cc449e31fdbdbc257f67717536a11af8d"
|
590
|
+
integrity sha512-TC2p3bPzsfvSsqBZo0kJnuelnoK9O3welkUpqSqBQuBF6R5MN2rysopri8kNvtlGIb2jmUO7i15IooAZJjZuMQ==
|
537
591
|
dependencies:
|
538
592
|
"@babel/helper-annotate-as-pure" "^7.8.3"
|
539
593
|
"@babel/helper-define-map" "^7.8.3"
|
@@ -565,7 +619,7 @@
|
|
565
619
|
dependencies:
|
566
620
|
"@babel/helper-plugin-utils" "^7.8.3"
|
567
621
|
|
568
|
-
"@babel/plugin-transform-dotall-regex@^7.8.3":
|
622
|
+
"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3":
|
569
623
|
version "7.8.3"
|
570
624
|
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e"
|
571
625
|
integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==
|
@@ -588,10 +642,10 @@
|
|
588
642
|
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3"
|
589
643
|
"@babel/helper-plugin-utils" "^7.8.3"
|
590
644
|
|
591
|
-
"@babel/plugin-transform-for-of@^7.
|
592
|
-
version "7.
|
593
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
594
|
-
integrity sha512-
|
645
|
+
"@babel/plugin-transform-for-of@^7.9.0":
|
646
|
+
version "7.9.0"
|
647
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e"
|
648
|
+
integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==
|
595
649
|
dependencies:
|
596
650
|
"@babel/helper-plugin-utils" "^7.8.3"
|
597
651
|
|
@@ -617,41 +671,41 @@
|
|
617
671
|
dependencies:
|
618
672
|
"@babel/helper-plugin-utils" "^7.8.3"
|
619
673
|
|
620
|
-
"@babel/plugin-transform-modules-amd@^7.
|
621
|
-
version "7.
|
622
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
|
623
|
-
integrity sha512-
|
674
|
+
"@babel/plugin-transform-modules-amd@^7.9.0":
|
675
|
+
version "7.9.0"
|
676
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.0.tgz#19755ee721912cf5bb04c07d50280af3484efef4"
|
677
|
+
integrity sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q==
|
624
678
|
dependencies:
|
625
|
-
"@babel/helper-module-transforms" "^7.
|
679
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
626
680
|
"@babel/helper-plugin-utils" "^7.8.3"
|
627
681
|
babel-plugin-dynamic-import-node "^2.3.0"
|
628
682
|
|
629
|
-
"@babel/plugin-transform-modules-commonjs@^7.
|
630
|
-
version "7.
|
631
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
632
|
-
integrity sha512-
|
683
|
+
"@babel/plugin-transform-modules-commonjs@^7.9.0":
|
684
|
+
version "7.9.0"
|
685
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz#e3e72f4cbc9b4a260e30be0ea59bdf5a39748940"
|
686
|
+
integrity sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g==
|
633
687
|
dependencies:
|
634
|
-
"@babel/helper-module-transforms" "^7.
|
688
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
635
689
|
"@babel/helper-plugin-utils" "^7.8.3"
|
636
690
|
"@babel/helper-simple-access" "^7.8.3"
|
637
691
|
babel-plugin-dynamic-import-node "^2.3.0"
|
638
692
|
|
639
|
-
"@babel/plugin-transform-modules-systemjs@^7.
|
640
|
-
version "7.
|
641
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
642
|
-
integrity sha512-
|
693
|
+
"@babel/plugin-transform-modules-systemjs@^7.9.0":
|
694
|
+
version "7.9.0"
|
695
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.0.tgz#e9fd46a296fc91e009b64e07ddaa86d6f0edeb90"
|
696
|
+
integrity sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ==
|
643
697
|
dependencies:
|
644
698
|
"@babel/helper-hoist-variables" "^7.8.3"
|
645
|
-
"@babel/helper-module-transforms" "^7.
|
699
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
646
700
|
"@babel/helper-plugin-utils" "^7.8.3"
|
647
701
|
babel-plugin-dynamic-import-node "^2.3.0"
|
648
702
|
|
649
|
-
"@babel/plugin-transform-modules-umd@^7.
|
650
|
-
version "7.
|
651
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
|
652
|
-
integrity sha512-
|
703
|
+
"@babel/plugin-transform-modules-umd@^7.9.0":
|
704
|
+
version "7.9.0"
|
705
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz#e909acae276fec280f9b821a5f38e1f08b480697"
|
706
|
+
integrity sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==
|
653
707
|
dependencies:
|
654
|
-
"@babel/helper-module-transforms" "^7.
|
708
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
655
709
|
"@babel/helper-plugin-utils" "^7.8.3"
|
656
710
|
|
657
711
|
"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3":
|
@@ -706,10 +760,10 @@
|
|
706
760
|
dependencies:
|
707
761
|
"@babel/helper-plugin-utils" "^7.8.3"
|
708
762
|
|
709
|
-
"@babel/plugin-transform-runtime@^7.
|
710
|
-
version "7.
|
711
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.
|
712
|
-
integrity sha512
|
763
|
+
"@babel/plugin-transform-runtime@^7.9.0":
|
764
|
+
version "7.9.0"
|
765
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz#45468c0ae74cc13204e1d3b1f4ce6ee83258af0b"
|
766
|
+
integrity sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw==
|
713
767
|
dependencies:
|
714
768
|
"@babel/helper-module-imports" "^7.8.3"
|
715
769
|
"@babel/helper-plugin-utils" "^7.8.3"
|
@@ -761,12 +815,12 @@
|
|
761
815
|
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
762
816
|
"@babel/helper-plugin-utils" "^7.8.3"
|
763
817
|
|
764
|
-
"@babel/preset-env@^7.
|
765
|
-
version "7.
|
766
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.
|
767
|
-
integrity sha512-
|
818
|
+
"@babel/preset-env@^7.9.0":
|
819
|
+
version "7.9.0"
|
820
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.0.tgz#a5fc42480e950ae8f5d9f8f2bbc03f52722df3a8"
|
821
|
+
integrity sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ==
|
768
822
|
dependencies:
|
769
|
-
"@babel/compat-data" "^7.
|
823
|
+
"@babel/compat-data" "^7.9.0"
|
770
824
|
"@babel/helper-compilation-targets" "^7.8.7"
|
771
825
|
"@babel/helper-module-imports" "^7.8.3"
|
772
826
|
"@babel/helper-plugin-utils" "^7.8.3"
|
@@ -774,14 +828,16 @@
|
|
774
828
|
"@babel/plugin-proposal-dynamic-import" "^7.8.3"
|
775
829
|
"@babel/plugin-proposal-json-strings" "^7.8.3"
|
776
830
|
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3"
|
777
|
-
"@babel/plugin-proposal-
|
831
|
+
"@babel/plugin-proposal-numeric-separator" "^7.8.3"
|
832
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.9.0"
|
778
833
|
"@babel/plugin-proposal-optional-catch-binding" "^7.8.3"
|
779
|
-
"@babel/plugin-proposal-optional-chaining" "^7.
|
834
|
+
"@babel/plugin-proposal-optional-chaining" "^7.9.0"
|
780
835
|
"@babel/plugin-proposal-unicode-property-regex" "^7.8.3"
|
781
836
|
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
782
837
|
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
783
838
|
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
784
839
|
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
840
|
+
"@babel/plugin-syntax-numeric-separator" "^7.8.0"
|
785
841
|
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
786
842
|
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
787
843
|
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
@@ -790,20 +846,20 @@
|
|
790
846
|
"@babel/plugin-transform-async-to-generator" "^7.8.3"
|
791
847
|
"@babel/plugin-transform-block-scoped-functions" "^7.8.3"
|
792
848
|
"@babel/plugin-transform-block-scoping" "^7.8.3"
|
793
|
-
"@babel/plugin-transform-classes" "^7.
|
849
|
+
"@babel/plugin-transform-classes" "^7.9.0"
|
794
850
|
"@babel/plugin-transform-computed-properties" "^7.8.3"
|
795
851
|
"@babel/plugin-transform-destructuring" "^7.8.3"
|
796
852
|
"@babel/plugin-transform-dotall-regex" "^7.8.3"
|
797
853
|
"@babel/plugin-transform-duplicate-keys" "^7.8.3"
|
798
854
|
"@babel/plugin-transform-exponentiation-operator" "^7.8.3"
|
799
|
-
"@babel/plugin-transform-for-of" "^7.
|
855
|
+
"@babel/plugin-transform-for-of" "^7.9.0"
|
800
856
|
"@babel/plugin-transform-function-name" "^7.8.3"
|
801
857
|
"@babel/plugin-transform-literals" "^7.8.3"
|
802
858
|
"@babel/plugin-transform-member-expression-literals" "^7.8.3"
|
803
|
-
"@babel/plugin-transform-modules-amd" "^7.
|
804
|
-
"@babel/plugin-transform-modules-commonjs" "^7.
|
805
|
-
"@babel/plugin-transform-modules-systemjs" "^7.
|
806
|
-
"@babel/plugin-transform-modules-umd" "^7.
|
859
|
+
"@babel/plugin-transform-modules-amd" "^7.9.0"
|
860
|
+
"@babel/plugin-transform-modules-commonjs" "^7.9.0"
|
861
|
+
"@babel/plugin-transform-modules-systemjs" "^7.9.0"
|
862
|
+
"@babel/plugin-transform-modules-umd" "^7.9.0"
|
807
863
|
"@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3"
|
808
864
|
"@babel/plugin-transform-new-target" "^7.8.3"
|
809
865
|
"@babel/plugin-transform-object-super" "^7.8.3"
|
@@ -817,13 +873,33 @@
|
|
817
873
|
"@babel/plugin-transform-template-literals" "^7.8.3"
|
818
874
|
"@babel/plugin-transform-typeof-symbol" "^7.8.4"
|
819
875
|
"@babel/plugin-transform-unicode-regex" "^7.8.3"
|
820
|
-
"@babel/
|
821
|
-
|
876
|
+
"@babel/preset-modules" "^0.1.3"
|
877
|
+
"@babel/types" "^7.9.0"
|
878
|
+
browserslist "^4.9.1"
|
822
879
|
core-js-compat "^3.6.2"
|
823
880
|
invariant "^2.2.2"
|
824
881
|
levenary "^1.1.1"
|
825
882
|
semver "^5.5.0"
|
826
883
|
|
884
|
+
"@babel/preset-modules@^0.1.3":
|
885
|
+
version "0.1.3"
|
886
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"
|
887
|
+
integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==
|
888
|
+
dependencies:
|
889
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
890
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
|
891
|
+
"@babel/plugin-transform-dotall-regex" "^7.4.4"
|
892
|
+
"@babel/types" "^7.4.4"
|
893
|
+
esutils "^2.0.2"
|
894
|
+
|
895
|
+
"@babel/runtime-corejs3@^7.8.3":
|
896
|
+
version "7.9.2"
|
897
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.9.2.tgz#26fe4aa77e9f1ecef9b776559bbb8e84d34284b7"
|
898
|
+
integrity sha512-HHxmgxbIzOfFlZ+tdeRKtaxWOMUoCG5Mu3wKeUmOxjYrwb3AAHgnmtCUbPPK11/raIWLIBK250t8E2BPO0p7jA==
|
899
|
+
dependencies:
|
900
|
+
core-js-pure "^3.0.0"
|
901
|
+
regenerator-runtime "^0.13.4"
|
902
|
+
|
827
903
|
"@babel/runtime@^7.4.5", "@babel/runtime@^7.7.2":
|
828
904
|
version "7.7.2"
|
829
905
|
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.2.tgz#111a78002a5c25fc8e3361bedc9529c696b85a6a"
|
@@ -845,14 +921,14 @@
|
|
845
921
|
dependencies:
|
846
922
|
regenerator-runtime "^0.13.2"
|
847
923
|
|
848
|
-
"@babel/runtime@^7.
|
849
|
-
version "7.
|
850
|
-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.
|
851
|
-
integrity sha512
|
924
|
+
"@babel/runtime@^7.9.2":
|
925
|
+
version "7.9.2"
|
926
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06"
|
927
|
+
integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==
|
852
928
|
dependencies:
|
853
929
|
regenerator-runtime "^0.13.4"
|
854
930
|
|
855
|
-
"@babel/template@^7.
|
931
|
+
"@babel/template@^7.7.0":
|
856
932
|
version "7.7.0"
|
857
933
|
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.0.tgz#4fadc1b8e734d97f56de39c77de76f2562e597d0"
|
858
934
|
integrity sha512-OKcwSYOW1mhWbnTBgQY5lvg1Fxg+VyfQGjcBduZFljfc044J5iDlnDSfhQ867O17XHiSCxYHUxHg2b7ryitbUQ==
|
@@ -861,7 +937,7 @@
|
|
861
937
|
"@babel/parser" "^7.7.0"
|
862
938
|
"@babel/types" "^7.7.0"
|
863
939
|
|
864
|
-
"@babel/template@^7.8.3", "@babel/template@^7.8.6":
|
940
|
+
"@babel/template@^7.7.4", "@babel/template@^7.8.3", "@babel/template@^7.8.6":
|
865
941
|
version "7.8.6"
|
866
942
|
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b"
|
867
943
|
integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==
|
@@ -870,7 +946,7 @@
|
|
870
946
|
"@babel/parser" "^7.8.6"
|
871
947
|
"@babel/types" "^7.8.6"
|
872
948
|
|
873
|
-
"@babel/traverse@^7.1.0", "@babel/traverse@^7.
|
949
|
+
"@babel/traverse@^7.1.0", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.2":
|
874
950
|
version "7.7.2"
|
875
951
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.2.tgz#ef0a65e07a2f3c550967366b3d9b62a2dcbeae09"
|
876
952
|
integrity sha512-TM01cXib2+rgIZrGJOLaHV/iZUAxf4A0dt5auY6KNZ+cm6aschuJGqKJM3ROTt3raPUdIDk9siAufIFEleRwtw==
|
@@ -885,7 +961,22 @@
|
|
885
961
|
globals "^11.1.0"
|
886
962
|
lodash "^4.17.13"
|
887
963
|
|
888
|
-
"@babel/traverse@^7.
|
964
|
+
"@babel/traverse@^7.7.4", "@babel/traverse@^7.9.0":
|
965
|
+
version "7.9.0"
|
966
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.0.tgz#d3882c2830e513f4fe4cec9fe76ea1cc78747892"
|
967
|
+
integrity sha512-jAZQj0+kn4WTHO5dUZkZKhbFrqZE7K5LAQ5JysMnmvGij+wOdr+8lWqPeW0BcF4wFwrEXXtdGO7wcV6YPJcf3w==
|
968
|
+
dependencies:
|
969
|
+
"@babel/code-frame" "^7.8.3"
|
970
|
+
"@babel/generator" "^7.9.0"
|
971
|
+
"@babel/helper-function-name" "^7.8.3"
|
972
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
973
|
+
"@babel/parser" "^7.9.0"
|
974
|
+
"@babel/types" "^7.9.0"
|
975
|
+
debug "^4.1.0"
|
976
|
+
globals "^11.1.0"
|
977
|
+
lodash "^4.17.13"
|
978
|
+
|
979
|
+
"@babel/traverse@^7.8.3", "@babel/traverse@^7.8.6":
|
889
980
|
version "7.8.6"
|
890
981
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.6.tgz#acfe0c64e1cd991b3e32eae813a6eb564954b5ff"
|
891
982
|
integrity sha512-2B8l0db/DPi8iinITKuo7cbPznLCEk0kCxDoB9/N6gGNg/gxOXiR/IcymAFPiBwk5w6TtQ27w4wpElgp9btR9A==
|
@@ -900,7 +991,7 @@
|
|
900
991
|
globals "^11.1.0"
|
901
992
|
lodash "^4.17.13"
|
902
993
|
|
903
|
-
"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.
|
994
|
+
"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.7.0", "@babel/types@^7.7.2":
|
904
995
|
version "7.7.2"
|
905
996
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.2.tgz#550b82e5571dcd174af576e23f0adba7ffc683f7"
|
906
997
|
integrity sha512-YTf6PXoh3+eZgRCBzzP25Bugd2ngmpQVrk7kXX0i5N9BO7TFBtIgZYs7WtxtOGs8e6A4ZI7ECkbBCEHeXocvOA==
|
@@ -909,6 +1000,15 @@
|
|
909
1000
|
lodash "^4.17.13"
|
910
1001
|
to-fast-properties "^2.0.0"
|
911
1002
|
|
1003
|
+
"@babel/types@^7.4.4", "@babel/types@^7.9.0":
|
1004
|
+
version "7.9.0"
|
1005
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.0.tgz#00b064c3df83ad32b2dbf5ff07312b15c7f1efb5"
|
1006
|
+
integrity sha512-BS9JKfXkzzJl8RluW4JGknzpiUV7ZrvTayM6yfqLTVBEnFtyowVIOu6rqxRd5cVO6yGoWf4T8u8dgK9oB+GCng==
|
1007
|
+
dependencies:
|
1008
|
+
"@babel/helper-validator-identifier" "^7.9.0"
|
1009
|
+
lodash "^4.17.13"
|
1010
|
+
to-fast-properties "^2.0.0"
|
1011
|
+
|
912
1012
|
"@babel/types@^7.8.3", "@babel/types@^7.8.6":
|
913
1013
|
version "7.8.6"
|
914
1014
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.6.tgz#629ecc33c2557fcde7126e58053127afdb3e6d01"
|
@@ -927,6 +1027,11 @@
|
|
927
1027
|
lodash "^4.17.13"
|
928
1028
|
to-fast-properties "^2.0.0"
|
929
1029
|
|
1030
|
+
"@bcoe/v8-coverage@^0.2.3":
|
1031
|
+
version "0.2.3"
|
1032
|
+
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
|
1033
|
+
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
|
1034
|
+
|
930
1035
|
"@cnakazawa/watch@^1.0.3":
|
931
1036
|
version "1.0.3"
|
932
1037
|
resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
|
@@ -940,153 +1045,186 @@
|
|
940
1045
|
resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
|
941
1046
|
integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==
|
942
1047
|
|
943
|
-
"@
|
944
|
-
version "
|
945
|
-
resolved "https://registry.yarnpkg.com/@
|
946
|
-
integrity sha512-
|
947
|
-
dependencies:
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
1048
|
+
"@istanbuljs/load-nyc-config@^1.0.0":
|
1049
|
+
version "1.0.0"
|
1050
|
+
resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.0.0.tgz#10602de5570baea82f8afbfa2630b24e7a8cfe5b"
|
1051
|
+
integrity sha512-ZR0rq/f/E4f4XcgnDvtMWXCUJpi8eO0rssVhmztsZqLIEFA9UUP9zmpE0VxlM+kv/E1ul2I876Fwil2ayptDVg==
|
1052
|
+
dependencies:
|
1053
|
+
camelcase "^5.3.1"
|
1054
|
+
find-up "^4.1.0"
|
1055
|
+
js-yaml "^3.13.1"
|
1056
|
+
resolve-from "^5.0.0"
|
1057
|
+
|
1058
|
+
"@istanbuljs/schema@^0.1.2":
|
1059
|
+
version "0.1.2"
|
1060
|
+
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd"
|
1061
|
+
integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
|
1062
|
+
|
1063
|
+
"@jest/console@^25.1.0":
|
1064
|
+
version "25.1.0"
|
1065
|
+
resolved "https://registry.yarnpkg.com/@jest/console/-/console-25.1.0.tgz#1fc765d44a1e11aec5029c08e798246bd37075ab"
|
1066
|
+
integrity sha512-3P1DpqAMK/L07ag/Y9/Jup5iDEG9P4pRAuZiMQnU0JB3UOvCyYCjCoxr7sIA80SeyUCUKrr24fKAxVpmBgQonA==
|
1067
|
+
dependencies:
|
1068
|
+
"@jest/source-map" "^25.1.0"
|
1069
|
+
chalk "^3.0.0"
|
1070
|
+
jest-util "^25.1.0"
|
1071
|
+
slash "^3.0.0"
|
1072
|
+
|
1073
|
+
"@jest/core@^25.1.0":
|
1074
|
+
version "25.1.0"
|
1075
|
+
resolved "https://registry.yarnpkg.com/@jest/core/-/core-25.1.0.tgz#3d4634fc3348bb2d7532915d67781cdac0869e47"
|
1076
|
+
integrity sha512-iz05+NmwCmZRzMXvMo6KFipW7nzhbpEawrKrkkdJzgytavPse0biEnCNr2wRlyCsp3SmKaEY+SGv7YWYQnIdig==
|
1077
|
+
dependencies:
|
1078
|
+
"@jest/console" "^25.1.0"
|
1079
|
+
"@jest/reporters" "^25.1.0"
|
1080
|
+
"@jest/test-result" "^25.1.0"
|
1081
|
+
"@jest/transform" "^25.1.0"
|
1082
|
+
"@jest/types" "^25.1.0"
|
1083
|
+
ansi-escapes "^4.2.1"
|
1084
|
+
chalk "^3.0.0"
|
964
1085
|
exit "^0.1.2"
|
965
|
-
graceful-fs "^4.
|
966
|
-
jest-changed-files "^
|
967
|
-
jest-config "^
|
968
|
-
jest-haste-map "^
|
969
|
-
jest-message-util "^
|
970
|
-
jest-regex-util "^
|
971
|
-
jest-resolve "^
|
972
|
-
jest-resolve-dependencies "^
|
973
|
-
jest-runner "^
|
974
|
-
jest-runtime "^
|
975
|
-
jest-snapshot "^
|
976
|
-
jest-util "^
|
977
|
-
jest-validate "^
|
978
|
-
jest-watcher "^
|
979
|
-
micromatch "^
|
980
|
-
p-each-series "^1.0
|
1086
|
+
graceful-fs "^4.2.3"
|
1087
|
+
jest-changed-files "^25.1.0"
|
1088
|
+
jest-config "^25.1.0"
|
1089
|
+
jest-haste-map "^25.1.0"
|
1090
|
+
jest-message-util "^25.1.0"
|
1091
|
+
jest-regex-util "^25.1.0"
|
1092
|
+
jest-resolve "^25.1.0"
|
1093
|
+
jest-resolve-dependencies "^25.1.0"
|
1094
|
+
jest-runner "^25.1.0"
|
1095
|
+
jest-runtime "^25.1.0"
|
1096
|
+
jest-snapshot "^25.1.0"
|
1097
|
+
jest-util "^25.1.0"
|
1098
|
+
jest-validate "^25.1.0"
|
1099
|
+
jest-watcher "^25.1.0"
|
1100
|
+
micromatch "^4.0.2"
|
1101
|
+
p-each-series "^2.1.0"
|
981
1102
|
realpath-native "^1.1.0"
|
982
|
-
rimraf "^
|
983
|
-
slash "^
|
984
|
-
strip-ansi "^
|
1103
|
+
rimraf "^3.0.0"
|
1104
|
+
slash "^3.0.0"
|
1105
|
+
strip-ansi "^6.0.0"
|
1106
|
+
|
1107
|
+
"@jest/environment@^25.1.0":
|
1108
|
+
version "25.1.0"
|
1109
|
+
resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-25.1.0.tgz#4a97f64770c9d075f5d2b662b5169207f0a3f787"
|
1110
|
+
integrity sha512-cTpUtsjU4cum53VqBDlcW0E4KbQF03Cn0jckGPW/5rrE9tb+porD3+hhLtHAwhthsqfyF+bizyodTlsRA++sHg==
|
1111
|
+
dependencies:
|
1112
|
+
"@jest/fake-timers" "^25.1.0"
|
1113
|
+
"@jest/types" "^25.1.0"
|
1114
|
+
jest-mock "^25.1.0"
|
1115
|
+
|
1116
|
+
"@jest/fake-timers@^25.1.0":
|
1117
|
+
version "25.1.0"
|
1118
|
+
resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-25.1.0.tgz#a1e0eff51ffdbb13ee81f35b52e0c1c11a350ce8"
|
1119
|
+
integrity sha512-Eu3dysBzSAO1lD7cylZd/CVKdZZ1/43SF35iYBNV1Lvvn2Undp3Grwsv8PrzvbLhqwRzDd4zxrY4gsiHc+wygQ==
|
1120
|
+
dependencies:
|
1121
|
+
"@jest/types" "^25.1.0"
|
1122
|
+
jest-message-util "^25.1.0"
|
1123
|
+
jest-mock "^25.1.0"
|
1124
|
+
jest-util "^25.1.0"
|
1125
|
+
lolex "^5.0.0"
|
985
1126
|
|
986
|
-
"@jest/
|
987
|
-
version "
|
988
|
-
resolved "https://registry.yarnpkg.com/@jest/
|
989
|
-
integrity sha512-
|
990
|
-
dependencies:
|
991
|
-
"@
|
992
|
-
"@jest/
|
993
|
-
"@jest/
|
994
|
-
jest-
|
995
|
-
|
996
|
-
"@jest/
|
997
|
-
|
998
|
-
|
999
|
-
integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==
|
1000
|
-
dependencies:
|
1001
|
-
"@jest/types" "^24.9.0"
|
1002
|
-
jest-message-util "^24.9.0"
|
1003
|
-
jest-mock "^24.9.0"
|
1004
|
-
|
1005
|
-
"@jest/reporters@^24.9.0":
|
1006
|
-
version "24.9.0"
|
1007
|
-
resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.9.0.tgz#86660eff8e2b9661d042a8e98a028b8d631a5b43"
|
1008
|
-
integrity sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==
|
1009
|
-
dependencies:
|
1010
|
-
"@jest/environment" "^24.9.0"
|
1011
|
-
"@jest/test-result" "^24.9.0"
|
1012
|
-
"@jest/transform" "^24.9.0"
|
1013
|
-
"@jest/types" "^24.9.0"
|
1014
|
-
chalk "^2.0.1"
|
1127
|
+
"@jest/reporters@^25.1.0":
|
1128
|
+
version "25.1.0"
|
1129
|
+
resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-25.1.0.tgz#9178ecf136c48f125674ac328f82ddea46e482b0"
|
1130
|
+
integrity sha512-ORLT7hq2acJQa8N+NKfs68ZtHFnJPxsGqmofxW7v7urVhzJvpKZG9M7FAcgh9Ee1ZbCteMrirHA3m5JfBtAaDg==
|
1131
|
+
dependencies:
|
1132
|
+
"@bcoe/v8-coverage" "^0.2.3"
|
1133
|
+
"@jest/console" "^25.1.0"
|
1134
|
+
"@jest/environment" "^25.1.0"
|
1135
|
+
"@jest/test-result" "^25.1.0"
|
1136
|
+
"@jest/transform" "^25.1.0"
|
1137
|
+
"@jest/types" "^25.1.0"
|
1138
|
+
chalk "^3.0.0"
|
1139
|
+
collect-v8-coverage "^1.0.0"
|
1015
1140
|
exit "^0.1.2"
|
1016
1141
|
glob "^7.1.2"
|
1017
|
-
istanbul-lib-coverage "^
|
1018
|
-
istanbul-lib-instrument "^
|
1019
|
-
istanbul-lib-report "^
|
1020
|
-
istanbul-lib-source-maps "^
|
1021
|
-
istanbul-reports "^
|
1022
|
-
jest-haste-map "^
|
1023
|
-
jest-resolve "^
|
1024
|
-
jest-runtime "^
|
1025
|
-
jest-util "^
|
1026
|
-
jest-worker "^
|
1027
|
-
|
1028
|
-
slash "^2.0.0"
|
1142
|
+
istanbul-lib-coverage "^3.0.0"
|
1143
|
+
istanbul-lib-instrument "^4.0.0"
|
1144
|
+
istanbul-lib-report "^3.0.0"
|
1145
|
+
istanbul-lib-source-maps "^4.0.0"
|
1146
|
+
istanbul-reports "^3.0.0"
|
1147
|
+
jest-haste-map "^25.1.0"
|
1148
|
+
jest-resolve "^25.1.0"
|
1149
|
+
jest-runtime "^25.1.0"
|
1150
|
+
jest-util "^25.1.0"
|
1151
|
+
jest-worker "^25.1.0"
|
1152
|
+
slash "^3.0.0"
|
1029
1153
|
source-map "^0.6.0"
|
1030
|
-
string-length "^
|
1154
|
+
string-length "^3.1.0"
|
1155
|
+
terminal-link "^2.0.0"
|
1156
|
+
v8-to-istanbul "^4.0.1"
|
1157
|
+
optionalDependencies:
|
1158
|
+
node-notifier "^6.0.0"
|
1031
1159
|
|
1032
|
-
"@jest/source-map@^
|
1033
|
-
version "
|
1034
|
-
resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-
|
1035
|
-
integrity sha512
|
1160
|
+
"@jest/source-map@^25.1.0":
|
1161
|
+
version "25.1.0"
|
1162
|
+
resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-25.1.0.tgz#b012e6c469ccdbc379413f5c1b1ffb7ba7034fb0"
|
1163
|
+
integrity sha512-ohf2iKT0xnLWcIUhL6U6QN+CwFWf9XnrM2a6ybL9NXxJjgYijjLSitkYHIdzkd8wFliH73qj/+epIpTiWjRtAA==
|
1036
1164
|
dependencies:
|
1037
1165
|
callsites "^3.0.0"
|
1038
|
-
graceful-fs "^4.
|
1166
|
+
graceful-fs "^4.2.3"
|
1039
1167
|
source-map "^0.6.0"
|
1040
1168
|
|
1041
|
-
"@jest/test-result@^
|
1042
|
-
version "
|
1043
|
-
resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-
|
1044
|
-
integrity sha512-
|
1169
|
+
"@jest/test-result@^25.1.0":
|
1170
|
+
version "25.1.0"
|
1171
|
+
resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-25.1.0.tgz#847af2972c1df9822a8200457e64be4ff62821f7"
|
1172
|
+
integrity sha512-FZzSo36h++U93vNWZ0KgvlNuZ9pnDnztvaM7P/UcTx87aPDotG18bXifkf1Ji44B7k/eIatmMzkBapnAzjkJkg==
|
1045
1173
|
dependencies:
|
1046
|
-
"@jest/console" "^
|
1047
|
-
"@jest/
|
1174
|
+
"@jest/console" "^25.1.0"
|
1175
|
+
"@jest/transform" "^25.1.0"
|
1176
|
+
"@jest/types" "^25.1.0"
|
1048
1177
|
"@types/istanbul-lib-coverage" "^2.0.0"
|
1178
|
+
collect-v8-coverage "^1.0.0"
|
1049
1179
|
|
1050
|
-
"@jest/test-sequencer@^
|
1051
|
-
version "
|
1052
|
-
resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-
|
1053
|
-
integrity sha512-
|
1180
|
+
"@jest/test-sequencer@^25.1.0":
|
1181
|
+
version "25.1.0"
|
1182
|
+
resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-25.1.0.tgz#4df47208542f0065f356fcdb80026e3c042851ab"
|
1183
|
+
integrity sha512-WgZLRgVr2b4l/7ED1J1RJQBOharxS11EFhmwDqknpknE0Pm87HLZVS2Asuuw+HQdfQvm2aXL2FvvBLxOD1D0iw==
|
1054
1184
|
dependencies:
|
1055
|
-
"@jest/test-result" "^
|
1056
|
-
jest-haste-map "^
|
1057
|
-
jest-runner "^
|
1058
|
-
jest-runtime "^
|
1185
|
+
"@jest/test-result" "^25.1.0"
|
1186
|
+
jest-haste-map "^25.1.0"
|
1187
|
+
jest-runner "^25.1.0"
|
1188
|
+
jest-runtime "^25.1.0"
|
1059
1189
|
|
1060
|
-
"@jest/transform@^
|
1061
|
-
version "
|
1062
|
-
resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-
|
1063
|
-
integrity sha512-
|
1190
|
+
"@jest/transform@^25.1.0":
|
1191
|
+
version "25.1.0"
|
1192
|
+
resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.1.0.tgz#221f354f512b4628d88ce776d5b9e601028ea9da"
|
1193
|
+
integrity sha512-4ktrQ2TPREVeM+KxB4zskAT84SnmG1vaz4S+51aTefyqn3zocZUnliLLm5Fsl85I3p/kFPN4CRp1RElIfXGegQ==
|
1064
1194
|
dependencies:
|
1065
1195
|
"@babel/core" "^7.1.0"
|
1066
|
-
"@jest/types" "^
|
1067
|
-
babel-plugin-istanbul "^
|
1068
|
-
chalk "^
|
1196
|
+
"@jest/types" "^25.1.0"
|
1197
|
+
babel-plugin-istanbul "^6.0.0"
|
1198
|
+
chalk "^3.0.0"
|
1069
1199
|
convert-source-map "^1.4.0"
|
1070
1200
|
fast-json-stable-stringify "^2.0.0"
|
1071
|
-
graceful-fs "^4.
|
1072
|
-
jest-haste-map "^
|
1073
|
-
jest-regex-util "^
|
1074
|
-
jest-util "^
|
1075
|
-
micromatch "^
|
1201
|
+
graceful-fs "^4.2.3"
|
1202
|
+
jest-haste-map "^25.1.0"
|
1203
|
+
jest-regex-util "^25.1.0"
|
1204
|
+
jest-util "^25.1.0"
|
1205
|
+
micromatch "^4.0.2"
|
1076
1206
|
pirates "^4.0.1"
|
1077
1207
|
realpath-native "^1.1.0"
|
1078
|
-
slash "^
|
1208
|
+
slash "^3.0.0"
|
1079
1209
|
source-map "^0.6.1"
|
1080
|
-
write-file-atomic "
|
1210
|
+
write-file-atomic "^3.0.0"
|
1081
1211
|
|
1082
|
-
"@jest/types@^
|
1083
|
-
version "
|
1084
|
-
resolved "https://registry.yarnpkg.com/@jest/types/-/types-
|
1085
|
-
integrity sha512-
|
1212
|
+
"@jest/types@^25.1.0":
|
1213
|
+
version "25.1.0"
|
1214
|
+
resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.1.0.tgz#b26831916f0d7c381e11dbb5e103a72aed1b4395"
|
1215
|
+
integrity sha512-VpOtt7tCrgvamWZh1reVsGADujKigBUFTi19mlRjqEGsE8qH4r3s+skY33dNdXOwyZIvuftZ5tqdF1IgsMejMA==
|
1086
1216
|
dependencies:
|
1087
1217
|
"@types/istanbul-lib-coverage" "^2.0.0"
|
1088
1218
|
"@types/istanbul-reports" "^1.1.1"
|
1089
|
-
"@types/yargs" "^
|
1219
|
+
"@types/yargs" "^15.0.0"
|
1220
|
+
chalk "^3.0.0"
|
1221
|
+
|
1222
|
+
"@sinonjs/commons@^1.7.0":
|
1223
|
+
version "1.7.1"
|
1224
|
+
resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.1.tgz#da5fd19a5f71177a53778073978873964f49acf1"
|
1225
|
+
integrity sha512-Debi3Baff1Qu1Unc3mjJ96MgpbwTn43S1+9yJ0llWygPwDNu2aaWBD6yc9y/Z8XDRNhx7U+u2UDg2OGQXkclUQ==
|
1226
|
+
dependencies:
|
1227
|
+
type-detect "4.0.8"
|
1090
1228
|
|
1091
1229
|
"@types/babel__core@^7.1.0":
|
1092
1230
|
version "7.1.3"
|
@@ -1121,7 +1259,12 @@
|
|
1121
1259
|
dependencies:
|
1122
1260
|
"@babel/types" "^7.3.0"
|
1123
1261
|
|
1124
|
-
"@types/
|
1262
|
+
"@types/color-name@^1.1.1":
|
1263
|
+
version "1.1.1"
|
1264
|
+
resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
|
1265
|
+
integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
|
1266
|
+
|
1267
|
+
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
|
1125
1268
|
version "2.0.1"
|
1126
1269
|
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff"
|
1127
1270
|
integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==
|
@@ -1161,157 +1304,156 @@
|
|
1161
1304
|
resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228"
|
1162
1305
|
integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg==
|
1163
1306
|
|
1164
|
-
"@types/yargs@^
|
1165
|
-
version "
|
1166
|
-
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-
|
1167
|
-
integrity sha512-
|
1307
|
+
"@types/yargs@^15.0.0":
|
1308
|
+
version "15.0.4"
|
1309
|
+
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.4.tgz#7e5d0f8ca25e9d5849f2ea443cf7c402decd8299"
|
1310
|
+
integrity sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg==
|
1168
1311
|
dependencies:
|
1169
1312
|
"@types/yargs-parser" "*"
|
1170
1313
|
|
1171
|
-
"@webassemblyjs/ast@1.
|
1172
|
-
version "1.
|
1173
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.
|
1174
|
-
integrity sha512-
|
1175
|
-
dependencies:
|
1176
|
-
"@webassemblyjs/helper-module-context" "1.
|
1177
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
1178
|
-
"@webassemblyjs/wast-parser" "1.
|
1179
|
-
|
1180
|
-
"@webassemblyjs/floating-point-hex-parser@1.
|
1181
|
-
version "1.
|
1182
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.
|
1183
|
-
integrity sha512-
|
1184
|
-
|
1185
|
-
"@webassemblyjs/helper-api-error@1.
|
1186
|
-
version "1.
|
1187
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.
|
1188
|
-
integrity sha512-
|
1189
|
-
|
1190
|
-
"@webassemblyjs/helper-buffer@1.
|
1191
|
-
version "1.
|
1192
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.
|
1193
|
-
integrity sha512-
|
1194
|
-
|
1195
|
-
"@webassemblyjs/helper-code-frame@1.
|
1196
|
-
version "1.
|
1197
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.
|
1198
|
-
integrity sha512-
|
1199
|
-
dependencies:
|
1200
|
-
"@webassemblyjs/wast-printer" "1.
|
1201
|
-
|
1202
|
-
"@webassemblyjs/helper-fsm@1.
|
1203
|
-
version "1.
|
1204
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.
|
1205
|
-
integrity sha512-
|
1206
|
-
|
1207
|
-
"@webassemblyjs/helper-module-context@1.
|
1208
|
-
version "1.
|
1209
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.
|
1210
|
-
integrity sha512
|
1211
|
-
dependencies:
|
1212
|
-
"@webassemblyjs/ast" "1.
|
1213
|
-
|
1214
|
-
|
1215
|
-
"
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
"
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
"@webassemblyjs/
|
1226
|
-
"@webassemblyjs/helper-
|
1227
|
-
"@webassemblyjs/
|
1228
|
-
|
1229
|
-
|
1230
|
-
"
|
1231
|
-
|
1232
|
-
|
1233
|
-
integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==
|
1314
|
+
"@webassemblyjs/ast@1.9.0":
|
1315
|
+
version "1.9.0"
|
1316
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
|
1317
|
+
integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
|
1318
|
+
dependencies:
|
1319
|
+
"@webassemblyjs/helper-module-context" "1.9.0"
|
1320
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
1321
|
+
"@webassemblyjs/wast-parser" "1.9.0"
|
1322
|
+
|
1323
|
+
"@webassemblyjs/floating-point-hex-parser@1.9.0":
|
1324
|
+
version "1.9.0"
|
1325
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
|
1326
|
+
integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
|
1327
|
+
|
1328
|
+
"@webassemblyjs/helper-api-error@1.9.0":
|
1329
|
+
version "1.9.0"
|
1330
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
|
1331
|
+
integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
|
1332
|
+
|
1333
|
+
"@webassemblyjs/helper-buffer@1.9.0":
|
1334
|
+
version "1.9.0"
|
1335
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
|
1336
|
+
integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
|
1337
|
+
|
1338
|
+
"@webassemblyjs/helper-code-frame@1.9.0":
|
1339
|
+
version "1.9.0"
|
1340
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
|
1341
|
+
integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
|
1342
|
+
dependencies:
|
1343
|
+
"@webassemblyjs/wast-printer" "1.9.0"
|
1344
|
+
|
1345
|
+
"@webassemblyjs/helper-fsm@1.9.0":
|
1346
|
+
version "1.9.0"
|
1347
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
|
1348
|
+
integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
|
1349
|
+
|
1350
|
+
"@webassemblyjs/helper-module-context@1.9.0":
|
1351
|
+
version "1.9.0"
|
1352
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
|
1353
|
+
integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
|
1354
|
+
dependencies:
|
1355
|
+
"@webassemblyjs/ast" "1.9.0"
|
1356
|
+
|
1357
|
+
"@webassemblyjs/helper-wasm-bytecode@1.9.0":
|
1358
|
+
version "1.9.0"
|
1359
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
|
1360
|
+
integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
|
1361
|
+
|
1362
|
+
"@webassemblyjs/helper-wasm-section@1.9.0":
|
1363
|
+
version "1.9.0"
|
1364
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
|
1365
|
+
integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
|
1366
|
+
dependencies:
|
1367
|
+
"@webassemblyjs/ast" "1.9.0"
|
1368
|
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
1369
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
1370
|
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
1371
|
+
|
1372
|
+
"@webassemblyjs/ieee754@1.9.0":
|
1373
|
+
version "1.9.0"
|
1374
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
|
1375
|
+
integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
|
1234
1376
|
dependencies:
|
1235
1377
|
"@xtuc/ieee754" "^1.2.0"
|
1236
1378
|
|
1237
|
-
"@webassemblyjs/leb128@1.
|
1238
|
-
version "1.
|
1239
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.
|
1240
|
-
integrity sha512-
|
1379
|
+
"@webassemblyjs/leb128@1.9.0":
|
1380
|
+
version "1.9.0"
|
1381
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
|
1382
|
+
integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
|
1241
1383
|
dependencies:
|
1242
1384
|
"@xtuc/long" "4.2.2"
|
1243
1385
|
|
1244
|
-
"@webassemblyjs/utf8@1.
|
1245
|
-
version "1.
|
1246
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.
|
1247
|
-
integrity sha512-
|
1248
|
-
|
1249
|
-
"@webassemblyjs/wasm-edit@1.
|
1250
|
-
version "1.
|
1251
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.
|
1252
|
-
integrity sha512-
|
1253
|
-
dependencies:
|
1254
|
-
"@webassemblyjs/ast" "1.
|
1255
|
-
"@webassemblyjs/helper-buffer" "1.
|
1256
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
1257
|
-
"@webassemblyjs/helper-wasm-section" "1.
|
1258
|
-
"@webassemblyjs/wasm-gen" "1.
|
1259
|
-
"@webassemblyjs/wasm-opt" "1.
|
1260
|
-
"@webassemblyjs/wasm-parser" "1.
|
1261
|
-
"@webassemblyjs/wast-printer" "1.
|
1262
|
-
|
1263
|
-
"@webassemblyjs/wasm-gen@1.
|
1264
|
-
version "1.
|
1265
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.
|
1266
|
-
integrity sha512-
|
1267
|
-
dependencies:
|
1268
|
-
"@webassemblyjs/ast" "1.
|
1269
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
1270
|
-
"@webassemblyjs/ieee754" "1.
|
1271
|
-
"@webassemblyjs/leb128" "1.
|
1272
|
-
"@webassemblyjs/utf8" "1.
|
1273
|
-
|
1274
|
-
"@webassemblyjs/wasm-opt@1.
|
1275
|
-
version "1.
|
1276
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.
|
1277
|
-
integrity sha512-
|
1278
|
-
dependencies:
|
1279
|
-
"@webassemblyjs/ast" "1.
|
1280
|
-
"@webassemblyjs/helper-buffer" "1.
|
1281
|
-
"@webassemblyjs/wasm-gen" "1.
|
1282
|
-
"@webassemblyjs/wasm-parser" "1.
|
1283
|
-
|
1284
|
-
"@webassemblyjs/wasm-parser@1.
|
1285
|
-
version "1.
|
1286
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.
|
1287
|
-
integrity sha512-
|
1288
|
-
dependencies:
|
1289
|
-
"@webassemblyjs/ast" "1.
|
1290
|
-
"@webassemblyjs/helper-api-error" "1.
|
1291
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
1292
|
-
"@webassemblyjs/ieee754" "1.
|
1293
|
-
"@webassemblyjs/leb128" "1.
|
1294
|
-
"@webassemblyjs/utf8" "1.
|
1295
|
-
|
1296
|
-
"@webassemblyjs/wast-parser@1.
|
1297
|
-
version "1.
|
1298
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.
|
1299
|
-
integrity sha512-
|
1300
|
-
dependencies:
|
1301
|
-
"@webassemblyjs/ast" "1.
|
1302
|
-
"@webassemblyjs/floating-point-hex-parser" "1.
|
1303
|
-
"@webassemblyjs/helper-api-error" "1.
|
1304
|
-
"@webassemblyjs/helper-code-frame" "1.
|
1305
|
-
"@webassemblyjs/helper-fsm" "1.
|
1386
|
+
"@webassemblyjs/utf8@1.9.0":
|
1387
|
+
version "1.9.0"
|
1388
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
|
1389
|
+
integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
|
1390
|
+
|
1391
|
+
"@webassemblyjs/wasm-edit@1.9.0":
|
1392
|
+
version "1.9.0"
|
1393
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
|
1394
|
+
integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
|
1395
|
+
dependencies:
|
1396
|
+
"@webassemblyjs/ast" "1.9.0"
|
1397
|
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
1398
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
1399
|
+
"@webassemblyjs/helper-wasm-section" "1.9.0"
|
1400
|
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
1401
|
+
"@webassemblyjs/wasm-opt" "1.9.0"
|
1402
|
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
1403
|
+
"@webassemblyjs/wast-printer" "1.9.0"
|
1404
|
+
|
1405
|
+
"@webassemblyjs/wasm-gen@1.9.0":
|
1406
|
+
version "1.9.0"
|
1407
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
|
1408
|
+
integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
|
1409
|
+
dependencies:
|
1410
|
+
"@webassemblyjs/ast" "1.9.0"
|
1411
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
1412
|
+
"@webassemblyjs/ieee754" "1.9.0"
|
1413
|
+
"@webassemblyjs/leb128" "1.9.0"
|
1414
|
+
"@webassemblyjs/utf8" "1.9.0"
|
1415
|
+
|
1416
|
+
"@webassemblyjs/wasm-opt@1.9.0":
|
1417
|
+
version "1.9.0"
|
1418
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
|
1419
|
+
integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
|
1420
|
+
dependencies:
|
1421
|
+
"@webassemblyjs/ast" "1.9.0"
|
1422
|
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
1423
|
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
1424
|
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
1425
|
+
|
1426
|
+
"@webassemblyjs/wasm-parser@1.9.0":
|
1427
|
+
version "1.9.0"
|
1428
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
|
1429
|
+
integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
|
1430
|
+
dependencies:
|
1431
|
+
"@webassemblyjs/ast" "1.9.0"
|
1432
|
+
"@webassemblyjs/helper-api-error" "1.9.0"
|
1433
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
1434
|
+
"@webassemblyjs/ieee754" "1.9.0"
|
1435
|
+
"@webassemblyjs/leb128" "1.9.0"
|
1436
|
+
"@webassemblyjs/utf8" "1.9.0"
|
1437
|
+
|
1438
|
+
"@webassemblyjs/wast-parser@1.9.0":
|
1439
|
+
version "1.9.0"
|
1440
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
|
1441
|
+
integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
|
1442
|
+
dependencies:
|
1443
|
+
"@webassemblyjs/ast" "1.9.0"
|
1444
|
+
"@webassemblyjs/floating-point-hex-parser" "1.9.0"
|
1445
|
+
"@webassemblyjs/helper-api-error" "1.9.0"
|
1446
|
+
"@webassemblyjs/helper-code-frame" "1.9.0"
|
1447
|
+
"@webassemblyjs/helper-fsm" "1.9.0"
|
1306
1448
|
"@xtuc/long" "4.2.2"
|
1307
1449
|
|
1308
|
-
"@webassemblyjs/wast-printer@1.
|
1309
|
-
version "1.
|
1310
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.
|
1311
|
-
integrity sha512-
|
1450
|
+
"@webassemblyjs/wast-printer@1.9.0":
|
1451
|
+
version "1.9.0"
|
1452
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
|
1453
|
+
integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
|
1312
1454
|
dependencies:
|
1313
|
-
"@webassemblyjs/ast" "1.
|
1314
|
-
"@webassemblyjs/wast-parser" "1.
|
1455
|
+
"@webassemblyjs/ast" "1.9.0"
|
1456
|
+
"@webassemblyjs/wast-parser" "1.9.0"
|
1315
1457
|
"@xtuc/long" "4.2.2"
|
1316
1458
|
|
1317
1459
|
"@xtuc/ieee754@^1.2.0":
|
@@ -1334,7 +1476,7 @@ abbrev@1:
|
|
1334
1476
|
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
1335
1477
|
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
|
1336
1478
|
|
1337
|
-
acorn-globals@^4.
|
1479
|
+
acorn-globals@^4.3.2:
|
1338
1480
|
version "4.3.4"
|
1339
1481
|
resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7"
|
1340
1482
|
integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==
|
@@ -1352,11 +1494,6 @@ acorn-walk@^6.0.1:
|
|
1352
1494
|
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
|
1353
1495
|
integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
|
1354
1496
|
|
1355
|
-
acorn@^5.5.3:
|
1356
|
-
version "5.7.4"
|
1357
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e"
|
1358
|
-
integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==
|
1359
|
-
|
1360
1497
|
acorn@^6.0.1, acorn@^6.2.1:
|
1361
1498
|
version "6.3.0"
|
1362
1499
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.3.0.tgz#0087509119ffa4fc0a0041d1e93a417e68cb856e"
|
@@ -1395,6 +1532,16 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5:
|
|
1395
1532
|
json-schema-traverse "^0.4.1"
|
1396
1533
|
uri-js "^4.2.2"
|
1397
1534
|
|
1535
|
+
ajv@^6.12.0:
|
1536
|
+
version "6.12.0"
|
1537
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7"
|
1538
|
+
integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==
|
1539
|
+
dependencies:
|
1540
|
+
fast-deep-equal "^3.1.1"
|
1541
|
+
fast-json-stable-stringify "^2.0.0"
|
1542
|
+
json-schema-traverse "^0.4.1"
|
1543
|
+
uri-js "^4.2.2"
|
1544
|
+
|
1398
1545
|
alphanum-sort@^1.0.0:
|
1399
1546
|
version "1.0.2"
|
1400
1547
|
resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
|
@@ -1405,11 +1552,6 @@ amdefine@>=0.0.4:
|
|
1405
1552
|
resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
|
1406
1553
|
integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=
|
1407
1554
|
|
1408
|
-
ansi-escapes@^3.0.0:
|
1409
|
-
version "3.2.0"
|
1410
|
-
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
|
1411
|
-
integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
|
1412
|
-
|
1413
1555
|
ansi-escapes@^4.2.1:
|
1414
1556
|
version "4.2.1"
|
1415
1557
|
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.2.1.tgz#4dccdb846c3eee10f6d64dea66273eab90c37228"
|
@@ -1427,11 +1569,16 @@ ansi-regex@^3.0.0:
|
|
1427
1569
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
1428
1570
|
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
|
1429
1571
|
|
1430
|
-
ansi-regex@^4.
|
1572
|
+
ansi-regex@^4.1.0:
|
1431
1573
|
version "4.1.0"
|
1432
1574
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
|
1433
1575
|
integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
|
1434
1576
|
|
1577
|
+
ansi-regex@^5.0.0:
|
1578
|
+
version "5.0.0"
|
1579
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
|
1580
|
+
integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
|
1581
|
+
|
1435
1582
|
ansi-styles@^2.2.1:
|
1436
1583
|
version "2.2.1"
|
1437
1584
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
@@ -1444,6 +1591,14 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
|
1444
1591
|
dependencies:
|
1445
1592
|
color-convert "^1.9.0"
|
1446
1593
|
|
1594
|
+
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
|
1595
|
+
version "4.2.1"
|
1596
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
|
1597
|
+
integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
|
1598
|
+
dependencies:
|
1599
|
+
"@types/color-name" "^1.1.1"
|
1600
|
+
color-convert "^2.0.1"
|
1601
|
+
|
1447
1602
|
anymatch@^2.0.0:
|
1448
1603
|
version "2.0.0"
|
1449
1604
|
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
|
@@ -1452,6 +1607,14 @@ anymatch@^2.0.0:
|
|
1452
1607
|
micromatch "^3.1.4"
|
1453
1608
|
normalize-path "^2.1.1"
|
1454
1609
|
|
1610
|
+
anymatch@^3.0.3:
|
1611
|
+
version "3.1.1"
|
1612
|
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
|
1613
|
+
integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
|
1614
|
+
dependencies:
|
1615
|
+
normalize-path "^3.0.0"
|
1616
|
+
picomatch "^2.0.4"
|
1617
|
+
|
1455
1618
|
aproba@^1.0.3, aproba@^1.1.1:
|
1456
1619
|
version "1.2.0"
|
1457
1620
|
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
|
@@ -1513,6 +1676,15 @@ array-includes@^3.0.3:
|
|
1513
1676
|
define-properties "^1.1.2"
|
1514
1677
|
es-abstract "^1.7.0"
|
1515
1678
|
|
1679
|
+
array-includes@^3.1.1:
|
1680
|
+
version "3.1.1"
|
1681
|
+
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348"
|
1682
|
+
integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
|
1683
|
+
dependencies:
|
1684
|
+
define-properties "^1.1.3"
|
1685
|
+
es-abstract "^1.17.0"
|
1686
|
+
is-string "^1.0.5"
|
1687
|
+
|
1516
1688
|
array-unique@^0.3.2:
|
1517
1689
|
version "0.3.2"
|
1518
1690
|
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
@@ -1580,11 +1752,6 @@ async-foreach@^0.1.3:
|
|
1580
1752
|
resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542"
|
1581
1753
|
integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=
|
1582
1754
|
|
1583
|
-
async-limiter@~1.0.0:
|
1584
|
-
version "1.0.1"
|
1585
|
-
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
|
1586
|
-
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
|
1587
|
-
|
1588
1755
|
asynckit@^0.4.0:
|
1589
1756
|
version "0.4.0"
|
1590
1757
|
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
@@ -1625,28 +1792,29 @@ axobject-query@^2.0.2:
|
|
1625
1792
|
dependencies:
|
1626
1793
|
ast-types-flow "0.0.7"
|
1627
1794
|
|
1628
|
-
babel-jest@^
|
1629
|
-
version "
|
1630
|
-
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-
|
1631
|
-
integrity sha512-
|
1795
|
+
babel-jest@^25.1.0:
|
1796
|
+
version "25.1.0"
|
1797
|
+
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.1.0.tgz#206093ac380a4b78c4404a05b3277391278f80fb"
|
1798
|
+
integrity sha512-tz0VxUhhOE2y+g8R2oFrO/2VtVjA1lkJeavlhExuRBg3LdNJY9gwQ+Vcvqt9+cqy71MCTJhewvTB7Qtnnr9SWg==
|
1632
1799
|
dependencies:
|
1633
|
-
"@jest/transform" "^
|
1634
|
-
"@jest/types" "^
|
1800
|
+
"@jest/transform" "^25.1.0"
|
1801
|
+
"@jest/types" "^25.1.0"
|
1635
1802
|
"@types/babel__core" "^7.1.0"
|
1636
|
-
babel-plugin-istanbul "^
|
1637
|
-
babel-preset-jest "^
|
1638
|
-
chalk "^
|
1639
|
-
slash "^
|
1803
|
+
babel-plugin-istanbul "^6.0.0"
|
1804
|
+
babel-preset-jest "^25.1.0"
|
1805
|
+
chalk "^3.0.0"
|
1806
|
+
slash "^3.0.0"
|
1640
1807
|
|
1641
|
-
babel-loader@^8.0
|
1642
|
-
version "8.0
|
1643
|
-
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.
|
1644
|
-
integrity sha512-
|
1808
|
+
babel-loader@^8.1.0:
|
1809
|
+
version "8.1.0"
|
1810
|
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
|
1811
|
+
integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==
|
1645
1812
|
dependencies:
|
1646
|
-
find-cache-dir "^2.
|
1647
|
-
loader-utils "^1.0
|
1648
|
-
mkdirp "^0.5.
|
1813
|
+
find-cache-dir "^2.1.0"
|
1814
|
+
loader-utils "^1.4.0"
|
1815
|
+
mkdirp "^0.5.3"
|
1649
1816
|
pify "^4.0.1"
|
1817
|
+
schema-utils "^2.6.5"
|
1650
1818
|
|
1651
1819
|
babel-plugin-dynamic-import-node@^2.3.0:
|
1652
1820
|
version "2.3.0"
|
@@ -1655,20 +1823,21 @@ babel-plugin-dynamic-import-node@^2.3.0:
|
|
1655
1823
|
dependencies:
|
1656
1824
|
object.assign "^4.1.0"
|
1657
1825
|
|
1658
|
-
babel-plugin-istanbul@^
|
1659
|
-
version "
|
1660
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-
|
1661
|
-
integrity sha512-
|
1826
|
+
babel-plugin-istanbul@^6.0.0:
|
1827
|
+
version "6.0.0"
|
1828
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
|
1829
|
+
integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==
|
1662
1830
|
dependencies:
|
1663
1831
|
"@babel/helper-plugin-utils" "^7.0.0"
|
1664
|
-
|
1665
|
-
|
1666
|
-
|
1832
|
+
"@istanbuljs/load-nyc-config" "^1.0.0"
|
1833
|
+
"@istanbuljs/schema" "^0.1.2"
|
1834
|
+
istanbul-lib-instrument "^4.0.0"
|
1835
|
+
test-exclude "^6.0.0"
|
1667
1836
|
|
1668
|
-
babel-plugin-jest-hoist@^
|
1669
|
-
version "
|
1670
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-
|
1671
|
-
integrity sha512-
|
1837
|
+
babel-plugin-jest-hoist@^25.1.0:
|
1838
|
+
version "25.1.0"
|
1839
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.1.0.tgz#fb62d7b3b53eb36c97d1bc7fec2072f9bd115981"
|
1840
|
+
integrity sha512-oIsopO41vW4YFZ9yNYoLQATnnN46lp+MZ6H4VvPKFkcc2/fkl3CfE/NZZSmnEIEsJRmJAgkVEK0R7Zbl50CpTw==
|
1672
1841
|
dependencies:
|
1673
1842
|
"@types/babel__traverse" "^7.0.6"
|
1674
1843
|
|
@@ -1681,13 +1850,14 @@ babel-plugin-macros@^2.8.0:
|
|
1681
1850
|
cosmiconfig "^6.0.0"
|
1682
1851
|
resolve "^1.12.0"
|
1683
1852
|
|
1684
|
-
babel-preset-jest@^
|
1685
|
-
version "
|
1686
|
-
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-
|
1687
|
-
integrity sha512-
|
1853
|
+
babel-preset-jest@^25.1.0:
|
1854
|
+
version "25.1.0"
|
1855
|
+
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.1.0.tgz#d0aebfebb2177a21cde710996fce8486d34f1d33"
|
1856
|
+
integrity sha512-eCGn64olaqwUMaugXsTtGAM2I0QTahjEtnRu0ql8Ie+gDWAc1N6wqN0k2NilnyTunM69Pad7gJY7LOtwLimoFQ==
|
1688
1857
|
dependencies:
|
1858
|
+
"@babel/plugin-syntax-bigint" "^7.0.0"
|
1689
1859
|
"@babel/plugin-syntax-object-rest-spread" "^7.0.0"
|
1690
|
-
babel-plugin-jest-hoist "^
|
1860
|
+
babel-plugin-jest-hoist "^25.1.0"
|
1691
1861
|
|
1692
1862
|
balanced-match@^1.0.0:
|
1693
1863
|
version "1.0.0"
|
@@ -1775,6 +1945,13 @@ braces@^2.3.1, braces@^2.3.2:
|
|
1775
1945
|
split-string "^3.0.2"
|
1776
1946
|
to-regex "^3.0.1"
|
1777
1947
|
|
1948
|
+
braces@^3.0.1:
|
1949
|
+
version "3.0.2"
|
1950
|
+
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
1951
|
+
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
1952
|
+
dependencies:
|
1953
|
+
fill-range "^7.0.1"
|
1954
|
+
|
1778
1955
|
brorand@^1.0.1:
|
1779
1956
|
version "1.1.0"
|
1780
1957
|
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
|
@@ -2063,17 +2240,17 @@ capture-exit@^2.0.0:
|
|
2063
2240
|
dependencies:
|
2064
2241
|
rsvp "^4.8.4"
|
2065
2242
|
|
2066
|
-
case-sensitive-paths-webpack-plugin@^2.
|
2067
|
-
version "2.
|
2068
|
-
resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.
|
2069
|
-
integrity sha512
|
2243
|
+
case-sensitive-paths-webpack-plugin@^2.3.0:
|
2244
|
+
version "2.3.0"
|
2245
|
+
resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7"
|
2246
|
+
integrity sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==
|
2070
2247
|
|
2071
2248
|
caseless@~0.12.0:
|
2072
2249
|
version "0.12.0"
|
2073
2250
|
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
2074
2251
|
integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
|
2075
2252
|
|
2076
|
-
chalk@2.4.2, chalk@^2.0, chalk@^2.0.0, chalk@^2.
|
2253
|
+
chalk@2.4.2, chalk@^2.0, chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
|
2077
2254
|
version "2.4.2"
|
2078
2255
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
2079
2256
|
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
@@ -2093,6 +2270,14 @@ chalk@^1.1.1:
|
|
2093
2270
|
strip-ansi "^3.0.0"
|
2094
2271
|
supports-color "^2.0.0"
|
2095
2272
|
|
2273
|
+
chalk@^3.0.0:
|
2274
|
+
version "3.0.0"
|
2275
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
|
2276
|
+
integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
|
2277
|
+
dependencies:
|
2278
|
+
ansi-styles "^4.1.0"
|
2279
|
+
supports-color "^7.1.0"
|
2280
|
+
|
2096
2281
|
chardet@^0.7.0:
|
2097
2282
|
version "0.7.0"
|
2098
2283
|
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
|
@@ -2187,6 +2372,15 @@ cliui@^5.0.0:
|
|
2187
2372
|
strip-ansi "^5.2.0"
|
2188
2373
|
wrap-ansi "^5.1.0"
|
2189
2374
|
|
2375
|
+
cliui@^6.0.0:
|
2376
|
+
version "6.0.0"
|
2377
|
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
|
2378
|
+
integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
|
2379
|
+
dependencies:
|
2380
|
+
string-width "^4.2.0"
|
2381
|
+
strip-ansi "^6.0.0"
|
2382
|
+
wrap-ansi "^6.2.0"
|
2383
|
+
|
2190
2384
|
clone-deep@^4.0.1:
|
2191
2385
|
version "4.0.1"
|
2192
2386
|
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
|
@@ -2215,6 +2409,11 @@ code-point-at@^1.0.0:
|
|
2215
2409
|
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
2216
2410
|
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
|
2217
2411
|
|
2412
|
+
collect-v8-coverage@^1.0.0:
|
2413
|
+
version "1.0.0"
|
2414
|
+
resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.0.tgz#150ee634ac3650b71d9c985eb7f608942334feb1"
|
2415
|
+
integrity sha512-VKIhJgvk8E1W28m5avZ2Gv2Ruv5YiF56ug2oclvaG9md69BuZImMG2sk9g7QNKLUbtYAKQjXjYxbYZVUlMMKmQ==
|
2416
|
+
|
2218
2417
|
collection-visit@^1.0.0:
|
2219
2418
|
version "1.0.0"
|
2220
2419
|
resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
|
@@ -2230,12 +2429,19 @@ color-convert@^1.9.0, color-convert@^1.9.1:
|
|
2230
2429
|
dependencies:
|
2231
2430
|
color-name "1.1.3"
|
2232
2431
|
|
2432
|
+
color-convert@^2.0.1:
|
2433
|
+
version "2.0.1"
|
2434
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
2435
|
+
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
2436
|
+
dependencies:
|
2437
|
+
color-name "~1.1.4"
|
2438
|
+
|
2233
2439
|
color-name@1.1.3:
|
2234
2440
|
version "1.1.3"
|
2235
2441
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
2236
2442
|
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
|
2237
2443
|
|
2238
|
-
color-name@^1.0.0:
|
2444
|
+
color-name@^1.0.0, color-name@~1.1.4:
|
2239
2445
|
version "1.1.4"
|
2240
2446
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
2241
2447
|
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
@@ -2263,7 +2469,7 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
|
|
2263
2469
|
dependencies:
|
2264
2470
|
delayed-stream "~1.0.0"
|
2265
2471
|
|
2266
|
-
commander@^2.11.0, commander@^2.20.0
|
2472
|
+
commander@^2.11.0, commander@^2.20.0:
|
2267
2473
|
version "2.20.3"
|
2268
2474
|
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
|
2269
2475
|
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
|
@@ -2278,10 +2484,10 @@ component-emitter@^1.2.1:
|
|
2278
2484
|
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
|
2279
2485
|
integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
|
2280
2486
|
|
2281
|
-
compression-webpack-plugin@^3.0
|
2282
|
-
version "3.0
|
2283
|
-
resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-3.0.
|
2284
|
-
integrity sha512-
|
2487
|
+
compression-webpack-plugin@^3.1.0:
|
2488
|
+
version "3.1.0"
|
2489
|
+
resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-3.1.0.tgz#9f510172a7b5fae5aad3b670652e8bd7997aeeca"
|
2490
|
+
integrity sha512-iqTHj3rADN4yHwXMBrQa/xrncex/uEQy8QHlaTKxGchT/hC0SdlJlmL/5eRqffmWq2ep0/Romw6Ld39JjTR/ug==
|
2285
2491
|
dependencies:
|
2286
2492
|
cacache "^13.0.1"
|
2287
2493
|
find-cache-dir "^3.0.0"
|
@@ -2305,7 +2511,7 @@ concat-stream@^1.5.0:
|
|
2305
2511
|
readable-stream "^2.2.2"
|
2306
2512
|
typedarray "^0.0.6"
|
2307
2513
|
|
2308
|
-
confusing-browser-globals@^1.0.
|
2514
|
+
confusing-browser-globals@^1.0.9:
|
2309
2515
|
version "1.0.9"
|
2310
2516
|
resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd"
|
2311
2517
|
integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw==
|
@@ -2330,7 +2536,7 @@ contains-path@^0.1.0:
|
|
2330
2536
|
resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
|
2331
2537
|
integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=
|
2332
2538
|
|
2333
|
-
convert-source-map@^1.4.0, convert-source-map@^1.7.0:
|
2539
|
+
convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
|
2334
2540
|
version "1.7.0"
|
2335
2541
|
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
|
2336
2542
|
integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
|
@@ -2362,6 +2568,11 @@ core-js-compat@^3.6.2:
|
|
2362
2568
|
browserslist "^4.8.3"
|
2363
2569
|
semver "7.0.0"
|
2364
2570
|
|
2571
|
+
core-js-pure@^3.0.0:
|
2572
|
+
version "3.6.4"
|
2573
|
+
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.4.tgz#4bf1ba866e25814f149d4e9aaa08c36173506e3a"
|
2574
|
+
integrity sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw==
|
2575
|
+
|
2365
2576
|
core-js@^3.6.4:
|
2366
2577
|
version "3.6.4"
|
2367
2578
|
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.4.tgz#440a83536b458114b9cb2ac1580ba377dc470647"
|
@@ -2443,6 +2654,15 @@ cross-spawn@^3.0.0:
|
|
2443
2654
|
lru-cache "^4.0.1"
|
2444
2655
|
which "^1.2.9"
|
2445
2656
|
|
2657
|
+
cross-spawn@^7.0.0:
|
2658
|
+
version "7.0.1"
|
2659
|
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14"
|
2660
|
+
integrity sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==
|
2661
|
+
dependencies:
|
2662
|
+
path-key "^3.1.0"
|
2663
|
+
shebang-command "^2.0.0"
|
2664
|
+
which "^2.0.1"
|
2665
|
+
|
2446
2666
|
crypto-browserify@^3.11.0:
|
2447
2667
|
version "3.12.0"
|
2448
2668
|
resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
|
@@ -2488,10 +2708,10 @@ css-has-pseudo@^0.10.0:
|
|
2488
2708
|
postcss "^7.0.6"
|
2489
2709
|
postcss-selector-parser "^5.0.0-rc.4"
|
2490
2710
|
|
2491
|
-
css-loader@^3.4.
|
2492
|
-
version "3.4.
|
2493
|
-
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.
|
2494
|
-
integrity sha512
|
2711
|
+
css-loader@^3.4.2:
|
2712
|
+
version "3.4.2"
|
2713
|
+
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.2.tgz#d3fdb3358b43f233b78501c5ed7b1c6da6133202"
|
2714
|
+
integrity sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==
|
2495
2715
|
dependencies:
|
2496
2716
|
camelcase "^5.3.1"
|
2497
2717
|
cssesc "^3.0.0"
|
@@ -2636,17 +2856,22 @@ csso@^4.0.2:
|
|
2636
2856
|
dependencies:
|
2637
2857
|
css-tree "1.0.0-alpha.37"
|
2638
2858
|
|
2639
|
-
cssom
|
2859
|
+
cssom@^0.4.1:
|
2860
|
+
version "0.4.4"
|
2861
|
+
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
|
2862
|
+
integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
|
2863
|
+
|
2864
|
+
cssom@~0.3.6:
|
2640
2865
|
version "0.3.8"
|
2641
2866
|
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
|
2642
2867
|
integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
|
2643
2868
|
|
2644
|
-
cssstyle@^
|
2645
|
-
version "
|
2646
|
-
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-
|
2647
|
-
integrity sha512-
|
2869
|
+
cssstyle@^2.0.0:
|
2870
|
+
version "2.2.0"
|
2871
|
+
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.2.0.tgz#e4c44debccd6b7911ed617a4395e5754bba59992"
|
2872
|
+
integrity sha512-sEb3XFPx3jNnCAMtqrXPDeSgQr+jojtCeNf8cvMNMh1cG970+lljssvQDzPq6lmmJu2Vhqood/gtEomBiHOGnA==
|
2648
2873
|
dependencies:
|
2649
|
-
cssom "0.3.
|
2874
|
+
cssom "~0.3.6"
|
2650
2875
|
|
2651
2876
|
currently-unhandled@^0.4.1:
|
2652
2877
|
version "0.4.1"
|
@@ -2672,7 +2897,7 @@ dashdash@^1.12.0:
|
|
2672
2897
|
dependencies:
|
2673
2898
|
assert-plus "^1.0.0"
|
2674
2899
|
|
2675
|
-
data-urls@^1.
|
2900
|
+
data-urls@^1.1.0:
|
2676
2901
|
version "1.1.0"
|
2677
2902
|
resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
|
2678
2903
|
integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==
|
@@ -2779,15 +3004,15 @@ detect-libc@^1.0.2:
|
|
2779
3004
|
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
|
2780
3005
|
integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=
|
2781
3006
|
|
2782
|
-
detect-newline@^
|
2783
|
-
version "
|
2784
|
-
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-
|
2785
|
-
integrity
|
3007
|
+
detect-newline@^3.0.0:
|
3008
|
+
version "3.1.0"
|
3009
|
+
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
|
3010
|
+
integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
|
2786
3011
|
|
2787
|
-
diff-sequences@^
|
2788
|
-
version "
|
2789
|
-
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-
|
2790
|
-
integrity sha512-
|
3012
|
+
diff-sequences@^25.1.0:
|
3013
|
+
version "25.1.0"
|
3014
|
+
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.1.0.tgz#fd29a46f1c913fd66c22645dc75bffbe43051f32"
|
3015
|
+
integrity sha512-nFIfVk5B/NStCsJ+zaPO4vYuLjlzQ6uFvPxzYyHlejNZ/UGa7G/n7peOXVrVNvRuyfstt+mZQYGpjxg9Z6N8Kw==
|
2791
3016
|
|
2792
3017
|
diffie-hellman@^5.0.0:
|
2793
3018
|
version "5.0.3"
|
@@ -2931,6 +3156,11 @@ emojis-list@^2.0.0:
|
|
2931
3156
|
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
|
2932
3157
|
integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
|
2933
3158
|
|
3159
|
+
emojis-list@^3.0.0:
|
3160
|
+
version "3.0.0"
|
3161
|
+
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
|
3162
|
+
integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
|
3163
|
+
|
2934
3164
|
end-of-stream@^1.0.0, end-of-stream@^1.1.0:
|
2935
3165
|
version "1.4.4"
|
2936
3166
|
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
|
@@ -2991,6 +3221,23 @@ es-abstract@^1.12.0, es-abstract@^1.5.1, es-abstract@^1.7.0:
|
|
2991
3221
|
string.prototype.trimleft "^2.1.0"
|
2992
3222
|
string.prototype.trimright "^2.1.0"
|
2993
3223
|
|
3224
|
+
es-abstract@^1.17.0:
|
3225
|
+
version "1.17.5"
|
3226
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9"
|
3227
|
+
integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==
|
3228
|
+
dependencies:
|
3229
|
+
es-to-primitive "^1.2.1"
|
3230
|
+
function-bind "^1.1.1"
|
3231
|
+
has "^1.0.3"
|
3232
|
+
has-symbols "^1.0.1"
|
3233
|
+
is-callable "^1.1.5"
|
3234
|
+
is-regex "^1.0.5"
|
3235
|
+
object-inspect "^1.7.0"
|
3236
|
+
object-keys "^1.1.1"
|
3237
|
+
object.assign "^4.1.0"
|
3238
|
+
string.prototype.trimleft "^2.1.1"
|
3239
|
+
string.prototype.trimright "^2.1.1"
|
3240
|
+
|
2994
3241
|
es-abstract@^1.17.0-next.1:
|
2995
3242
|
version "1.17.0"
|
2996
3243
|
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.0.tgz#f42a517d0036a5591dbb2c463591dc8bb50309b1"
|
@@ -3022,35 +3269,35 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
|
3022
3269
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
3023
3270
|
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
3024
3271
|
|
3025
|
-
escodegen@^1.
|
3026
|
-
version "1.
|
3027
|
-
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.
|
3028
|
-
integrity sha512-
|
3272
|
+
escodegen@^1.11.1:
|
3273
|
+
version "1.14.1"
|
3274
|
+
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457"
|
3275
|
+
integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ==
|
3029
3276
|
dependencies:
|
3030
|
-
esprima "^
|
3277
|
+
esprima "^4.0.1"
|
3031
3278
|
estraverse "^4.2.0"
|
3032
3279
|
esutils "^2.0.2"
|
3033
3280
|
optionator "^0.8.1"
|
3034
3281
|
optionalDependencies:
|
3035
3282
|
source-map "~0.6.1"
|
3036
3283
|
|
3037
|
-
eslint-config-airbnb-base@^14.
|
3038
|
-
version "14.
|
3039
|
-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.
|
3040
|
-
integrity sha512
|
3284
|
+
eslint-config-airbnb-base@^14.1.0:
|
3285
|
+
version "14.1.0"
|
3286
|
+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.1.0.tgz#2ba4592dd6843258221d9bff2b6831bd77c874e4"
|
3287
|
+
integrity sha512-+XCcfGyCnbzOnktDVhwsCAx+9DmrzEmuwxyHUJpw+kqBVT744OUBrB09khgFKlK1lshVww6qXGsYPZpavoNjJw==
|
3041
3288
|
dependencies:
|
3042
|
-
confusing-browser-globals "^1.0.
|
3289
|
+
confusing-browser-globals "^1.0.9"
|
3043
3290
|
object.assign "^4.1.0"
|
3044
|
-
object.entries "^1.1.
|
3291
|
+
object.entries "^1.1.1"
|
3045
3292
|
|
3046
|
-
eslint-config-airbnb@^18.0
|
3047
|
-
version "18.0
|
3048
|
-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.0.
|
3049
|
-
integrity sha512-
|
3293
|
+
eslint-config-airbnb@^18.1.0:
|
3294
|
+
version "18.1.0"
|
3295
|
+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.1.0.tgz#724d7e93dadd2169492ff5363c5aaa779e01257d"
|
3296
|
+
integrity sha512-kZFuQC/MPnH7KJp6v95xsLBf63G/w7YqdPfQ0MUanxQ7zcKUNG8j+sSY860g3NwCBOa62apw16J6pRN+AOgXzw==
|
3050
3297
|
dependencies:
|
3051
|
-
eslint-config-airbnb-base "^14.
|
3298
|
+
eslint-config-airbnb-base "^14.1.0"
|
3052
3299
|
object.assign "^4.1.0"
|
3053
|
-
object.entries "^1.1.
|
3300
|
+
object.entries "^1.1.1"
|
3054
3301
|
|
3055
3302
|
eslint-import-resolver-node@^0.3.2:
|
3056
3303
|
version "0.3.2"
|
@@ -3068,15 +3315,10 @@ eslint-module-utils@^2.4.1:
|
|
3068
3315
|
debug "^2.6.9"
|
3069
3316
|
pkg-dir "^2.0.0"
|
3070
3317
|
|
3071
|
-
eslint-plugin-
|
3072
|
-
version "2.1
|
3073
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-
|
3074
|
-
integrity sha512-
|
3075
|
-
|
3076
|
-
eslint-plugin-import@^2.19.1:
|
3077
|
-
version "2.19.1"
|
3078
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.19.1.tgz#5654e10b7839d064dd0d46cd1b88ec2133a11448"
|
3079
|
-
integrity sha512-x68131aKoCZlCae7rDXKSAQmbT5DQuManyXo2sK6fJJ0aK5CWAkv6A6HJZGgqC8IhjQxYPgo6/IY4Oz8AFsbBw==
|
3318
|
+
eslint-plugin-import@^2.20.1:
|
3319
|
+
version "2.20.1"
|
3320
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.1.tgz#802423196dcb11d9ce8435a5fc02a6d3b46939b3"
|
3321
|
+
integrity sha512-qQHgFOTjguR+LnYRoToeZWT62XM55MBVXObHM6SKFd1VzDcX/vqT1kAz8ssqigh5eMj8qXcRoXXGZpPP6RfdCw==
|
3080
3322
|
dependencies:
|
3081
3323
|
array-includes "^3.0.3"
|
3082
3324
|
array.prototype.flat "^1.2.1"
|
@@ -3106,21 +3348,23 @@ eslint-plugin-jsx-a11y@^6.2.3:
|
|
3106
3348
|
has "^1.0.3"
|
3107
3349
|
jsx-ast-utils "^2.2.1"
|
3108
3350
|
|
3109
|
-
eslint-plugin-react@^7.
|
3110
|
-
version "7.
|
3111
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.
|
3112
|
-
integrity sha512-
|
3351
|
+
eslint-plugin-react@^7.19.0:
|
3352
|
+
version "7.19.0"
|
3353
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz#6d08f9673628aa69c5559d33489e855d83551666"
|
3354
|
+
integrity sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ==
|
3113
3355
|
dependencies:
|
3114
|
-
array-includes "^3.
|
3356
|
+
array-includes "^3.1.1"
|
3115
3357
|
doctrine "^2.1.0"
|
3116
|
-
eslint-plugin-eslint-plugin "^2.1.0"
|
3117
3358
|
has "^1.0.3"
|
3118
3359
|
jsx-ast-utils "^2.2.3"
|
3119
|
-
object.entries "^1.1.
|
3120
|
-
object.fromentries "^2.0.
|
3121
|
-
object.values "^1.1.
|
3360
|
+
object.entries "^1.1.1"
|
3361
|
+
object.fromentries "^2.0.2"
|
3362
|
+
object.values "^1.1.1"
|
3122
3363
|
prop-types "^15.7.2"
|
3123
|
-
resolve "^1.
|
3364
|
+
resolve "^1.15.1"
|
3365
|
+
semver "^6.3.0"
|
3366
|
+
string.prototype.matchall "^4.0.2"
|
3367
|
+
xregexp "^4.3.0"
|
3124
3368
|
|
3125
3369
|
eslint-scope@^4.0.3:
|
3126
3370
|
version "4.0.3"
|
@@ -3202,12 +3446,7 @@ espree@^6.1.2:
|
|
3202
3446
|
acorn-jsx "^5.1.0"
|
3203
3447
|
eslint-visitor-keys "^1.1.0"
|
3204
3448
|
|
3205
|
-
esprima@^
|
3206
|
-
version "3.1.3"
|
3207
|
-
resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
|
3208
|
-
integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=
|
3209
|
-
|
3210
|
-
esprima@^4.0.0:
|
3449
|
+
esprima@^4.0.0, esprima@^4.0.1:
|
3211
3450
|
version "4.0.1"
|
3212
3451
|
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
|
3213
3452
|
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
|
@@ -3267,6 +3506,22 @@ execa@^1.0.0:
|
|
3267
3506
|
signal-exit "^3.0.0"
|
3268
3507
|
strip-eof "^1.0.0"
|
3269
3508
|
|
3509
|
+
execa@^3.2.0:
|
3510
|
+
version "3.4.0"
|
3511
|
+
resolved "https://registry.yarnpkg.com/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89"
|
3512
|
+
integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==
|
3513
|
+
dependencies:
|
3514
|
+
cross-spawn "^7.0.0"
|
3515
|
+
get-stream "^5.0.0"
|
3516
|
+
human-signals "^1.1.1"
|
3517
|
+
is-stream "^2.0.0"
|
3518
|
+
merge-stream "^2.0.0"
|
3519
|
+
npm-run-path "^4.0.0"
|
3520
|
+
onetime "^5.1.0"
|
3521
|
+
p-finally "^2.0.0"
|
3522
|
+
signal-exit "^3.0.2"
|
3523
|
+
strip-final-newline "^2.0.0"
|
3524
|
+
|
3270
3525
|
exit@^0.1.2:
|
3271
3526
|
version "0.1.2"
|
3272
3527
|
resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
|
@@ -3292,17 +3547,17 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2:
|
|
3292
3547
|
dependencies:
|
3293
3548
|
homedir-polyfill "^1.0.1"
|
3294
3549
|
|
3295
|
-
expect@^
|
3296
|
-
version "
|
3297
|
-
resolved "https://registry.yarnpkg.com/expect/-/expect-
|
3298
|
-
integrity sha512-
|
3550
|
+
expect@^25.1.0:
|
3551
|
+
version "25.1.0"
|
3552
|
+
resolved "https://registry.yarnpkg.com/expect/-/expect-25.1.0.tgz#7e8d7b06a53f7d66ec927278db3304254ee683ee"
|
3553
|
+
integrity sha512-wqHzuoapQkhc3OKPlrpetsfueuEiMf3iWh0R8+duCu9PIjXoP7HgD5aeypwTnXUAjC8aMsiVDaWwlbJ1RlQ38g==
|
3299
3554
|
dependencies:
|
3300
|
-
"@jest/types" "^
|
3301
|
-
ansi-styles "^
|
3302
|
-
jest-get-type "^
|
3303
|
-
jest-matcher-utils "^
|
3304
|
-
jest-message-util "^
|
3305
|
-
jest-regex-util "^
|
3555
|
+
"@jest/types" "^25.1.0"
|
3556
|
+
ansi-styles "^4.0.0"
|
3557
|
+
jest-get-type "^25.1.0"
|
3558
|
+
jest-matcher-utils "^25.1.0"
|
3559
|
+
jest-message-util "^25.1.0"
|
3560
|
+
jest-regex-util "^25.1.0"
|
3306
3561
|
|
3307
3562
|
extend-shallow@^2.0.1:
|
3308
3563
|
version "2.0.1"
|
@@ -3362,6 +3617,11 @@ fast-deep-equal@^2.0.1:
|
|
3362
3617
|
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
|
3363
3618
|
integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
|
3364
3619
|
|
3620
|
+
fast-deep-equal@^3.1.1:
|
3621
|
+
version "3.1.1"
|
3622
|
+
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4"
|
3623
|
+
integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==
|
3624
|
+
|
3365
3625
|
fast-json-stable-stringify@^2.0.0:
|
3366
3626
|
version "2.0.0"
|
3367
3627
|
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
|
@@ -3398,13 +3658,13 @@ file-entry-cache@^5.0.1:
|
|
3398
3658
|
dependencies:
|
3399
3659
|
flat-cache "^2.0.1"
|
3400
3660
|
|
3401
|
-
file-loader@^
|
3402
|
-
version "
|
3403
|
-
resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-
|
3404
|
-
integrity sha512
|
3661
|
+
file-loader@^6.0.0:
|
3662
|
+
version "6.0.0"
|
3663
|
+
resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.0.0.tgz#97bbfaab7a2460c07bcbd72d3a6922407f67649f"
|
3664
|
+
integrity sha512-/aMOAYEFXDdjG0wytpTL5YQLfZnnTmLNjn+AIrJ/6HVnTfDqLsVKUUwkDf4I4kgex36BvjuXEn/TX9B/1ESyqQ==
|
3405
3665
|
dependencies:
|
3406
|
-
loader-utils "^
|
3407
|
-
schema-utils "^2.5
|
3666
|
+
loader-utils "^2.0.0"
|
3667
|
+
schema-utils "^2.6.5"
|
3408
3668
|
|
3409
3669
|
fill-range@^4.0.0:
|
3410
3670
|
version "4.0.0"
|
@@ -3416,7 +3676,14 @@ fill-range@^4.0.0:
|
|
3416
3676
|
repeat-string "^1.6.1"
|
3417
3677
|
to-regex-range "^2.1.0"
|
3418
3678
|
|
3419
|
-
|
3679
|
+
fill-range@^7.0.1:
|
3680
|
+
version "7.0.1"
|
3681
|
+
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
3682
|
+
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
|
3683
|
+
dependencies:
|
3684
|
+
to-regex-range "^5.0.1"
|
3685
|
+
|
3686
|
+
find-cache-dir@^2.1.0:
|
3420
3687
|
version "2.1.0"
|
3421
3688
|
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
|
3422
3689
|
integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
|
@@ -3465,7 +3732,7 @@ find-up@^3.0.0:
|
|
3465
3732
|
dependencies:
|
3466
3733
|
locate-path "^3.0.0"
|
3467
3734
|
|
3468
|
-
find-up@^4.0.0:
|
3735
|
+
find-up@^4.0.0, find-up@^4.1.0:
|
3469
3736
|
version "4.1.0"
|
3470
3737
|
resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
|
3471
3738
|
integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
|
@@ -3581,6 +3848,11 @@ fsevents@^1.2.7:
|
|
3581
3848
|
nan "^2.12.1"
|
3582
3849
|
node-pre-gyp "^0.12.0"
|
3583
3850
|
|
3851
|
+
fsevents@^2.1.2:
|
3852
|
+
version "2.1.2"
|
3853
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805"
|
3854
|
+
integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==
|
3855
|
+
|
3584
3856
|
fstream@^1.0.0, fstream@^1.0.12:
|
3585
3857
|
version "1.0.12"
|
3586
3858
|
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045"
|
@@ -3649,6 +3921,13 @@ get-stream@^4.0.0:
|
|
3649
3921
|
dependencies:
|
3650
3922
|
pump "^3.0.0"
|
3651
3923
|
|
3924
|
+
get-stream@^5.0.0:
|
3925
|
+
version "5.1.0"
|
3926
|
+
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9"
|
3927
|
+
integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==
|
3928
|
+
dependencies:
|
3929
|
+
pump "^3.0.0"
|
3930
|
+
|
3652
3931
|
get-value@^2.0.3, get-value@^2.0.6:
|
3653
3932
|
version "2.0.6"
|
3654
3933
|
resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
|
@@ -3745,7 +4024,7 @@ globule@^1.0.0:
|
|
3745
4024
|
lodash "~4.17.10"
|
3746
4025
|
minimatch "~3.0.2"
|
3747
4026
|
|
3748
|
-
graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.2.2:
|
4027
|
+
graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.2.2, graceful-fs@^4.2.3:
|
3749
4028
|
version "4.2.3"
|
3750
4029
|
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
|
3751
4030
|
integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
|
@@ -3755,17 +4034,6 @@ growly@^1.3.0:
|
|
3755
4034
|
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
|
3756
4035
|
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
|
3757
4036
|
|
3758
|
-
handlebars@^4.1.2:
|
3759
|
-
version "4.5.1"
|
3760
|
-
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.5.1.tgz#8a01c382c180272260d07f2d1aa3ae745715c7ba"
|
3761
|
-
integrity sha512-C29UoFzHe9yM61lOsIlCE5/mQVGrnIOrOq7maQl76L7tYPCgC1og0Ajt6uWnX4ZTxBPnjw+CUvawphwCfJgUnA==
|
3762
|
-
dependencies:
|
3763
|
-
neo-async "^2.6.0"
|
3764
|
-
optimist "^0.6.1"
|
3765
|
-
source-map "^0.6.1"
|
3766
|
-
optionalDependencies:
|
3767
|
-
uglify-js "^3.1.4"
|
3768
|
-
|
3769
4037
|
har-schema@^2.0.0:
|
3770
4038
|
version "2.0.0"
|
3771
4039
|
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
|
@@ -3913,6 +4181,11 @@ html-encoding-sniffer@^1.0.2:
|
|
3913
4181
|
dependencies:
|
3914
4182
|
whatwg-encoding "^1.0.1"
|
3915
4183
|
|
4184
|
+
html-escaper@^2.0.0:
|
4185
|
+
version "2.0.1"
|
4186
|
+
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.1.tgz#beed86b5d2b921e92533aa11bce6d8e3b583dee7"
|
4187
|
+
integrity sha512-hNX23TjWwD3q56HpWjUHOKj1+4KKlnjv9PcmBUYKVpga+2cnb9nDx/B1o0yO4n+RZXZdiNxzx6B24C9aNMTkkQ==
|
4188
|
+
|
3916
4189
|
http-signature@~1.2.0:
|
3917
4190
|
version "1.2.0"
|
3918
4191
|
resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
|
@@ -3927,6 +4200,11 @@ https-browserify@^1.0.0:
|
|
3927
4200
|
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
|
3928
4201
|
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
|
3929
4202
|
|
4203
|
+
human-signals@^1.1.1:
|
4204
|
+
version "1.1.1"
|
4205
|
+
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
|
4206
|
+
integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
|
4207
|
+
|
3930
4208
|
iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4:
|
3931
4209
|
version "0.4.24"
|
3932
4210
|
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
|
@@ -4001,7 +4279,7 @@ import-from@^2.1.0:
|
|
4001
4279
|
dependencies:
|
4002
4280
|
resolve-from "^3.0.0"
|
4003
4281
|
|
4004
|
-
import-local@2.0.0
|
4282
|
+
import-local@2.0.0:
|
4005
4283
|
version "2.0.0"
|
4006
4284
|
resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
|
4007
4285
|
integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
|
@@ -4009,6 +4287,14 @@ import-local@2.0.0, import-local@^2.0.0:
|
|
4009
4287
|
pkg-dir "^3.0.0"
|
4010
4288
|
resolve-cwd "^2.0.0"
|
4011
4289
|
|
4290
|
+
import-local@^3.0.2:
|
4291
|
+
version "3.0.2"
|
4292
|
+
resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6"
|
4293
|
+
integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
|
4294
|
+
dependencies:
|
4295
|
+
pkg-dir "^4.2.0"
|
4296
|
+
resolve-cwd "^3.0.0"
|
4297
|
+
|
4012
4298
|
imurmurhash@^0.1.4:
|
4013
4299
|
version "0.1.4"
|
4014
4300
|
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
|
@@ -4088,6 +4374,15 @@ inquirer@^7.0.0:
|
|
4088
4374
|
strip-ansi "^5.1.0"
|
4089
4375
|
through "^2.3.6"
|
4090
4376
|
|
4377
|
+
internal-slot@^1.0.2:
|
4378
|
+
version "1.0.2"
|
4379
|
+
resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3"
|
4380
|
+
integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g==
|
4381
|
+
dependencies:
|
4382
|
+
es-abstract "^1.17.0-next.1"
|
4383
|
+
has "^1.0.3"
|
4384
|
+
side-channel "^1.0.2"
|
4385
|
+
|
4091
4386
|
interpret@1.2.0:
|
4092
4387
|
version "1.2.0"
|
4093
4388
|
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296"
|
@@ -4110,6 +4405,11 @@ invert-kv@^2.0.0:
|
|
4110
4405
|
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
|
4111
4406
|
integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==
|
4112
4407
|
|
4408
|
+
ip-regex@^2.1.0:
|
4409
|
+
version "2.1.0"
|
4410
|
+
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
|
4411
|
+
integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
|
4412
|
+
|
4113
4413
|
is-absolute-url@^2.0.0:
|
4114
4414
|
version "2.1.0"
|
4115
4415
|
resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
|
@@ -4289,6 +4589,11 @@ is-number@^3.0.0:
|
|
4289
4589
|
dependencies:
|
4290
4590
|
kind-of "^3.0.2"
|
4291
4591
|
|
4592
|
+
is-number@^7.0.0:
|
4593
|
+
version "7.0.0"
|
4594
|
+
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
|
4595
|
+
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
|
4596
|
+
|
4292
4597
|
is-obj@^1.0.0:
|
4293
4598
|
version "1.0.1"
|
4294
4599
|
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
|
@@ -4335,6 +4640,16 @@ is-stream@^1.1.0:
|
|
4335
4640
|
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
4336
4641
|
integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
|
4337
4642
|
|
4643
|
+
is-stream@^2.0.0:
|
4644
|
+
version "2.0.0"
|
4645
|
+
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
|
4646
|
+
integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
|
4647
|
+
|
4648
|
+
is-string@^1.0.5:
|
4649
|
+
version "1.0.5"
|
4650
|
+
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
|
4651
|
+
integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
|
4652
|
+
|
4338
4653
|
is-svg@^3.0.0:
|
4339
4654
|
version "3.0.0"
|
4340
4655
|
resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75"
|
@@ -4349,7 +4664,7 @@ is-symbol@^1.0.2:
|
|
4349
4664
|
dependencies:
|
4350
4665
|
has-symbols "^1.0.0"
|
4351
4666
|
|
4352
|
-
is-typedarray@~1.0.0:
|
4667
|
+
is-typedarray@^1.0.0, is-typedarray@~1.0.0:
|
4353
4668
|
version "1.0.0"
|
4354
4669
|
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
|
4355
4670
|
integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
|
@@ -4369,6 +4684,11 @@ is-wsl@^1.1.0:
|
|
4369
4684
|
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
|
4370
4685
|
integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
|
4371
4686
|
|
4687
|
+
is-wsl@^2.1.1:
|
4688
|
+
version "2.1.1"
|
4689
|
+
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.1.1.tgz#4a1c152d429df3d441669498e2486d3596ebaf1d"
|
4690
|
+
integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog==
|
4691
|
+
|
4372
4692
|
isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
|
4373
4693
|
version "1.0.0"
|
4374
4694
|
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
@@ -4396,396 +4716,380 @@ isstream@~0.1.2:
|
|
4396
4716
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
4397
4717
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
4398
4718
|
|
4399
|
-
istanbul-lib-coverage@^
|
4400
|
-
version "
|
4401
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-
|
4402
|
-
integrity sha512-
|
4719
|
+
istanbul-lib-coverage@^3.0.0:
|
4720
|
+
version "3.0.0"
|
4721
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
|
4722
|
+
integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
|
4403
4723
|
|
4404
|
-
istanbul-lib-instrument@^
|
4405
|
-
version "
|
4406
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-
|
4407
|
-
integrity sha512-
|
4408
|
-
dependencies:
|
4409
|
-
"@babel/
|
4410
|
-
"@babel/parser" "^7.
|
4411
|
-
"@babel/template" "^7.4
|
4412
|
-
"@babel/traverse" "^7.4
|
4413
|
-
"@
|
4414
|
-
istanbul-lib-coverage "^
|
4415
|
-
semver "^6.
|
4724
|
+
istanbul-lib-instrument@^4.0.0:
|
4725
|
+
version "4.0.1"
|
4726
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.1.tgz#61f13ac2c96cfefb076fe7131156cc05907874e6"
|
4727
|
+
integrity sha512-imIchxnodll7pvQBYOqUu88EufLCU56LMeFPZZM/fJZ1irYcYdqroaV+ACK1Ila8ls09iEYArp+nqyC6lW1Vfg==
|
4728
|
+
dependencies:
|
4729
|
+
"@babel/core" "^7.7.5"
|
4730
|
+
"@babel/parser" "^7.7.5"
|
4731
|
+
"@babel/template" "^7.7.4"
|
4732
|
+
"@babel/traverse" "^7.7.4"
|
4733
|
+
"@istanbuljs/schema" "^0.1.2"
|
4734
|
+
istanbul-lib-coverage "^3.0.0"
|
4735
|
+
semver "^6.3.0"
|
4416
4736
|
|
4417
|
-
istanbul-lib-report@^
|
4418
|
-
version "
|
4419
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-
|
4420
|
-
integrity sha512-
|
4737
|
+
istanbul-lib-report@^3.0.0:
|
4738
|
+
version "3.0.0"
|
4739
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
|
4740
|
+
integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
|
4421
4741
|
dependencies:
|
4422
|
-
istanbul-lib-coverage "^
|
4423
|
-
make-dir "^
|
4424
|
-
supports-color "^
|
4742
|
+
istanbul-lib-coverage "^3.0.0"
|
4743
|
+
make-dir "^3.0.0"
|
4744
|
+
supports-color "^7.1.0"
|
4425
4745
|
|
4426
|
-
istanbul-lib-source-maps@^
|
4427
|
-
version "
|
4428
|
-
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-
|
4429
|
-
integrity sha512-
|
4746
|
+
istanbul-lib-source-maps@^4.0.0:
|
4747
|
+
version "4.0.0"
|
4748
|
+
resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9"
|
4749
|
+
integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
|
4430
4750
|
dependencies:
|
4431
4751
|
debug "^4.1.1"
|
4432
|
-
istanbul-lib-coverage "^
|
4433
|
-
make-dir "^2.1.0"
|
4434
|
-
rimraf "^2.6.3"
|
4752
|
+
istanbul-lib-coverage "^3.0.0"
|
4435
4753
|
source-map "^0.6.1"
|
4436
4754
|
|
4437
|
-
istanbul-reports@^
|
4438
|
-
version "
|
4439
|
-
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-
|
4440
|
-
integrity sha512-
|
4755
|
+
istanbul-reports@^3.0.0:
|
4756
|
+
version "3.0.0"
|
4757
|
+
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.0.tgz#d4d16d035db99581b6194e119bbf36c963c5eb70"
|
4758
|
+
integrity sha512-2osTcC8zcOSUkImzN2EWQta3Vdi4WjjKw99P2yWx5mLnigAM0Rd5uYFn1cf2i/Ois45GkNjaoTqc5CxgMSX80A==
|
4441
4759
|
dependencies:
|
4442
|
-
|
4760
|
+
html-escaper "^2.0.0"
|
4761
|
+
istanbul-lib-report "^3.0.0"
|
4443
4762
|
|
4444
|
-
jest-changed-files@^
|
4445
|
-
version "
|
4446
|
-
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-
|
4447
|
-
integrity sha512-
|
4763
|
+
jest-changed-files@^25.1.0:
|
4764
|
+
version "25.1.0"
|
4765
|
+
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.1.0.tgz#73dae9a7d9949fdfa5c278438ce8f2ff3ec78131"
|
4766
|
+
integrity sha512-bdL1aHjIVy3HaBO3eEQeemGttsq1BDlHgWcOjEOIAcga7OOEGWHD2WSu8HhL7I1F0mFFyci8VKU4tRNk+qtwDA==
|
4448
4767
|
dependencies:
|
4449
|
-
"@jest/types" "^
|
4450
|
-
execa "^
|
4451
|
-
throat "^
|
4768
|
+
"@jest/types" "^25.1.0"
|
4769
|
+
execa "^3.2.0"
|
4770
|
+
throat "^5.0.0"
|
4452
4771
|
|
4453
|
-
jest-cli@^
|
4454
|
-
version "
|
4455
|
-
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-
|
4456
|
-
integrity sha512
|
4772
|
+
jest-cli@^25.1.0:
|
4773
|
+
version "25.1.0"
|
4774
|
+
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-25.1.0.tgz#75f0b09cf6c4f39360906bf78d580be1048e4372"
|
4775
|
+
integrity sha512-p+aOfczzzKdo3AsLJlhs8J5EW6ffVidfSZZxXedJ0mHPBOln1DccqFmGCoO8JWd4xRycfmwy1eoQkMsF8oekPg==
|
4457
4776
|
dependencies:
|
4458
|
-
"@jest/core" "^
|
4459
|
-
"@jest/test-result" "^
|
4460
|
-
"@jest/types" "^
|
4461
|
-
chalk "^
|
4777
|
+
"@jest/core" "^25.1.0"
|
4778
|
+
"@jest/test-result" "^25.1.0"
|
4779
|
+
"@jest/types" "^25.1.0"
|
4780
|
+
chalk "^3.0.0"
|
4462
4781
|
exit "^0.1.2"
|
4463
|
-
import-local "^
|
4782
|
+
import-local "^3.0.2"
|
4464
4783
|
is-ci "^2.0.0"
|
4465
|
-
jest-config "^
|
4466
|
-
jest-util "^
|
4467
|
-
jest-validate "^
|
4784
|
+
jest-config "^25.1.0"
|
4785
|
+
jest-util "^25.1.0"
|
4786
|
+
jest-validate "^25.1.0"
|
4468
4787
|
prompts "^2.0.1"
|
4469
4788
|
realpath-native "^1.1.0"
|
4470
|
-
yargs "^
|
4789
|
+
yargs "^15.0.0"
|
4471
4790
|
|
4472
|
-
jest-config@^
|
4473
|
-
version "
|
4474
|
-
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-
|
4475
|
-
integrity sha512-
|
4791
|
+
jest-config@^25.1.0:
|
4792
|
+
version "25.1.0"
|
4793
|
+
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-25.1.0.tgz#d114e4778c045d3ef239452213b7ad3ec1cbea90"
|
4794
|
+
integrity sha512-tLmsg4SZ5H7tuhBC5bOja0HEblM0coS3Wy5LTCb2C8ZV6eWLewHyK+3qSq9Bi29zmWQ7ojdCd3pxpx4l4d2uGw==
|
4476
4795
|
dependencies:
|
4477
4796
|
"@babel/core" "^7.1.0"
|
4478
|
-
"@jest/test-sequencer" "^
|
4479
|
-
"@jest/types" "^
|
4480
|
-
babel-jest "^
|
4481
|
-
chalk "^
|
4797
|
+
"@jest/test-sequencer" "^25.1.0"
|
4798
|
+
"@jest/types" "^25.1.0"
|
4799
|
+
babel-jest "^25.1.0"
|
4800
|
+
chalk "^3.0.0"
|
4482
4801
|
glob "^7.1.1"
|
4483
|
-
jest-environment-jsdom "^
|
4484
|
-
jest-environment-node "^
|
4485
|
-
jest-get-type "^
|
4486
|
-
jest-jasmine2 "^
|
4487
|
-
jest-regex-util "^
|
4488
|
-
jest-resolve "^
|
4489
|
-
jest-util "^
|
4490
|
-
jest-validate "^
|
4491
|
-
micromatch "^
|
4492
|
-
pretty-format "^
|
4802
|
+
jest-environment-jsdom "^25.1.0"
|
4803
|
+
jest-environment-node "^25.1.0"
|
4804
|
+
jest-get-type "^25.1.0"
|
4805
|
+
jest-jasmine2 "^25.1.0"
|
4806
|
+
jest-regex-util "^25.1.0"
|
4807
|
+
jest-resolve "^25.1.0"
|
4808
|
+
jest-util "^25.1.0"
|
4809
|
+
jest-validate "^25.1.0"
|
4810
|
+
micromatch "^4.0.2"
|
4811
|
+
pretty-format "^25.1.0"
|
4493
4812
|
realpath-native "^1.1.0"
|
4494
4813
|
|
4495
|
-
jest-diff@^
|
4496
|
-
version "
|
4497
|
-
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-
|
4498
|
-
integrity sha512-
|
4499
|
-
dependencies:
|
4500
|
-
chalk "^
|
4501
|
-
diff-sequences "^
|
4502
|
-
jest-get-type "^
|
4503
|
-
pretty-format "^
|
4504
|
-
|
4505
|
-
jest-docblock@^
|
4506
|
-
version "
|
4507
|
-
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-
|
4508
|
-
integrity sha512-
|
4509
|
-
dependencies:
|
4510
|
-
detect-newline "^
|
4511
|
-
|
4512
|
-
jest-each@^
|
4513
|
-
version "
|
4514
|
-
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-
|
4515
|
-
integrity sha512-
|
4516
|
-
dependencies:
|
4517
|
-
"@jest/types" "^
|
4518
|
-
chalk "^
|
4519
|
-
jest-get-type "^
|
4520
|
-
jest-util "^
|
4521
|
-
pretty-format "^
|
4522
|
-
|
4523
|
-
jest-environment-jsdom@^
|
4524
|
-
version "
|
4525
|
-
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-
|
4526
|
-
integrity sha512-
|
4527
|
-
dependencies:
|
4528
|
-
"@jest/environment" "^
|
4529
|
-
"@jest/fake-timers" "^
|
4530
|
-
"@jest/types" "^
|
4531
|
-
jest-mock "^
|
4532
|
-
jest-util "^
|
4533
|
-
jsdom "^
|
4534
|
-
|
4535
|
-
jest-environment-node@^
|
4536
|
-
version "
|
4537
|
-
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-
|
4538
|
-
integrity sha512-
|
4539
|
-
dependencies:
|
4540
|
-
"@jest/environment" "^
|
4541
|
-
"@jest/fake-timers" "^
|
4542
|
-
"@jest/types" "^
|
4543
|
-
jest-mock "^
|
4544
|
-
jest-util "^
|
4545
|
-
|
4546
|
-
jest-get-type@^
|
4547
|
-
version "
|
4548
|
-
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-
|
4549
|
-
integrity sha512-
|
4550
|
-
|
4551
|
-
jest-haste-map@^
|
4552
|
-
version "
|
4553
|
-
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-
|
4554
|
-
integrity sha512
|
4555
|
-
dependencies:
|
4556
|
-
"@jest/types" "^
|
4557
|
-
anymatch "^
|
4814
|
+
jest-diff@^25.1.0:
|
4815
|
+
version "25.1.0"
|
4816
|
+
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.1.0.tgz#58b827e63edea1bc80c1de952b80cec9ac50e1ad"
|
4817
|
+
integrity sha512-nepXgajT+h017APJTreSieh4zCqnSHEJ1iT8HDlewu630lSJ4Kjjr9KNzm+kzGwwcpsDE6Snx1GJGzzsefaEHw==
|
4818
|
+
dependencies:
|
4819
|
+
chalk "^3.0.0"
|
4820
|
+
diff-sequences "^25.1.0"
|
4821
|
+
jest-get-type "^25.1.0"
|
4822
|
+
pretty-format "^25.1.0"
|
4823
|
+
|
4824
|
+
jest-docblock@^25.1.0:
|
4825
|
+
version "25.1.0"
|
4826
|
+
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-25.1.0.tgz#0f44bea3d6ca6dfc38373d465b347c8818eccb64"
|
4827
|
+
integrity sha512-370P/mh1wzoef6hUKiaMcsPtIapY25suP6JqM70V9RJvdKLrV4GaGbfUseUVk4FZJw4oTZ1qSCJNdrClKt5JQA==
|
4828
|
+
dependencies:
|
4829
|
+
detect-newline "^3.0.0"
|
4830
|
+
|
4831
|
+
jest-each@^25.1.0:
|
4832
|
+
version "25.1.0"
|
4833
|
+
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-25.1.0.tgz#a6b260992bdf451c2d64a0ccbb3ac25e9b44c26a"
|
4834
|
+
integrity sha512-R9EL8xWzoPySJ5wa0DXFTj7NrzKpRD40Jy+zQDp3Qr/2QmevJgkN9GqioCGtAJ2bW9P/MQRznQHQQhoeAyra7A==
|
4835
|
+
dependencies:
|
4836
|
+
"@jest/types" "^25.1.0"
|
4837
|
+
chalk "^3.0.0"
|
4838
|
+
jest-get-type "^25.1.0"
|
4839
|
+
jest-util "^25.1.0"
|
4840
|
+
pretty-format "^25.1.0"
|
4841
|
+
|
4842
|
+
jest-environment-jsdom@^25.1.0:
|
4843
|
+
version "25.1.0"
|
4844
|
+
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-25.1.0.tgz#6777ab8b3e90fd076801efd3bff8e98694ab43c3"
|
4845
|
+
integrity sha512-ILb4wdrwPAOHX6W82GGDUiaXSSOE274ciuov0lztOIymTChKFtC02ddyicRRCdZlB5YSrv3vzr1Z5xjpEe1OHQ==
|
4846
|
+
dependencies:
|
4847
|
+
"@jest/environment" "^25.1.0"
|
4848
|
+
"@jest/fake-timers" "^25.1.0"
|
4849
|
+
"@jest/types" "^25.1.0"
|
4850
|
+
jest-mock "^25.1.0"
|
4851
|
+
jest-util "^25.1.0"
|
4852
|
+
jsdom "^15.1.1"
|
4853
|
+
|
4854
|
+
jest-environment-node@^25.1.0:
|
4855
|
+
version "25.1.0"
|
4856
|
+
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-25.1.0.tgz#797bd89b378cf0bd794dc8e3dca6ef21126776db"
|
4857
|
+
integrity sha512-U9kFWTtAPvhgYY5upnH9rq8qZkj6mYLup5l1caAjjx9uNnkLHN2xgZy5mo4SyLdmrh/EtB9UPpKFShvfQHD0Iw==
|
4858
|
+
dependencies:
|
4859
|
+
"@jest/environment" "^25.1.0"
|
4860
|
+
"@jest/fake-timers" "^25.1.0"
|
4861
|
+
"@jest/types" "^25.1.0"
|
4862
|
+
jest-mock "^25.1.0"
|
4863
|
+
jest-util "^25.1.0"
|
4864
|
+
|
4865
|
+
jest-get-type@^25.1.0:
|
4866
|
+
version "25.1.0"
|
4867
|
+
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.1.0.tgz#1cfe5fc34f148dc3a8a3b7275f6b9ce9e2e8a876"
|
4868
|
+
integrity sha512-yWkBnT+5tMr8ANB6V+OjmrIJufHtCAqI5ic2H40v+tRqxDmE0PGnIiTyvRWFOMtmVHYpwRqyazDbTnhpjsGvLw==
|
4869
|
+
|
4870
|
+
jest-haste-map@^25.1.0:
|
4871
|
+
version "25.1.0"
|
4872
|
+
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.1.0.tgz#ae12163d284f19906260aa51fd405b5b2e5a4ad3"
|
4873
|
+
integrity sha512-/2oYINIdnQZAqyWSn1GTku571aAfs8NxzSErGek65Iu5o8JYb+113bZysRMcC/pjE5v9w0Yz+ldbj9NxrFyPyw==
|
4874
|
+
dependencies:
|
4875
|
+
"@jest/types" "^25.1.0"
|
4876
|
+
anymatch "^3.0.3"
|
4558
4877
|
fb-watchman "^2.0.0"
|
4559
|
-
graceful-fs "^4.
|
4560
|
-
|
4561
|
-
jest-
|
4562
|
-
jest-
|
4563
|
-
|
4564
|
-
micromatch "^3.1.10"
|
4878
|
+
graceful-fs "^4.2.3"
|
4879
|
+
jest-serializer "^25.1.0"
|
4880
|
+
jest-util "^25.1.0"
|
4881
|
+
jest-worker "^25.1.0"
|
4882
|
+
micromatch "^4.0.2"
|
4565
4883
|
sane "^4.0.3"
|
4566
4884
|
walker "^1.0.7"
|
4567
4885
|
optionalDependencies:
|
4568
|
-
fsevents "^1.2
|
4886
|
+
fsevents "^2.1.2"
|
4569
4887
|
|
4570
|
-
jest-jasmine2@^
|
4571
|
-
version "
|
4572
|
-
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-
|
4573
|
-
integrity sha512-
|
4888
|
+
jest-jasmine2@^25.1.0:
|
4889
|
+
version "25.1.0"
|
4890
|
+
resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-25.1.0.tgz#681b59158a430f08d5d0c1cce4f01353e4b48137"
|
4891
|
+
integrity sha512-GdncRq7jJ7sNIQ+dnXvpKO2MyP6j3naNK41DTTjEAhLEdpImaDA9zSAZwDhijjSF/D7cf4O5fdyUApGBZleaEg==
|
4574
4892
|
dependencies:
|
4575
4893
|
"@babel/traverse" "^7.1.0"
|
4576
|
-
"@jest/environment" "^
|
4577
|
-
"@jest/
|
4578
|
-
"@jest/
|
4579
|
-
|
4894
|
+
"@jest/environment" "^25.1.0"
|
4895
|
+
"@jest/source-map" "^25.1.0"
|
4896
|
+
"@jest/test-result" "^25.1.0"
|
4897
|
+
"@jest/types" "^25.1.0"
|
4898
|
+
chalk "^3.0.0"
|
4580
4899
|
co "^4.6.0"
|
4581
|
-
expect "^
|
4900
|
+
expect "^25.1.0"
|
4582
4901
|
is-generator-fn "^2.0.0"
|
4583
|
-
jest-each "^
|
4584
|
-
jest-matcher-utils "^
|
4585
|
-
jest-message-util "^
|
4586
|
-
jest-runtime "^
|
4587
|
-
jest-snapshot "^
|
4588
|
-
jest-util "^
|
4589
|
-
pretty-format "^
|
4590
|
-
throat "^
|
4591
|
-
|
4592
|
-
jest-leak-detector@^
|
4593
|
-
version "
|
4594
|
-
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-
|
4595
|
-
integrity sha512-
|
4596
|
-
dependencies:
|
4597
|
-
jest-get-type "^
|
4598
|
-
pretty-format "^
|
4599
|
-
|
4600
|
-
jest-matcher-utils@^
|
4601
|
-
version "
|
4602
|
-
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-
|
4603
|
-
integrity sha512-
|
4604
|
-
dependencies:
|
4605
|
-
chalk "^
|
4606
|
-
jest-diff "^
|
4607
|
-
jest-get-type "^
|
4608
|
-
pretty-format "^
|
4609
|
-
|
4610
|
-
jest-message-util@^
|
4611
|
-
version "
|
4612
|
-
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-
|
4613
|
-
integrity sha512-
|
4902
|
+
jest-each "^25.1.0"
|
4903
|
+
jest-matcher-utils "^25.1.0"
|
4904
|
+
jest-message-util "^25.1.0"
|
4905
|
+
jest-runtime "^25.1.0"
|
4906
|
+
jest-snapshot "^25.1.0"
|
4907
|
+
jest-util "^25.1.0"
|
4908
|
+
pretty-format "^25.1.0"
|
4909
|
+
throat "^5.0.0"
|
4910
|
+
|
4911
|
+
jest-leak-detector@^25.1.0:
|
4912
|
+
version "25.1.0"
|
4913
|
+
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-25.1.0.tgz#ed6872d15aa1c72c0732d01bd073dacc7c38b5c6"
|
4914
|
+
integrity sha512-3xRI264dnhGaMHRvkFyEKpDeaRzcEBhyNrOG5oT8xPxOyUAblIAQnpiR3QXu4wDor47MDTiHbiFcbypdLcLW5w==
|
4915
|
+
dependencies:
|
4916
|
+
jest-get-type "^25.1.0"
|
4917
|
+
pretty-format "^25.1.0"
|
4918
|
+
|
4919
|
+
jest-matcher-utils@^25.1.0:
|
4920
|
+
version "25.1.0"
|
4921
|
+
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.1.0.tgz#fa5996c45c7193a3c24e73066fc14acdee020220"
|
4922
|
+
integrity sha512-KGOAFcSFbclXIFE7bS4C53iYobKI20ZWleAdAFun4W1Wz1Kkej8Ng6RRbhL8leaEvIOjGXhGf/a1JjO8bkxIWQ==
|
4923
|
+
dependencies:
|
4924
|
+
chalk "^3.0.0"
|
4925
|
+
jest-diff "^25.1.0"
|
4926
|
+
jest-get-type "^25.1.0"
|
4927
|
+
pretty-format "^25.1.0"
|
4928
|
+
|
4929
|
+
jest-message-util@^25.1.0:
|
4930
|
+
version "25.1.0"
|
4931
|
+
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.1.0.tgz#702a9a5cb05c144b9aa73f06e17faa219389845e"
|
4932
|
+
integrity sha512-Nr/Iwar2COfN22aCqX0kCVbXgn8IBm9nWf4xwGr5Olv/KZh0CZ32RKgZWMVDXGdOahicM10/fgjdimGNX/ttCQ==
|
4614
4933
|
dependencies:
|
4615
4934
|
"@babel/code-frame" "^7.0.0"
|
4616
|
-
"@jest/test-result" "^
|
4617
|
-
"@jest/types" "^
|
4935
|
+
"@jest/test-result" "^25.1.0"
|
4936
|
+
"@jest/types" "^25.1.0"
|
4618
4937
|
"@types/stack-utils" "^1.0.1"
|
4619
|
-
chalk "^
|
4620
|
-
micromatch "^
|
4621
|
-
slash "^
|
4938
|
+
chalk "^3.0.0"
|
4939
|
+
micromatch "^4.0.2"
|
4940
|
+
slash "^3.0.0"
|
4622
4941
|
stack-utils "^1.0.1"
|
4623
4942
|
|
4624
|
-
jest-mock@^
|
4625
|
-
version "
|
4626
|
-
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-
|
4627
|
-
integrity sha512-
|
4943
|
+
jest-mock@^25.1.0:
|
4944
|
+
version "25.1.0"
|
4945
|
+
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-25.1.0.tgz#411d549e1b326b7350b2e97303a64715c28615fd"
|
4946
|
+
integrity sha512-28/u0sqS+42vIfcd1mlcg4ZVDmSUYuNvImP4X2lX5hRMLW+CN0BeiKVD4p+ujKKbSPKd3rg/zuhCF+QBLJ4vag==
|
4628
4947
|
dependencies:
|
4629
|
-
"@jest/types" "^
|
4948
|
+
"@jest/types" "^25.1.0"
|
4630
4949
|
|
4631
4950
|
jest-pnp-resolver@^1.2.1:
|
4632
4951
|
version "1.2.1"
|
4633
4952
|
resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a"
|
4634
4953
|
integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==
|
4635
4954
|
|
4636
|
-
jest-regex-util@^
|
4637
|
-
version "
|
4638
|
-
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-
|
4639
|
-
integrity sha512-
|
4955
|
+
jest-regex-util@^25.1.0:
|
4956
|
+
version "25.1.0"
|
4957
|
+
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.1.0.tgz#efaf75914267741838e01de24da07b2192d16d87"
|
4958
|
+
integrity sha512-9lShaDmDpqwg+xAd73zHydKrBbbrIi08Kk9YryBEBybQFg/lBWR/2BDjjiSE7KIppM9C5+c03XiDaZ+m4Pgs1w==
|
4640
4959
|
|
4641
|
-
jest-resolve-dependencies@^
|
4642
|
-
version "
|
4643
|
-
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-
|
4644
|
-
integrity sha512-
|
4960
|
+
jest-resolve-dependencies@^25.1.0:
|
4961
|
+
version "25.1.0"
|
4962
|
+
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-25.1.0.tgz#8a1789ec64eb6aaa77fd579a1066a783437e70d2"
|
4963
|
+
integrity sha512-Cu/Je38GSsccNy4I2vL12ZnBlD170x2Oh1devzuM9TLH5rrnLW1x51lN8kpZLYTvzx9j+77Y5pqBaTqfdzVzrw==
|
4645
4964
|
dependencies:
|
4646
|
-
"@jest/types" "^
|
4647
|
-
jest-regex-util "^
|
4648
|
-
jest-snapshot "^
|
4965
|
+
"@jest/types" "^25.1.0"
|
4966
|
+
jest-regex-util "^25.1.0"
|
4967
|
+
jest-snapshot "^25.1.0"
|
4649
4968
|
|
4650
|
-
jest-resolve@^
|
4651
|
-
version "
|
4652
|
-
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-
|
4653
|
-
integrity sha512-
|
4969
|
+
jest-resolve@^25.1.0:
|
4970
|
+
version "25.1.0"
|
4971
|
+
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.1.0.tgz#23d8b6a4892362baf2662877c66aa241fa2eaea3"
|
4972
|
+
integrity sha512-XkBQaU1SRCHj2Evz2Lu4Czs+uIgJXWypfO57L7JYccmAXv4slXA6hzNblmcRmf7P3cQ1mE7fL3ABV6jAwk4foQ==
|
4654
4973
|
dependencies:
|
4655
|
-
"@jest/types" "^
|
4974
|
+
"@jest/types" "^25.1.0"
|
4656
4975
|
browser-resolve "^1.11.3"
|
4657
|
-
chalk "^
|
4976
|
+
chalk "^3.0.0"
|
4658
4977
|
jest-pnp-resolver "^1.2.1"
|
4659
4978
|
realpath-native "^1.1.0"
|
4660
4979
|
|
4661
|
-
jest-runner@^
|
4662
|
-
version "
|
4663
|
-
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-
|
4664
|
-
integrity sha512-
|
4665
|
-
dependencies:
|
4666
|
-
"@jest/console" "^
|
4667
|
-
"@jest/environment" "^
|
4668
|
-
"@jest/test-result" "^
|
4669
|
-
"@jest/types" "^
|
4670
|
-
chalk "^
|
4980
|
+
jest-runner@^25.1.0:
|
4981
|
+
version "25.1.0"
|
4982
|
+
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-25.1.0.tgz#fef433a4d42c89ab0a6b6b268e4a4fbe6b26e812"
|
4983
|
+
integrity sha512-su3O5fy0ehwgt+e8Wy7A8CaxxAOCMzL4gUBftSs0Ip32S0epxyZPDov9Znvkl1nhVOJNf4UwAsnqfc3plfQH9w==
|
4984
|
+
dependencies:
|
4985
|
+
"@jest/console" "^25.1.0"
|
4986
|
+
"@jest/environment" "^25.1.0"
|
4987
|
+
"@jest/test-result" "^25.1.0"
|
4988
|
+
"@jest/types" "^25.1.0"
|
4989
|
+
chalk "^3.0.0"
|
4671
4990
|
exit "^0.1.2"
|
4672
|
-
graceful-fs "^4.
|
4673
|
-
jest-config "^
|
4674
|
-
jest-docblock "^
|
4675
|
-
jest-haste-map "^
|
4676
|
-
jest-jasmine2 "^
|
4677
|
-
jest-leak-detector "^
|
4678
|
-
jest-message-util "^
|
4679
|
-
jest-resolve "^
|
4680
|
-
jest-runtime "^
|
4681
|
-
jest-util "^
|
4682
|
-
jest-worker "^
|
4991
|
+
graceful-fs "^4.2.3"
|
4992
|
+
jest-config "^25.1.0"
|
4993
|
+
jest-docblock "^25.1.0"
|
4994
|
+
jest-haste-map "^25.1.0"
|
4995
|
+
jest-jasmine2 "^25.1.0"
|
4996
|
+
jest-leak-detector "^25.1.0"
|
4997
|
+
jest-message-util "^25.1.0"
|
4998
|
+
jest-resolve "^25.1.0"
|
4999
|
+
jest-runtime "^25.1.0"
|
5000
|
+
jest-util "^25.1.0"
|
5001
|
+
jest-worker "^25.1.0"
|
4683
5002
|
source-map-support "^0.5.6"
|
4684
|
-
throat "^
|
4685
|
-
|
4686
|
-
jest-runtime@^
|
4687
|
-
version "
|
4688
|
-
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-
|
4689
|
-
integrity sha512-
|
4690
|
-
dependencies:
|
4691
|
-
"@jest/console" "^
|
4692
|
-
"@jest/environment" "^
|
4693
|
-
"@jest/source-map" "^
|
4694
|
-
"@jest/
|
4695
|
-
"@jest/
|
4696
|
-
"@types
|
4697
|
-
|
5003
|
+
throat "^5.0.0"
|
5004
|
+
|
5005
|
+
jest-runtime@^25.1.0:
|
5006
|
+
version "25.1.0"
|
5007
|
+
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-25.1.0.tgz#02683218f2f95aad0f2ec1c9cdb28c1dc0ec0314"
|
5008
|
+
integrity sha512-mpPYYEdbExKBIBB16ryF6FLZTc1Rbk9Nx0ryIpIMiDDkOeGa0jQOKVI/QeGvVGlunKKm62ywcioeFVzIbK03bA==
|
5009
|
+
dependencies:
|
5010
|
+
"@jest/console" "^25.1.0"
|
5011
|
+
"@jest/environment" "^25.1.0"
|
5012
|
+
"@jest/source-map" "^25.1.0"
|
5013
|
+
"@jest/test-result" "^25.1.0"
|
5014
|
+
"@jest/transform" "^25.1.0"
|
5015
|
+
"@jest/types" "^25.1.0"
|
5016
|
+
"@types/yargs" "^15.0.0"
|
5017
|
+
chalk "^3.0.0"
|
5018
|
+
collect-v8-coverage "^1.0.0"
|
4698
5019
|
exit "^0.1.2"
|
4699
5020
|
glob "^7.1.3"
|
4700
|
-
graceful-fs "^4.
|
4701
|
-
jest-config "^
|
4702
|
-
jest-haste-map "^
|
4703
|
-
jest-message-util "^
|
4704
|
-
jest-mock "^
|
4705
|
-
jest-regex-util "^
|
4706
|
-
jest-resolve "^
|
4707
|
-
jest-snapshot "^
|
4708
|
-
jest-util "^
|
4709
|
-
jest-validate "^
|
5021
|
+
graceful-fs "^4.2.3"
|
5022
|
+
jest-config "^25.1.0"
|
5023
|
+
jest-haste-map "^25.1.0"
|
5024
|
+
jest-message-util "^25.1.0"
|
5025
|
+
jest-mock "^25.1.0"
|
5026
|
+
jest-regex-util "^25.1.0"
|
5027
|
+
jest-resolve "^25.1.0"
|
5028
|
+
jest-snapshot "^25.1.0"
|
5029
|
+
jest-util "^25.1.0"
|
5030
|
+
jest-validate "^25.1.0"
|
4710
5031
|
realpath-native "^1.1.0"
|
4711
|
-
slash "^
|
4712
|
-
strip-bom "^
|
4713
|
-
yargs "^
|
5032
|
+
slash "^3.0.0"
|
5033
|
+
strip-bom "^4.0.0"
|
5034
|
+
yargs "^15.0.0"
|
4714
5035
|
|
4715
|
-
jest-serializer@^
|
4716
|
-
version "
|
4717
|
-
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-
|
4718
|
-
integrity sha512-
|
5036
|
+
jest-serializer@^25.1.0:
|
5037
|
+
version "25.1.0"
|
5038
|
+
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.1.0.tgz#73096ba90e07d19dec4a0c1dd89c355e2f129e5d"
|
5039
|
+
integrity sha512-20Wkq5j7o84kssBwvyuJ7Xhn7hdPeTXndnwIblKDR2/sy1SUm6rWWiG9kSCgJPIfkDScJCIsTtOKdlzfIHOfKA==
|
4719
5040
|
|
4720
|
-
jest-snapshot@^
|
4721
|
-
version "
|
4722
|
-
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-
|
4723
|
-
integrity sha512-
|
5041
|
+
jest-snapshot@^25.1.0:
|
5042
|
+
version "25.1.0"
|
5043
|
+
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.1.0.tgz#d5880bd4b31faea100454608e15f8d77b9d221d9"
|
5044
|
+
integrity sha512-xZ73dFYN8b/+X2hKLXz4VpBZGIAn7muD/DAg+pXtDzDGw3iIV10jM7WiHqhCcpDZfGiKEj7/2HXAEPtHTj0P2A==
|
4724
5045
|
dependencies:
|
4725
5046
|
"@babel/types" "^7.0.0"
|
4726
|
-
"@jest/types" "^
|
4727
|
-
chalk "^
|
4728
|
-
expect "^
|
4729
|
-
jest-diff "^
|
4730
|
-
jest-get-type "^
|
4731
|
-
jest-matcher-utils "^
|
4732
|
-
jest-message-util "^
|
4733
|
-
jest-resolve "^
|
5047
|
+
"@jest/types" "^25.1.0"
|
5048
|
+
chalk "^3.0.0"
|
5049
|
+
expect "^25.1.0"
|
5050
|
+
jest-diff "^25.1.0"
|
5051
|
+
jest-get-type "^25.1.0"
|
5052
|
+
jest-matcher-utils "^25.1.0"
|
5053
|
+
jest-message-util "^25.1.0"
|
5054
|
+
jest-resolve "^25.1.0"
|
4734
5055
|
mkdirp "^0.5.1"
|
4735
5056
|
natural-compare "^1.4.0"
|
4736
|
-
pretty-format "^
|
4737
|
-
semver "^
|
4738
|
-
|
4739
|
-
jest-util@^
|
4740
|
-
version "
|
4741
|
-
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-
|
4742
|
-
integrity sha512-
|
4743
|
-
dependencies:
|
4744
|
-
"@jest/
|
4745
|
-
|
4746
|
-
"@jest/source-map" "^24.9.0"
|
4747
|
-
"@jest/test-result" "^24.9.0"
|
4748
|
-
"@jest/types" "^24.9.0"
|
4749
|
-
callsites "^3.0.0"
|
4750
|
-
chalk "^2.0.1"
|
4751
|
-
graceful-fs "^4.1.15"
|
5057
|
+
pretty-format "^25.1.0"
|
5058
|
+
semver "^7.1.1"
|
5059
|
+
|
5060
|
+
jest-util@^25.1.0:
|
5061
|
+
version "25.1.0"
|
5062
|
+
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.1.0.tgz#7bc56f7b2abd534910e9fa252692f50624c897d9"
|
5063
|
+
integrity sha512-7did6pLQ++87Qsj26Fs/TIwZMUFBXQ+4XXSodRNy3luch2DnRXsSnmpVtxxQ0Yd6WTipGpbhh2IFP1mq6/fQGw==
|
5064
|
+
dependencies:
|
5065
|
+
"@jest/types" "^25.1.0"
|
5066
|
+
chalk "^3.0.0"
|
4752
5067
|
is-ci "^2.0.0"
|
4753
5068
|
mkdirp "^0.5.1"
|
4754
|
-
slash "^2.0.0"
|
4755
|
-
source-map "^0.6.0"
|
4756
5069
|
|
4757
|
-
jest-validate@^
|
4758
|
-
version "
|
4759
|
-
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-
|
4760
|
-
integrity sha512-
|
5070
|
+
jest-validate@^25.1.0:
|
5071
|
+
version "25.1.0"
|
5072
|
+
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-25.1.0.tgz#1469fa19f627bb0a9a98e289f3e9ab6a668c732a"
|
5073
|
+
integrity sha512-kGbZq1f02/zVO2+t1KQGSVoCTERc5XeObLwITqC6BTRH3Adv7NZdYqCpKIZLUgpLXf2yISzQ465qOZpul8abXA==
|
4761
5074
|
dependencies:
|
4762
|
-
"@jest/types" "^
|
5075
|
+
"@jest/types" "^25.1.0"
|
4763
5076
|
camelcase "^5.3.1"
|
4764
|
-
chalk "^
|
4765
|
-
jest-get-type "^
|
5077
|
+
chalk "^3.0.0"
|
5078
|
+
jest-get-type "^25.1.0"
|
4766
5079
|
leven "^3.1.0"
|
4767
|
-
pretty-format "^
|
4768
|
-
|
4769
|
-
jest-watcher@^
|
4770
|
-
version "
|
4771
|
-
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-
|
4772
|
-
integrity sha512
|
4773
|
-
dependencies:
|
4774
|
-
"@jest/test-result" "^24.9.0"
|
4775
|
-
"@jest/types" "^24.9.0"
|
4776
|
-
"@types/yargs" "^13.0.0"
|
4777
|
-
ansi-escapes "^3.0.0"
|
4778
|
-
chalk "^2.0.1"
|
4779
|
-
jest-util "^24.9.0"
|
4780
|
-
string-length "^2.0.0"
|
4781
|
-
|
4782
|
-
jest-worker@^24.6.0, jest-worker@^24.9.0:
|
4783
|
-
version "24.9.0"
|
4784
|
-
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5"
|
4785
|
-
integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
|
5080
|
+
pretty-format "^25.1.0"
|
5081
|
+
|
5082
|
+
jest-watcher@^25.1.0:
|
5083
|
+
version "25.1.0"
|
5084
|
+
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-25.1.0.tgz#97cb4a937f676f64c9fad2d07b824c56808e9806"
|
5085
|
+
integrity sha512-Q9eZ7pyaIr6xfU24OeTg4z1fUqBF/4MP6J801lyQfg7CsnZ/TCzAPvCfckKdL5dlBBEKBeHV0AdyjFZ5eWj4ig==
|
4786
5086
|
dependencies:
|
4787
|
-
|
4788
|
-
|
5087
|
+
"@jest/test-result" "^25.1.0"
|
5088
|
+
"@jest/types" "^25.1.0"
|
5089
|
+
ansi-escapes "^4.2.1"
|
5090
|
+
chalk "^3.0.0"
|
5091
|
+
jest-util "^25.1.0"
|
5092
|
+
string-length "^3.1.0"
|
4789
5093
|
|
4790
5094
|
jest-worker@^25.1.0:
|
4791
5095
|
version "25.1.0"
|
@@ -4795,13 +5099,14 @@ jest-worker@^25.1.0:
|
|
4795
5099
|
merge-stream "^2.0.0"
|
4796
5100
|
supports-color "^7.0.0"
|
4797
5101
|
|
4798
|
-
jest@^
|
4799
|
-
version "
|
4800
|
-
resolved "https://registry.yarnpkg.com/jest/-/jest-
|
4801
|
-
integrity sha512-
|
5102
|
+
jest@^25.1.0:
|
5103
|
+
version "25.1.0"
|
5104
|
+
resolved "https://registry.yarnpkg.com/jest/-/jest-25.1.0.tgz#b85ef1ddba2fdb00d295deebbd13567106d35be9"
|
5105
|
+
integrity sha512-FV6jEruneBhokkt9MQk0WUFoNTwnF76CLXtwNMfsc0um0TlB/LG2yxUd0KqaFjEJ9laQmVWQWS0sG/t2GsuI0w==
|
4802
5106
|
dependencies:
|
4803
|
-
|
4804
|
-
|
5107
|
+
"@jest/core" "^25.1.0"
|
5108
|
+
import-local "^3.0.2"
|
5109
|
+
jest-cli "^25.1.0"
|
4805
5110
|
|
4806
5111
|
js-base64@^2.1.8:
|
4807
5112
|
version "2.5.1"
|
@@ -4826,36 +5131,36 @@ jsbn@~0.1.0:
|
|
4826
5131
|
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
|
4827
5132
|
integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
|
4828
5133
|
|
4829
|
-
jsdom@^
|
4830
|
-
version "
|
4831
|
-
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-
|
4832
|
-
integrity sha512-
|
5134
|
+
jsdom@^15.1.1:
|
5135
|
+
version "15.2.1"
|
5136
|
+
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5"
|
5137
|
+
integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==
|
4833
5138
|
dependencies:
|
4834
5139
|
abab "^2.0.0"
|
4835
|
-
acorn "^
|
4836
|
-
acorn-globals "^4.
|
5140
|
+
acorn "^7.1.0"
|
5141
|
+
acorn-globals "^4.3.2"
|
4837
5142
|
array-equal "^1.0.0"
|
4838
|
-
cssom "
|
4839
|
-
cssstyle "^
|
4840
|
-
data-urls "^1.
|
5143
|
+
cssom "^0.4.1"
|
5144
|
+
cssstyle "^2.0.0"
|
5145
|
+
data-urls "^1.1.0"
|
4841
5146
|
domexception "^1.0.1"
|
4842
|
-
escodegen "^1.
|
5147
|
+
escodegen "^1.11.1"
|
4843
5148
|
html-encoding-sniffer "^1.0.2"
|
4844
|
-
|
4845
|
-
|
4846
|
-
parse5 "4.0.0"
|
5149
|
+
nwsapi "^2.2.0"
|
5150
|
+
parse5 "5.1.0"
|
4847
5151
|
pn "^1.1.0"
|
4848
|
-
request "^2.
|
4849
|
-
request-promise-native "^1.0.
|
4850
|
-
|
5152
|
+
request "^2.88.0"
|
5153
|
+
request-promise-native "^1.0.7"
|
5154
|
+
saxes "^3.1.9"
|
4851
5155
|
symbol-tree "^3.2.2"
|
4852
|
-
tough-cookie "^
|
5156
|
+
tough-cookie "^3.0.1"
|
4853
5157
|
w3c-hr-time "^1.0.1"
|
5158
|
+
w3c-xmlserializer "^1.1.2"
|
4854
5159
|
webidl-conversions "^4.0.2"
|
4855
|
-
whatwg-encoding "^1.0.
|
4856
|
-
whatwg-mimetype "^2.
|
4857
|
-
whatwg-url "^
|
4858
|
-
ws "^
|
5160
|
+
whatwg-encoding "^1.0.5"
|
5161
|
+
whatwg-mimetype "^2.3.0"
|
5162
|
+
whatwg-url "^7.0.0"
|
5163
|
+
ws "^7.0.0"
|
4859
5164
|
xml-name-validator "^3.0.0"
|
4860
5165
|
|
4861
5166
|
jsesc@^2.5.1:
|
@@ -4907,6 +5212,13 @@ json5@^2.1.0:
|
|
4907
5212
|
dependencies:
|
4908
5213
|
minimist "^1.2.0"
|
4909
5214
|
|
5215
|
+
json5@^2.1.2:
|
5216
|
+
version "2.1.2"
|
5217
|
+
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.2.tgz#43ef1f0af9835dd624751a6b7fa48874fb2d608e"
|
5218
|
+
integrity sha512-MoUOQ4WdiN3yxhm7NEVJSJrieAo5hNSLQ5sj05OTRHPL9HOBy8u4Bu88jsC1jvqAdN+E1bJmsUcZH+1HQxliqQ==
|
5219
|
+
dependencies:
|
5220
|
+
minimist "^1.2.5"
|
5221
|
+
|
4910
5222
|
jsprim@^1.2.2:
|
4911
5223
|
version "1.4.1"
|
4912
5224
|
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
|
@@ -4976,11 +5288,6 @@ lcid@^2.0.0:
|
|
4976
5288
|
dependencies:
|
4977
5289
|
invert-kv "^2.0.0"
|
4978
5290
|
|
4979
|
-
left-pad@^1.3.0:
|
4980
|
-
version "1.3.0"
|
4981
|
-
resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
|
4982
|
-
integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==
|
4983
|
-
|
4984
5291
|
leven@^3.1.0:
|
4985
5292
|
version "3.1.0"
|
4986
5293
|
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
@@ -5027,22 +5334,12 @@ load-json-file@^2.0.0:
|
|
5027
5334
|
pify "^2.0.0"
|
5028
5335
|
strip-bom "^3.0.0"
|
5029
5336
|
|
5030
|
-
load-json-file@^4.0.0:
|
5031
|
-
version "4.0.0"
|
5032
|
-
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
|
5033
|
-
integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
|
5034
|
-
dependencies:
|
5035
|
-
graceful-fs "^4.1.2"
|
5036
|
-
parse-json "^4.0.0"
|
5037
|
-
pify "^3.0.0"
|
5038
|
-
strip-bom "^3.0.0"
|
5039
|
-
|
5040
5337
|
loader-runner@^2.4.0:
|
5041
5338
|
version "2.4.0"
|
5042
5339
|
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
|
5043
5340
|
integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
|
5044
5341
|
|
5045
|
-
loader-utils@1.2.3, loader-utils@^1.
|
5342
|
+
loader-utils@1.2.3, loader-utils@^1.1.0, loader-utils@^1.2.3:
|
5046
5343
|
version "1.2.3"
|
5047
5344
|
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
|
5048
5345
|
integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
|
@@ -5051,6 +5348,24 @@ loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.
|
|
5051
5348
|
emojis-list "^2.0.0"
|
5052
5349
|
json5 "^1.0.1"
|
5053
5350
|
|
5351
|
+
loader-utils@^1.4.0:
|
5352
|
+
version "1.4.0"
|
5353
|
+
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
|
5354
|
+
integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
|
5355
|
+
dependencies:
|
5356
|
+
big.js "^5.2.2"
|
5357
|
+
emojis-list "^3.0.0"
|
5358
|
+
json5 "^1.0.1"
|
5359
|
+
|
5360
|
+
loader-utils@^2.0.0:
|
5361
|
+
version "2.0.0"
|
5362
|
+
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
|
5363
|
+
integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
|
5364
|
+
dependencies:
|
5365
|
+
big.js "^5.2.2"
|
5366
|
+
emojis-list "^3.0.0"
|
5367
|
+
json5 "^2.1.2"
|
5368
|
+
|
5054
5369
|
locate-path@^2.0.0:
|
5055
5370
|
version "2.0.0"
|
5056
5371
|
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
|
@@ -5124,6 +5439,13 @@ lodash@^4.0.0, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5
|
|
5124
5439
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
5125
5440
|
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
5126
5441
|
|
5442
|
+
lolex@^5.0.0:
|
5443
|
+
version "5.1.2"
|
5444
|
+
resolved "https://registry.yarnpkg.com/lolex/-/lolex-5.1.2.tgz#953694d098ce7c07bc5ed6d0e42bc6c0c6d5a367"
|
5445
|
+
integrity sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==
|
5446
|
+
dependencies:
|
5447
|
+
"@sinonjs/commons" "^1.7.0"
|
5448
|
+
|
5127
5449
|
loose-envify@^1.0.0, loose-envify@^1.4.0:
|
5128
5450
|
version "1.4.0"
|
5129
5451
|
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
@@ -5154,7 +5476,7 @@ lru-cache@^5.1.1:
|
|
5154
5476
|
dependencies:
|
5155
5477
|
yallist "^3.0.2"
|
5156
5478
|
|
5157
|
-
make-dir@^2.0.0
|
5479
|
+
make-dir@^2.0.0:
|
5158
5480
|
version "2.1.0"
|
5159
5481
|
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
|
5160
5482
|
integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
|
@@ -5176,11 +5498,6 @@ makeerror@1.0.x:
|
|
5176
5498
|
dependencies:
|
5177
5499
|
tmpl "1.0.x"
|
5178
5500
|
|
5179
|
-
mamacro@^0.0.3:
|
5180
|
-
version "0.0.3"
|
5181
|
-
resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4"
|
5182
|
-
integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==
|
5183
|
-
|
5184
5501
|
map-age-cleaner@^0.1.1:
|
5185
5502
|
version "0.1.3"
|
5186
5503
|
resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
|
@@ -5284,6 +5601,14 @@ micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4:
|
|
5284
5601
|
snapdragon "^0.8.1"
|
5285
5602
|
to-regex "^3.0.2"
|
5286
5603
|
|
5604
|
+
micromatch@^4.0.2:
|
5605
|
+
version "4.0.2"
|
5606
|
+
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
|
5607
|
+
integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
|
5608
|
+
dependencies:
|
5609
|
+
braces "^3.0.1"
|
5610
|
+
picomatch "^2.0.5"
|
5611
|
+
|
5287
5612
|
miller-rabin@^4.0.0:
|
5288
5613
|
version "4.0.1"
|
5289
5614
|
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
|
@@ -5346,10 +5671,10 @@ minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0:
|
|
5346
5671
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
5347
5672
|
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
|
5348
5673
|
|
5349
|
-
minimist
|
5350
|
-
version "
|
5351
|
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-
|
5352
|
-
integrity
|
5674
|
+
minimist@^1.2.5:
|
5675
|
+
version "1.2.5"
|
5676
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
5677
|
+
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
|
5353
5678
|
|
5354
5679
|
minipass-collect@^1.0.2:
|
5355
5680
|
version "1.0.2"
|
@@ -5425,6 +5750,13 @@ mixin-deep@^1.2.0:
|
|
5425
5750
|
dependencies:
|
5426
5751
|
minimist "0.0.8"
|
5427
5752
|
|
5753
|
+
mkdirp@^0.5.3:
|
5754
|
+
version "0.5.4"
|
5755
|
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.4.tgz#fd01504a6797ec5c9be81ff43d204961ed64a512"
|
5756
|
+
integrity sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==
|
5757
|
+
dependencies:
|
5758
|
+
minimist "^1.2.5"
|
5759
|
+
|
5428
5760
|
move-concurrently@^1.0.1:
|
5429
5761
|
version "1.0.1"
|
5430
5762
|
resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
|
@@ -5488,7 +5820,7 @@ needle@^2.2.1:
|
|
5488
5820
|
iconv-lite "^0.4.4"
|
5489
5821
|
sax "^1.2.4"
|
5490
5822
|
|
5491
|
-
neo-async@^2.5.0, neo-async@^2.6.
|
5823
|
+
neo-async@^2.5.0, neo-async@^2.6.1:
|
5492
5824
|
version "2.6.1"
|
5493
5825
|
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
|
5494
5826
|
integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
|
@@ -5555,16 +5887,16 @@ node-modules-regexp@^1.0.0:
|
|
5555
5887
|
resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
|
5556
5888
|
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
|
5557
5889
|
|
5558
|
-
node-notifier@^
|
5559
|
-
version "
|
5560
|
-
resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-
|
5561
|
-
integrity sha512-
|
5890
|
+
node-notifier@^6.0.0:
|
5891
|
+
version "6.0.0"
|
5892
|
+
resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-6.0.0.tgz#cea319e06baa16deec8ce5cd7f133c4a46b68e12"
|
5893
|
+
integrity sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==
|
5562
5894
|
dependencies:
|
5563
5895
|
growly "^1.3.0"
|
5564
|
-
is-wsl "^1.1
|
5565
|
-
semver "^
|
5896
|
+
is-wsl "^2.1.1"
|
5897
|
+
semver "^6.3.0"
|
5566
5898
|
shellwords "^0.1.1"
|
5567
|
-
which "^1.3.
|
5899
|
+
which "^1.3.1"
|
5568
5900
|
|
5569
5901
|
node-pre-gyp@^0.12.0:
|
5570
5902
|
version "0.12.0"
|
@@ -5710,6 +6042,13 @@ npm-run-path@^2.0.0:
|
|
5710
6042
|
dependencies:
|
5711
6043
|
path-key "^2.0.0"
|
5712
6044
|
|
6045
|
+
npm-run-path@^4.0.0:
|
6046
|
+
version "4.0.1"
|
6047
|
+
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
|
6048
|
+
integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
|
6049
|
+
dependencies:
|
6050
|
+
path-key "^3.0.0"
|
6051
|
+
|
5713
6052
|
"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2:
|
5714
6053
|
version "4.1.2"
|
5715
6054
|
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
@@ -5737,7 +6076,7 @@ number-is-nan@^1.0.0:
|
|
5737
6076
|
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
|
5738
6077
|
integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
|
5739
6078
|
|
5740
|
-
nwsapi@^2.0
|
6079
|
+
nwsapi@^2.2.0:
|
5741
6080
|
version "2.2.0"
|
5742
6081
|
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
|
5743
6082
|
integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
|
@@ -5788,17 +6127,17 @@ object.assign@^4.1.0:
|
|
5788
6127
|
has-symbols "^1.0.0"
|
5789
6128
|
object-keys "^1.0.11"
|
5790
6129
|
|
5791
|
-
object.entries@^1.1.
|
5792
|
-
version "1.1.
|
5793
|
-
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.
|
5794
|
-
integrity sha512-
|
6130
|
+
object.entries@^1.1.1:
|
6131
|
+
version "1.1.1"
|
6132
|
+
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b"
|
6133
|
+
integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ==
|
5795
6134
|
dependencies:
|
5796
6135
|
define-properties "^1.1.3"
|
5797
|
-
es-abstract "^1.
|
6136
|
+
es-abstract "^1.17.0-next.1"
|
5798
6137
|
function-bind "^1.1.1"
|
5799
6138
|
has "^1.0.3"
|
5800
6139
|
|
5801
|
-
object.fromentries@^2.0.
|
6140
|
+
object.fromentries@^2.0.2:
|
5802
6141
|
version "2.0.2"
|
5803
6142
|
resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9"
|
5804
6143
|
integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==
|
@@ -5833,6 +6172,16 @@ object.values@^1.1.0:
|
|
5833
6172
|
function-bind "^1.1.1"
|
5834
6173
|
has "^1.0.3"
|
5835
6174
|
|
6175
|
+
object.values@^1.1.1:
|
6176
|
+
version "1.1.1"
|
6177
|
+
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
|
6178
|
+
integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
|
6179
|
+
dependencies:
|
6180
|
+
define-properties "^1.1.3"
|
6181
|
+
es-abstract "^1.17.0-next.1"
|
6182
|
+
function-bind "^1.1.1"
|
6183
|
+
has "^1.0.3"
|
6184
|
+
|
5836
6185
|
once@^1.3.0, once@^1.3.1, once@^1.4.0:
|
5837
6186
|
version "1.4.0"
|
5838
6187
|
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
@@ -5847,14 +6196,6 @@ onetime@^5.1.0:
|
|
5847
6196
|
dependencies:
|
5848
6197
|
mimic-fn "^2.1.0"
|
5849
6198
|
|
5850
|
-
optimist@^0.6.1:
|
5851
|
-
version "0.6.1"
|
5852
|
-
resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
|
5853
|
-
integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY=
|
5854
|
-
dependencies:
|
5855
|
-
minimist "~0.0.1"
|
5856
|
-
wordwrap "~0.0.2"
|
5857
|
-
|
5858
6199
|
optimize-css-assets-webpack-plugin@^5.0.3:
|
5859
6200
|
version "5.0.3"
|
5860
6201
|
resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz#e2f1d4d94ad8c0af8967ebd7cf138dcb1ef14572"
|
@@ -5919,18 +6260,21 @@ p-defer@^1.0.0:
|
|
5919
6260
|
resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
|
5920
6261
|
integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
|
5921
6262
|
|
5922
|
-
p-each-series@^1.0
|
5923
|
-
version "1.0
|
5924
|
-
resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.
|
5925
|
-
integrity
|
5926
|
-
dependencies:
|
5927
|
-
p-reduce "^1.0.0"
|
6263
|
+
p-each-series@^2.1.0:
|
6264
|
+
version "2.1.0"
|
6265
|
+
resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48"
|
6266
|
+
integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==
|
5928
6267
|
|
5929
6268
|
p-finally@^1.0.0:
|
5930
6269
|
version "1.0.0"
|
5931
6270
|
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
|
5932
6271
|
integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
|
5933
6272
|
|
6273
|
+
p-finally@^2.0.0:
|
6274
|
+
version "2.0.1"
|
6275
|
+
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561"
|
6276
|
+
integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==
|
6277
|
+
|
5934
6278
|
p-is-promise@^2.0.0:
|
5935
6279
|
version "2.1.0"
|
5936
6280
|
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e"
|
@@ -5985,11 +6329,6 @@ p-map@^3.0.0:
|
|
5985
6329
|
dependencies:
|
5986
6330
|
aggregate-error "^3.0.0"
|
5987
6331
|
|
5988
|
-
p-reduce@^1.0.0:
|
5989
|
-
version "1.0.0"
|
5990
|
-
resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
|
5991
|
-
integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=
|
5992
|
-
|
5993
6332
|
p-try@^1.0.0:
|
5994
6333
|
version "1.0.0"
|
5995
6334
|
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
|
@@ -6063,10 +6402,10 @@ parse-passwd@^1.0.0:
|
|
6063
6402
|
resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
|
6064
6403
|
integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
|
6065
6404
|
|
6066
|
-
parse5@
|
6067
|
-
version "
|
6068
|
-
resolved "https://registry.yarnpkg.com/parse5/-/parse5-
|
6069
|
-
integrity sha512-
|
6405
|
+
parse5@5.1.0:
|
6406
|
+
version "5.1.0"
|
6407
|
+
resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2"
|
6408
|
+
integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==
|
6070
6409
|
|
6071
6410
|
pascalcase@^0.1.1:
|
6072
6411
|
version "0.1.1"
|
@@ -6115,6 +6454,11 @@ path-key@^2.0.0, path-key@^2.0.1:
|
|
6115
6454
|
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
|
6116
6455
|
integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
|
6117
6456
|
|
6457
|
+
path-key@^3.0.0, path-key@^3.1.0:
|
6458
|
+
version "3.1.1"
|
6459
|
+
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
|
6460
|
+
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
|
6461
|
+
|
6118
6462
|
path-parse@^1.0.6:
|
6119
6463
|
version "1.0.6"
|
6120
6464
|
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
|
@@ -6136,13 +6480,6 @@ path-type@^2.0.0:
|
|
6136
6480
|
dependencies:
|
6137
6481
|
pify "^2.0.0"
|
6138
6482
|
|
6139
|
-
path-type@^3.0.0:
|
6140
|
-
version "3.0.0"
|
6141
|
-
resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
|
6142
|
-
integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
|
6143
|
-
dependencies:
|
6144
|
-
pify "^3.0.0"
|
6145
|
-
|
6146
6483
|
path-type@^4.0.0:
|
6147
6484
|
version "4.0.0"
|
6148
6485
|
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
|
@@ -6164,16 +6501,16 @@ performance-now@^2.1.0:
|
|
6164
6501
|
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
|
6165
6502
|
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
|
6166
6503
|
|
6504
|
+
picomatch@^2.0.4, picomatch@^2.0.5:
|
6505
|
+
version "2.2.2"
|
6506
|
+
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
|
6507
|
+
integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
|
6508
|
+
|
6167
6509
|
pify@^2.0.0, pify@^2.3.0:
|
6168
6510
|
version "2.3.0"
|
6169
6511
|
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
6170
6512
|
integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
|
6171
6513
|
|
6172
|
-
pify@^3.0.0:
|
6173
|
-
version "3.0.0"
|
6174
|
-
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
|
6175
|
-
integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
|
6176
|
-
|
6177
6514
|
pify@^4.0.1:
|
6178
6515
|
version "4.0.1"
|
6179
6516
|
resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
|
@@ -6212,7 +6549,7 @@ pkg-dir@^3.0.0:
|
|
6212
6549
|
dependencies:
|
6213
6550
|
find-up "^3.0.0"
|
6214
6551
|
|
6215
|
-
pkg-dir@^4.1.0:
|
6552
|
+
pkg-dir@^4.1.0, pkg-dir@^4.2.0:
|
6216
6553
|
version "4.2.0"
|
6217
6554
|
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
|
6218
6555
|
integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
|
@@ -6231,12 +6568,12 @@ pn@^1.1.0:
|
|
6231
6568
|
resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
|
6232
6569
|
integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==
|
6233
6570
|
|
6234
|
-
pnp-webpack-plugin@^1.
|
6235
|
-
version "1.
|
6236
|
-
resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.
|
6237
|
-
integrity sha512-
|
6571
|
+
pnp-webpack-plugin@^1.6.4:
|
6572
|
+
version "1.6.4"
|
6573
|
+
resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149"
|
6574
|
+
integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==
|
6238
6575
|
dependencies:
|
6239
|
-
ts-pnp "^1.1.
|
6576
|
+
ts-pnp "^1.1.6"
|
6240
6577
|
|
6241
6578
|
posix-character-classes@^0.1.0:
|
6242
6579
|
version "0.1.1"
|
@@ -6397,12 +6734,12 @@ postcss-env-function@^2.0.2:
|
|
6397
6734
|
postcss "^7.0.2"
|
6398
6735
|
postcss-values-parser "^2.0.0"
|
6399
6736
|
|
6400
|
-
postcss-flexbugs-fixes@^4.
|
6401
|
-
version "4.
|
6402
|
-
resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.
|
6403
|
-
integrity sha512-
|
6737
|
+
postcss-flexbugs-fixes@^4.2.0:
|
6738
|
+
version "4.2.0"
|
6739
|
+
resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.0.tgz#662b3dcb6354638b9213a55eed8913bcdc8d004a"
|
6740
|
+
integrity sha512-QRE0n3hpkxxS/OGvzOa+PDuy4mh/Jg4o9ui22/ko5iGYOG3M5dfJabjnAZjTdh2G9F85c7Hv8hWcEDEKW/xceQ==
|
6404
6741
|
dependencies:
|
6405
|
-
postcss "^7.0.
|
6742
|
+
postcss "^7.0.26"
|
6406
6743
|
|
6407
6744
|
postcss-focus-visible@^4.0.0:
|
6408
6745
|
version "4.0.0"
|
@@ -6791,12 +7128,12 @@ postcss-replace-overflow-wrap@^3.0.0:
|
|
6791
7128
|
dependencies:
|
6792
7129
|
postcss "^7.0.2"
|
6793
7130
|
|
6794
|
-
postcss-safe-parser@^4.0.
|
6795
|
-
version "4.0.
|
6796
|
-
resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.
|
6797
|
-
integrity sha512-
|
7131
|
+
postcss-safe-parser@^4.0.2:
|
7132
|
+
version "4.0.2"
|
7133
|
+
resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96"
|
7134
|
+
integrity sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g==
|
6798
7135
|
dependencies:
|
6799
|
-
postcss "^7.0.
|
7136
|
+
postcss "^7.0.26"
|
6800
7137
|
|
6801
7138
|
postcss-selector-matches@^4.0.0:
|
6802
7139
|
version "4.0.0"
|
@@ -6897,6 +7234,15 @@ postcss@^7.0.23:
|
|
6897
7234
|
source-map "^0.6.1"
|
6898
7235
|
supports-color "^6.1.0"
|
6899
7236
|
|
7237
|
+
postcss@^7.0.26:
|
7238
|
+
version "7.0.27"
|
7239
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9"
|
7240
|
+
integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==
|
7241
|
+
dependencies:
|
7242
|
+
chalk "^2.4.2"
|
7243
|
+
source-map "^0.6.1"
|
7244
|
+
supports-color "^6.1.0"
|
7245
|
+
|
6900
7246
|
prelude-ls@~1.1.2:
|
6901
7247
|
version "1.1.2"
|
6902
7248
|
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
@@ -6907,15 +7253,15 @@ prepend-http@^1.0.0:
|
|
6907
7253
|
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
|
6908
7254
|
integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
|
6909
7255
|
|
6910
|
-
pretty-format@^
|
6911
|
-
version "
|
6912
|
-
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-
|
6913
|
-
integrity sha512-
|
7256
|
+
pretty-format@^25.1.0:
|
7257
|
+
version "25.1.0"
|
7258
|
+
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.1.0.tgz#ed869bdaec1356fc5ae45de045e2c8ec7b07b0c8"
|
7259
|
+
integrity sha512-46zLRSGLd02Rp+Lhad9zzuNZ+swunitn8zIpfD2B4OPCRLXbM87RJT2aBLBWYOznNUML/2l/ReMyWNC80PJBUQ==
|
6914
7260
|
dependencies:
|
6915
|
-
"@jest/types" "^
|
6916
|
-
ansi-regex "^
|
6917
|
-
ansi-styles "^
|
6918
|
-
react-is "^16.
|
7261
|
+
"@jest/types" "^25.1.0"
|
7262
|
+
ansi-regex "^5.0.0"
|
7263
|
+
ansi-styles "^4.0.0"
|
7264
|
+
react-is "^16.12.0"
|
6919
7265
|
|
6920
7266
|
private@^0.1.8:
|
6921
7267
|
version "0.1.8"
|
@@ -7079,7 +7425,12 @@ rc@^1.2.7:
|
|
7079
7425
|
minimist "^1.2.0"
|
7080
7426
|
strip-json-comments "~2.0.1"
|
7081
7427
|
|
7082
|
-
react-is@^16.
|
7428
|
+
react-is@^16.12.0:
|
7429
|
+
version "16.13.1"
|
7430
|
+
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
|
7431
|
+
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
|
7432
|
+
|
7433
|
+
react-is@^16.8.1:
|
7083
7434
|
version "16.11.0"
|
7084
7435
|
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa"
|
7085
7436
|
integrity sha512-gbBVYR2p8mnriqAwWx9LbuUrShnAuSCNnuPGyc7GJrMVQtPDAh8iLpv7FRuMPFb56KkaVZIYSz1PrjI9q0QPCw==
|
@@ -7107,14 +7458,6 @@ read-pkg-up@^2.0.0:
|
|
7107
7458
|
find-up "^2.0.0"
|
7108
7459
|
read-pkg "^2.0.0"
|
7109
7460
|
|
7110
|
-
read-pkg-up@^4.0.0:
|
7111
|
-
version "4.0.0"
|
7112
|
-
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978"
|
7113
|
-
integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==
|
7114
|
-
dependencies:
|
7115
|
-
find-up "^3.0.0"
|
7116
|
-
read-pkg "^3.0.0"
|
7117
|
-
|
7118
7461
|
read-pkg@^1.0.0:
|
7119
7462
|
version "1.1.0"
|
7120
7463
|
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
|
@@ -7133,15 +7476,6 @@ read-pkg@^2.0.0:
|
|
7133
7476
|
normalize-package-data "^2.3.2"
|
7134
7477
|
path-type "^2.0.0"
|
7135
7478
|
|
7136
|
-
read-pkg@^3.0.0:
|
7137
|
-
version "3.0.0"
|
7138
|
-
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
|
7139
|
-
integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
|
7140
|
-
dependencies:
|
7141
|
-
load-json-file "^4.0.0"
|
7142
|
-
normalize-package-data "^2.3.2"
|
7143
|
-
path-type "^3.0.0"
|
7144
|
-
|
7145
7479
|
"readable-stream@1 || 2", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.3.3, readable-stream@^2.3.6:
|
7146
7480
|
version "2.3.6"
|
7147
7481
|
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
|
@@ -7199,17 +7533,24 @@ regenerate-unicode-properties@^8.1.0:
|
|
7199
7533
|
dependencies:
|
7200
7534
|
regenerate "^1.4.0"
|
7201
7535
|
|
7536
|
+
regenerate-unicode-properties@^8.2.0:
|
7537
|
+
version "8.2.0"
|
7538
|
+
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
|
7539
|
+
integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
|
7540
|
+
dependencies:
|
7541
|
+
regenerate "^1.4.0"
|
7542
|
+
|
7202
7543
|
regenerate@^1.4.0:
|
7203
7544
|
version "1.4.0"
|
7204
7545
|
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
|
7205
7546
|
integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
|
7206
7547
|
|
7207
|
-
regenerator-runtime@^0.13.2
|
7548
|
+
regenerator-runtime@^0.13.2:
|
7208
7549
|
version "0.13.3"
|
7209
7550
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"
|
7210
7551
|
integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==
|
7211
7552
|
|
7212
|
-
regenerator-runtime@^0.13.4:
|
7553
|
+
regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.5:
|
7213
7554
|
version "0.13.5"
|
7214
7555
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
|
7215
7556
|
integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
|
@@ -7230,6 +7571,14 @@ regex-not@^1.0.0, regex-not@^1.0.2:
|
|
7230
7571
|
extend-shallow "^3.0.2"
|
7231
7572
|
safe-regex "^1.1.0"
|
7232
7573
|
|
7574
|
+
regexp.prototype.flags@^1.3.0:
|
7575
|
+
version "1.3.0"
|
7576
|
+
resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75"
|
7577
|
+
integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==
|
7578
|
+
dependencies:
|
7579
|
+
define-properties "^1.1.3"
|
7580
|
+
es-abstract "^1.17.0-next.1"
|
7581
|
+
|
7233
7582
|
regexpp@^2.0.1:
|
7234
7583
|
version "2.0.1"
|
7235
7584
|
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
|
@@ -7247,7 +7596,19 @@ regexpu-core@^4.6.0:
|
|
7247
7596
|
unicode-match-property-ecmascript "^1.0.4"
|
7248
7597
|
unicode-match-property-value-ecmascript "^1.1.0"
|
7249
7598
|
|
7250
|
-
|
7599
|
+
regexpu-core@^4.7.0:
|
7600
|
+
version "4.7.0"
|
7601
|
+
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938"
|
7602
|
+
integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==
|
7603
|
+
dependencies:
|
7604
|
+
regenerate "^1.4.0"
|
7605
|
+
regenerate-unicode-properties "^8.2.0"
|
7606
|
+
regjsgen "^0.5.1"
|
7607
|
+
regjsparser "^0.6.4"
|
7608
|
+
unicode-match-property-ecmascript "^1.0.4"
|
7609
|
+
unicode-match-property-value-ecmascript "^1.2.0"
|
7610
|
+
|
7611
|
+
regjsgen@^0.5.0, regjsgen@^0.5.1:
|
7251
7612
|
version "0.5.1"
|
7252
7613
|
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
|
7253
7614
|
integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
|
@@ -7259,6 +7620,13 @@ regjsparser@^0.6.0:
|
|
7259
7620
|
dependencies:
|
7260
7621
|
jsesc "~0.5.0"
|
7261
7622
|
|
7623
|
+
regjsparser@^0.6.4:
|
7624
|
+
version "0.6.4"
|
7625
|
+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
|
7626
|
+
integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==
|
7627
|
+
dependencies:
|
7628
|
+
jsesc "~0.5.0"
|
7629
|
+
|
7262
7630
|
remove-trailing-separator@^1.0.1:
|
7263
7631
|
version "1.1.0"
|
7264
7632
|
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
|
@@ -7288,7 +7656,7 @@ request-promise-core@1.1.3:
|
|
7288
7656
|
dependencies:
|
7289
7657
|
lodash "^4.17.15"
|
7290
7658
|
|
7291
|
-
request-promise-native@^1.0.
|
7659
|
+
request-promise-native@^1.0.7:
|
7292
7660
|
version "1.0.8"
|
7293
7661
|
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36"
|
7294
7662
|
integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==
|
@@ -7345,6 +7713,13 @@ resolve-cwd@^2.0.0:
|
|
7345
7713
|
dependencies:
|
7346
7714
|
resolve-from "^3.0.0"
|
7347
7715
|
|
7716
|
+
resolve-cwd@^3.0.0:
|
7717
|
+
version "3.0.0"
|
7718
|
+
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
|
7719
|
+
integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
|
7720
|
+
dependencies:
|
7721
|
+
resolve-from "^5.0.0"
|
7722
|
+
|
7348
7723
|
resolve-dir@^1.0.0, resolve-dir@^1.0.1:
|
7349
7724
|
version "1.0.1"
|
7350
7725
|
resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43"
|
@@ -7363,6 +7738,11 @@ resolve-from@^4.0.0:
|
|
7363
7738
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
|
7364
7739
|
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
|
7365
7740
|
|
7741
|
+
resolve-from@^5.0.0:
|
7742
|
+
version "5.0.0"
|
7743
|
+
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
|
7744
|
+
integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
|
7745
|
+
|
7366
7746
|
resolve-url@^0.2.1:
|
7367
7747
|
version "0.2.1"
|
7368
7748
|
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
@@ -7380,10 +7760,10 @@ resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.5.0
|
|
7380
7760
|
dependencies:
|
7381
7761
|
path-parse "^1.0.6"
|
7382
7762
|
|
7383
|
-
resolve@^1.
|
7384
|
-
version "1.
|
7385
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
7386
|
-
integrity sha512-
|
7763
|
+
resolve@^1.15.1:
|
7764
|
+
version "1.15.1"
|
7765
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"
|
7766
|
+
integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==
|
7387
7767
|
dependencies:
|
7388
7768
|
path-parse "^1.0.6"
|
7389
7769
|
|
@@ -7424,6 +7804,13 @@ rimraf@2.6.3:
|
|
7424
7804
|
dependencies:
|
7425
7805
|
glob "^7.1.3"
|
7426
7806
|
|
7807
|
+
rimraf@^3.0.0:
|
7808
|
+
version "3.0.2"
|
7809
|
+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
|
7810
|
+
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
|
7811
|
+
dependencies:
|
7812
|
+
glob "^7.1.3"
|
7813
|
+
|
7427
7814
|
ripemd160@^2.0.0, ripemd160@^2.0.1:
|
7428
7815
|
version "2.0.2"
|
7429
7816
|
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
|
@@ -7505,15 +7892,15 @@ sass-graph@^2.2.4:
|
|
7505
7892
|
scss-tokenizer "^0.2.3"
|
7506
7893
|
yargs "^7.0.0"
|
7507
7894
|
|
7508
|
-
sass-loader@^
|
7509
|
-
version "
|
7510
|
-
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-
|
7511
|
-
integrity sha512-
|
7895
|
+
sass-loader@^8.0.2:
|
7896
|
+
version "8.0.2"
|
7897
|
+
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-8.0.2.tgz#debecd8c3ce243c76454f2e8290482150380090d"
|
7898
|
+
integrity sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==
|
7512
7899
|
dependencies:
|
7513
7900
|
clone-deep "^4.0.1"
|
7514
|
-
loader-utils "^1.
|
7515
|
-
neo-async "^2.
|
7516
|
-
|
7901
|
+
loader-utils "^1.2.3"
|
7902
|
+
neo-async "^2.6.1"
|
7903
|
+
schema-utils "^2.6.1"
|
7517
7904
|
semver "^6.3.0"
|
7518
7905
|
|
7519
7906
|
sax@^1.2.4, sax@~1.2.4:
|
@@ -7521,6 +7908,13 @@ sax@^1.2.4, sax@~1.2.4:
|
|
7521
7908
|
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
7522
7909
|
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
7523
7910
|
|
7911
|
+
saxes@^3.1.9:
|
7912
|
+
version "3.1.11"
|
7913
|
+
resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b"
|
7914
|
+
integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==
|
7915
|
+
dependencies:
|
7916
|
+
xmlchars "^2.1.1"
|
7917
|
+
|
7524
7918
|
schema-utils@^1.0.0:
|
7525
7919
|
version "1.0.0"
|
7526
7920
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
|
@@ -7530,15 +7924,7 @@ schema-utils@^1.0.0:
|
|
7530
7924
|
ajv-errors "^1.0.0"
|
7531
7925
|
ajv-keywords "^3.1.0"
|
7532
7926
|
|
7533
|
-
schema-utils@^2.0.1:
|
7534
|
-
version "2.5.0"
|
7535
|
-
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.5.0.tgz#8f254f618d402cc80257486213c8970edfd7c22f"
|
7536
|
-
integrity sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ==
|
7537
|
-
dependencies:
|
7538
|
-
ajv "^6.10.2"
|
7539
|
-
ajv-keywords "^3.4.1"
|
7540
|
-
|
7541
|
-
schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1:
|
7927
|
+
schema-utils@^2.6.0, schema-utils@^2.6.1:
|
7542
7928
|
version "2.6.1"
|
7543
7929
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.1.tgz#eb78f0b945c7bcfa2082b3565e8db3548011dc4f"
|
7544
7930
|
integrity sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==
|
@@ -7554,6 +7940,14 @@ schema-utils@^2.6.4:
|
|
7554
7940
|
ajv "^6.10.2"
|
7555
7941
|
ajv-keywords "^3.4.1"
|
7556
7942
|
|
7943
|
+
schema-utils@^2.6.5:
|
7944
|
+
version "2.6.5"
|
7945
|
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.5.tgz#c758f0a7e624263073d396e29cd40aa101152d8a"
|
7946
|
+
integrity sha512-5KXuwKziQrTVHh8j/Uxz+QUbxkaLW9X/86NBlx/gnKgtsZA2GIVMUn17qWhRFwF8jdYb3Dig5hRO/W5mZqy6SQ==
|
7947
|
+
dependencies:
|
7948
|
+
ajv "^6.12.0"
|
7949
|
+
ajv-keywords "^3.4.1"
|
7950
|
+
|
7557
7951
|
scss-tokenizer@^0.2.3:
|
7558
7952
|
version "0.2.3"
|
7559
7953
|
resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1"
|
@@ -7572,11 +7966,16 @@ semver@7.0.0:
|
|
7572
7966
|
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
7573
7967
|
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
|
7574
7968
|
|
7575
|
-
semver@^6.0.0, semver@^6.1.2, semver@^6.
|
7969
|
+
semver@^6.0.0, semver@^6.1.2, semver@^6.3.0:
|
7576
7970
|
version "6.3.0"
|
7577
7971
|
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
|
7578
7972
|
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
|
7579
7973
|
|
7974
|
+
semver@^7.1.1:
|
7975
|
+
version "7.1.3"
|
7976
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.3.tgz#e4345ce73071c53f336445cfc19efb1c311df2a6"
|
7977
|
+
integrity sha512-ekM0zfiA9SCBlsKa2X1hxyxiI4L3B6EbVJkkdgQXnSEEaHlGdvyodMruTiulSRWMMB4NeIuYNMC9rTKTz97GxA==
|
7978
|
+
|
7580
7979
|
semver@~5.3.0:
|
7581
7980
|
version "5.3.0"
|
7582
7981
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
@@ -7629,16 +8028,36 @@ shebang-command@^1.2.0:
|
|
7629
8028
|
dependencies:
|
7630
8029
|
shebang-regex "^1.0.0"
|
7631
8030
|
|
8031
|
+
shebang-command@^2.0.0:
|
8032
|
+
version "2.0.0"
|
8033
|
+
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
|
8034
|
+
integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
|
8035
|
+
dependencies:
|
8036
|
+
shebang-regex "^3.0.0"
|
8037
|
+
|
7632
8038
|
shebang-regex@^1.0.0:
|
7633
8039
|
version "1.0.0"
|
7634
8040
|
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
|
7635
8041
|
integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
|
7636
8042
|
|
8043
|
+
shebang-regex@^3.0.0:
|
8044
|
+
version "3.0.0"
|
8045
|
+
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
|
8046
|
+
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
|
8047
|
+
|
7637
8048
|
shellwords@^0.1.1:
|
7638
8049
|
version "0.1.1"
|
7639
8050
|
resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
|
7640
8051
|
integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
|
7641
8052
|
|
8053
|
+
side-channel@^1.0.2:
|
8054
|
+
version "1.0.2"
|
8055
|
+
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz#df5d1abadb4e4bf4af1cd8852bf132d2f7876947"
|
8056
|
+
integrity sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA==
|
8057
|
+
dependencies:
|
8058
|
+
es-abstract "^1.17.0-next.1"
|
8059
|
+
object-inspect "^1.7.0"
|
8060
|
+
|
7642
8061
|
signal-exit@^3.0.0, signal-exit@^3.0.2:
|
7643
8062
|
version "3.0.2"
|
7644
8063
|
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
@@ -7656,10 +8075,10 @@ sisteransi@^1.0.3:
|
|
7656
8075
|
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.4.tgz#386713f1ef688c7c0304dc4c0632898941cad2e3"
|
7657
8076
|
integrity sha512-/ekMoM4NJ59ivGSfKapeG+FWtrmWvA1p6FBZwXrqojw90vJu8lBmrTxCMuBCydKtkaUe2zt4PlxeTKpjwMbyig==
|
7658
8077
|
|
7659
|
-
slash@^
|
7660
|
-
version "
|
7661
|
-
resolved "https://registry.yarnpkg.com/slash/-/slash-
|
7662
|
-
integrity sha512-
|
8078
|
+
slash@^3.0.0:
|
8079
|
+
version "3.0.0"
|
8080
|
+
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
|
8081
|
+
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
|
7663
8082
|
|
7664
8083
|
slice-ansi@^2.1.0:
|
7665
8084
|
version "2.1.0"
|
@@ -7753,6 +8172,11 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
|
|
7753
8172
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
7754
8173
|
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
|
7755
8174
|
|
8175
|
+
source-map@^0.7.3:
|
8176
|
+
version "0.7.3"
|
8177
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
|
8178
|
+
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
|
8179
|
+
|
7756
8180
|
spdx-correct@^3.0.0:
|
7757
8181
|
version "3.1.0"
|
7758
8182
|
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
|
@@ -7888,13 +8312,13 @@ strict-uri-encode@^1.0.0:
|
|
7888
8312
|
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
|
7889
8313
|
integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
|
7890
8314
|
|
7891
|
-
string-length@^
|
7892
|
-
version "
|
7893
|
-
resolved "https://registry.yarnpkg.com/string-length/-/string-length-
|
7894
|
-
integrity
|
8315
|
+
string-length@^3.1.0:
|
8316
|
+
version "3.1.0"
|
8317
|
+
resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837"
|
8318
|
+
integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==
|
7895
8319
|
dependencies:
|
7896
8320
|
astral-regex "^1.0.0"
|
7897
|
-
strip-ansi "^
|
8321
|
+
strip-ansi "^5.2.0"
|
7898
8322
|
|
7899
8323
|
string-width@^1.0.1, string-width@^1.0.2:
|
7900
8324
|
version "1.0.2"
|
@@ -7931,6 +8355,27 @@ string-width@^4.1.0:
|
|
7931
8355
|
is-fullwidth-code-point "^3.0.0"
|
7932
8356
|
strip-ansi "^5.2.0"
|
7933
8357
|
|
8358
|
+
string-width@^4.2.0:
|
8359
|
+
version "4.2.0"
|
8360
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
|
8361
|
+
integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
|
8362
|
+
dependencies:
|
8363
|
+
emoji-regex "^8.0.0"
|
8364
|
+
is-fullwidth-code-point "^3.0.0"
|
8365
|
+
strip-ansi "^6.0.0"
|
8366
|
+
|
8367
|
+
string.prototype.matchall@^4.0.2:
|
8368
|
+
version "4.0.2"
|
8369
|
+
resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e"
|
8370
|
+
integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==
|
8371
|
+
dependencies:
|
8372
|
+
define-properties "^1.1.3"
|
8373
|
+
es-abstract "^1.17.0"
|
8374
|
+
has-symbols "^1.0.1"
|
8375
|
+
internal-slot "^1.0.2"
|
8376
|
+
regexp.prototype.flags "^1.3.0"
|
8377
|
+
side-channel "^1.0.2"
|
8378
|
+
|
7934
8379
|
string.prototype.trimleft@^2.1.0:
|
7935
8380
|
version "2.1.0"
|
7936
8381
|
resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634"
|
@@ -7998,6 +8443,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
|
|
7998
8443
|
dependencies:
|
7999
8444
|
ansi-regex "^4.1.0"
|
8000
8445
|
|
8446
|
+
strip-ansi@^6.0.0:
|
8447
|
+
version "6.0.0"
|
8448
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
|
8449
|
+
integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
|
8450
|
+
dependencies:
|
8451
|
+
ansi-regex "^5.0.0"
|
8452
|
+
|
8001
8453
|
strip-bom@^2.0.0:
|
8002
8454
|
version "2.0.0"
|
8003
8455
|
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
|
@@ -8010,11 +8462,21 @@ strip-bom@^3.0.0:
|
|
8010
8462
|
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
|
8011
8463
|
integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
|
8012
8464
|
|
8465
|
+
strip-bom@^4.0.0:
|
8466
|
+
version "4.0.0"
|
8467
|
+
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878"
|
8468
|
+
integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
|
8469
|
+
|
8013
8470
|
strip-eof@^1.0.0:
|
8014
8471
|
version "1.0.0"
|
8015
8472
|
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
|
8016
8473
|
integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
|
8017
8474
|
|
8475
|
+
strip-final-newline@^2.0.0:
|
8476
|
+
version "2.0.0"
|
8477
|
+
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
|
8478
|
+
integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
|
8479
|
+
|
8018
8480
|
strip-indent@^1.0.1:
|
8019
8481
|
version "1.0.1"
|
8020
8482
|
resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
|
@@ -8032,13 +8494,13 @@ strip-json-comments@~2.0.1:
|
|
8032
8494
|
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
8033
8495
|
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
|
8034
8496
|
|
8035
|
-
style-loader@^1.1.
|
8036
|
-
version "1.1.
|
8037
|
-
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.
|
8038
|
-
integrity sha512-
|
8497
|
+
style-loader@^1.1.3:
|
8498
|
+
version "1.1.3"
|
8499
|
+
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.3.tgz#9e826e69c683c4d9bf9db924f85e9abb30d5e200"
|
8500
|
+
integrity sha512-rlkH7X/22yuwFYK357fMN/BxYOorfnfq0eD7+vqlemSK4wEcejFF1dg4zxP0euBW8NrYx2WZzZ8PPFevr7D+Kw==
|
8039
8501
|
dependencies:
|
8040
8502
|
loader-utils "^1.2.3"
|
8041
|
-
schema-utils "^2.
|
8503
|
+
schema-utils "^2.6.4"
|
8042
8504
|
|
8043
8505
|
stylehacks@^4.0.0:
|
8044
8506
|
version "4.0.3"
|
@@ -8068,13 +8530,21 @@ supports-color@^5.3.0:
|
|
8068
8530
|
dependencies:
|
8069
8531
|
has-flag "^3.0.0"
|
8070
8532
|
|
8071
|
-
supports-color@^7.0.0:
|
8533
|
+
supports-color@^7.0.0, supports-color@^7.1.0:
|
8072
8534
|
version "7.1.0"
|
8073
8535
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
|
8074
8536
|
integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
|
8075
8537
|
dependencies:
|
8076
8538
|
has-flag "^4.0.0"
|
8077
8539
|
|
8540
|
+
supports-hyperlinks@^2.0.0:
|
8541
|
+
version "2.1.0"
|
8542
|
+
resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47"
|
8543
|
+
integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==
|
8544
|
+
dependencies:
|
8545
|
+
has-flag "^4.0.0"
|
8546
|
+
supports-color "^7.0.0"
|
8547
|
+
|
8078
8548
|
svgo@^1.0.0:
|
8079
8549
|
version "1.3.2"
|
8080
8550
|
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
|
@@ -8136,6 +8606,14 @@ tar@^4:
|
|
8136
8606
|
safe-buffer "^5.1.2"
|
8137
8607
|
yallist "^3.0.3"
|
8138
8608
|
|
8609
|
+
terminal-link@^2.0.0:
|
8610
|
+
version "2.1.1"
|
8611
|
+
resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
|
8612
|
+
integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
|
8613
|
+
dependencies:
|
8614
|
+
ansi-escapes "^4.2.1"
|
8615
|
+
supports-hyperlinks "^2.0.0"
|
8616
|
+
|
8139
8617
|
terser-webpack-plugin@^1.4.3:
|
8140
8618
|
version "1.4.3"
|
8141
8619
|
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c"
|
@@ -8184,25 +8662,24 @@ terser@^4.4.3:
|
|
8184
8662
|
source-map "~0.6.1"
|
8185
8663
|
source-map-support "~0.5.12"
|
8186
8664
|
|
8187
|
-
test-exclude@^
|
8188
|
-
version "
|
8189
|
-
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-
|
8190
|
-
integrity sha512-
|
8665
|
+
test-exclude@^6.0.0:
|
8666
|
+
version "6.0.0"
|
8667
|
+
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
|
8668
|
+
integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
|
8191
8669
|
dependencies:
|
8192
|
-
|
8670
|
+
"@istanbuljs/schema" "^0.1.2"
|
8671
|
+
glob "^7.1.4"
|
8193
8672
|
minimatch "^3.0.4"
|
8194
|
-
read-pkg-up "^4.0.0"
|
8195
|
-
require-main-filename "^2.0.0"
|
8196
8673
|
|
8197
8674
|
text-table@^0.2.0:
|
8198
8675
|
version "0.2.0"
|
8199
8676
|
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
8200
8677
|
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
|
8201
8678
|
|
8202
|
-
throat@^
|
8203
|
-
version "
|
8204
|
-
resolved "https://registry.yarnpkg.com/throat/-/throat-
|
8205
|
-
integrity
|
8679
|
+
throat@^5.0.0:
|
8680
|
+
version "5.0.0"
|
8681
|
+
resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
|
8682
|
+
integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
|
8206
8683
|
|
8207
8684
|
through2@^2.0.0:
|
8208
8685
|
version "2.0.5"
|
@@ -8266,6 +8743,13 @@ to-regex-range@^2.1.0:
|
|
8266
8743
|
is-number "^3.0.0"
|
8267
8744
|
repeat-string "^1.6.1"
|
8268
8745
|
|
8746
|
+
to-regex-range@^5.0.1:
|
8747
|
+
version "5.0.1"
|
8748
|
+
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
|
8749
|
+
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
|
8750
|
+
dependencies:
|
8751
|
+
is-number "^7.0.0"
|
8752
|
+
|
8269
8753
|
to-regex@^3.0.1, to-regex@^3.0.2:
|
8270
8754
|
version "3.0.2"
|
8271
8755
|
resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
|
@@ -8276,7 +8760,7 @@ to-regex@^3.0.1, to-regex@^3.0.2:
|
|
8276
8760
|
regex-not "^1.0.2"
|
8277
8761
|
safe-regex "^1.1.0"
|
8278
8762
|
|
8279
|
-
tough-cookie@^2.3.3
|
8763
|
+
tough-cookie@^2.3.3:
|
8280
8764
|
version "2.5.0"
|
8281
8765
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
|
8282
8766
|
integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
|
@@ -8284,6 +8768,15 @@ tough-cookie@^2.3.3, tough-cookie@^2.3.4:
|
|
8284
8768
|
psl "^1.1.28"
|
8285
8769
|
punycode "^2.1.1"
|
8286
8770
|
|
8771
|
+
tough-cookie@^3.0.1:
|
8772
|
+
version "3.0.1"
|
8773
|
+
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2"
|
8774
|
+
integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==
|
8775
|
+
dependencies:
|
8776
|
+
ip-regex "^2.1.0"
|
8777
|
+
psl "^1.1.28"
|
8778
|
+
punycode "^2.1.1"
|
8779
|
+
|
8287
8780
|
tough-cookie@~2.4.3:
|
8288
8781
|
version "2.4.3"
|
8289
8782
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781"
|
@@ -8311,10 +8804,10 @@ trim-newlines@^1.0.0:
|
|
8311
8804
|
dependencies:
|
8312
8805
|
glob "^7.1.2"
|
8313
8806
|
|
8314
|
-
ts-pnp@^1.1.
|
8315
|
-
version "1.1.
|
8316
|
-
resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.
|
8317
|
-
integrity sha512-
|
8807
|
+
ts-pnp@^1.1.6:
|
8808
|
+
version "1.1.6"
|
8809
|
+
resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.6.tgz#389a24396d425a0d3162e96d2b4638900fdc289a"
|
8810
|
+
integrity sha512-CrG5GqAAzMT7144Cl+UIFP7mz/iIhiy+xQ6GGcnjTezhALT02uPMRw7tgDSESgB5MsfKt55+GPWw4ir1kVtMIQ==
|
8318
8811
|
|
8319
8812
|
tslib@^1.9.0:
|
8320
8813
|
version "1.10.0"
|
@@ -8345,6 +8838,11 @@ type-check@~0.3.2:
|
|
8345
8838
|
dependencies:
|
8346
8839
|
prelude-ls "~1.1.2"
|
8347
8840
|
|
8841
|
+
type-detect@4.0.8:
|
8842
|
+
version "4.0.8"
|
8843
|
+
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
|
8844
|
+
integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
|
8845
|
+
|
8348
8846
|
type-fest@^0.5.2:
|
8349
8847
|
version "0.5.2"
|
8350
8848
|
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz#d6ef42a0356c6cd45f49485c3b6281fc148e48a2"
|
@@ -8355,19 +8853,18 @@ type-fest@^0.8.1:
|
|
8355
8853
|
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
|
8356
8854
|
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
|
8357
8855
|
|
8856
|
+
typedarray-to-buffer@^3.1.5:
|
8857
|
+
version "3.1.5"
|
8858
|
+
resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
|
8859
|
+
integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
|
8860
|
+
dependencies:
|
8861
|
+
is-typedarray "^1.0.0"
|
8862
|
+
|
8358
8863
|
typedarray@^0.0.6:
|
8359
8864
|
version "0.0.6"
|
8360
8865
|
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
8361
8866
|
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
8362
8867
|
|
8363
|
-
uglify-js@^3.1.4:
|
8364
|
-
version "3.6.8"
|
8365
|
-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.8.tgz#5edcbcf9d49cbb0403dc49f856fe81530d65145e"
|
8366
|
-
integrity sha512-XhHJ3S3ZyMwP8kY1Gkugqx3CJh2C3O0y8NPiSxtm1tyD/pktLAkFZsFGpuNfTZddKDQ/bbDBLAd2YyA1pbi8HQ==
|
8367
|
-
dependencies:
|
8368
|
-
commander "~2.20.3"
|
8369
|
-
source-map "~0.6.1"
|
8370
|
-
|
8371
8868
|
unicode-canonical-property-names-ecmascript@^1.0.4:
|
8372
8869
|
version "1.0.4"
|
8373
8870
|
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
|
@@ -8386,6 +8883,11 @@ unicode-match-property-value-ecmascript@^1.1.0:
|
|
8386
8883
|
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277"
|
8387
8884
|
integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==
|
8388
8885
|
|
8886
|
+
unicode-match-property-value-ecmascript@^1.2.0:
|
8887
|
+
version "1.2.0"
|
8888
|
+
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
|
8889
|
+
integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
|
8890
|
+
|
8389
8891
|
unicode-property-aliases-ecmascript@^1.0.4:
|
8390
8892
|
version "1.0.5"
|
8391
8893
|
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57"
|
@@ -8510,6 +9012,15 @@ v8-compile-cache@^2.0.3:
|
|
8510
9012
|
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e"
|
8511
9013
|
integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
|
8512
9014
|
|
9015
|
+
v8-to-istanbul@^4.0.1:
|
9016
|
+
version "4.1.2"
|
9017
|
+
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.2.tgz#387d173be5383dbec209d21af033dcb892e3ac82"
|
9018
|
+
integrity sha512-G9R+Hpw0ITAmPSr47lSlc5A1uekSYzXxTMlFxso2xoffwo4jQnzbv1p9yXIinO8UMZKfAFewaCHwWvnH4Jb4Ug==
|
9019
|
+
dependencies:
|
9020
|
+
"@types/istanbul-lib-coverage" "^2.0.1"
|
9021
|
+
convert-source-map "^1.6.0"
|
9022
|
+
source-map "^0.7.3"
|
9023
|
+
|
8513
9024
|
validate-npm-package-license@^3.0.1:
|
8514
9025
|
version "3.0.4"
|
8515
9026
|
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
|
@@ -8544,6 +9055,15 @@ w3c-hr-time@^1.0.1:
|
|
8544
9055
|
dependencies:
|
8545
9056
|
browser-process-hrtime "^0.1.2"
|
8546
9057
|
|
9058
|
+
w3c-xmlserializer@^1.1.2:
|
9059
|
+
version "1.1.2"
|
9060
|
+
resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794"
|
9061
|
+
integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==
|
9062
|
+
dependencies:
|
9063
|
+
domexception "^1.0.1"
|
9064
|
+
webidl-conversions "^4.0.2"
|
9065
|
+
xml-name-validator "^3.0.0"
|
9066
|
+
|
8547
9067
|
walker@^1.0.7, walker@~1.0.5:
|
8548
9068
|
version "1.0.7"
|
8549
9069
|
resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
|
@@ -8578,10 +9098,10 @@ webpack-assets-manifest@^3.1.1:
|
|
8578
9098
|
tapable "^1.0.0"
|
8579
9099
|
webpack-sources "^1.0.0"
|
8580
9100
|
|
8581
|
-
webpack-cli@^3.3.
|
8582
|
-
version "3.3.
|
8583
|
-
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.
|
8584
|
-
integrity sha512-
|
9101
|
+
webpack-cli@^3.3.11:
|
9102
|
+
version "3.3.11"
|
9103
|
+
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.11.tgz#3bf21889bf597b5d82c38f215135a411edfdc631"
|
9104
|
+
integrity sha512-dXlfuml7xvAFwYUPsrtQAA9e4DOe58gnzSxhgrO/ZM/gyXTBowrsYeubyN4mqGhYdpXMFNyQ6emjJS9M7OBd4g==
|
8585
9105
|
dependencies:
|
8586
9106
|
chalk "2.4.2"
|
8587
9107
|
cross-spawn "6.0.5"
|
@@ -8603,15 +9123,15 @@ webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-
|
|
8603
9123
|
source-list-map "^2.0.0"
|
8604
9124
|
source-map "~0.6.1"
|
8605
9125
|
|
8606
|
-
webpack@^4.42.
|
8607
|
-
version "4.42.
|
8608
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.42.
|
8609
|
-
integrity sha512-
|
9126
|
+
webpack@^4.42.1:
|
9127
|
+
version "4.42.1"
|
9128
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.42.1.tgz#ae707baf091f5ca3ef9c38b884287cfe8f1983ef"
|
9129
|
+
integrity sha512-SGfYMigqEfdGchGhFFJ9KyRpQKnipvEvjc1TwrXEPCM6H5Wywu10ka8o3KGrMzSMxMQKt8aCHUFh5DaQ9UmyRg==
|
8610
9130
|
dependencies:
|
8611
|
-
"@webassemblyjs/ast" "1.
|
8612
|
-
"@webassemblyjs/helper-module-context" "1.
|
8613
|
-
"@webassemblyjs/wasm-edit" "1.
|
8614
|
-
"@webassemblyjs/wasm-parser" "1.
|
9131
|
+
"@webassemblyjs/ast" "1.9.0"
|
9132
|
+
"@webassemblyjs/helper-module-context" "1.9.0"
|
9133
|
+
"@webassemblyjs/wasm-edit" "1.9.0"
|
9134
|
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
8615
9135
|
acorn "^6.2.1"
|
8616
9136
|
ajv "^6.10.2"
|
8617
9137
|
ajv-keywords "^3.4.1"
|
@@ -8623,7 +9143,7 @@ webpack@^4.42.0:
|
|
8623
9143
|
loader-utils "^1.2.3"
|
8624
9144
|
memory-fs "^0.4.1"
|
8625
9145
|
micromatch "^3.1.10"
|
8626
|
-
mkdirp "^0.5.
|
9146
|
+
mkdirp "^0.5.3"
|
8627
9147
|
neo-async "^2.6.1"
|
8628
9148
|
node-libs-browser "^2.2.1"
|
8629
9149
|
schema-utils "^1.0.0"
|
@@ -8632,27 +9152,18 @@ webpack@^4.42.0:
|
|
8632
9152
|
watchpack "^1.6.0"
|
8633
9153
|
webpack-sources "^1.4.1"
|
8634
9154
|
|
8635
|
-
whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.
|
9155
|
+
whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5:
|
8636
9156
|
version "1.0.5"
|
8637
9157
|
resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
|
8638
9158
|
integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
|
8639
9159
|
dependencies:
|
8640
9160
|
iconv-lite "0.4.24"
|
8641
9161
|
|
8642
|
-
whatwg-mimetype@^2.
|
9162
|
+
whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0:
|
8643
9163
|
version "2.3.0"
|
8644
9164
|
resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
|
8645
9165
|
integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
|
8646
9166
|
|
8647
|
-
whatwg-url@^6.4.1:
|
8648
|
-
version "6.5.0"
|
8649
|
-
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"
|
8650
|
-
integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==
|
8651
|
-
dependencies:
|
8652
|
-
lodash.sortby "^4.7.0"
|
8653
|
-
tr46 "^1.0.1"
|
8654
|
-
webidl-conversions "^4.0.2"
|
8655
|
-
|
8656
9167
|
whatwg-url@^7.0.0:
|
8657
9168
|
version "7.1.0"
|
8658
9169
|
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
|
@@ -8672,13 +9183,20 @@ which-module@^2.0.0:
|
|
8672
9183
|
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
8673
9184
|
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
8674
9185
|
|
8675
|
-
which@1, which@^1.2.14, which@^1.2.9, which@^1.3.
|
9186
|
+
which@1, which@^1.2.14, which@^1.2.9, which@^1.3.1:
|
8676
9187
|
version "1.3.1"
|
8677
9188
|
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
8678
9189
|
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
|
8679
9190
|
dependencies:
|
8680
9191
|
isexe "^2.0.0"
|
8681
9192
|
|
9193
|
+
which@^2.0.1:
|
9194
|
+
version "2.0.2"
|
9195
|
+
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
|
9196
|
+
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
|
9197
|
+
dependencies:
|
9198
|
+
isexe "^2.0.0"
|
9199
|
+
|
8682
9200
|
wide-align@^1.1.0:
|
8683
9201
|
version "1.1.3"
|
8684
9202
|
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
|
@@ -8691,11 +9209,6 @@ word-wrap@~1.2.3:
|
|
8691
9209
|
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
8692
9210
|
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
8693
9211
|
|
8694
|
-
wordwrap@~0.0.2:
|
8695
|
-
version "0.0.3"
|
8696
|
-
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
|
8697
|
-
integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc=
|
8698
|
-
|
8699
9212
|
worker-farm@^1.7.0:
|
8700
9213
|
version "1.7.0"
|
8701
9214
|
resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
|
@@ -8720,19 +9233,29 @@ wrap-ansi@^5.1.0:
|
|
8720
9233
|
string-width "^3.0.0"
|
8721
9234
|
strip-ansi "^5.0.0"
|
8722
9235
|
|
9236
|
+
wrap-ansi@^6.2.0:
|
9237
|
+
version "6.2.0"
|
9238
|
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
|
9239
|
+
integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
|
9240
|
+
dependencies:
|
9241
|
+
ansi-styles "^4.0.0"
|
9242
|
+
string-width "^4.1.0"
|
9243
|
+
strip-ansi "^6.0.0"
|
9244
|
+
|
8723
9245
|
wrappy@1:
|
8724
9246
|
version "1.0.2"
|
8725
9247
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
8726
9248
|
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
8727
9249
|
|
8728
|
-
write-file-atomic
|
8729
|
-
version "
|
8730
|
-
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-
|
8731
|
-
integrity sha512-
|
9250
|
+
write-file-atomic@^3.0.0:
|
9251
|
+
version "3.0.3"
|
9252
|
+
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
|
9253
|
+
integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
|
8732
9254
|
dependencies:
|
8733
|
-
graceful-fs "^4.1.11"
|
8734
9255
|
imurmurhash "^0.1.4"
|
9256
|
+
is-typedarray "^1.0.0"
|
8735
9257
|
signal-exit "^3.0.2"
|
9258
|
+
typedarray-to-buffer "^3.1.5"
|
8736
9259
|
|
8737
9260
|
write@1.0.3:
|
8738
9261
|
version "1.0.3"
|
@@ -8741,18 +9264,28 @@ write@1.0.3:
|
|
8741
9264
|
dependencies:
|
8742
9265
|
mkdirp "^0.5.1"
|
8743
9266
|
|
8744
|
-
ws@^
|
8745
|
-
version "
|
8746
|
-
resolved "https://registry.yarnpkg.com/ws/-/ws-
|
8747
|
-
integrity sha512-
|
8748
|
-
dependencies:
|
8749
|
-
async-limiter "~1.0.0"
|
9267
|
+
ws@^7.0.0:
|
9268
|
+
version "7.2.3"
|
9269
|
+
resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.3.tgz#a5411e1fb04d5ed0efee76d26d5c46d830c39b46"
|
9270
|
+
integrity sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ==
|
8750
9271
|
|
8751
9272
|
xml-name-validator@^3.0.0:
|
8752
9273
|
version "3.0.0"
|
8753
9274
|
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
|
8754
9275
|
integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
|
8755
9276
|
|
9277
|
+
xmlchars@^2.1.1:
|
9278
|
+
version "2.2.0"
|
9279
|
+
resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
|
9280
|
+
integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
|
9281
|
+
|
9282
|
+
xregexp@^4.3.0:
|
9283
|
+
version "4.3.0"
|
9284
|
+
resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.3.0.tgz#7e92e73d9174a99a59743f67a4ce879a04b5ae50"
|
9285
|
+
integrity sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g==
|
9286
|
+
dependencies:
|
9287
|
+
"@babel/runtime-corejs3" "^7.8.3"
|
9288
|
+
|
8756
9289
|
xtend@^4.0.0, xtend@~4.0.1:
|
8757
9290
|
version "4.0.2"
|
8758
9291
|
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
|
@@ -8790,7 +9323,7 @@ yaml@^1.7.2:
|
|
8790
9323
|
dependencies:
|
8791
9324
|
"@babel/runtime" "^7.6.3"
|
8792
9325
|
|
8793
|
-
yargs-parser@^13.1.0
|
9326
|
+
yargs-parser@^13.1.0:
|
8794
9327
|
version "13.1.1"
|
8795
9328
|
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0"
|
8796
9329
|
integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==
|
@@ -8798,6 +9331,14 @@ yargs-parser@^13.1.0, yargs-parser@^13.1.1:
|
|
8798
9331
|
camelcase "^5.0.0"
|
8799
9332
|
decamelize "^1.2.0"
|
8800
9333
|
|
9334
|
+
yargs-parser@^18.1.1:
|
9335
|
+
version "18.1.1"
|
9336
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.1.tgz#bf7407b915427fc760fcbbccc6c82b4f0ffcbd37"
|
9337
|
+
integrity sha512-KRHEsOM16IX7XuLnMOqImcPNbLVXMNHYAoFc3BKR8Ortl5gzDbtXvvEoGx9imk5E+X1VeNKNlcHr8B8vi+7ipA==
|
9338
|
+
dependencies:
|
9339
|
+
camelcase "^5.0.0"
|
9340
|
+
decamelize "^1.2.0"
|
9341
|
+
|
8801
9342
|
yargs-parser@^5.0.0:
|
8802
9343
|
version "5.0.0"
|
8803
9344
|
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a"
|
@@ -8822,21 +9363,22 @@ yargs@13.2.4:
|
|
8822
9363
|
y18n "^4.0.0"
|
8823
9364
|
yargs-parser "^13.1.0"
|
8824
9365
|
|
8825
|
-
yargs@^
|
8826
|
-
version "
|
8827
|
-
resolved "https://registry.yarnpkg.com/yargs/-/yargs-
|
8828
|
-
integrity sha512-
|
9366
|
+
yargs@^15.0.0:
|
9367
|
+
version "15.3.1"
|
9368
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.3.1.tgz#9505b472763963e54afe60148ad27a330818e98b"
|
9369
|
+
integrity sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==
|
8829
9370
|
dependencies:
|
8830
|
-
cliui "^
|
8831
|
-
|
9371
|
+
cliui "^6.0.0"
|
9372
|
+
decamelize "^1.2.0"
|
9373
|
+
find-up "^4.1.0"
|
8832
9374
|
get-caller-file "^2.0.1"
|
8833
9375
|
require-directory "^2.1.1"
|
8834
9376
|
require-main-filename "^2.0.0"
|
8835
9377
|
set-blocking "^2.0.0"
|
8836
|
-
string-width "^
|
9378
|
+
string-width "^4.2.0"
|
8837
9379
|
which-module "^2.0.0"
|
8838
9380
|
y18n "^4.0.0"
|
8839
|
-
yargs-parser "^
|
9381
|
+
yargs-parser "^18.1.1"
|
8840
9382
|
|
8841
9383
|
yargs@^7.0.0:
|
8842
9384
|
version "7.1.0"
|