super 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +22 -13
- data/app/assets/javascripts/super/application.js +10970 -64
- data/app/assets/stylesheets/super/application.css +33270 -14020
- data/app/controllers/super/application_controller.rb +1 -0
- data/app/views/super/application/_form.html.erb +1 -2
- data/app/views/super/application/_form_field__destroy.html.erb +5 -0
- data/app/views/super/application/{_form_generic_select.html.erb → _form_field_select.html.erb} +3 -5
- data/app/views/super/application/{_form_generic_text.html.erb → _form_field_text.html.erb} +1 -3
- data/app/views/super/application/_form_fieldset.html.erb +8 -0
- data/app/views/super/application/_form_has_many.html.erb +21 -0
- data/app/views/super/application/_form_has_one.html.erb +11 -0
- data/app/views/super/application/_form_inline_errors.html.erb +10 -0
- data/frontend/super-frontend/build.js +3 -1
- data/frontend/super-frontend/dist/application.css +33270 -14020
- data/frontend/super-frontend/dist/application.js +10970 -64
- data/frontend/super-frontend/package.json +5 -2
- data/frontend/super-frontend/src/javascripts/super/{application.js → application.ts} +3 -1
- data/frontend/super-frontend/src/javascripts/super/nested_attributes_controller.ts +33 -0
- data/frontend/super-frontend/src/javascripts/super/rails__ujs.d.ts +1 -0
- data/frontend/super-frontend/tsconfig.json +13 -0
- data/frontend/super-frontend/yarn.lock +1559 -1523
- data/lib/super/action_inquirer.rb +13 -0
- data/lib/super/assets.rb +1 -0
- data/lib/super/configuration.rb +59 -44
- data/lib/super/controls.rb +31 -15
- data/lib/super/display/schema_types.rb +15 -16
- data/lib/super/engine.rb +1 -0
- data/lib/super/error.rb +1 -0
- data/lib/super/form/schema_types.rb +89 -21
- data/lib/super/navigation/automatic.rb +2 -0
- data/lib/super/schema.rb +50 -1
- data/lib/super/test_support/copy_app_templates/controllers/favorite_things_controller.rb +50 -0
- data/lib/super/test_support/copy_app_templates/{members_controller.rb → controllers/members_controller.rb} +10 -5
- data/lib/super/test_support/copy_app_templates/{ships_controller.rb → controllers/ships_controller.rb} +3 -3
- data/lib/super/test_support/copy_app_templates/{20190216224956_create_members.rb → migrations/20190216224956_create_members.rb} +0 -0
- data/lib/super/test_support/copy_app_templates/{20190803143320_create_ships.rb → migrations/20190803143320_create_ships.rb} +0 -0
- data/lib/super/test_support/copy_app_templates/{20190806014121_add_ship_to_members.rb → migrations/20190806014121_add_ship_to_members.rb} +0 -0
- data/lib/super/test_support/copy_app_templates/migrations/20191126050453_create_favorite_things.rb +10 -0
- data/lib/super/test_support/copy_app_templates/models/favorite_thing.rb +7 -0
- data/lib/super/test_support/copy_app_templates/{member.rb → models/member.rb} +7 -0
- data/lib/super/test_support/copy_app_templates/{ship.rb → models/ship.rb} +0 -0
- data/lib/super/test_support/copy_app_templates/routes.rb +1 -0
- data/lib/super/test_support/fixtures/favorite_things.yml +9 -0
- data/lib/super/test_support/generate_copy_app.rb +5 -16
- data/lib/super/test_support/generate_dummy.rb +0 -1
- data/lib/super/test_support/starfleet_seeder.rb +1 -0
- data/lib/super/version.rb +1 -1
- metadata +25 -14
- data/app/views/super/application/_form_field.html.erb +0 -7
@@ -1,11 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"dependencies": {
|
3
|
-
"rails
|
3
|
+
"@rails/ujs": "^6.0.2-1",
|
4
|
+
"jquery": "^3.4.1",
|
4
5
|
"stimulus": "^1.1.1",
|
5
6
|
"tailwindcss": "^1.0.1"
|
6
7
|
},
|
7
8
|
"devDependencies": {
|
8
|
-
"
|
9
|
+
"@types/jquery": "^3.3.31",
|
10
|
+
"parcel-bundler": "^1.12.3",
|
11
|
+
"typescript": "^3.7.4"
|
9
12
|
},
|
10
13
|
"scripts": {
|
11
14
|
"build": "node build.js",
|
@@ -1,9 +1,11 @@
|
|
1
|
-
import RailsUjs from 'rails
|
1
|
+
import RailsUjs from '@rails/ujs';
|
2
2
|
import { Application, Controller } from 'stimulus';
|
3
|
+
import NestedAttributesController from './nested_attributes_controller';
|
3
4
|
|
4
5
|
RailsUjs.start();
|
5
6
|
|
6
7
|
const application = Application.start()
|
8
|
+
application.register('nested-attributes', NestedAttributesController)
|
7
9
|
|
8
10
|
export default {
|
9
11
|
StimulusApplication: application,
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import { Controller } from 'stimulus'
|
2
|
+
import $ from 'jquery'
|
3
|
+
|
4
|
+
export default class extends Controller {
|
5
|
+
templateTarget: Element | undefined
|
6
|
+
|
7
|
+
static targets = ['template']
|
8
|
+
|
9
|
+
add(event: Event) {
|
10
|
+
event.preventDefault()
|
11
|
+
|
12
|
+
if (this.templateTarget) {
|
13
|
+
const unixtime = (new Date()).getTime();
|
14
|
+
let $content = $(this.templateTarget.innerHTML.replace(/TEMPLATE/g, unixtime.toString()))
|
15
|
+
var $templateTarget = $(this.templateTarget)
|
16
|
+
|
17
|
+
$templateTarget.before($content)
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
toggleDestruction(event: Event) {
|
22
|
+
if (event.target) {
|
23
|
+
let $eventTarget = $(event.target)
|
24
|
+
let $fieldset = $eventTarget.closest("fieldset")
|
25
|
+
|
26
|
+
if ($eventTarget.is(":checked")) {
|
27
|
+
$fieldset.addClass('opacity-75 bg-gray-100')
|
28
|
+
} else {
|
29
|
+
$fieldset.removeClass('opacity-75 bg-gray-100')
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
declare module '@rails/ujs';
|
@@ -2,698 +2,756 @@
|
|
2
2
|
# yarn lockfile v1
|
3
3
|
|
4
4
|
|
5
|
-
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.
|
6
|
-
version "7.
|
7
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.
|
8
|
-
integrity sha512-
|
9
|
-
dependencies:
|
10
|
-
"@babel/highlight" "^7.
|
11
|
-
|
12
|
-
"@babel/
|
13
|
-
version "7.
|
14
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
15
|
-
integrity sha512-
|
16
|
-
dependencies:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
5
|
+
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.0":
|
6
|
+
version "7.8.0"
|
7
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.0.tgz#8c98d4ac29d6f80f28127b1bc50970a72086c5ac"
|
8
|
+
integrity sha512-AN2IR/wCUYsM+PdErq6Bp3RFTXl8W0p9Nmymm7zkpsCmh+r/YYcckaCGpU8Q/mEKmST19kkGRaG42A/jxOWwBA==
|
9
|
+
dependencies:
|
10
|
+
"@babel/highlight" "^7.8.0"
|
11
|
+
|
12
|
+
"@babel/compat-data@^7.8.0":
|
13
|
+
version "7.8.0"
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.8.0.tgz#1d3a9fbda3c58774395cd617d263a196dfa45d92"
|
15
|
+
integrity sha512-ixPUWJpnd9hHvRkyIE3mJ6PY5DEWmR08UkcpdqI5kV5g/d6knT8Wth1LE5v5sVTIJkm9dGpQsXnhwxcf2/PjAg==
|
16
|
+
dependencies:
|
17
|
+
browserslist "^4.8.2"
|
18
|
+
invariant "^2.2.4"
|
19
|
+
semver "^7.1.1"
|
20
|
+
|
21
|
+
"@babel/core@^7.4.4":
|
22
|
+
version "7.8.0"
|
23
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.0.tgz#fd273d4faf69cc20ee3ccfd32d42df916bb4a15c"
|
24
|
+
integrity sha512-3rqPi/bv/Xfu2YzHvBz4XqMI1fKVwnhntPA1/fjoECrSjrhbOCxlTrbVu5gUtr8zkxW+RpkDOa/HCW93gzS2Dw==
|
25
|
+
dependencies:
|
26
|
+
"@babel/code-frame" "^7.8.0"
|
27
|
+
"@babel/generator" "^7.8.0"
|
28
|
+
"@babel/helpers" "^7.8.0"
|
29
|
+
"@babel/parser" "^7.8.0"
|
30
|
+
"@babel/template" "^7.8.0"
|
31
|
+
"@babel/traverse" "^7.8.0"
|
32
|
+
"@babel/types" "^7.8.0"
|
33
|
+
convert-source-map "^1.7.0"
|
25
34
|
debug "^4.1.0"
|
35
|
+
gensync "^1.0.0-beta.1"
|
26
36
|
json5 "^2.1.0"
|
27
|
-
lodash "^4.17.
|
37
|
+
lodash "^4.17.13"
|
28
38
|
resolve "^1.3.2"
|
29
39
|
semver "^5.4.1"
|
30
40
|
source-map "^0.5.0"
|
31
41
|
|
32
|
-
"@babel/generator@^7.
|
33
|
-
version "7.
|
34
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
35
|
-
integrity sha512-
|
36
|
-
dependencies:
|
37
|
-
"@babel/types" "^7.3.4"
|
38
|
-
jsesc "^2.5.1"
|
39
|
-
lodash "^4.17.11"
|
40
|
-
source-map "^0.5.0"
|
41
|
-
trim-right "^1.0.1"
|
42
|
-
|
43
|
-
"@babel/generator@^7.3.4", "@babel/generator@^7.4.4":
|
44
|
-
version "7.4.4"
|
45
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz#174a215eb843fc392c7edcaabeaa873de6e8f041"
|
46
|
-
integrity sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ==
|
42
|
+
"@babel/generator@^7.4.4", "@babel/generator@^7.8.0":
|
43
|
+
version "7.8.0"
|
44
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.0.tgz#40a1244677be58ffdc5cd01e22634cd1d5b29edf"
|
45
|
+
integrity sha512-2Lp2e02CV2C7j/H4n4D9YvsvdhPVVg9GDIamr6Tu4tU35mL3mzOrzl1lZ8ZJtysfZXh+y+AGORc2rPS7yHxBUg==
|
47
46
|
dependencies:
|
48
|
-
"@babel/types" "^7.
|
47
|
+
"@babel/types" "^7.8.0"
|
49
48
|
jsesc "^2.5.1"
|
50
|
-
lodash "^4.17.
|
49
|
+
lodash "^4.17.13"
|
51
50
|
source-map "^0.5.0"
|
52
|
-
trim-right "^1.0.1"
|
53
51
|
|
54
|
-
"@babel/helper-annotate-as-pure@^7.
|
55
|
-
version "7.
|
56
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.
|
57
|
-
integrity sha512-
|
52
|
+
"@babel/helper-annotate-as-pure@^7.8.0":
|
53
|
+
version "7.8.0"
|
54
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.0.tgz#334ae2cb801e2381509631a5caa1ac6ab1c5016a"
|
55
|
+
integrity sha512-WWj+1amBdowU2g18p3/KUc1Y5kWnaNm1paohq2tT4/RreeMNssYkv6ul9wkE2iIqjwLBwNMZGH4pTGlMSUqMMg==
|
58
56
|
dependencies:
|
59
|
-
"@babel/types" "^7.
|
57
|
+
"@babel/types" "^7.8.0"
|
60
58
|
|
61
|
-
"@babel/helper-builder-binary-assignment-operator-visitor@^7.
|
62
|
-
version "7.
|
63
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.
|
64
|
-
integrity sha512-
|
59
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.0":
|
60
|
+
version "7.8.0"
|
61
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.0.tgz#c2237beb110f64f592dddcabef1098e9d766ef88"
|
62
|
+
integrity sha512-KbBloNiBHM3ZyHg1ViDRs4QcnAunwMJ+rLpAEA8l3cWb3Z1xof7ag1iHvX16EwhUfaTG3+YSvTRPv4xHIrseUQ==
|
65
63
|
dependencies:
|
66
|
-
"@babel/helper-explode-assignable-expression" "^7.
|
67
|
-
"@babel/types" "^7.
|
64
|
+
"@babel/helper-explode-assignable-expression" "^7.8.0"
|
65
|
+
"@babel/types" "^7.8.0"
|
68
66
|
|
69
|
-
"@babel/helper-builder-react-jsx@^7.
|
70
|
-
version "7.
|
71
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.
|
72
|
-
integrity sha512-
|
67
|
+
"@babel/helper-builder-react-jsx@^7.8.0":
|
68
|
+
version "7.8.0"
|
69
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.8.0.tgz#4b9111eb862f5fd8840c37d200610fa95ab0aad8"
|
70
|
+
integrity sha512-Zg7VLtZzcAHoQ13S0pEIGKo8OAG3s5kjsk/4keGmUeNuc810T9fVp6izIaL8ZVeAErRFWJdvqFItY3QMTHMsSg==
|
73
71
|
dependencies:
|
74
|
-
"@babel/types" "^7.
|
72
|
+
"@babel/types" "^7.8.0"
|
75
73
|
esutils "^2.0.0"
|
76
74
|
|
77
|
-
"@babel/helper-call-delegate@^7.
|
78
|
-
version "7.
|
79
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.
|
80
|
-
integrity sha512-
|
81
|
-
dependencies:
|
82
|
-
"@babel/helper-hoist-variables" "^7.
|
83
|
-
"@babel/traverse" "^7.
|
84
|
-
"@babel/types" "^7.
|
85
|
-
|
86
|
-
"@babel/helper-
|
87
|
-
version "7.
|
88
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
89
|
-
integrity sha512-
|
90
|
-
dependencies:
|
91
|
-
"@babel/helper-function-name" "^7.1.0"
|
92
|
-
"@babel/types" "^7.4.4"
|
93
|
-
lodash "^4.17.11"
|
94
|
-
|
95
|
-
"@babel/helper-explode-assignable-expression@^7.1.0":
|
96
|
-
version "7.1.0"
|
97
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6"
|
98
|
-
integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA==
|
99
|
-
dependencies:
|
100
|
-
"@babel/traverse" "^7.1.0"
|
101
|
-
"@babel/types" "^7.0.0"
|
102
|
-
|
103
|
-
"@babel/helper-function-name@^7.1.0":
|
104
|
-
version "7.1.0"
|
105
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
|
106
|
-
integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==
|
107
|
-
dependencies:
|
108
|
-
"@babel/helper-get-function-arity" "^7.0.0"
|
109
|
-
"@babel/template" "^7.1.0"
|
110
|
-
"@babel/types" "^7.0.0"
|
111
|
-
|
112
|
-
"@babel/helper-get-function-arity@^7.0.0":
|
113
|
-
version "7.0.0"
|
114
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
|
115
|
-
integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==
|
116
|
-
dependencies:
|
117
|
-
"@babel/types" "^7.0.0"
|
118
|
-
|
119
|
-
"@babel/helper-hoist-variables@^7.4.4":
|
120
|
-
version "7.4.4"
|
121
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a"
|
122
|
-
integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w==
|
75
|
+
"@babel/helper-call-delegate@^7.8.0":
|
76
|
+
version "7.8.0"
|
77
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.0.tgz#1cd725c5444be0ce59dbfa47b6ac5e9772168c67"
|
78
|
+
integrity sha512-Vi8K1LScr8ZgLicfuCNSE7JWUPG/H/9Bw9zn+3vQyy4vA54FEGTCuUTOXCFwmBM93OD6jHfjrQ6ZnivM5U+bHg==
|
79
|
+
dependencies:
|
80
|
+
"@babel/helper-hoist-variables" "^7.8.0"
|
81
|
+
"@babel/traverse" "^7.8.0"
|
82
|
+
"@babel/types" "^7.8.0"
|
83
|
+
|
84
|
+
"@babel/helper-compilation-targets@^7.8.0":
|
85
|
+
version "7.8.0"
|
86
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.0.tgz#63d3924bc04b68b2d24d25b8cc452ee86dcb3a59"
|
87
|
+
integrity sha512-VcMSwBCqA2mGqmFFnLYtaC+Zkok5pVMOypeGn76RpSBAoFqc1olWjYoNqTn09YMChTi6rsbPIkkEOAwfsKSqRg==
|
123
88
|
dependencies:
|
124
|
-
"@babel/
|
89
|
+
"@babel/compat-data" "^7.8.0"
|
90
|
+
browserslist "^4.8.2"
|
91
|
+
invariant "^2.2.4"
|
92
|
+
levenary "^1.1.0"
|
93
|
+
semver "^7.1.1"
|
94
|
+
|
95
|
+
"@babel/helper-create-regexp-features-plugin@^7.8.0":
|
96
|
+
version "7.8.0"
|
97
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.0.tgz#ae551572b840189a7b94e39eddc1a68d355974eb"
|
98
|
+
integrity sha512-vJj2hPbxxLUWJEV86iZiac5curAnC3ZVc+rFmFeWZigUOcuCPpbF+KxoEmxrkmuCGylHFF9t4lkpcDUcxnhQ5g==
|
99
|
+
dependencies:
|
100
|
+
"@babel/helper-regex" "^7.8.0"
|
101
|
+
regexpu-core "^4.6.0"
|
102
|
+
|
103
|
+
"@babel/helper-define-map@^7.8.0":
|
104
|
+
version "7.8.0"
|
105
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.0.tgz#d3180691fa189fc147d411deaa029305c1470dfe"
|
106
|
+
integrity sha512-Go06lUlZ4YImNEmdyAH5iO38yh5mbpOPSwA2PtV1vyczFhTZfX0OtzkiIL2pACo6AOYf89pLh42nhhDrqgzC3A==
|
107
|
+
dependencies:
|
108
|
+
"@babel/helper-function-name" "^7.8.0"
|
109
|
+
"@babel/types" "^7.8.0"
|
110
|
+
lodash "^4.17.13"
|
111
|
+
|
112
|
+
"@babel/helper-explode-assignable-expression@^7.8.0":
|
113
|
+
version "7.8.0"
|
114
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.0.tgz#a2ded9298a5dc9df0a8ec65ac12e4745f9af2882"
|
115
|
+
integrity sha512-w4mRQqKAh4M7BSLwvDMm8jYFroEzpqMCtXDhFHP+kNjMIQWpbC6b0Q/RUQsJNSf54rIx6XMdci1Stf60DWw+og==
|
116
|
+
dependencies:
|
117
|
+
"@babel/traverse" "^7.8.0"
|
118
|
+
"@babel/types" "^7.8.0"
|
119
|
+
|
120
|
+
"@babel/helper-function-name@^7.8.0":
|
121
|
+
version "7.8.0"
|
122
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.0.tgz#dde5cf0d6b15c21817a67dd66fe7350348e023bf"
|
123
|
+
integrity sha512-x9psucuU0Xalw+0Vpr2FYJMLB7/KnPSLZhlkUyOGbYAWRDfmtZBrguYpJYiaNCRV7vGkYjO/gF6/J6yMvdWTDw==
|
124
|
+
dependencies:
|
125
|
+
"@babel/helper-get-function-arity" "^7.8.0"
|
126
|
+
"@babel/template" "^7.8.0"
|
127
|
+
"@babel/types" "^7.8.0"
|
128
|
+
|
129
|
+
"@babel/helper-get-function-arity@^7.8.0":
|
130
|
+
version "7.8.0"
|
131
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.0.tgz#90977f61d76d2225d1ae0208def7df22ea92792e"
|
132
|
+
integrity sha512-eUP5grliToMapQiTaYS2AAO/WwaCG7cuJztR1v/a1aPzUzUeGt+AaI9OvLATc/AfFkF8SLJ10d5ugGt/AQ9d6w==
|
133
|
+
dependencies:
|
134
|
+
"@babel/types" "^7.8.0"
|
135
|
+
|
136
|
+
"@babel/helper-hoist-variables@^7.8.0":
|
137
|
+
version "7.8.0"
|
138
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.0.tgz#693586b56487e60fff9d9c7074f4a86e1a8af348"
|
139
|
+
integrity sha512-jDl66KvuklTXUADcoXDMur1jDtAZUZZkzLIaQ54+z38ih8C0V0hC56hMaoVoyoxN60MwQmmrHctBwcLqP0c/Lw==
|
140
|
+
dependencies:
|
141
|
+
"@babel/types" "^7.8.0"
|
142
|
+
|
143
|
+
"@babel/helper-member-expression-to-functions@^7.8.0":
|
144
|
+
version "7.8.0"
|
145
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.0.tgz#50d0ed445d2da11beb60e2dbc2c428254bd5a4ae"
|
146
|
+
integrity sha512-0m1QabGrdXuoxX/g+KOAGndoHwskC70WweqHRQyCsaO67KOEELYh4ECcGw6ZGKjDKa5Y7SW4Qbhw6ly4Fah/jQ==
|
147
|
+
dependencies:
|
148
|
+
"@babel/types" "^7.8.0"
|
149
|
+
|
150
|
+
"@babel/helper-module-imports@^7.8.0":
|
151
|
+
version "7.8.0"
|
152
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.0.tgz#076edda55d8cd39c099981b785ce53f4303b967e"
|
153
|
+
integrity sha512-ylY9J6ZxEcjmJaJ4P6aVs/fZdrZVctCGnxxfYXwCnSMapqd544zT8lWK2qI/vBPjE5gS0o2jILnH+AkpsPauEQ==
|
154
|
+
dependencies:
|
155
|
+
"@babel/types" "^7.8.0"
|
156
|
+
|
157
|
+
"@babel/helper-module-transforms@^7.8.0":
|
158
|
+
version "7.8.0"
|
159
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.0.tgz#a3cbe4ac91b101c4b6db278af0c868fe7091ebae"
|
160
|
+
integrity sha512-fvGhX4FY7YwRdWW/zfddNaKpYl8TaA8hvwONIYhv1/a1ZbgxbTrjsmH6IGWUgUNki7QzbpZ27OEh88sZdft3YA==
|
161
|
+
dependencies:
|
162
|
+
"@babel/helper-module-imports" "^7.8.0"
|
163
|
+
"@babel/helper-simple-access" "^7.8.0"
|
164
|
+
"@babel/helper-split-export-declaration" "^7.8.0"
|
165
|
+
"@babel/template" "^7.8.0"
|
166
|
+
"@babel/types" "^7.8.0"
|
167
|
+
lodash "^4.17.13"
|
168
|
+
|
169
|
+
"@babel/helper-optimise-call-expression@^7.8.0":
|
170
|
+
version "7.8.0"
|
171
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.0.tgz#3df62773cf210db9ed34c2bb39fece5acd1e1733"
|
172
|
+
integrity sha512-aiJt1m+K57y0n10fTw+QXcCXzmpkG+o+NoQmAZqlZPstkTE0PZT+Z27QSd/6Gf00nuXJQO4NiJ0/YagSW5kC2A==
|
173
|
+
dependencies:
|
174
|
+
"@babel/types" "^7.8.0"
|
175
|
+
|
176
|
+
"@babel/helper-plugin-utils@^7.8.0":
|
177
|
+
version "7.8.0"
|
178
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.0.tgz#59ec882d43c21c544ccb51decaecb306b34a8231"
|
179
|
+
integrity sha512-+hAlRGdf8fHQAyNnDBqTHQhwdLURLdrCROoWaEQYiQhk2sV9Rhs+GoFZZfMJExTq9HG8o2NX3uN2G90bFtmFdA==
|
180
|
+
|
181
|
+
"@babel/helper-regex@^7.8.0":
|
182
|
+
version "7.8.0"
|
183
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.0.tgz#dde1d2d2070e292c19a8702075e945923aa1678b"
|
184
|
+
integrity sha512-haD8fRsPtyFZkbtxBIaGBBHRtbn0YsyecdYrxNgO0Bl6SlGokJPQX9M2tDuVbeQBYHZVLUPMSwGQn4obHevsMQ==
|
185
|
+
dependencies:
|
186
|
+
lodash "^4.17.13"
|
187
|
+
|
188
|
+
"@babel/helper-remap-async-to-generator@^7.8.0":
|
189
|
+
version "7.8.0"
|
190
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.0.tgz#034c21154dd12472717cfb31faf1713426fbc435"
|
191
|
+
integrity sha512-+aKyBd4oHAaIZgOLq/uLjkUz7ExZ0ppdNBc8Qr72BmtKNAy3A6EJa/ifjj0//CIzQtUDPs3E6HjKM2cV6bnXsQ==
|
192
|
+
dependencies:
|
193
|
+
"@babel/helper-annotate-as-pure" "^7.8.0"
|
194
|
+
"@babel/helper-wrap-function" "^7.8.0"
|
195
|
+
"@babel/template" "^7.8.0"
|
196
|
+
"@babel/traverse" "^7.8.0"
|
197
|
+
"@babel/types" "^7.8.0"
|
198
|
+
|
199
|
+
"@babel/helper-replace-supers@^7.8.0":
|
200
|
+
version "7.8.0"
|
201
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.0.tgz#d83cb117edb820eebe9ae6c970a8ad5eac09d19f"
|
202
|
+
integrity sha512-R2CyorW4tcO3YzdkClLpt6MS84G+tPkOi0MmiCn1bvYVnmDpdl9R15XOi3NQW2mhOAEeBnuQ4g1Bh7pT2sX8fg==
|
203
|
+
dependencies:
|
204
|
+
"@babel/helper-member-expression-to-functions" "^7.8.0"
|
205
|
+
"@babel/helper-optimise-call-expression" "^7.8.0"
|
206
|
+
"@babel/traverse" "^7.8.0"
|
207
|
+
"@babel/types" "^7.8.0"
|
208
|
+
|
209
|
+
"@babel/helper-simple-access@^7.8.0":
|
210
|
+
version "7.8.0"
|
211
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.0.tgz#a5095ab031f759995134183fa7719aa85f0ec962"
|
212
|
+
integrity sha512-I+7yKZJnxp7VIC2UFzXfVjLiJuU16rYFF59x27c+boINkO/pLETgZcoesCryg9jmU4jxEa0foFueW+2wjc9Gsw==
|
213
|
+
dependencies:
|
214
|
+
"@babel/template" "^7.8.0"
|
215
|
+
"@babel/types" "^7.8.0"
|
216
|
+
|
217
|
+
"@babel/helper-split-export-declaration@^7.8.0":
|
218
|
+
version "7.8.0"
|
219
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.0.tgz#ed10cb03b07454c0d40735fad4e9c9711e739588"
|
220
|
+
integrity sha512-YhYFhH4T6DlbT6CPtVgLfC1Jp2gbCawU/ml7WJvUpBg01bCrXSzTYMZZXbbIGjq/kHmK8YUATxTppcRGzj31pA==
|
221
|
+
dependencies:
|
222
|
+
"@babel/types" "^7.8.0"
|
223
|
+
|
224
|
+
"@babel/helper-wrap-function@^7.8.0":
|
225
|
+
version "7.8.0"
|
226
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.0.tgz#a26751c7b0be765a0db10162c6de485402cb505c"
|
227
|
+
integrity sha512-2j6idN2jt8Y+8nJ4UPN/6AZa53DAkcETMVmroJQh50qZc59PuQKVjgOIIqmrLoQf6Ia9bs90MHRcID1OW5tfag==
|
228
|
+
dependencies:
|
229
|
+
"@babel/helper-function-name" "^7.8.0"
|
230
|
+
"@babel/template" "^7.8.0"
|
231
|
+
"@babel/traverse" "^7.8.0"
|
232
|
+
"@babel/types" "^7.8.0"
|
125
233
|
|
126
|
-
"@babel/
|
127
|
-
version "7.
|
128
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
129
|
-
integrity sha512-
|
234
|
+
"@babel/helpers@^7.8.0":
|
235
|
+
version "7.8.0"
|
236
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.0.tgz#3d3e6e08febf5edbbf63b1cf64395525aa3ece37"
|
237
|
+
integrity sha512-srWKpjAFbiut5JoCReZJ098hLqoZ9HufOnKZPggc7j74XaPuQ+9b3RYPV1M/HfjL63lCNd8uI1O487qIWxAFNA==
|
238
|
+
dependencies:
|
239
|
+
"@babel/template" "^7.8.0"
|
240
|
+
"@babel/traverse" "^7.8.0"
|
241
|
+
"@babel/types" "^7.8.0"
|
242
|
+
|
243
|
+
"@babel/highlight@^7.8.0":
|
244
|
+
version "7.8.0"
|
245
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.0.tgz#4cc003dc10359919e2e3a1d9459150942913dd1a"
|
246
|
+
integrity sha512-OsdTJbHlPtIk2mmtwXItYrdmalJ8T0zpVzNAbKSkHshuywj7zb29Y09McV/jQsQunc/nEyHiPV2oy9llYMLqxw==
|
130
247
|
dependencies:
|
131
|
-
|
248
|
+
chalk "^2.0.0"
|
249
|
+
esutils "^2.0.2"
|
250
|
+
js-tokens "^4.0.0"
|
132
251
|
|
133
|
-
"@babel/
|
134
|
-
version "7.
|
135
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
136
|
-
integrity sha512-
|
137
|
-
dependencies:
|
138
|
-
"@babel/types" "^7.0.0"
|
252
|
+
"@babel/parser@^7.4.4", "@babel/parser@^7.8.0":
|
253
|
+
version "7.8.0"
|
254
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.0.tgz#54682775f1fb25dd29a93a02315aab29a6a292bb"
|
255
|
+
integrity sha512-VVtsnUYbd1+2A2vOVhm4P2qNXQE8L/W859GpUHfUcdhX8d3pEKThZuIr6fztocWx9HbK+00/CR0tXnhAggJ4CA==
|
139
256
|
|
140
|
-
"@babel/
|
141
|
-
version "7.
|
142
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
143
|
-
integrity sha512-
|
257
|
+
"@babel/plugin-proposal-async-generator-functions@^7.8.0":
|
258
|
+
version "7.8.0"
|
259
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.0.tgz#92520961d1b2220f0f2e6b576b7896698cd747f9"
|
260
|
+
integrity sha512-8vIQf8JYced7gCeKDsGETNGKE+zdD/JmP1LBlRn+w3UXc1aSpZv2Y330bB/fnOEbUgPbuFv+IEi+gopg+Fu0kQ==
|
144
261
|
dependencies:
|
145
|
-
"@babel/helper-
|
146
|
-
"@babel/helper-
|
147
|
-
"@babel/
|
148
|
-
"@babel/template" "^7.4.4"
|
149
|
-
"@babel/types" "^7.4.4"
|
150
|
-
lodash "^4.17.11"
|
262
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
263
|
+
"@babel/helper-remap-async-to-generator" "^7.8.0"
|
264
|
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
151
265
|
|
152
|
-
"@babel/
|
153
|
-
version "7.
|
154
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
155
|
-
integrity sha512-
|
266
|
+
"@babel/plugin-proposal-dynamic-import@^7.8.0":
|
267
|
+
version "7.8.0"
|
268
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.0.tgz#bbd7c00f351b55f02aec0fe9b9c42ad3f659b176"
|
269
|
+
integrity sha512-YzMq0AqeTR4Mh2pz3GrCWqhcEV38HgUMMR/56/YR5GPc4Y2p1KJ4Le6j92vMnW8TJqVj+qJz/KDNglpMeww9Yg==
|
156
270
|
dependencies:
|
157
|
-
"@babel/
|
158
|
-
|
159
|
-
"@babel/helper-plugin-utils@^7.0.0":
|
160
|
-
version "7.0.0"
|
161
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
|
162
|
-
integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
|
271
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
272
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
163
273
|
|
164
|
-
"@babel/
|
165
|
-
version "7.
|
166
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
167
|
-
integrity sha512-
|
274
|
+
"@babel/plugin-proposal-json-strings@^7.8.0":
|
275
|
+
version "7.8.0"
|
276
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.0.tgz#99fd838398c32f4d96117770f7f3591062e72607"
|
277
|
+
integrity sha512-pSpuhwn926vtNeUH2FHx1OzIXaUMgklG0MzlFZJVEg37fB904gOxN572NgBae+KDwFyZDpkLMyEkVA011lBJrQ==
|
168
278
|
dependencies:
|
169
|
-
|
170
|
-
|
171
|
-
"@babel/helper-remap-async-to-generator@^7.1.0":
|
172
|
-
version "7.1.0"
|
173
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f"
|
174
|
-
integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==
|
175
|
-
dependencies:
|
176
|
-
"@babel/helper-annotate-as-pure" "^7.0.0"
|
177
|
-
"@babel/helper-wrap-function" "^7.1.0"
|
178
|
-
"@babel/template" "^7.1.0"
|
179
|
-
"@babel/traverse" "^7.1.0"
|
180
|
-
"@babel/types" "^7.0.0"
|
181
|
-
|
182
|
-
"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.4":
|
183
|
-
version "7.4.4"
|
184
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27"
|
185
|
-
integrity sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg==
|
186
|
-
dependencies:
|
187
|
-
"@babel/helper-member-expression-to-functions" "^7.0.0"
|
188
|
-
"@babel/helper-optimise-call-expression" "^7.0.0"
|
189
|
-
"@babel/traverse" "^7.4.4"
|
190
|
-
"@babel/types" "^7.4.4"
|
279
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
280
|
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
191
281
|
|
192
|
-
"@babel/
|
193
|
-
version "7.
|
194
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
195
|
-
integrity sha512-
|
282
|
+
"@babel/plugin-proposal-nullish-coalescing-operator@^7.8.0":
|
283
|
+
version "7.8.0"
|
284
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.0.tgz#1ef61239ed2241746bc4936fc643a5c6f1cb24fa"
|
285
|
+
integrity sha512-cQMI+RQdcK2IyMm13NKKFCYfOSBUtFxEeRBOdFCi2Pubv/CpkrCubc/ikdeKMT6Lu+uQ+lNSDEJvDCOQZkUy0g==
|
196
286
|
dependencies:
|
197
|
-
"@babel/
|
198
|
-
"@babel/
|
287
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
288
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
199
289
|
|
200
|
-
"@babel/
|
201
|
-
version "7.
|
202
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
203
|
-
integrity sha512-
|
290
|
+
"@babel/plugin-proposal-object-rest-spread@^7.8.0":
|
291
|
+
version "7.8.0"
|
292
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.0.tgz#ca8ac673d32db774c2154a4c7517fd46ec45e9cf"
|
293
|
+
integrity sha512-SjJ2ZXCylpWC+5DTES0/pbpNmw/FnjU/3dF068xF0DU9aN+oOKah+3MCSFcb4pnZ9IwmxfOy4KnbGJSQR+hAZA==
|
204
294
|
dependencies:
|
205
|
-
"@babel/
|
295
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
296
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
206
297
|
|
207
|
-
"@babel/
|
208
|
-
version "7.
|
209
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
210
|
-
integrity sha512-
|
298
|
+
"@babel/plugin-proposal-optional-catch-binding@^7.8.0":
|
299
|
+
version "7.8.0"
|
300
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.0.tgz#6a7dee0bfd72751e3f1386ba4da03e6fa82fcd95"
|
301
|
+
integrity sha512-tHP3eez6TrpPJYttBZ/6uItRbIuXUIDpQ9xwvzKwR+RboWGMJ7WzFC5dDJ3vjLuCx0/DG1tM0MVkmgcBybth9w==
|
211
302
|
dependencies:
|
212
|
-
"@babel/helper-
|
213
|
-
"@babel/
|
214
|
-
"@babel/traverse" "^7.1.0"
|
215
|
-
"@babel/types" "^7.2.0"
|
303
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
304
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
216
305
|
|
217
|
-
"@babel/
|
218
|
-
version "7.
|
219
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
220
|
-
integrity sha512-
|
306
|
+
"@babel/plugin-proposal-optional-chaining@^7.8.0":
|
307
|
+
version "7.8.0"
|
308
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.0.tgz#d05e4fa3c1e4ef18eaea6bc92a4b06f95eaf1df5"
|
309
|
+
integrity sha512-PNBHxPHE91m+LLOdGwlvyGicWfrMgiVwng5WdB3CMjd61+vn3vPw0GbgECIAUCZnyi7Jqs5htUIZRztGuV8/5g==
|
221
310
|
dependencies:
|
222
|
-
"@babel/
|
223
|
-
"@babel/
|
224
|
-
"@babel/types" "^7.4.4"
|
311
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
312
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
225
313
|
|
226
|
-
"@babel/
|
227
|
-
version "7.
|
228
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
229
|
-
integrity sha512-
|
314
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.8.0":
|
315
|
+
version "7.8.0"
|
316
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.0.tgz#9e1c0481863485052bae8ac024fca7028e24ee31"
|
317
|
+
integrity sha512-3oK0Qt5w4arb+es3rWBribDbtc0TYJP7dFZ1dXcYul3cXderqfIOoSx9YUC1oD208nJwJO/++fvrgLmkYSbe8A==
|
230
318
|
dependencies:
|
231
|
-
|
232
|
-
|
233
|
-
js-tokens "^4.0.0"
|
234
|
-
|
235
|
-
"@babel/parser@^7.0.0 <7.4.0":
|
236
|
-
version "7.3.4"
|
237
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz#a43357e4bbf4b92a437fb9e465c192848287f27c"
|
238
|
-
integrity sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==
|
319
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.0"
|
320
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
239
321
|
|
240
|
-
"@babel/
|
241
|
-
version "7.
|
242
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
243
|
-
integrity sha512-
|
244
|
-
|
245
|
-
"@babel/plugin-proposal-async-generator-functions@^7.2.0":
|
246
|
-
version "7.2.0"
|
247
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
|
248
|
-
integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==
|
322
|
+
"@babel/plugin-syntax-async-generators@^7.8.0":
|
323
|
+
version "7.8.0"
|
324
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.0.tgz#e6c3dba5a61ecf72ba00a3f3f5f1234989a58e6a"
|
325
|
+
integrity sha512-a8w8k7pK8nYhem07rXdAq03T+DlTX8LFojUptrh9JEx80AgLqGiuoFIyQOGTWif39kFnDOQqbzl1s6KQqrfV+A==
|
249
326
|
dependencies:
|
250
|
-
"@babel/helper-plugin-utils" "^7.
|
251
|
-
"@babel/helper-remap-async-to-generator" "^7.1.0"
|
252
|
-
"@babel/plugin-syntax-async-generators" "^7.2.0"
|
327
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
253
328
|
|
254
|
-
"@babel/plugin-
|
255
|
-
version "7.
|
256
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
257
|
-
integrity sha512-
|
329
|
+
"@babel/plugin-syntax-dynamic-import@^7.8.0":
|
330
|
+
version "7.8.0"
|
331
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.0.tgz#3a6c1cd36af923db602df83c5aa72e08bb14353a"
|
332
|
+
integrity sha512-Mx2RzpCHJaBfmFdA2abXDKRHVJdzJ6R0Wqwb6TxCgM7NRR5wcC4cyiAsRL7Ga+lwG8GG1cKvb+4ENjic8y15jA==
|
258
333
|
dependencies:
|
259
|
-
"@babel/helper-plugin-utils" "^7.
|
260
|
-
"@babel/plugin-syntax-json-strings" "^7.2.0"
|
334
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
261
335
|
|
262
|
-
"@babel/plugin-
|
263
|
-
version "7.
|
264
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
265
|
-
integrity sha512-
|
336
|
+
"@babel/plugin-syntax-flow@^7.8.0":
|
337
|
+
version "7.8.0"
|
338
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.0.tgz#e5f92b4e21e4c8f7eb25b75f312b427799693bae"
|
339
|
+
integrity sha512-MDK9WdjDccrxzz+4sthpSDnqdf5McJwTtfBYGitOweC/j0Zg6e8wHmP4RGLTeyGYe/IySoRgKC5hvSm6ddrNRw==
|
266
340
|
dependencies:
|
267
|
-
"@babel/helper-plugin-utils" "^7.
|
268
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
|
341
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
269
342
|
|
270
|
-
"@babel/plugin-
|
271
|
-
version "7.
|
272
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
273
|
-
integrity sha512-
|
343
|
+
"@babel/plugin-syntax-json-strings@^7.8.0":
|
344
|
+
version "7.8.0"
|
345
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.0.tgz#7f798eb7e8cfd3821388120679d23d530bae6e53"
|
346
|
+
integrity sha512-LPykaAbH86L5NnDfCRSpNxtEHZk+6GaFzXfWEFU/6R4v69EXQr6GOp7hwH+Uw0QlYVN++s6TukTJ3flFcspahA==
|
274
347
|
dependencies:
|
275
|
-
"@babel/helper-plugin-utils" "^7.
|
276
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
|
348
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
277
349
|
|
278
|
-
"@babel/plugin-
|
279
|
-
version "7.
|
280
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
281
|
-
integrity sha512-
|
350
|
+
"@babel/plugin-syntax-jsx@^7.8.0":
|
351
|
+
version "7.8.0"
|
352
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.0.tgz#657a0306e2c74de84e0dcf8b6cb024ed990224fc"
|
353
|
+
integrity sha512-zLDUckAuKeOtxJhfNE0TlR7iEApb2u7EYRlh5cxKzq6A5VzUbYEdyJGJlug41jDbjRbHTtsLKZUnUcy/8V3xZw==
|
282
354
|
dependencies:
|
283
|
-
"@babel/helper-plugin-utils" "^7.
|
284
|
-
"@babel/helper-regex" "^7.4.4"
|
285
|
-
regexpu-core "^4.5.4"
|
355
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
286
356
|
|
287
|
-
"@babel/plugin-syntax-
|
288
|
-
version "7.
|
289
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
290
|
-
integrity sha512-
|
357
|
+
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
|
358
|
+
version "7.8.0"
|
359
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.0.tgz#5d8f24ecffa4ae74164e53264953c5ea8ba6d149"
|
360
|
+
integrity sha512-Rv2hnBToN6rbA9hO2a4vtwXZLzNa+TWkoSIMMvUezFz5+D9NPeX7SFrArwtFzzbwndmWiqboTr5rNpzAz0MPpA==
|
291
361
|
dependencies:
|
292
|
-
"@babel/helper-plugin-utils" "^7.
|
362
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
293
363
|
|
294
|
-
"@babel/plugin-syntax-
|
295
|
-
version "7.
|
296
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
297
|
-
integrity sha512-
|
364
|
+
"@babel/plugin-syntax-object-rest-spread@^7.8.0":
|
365
|
+
version "7.8.0"
|
366
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.0.tgz#9b37d580d459682364d8602494c69145b394fd4c"
|
367
|
+
integrity sha512-dt89fDlkfkTrQcy5KavMQPyF2A6tR0kYp8HAnIoQv5hO34iAUffHghP/hMGd7Gf/+uYTmLQO0ar7peX1SUWyIA==
|
298
368
|
dependencies:
|
299
|
-
"@babel/helper-plugin-utils" "^7.
|
369
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
300
370
|
|
301
|
-
"@babel/plugin-syntax-
|
302
|
-
version "7.
|
303
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
304
|
-
integrity sha512-
|
371
|
+
"@babel/plugin-syntax-optional-catch-binding@^7.8.0":
|
372
|
+
version "7.8.0"
|
373
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.0.tgz#180c7bdd6b7fd81cc6d18269de12d5ddd60cabce"
|
374
|
+
integrity sha512-EIgJVy+u1RvR2gJfX4ReLwAupO/twllUue1wPrRxhu18+eC3bGTEcOSXLQdaE9ya9NG1rE0eQs0GSiloUGFEwg==
|
305
375
|
dependencies:
|
306
|
-
"@babel/helper-plugin-utils" "^7.
|
376
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
307
377
|
|
308
|
-
"@babel/plugin-syntax-
|
309
|
-
version "7.
|
310
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
311
|
-
integrity sha512-
|
378
|
+
"@babel/plugin-syntax-optional-chaining@^7.8.0":
|
379
|
+
version "7.8.0"
|
380
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.0.tgz#c40f4d4d6a4f5e71d2bfd949b0a7f1e1e6792fe0"
|
381
|
+
integrity sha512-LV1c+TTAO8Vawe3t+WXBHYWbS7endP8MSlqKPKEZOyWPEJX2akl3jfvFG828/OE7RpyoC3JXfLJDFj/jN7A8hg==
|
312
382
|
dependencies:
|
313
|
-
"@babel/helper-plugin-utils" "^7.
|
383
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
314
384
|
|
315
|
-
"@babel/plugin-syntax-
|
316
|
-
version "7.
|
317
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
318
|
-
integrity sha512-
|
385
|
+
"@babel/plugin-syntax-top-level-await@^7.8.0":
|
386
|
+
version "7.8.0"
|
387
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.0.tgz#8d45e3d68a1e26bce79c51b08dd9126290686207"
|
388
|
+
integrity sha512-iXR/Cw32fMfWlD1sK2zD/nXtuLStkalRv+xee6VrX84CFrn2LKwb/EOs/4UaDNUpUsws8YZYKeQjPagacFquug==
|
319
389
|
dependencies:
|
320
|
-
"@babel/helper-plugin-utils" "^7.
|
390
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
321
391
|
|
322
|
-
"@babel/plugin-
|
323
|
-
version "7.
|
324
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
325
|
-
integrity sha512-
|
392
|
+
"@babel/plugin-transform-arrow-functions@^7.8.0":
|
393
|
+
version "7.8.0"
|
394
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.0.tgz#d98b7c425fed35f70cb85024a2b10008936631b3"
|
395
|
+
integrity sha512-9KfteDp9d8cF388dxFMOh3Dum41qpOVUPVjQhXGd1kPyQBE05FJgYndiAriML2yhMIbZ2bjgweh2nnvBXDH2MQ==
|
326
396
|
dependencies:
|
327
|
-
"@babel/helper-plugin-utils" "^7.
|
397
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
328
398
|
|
329
|
-
"@babel/plugin-transform-
|
330
|
-
version "7.
|
331
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
332
|
-
integrity sha512-
|
399
|
+
"@babel/plugin-transform-async-to-generator@^7.8.0":
|
400
|
+
version "7.8.0"
|
401
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.0.tgz#6561fb6445d89bc20b72150430944cad0e501e4a"
|
402
|
+
integrity sha512-9dvBvJnEdsDWYMrykoMyLNVRPGoub6SFlARtsYgSQ1riTjnyBjhctihSME4XsSku86F59PDeFpC9PCU+9I154w==
|
333
403
|
dependencies:
|
334
|
-
"@babel/helper-
|
404
|
+
"@babel/helper-module-imports" "^7.8.0"
|
405
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
406
|
+
"@babel/helper-remap-async-to-generator" "^7.8.0"
|
335
407
|
|
336
|
-
"@babel/plugin-transform-
|
337
|
-
version "7.
|
338
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
339
|
-
integrity sha512-
|
408
|
+
"@babel/plugin-transform-block-scoped-functions@^7.8.0":
|
409
|
+
version "7.8.0"
|
410
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.0.tgz#2ea8a33ec78825ce91244980389cb96d4c6dc6bd"
|
411
|
+
integrity sha512-bim6gUfHq2kPN+aQst33ZEMeglpaUXAo6PWTZvOA8BOnWpNKgZcUzBvpZhh2ofL6YhZgzGoRwVVfzwynDEf47g==
|
340
412
|
dependencies:
|
341
|
-
"@babel/helper-
|
342
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
343
|
-
"@babel/helper-remap-async-to-generator" "^7.1.0"
|
413
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
344
414
|
|
345
|
-
"@babel/plugin-transform-block-
|
346
|
-
version "7.
|
347
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-
|
348
|
-
integrity sha512-
|
415
|
+
"@babel/plugin-transform-block-scoping@^7.8.0":
|
416
|
+
version "7.8.0"
|
417
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.0.tgz#f6a81bc8c76dbbd202b718cb9e681a27f1d0af8f"
|
418
|
+
integrity sha512-FKTK4hzg7W950Yu9iqMl12WBixCmusMc5HBt3/ErvpFLnvr3/6mu/EBTZoCEJ0mw/lQUDfU01vTcZY9oEahlMg==
|
349
419
|
dependencies:
|
350
|
-
"@babel/helper-plugin-utils" "^7.
|
420
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
421
|
+
lodash "^4.17.13"
|
351
422
|
|
352
|
-
"@babel/plugin-transform-
|
353
|
-
version "7.
|
354
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
355
|
-
integrity sha512-
|
423
|
+
"@babel/plugin-transform-classes@^7.8.0":
|
424
|
+
version "7.8.0"
|
425
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.0.tgz#eb4699613b3ea3ccaf095bb0447dac55f7454fc9"
|
426
|
+
integrity sha512-18RLDwKtGXCLLbf5V03GojebPH7dKYCmIBqQGhgfZDoYsyEzR9kMZ6IxlJP72K5ROC9ADa4KPI6ywuh7NfQOgQ==
|
356
427
|
dependencies:
|
357
|
-
"@babel/helper-
|
358
|
-
|
359
|
-
|
360
|
-
"@babel/
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
dependencies:
|
365
|
-
"@babel/helper-annotate-as-pure" "^7.0.0"
|
366
|
-
"@babel/helper-define-map" "^7.4.4"
|
367
|
-
"@babel/helper-function-name" "^7.1.0"
|
368
|
-
"@babel/helper-optimise-call-expression" "^7.0.0"
|
369
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
370
|
-
"@babel/helper-replace-supers" "^7.4.4"
|
371
|
-
"@babel/helper-split-export-declaration" "^7.4.4"
|
428
|
+
"@babel/helper-annotate-as-pure" "^7.8.0"
|
429
|
+
"@babel/helper-define-map" "^7.8.0"
|
430
|
+
"@babel/helper-function-name" "^7.8.0"
|
431
|
+
"@babel/helper-optimise-call-expression" "^7.8.0"
|
432
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
433
|
+
"@babel/helper-replace-supers" "^7.8.0"
|
434
|
+
"@babel/helper-split-export-declaration" "^7.8.0"
|
372
435
|
globals "^11.1.0"
|
373
436
|
|
374
|
-
"@babel/plugin-transform-computed-properties@^7.
|
375
|
-
version "7.
|
376
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.
|
377
|
-
integrity sha512-
|
378
|
-
dependencies:
|
379
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
380
|
-
|
381
|
-
"@babel/plugin-transform-destructuring@^7.2.0":
|
382
|
-
version "7.4.4"
|
383
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz#9d964717829cc9e4b601fc82a26a71a4d8faf20f"
|
384
|
-
integrity sha512-/aOx+nW0w8eHiEHm+BTERB2oJn5D127iye/SUQl7NjHy0lf+j7h4MKMMSOwdazGq9OxgiNADncE+SRJkCxjZpQ==
|
437
|
+
"@babel/plugin-transform-computed-properties@^7.8.0":
|
438
|
+
version "7.8.0"
|
439
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.0.tgz#c86c200ea42cbecda754fdf636a04dfbf6371cc7"
|
440
|
+
integrity sha512-FaODHuQRdnWFVwxLPlTN85Lk/aitfvQBHTXahf58FnatCynfhkeNUO8ID+AqAxY4IJsZjeH6OnKDzcGfgKJcVw==
|
385
441
|
dependencies:
|
386
|
-
"@babel/helper-plugin-utils" "^7.
|
442
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
387
443
|
|
388
|
-
"@babel/plugin-transform-
|
389
|
-
version "7.
|
390
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
391
|
-
integrity sha512-
|
444
|
+
"@babel/plugin-transform-destructuring@^7.8.0":
|
445
|
+
version "7.8.0"
|
446
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.0.tgz#579d09e8dabf825cc3ac1524414ff99669f0abf9"
|
447
|
+
integrity sha512-D+69HT//cE86aBTLULzSBFLC5A7HcPQzJPiny6P4SLHkDF750MylRKO3iWvdgvb+OSp5dOrOxwXajvaxk1ZfYA==
|
392
448
|
dependencies:
|
393
|
-
"@babel/helper-plugin-utils" "^7.
|
394
|
-
"@babel/helper-regex" "^7.4.4"
|
395
|
-
regexpu-core "^4.5.4"
|
449
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
396
450
|
|
397
|
-
"@babel/plugin-transform-
|
398
|
-
version "7.
|
399
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
400
|
-
integrity sha512-
|
451
|
+
"@babel/plugin-transform-dotall-regex@^7.8.0":
|
452
|
+
version "7.8.0"
|
453
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.0.tgz#7e9e439e85219be091c5dbf1be138320600d1172"
|
454
|
+
integrity sha512-pq/XLkDB4MPvTe9ktHJInfWksalXogrIGRZJUG7RiDXhEfdNrlducoMPbACZQuCFtelVgVpD0VyreiY0l38G7g==
|
401
455
|
dependencies:
|
402
|
-
"@babel/helper-plugin
|
456
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.0"
|
457
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
403
458
|
|
404
|
-
"@babel/plugin-transform-
|
405
|
-
version "7.
|
406
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
407
|
-
integrity sha512-
|
459
|
+
"@babel/plugin-transform-duplicate-keys@^7.8.0":
|
460
|
+
version "7.8.0"
|
461
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.0.tgz#913b3fdb5cbd35e3208b017dac5ef335ef6b0d65"
|
462
|
+
integrity sha512-REtYWvpP4TDw4oVeP01vQJcAeewjgk8/i7tPFP11vUjvarUGGyxJLeq79WEnIdnKPQJirZaoDRT4kEWEdSWkDw==
|
408
463
|
dependencies:
|
409
|
-
"@babel/helper-
|
410
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
464
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
411
465
|
|
412
|
-
"@babel/plugin-transform-
|
413
|
-
version "7.
|
414
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
415
|
-
integrity sha512-
|
466
|
+
"@babel/plugin-transform-exponentiation-operator@^7.8.0":
|
467
|
+
version "7.8.0"
|
468
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.0.tgz#72ddf89e1acfac75482992b8976df62f8ad813c4"
|
469
|
+
integrity sha512-vaDgF3gPLzVcoe3UZqnra6FA7O797sZc+UCHPd9eQTI34cPtpCA270LzopIXS3Fhc3UmFrijLmre9mHTmUKVgg==
|
416
470
|
dependencies:
|
417
|
-
"@babel/helper-
|
418
|
-
"@babel/plugin-
|
471
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.0"
|
472
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
419
473
|
|
420
|
-
"@babel/plugin-transform-
|
421
|
-
version "7.
|
422
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
423
|
-
integrity sha512-
|
474
|
+
"@babel/plugin-transform-flow-strip-types@^7.4.4":
|
475
|
+
version "7.8.0"
|
476
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.8.0.tgz#d35294e7be31f2063f6e3a5ec6146c28efb50db1"
|
477
|
+
integrity sha512-yKcww1yWfAHWk4R7OeU0YnrWEIrSodFr1TibfkrP8t0RDXSyGIDnahz8lzXagNT/XlZC3sWpsYXhty9xAU3ULQ==
|
424
478
|
dependencies:
|
425
|
-
"@babel/helper-plugin-utils" "^7.
|
479
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
480
|
+
"@babel/plugin-syntax-flow" "^7.8.0"
|
426
481
|
|
427
|
-
"@babel/plugin-transform-
|
428
|
-
version "7.
|
429
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
430
|
-
integrity sha512-
|
482
|
+
"@babel/plugin-transform-for-of@^7.8.0":
|
483
|
+
version "7.8.0"
|
484
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.0.tgz#4a2960b76d42f4cc8a821edb66f4a7eadf6042ce"
|
485
|
+
integrity sha512-9j9g0qViCAo8E5qCBSaQdghymn7A9bRXSfS9jU7oLpYccYFZg9A+1KO8X+HV7fhJYH6mZ+e7MRg4p3sLo+RG6Q==
|
431
486
|
dependencies:
|
432
|
-
"@babel/helper-
|
433
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
487
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
434
488
|
|
435
|
-
"@babel/plugin-transform-
|
436
|
-
version "7.
|
437
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
438
|
-
integrity sha512-
|
489
|
+
"@babel/plugin-transform-function-name@^7.8.0":
|
490
|
+
version "7.8.0"
|
491
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.0.tgz#9c5fdb20967f151c0e06419621d56d63120653c9"
|
492
|
+
integrity sha512-YL8Ol54UKeIyY1uUGfry+B9ppXAB3aVBB1gG9gxqhg/OBCPpV2QUNswmjvfmyXEdaWv8qODssBgX7on792h44w==
|
439
493
|
dependencies:
|
440
|
-
"@babel/helper-
|
494
|
+
"@babel/helper-function-name" "^7.8.0"
|
495
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
441
496
|
|
442
|
-
"@babel/plugin-transform-
|
443
|
-
version "7.
|
444
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
445
|
-
integrity sha512-
|
497
|
+
"@babel/plugin-transform-literals@^7.8.0":
|
498
|
+
version "7.8.0"
|
499
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.0.tgz#bda7a4773293ee9b687174eb4e1f91fe37ed576f"
|
500
|
+
integrity sha512-7UDPKG+uVltsZt98Hw+rMbLg772r8fQC6YJ2fNDckcpAXgIWqQbMCmCpfYo0hBNhdhqocM73auk4P/zziQshQw==
|
446
501
|
dependencies:
|
447
|
-
"@babel/helper-
|
448
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
502
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
449
503
|
|
450
|
-
"@babel/plugin-transform-
|
451
|
-
version "7.
|
452
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
453
|
-
integrity sha512-
|
504
|
+
"@babel/plugin-transform-member-expression-literals@^7.8.0":
|
505
|
+
version "7.8.0"
|
506
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.0.tgz#da3e170e99c2fd1110785cc6146aa2f45429f664"
|
507
|
+
integrity sha512-lJSdaWR56wmrosCiyqKFRVnLrFYoVAk2mtZAyegt7akeJky/gguv0Rukx9GV3XwHGuM1ZPE06cZMjNlcLp8LrQ==
|
454
508
|
dependencies:
|
455
|
-
"@babel/helper-
|
456
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
457
|
-
"@babel/helper-simple-access" "^7.1.0"
|
509
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
458
510
|
|
459
|
-
"@babel/plugin-transform-modules-
|
460
|
-
version "7.
|
461
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-
|
462
|
-
integrity sha512-
|
511
|
+
"@babel/plugin-transform-modules-amd@^7.8.0":
|
512
|
+
version "7.8.0"
|
513
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.0.tgz#09f4fb47a2a7d4471866afeb446bc9a068a091b0"
|
514
|
+
integrity sha512-mFr1O3TaDL4XozM3AzNPz9AsxzzjTxwn4aOShYP5TlO+4rufvjagV2KKDTPMZTQm1ZA/C/PxJDsDekEnnUGz5A==
|
463
515
|
dependencies:
|
464
|
-
"@babel/helper-module-transforms" "^7.
|
465
|
-
"@babel/helper-plugin-utils" "^7.
|
466
|
-
|
516
|
+
"@babel/helper-module-transforms" "^7.8.0"
|
517
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
518
|
+
babel-plugin-dynamic-import-node "^2.3.0"
|
467
519
|
|
468
|
-
"@babel/plugin-transform-modules-
|
469
|
-
version "7.
|
470
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-
|
471
|
-
integrity sha512-
|
520
|
+
"@babel/plugin-transform-modules-commonjs@^7.4.4", "@babel/plugin-transform-modules-commonjs@^7.8.0":
|
521
|
+
version "7.8.0"
|
522
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.0.tgz#69c682a41905f8885ffb9c37ab34ad1fe8ec3fd7"
|
523
|
+
integrity sha512-w2g8tmL7NgBYt6alc8YawMcmPiYqnVvvI0kLB++VOUOssqdJMAkfQOMGV+2M8H5uhJYDaAghAVMUYps3s+jMrw==
|
472
524
|
dependencies:
|
473
|
-
"@babel/helper-
|
474
|
-
"@babel/helper-plugin-utils" "^7.
|
525
|
+
"@babel/helper-module-transforms" "^7.8.0"
|
526
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
527
|
+
"@babel/helper-simple-access" "^7.8.0"
|
528
|
+
babel-plugin-dynamic-import-node "^2.3.0"
|
475
529
|
|
476
|
-
"@babel/plugin-transform-modules-
|
477
|
-
version "7.
|
478
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-
|
479
|
-
integrity sha512-
|
530
|
+
"@babel/plugin-transform-modules-systemjs@^7.8.0":
|
531
|
+
version "7.8.0"
|
532
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.0.tgz#b0ff0106a7f8a465a75ce5167c88b648770b0a0c"
|
533
|
+
integrity sha512-tKF9KLiIsiKyWTVU0yo+NcNAylGn7euggYwXw63/tMxGtDTPsB9Y7Ecqv4EoXEwtoJOJ0Lewf17oaWQtindxIA==
|
480
534
|
dependencies:
|
481
|
-
"@babel/helper-
|
482
|
-
"@babel/helper-
|
483
|
-
|
484
|
-
|
485
|
-
version "7.4.4"
|
486
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.4.tgz#5611d96d987dfc4a3a81c4383bb173361037d68d"
|
487
|
-
integrity sha512-Ki+Y9nXBlKfhD+LXaRS7v95TtTGYRAf9Y1rTDiE75zf8YQz4GDaWRXosMfJBXxnk88mGFjWdCRIeqDbon7spYA==
|
488
|
-
dependencies:
|
489
|
-
regexp-tree "^0.1.0"
|
490
|
-
|
491
|
-
"@babel/plugin-transform-new-target@^7.0.0":
|
492
|
-
version "7.4.4"
|
493
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5"
|
494
|
-
integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA==
|
495
|
-
dependencies:
|
496
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
497
|
-
|
498
|
-
"@babel/plugin-transform-object-super@^7.2.0":
|
499
|
-
version "7.2.0"
|
500
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598"
|
501
|
-
integrity sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg==
|
502
|
-
dependencies:
|
503
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
504
|
-
"@babel/helper-replace-supers" "^7.1.0"
|
505
|
-
|
506
|
-
"@babel/plugin-transform-parameters@^7.2.0":
|
507
|
-
version "7.4.4"
|
508
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16"
|
509
|
-
integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw==
|
510
|
-
dependencies:
|
511
|
-
"@babel/helper-call-delegate" "^7.4.4"
|
512
|
-
"@babel/helper-get-function-arity" "^7.0.0"
|
513
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
514
|
-
|
515
|
-
"@babel/plugin-transform-react-jsx@^7.0.0 <7.4.0":
|
516
|
-
version "7.3.0"
|
517
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290"
|
518
|
-
integrity sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg==
|
519
|
-
dependencies:
|
520
|
-
"@babel/helper-builder-react-jsx" "^7.3.0"
|
521
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
522
|
-
"@babel/plugin-syntax-jsx" "^7.2.0"
|
523
|
-
|
524
|
-
"@babel/plugin-transform-regenerator@^7.3.4":
|
525
|
-
version "7.4.4"
|
526
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.4.tgz#5b4da4df79391895fca9e28f99e87e22cfc02072"
|
527
|
-
integrity sha512-Zz3w+pX1SI0KMIiqshFZkwnVGUhDZzpX2vtPzfJBKQQq8WsP/Xy9DNdELWivxcKOCX/Pywge4SiEaPaLtoDT4g==
|
528
|
-
dependencies:
|
529
|
-
regenerator-transform "^0.13.4"
|
530
|
-
|
531
|
-
"@babel/plugin-transform-shorthand-properties@^7.2.0":
|
532
|
-
version "7.2.0"
|
533
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0"
|
534
|
-
integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==
|
535
|
-
dependencies:
|
536
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
537
|
-
|
538
|
-
"@babel/plugin-transform-spread@^7.2.0":
|
539
|
-
version "7.2.2"
|
540
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406"
|
541
|
-
integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==
|
542
|
-
dependencies:
|
543
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
544
|
-
|
545
|
-
"@babel/plugin-transform-sticky-regex@^7.2.0":
|
546
|
-
version "7.2.0"
|
547
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1"
|
548
|
-
integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw==
|
549
|
-
dependencies:
|
550
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
551
|
-
"@babel/helper-regex" "^7.0.0"
|
552
|
-
|
553
|
-
"@babel/plugin-transform-template-literals@^7.2.0":
|
554
|
-
version "7.4.4"
|
555
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0"
|
556
|
-
integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g==
|
557
|
-
dependencies:
|
558
|
-
"@babel/helper-annotate-as-pure" "^7.0.0"
|
559
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
560
|
-
|
561
|
-
"@babel/plugin-transform-typeof-symbol@^7.2.0":
|
562
|
-
version "7.2.0"
|
563
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2"
|
564
|
-
integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==
|
565
|
-
dependencies:
|
566
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
567
|
-
|
568
|
-
"@babel/plugin-transform-unicode-regex@^7.2.0":
|
569
|
-
version "7.4.4"
|
570
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f"
|
571
|
-
integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA==
|
572
|
-
dependencies:
|
573
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
574
|
-
"@babel/helper-regex" "^7.4.4"
|
575
|
-
regexpu-core "^4.5.4"
|
576
|
-
|
577
|
-
"@babel/preset-env@^7.0.0 <7.4.0":
|
578
|
-
version "7.3.4"
|
579
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.3.4.tgz#887cf38b6d23c82f19b5135298bdb160062e33e1"
|
580
|
-
integrity sha512-2mwqfYMK8weA0g0uBKOt4FE3iEodiHy9/CW0b+nWXcbL+pGzLx8ESYc+j9IIxr6LTDHWKgPm71i9smo02bw+gA==
|
581
|
-
dependencies:
|
582
|
-
"@babel/helper-module-imports" "^7.0.0"
|
583
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
584
|
-
"@babel/plugin-proposal-async-generator-functions" "^7.2.0"
|
585
|
-
"@babel/plugin-proposal-json-strings" "^7.2.0"
|
586
|
-
"@babel/plugin-proposal-object-rest-spread" "^7.3.4"
|
587
|
-
"@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
|
588
|
-
"@babel/plugin-proposal-unicode-property-regex" "^7.2.0"
|
589
|
-
"@babel/plugin-syntax-async-generators" "^7.2.0"
|
590
|
-
"@babel/plugin-syntax-json-strings" "^7.2.0"
|
591
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
|
592
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
|
593
|
-
"@babel/plugin-transform-arrow-functions" "^7.2.0"
|
594
|
-
"@babel/plugin-transform-async-to-generator" "^7.3.4"
|
595
|
-
"@babel/plugin-transform-block-scoped-functions" "^7.2.0"
|
596
|
-
"@babel/plugin-transform-block-scoping" "^7.3.4"
|
597
|
-
"@babel/plugin-transform-classes" "^7.3.4"
|
598
|
-
"@babel/plugin-transform-computed-properties" "^7.2.0"
|
599
|
-
"@babel/plugin-transform-destructuring" "^7.2.0"
|
600
|
-
"@babel/plugin-transform-dotall-regex" "^7.2.0"
|
601
|
-
"@babel/plugin-transform-duplicate-keys" "^7.2.0"
|
602
|
-
"@babel/plugin-transform-exponentiation-operator" "^7.2.0"
|
603
|
-
"@babel/plugin-transform-for-of" "^7.2.0"
|
604
|
-
"@babel/plugin-transform-function-name" "^7.2.0"
|
605
|
-
"@babel/plugin-transform-literals" "^7.2.0"
|
606
|
-
"@babel/plugin-transform-modules-amd" "^7.2.0"
|
607
|
-
"@babel/plugin-transform-modules-commonjs" "^7.2.0"
|
608
|
-
"@babel/plugin-transform-modules-systemjs" "^7.3.4"
|
609
|
-
"@babel/plugin-transform-modules-umd" "^7.2.0"
|
610
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.3.0"
|
611
|
-
"@babel/plugin-transform-new-target" "^7.0.0"
|
612
|
-
"@babel/plugin-transform-object-super" "^7.2.0"
|
613
|
-
"@babel/plugin-transform-parameters" "^7.2.0"
|
614
|
-
"@babel/plugin-transform-regenerator" "^7.3.4"
|
615
|
-
"@babel/plugin-transform-shorthand-properties" "^7.2.0"
|
616
|
-
"@babel/plugin-transform-spread" "^7.2.0"
|
617
|
-
"@babel/plugin-transform-sticky-regex" "^7.2.0"
|
618
|
-
"@babel/plugin-transform-template-literals" "^7.2.0"
|
619
|
-
"@babel/plugin-transform-typeof-symbol" "^7.2.0"
|
620
|
-
"@babel/plugin-transform-unicode-regex" "^7.2.0"
|
621
|
-
browserslist "^4.3.4"
|
622
|
-
invariant "^2.2.2"
|
623
|
-
js-levenshtein "^1.1.3"
|
624
|
-
semver "^5.3.0"
|
535
|
+
"@babel/helper-hoist-variables" "^7.8.0"
|
536
|
+
"@babel/helper-module-transforms" "^7.8.0"
|
537
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
538
|
+
babel-plugin-dynamic-import-node "^2.3.0"
|
625
539
|
|
626
|
-
"@babel/
|
627
|
-
version "7.
|
628
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
629
|
-
integrity sha512-
|
540
|
+
"@babel/plugin-transform-modules-umd@^7.8.0":
|
541
|
+
version "7.8.0"
|
542
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.0.tgz#edc1a7a587a31a185070421f97ae3798b15df9b7"
|
543
|
+
integrity sha512-lAwNfXwmfTy7fl2XOyoVpMXnLkJANgH0vdSYNFcS4RuJPBtHfunGA+Y0L7wsHmfPzyVYt8sUglLjaWtdZMNJNg==
|
630
544
|
dependencies:
|
631
|
-
|
545
|
+
"@babel/helper-module-transforms" "^7.8.0"
|
546
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
632
547
|
|
633
|
-
"@babel/
|
634
|
-
version "7.
|
635
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
636
|
-
integrity sha512-
|
548
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.8.0":
|
549
|
+
version "7.8.0"
|
550
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.0.tgz#718e168e7f5ab83fa7e4dfd0cf1831804fc016f0"
|
551
|
+
integrity sha512-kq1rxQ1HviCP13SMGZ4WjBBpdogTGK7yn/g/+p+g1AQledgHOWKVeMY1DwKYGlGJ/grDGTOqpJLF1v3Sb7ghKA==
|
637
552
|
dependencies:
|
638
|
-
"@babel/
|
639
|
-
"@babel/parser" "^7.2.2"
|
640
|
-
"@babel/types" "^7.2.2"
|
553
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.0"
|
641
554
|
|
642
|
-
"@babel/
|
643
|
-
version "7.
|
644
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
645
|
-
integrity sha512-
|
555
|
+
"@babel/plugin-transform-new-target@^7.8.0":
|
556
|
+
version "7.8.0"
|
557
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.0.tgz#54d126788abc648cab27bc9b74a8306b4158f70f"
|
558
|
+
integrity sha512-hH1Afz9Xy/wkcxhoI0vYw48kTBJqYUhMmhp3SLI1p817iByM6ItH4LS8tZatDAIKmAQAXj8d3Ups1BgVJECDrA==
|
646
559
|
dependencies:
|
647
|
-
"@babel/
|
648
|
-
"@babel/parser" "^7.4.4"
|
649
|
-
"@babel/types" "^7.4.4"
|
560
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
650
561
|
|
651
|
-
"@babel/
|
652
|
-
version "7.
|
653
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
654
|
-
integrity sha512-
|
655
|
-
dependencies:
|
656
|
-
"@babel/
|
657
|
-
"@babel/
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
562
|
+
"@babel/plugin-transform-object-super@^7.8.0":
|
563
|
+
version "7.8.0"
|
564
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.0.tgz#aa35d295dd62b84bbea2e155e0b3a2017eb2f4e8"
|
565
|
+
integrity sha512-2DYqQ811nRlFVlni6iqfxBVVGqkBgfvEv/lcvmdNu2CaG+EA7zSP1hqYUsqamR+uCdDbsrV7uY6/0rkXbJo5YQ==
|
566
|
+
dependencies:
|
567
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
568
|
+
"@babel/helper-replace-supers" "^7.8.0"
|
569
|
+
|
570
|
+
"@babel/plugin-transform-parameters@^7.8.0":
|
571
|
+
version "7.8.0"
|
572
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.0.tgz#edc1531beed51fb8a49e0a3f11ca6b508d083d6f"
|
573
|
+
integrity sha512-9R2yykk7H92rntETO0fq52vJ4OFaTcDA49K9s8bQPyoD4o3/SkWEklukArCsQC6fowEuraPkH/umopr9uO539g==
|
574
|
+
dependencies:
|
575
|
+
"@babel/helper-call-delegate" "^7.8.0"
|
576
|
+
"@babel/helper-get-function-arity" "^7.8.0"
|
577
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
578
|
+
|
579
|
+
"@babel/plugin-transform-property-literals@^7.8.0":
|
580
|
+
version "7.8.0"
|
581
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.0.tgz#af7538d916935ece100e72123fce109182c01ac3"
|
582
|
+
integrity sha512-vjZaQlojnZIahu5ofEW+hPJfDI5A6r2Sbi5C0RuCaAOFj7viDIR5kOR7ul3Fz5US8V1sVk5Zd2yuPaz7iBeysg==
|
583
|
+
dependencies:
|
584
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
585
|
+
|
586
|
+
"@babel/plugin-transform-react-jsx@^7.0.0":
|
587
|
+
version "7.8.0"
|
588
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.8.0.tgz#5676f2a13befc16fa2a78bc557e02ff150c02a28"
|
589
|
+
integrity sha512-r5DgP2ZblaGmW/azRS9rlaf3oY4r/ByXRDA5Lcr3iHUkx3cCfL9RM10gU7AQmzwKymoq8LZ55sHyq9VeQFHwyQ==
|
590
|
+
dependencies:
|
591
|
+
"@babel/helper-builder-react-jsx" "^7.8.0"
|
592
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
593
|
+
"@babel/plugin-syntax-jsx" "^7.8.0"
|
594
|
+
|
595
|
+
"@babel/plugin-transform-regenerator@^7.8.0":
|
596
|
+
version "7.8.0"
|
597
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.0.tgz#4a0a40af2f7d60a54a3fd7ce58f06b12ab14eaf9"
|
598
|
+
integrity sha512-n88GT8PZuOHWxqxCJORW3g1QaYzQhHu5sEslxYeQkHVoewfnfuWN37t7YGaRLaNUdaZUlRPXhDcLGT7zBa/u0g==
|
599
|
+
dependencies:
|
600
|
+
regenerator-transform "^0.14.0"
|
601
|
+
|
602
|
+
"@babel/plugin-transform-reserved-words@^7.8.0":
|
603
|
+
version "7.8.0"
|
604
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.0.tgz#572f21e11b9271e67cc5695890b8d5e58186f51e"
|
605
|
+
integrity sha512-DnshRyDTXZhmAgO2c1QKZI4CfZjoP2t3fSwRsnbCP9P/FSBpf9I7ovnAELswklw5OeY+/D/JIiaGLoUt2II3LA==
|
606
|
+
dependencies:
|
607
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
608
|
+
|
609
|
+
"@babel/plugin-transform-shorthand-properties@^7.8.0":
|
610
|
+
version "7.8.0"
|
611
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.0.tgz#38b43048e633878f82a3ef1353868c12015ac838"
|
612
|
+
integrity sha512-sExhzq63Gl2PMbl7ETpN7Z1A38rLD6GeCT6EEEIIKjTVt9u6dRqJ6nHhaquL7QgR3egj/8fcvq23UvzfPqGAYA==
|
613
|
+
dependencies:
|
614
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
615
|
+
|
616
|
+
"@babel/plugin-transform-spread@^7.8.0":
|
617
|
+
version "7.8.0"
|
618
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.0.tgz#939e17585b1f24535fdeafc5e11a439520f4b3ab"
|
619
|
+
integrity sha512-6Zjl0pv6x10YmFVRI0VhwJ/rE++geVHNJ9xwd+UIt3ON2VMRO7qI2lPsyLnzidR5HYNd/JXj47kdU9Rrn4YcnQ==
|
620
|
+
dependencies:
|
621
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
622
|
+
|
623
|
+
"@babel/plugin-transform-sticky-regex@^7.8.0":
|
624
|
+
version "7.8.0"
|
625
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.0.tgz#98f634d133f7be471e1e6ccc613c6a95e7e9f1f5"
|
626
|
+
integrity sha512-uksok0Bqox8YeIRFhr6RRtlBXeGpN1ogiEVjEd7A7rVLPZBXKGbL7kODpE7MQ+avjDLv5EEKtDCeYuWZK7FF7g==
|
627
|
+
dependencies:
|
628
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
629
|
+
"@babel/helper-regex" "^7.8.0"
|
630
|
+
|
631
|
+
"@babel/plugin-transform-template-literals@^7.8.0":
|
632
|
+
version "7.8.0"
|
633
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.0.tgz#2e19e890cc5b0d58643ee6986840e928d707f7ef"
|
634
|
+
integrity sha512-EF7Q7LEgeMpogHcvmHMNXBWdLWG1tpA1ErXH3i8zTu3+UEKo6aBn+FldPAJ16UbbbOwSCUCiDP6oZxvVRPhwnQ==
|
635
|
+
dependencies:
|
636
|
+
"@babel/helper-annotate-as-pure" "^7.8.0"
|
637
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
638
|
+
|
639
|
+
"@babel/plugin-transform-typeof-symbol@^7.8.0":
|
640
|
+
version "7.8.0"
|
641
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.0.tgz#a8d0dd317349d3dcbb9d659808099c94486554a5"
|
642
|
+
integrity sha512-rEUBEFzsA9mCS2r7EtXFlM/6GqtzgLdC4WVYM9fIgJX+HcSJ8oMmj8LinfKhbo0ipRauvUM2teE2iNDNqDwO1g==
|
643
|
+
dependencies:
|
644
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
645
|
+
|
646
|
+
"@babel/plugin-transform-unicode-regex@^7.8.0":
|
647
|
+
version "7.8.0"
|
648
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.0.tgz#20988246a9d98271f861be422e5a17898b80e5b0"
|
649
|
+
integrity sha512-qDg8wsnE47B/Sj8ZtOndPHrGBxJMssZJ71SzXrItum9n++iVFN7kYuJO+OHhjom7+/or0zzYqvJNzCkUjyNKqg==
|
650
|
+
dependencies:
|
651
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.0"
|
652
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
653
|
+
|
654
|
+
"@babel/preset-env@^7.4.4":
|
655
|
+
version "7.8.0"
|
656
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.8.0.tgz#f0a0a353091cb2135e9aea21ed9c4563c51bd31f"
|
657
|
+
integrity sha512-g3wnth3Ct+ZvnaHcvb5PQyojqNj0whXTkO7hatXgz+lQ2FphOoXrG1JMIfeaHgDakGzx3LiNe0KsWO69xSVFDA==
|
658
|
+
dependencies:
|
659
|
+
"@babel/compat-data" "^7.8.0"
|
660
|
+
"@babel/helper-compilation-targets" "^7.8.0"
|
661
|
+
"@babel/helper-module-imports" "^7.8.0"
|
662
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
663
|
+
"@babel/plugin-proposal-async-generator-functions" "^7.8.0"
|
664
|
+
"@babel/plugin-proposal-dynamic-import" "^7.8.0"
|
665
|
+
"@babel/plugin-proposal-json-strings" "^7.8.0"
|
666
|
+
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.0"
|
667
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.8.0"
|
668
|
+
"@babel/plugin-proposal-optional-catch-binding" "^7.8.0"
|
669
|
+
"@babel/plugin-proposal-optional-chaining" "^7.8.0"
|
670
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.8.0"
|
671
|
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
672
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
673
|
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
674
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
675
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
676
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
677
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
678
|
+
"@babel/plugin-syntax-top-level-await" "^7.8.0"
|
679
|
+
"@babel/plugin-transform-arrow-functions" "^7.8.0"
|
680
|
+
"@babel/plugin-transform-async-to-generator" "^7.8.0"
|
681
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.8.0"
|
682
|
+
"@babel/plugin-transform-block-scoping" "^7.8.0"
|
683
|
+
"@babel/plugin-transform-classes" "^7.8.0"
|
684
|
+
"@babel/plugin-transform-computed-properties" "^7.8.0"
|
685
|
+
"@babel/plugin-transform-destructuring" "^7.8.0"
|
686
|
+
"@babel/plugin-transform-dotall-regex" "^7.8.0"
|
687
|
+
"@babel/plugin-transform-duplicate-keys" "^7.8.0"
|
688
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.8.0"
|
689
|
+
"@babel/plugin-transform-for-of" "^7.8.0"
|
690
|
+
"@babel/plugin-transform-function-name" "^7.8.0"
|
691
|
+
"@babel/plugin-transform-literals" "^7.8.0"
|
692
|
+
"@babel/plugin-transform-member-expression-literals" "^7.8.0"
|
693
|
+
"@babel/plugin-transform-modules-amd" "^7.8.0"
|
694
|
+
"@babel/plugin-transform-modules-commonjs" "^7.8.0"
|
695
|
+
"@babel/plugin-transform-modules-systemjs" "^7.8.0"
|
696
|
+
"@babel/plugin-transform-modules-umd" "^7.8.0"
|
697
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.8.0"
|
698
|
+
"@babel/plugin-transform-new-target" "^7.8.0"
|
699
|
+
"@babel/plugin-transform-object-super" "^7.8.0"
|
700
|
+
"@babel/plugin-transform-parameters" "^7.8.0"
|
701
|
+
"@babel/plugin-transform-property-literals" "^7.8.0"
|
702
|
+
"@babel/plugin-transform-regenerator" "^7.8.0"
|
703
|
+
"@babel/plugin-transform-reserved-words" "^7.8.0"
|
704
|
+
"@babel/plugin-transform-shorthand-properties" "^7.8.0"
|
705
|
+
"@babel/plugin-transform-spread" "^7.8.0"
|
706
|
+
"@babel/plugin-transform-sticky-regex" "^7.8.0"
|
707
|
+
"@babel/plugin-transform-template-literals" "^7.8.0"
|
708
|
+
"@babel/plugin-transform-typeof-symbol" "^7.8.0"
|
709
|
+
"@babel/plugin-transform-unicode-regex" "^7.8.0"
|
710
|
+
"@babel/types" "^7.8.0"
|
711
|
+
browserslist "^4.8.2"
|
712
|
+
core-js-compat "^3.6.2"
|
713
|
+
invariant "^2.2.2"
|
714
|
+
levenary "^1.1.0"
|
715
|
+
semver "^5.5.0"
|
665
716
|
|
666
|
-
"@babel/
|
667
|
-
version "7.
|
668
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
669
|
-
integrity sha512-
|
670
|
-
dependencies:
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
717
|
+
"@babel/runtime@^7.4.4":
|
718
|
+
version "7.8.0"
|
719
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.0.tgz#8c81711517c56b3d00c6de706b0fb13dc3531549"
|
720
|
+
integrity sha512-Z7ti+HB0puCcLmFE3x90kzaVgbx6TRrYIReaygW6EkBEnJh1ajS4/inhF7CypzWeDV3NFl1AfWj0eMtdihojxw==
|
721
|
+
dependencies:
|
722
|
+
regenerator-runtime "^0.13.2"
|
723
|
+
|
724
|
+
"@babel/template@^7.4.4", "@babel/template@^7.8.0":
|
725
|
+
version "7.8.0"
|
726
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.0.tgz#a32f57ad3be89c0fa69ae87b53b4826844dc6330"
|
727
|
+
integrity sha512-0NNMDsY2t3ltAVVK1WHNiaePo3tXPUeJpCX4I3xSKFoEl852wJHG8mrgHVADf8Lz1y+8al9cF7cSSfzSnFSYiw==
|
728
|
+
dependencies:
|
729
|
+
"@babel/code-frame" "^7.8.0"
|
730
|
+
"@babel/parser" "^7.8.0"
|
731
|
+
"@babel/types" "^7.8.0"
|
732
|
+
|
733
|
+
"@babel/traverse@^7.4.4", "@babel/traverse@^7.8.0":
|
734
|
+
version "7.8.0"
|
735
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.0.tgz#d85266fdcff553c10e57b672604b36383a127c1f"
|
736
|
+
integrity sha512-d/6sPXFLGlJHZO/zWDtgFaKyalCOHLedzxpVJn6el1cw+f2TZa7xZEszeXdOw6EUemqRFBAn106BWBvtSck9Qw==
|
737
|
+
dependencies:
|
738
|
+
"@babel/code-frame" "^7.8.0"
|
739
|
+
"@babel/generator" "^7.8.0"
|
740
|
+
"@babel/helper-function-name" "^7.8.0"
|
741
|
+
"@babel/helper-split-export-declaration" "^7.8.0"
|
742
|
+
"@babel/parser" "^7.8.0"
|
743
|
+
"@babel/types" "^7.8.0"
|
677
744
|
debug "^4.1.0"
|
678
745
|
globals "^11.1.0"
|
679
|
-
lodash "^4.17.
|
680
|
-
|
681
|
-
"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.4", "@babel/types@^7.4.4":
|
682
|
-
version "7.4.4"
|
683
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.4.tgz#8db9e9a629bb7c29370009b4b779ed93fe57d5f0"
|
684
|
-
integrity sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==
|
685
|
-
dependencies:
|
686
|
-
esutils "^2.0.2"
|
687
|
-
lodash "^4.17.11"
|
688
|
-
to-fast-properties "^2.0.0"
|
746
|
+
lodash "^4.17.13"
|
689
747
|
|
690
|
-
"@babel/types@^7.
|
691
|
-
version "7.
|
692
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.
|
693
|
-
integrity sha512-
|
748
|
+
"@babel/types@^7.4.4", "@babel/types@^7.8.0":
|
749
|
+
version "7.8.0"
|
750
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.0.tgz#1a2039a028057a2c888b668d94c98e61ea906e7f"
|
751
|
+
integrity sha512-1RF84ehyx9HH09dMMwGWl3UTWlVoCPtqqJPjGuC4JzMe1ZIVDJ2DT8mv3cPv/A7veLD6sgR7vi95lJqm+ZayIg==
|
694
752
|
dependencies:
|
695
753
|
esutils "^2.0.2"
|
696
|
-
lodash "^4.17.
|
754
|
+
lodash "^4.17.13"
|
697
755
|
to-fast-properties "^2.0.0"
|
698
756
|
|
699
757
|
"@iarna/toml@^2.2.0":
|
@@ -723,10 +781,10 @@
|
|
723
781
|
mkdirp "^0.5.1"
|
724
782
|
rimraf "^2.6.2"
|
725
783
|
|
726
|
-
"@parcel/logger@^1.11.
|
727
|
-
version "1.11.
|
728
|
-
resolved "https://registry.yarnpkg.com/@parcel/logger/-/logger-1.11.
|
729
|
-
integrity sha512-
|
784
|
+
"@parcel/logger@^1.11.1":
|
785
|
+
version "1.11.1"
|
786
|
+
resolved "https://registry.yarnpkg.com/@parcel/logger/-/logger-1.11.1.tgz#c55b0744bcbe84ebc291155627f0ec406a23e2e6"
|
787
|
+
integrity sha512-9NF3M6UVeP2udOBDILuoEHd8VrF4vQqoWHEafymO1pfSoOMfxrSJZw1MfyAAIUN/IFp9qjcpDCUbDZB+ioVevA==
|
730
788
|
dependencies:
|
731
789
|
"@parcel/workers" "^1.11.0"
|
732
790
|
chalk "^2.1.0"
|
@@ -739,13 +797,13 @@
|
|
739
797
|
resolved "https://registry.yarnpkg.com/@parcel/utils/-/utils-1.11.0.tgz#539e08fff8af3b26eca11302be80b522674b51ea"
|
740
798
|
integrity sha512-cA3p4jTlaMeOtAKR/6AadanOPvKeg8VwgnHhOyfi0yClD0TZS/hi9xu12w4EzA/8NtHu0g6o4RDfcNjqN8l1AQ==
|
741
799
|
|
742
|
-
"@parcel/watcher@^1.12.
|
743
|
-
version "1.12.
|
744
|
-
resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-1.12.
|
745
|
-
integrity sha512-
|
800
|
+
"@parcel/watcher@^1.12.1":
|
801
|
+
version "1.12.1"
|
802
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-1.12.1.tgz#b98b3df309fcab93451b5583fc38e40826696dad"
|
803
|
+
integrity sha512-od+uCtCxC/KoNQAIE1vWx1YTyKYY+7CTrxBJPRh3cDWw/C0tCtlBMVlrbplscGoEpt6B27KhJDCv82PBxOERNA==
|
746
804
|
dependencies:
|
747
805
|
"@parcel/utils" "^1.11.0"
|
748
|
-
chokidar "^2.
|
806
|
+
chokidar "^2.1.5"
|
749
807
|
|
750
808
|
"@parcel/workers@^1.11.0":
|
751
809
|
version "1.11.0"
|
@@ -755,6 +813,11 @@
|
|
755
813
|
"@parcel/utils" "^1.11.0"
|
756
814
|
physical-cpu-count "^2.0.0"
|
757
815
|
|
816
|
+
"@rails/ujs@^6.0.2-1":
|
817
|
+
version "6.0.2-1"
|
818
|
+
resolved "https://registry.yarnpkg.com/@rails/ujs/-/ujs-6.0.2-1.tgz#1273f773bc98832371cb09aab619d6120e794b39"
|
819
|
+
integrity sha512-H1yMA4/M8Vdie/TgyNiOkUdFly3g9HGSbnVPl7kiRVnGMZuT/APnCNyvgYWBQbTtYDYB9rrZAAgghxtt1ABDIA==
|
820
|
+
|
758
821
|
"@stimulus/core@^1.1.1":
|
759
822
|
version "1.1.1"
|
760
823
|
resolved "https://registry.yarnpkg.com/@stimulus/core/-/core-1.1.1.tgz#42b0cfe5b73ca492f41de64b77a03980bae92c82"
|
@@ -779,48 +842,55 @@
|
|
779
842
|
resolved "https://registry.yarnpkg.com/@stimulus/webpack-helpers/-/webpack-helpers-1.1.1.tgz#eff60cd4e58b921d1a2764dc5215f5141510f2c2"
|
780
843
|
integrity sha512-XOkqSw53N9072FLHvpLM25PIwy+ndkSSbnTtjKuyzsv8K5yfkFB2rv68jU1pzqYa9FZLcvZWP4yazC0V38dx9A==
|
781
844
|
|
845
|
+
"@types/jquery@^3.3.31":
|
846
|
+
version "3.3.31"
|
847
|
+
resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.3.31.tgz#27c706e4bf488474e1cb54a71d8303f37c93451b"
|
848
|
+
integrity sha512-Lz4BAJihoFw5nRzKvg4nawXPzutkv7wmfQ5121avptaSIXlDNJCUuxZxX/G+9EVidZGuO0UBlk+YjKbwRKJigg==
|
849
|
+
dependencies:
|
850
|
+
"@types/sizzle" "*"
|
851
|
+
|
782
852
|
"@types/q@^1.5.1":
|
783
853
|
version "1.5.2"
|
784
854
|
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
|
785
855
|
integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
|
786
856
|
|
787
|
-
|
788
|
-
version "2.
|
789
|
-
resolved "https://registry.yarnpkg.com/
|
790
|
-
integrity sha512-
|
857
|
+
"@types/sizzle@*":
|
858
|
+
version "2.3.2"
|
859
|
+
resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.2.tgz#a811b8c18e2babab7d542b3365887ae2e4d9de47"
|
860
|
+
integrity sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==
|
791
861
|
|
792
|
-
|
793
|
-
version "
|
794
|
-
resolved "https://registry.yarnpkg.com/
|
795
|
-
integrity sha512-
|
862
|
+
abab@^2.0.0:
|
863
|
+
version "2.0.3"
|
864
|
+
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a"
|
865
|
+
integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==
|
796
866
|
|
797
|
-
acorn-globals@^4.
|
798
|
-
version "4.3.
|
799
|
-
resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.
|
800
|
-
integrity sha512-
|
867
|
+
acorn-globals@^4.3.0:
|
868
|
+
version "4.3.4"
|
869
|
+
resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7"
|
870
|
+
integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==
|
801
871
|
dependencies:
|
802
872
|
acorn "^6.0.1"
|
803
873
|
acorn-walk "^6.0.1"
|
804
874
|
|
805
875
|
acorn-walk@^6.0.1:
|
806
|
-
version "6.
|
807
|
-
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.
|
808
|
-
integrity sha512-
|
876
|
+
version "6.2.0"
|
877
|
+
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
|
878
|
+
integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
|
809
879
|
|
810
|
-
acorn@^5.0.0
|
880
|
+
acorn@^5.0.0:
|
811
881
|
version "5.7.3"
|
812
882
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
|
813
883
|
integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
|
814
884
|
|
815
|
-
acorn@^6.0.1:
|
816
|
-
version "6.
|
817
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.
|
818
|
-
integrity sha512-
|
885
|
+
acorn@^6.0.1, acorn@^6.0.4:
|
886
|
+
version "6.4.0"
|
887
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.0.tgz#b659d2ffbafa24baf5db1cdbb2c94a983ecd2784"
|
888
|
+
integrity sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==
|
819
889
|
|
820
890
|
ajv@^6.5.5:
|
821
|
-
version "6.10.
|
822
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.
|
823
|
-
integrity sha512-
|
891
|
+
version "6.10.2"
|
892
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52"
|
893
|
+
integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==
|
824
894
|
dependencies:
|
825
895
|
fast-deep-equal "^2.0.1"
|
826
896
|
fast-json-stable-stringify "^2.0.0"
|
@@ -842,12 +912,17 @@ ansi-regex@^3.0.0:
|
|
842
912
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
843
913
|
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
|
844
914
|
|
915
|
+
ansi-regex@^4.1.0:
|
916
|
+
version "4.1.0"
|
917
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
|
918
|
+
integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
|
919
|
+
|
845
920
|
ansi-styles@^2.2.1:
|
846
921
|
version "2.2.1"
|
847
922
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
848
923
|
integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
|
849
924
|
|
850
|
-
ansi-styles@^3.2.1:
|
925
|
+
ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
851
926
|
version "3.2.1"
|
852
927
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
853
928
|
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
|
@@ -855,11 +930,11 @@ ansi-styles@^3.2.1:
|
|
855
930
|
color-convert "^1.9.0"
|
856
931
|
|
857
932
|
ansi-to-html@^0.6.4:
|
858
|
-
version "0.6.
|
859
|
-
resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.
|
860
|
-
integrity sha512-
|
933
|
+
version "0.6.13"
|
934
|
+
resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.13.tgz#c72eae8b63e5ca0643aab11bfc6e6f2217425833"
|
935
|
+
integrity sha512-Ys2/umuaTlQvP9DLkaa7UzRKF2FLrfod/hNHXS9QhXCrw7seObG6ksOGmNz3UoK+adwM8L9vQfG7mvaxfJ3Jvw==
|
861
936
|
dependencies:
|
862
|
-
entities "^1.1.
|
937
|
+
entities "^1.1.2"
|
863
938
|
|
864
939
|
anymatch@^2.0.0:
|
865
940
|
version "2.0.0"
|
@@ -869,19 +944,6 @@ anymatch@^2.0.0:
|
|
869
944
|
micromatch "^3.1.4"
|
870
945
|
normalize-path "^2.1.1"
|
871
946
|
|
872
|
-
aproba@^1.0.3:
|
873
|
-
version "1.2.0"
|
874
|
-
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
|
875
|
-
integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
|
876
|
-
|
877
|
-
are-we-there-yet@~1.1.2:
|
878
|
-
version "1.1.5"
|
879
|
-
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
|
880
|
-
integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
|
881
|
-
dependencies:
|
882
|
-
delegates "^1.0.0"
|
883
|
-
readable-stream "^2.0.6"
|
884
|
-
|
885
947
|
argparse@^1.0.7:
|
886
948
|
version "1.0.10"
|
887
949
|
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
|
@@ -954,31 +1016,32 @@ async-each@^1.0.1:
|
|
954
1016
|
integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
|
955
1017
|
|
956
1018
|
async-limiter@~1.0.0:
|
957
|
-
version "1.0.
|
958
|
-
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.
|
959
|
-
integrity sha512-
|
1019
|
+
version "1.0.1"
|
1020
|
+
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
|
1021
|
+
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
|
960
1022
|
|
961
1023
|
asynckit@^0.4.0:
|
962
1024
|
version "0.4.0"
|
963
1025
|
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
964
1026
|
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
|
965
1027
|
|
966
|
-
atob@^2.1.
|
1028
|
+
atob@^2.1.2:
|
967
1029
|
version "2.1.2"
|
968
1030
|
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
|
969
1031
|
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
970
1032
|
|
971
1033
|
autoprefixer@^9.4.5:
|
972
|
-
version "9.
|
973
|
-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.
|
974
|
-
integrity sha512-
|
1034
|
+
version "9.7.3"
|
1035
|
+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.3.tgz#fd42ed03f53de9beb4ca0d61fb4f7268a9bb50b4"
|
1036
|
+
integrity sha512-8T5Y1C5Iyj6PgkPSFd0ODvK9DIleuPKUPYniNxybS47g2k2wFgLZ46lGQHlBuGKIAEV8fbCDfKCCRS1tvOgc3Q==
|
975
1037
|
dependencies:
|
976
|
-
browserslist "^4.
|
977
|
-
caniuse-lite "^1.0.
|
1038
|
+
browserslist "^4.8.0"
|
1039
|
+
caniuse-lite "^1.0.30001012"
|
1040
|
+
chalk "^2.4.2"
|
978
1041
|
normalize-range "^0.1.2"
|
979
1042
|
num2fraction "^1.2.2"
|
980
|
-
postcss "^7.0.
|
981
|
-
postcss-value-parser "^
|
1043
|
+
postcss "^7.0.23"
|
1044
|
+
postcss-value-parser "^4.0.2"
|
982
1045
|
|
983
1046
|
aws-sign2@~0.7.0:
|
984
1047
|
version "0.7.0"
|
@@ -986,9 +1049,16 @@ aws-sign2@~0.7.0:
|
|
986
1049
|
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
|
987
1050
|
|
988
1051
|
aws4@^1.8.0:
|
989
|
-
version "1.
|
990
|
-
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.
|
991
|
-
integrity sha512-
|
1052
|
+
version "1.9.0"
|
1053
|
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.0.tgz#24390e6ad61386b0a747265754d2a17219de862c"
|
1054
|
+
integrity sha512-Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A==
|
1055
|
+
|
1056
|
+
babel-plugin-dynamic-import-node@^2.3.0:
|
1057
|
+
version "2.3.0"
|
1058
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f"
|
1059
|
+
integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==
|
1060
|
+
dependencies:
|
1061
|
+
object.assign "^4.1.0"
|
992
1062
|
|
993
1063
|
babel-runtime@^6.11.6, babel-runtime@^6.26.0:
|
994
1064
|
version "6.26.0"
|
@@ -1023,9 +1093,9 @@ balanced-match@^1.0.0:
|
|
1023
1093
|
integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
|
1024
1094
|
|
1025
1095
|
base64-js@^1.0.2:
|
1026
|
-
version "1.3.
|
1027
|
-
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.
|
1028
|
-
integrity sha512-
|
1096
|
+
version "1.3.1"
|
1097
|
+
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1"
|
1098
|
+
integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==
|
1029
1099
|
|
1030
1100
|
base@^0.11.1:
|
1031
1101
|
version "0.11.2"
|
@@ -1052,10 +1122,12 @@ binary-extensions@^1.0.0:
|
|
1052
1122
|
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
|
1053
1123
|
integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
|
1054
1124
|
|
1055
|
-
bindings
|
1056
|
-
version "1.
|
1057
|
-
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.
|
1058
|
-
integrity
|
1125
|
+
bindings@^1.5.0:
|
1126
|
+
version "1.5.0"
|
1127
|
+
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
|
1128
|
+
integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
|
1129
|
+
dependencies:
|
1130
|
+
file-uri-to-path "1.0.0"
|
1059
1131
|
|
1060
1132
|
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
1061
1133
|
version "4.11.8"
|
@@ -1170,14 +1242,14 @@ browserify-zlib@^0.2.0:
|
|
1170
1242
|
dependencies:
|
1171
1243
|
pako "~1.0.5"
|
1172
1244
|
|
1173
|
-
browserslist@^4.0.0, browserslist@^4.1.0, browserslist@^4.
|
1174
|
-
version "4.
|
1175
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
1176
|
-
integrity sha512-
|
1245
|
+
browserslist@^4.0.0, browserslist@^4.1.0, browserslist@^4.8.0, browserslist@^4.8.2, browserslist@^4.8.3:
|
1246
|
+
version "4.8.3"
|
1247
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.3.tgz#65802fcd77177c878e015f0e3189f2c4f627ba44"
|
1248
|
+
integrity sha512-iU43cMMknxG1ClEZ2MDKeonKE1CCrFVkQK2AqO2YWFmvIrx4JWrvQ4w4hQez6EpVI8rHTtqh/ruHHDHSOKxvUg==
|
1177
1249
|
dependencies:
|
1178
|
-
caniuse-lite "^1.0.
|
1179
|
-
electron-to-chromium "^1.3.
|
1180
|
-
node-releases "^1.1.
|
1250
|
+
caniuse-lite "^1.0.30001017"
|
1251
|
+
electron-to-chromium "^1.3.322"
|
1252
|
+
node-releases "^1.1.44"
|
1181
1253
|
|
1182
1254
|
buffer-equal@0.0.1:
|
1183
1255
|
version "0.0.1"
|
@@ -1195,9 +1267,9 @@ buffer-xor@^1.0.3:
|
|
1195
1267
|
integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
|
1196
1268
|
|
1197
1269
|
buffer@^4.3.0:
|
1198
|
-
version "4.9.
|
1199
|
-
resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.
|
1200
|
-
integrity
|
1270
|
+
version "4.9.2"
|
1271
|
+
resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
|
1272
|
+
integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
|
1201
1273
|
dependencies:
|
1202
1274
|
base64-js "^1.0.2"
|
1203
1275
|
ieee754 "^1.1.4"
|
@@ -1257,6 +1329,11 @@ camelcase-css@^2.0.1:
|
|
1257
1329
|
resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
|
1258
1330
|
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
1259
1331
|
|
1332
|
+
camelcase@^5.0.0:
|
1333
|
+
version "5.3.1"
|
1334
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
1335
|
+
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
1336
|
+
|
1260
1337
|
caniuse-api@^3.0.0:
|
1261
1338
|
version "3.0.0"
|
1262
1339
|
resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
|
@@ -1267,10 +1344,10 @@ caniuse-api@^3.0.0:
|
|
1267
1344
|
lodash.memoize "^4.1.2"
|
1268
1345
|
lodash.uniq "^4.5.0"
|
1269
1346
|
|
1270
|
-
caniuse-lite@^1.0.0, caniuse-lite@^1.0.
|
1271
|
-
version "1.0.
|
1272
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1273
|
-
integrity sha512-
|
1347
|
+
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001012, caniuse-lite@^1.0.30001017:
|
1348
|
+
version "1.0.30001020"
|
1349
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001020.tgz#3f04c1737500ffda78be9beb0b5c1e2070e15926"
|
1350
|
+
integrity sha512-yWIvwA68wRHKanAVS1GjN8vajAv7MBFshullKCeq/eKpK7pJBVDgFFEqvgWTkcP2+wIDeQGYFRXECjKZnLkUjA==
|
1274
1351
|
|
1275
1352
|
caseless@~0.12.0:
|
1276
1353
|
version "0.12.0"
|
@@ -1297,10 +1374,10 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4
|
|
1297
1374
|
escape-string-regexp "^1.0.5"
|
1298
1375
|
supports-color "^5.3.0"
|
1299
1376
|
|
1300
|
-
chokidar@^2.
|
1301
|
-
version "2.1.
|
1302
|
-
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.
|
1303
|
-
integrity sha512-
|
1377
|
+
chokidar@^2.1.5:
|
1378
|
+
version "2.1.8"
|
1379
|
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
|
1380
|
+
integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
|
1304
1381
|
dependencies:
|
1305
1382
|
anymatch "^2.0.0"
|
1306
1383
|
async-each "^1.0.1"
|
@@ -1316,11 +1393,6 @@ chokidar@^2.0.3:
|
|
1316
1393
|
optionalDependencies:
|
1317
1394
|
fsevents "^1.2.7"
|
1318
1395
|
|
1319
|
-
chownr@^1.1.1:
|
1320
|
-
version "1.1.1"
|
1321
|
-
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494"
|
1322
|
-
integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==
|
1323
|
-
|
1324
1396
|
cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
|
1325
1397
|
version "1.0.4"
|
1326
1398
|
resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
|
@@ -1351,6 +1423,15 @@ cli-spinners@^1.1.0:
|
|
1351
1423
|
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a"
|
1352
1424
|
integrity sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==
|
1353
1425
|
|
1426
|
+
cliui@^5.0.0:
|
1427
|
+
version "5.0.0"
|
1428
|
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
|
1429
|
+
integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
|
1430
|
+
dependencies:
|
1431
|
+
string-width "^3.1.0"
|
1432
|
+
strip-ansi "^5.2.0"
|
1433
|
+
wrap-ansi "^5.1.0"
|
1434
|
+
|
1354
1435
|
clone@^1.0.2:
|
1355
1436
|
version "1.0.4"
|
1356
1437
|
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
|
@@ -1361,11 +1442,6 @@ clone@^2.1.1:
|
|
1361
1442
|
resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f"
|
1362
1443
|
integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=
|
1363
1444
|
|
1364
|
-
clones@^1.2.0:
|
1365
|
-
version "1.2.0"
|
1366
|
-
resolved "https://registry.yarnpkg.com/clones/-/clones-1.2.0.tgz#b34c872045446a9f264ccceb7731bca05c529b71"
|
1367
|
-
integrity sha512-FXDYw4TjR8wgPZYui2LeTqWh1BLpfQ8lB6upMtlpDF6WlOOxghmTTxWyngdKTgozqBgKnHbTVwTE+hOHqAykuQ==
|
1368
|
-
|
1369
1445
|
coa@^2.0.2:
|
1370
1446
|
version "2.0.2"
|
1371
1447
|
resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
|
@@ -1375,11 +1451,6 @@ coa@^2.0.2:
|
|
1375
1451
|
chalk "^2.4.1"
|
1376
1452
|
q "^1.1.2"
|
1377
1453
|
|
1378
|
-
code-point-at@^1.0.0:
|
1379
|
-
version "1.1.0"
|
1380
|
-
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
1381
|
-
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
|
1382
|
-
|
1383
1454
|
collection-visit@^1.0.0:
|
1384
1455
|
version "1.0.0"
|
1385
1456
|
resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
|
@@ -1414,17 +1485,17 @@ color-string@^1.5.2:
|
|
1414
1485
|
simple-swizzle "^0.2.2"
|
1415
1486
|
|
1416
1487
|
color@^3.0.0:
|
1417
|
-
version "3.1.
|
1418
|
-
resolved "https://registry.yarnpkg.com/color/-/color-3.1.
|
1419
|
-
integrity sha512-
|
1488
|
+
version "3.1.2"
|
1489
|
+
resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10"
|
1490
|
+
integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==
|
1420
1491
|
dependencies:
|
1421
1492
|
color-convert "^1.9.1"
|
1422
1493
|
color-string "^1.5.2"
|
1423
1494
|
|
1424
1495
|
combined-stream@^1.0.6, combined-stream@~1.0.6:
|
1425
|
-
version "1.0.
|
1426
|
-
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.
|
1427
|
-
integrity sha512-
|
1496
|
+
version "1.0.8"
|
1497
|
+
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
|
1498
|
+
integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
|
1428
1499
|
dependencies:
|
1429
1500
|
delayed-stream "~1.0.0"
|
1430
1501
|
|
@@ -1433,10 +1504,10 @@ command-exists@^1.2.6:
|
|
1433
1504
|
resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.8.tgz#715acefdd1223b9c9b37110a149c6392c2852291"
|
1434
1505
|
integrity sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==
|
1435
1506
|
|
1436
|
-
commander@^2.11.0, commander@^2.19.0, commander@^2.
|
1437
|
-
version "2.20.
|
1438
|
-
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.
|
1439
|
-
integrity sha512-
|
1507
|
+
commander@^2.11.0, commander@^2.19.0, commander@^2.20.0:
|
1508
|
+
version "2.20.3"
|
1509
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
|
1510
|
+
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
|
1440
1511
|
|
1441
1512
|
component-emitter@^1.2.1:
|
1442
1513
|
version "1.3.0"
|
@@ -1458,35 +1529,20 @@ concat-stream@~1.6.0:
|
|
1458
1529
|
readable-stream "^2.2.2"
|
1459
1530
|
typedarray "^0.0.6"
|
1460
1531
|
|
1461
|
-
config-chain@^1.1.12:
|
1462
|
-
version "1.1.12"
|
1463
|
-
resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa"
|
1464
|
-
integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==
|
1465
|
-
dependencies:
|
1466
|
-
ini "^1.3.4"
|
1467
|
-
proto-list "~1.2.1"
|
1468
|
-
|
1469
1532
|
console-browserify@^1.1.0:
|
1470
|
-
version "1.
|
1471
|
-
resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.
|
1472
|
-
integrity
|
1473
|
-
dependencies:
|
1474
|
-
date-now "^0.1.4"
|
1475
|
-
|
1476
|
-
console-control-strings@^1.0.0, console-control-strings@~1.1.0:
|
1477
|
-
version "1.1.0"
|
1478
|
-
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
|
1479
|
-
integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
|
1533
|
+
version "1.2.0"
|
1534
|
+
resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
|
1535
|
+
integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
|
1480
1536
|
|
1481
1537
|
constants-browserify@^1.0.0:
|
1482
1538
|
version "1.0.0"
|
1483
1539
|
resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
|
1484
1540
|
integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
|
1485
1541
|
|
1486
|
-
convert-source-map@^1.1
|
1487
|
-
version "1.
|
1488
|
-
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.
|
1489
|
-
integrity sha512-
|
1542
|
+
convert-source-map@^1.5.1, convert-source-map@^1.7.0:
|
1543
|
+
version "1.7.0"
|
1544
|
+
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
|
1545
|
+
integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
|
1490
1546
|
dependencies:
|
1491
1547
|
safe-buffer "~5.1.1"
|
1492
1548
|
|
@@ -1495,10 +1551,18 @@ copy-descriptor@^0.1.0:
|
|
1495
1551
|
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
1496
1552
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
1497
1553
|
|
1498
|
-
core-js@^
|
1499
|
-
version "
|
1500
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-
|
1501
|
-
integrity sha512-
|
1554
|
+
core-js-compat@^3.6.2:
|
1555
|
+
version "3.6.3"
|
1556
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.3.tgz#41e281ca771209d5f2eb63ce34f96037d0928538"
|
1557
|
+
integrity sha512-Y3YNGU3bU1yrnzVodop23ghArbKv4IqkZg9MMOWv/h7KT6NRk1/SzHhWDDlubg2+tlcUzAqgj1/GyeJ9fUKMeg==
|
1558
|
+
dependencies:
|
1559
|
+
browserslist "^4.8.3"
|
1560
|
+
semver "7.0.0"
|
1561
|
+
|
1562
|
+
core-js@^2.4.0, core-js@^2.6.5:
|
1563
|
+
version "2.6.11"
|
1564
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
|
1565
|
+
integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
|
1502
1566
|
|
1503
1567
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
1504
1568
|
version "1.0.2"
|
@@ -1506,13 +1570,13 @@ core-util-is@1.0.2, core-util-is@~1.0.0:
|
|
1506
1570
|
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
|
1507
1571
|
|
1508
1572
|
cosmiconfig@^5.0.0:
|
1509
|
-
version "5.2.
|
1510
|
-
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.
|
1511
|
-
integrity sha512-
|
1573
|
+
version "5.2.1"
|
1574
|
+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
|
1575
|
+
integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
|
1512
1576
|
dependencies:
|
1513
1577
|
import-fresh "^2.0.0"
|
1514
1578
|
is-directory "^0.3.1"
|
1515
|
-
js-yaml "^3.13.
|
1579
|
+
js-yaml "^3.13.1"
|
1516
1580
|
parse-json "^4.0.0"
|
1517
1581
|
|
1518
1582
|
create-ecdh@^4.0.0:
|
@@ -1605,12 +1669,12 @@ css-select-base-adapter@^0.1.1:
|
|
1605
1669
|
integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
|
1606
1670
|
|
1607
1671
|
css-select@^2.0.0:
|
1608
|
-
version "2.0
|
1609
|
-
resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.
|
1610
|
-
integrity sha512-
|
1672
|
+
version "2.1.0"
|
1673
|
+
resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
|
1674
|
+
integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
|
1611
1675
|
dependencies:
|
1612
1676
|
boolbase "^1.0.0"
|
1613
|
-
css-what "^2.1
|
1677
|
+
css-what "^3.2.1"
|
1614
1678
|
domutils "^1.7.0"
|
1615
1679
|
nth-check "^1.0.2"
|
1616
1680
|
|
@@ -1623,36 +1687,23 @@ css-selector-tokenizer@^0.7.0:
|
|
1623
1687
|
fastparse "^1.1.1"
|
1624
1688
|
regexpu-core "^1.0.0"
|
1625
1689
|
|
1626
|
-
css-tree@1.0.0-alpha.
|
1627
|
-
version "1.0.0-alpha.
|
1628
|
-
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.
|
1629
|
-
integrity sha512-
|
1630
|
-
dependencies:
|
1631
|
-
mdn-data "~1.1.0"
|
1632
|
-
source-map "^0.5.3"
|
1633
|
-
|
1634
|
-
css-tree@1.0.0-alpha.29:
|
1635
|
-
version "1.0.0-alpha.29"
|
1636
|
-
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39"
|
1637
|
-
integrity sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==
|
1690
|
+
css-tree@1.0.0-alpha.37:
|
1691
|
+
version "1.0.0-alpha.37"
|
1692
|
+
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
|
1693
|
+
integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
|
1638
1694
|
dependencies:
|
1639
|
-
mdn-data "
|
1640
|
-
source-map "^0.
|
1695
|
+
mdn-data "2.0.4"
|
1696
|
+
source-map "^0.6.1"
|
1641
1697
|
|
1642
1698
|
css-unit-converter@^1.1.1:
|
1643
1699
|
version "1.1.1"
|
1644
1700
|
resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996"
|
1645
1701
|
integrity sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY=
|
1646
1702
|
|
1647
|
-
css-
|
1648
|
-
version "
|
1649
|
-
resolved "https://registry.yarnpkg.com/css-
|
1650
|
-
integrity
|
1651
|
-
|
1652
|
-
css-what@^2.1.2:
|
1653
|
-
version "2.1.3"
|
1654
|
-
resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2"
|
1655
|
-
integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==
|
1703
|
+
css-what@^3.2.1:
|
1704
|
+
version "3.2.1"
|
1705
|
+
resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.1.tgz#f4a8f12421064621b456755e34a03a2c22df5da1"
|
1706
|
+
integrity sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==
|
1656
1707
|
|
1657
1708
|
cssesc@^0.1.0:
|
1658
1709
|
version "0.1.0"
|
@@ -1727,7 +1778,7 @@ cssnano-util-same-parent@^4.0.0:
|
|
1727
1778
|
resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3"
|
1728
1779
|
integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==
|
1729
1780
|
|
1730
|
-
cssnano@^4.0.0, cssnano@^4.1.
|
1781
|
+
cssnano@^4.0.0, cssnano@^4.1.10:
|
1731
1782
|
version "4.1.10"
|
1732
1783
|
resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2"
|
1733
1784
|
integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==
|
@@ -1737,22 +1788,22 @@ cssnano@^4.0.0, cssnano@^4.1.9:
|
|
1737
1788
|
is-resolvable "^1.0.0"
|
1738
1789
|
postcss "^7.0.0"
|
1739
1790
|
|
1740
|
-
csso@^
|
1741
|
-
version "
|
1742
|
-
resolved "https://registry.yarnpkg.com/csso/-/csso-
|
1743
|
-
integrity sha512-
|
1791
|
+
csso@^4.0.2:
|
1792
|
+
version "4.0.2"
|
1793
|
+
resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.2.tgz#e5f81ab3a56b8eefb7f0092ce7279329f454de3d"
|
1794
|
+
integrity sha512-kS7/oeNVXkHWxby5tHVxlhjizRCSv8QdU7hB2FpdAibDU8FjTAolhNjKNTiLzXtUrKT6HwClE81yXwEk1309wg==
|
1744
1795
|
dependencies:
|
1745
|
-
css-tree "1.0.0-alpha.
|
1796
|
+
css-tree "1.0.0-alpha.37"
|
1746
1797
|
|
1747
|
-
cssom@0.3.x,
|
1748
|
-
version "0.3.
|
1749
|
-
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.
|
1750
|
-
integrity sha512-
|
1798
|
+
cssom@0.3.x, cssom@^0.3.4:
|
1799
|
+
version "0.3.8"
|
1800
|
+
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
|
1801
|
+
integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
|
1751
1802
|
|
1752
|
-
cssstyle@^1.
|
1753
|
-
version "1.
|
1754
|
-
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.
|
1755
|
-
integrity sha512-
|
1803
|
+
cssstyle@^1.1.1:
|
1804
|
+
version "1.4.0"
|
1805
|
+
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1"
|
1806
|
+
integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==
|
1756
1807
|
dependencies:
|
1757
1808
|
cssom "0.3.x"
|
1758
1809
|
|
@@ -1763,7 +1814,7 @@ dashdash@^1.12.0:
|
|
1763
1814
|
dependencies:
|
1764
1815
|
assert-plus "^1.0.0"
|
1765
1816
|
|
1766
|
-
data-urls@^1.
|
1817
|
+
data-urls@^1.1.0:
|
1767
1818
|
version "1.1.0"
|
1768
1819
|
resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
|
1769
1820
|
integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==
|
@@ -1772,18 +1823,13 @@ data-urls@^1.0.0:
|
|
1772
1823
|
whatwg-mimetype "^2.2.0"
|
1773
1824
|
whatwg-url "^7.0.0"
|
1774
1825
|
|
1775
|
-
date-now@^0.1.4:
|
1776
|
-
version "0.1.4"
|
1777
|
-
resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
|
1778
|
-
integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=
|
1779
|
-
|
1780
1826
|
deasync@^0.1.14:
|
1781
|
-
version "0.1.
|
1782
|
-
resolved "https://registry.yarnpkg.com/deasync/-/deasync-0.1.
|
1783
|
-
integrity sha512-
|
1827
|
+
version "0.1.19"
|
1828
|
+
resolved "https://registry.yarnpkg.com/deasync/-/deasync-0.1.19.tgz#e7ea89fcc9ad483367e8a48fe78f508ca86286e8"
|
1829
|
+
integrity sha512-oh3MRktfnPlLysCPpBpKZZzb4cUC/p0aA3SyRGp15lN30juJBTo/CiD0d4fR+f1kBtUQoJj1NE9RPNWQ7BQ9Mg==
|
1784
1830
|
dependencies:
|
1785
|
-
bindings "
|
1786
|
-
node-addon-api "^1.
|
1831
|
+
bindings "^1.5.0"
|
1832
|
+
node-addon-api "^1.7.1"
|
1787
1833
|
|
1788
1834
|
debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
|
1789
1835
|
version "2.6.9"
|
@@ -1799,16 +1845,16 @@ debug@^4.1.0:
|
|
1799
1845
|
dependencies:
|
1800
1846
|
ms "^2.1.1"
|
1801
1847
|
|
1848
|
+
decamelize@^1.2.0:
|
1849
|
+
version "1.2.0"
|
1850
|
+
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
1851
|
+
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
|
1852
|
+
|
1802
1853
|
decode-uri-component@^0.2.0:
|
1803
1854
|
version "0.2.0"
|
1804
1855
|
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
|
1805
1856
|
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
|
1806
1857
|
|
1807
|
-
deep-extend@^0.6.0:
|
1808
|
-
version "0.6.0"
|
1809
|
-
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
|
1810
|
-
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
|
1811
|
-
|
1812
1858
|
deep-is@~0.1.3:
|
1813
1859
|
version "0.1.3"
|
1814
1860
|
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
@@ -1855,20 +1901,15 @@ delayed-stream@~1.0.0:
|
|
1855
1901
|
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
|
1856
1902
|
integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
|
1857
1903
|
|
1858
|
-
delegates@^1.0.0:
|
1859
|
-
version "1.0.0"
|
1860
|
-
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
|
1861
|
-
integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
|
1862
|
-
|
1863
1904
|
depd@~1.1.2:
|
1864
1905
|
version "1.1.2"
|
1865
1906
|
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
|
1866
1907
|
integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
|
1867
1908
|
|
1868
1909
|
des.js@^1.0.0:
|
1869
|
-
version "1.0.
|
1870
|
-
resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.
|
1871
|
-
integrity
|
1910
|
+
version "1.0.1"
|
1911
|
+
resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
|
1912
|
+
integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
|
1872
1913
|
dependencies:
|
1873
1914
|
inherits "^2.0.1"
|
1874
1915
|
minimalistic-assert "^1.0.0"
|
@@ -1878,11 +1919,6 @@ destroy@~1.0.4:
|
|
1878
1919
|
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
|
1879
1920
|
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
|
1880
1921
|
|
1881
|
-
detect-libc@^1.0.2:
|
1882
|
-
version "1.0.3"
|
1883
|
-
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
|
1884
|
-
integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=
|
1885
|
-
|
1886
1922
|
diffie-hellman@^5.0.0:
|
1887
1923
|
version "5.0.3"
|
1888
1924
|
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
|
@@ -1893,23 +1929,28 @@ diffie-hellman@^5.0.0:
|
|
1893
1929
|
randombytes "^2.0.0"
|
1894
1930
|
|
1895
1931
|
dom-serializer@0:
|
1896
|
-
version "0.
|
1897
|
-
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.
|
1898
|
-
integrity sha512-
|
1932
|
+
version "0.2.2"
|
1933
|
+
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
|
1934
|
+
integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
|
1899
1935
|
dependencies:
|
1900
|
-
domelementtype "^
|
1901
|
-
entities "^
|
1936
|
+
domelementtype "^2.0.1"
|
1937
|
+
entities "^2.0.0"
|
1902
1938
|
|
1903
1939
|
domain-browser@^1.1.1:
|
1904
1940
|
version "1.2.0"
|
1905
1941
|
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
|
1906
1942
|
integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
|
1907
1943
|
|
1908
|
-
domelementtype@1, domelementtype@^1.3.
|
1944
|
+
domelementtype@1, domelementtype@^1.3.1:
|
1909
1945
|
version "1.3.1"
|
1910
1946
|
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
|
1911
1947
|
integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
|
1912
1948
|
|
1949
|
+
domelementtype@^2.0.1:
|
1950
|
+
version "2.0.1"
|
1951
|
+
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d"
|
1952
|
+
integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==
|
1953
|
+
|
1913
1954
|
domexception@^1.0.1:
|
1914
1955
|
version "1.0.1"
|
1915
1956
|
resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
|
@@ -1939,10 +1980,10 @@ dot-prop@^4.1.1:
|
|
1939
1980
|
dependencies:
|
1940
1981
|
is-obj "^1.0.0"
|
1941
1982
|
|
1942
|
-
dotenv-expand@^
|
1943
|
-
version "
|
1944
|
-
resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-
|
1945
|
-
integrity
|
1983
|
+
dotenv-expand@^5.1.0:
|
1984
|
+
version "5.1.0"
|
1985
|
+
resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0"
|
1986
|
+
integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==
|
1946
1987
|
|
1947
1988
|
dotenv@^5.0.0:
|
1948
1989
|
version "5.0.1"
|
@@ -1964,30 +2005,20 @@ ecc-jsbn@~0.1.1:
|
|
1964
2005
|
jsbn "~0.1.0"
|
1965
2006
|
safer-buffer "^2.1.0"
|
1966
2007
|
|
1967
|
-
editorconfig@^0.15.3:
|
1968
|
-
version "0.15.3"
|
1969
|
-
resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5"
|
1970
|
-
integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==
|
1971
|
-
dependencies:
|
1972
|
-
commander "^2.19.0"
|
1973
|
-
lru-cache "^4.1.5"
|
1974
|
-
semver "^5.6.0"
|
1975
|
-
sigmund "^1.0.1"
|
1976
|
-
|
1977
2008
|
ee-first@1.1.1:
|
1978
2009
|
version "1.1.1"
|
1979
2010
|
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
|
1980
2011
|
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
|
1981
2012
|
|
1982
|
-
electron-to-chromium@^1.3.
|
1983
|
-
version "1.3.
|
1984
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
1985
|
-
integrity sha512-
|
2013
|
+
electron-to-chromium@^1.3.322:
|
2014
|
+
version "1.3.332"
|
2015
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.332.tgz#283df02d8269e25d9e2f424e11e909c9730a8a82"
|
2016
|
+
integrity sha512-AP2HkLhfSOIxP7gDjlyZ4ywGWIcxRMZoU9+JriuVkQe2pSLDdWBsE6+eI6BQOqun1dohLrUTOPHsQLLhhFA7Eg==
|
1986
2017
|
|
1987
2018
|
elliptic@^6.0.0:
|
1988
|
-
version "6.
|
1989
|
-
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.
|
1990
|
-
integrity sha512-
|
2019
|
+
version "6.5.2"
|
2020
|
+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
|
2021
|
+
integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==
|
1991
2022
|
dependencies:
|
1992
2023
|
bn.js "^4.4.0"
|
1993
2024
|
brorand "^1.0.1"
|
@@ -1997,16 +2028,31 @@ elliptic@^6.0.0:
|
|
1997
2028
|
minimalistic-assert "^1.0.0"
|
1998
2029
|
minimalistic-crypto-utils "^1.0.0"
|
1999
2030
|
|
2031
|
+
emoji-regex@^7.0.1:
|
2032
|
+
version "7.0.3"
|
2033
|
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
|
2034
|
+
integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
|
2035
|
+
|
2000
2036
|
encodeurl@~1.0.2:
|
2001
2037
|
version "1.0.2"
|
2002
2038
|
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
|
2003
2039
|
integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
|
2004
2040
|
|
2005
|
-
entities@^1.1.1:
|
2041
|
+
entities@^1.1.1, entities@^1.1.2:
|
2006
2042
|
version "1.1.2"
|
2007
2043
|
resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
|
2008
2044
|
integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
|
2009
2045
|
|
2046
|
+
entities@^2.0.0:
|
2047
|
+
version "2.0.0"
|
2048
|
+
resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4"
|
2049
|
+
integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==
|
2050
|
+
|
2051
|
+
envinfo@^7.3.1:
|
2052
|
+
version "7.5.0"
|
2053
|
+
resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.5.0.tgz#91410bb6db262fb4f1409bd506e9ff57e91023f4"
|
2054
|
+
integrity sha512-jDgnJaF/Btomk+m3PZDTTCb5XIIIX3zYItnCRfF73zVgvinLoRomuhi75Y4su0PtQxWz4v66XnLLckyvyJTOIQ==
|
2055
|
+
|
2010
2056
|
error-ex@^1.3.1:
|
2011
2057
|
version "1.3.2"
|
2012
2058
|
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
|
@@ -2014,22 +2060,27 @@ error-ex@^1.3.1:
|
|
2014
2060
|
dependencies:
|
2015
2061
|
is-arrayish "^0.2.1"
|
2016
2062
|
|
2017
|
-
es-abstract@^1.
|
2018
|
-
version "1.
|
2019
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.
|
2020
|
-
integrity sha512-
|
2063
|
+
es-abstract@^1.17.0-next.1:
|
2064
|
+
version "1.17.0"
|
2065
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.0.tgz#f42a517d0036a5591dbb2c463591dc8bb50309b1"
|
2066
|
+
integrity sha512-yYkE07YF+6SIBmg1MsJ9dlub5L48Ek7X0qz+c/CPCHS9EBXfESorzng4cJQjJW5/pB6vDF41u7F8vUhLVDqIug==
|
2021
2067
|
dependencies:
|
2022
|
-
es-to-primitive "^1.2.
|
2068
|
+
es-to-primitive "^1.2.1"
|
2023
2069
|
function-bind "^1.1.1"
|
2024
2070
|
has "^1.0.3"
|
2025
|
-
|
2026
|
-
is-
|
2027
|
-
|
2028
|
-
|
2029
|
-
|
2030
|
-
|
2031
|
-
|
2032
|
-
|
2071
|
+
has-symbols "^1.0.1"
|
2072
|
+
is-callable "^1.1.5"
|
2073
|
+
is-regex "^1.0.5"
|
2074
|
+
object-inspect "^1.7.0"
|
2075
|
+
object-keys "^1.1.1"
|
2076
|
+
object.assign "^4.1.0"
|
2077
|
+
string.prototype.trimleft "^2.1.1"
|
2078
|
+
string.prototype.trimright "^2.1.1"
|
2079
|
+
|
2080
|
+
es-to-primitive@^1.2.1:
|
2081
|
+
version "1.2.1"
|
2082
|
+
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
|
2083
|
+
integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
|
2033
2084
|
dependencies:
|
2034
2085
|
is-callable "^1.1.4"
|
2035
2086
|
is-date-object "^1.0.1"
|
@@ -2045,10 +2096,10 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
|
2045
2096
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
2046
2097
|
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
2047
2098
|
|
2048
|
-
escodegen@^1.
|
2049
|
-
version "1.
|
2050
|
-
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.
|
2051
|
-
integrity sha512-
|
2099
|
+
escodegen@^1.11.0, escodegen@^1.11.1:
|
2100
|
+
version "1.12.1"
|
2101
|
+
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.12.1.tgz#08770602a74ac34c7a90ca9229e7d51e379abc76"
|
2102
|
+
integrity sha512-Q8t2YZ+0e0pc7NRVj3B4tSQ9rim1oi4Fh46k2xhJ2qOiEwhQfdjyEQddWdj7ZFaKmU+5104vn1qrcjEPWq+bgQ==
|
2052
2103
|
dependencies:
|
2053
2104
|
esprima "^3.1.3"
|
2054
2105
|
estraverse "^4.2.0"
|
@@ -2080,14 +2131,14 @@ esprima@^4.0.0:
|
|
2080
2131
|
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
|
2081
2132
|
|
2082
2133
|
estraverse@^4.2.0:
|
2083
|
-
version "4.
|
2084
|
-
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.
|
2085
|
-
integrity
|
2134
|
+
version "4.3.0"
|
2135
|
+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
|
2136
|
+
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
|
2086
2137
|
|
2087
2138
|
esutils@^2.0.0, esutils@^2.0.2:
|
2088
|
-
version "2.0.
|
2089
|
-
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.
|
2090
|
-
integrity
|
2139
|
+
version "2.0.3"
|
2140
|
+
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
|
2141
|
+
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
|
2091
2142
|
|
2092
2143
|
etag@~1.8.1:
|
2093
2144
|
version "1.8.1"
|
@@ -2095,9 +2146,9 @@ etag@~1.8.1:
|
|
2095
2146
|
integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
|
2096
2147
|
|
2097
2148
|
events@^3.0.0:
|
2098
|
-
version "3.
|
2099
|
-
resolved "https://registry.yarnpkg.com/events/-/events-3.
|
2100
|
-
integrity sha512-
|
2149
|
+
version "3.1.0"
|
2150
|
+
resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59"
|
2151
|
+
integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==
|
2101
2152
|
|
2102
2153
|
evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
|
2103
2154
|
version "1.0.3"
|
@@ -2180,9 +2231,9 @@ fast-deep-equal@^2.0.1:
|
|
2180
2231
|
integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
|
2181
2232
|
|
2182
2233
|
fast-glob@^2.2.2:
|
2183
|
-
version "2.2.
|
2184
|
-
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.
|
2185
|
-
integrity sha512-
|
2234
|
+
version "2.2.7"
|
2235
|
+
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d"
|
2236
|
+
integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==
|
2186
2237
|
dependencies:
|
2187
2238
|
"@mrmlnc/readdir-enhanced" "^2.2.1"
|
2188
2239
|
"@nodelib/fs.stat" "^1.1.2"
|
@@ -2192,11 +2243,11 @@ fast-glob@^2.2.2:
|
|
2192
2243
|
micromatch "^3.1.10"
|
2193
2244
|
|
2194
2245
|
fast-json-stable-stringify@^2.0.0:
|
2195
|
-
version "2.
|
2196
|
-
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.
|
2197
|
-
integrity
|
2246
|
+
version "2.1.0"
|
2247
|
+
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
|
2248
|
+
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
|
2198
2249
|
|
2199
|
-
fast-levenshtein@~2.0.
|
2250
|
+
fast-levenshtein@~2.0.6:
|
2200
2251
|
version "2.0.6"
|
2201
2252
|
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
2202
2253
|
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
|
@@ -2206,6 +2257,11 @@ fastparse@^1.1.1:
|
|
2206
2257
|
resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
|
2207
2258
|
integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==
|
2208
2259
|
|
2260
|
+
file-uri-to-path@1.0.0:
|
2261
|
+
version "1.0.0"
|
2262
|
+
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
|
2263
|
+
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
|
2264
|
+
|
2209
2265
|
filesize@^3.6.0:
|
2210
2266
|
version "3.6.1"
|
2211
2267
|
resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317"
|
@@ -2221,6 +2277,13 @@ fill-range@^4.0.0:
|
|
2221
2277
|
repeat-string "^1.6.1"
|
2222
2278
|
to-regex-range "^2.1.0"
|
2223
2279
|
|
2280
|
+
find-up@^3.0.0:
|
2281
|
+
version "3.0.0"
|
2282
|
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
|
2283
|
+
integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
|
2284
|
+
dependencies:
|
2285
|
+
locate-path "^3.0.0"
|
2286
|
+
|
2224
2287
|
for-in@^1.0.2:
|
2225
2288
|
version "1.0.2"
|
2226
2289
|
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
|
@@ -2258,52 +2321,41 @@ fresh@0.5.2:
|
|
2258
2321
|
integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
|
2259
2322
|
|
2260
2323
|
fs-extra@^8.0.0:
|
2261
|
-
version "8.0
|
2262
|
-
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.0.
|
2263
|
-
integrity sha512-
|
2324
|
+
version "8.1.0"
|
2325
|
+
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
|
2326
|
+
integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
|
2264
2327
|
dependencies:
|
2265
|
-
graceful-fs "^4.
|
2328
|
+
graceful-fs "^4.2.0"
|
2266
2329
|
jsonfile "^4.0.0"
|
2267
2330
|
universalify "^0.1.0"
|
2268
2331
|
|
2269
|
-
fs-minipass@^1.2.5:
|
2270
|
-
version "1.2.5"
|
2271
|
-
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
|
2272
|
-
integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==
|
2273
|
-
dependencies:
|
2274
|
-
minipass "^2.2.1"
|
2275
|
-
|
2276
2332
|
fs.realpath@^1.0.0:
|
2277
2333
|
version "1.0.0"
|
2278
2334
|
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
2279
2335
|
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
2280
2336
|
|
2281
2337
|
fsevents@^1.2.7:
|
2282
|
-
version "1.2.
|
2283
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.
|
2284
|
-
integrity sha512
|
2338
|
+
version "1.2.11"
|
2339
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz#67bf57f4758f02ede88fb2a1712fef4d15358be3"
|
2340
|
+
integrity sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==
|
2285
2341
|
dependencies:
|
2342
|
+
bindings "^1.5.0"
|
2286
2343
|
nan "^2.12.1"
|
2287
|
-
node-pre-gyp "^0.12.0"
|
2288
2344
|
|
2289
2345
|
function-bind@^1.1.1:
|
2290
2346
|
version "1.1.1"
|
2291
2347
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
2292
2348
|
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
2293
2349
|
|
2294
|
-
|
2295
|
-
version "
|
2296
|
-
resolved "https://registry.yarnpkg.com/
|
2297
|
-
integrity
|
2298
|
-
|
2299
|
-
|
2300
|
-
|
2301
|
-
|
2302
|
-
|
2303
|
-
signal-exit "^3.0.0"
|
2304
|
-
string-width "^1.0.1"
|
2305
|
-
strip-ansi "^3.0.1"
|
2306
|
-
wide-align "^1.1.0"
|
2350
|
+
gensync@^1.0.0-beta.1:
|
2351
|
+
version "1.0.0-beta.1"
|
2352
|
+
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
|
2353
|
+
integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
|
2354
|
+
|
2355
|
+
get-caller-file@^2.0.1:
|
2356
|
+
version "2.0.5"
|
2357
|
+
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
|
2358
|
+
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
|
2307
2359
|
|
2308
2360
|
get-port@^3.2.0:
|
2309
2361
|
version "3.2.0"
|
@@ -2335,10 +2387,10 @@ glob-to-regexp@^0.3.0:
|
|
2335
2387
|
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
|
2336
2388
|
integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
|
2337
2389
|
|
2338
|
-
glob@^7.
|
2339
|
-
version "7.1.
|
2340
|
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.
|
2341
|
-
integrity sha512-
|
2390
|
+
glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
|
2391
|
+
version "7.1.6"
|
2392
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
|
2393
|
+
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
|
2342
2394
|
dependencies:
|
2343
2395
|
fs.realpath "^1.0.0"
|
2344
2396
|
inflight "^1.0.4"
|
@@ -2352,10 +2404,10 @@ globals@^11.1.0:
|
|
2352
2404
|
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
2353
2405
|
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
|
2354
2406
|
|
2355
|
-
graceful-fs@^4.1.11, graceful-fs@^4.1.
|
2356
|
-
version "4.
|
2357
|
-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.
|
2358
|
-
integrity sha512-
|
2407
|
+
graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0:
|
2408
|
+
version "4.2.3"
|
2409
|
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
|
2410
|
+
integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
|
2359
2411
|
|
2360
2412
|
grapheme-breaker@^0.3.2:
|
2361
2413
|
version "0.3.2"
|
@@ -2395,15 +2447,10 @@ has-flag@^3.0.0:
|
|
2395
2447
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
2396
2448
|
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
|
2397
2449
|
|
2398
|
-
has-symbols@^1.0.0:
|
2399
|
-
version "1.0.
|
2400
|
-
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.
|
2401
|
-
integrity
|
2402
|
-
|
2403
|
-
has-unicode@^2.0.0:
|
2404
|
-
version "2.0.1"
|
2405
|
-
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
|
2406
|
-
integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
|
2450
|
+
has-symbols@^1.0.0, has-symbols@^1.0.1:
|
2451
|
+
version "1.0.1"
|
2452
|
+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
|
2453
|
+
integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
|
2407
2454
|
|
2408
2455
|
has-value@^0.3.1:
|
2409
2456
|
version "0.3.1"
|
@@ -2501,18 +2548,18 @@ html-tags@^1.0.0:
|
|
2501
2548
|
integrity sha1-x43mW1Zjqll5id0rerSSANfk25g=
|
2502
2549
|
|
2503
2550
|
htmlnano@^0.2.2:
|
2504
|
-
version "0.2.
|
2505
|
-
resolved "https://registry.yarnpkg.com/htmlnano/-/htmlnano-0.2.
|
2506
|
-
integrity sha512-
|
2507
|
-
dependencies:
|
2508
|
-
cssnano "^4.1.
|
2509
|
-
normalize-html-whitespace "^0.
|
2510
|
-
|
2511
|
-
posthtml "^
|
2512
|
-
|
2513
|
-
svgo "^1.
|
2514
|
-
terser "^3.
|
2515
|
-
uncss "^0.
|
2551
|
+
version "0.2.5"
|
2552
|
+
resolved "https://registry.yarnpkg.com/htmlnano/-/htmlnano-0.2.5.tgz#134fd9548c7cbe51c8508ce434a3f9488cff1b0b"
|
2553
|
+
integrity sha512-X1iPSwXG/iF9bVs+/obt2n6F64uH0ETkA8zp7qFDmLW9/+A6ueHGeb/+qD67T21qUY22owZPMdawljN50ajkqA==
|
2554
|
+
dependencies:
|
2555
|
+
cssnano "^4.1.10"
|
2556
|
+
normalize-html-whitespace "^1.0.0"
|
2557
|
+
posthtml "^0.12.0"
|
2558
|
+
posthtml-render "^1.1.5"
|
2559
|
+
purgecss "^1.4.0"
|
2560
|
+
svgo "^1.3.2"
|
2561
|
+
terser "^4.3.9"
|
2562
|
+
uncss "^0.17.2"
|
2516
2563
|
|
2517
2564
|
htmlparser2@^3.9.2:
|
2518
2565
|
version "3.10.1"
|
@@ -2527,12 +2574,12 @@ htmlparser2@^3.9.2:
|
|
2527
2574
|
readable-stream "^3.1.1"
|
2528
2575
|
|
2529
2576
|
http-errors@~1.7.2:
|
2530
|
-
version "1.7.
|
2531
|
-
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.
|
2532
|
-
integrity sha512-
|
2577
|
+
version "1.7.3"
|
2578
|
+
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
|
2579
|
+
integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
|
2533
2580
|
dependencies:
|
2534
2581
|
depd "~1.1.2"
|
2535
|
-
inherits "2.0.
|
2582
|
+
inherits "2.0.4"
|
2536
2583
|
setprototypeof "1.1.1"
|
2537
2584
|
statuses ">= 1.5.0 < 2"
|
2538
2585
|
toidentifier "1.0.0"
|
@@ -2551,7 +2598,7 @@ https-browserify@^1.0.0:
|
|
2551
2598
|
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
|
2552
2599
|
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
|
2553
2600
|
|
2554
|
-
iconv-lite@0.4.24
|
2601
|
+
iconv-lite@0.4.24:
|
2555
2602
|
version "0.4.24"
|
2556
2603
|
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
|
2557
2604
|
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
|
@@ -2568,13 +2615,6 @@ ieee754@^1.1.4:
|
|
2568
2615
|
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
|
2569
2616
|
integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
|
2570
2617
|
|
2571
|
-
ignore-walk@^3.0.1:
|
2572
|
-
version "3.0.1"
|
2573
|
-
resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
|
2574
|
-
integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==
|
2575
|
-
dependencies:
|
2576
|
-
minimatch "^3.0.4"
|
2577
|
-
|
2578
2618
|
import-fresh@^2.0.0:
|
2579
2619
|
version "2.0.0"
|
2580
2620
|
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
|
@@ -2588,11 +2628,6 @@ indexes-of@^1.0.1:
|
|
2588
2628
|
resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
|
2589
2629
|
integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
|
2590
2630
|
|
2591
|
-
indexof@0.0.1:
|
2592
|
-
version "0.0.1"
|
2593
|
-
resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
|
2594
|
-
integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=
|
2595
|
-
|
2596
2631
|
inflight@^1.0.4:
|
2597
2632
|
version "1.0.6"
|
2598
2633
|
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
@@ -2601,22 +2636,22 @@ inflight@^1.0.4:
|
|
2601
2636
|
once "^1.3.0"
|
2602
2637
|
wrappy "1"
|
2603
2638
|
|
2604
|
-
inherits@2, inherits@2.0.
|
2605
|
-
version "2.0.
|
2606
|
-
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.
|
2607
|
-
integrity
|
2639
|
+
inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
|
2640
|
+
version "2.0.4"
|
2641
|
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
2642
|
+
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
2608
2643
|
|
2609
2644
|
inherits@2.0.1:
|
2610
2645
|
version "2.0.1"
|
2611
2646
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
|
2612
2647
|
integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
|
2613
2648
|
|
2614
|
-
|
2615
|
-
version "
|
2616
|
-
resolved "https://registry.yarnpkg.com/
|
2617
|
-
integrity
|
2649
|
+
inherits@2.0.3:
|
2650
|
+
version "2.0.3"
|
2651
|
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
2652
|
+
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
|
2618
2653
|
|
2619
|
-
invariant@^2.2.2:
|
2654
|
+
invariant@^2.2.2, invariant@^2.2.4:
|
2620
2655
|
version "2.2.4"
|
2621
2656
|
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
|
2622
2657
|
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
|
@@ -2628,6 +2663,11 @@ is-absolute-url@^2.0.0:
|
|
2628
2663
|
resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
|
2629
2664
|
integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=
|
2630
2665
|
|
2666
|
+
is-absolute-url@^3.0.1:
|
2667
|
+
version "3.0.3"
|
2668
|
+
resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698"
|
2669
|
+
integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
|
2670
|
+
|
2631
2671
|
is-accessor-descriptor@^0.1.6:
|
2632
2672
|
version "0.1.6"
|
2633
2673
|
resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
|
@@ -2664,10 +2704,10 @@ is-buffer@^1.1.5:
|
|
2664
2704
|
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
|
2665
2705
|
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
|
2666
2706
|
|
2667
|
-
is-callable@^1.1.4:
|
2668
|
-
version "1.1.
|
2669
|
-
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.
|
2670
|
-
integrity sha512-
|
2707
|
+
is-callable@^1.1.4, is-callable@^1.1.5:
|
2708
|
+
version "1.1.5"
|
2709
|
+
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab"
|
2710
|
+
integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==
|
2671
2711
|
|
2672
2712
|
is-color-stop@^1.0.0:
|
2673
2713
|
version "1.1.0"
|
@@ -2696,9 +2736,9 @@ is-data-descriptor@^1.0.0:
|
|
2696
2736
|
kind-of "^6.0.0"
|
2697
2737
|
|
2698
2738
|
is-date-object@^1.0.1:
|
2699
|
-
version "1.0.
|
2700
|
-
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.
|
2701
|
-
integrity
|
2739
|
+
version "1.0.2"
|
2740
|
+
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
|
2741
|
+
integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
|
2702
2742
|
|
2703
2743
|
is-descriptor@^0.1.0:
|
2704
2744
|
version "0.1.6"
|
@@ -2740,13 +2780,6 @@ is-extglob@^2.1.0, is-extglob@^2.1.1:
|
|
2740
2780
|
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
2741
2781
|
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
|
2742
2782
|
|
2743
|
-
is-fullwidth-code-point@^1.0.0:
|
2744
|
-
version "1.0.0"
|
2745
|
-
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
|
2746
|
-
integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
|
2747
|
-
dependencies:
|
2748
|
-
number-is-nan "^1.0.0"
|
2749
|
-
|
2750
2783
|
is-fullwidth-code-point@^2.0.0:
|
2751
2784
|
version "2.0.0"
|
2752
2785
|
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
|
@@ -2766,7 +2799,7 @@ is-glob@^4.0.0:
|
|
2766
2799
|
dependencies:
|
2767
2800
|
is-extglob "^2.1.1"
|
2768
2801
|
|
2769
|
-
is-html@^1.
|
2802
|
+
is-html@^1.1.0:
|
2770
2803
|
version "1.1.0"
|
2771
2804
|
resolved "https://registry.yarnpkg.com/is-html/-/is-html-1.1.0.tgz#e04f1c18d39485111396f9a0273eab51af218464"
|
2772
2805
|
integrity sha1-4E8cGNOUhRETlvmgJz6rUa8hhGQ=
|
@@ -2785,19 +2818,19 @@ is-obj@^1.0.0:
|
|
2785
2818
|
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
|
2786
2819
|
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
|
2787
2820
|
|
2788
|
-
is-plain-object@^2.0.
|
2821
|
+
is-plain-object@^2.0.3, is-plain-object@^2.0.4:
|
2789
2822
|
version "2.0.4"
|
2790
2823
|
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
|
2791
2824
|
integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
|
2792
2825
|
dependencies:
|
2793
2826
|
isobject "^3.0.1"
|
2794
2827
|
|
2795
|
-
is-regex@^1.0.
|
2796
|
-
version "1.0.
|
2797
|
-
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.
|
2798
|
-
integrity
|
2828
|
+
is-regex@^1.0.5:
|
2829
|
+
version "1.0.5"
|
2830
|
+
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae"
|
2831
|
+
integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==
|
2799
2832
|
dependencies:
|
2800
|
-
has "^1.0.
|
2833
|
+
has "^1.0.3"
|
2801
2834
|
|
2802
2835
|
is-resolvable@^1.0.0:
|
2803
2836
|
version "1.1.0"
|
@@ -2812,11 +2845,11 @@ is-svg@^3.0.0:
|
|
2812
2845
|
html-comment-regex "^1.1.0"
|
2813
2846
|
|
2814
2847
|
is-symbol@^1.0.2:
|
2815
|
-
version "1.0.
|
2816
|
-
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.
|
2817
|
-
integrity sha512-
|
2848
|
+
version "1.0.3"
|
2849
|
+
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
|
2850
|
+
integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
|
2818
2851
|
dependencies:
|
2819
|
-
has-symbols "^1.0.
|
2852
|
+
has-symbols "^1.0.1"
|
2820
2853
|
|
2821
2854
|
is-typedarray@~1.0.0:
|
2822
2855
|
version "1.0.0"
|
@@ -2870,28 +2903,17 @@ isstream@~0.1.2:
|
|
2870
2903
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
2871
2904
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
2872
2905
|
|
2873
|
-
|
2874
|
-
version "
|
2875
|
-
resolved "https://registry.yarnpkg.com/
|
2876
|
-
integrity sha512-
|
2877
|
-
dependencies:
|
2878
|
-
config-chain "^1.1.12"
|
2879
|
-
editorconfig "^0.15.3"
|
2880
|
-
glob "^7.1.3"
|
2881
|
-
mkdirp "~0.5.1"
|
2882
|
-
nopt "~4.0.1"
|
2883
|
-
|
2884
|
-
js-levenshtein@^1.1.3:
|
2885
|
-
version "1.1.6"
|
2886
|
-
resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
|
2887
|
-
integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==
|
2906
|
+
jquery@^3.4.1:
|
2907
|
+
version "3.4.1"
|
2908
|
+
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2"
|
2909
|
+
integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw==
|
2888
2910
|
|
2889
2911
|
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
|
2890
2912
|
version "4.0.0"
|
2891
2913
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
2892
2914
|
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
2893
2915
|
|
2894
|
-
js-yaml@^3.10.0, js-yaml@^3.13.
|
2916
|
+
js-yaml@^3.10.0, js-yaml@^3.13.1:
|
2895
2917
|
version "3.13.1"
|
2896
2918
|
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
|
2897
2919
|
integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
|
@@ -2904,36 +2926,36 @@ jsbn@~0.1.0:
|
|
2904
2926
|
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
|
2905
2927
|
integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
|
2906
2928
|
|
2907
|
-
jsdom@^
|
2908
|
-
version "
|
2909
|
-
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-
|
2910
|
-
integrity sha512-
|
2929
|
+
jsdom@^14.1.0:
|
2930
|
+
version "14.1.0"
|
2931
|
+
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-14.1.0.tgz#916463b6094956b0a6c1782c94e380cd30e1981b"
|
2932
|
+
integrity sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng==
|
2911
2933
|
dependencies:
|
2912
2934
|
abab "^2.0.0"
|
2913
|
-
acorn "^
|
2914
|
-
acorn-globals "^4.
|
2935
|
+
acorn "^6.0.4"
|
2936
|
+
acorn-globals "^4.3.0"
|
2915
2937
|
array-equal "^1.0.0"
|
2916
|
-
cssom "
|
2917
|
-
cssstyle "^1.
|
2918
|
-
data-urls "^1.
|
2938
|
+
cssom "^0.3.4"
|
2939
|
+
cssstyle "^1.1.1"
|
2940
|
+
data-urls "^1.1.0"
|
2919
2941
|
domexception "^1.0.1"
|
2920
|
-
escodegen "^1.
|
2942
|
+
escodegen "^1.11.0"
|
2921
2943
|
html-encoding-sniffer "^1.0.2"
|
2922
|
-
|
2923
|
-
|
2924
|
-
parse5 "4.0.0"
|
2944
|
+
nwsapi "^2.1.3"
|
2945
|
+
parse5 "5.1.0"
|
2925
2946
|
pn "^1.1.0"
|
2926
|
-
request "^2.
|
2947
|
+
request "^2.88.0"
|
2927
2948
|
request-promise-native "^1.0.5"
|
2928
|
-
|
2949
|
+
saxes "^3.1.9"
|
2929
2950
|
symbol-tree "^3.2.2"
|
2930
|
-
tough-cookie "^2.
|
2951
|
+
tough-cookie "^2.5.0"
|
2931
2952
|
w3c-hr-time "^1.0.1"
|
2953
|
+
w3c-xmlserializer "^1.1.2"
|
2932
2954
|
webidl-conversions "^4.0.2"
|
2933
|
-
whatwg-encoding "^1.0.
|
2934
|
-
whatwg-mimetype "^2.
|
2935
|
-
whatwg-url "^
|
2936
|
-
ws "^
|
2955
|
+
whatwg-encoding "^1.0.5"
|
2956
|
+
whatwg-mimetype "^2.3.0"
|
2957
|
+
whatwg-url "^7.0.0"
|
2958
|
+
ws "^6.1.2"
|
2937
2959
|
xml-name-validator "^3.0.0"
|
2938
2960
|
|
2939
2961
|
jsesc@^2.5.1:
|
@@ -2974,9 +2996,9 @@ json5@^1.0.1:
|
|
2974
2996
|
minimist "^1.2.0"
|
2975
2997
|
|
2976
2998
|
json5@^2.1.0:
|
2977
|
-
version "2.1.
|
2978
|
-
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.
|
2979
|
-
integrity sha512-
|
2999
|
+
version "2.1.1"
|
3000
|
+
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6"
|
3001
|
+
integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==
|
2980
3002
|
dependencies:
|
2981
3003
|
minimist "^1.2.0"
|
2982
3004
|
|
@@ -3021,10 +3043,17 @@ kind-of@^6.0.0, kind-of@^6.0.2:
|
|
3021
3043
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
|
3022
3044
|
integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
|
3023
3045
|
|
3024
|
-
|
3025
|
-
version "1.
|
3026
|
-
resolved "https://registry.yarnpkg.com/
|
3027
|
-
integrity sha512-
|
3046
|
+
leven@^3.1.0:
|
3047
|
+
version "3.1.0"
|
3048
|
+
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
3049
|
+
integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
|
3050
|
+
|
3051
|
+
levenary@^1.1.0:
|
3052
|
+
version "1.1.0"
|
3053
|
+
resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.0.tgz#fc146fe75f32dc483a0a2c64aef720f602cd6210"
|
3054
|
+
integrity sha512-VHcwhO0UTpUW7rLPN2/OiWJdgA1e9BqEDALhrgCe/F+uUJnep6CoUsTzMeP8Rh0NGr9uKquXxqe7lwLZo509nQ==
|
3055
|
+
dependencies:
|
3056
|
+
leven "^3.1.0"
|
3028
3057
|
|
3029
3058
|
levn@~0.3.0:
|
3030
3059
|
version "0.3.0"
|
@@ -3034,6 +3063,14 @@ levn@~0.3.0:
|
|
3034
3063
|
prelude-ls "~1.1.2"
|
3035
3064
|
type-check "~0.3.2"
|
3036
3065
|
|
3066
|
+
locate-path@^3.0.0:
|
3067
|
+
version "3.0.0"
|
3068
|
+
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
|
3069
|
+
integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
|
3070
|
+
dependencies:
|
3071
|
+
p-locate "^3.0.0"
|
3072
|
+
path-exists "^3.0.0"
|
3073
|
+
|
3037
3074
|
lodash.clone@^4.5.0:
|
3038
3075
|
version "4.5.0"
|
3039
3076
|
resolved "https://registry.yarnpkg.com/lodash.clone/-/lodash.clone-4.5.0.tgz#195870450f5a13192478df4bc3d23d2dea1907b6"
|
@@ -3059,10 +3096,10 @@ lodash.uniq@^4.5.0:
|
|
3059
3096
|
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
3060
3097
|
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
3061
3098
|
|
3062
|
-
lodash@^4.
|
3063
|
-
version "4.17.
|
3064
|
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.
|
3065
|
-
integrity sha512-
|
3099
|
+
lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.4:
|
3100
|
+
version "4.17.15"
|
3101
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
3102
|
+
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
3066
3103
|
|
3067
3104
|
log-symbols@^2.2.0:
|
3068
3105
|
version "2.2.0"
|
@@ -3078,14 +3115,6 @@ loose-envify@^1.0.0:
|
|
3078
3115
|
dependencies:
|
3079
3116
|
js-tokens "^3.0.0 || ^4.0.0"
|
3080
3117
|
|
3081
|
-
lru-cache@^4.1.5:
|
3082
|
-
version "4.1.5"
|
3083
|
-
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
|
3084
|
-
integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
|
3085
|
-
dependencies:
|
3086
|
-
pseudomap "^1.0.2"
|
3087
|
-
yallist "^2.1.2"
|
3088
|
-
|
3089
3118
|
magic-string@^0.22.4:
|
3090
3119
|
version "0.22.5"
|
3091
3120
|
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e"
|
@@ -3114,10 +3143,10 @@ md5.js@^1.3.4:
|
|
3114
3143
|
inherits "^2.0.1"
|
3115
3144
|
safe-buffer "^5.1.2"
|
3116
3145
|
|
3117
|
-
mdn-data
|
3118
|
-
version "
|
3119
|
-
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-
|
3120
|
-
integrity sha512-
|
3146
|
+
mdn-data@2.0.4:
|
3147
|
+
version "2.0.4"
|
3148
|
+
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
|
3149
|
+
integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
|
3121
3150
|
|
3122
3151
|
merge-source-map@1.0.4:
|
3123
3152
|
version "1.0.4"
|
@@ -3127,9 +3156,9 @@ merge-source-map@1.0.4:
|
|
3127
3156
|
source-map "^0.5.6"
|
3128
3157
|
|
3129
3158
|
merge2@^1.2.3:
|
3130
|
-
version "1.
|
3131
|
-
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.
|
3132
|
-
integrity sha512-
|
3159
|
+
version "1.3.0"
|
3160
|
+
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81"
|
3161
|
+
integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==
|
3133
3162
|
|
3134
3163
|
micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4:
|
3135
3164
|
version "3.1.10"
|
@@ -3158,17 +3187,17 @@ miller-rabin@^4.0.0:
|
|
3158
3187
|
bn.js "^4.0.0"
|
3159
3188
|
brorand "^1.0.1"
|
3160
3189
|
|
3161
|
-
mime-db@1.
|
3162
|
-
version "1.
|
3163
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.
|
3164
|
-
integrity sha512
|
3190
|
+
mime-db@1.43.0:
|
3191
|
+
version "1.43.0"
|
3192
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58"
|
3193
|
+
integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==
|
3165
3194
|
|
3166
3195
|
mime-types@^2.1.12, mime-types@~2.1.19:
|
3167
|
-
version "2.1.
|
3168
|
-
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.
|
3169
|
-
integrity sha512-
|
3196
|
+
version "2.1.26"
|
3197
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06"
|
3198
|
+
integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==
|
3170
3199
|
dependencies:
|
3171
|
-
mime-db "1.
|
3200
|
+
mime-db "1.43.0"
|
3172
3201
|
|
3173
3202
|
mime@1.6.0:
|
3174
3203
|
version "1.6.0"
|
@@ -3207,30 +3236,15 @@ minimist@^1.1.3, minimist@^1.2.0:
|
|
3207
3236
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
3208
3237
|
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
|
3209
3238
|
|
3210
|
-
minipass@^2.2.1, minipass@^2.3.4:
|
3211
|
-
version "2.3.5"
|
3212
|
-
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848"
|
3213
|
-
integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==
|
3214
|
-
dependencies:
|
3215
|
-
safe-buffer "^5.1.2"
|
3216
|
-
yallist "^3.0.0"
|
3217
|
-
|
3218
|
-
minizlib@^1.1.1:
|
3219
|
-
version "1.2.1"
|
3220
|
-
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614"
|
3221
|
-
integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA==
|
3222
|
-
dependencies:
|
3223
|
-
minipass "^2.2.1"
|
3224
|
-
|
3225
3239
|
mixin-deep@^1.2.0:
|
3226
|
-
version "1.3.
|
3227
|
-
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.
|
3228
|
-
integrity sha512-
|
3240
|
+
version "1.3.2"
|
3241
|
+
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
|
3242
|
+
integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
|
3229
3243
|
dependencies:
|
3230
3244
|
for-in "^1.0.2"
|
3231
3245
|
is-extendable "^1.0.1"
|
3232
3246
|
|
3233
|
-
mkdirp@^0.5.
|
3247
|
+
mkdirp@^0.5.1, mkdirp@~0.5.1:
|
3234
3248
|
version "0.5.1"
|
3235
3249
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
3236
3250
|
integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
|
@@ -3242,15 +3256,20 @@ ms@2.0.0:
|
|
3242
3256
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
3243
3257
|
integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
|
3244
3258
|
|
3245
|
-
ms@2.1.1
|
3259
|
+
ms@2.1.1:
|
3246
3260
|
version "2.1.1"
|
3247
3261
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
|
3248
3262
|
integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
|
3249
3263
|
|
3264
|
+
ms@^2.1.1:
|
3265
|
+
version "2.1.2"
|
3266
|
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
3267
|
+
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
3268
|
+
|
3250
3269
|
nan@^2.12.1:
|
3251
|
-
version "2.
|
3252
|
-
resolved "https://registry.yarnpkg.com/nan/-/nan-2.
|
3253
|
-
integrity sha512-
|
3270
|
+
version "2.14.0"
|
3271
|
+
resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c"
|
3272
|
+
integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
|
3254
3273
|
|
3255
3274
|
nanomatch@^1.2.9:
|
3256
3275
|
version "1.2.13"
|
@@ -3269,24 +3288,15 @@ nanomatch@^1.2.9:
|
|
3269
3288
|
snapdragon "^0.8.1"
|
3270
3289
|
to-regex "^3.0.1"
|
3271
3290
|
|
3272
|
-
needle@^2.2.1:
|
3273
|
-
version "2.3.1"
|
3274
|
-
resolved "https://registry.yarnpkg.com/needle/-/needle-2.3.1.tgz#d272f2f4034afb9c4c9ab1379aabc17fc85c9388"
|
3275
|
-
integrity sha512-CaLXV3W8Vnbps8ZANqDGz7j4x7Yj1LW4TWF/TQuDfj7Cfx4nAPTvw98qgTevtto1oHDrh3pQkaODbqupXlsWTg==
|
3276
|
-
dependencies:
|
3277
|
-
debug "^4.1.0"
|
3278
|
-
iconv-lite "^0.4.4"
|
3279
|
-
sax "^1.2.4"
|
3280
|
-
|
3281
3291
|
nice-try@^1.0.4:
|
3282
3292
|
version "1.0.5"
|
3283
3293
|
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
|
3284
3294
|
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
|
3285
3295
|
|
3286
|
-
node-addon-api@^1.
|
3287
|
-
version "1.
|
3288
|
-
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.
|
3289
|
-
integrity sha512-
|
3296
|
+
node-addon-api@^1.7.1:
|
3297
|
+
version "1.7.1"
|
3298
|
+
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.1.tgz#cf813cd69bb8d9100f6bdca6755fc268f54ac492"
|
3299
|
+
integrity sha512-2+DuKodWvwRTrCfKOeR24KIc5unKjOh8mz17NCzVnHWfjAdDqbfbjqh7gUT+BkXBRQM52+xCHciKWonJ3CbJMQ==
|
3290
3300
|
|
3291
3301
|
node-emoji@^1.8.1:
|
3292
3302
|
version "1.10.0"
|
@@ -3301,9 +3311,9 @@ node-forge@^0.7.1:
|
|
3301
3311
|
integrity sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==
|
3302
3312
|
|
3303
3313
|
node-libs-browser@^2.0.0:
|
3304
|
-
version "2.2.
|
3305
|
-
resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.
|
3306
|
-
integrity sha512-
|
3314
|
+
version "2.2.1"
|
3315
|
+
resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
|
3316
|
+
integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
|
3307
3317
|
dependencies:
|
3308
3318
|
assert "^1.1.1"
|
3309
3319
|
browserify-zlib "^0.2.0"
|
@@ -3315,7 +3325,7 @@ node-libs-browser@^2.0.0:
|
|
3315
3325
|
events "^3.0.0"
|
3316
3326
|
https-browserify "^1.0.0"
|
3317
3327
|
os-browserify "^0.3.0"
|
3318
|
-
path-browserify "0.0.
|
3328
|
+
path-browserify "0.0.1"
|
3319
3329
|
process "^0.11.10"
|
3320
3330
|
punycode "^1.2.4"
|
3321
3331
|
querystring-es3 "^0.2.0"
|
@@ -3327,43 +3337,19 @@ node-libs-browser@^2.0.0:
|
|
3327
3337
|
tty-browserify "0.0.0"
|
3328
3338
|
url "^0.11.0"
|
3329
3339
|
util "^0.11.0"
|
3330
|
-
vm-browserify "
|
3340
|
+
vm-browserify "^1.0.1"
|
3331
3341
|
|
3332
|
-
node-
|
3333
|
-
version "
|
3334
|
-
resolved "https://registry.yarnpkg.com/node-
|
3335
|
-
integrity sha512-
|
3342
|
+
node-releases@^1.1.44:
|
3343
|
+
version "1.1.45"
|
3344
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.45.tgz#4cf7e9175d71b1317f15ffd68ce63bce1d53e9f2"
|
3345
|
+
integrity sha512-cXvGSfhITKI8qsV116u2FTzH5EWZJfgG7d4cpqwF8I8+1tWpD6AsvvGRKq2onR0DNj1jfqsjkXZsm14JMS7Cyg==
|
3336
3346
|
dependencies:
|
3337
|
-
|
3338
|
-
mkdirp "^0.5.1"
|
3339
|
-
needle "^2.2.1"
|
3340
|
-
nopt "^4.0.1"
|
3341
|
-
npm-packlist "^1.1.6"
|
3342
|
-
npmlog "^4.0.2"
|
3343
|
-
rc "^1.2.7"
|
3344
|
-
rimraf "^2.6.1"
|
3345
|
-
semver "^5.3.0"
|
3346
|
-
tar "^4"
|
3347
|
-
|
3348
|
-
node-releases@^1.1.17:
|
3349
|
-
version "1.1.18"
|
3350
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.18.tgz#cc98fd75598a324a77188ebddf6650e9cbd8b1d5"
|
3351
|
-
integrity sha512-/mnVgm6u/8OwlIsoyRXtTI0RfQcxZoAZbdwyXap0EeWwcOpDDymyCHM2/aR9XKmHXrvizHoPAOs0pcbiJ6RUaA==
|
3352
|
-
dependencies:
|
3353
|
-
semver "^5.3.0"
|
3354
|
-
|
3355
|
-
nopt@^4.0.1, nopt@~4.0.1:
|
3356
|
-
version "4.0.1"
|
3357
|
-
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
|
3358
|
-
integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=
|
3359
|
-
dependencies:
|
3360
|
-
abbrev "1"
|
3361
|
-
osenv "^0.1.4"
|
3347
|
+
semver "^6.3.0"
|
3362
3348
|
|
3363
|
-
normalize-html-whitespace@^0.
|
3364
|
-
version "0.
|
3365
|
-
resolved "https://registry.yarnpkg.com/normalize-html-whitespace/-/normalize-html-whitespace-0.
|
3366
|
-
integrity
|
3349
|
+
normalize-html-whitespace@^1.0.0:
|
3350
|
+
version "1.0.0"
|
3351
|
+
resolved "https://registry.yarnpkg.com/normalize-html-whitespace/-/normalize-html-whitespace-1.0.0.tgz#5e3c8e192f1b06c3b9eee4b7e7f28854c7601e34"
|
3352
|
+
integrity sha512-9ui7CGtOOlehQu0t/OhhlmDyc71mKVlv+4vF+me4iZLPrNtRL2xoquEdfZxasC/bdQi/Hr3iTrpyRKIG+ocabA==
|
3367
3353
|
|
3368
3354
|
normalize-path@^2.1.1:
|
3369
3355
|
version "2.1.1"
|
@@ -3392,29 +3378,6 @@ normalize.css@^8.0.1:
|
|
3392
3378
|
resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3"
|
3393
3379
|
integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==
|
3394
3380
|
|
3395
|
-
npm-bundled@^1.0.1:
|
3396
|
-
version "1.0.6"
|
3397
|
-
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd"
|
3398
|
-
integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==
|
3399
|
-
|
3400
|
-
npm-packlist@^1.1.6:
|
3401
|
-
version "1.4.1"
|
3402
|
-
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc"
|
3403
|
-
integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw==
|
3404
|
-
dependencies:
|
3405
|
-
ignore-walk "^3.0.1"
|
3406
|
-
npm-bundled "^1.0.1"
|
3407
|
-
|
3408
|
-
npmlog@^4.0.2:
|
3409
|
-
version "4.1.2"
|
3410
|
-
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
3411
|
-
integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
|
3412
|
-
dependencies:
|
3413
|
-
are-we-there-yet "~1.1.2"
|
3414
|
-
console-control-strings "~1.1.0"
|
3415
|
-
gauge "~2.7.3"
|
3416
|
-
set-blocking "~2.0.0"
|
3417
|
-
|
3418
3381
|
nth-check@^1.0.2:
|
3419
3382
|
version "1.0.2"
|
3420
3383
|
resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
|
@@ -3427,22 +3390,17 @@ num2fraction@^1.2.2:
|
|
3427
3390
|
resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
|
3428
3391
|
integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
|
3429
3392
|
|
3430
|
-
|
3431
|
-
version "
|
3432
|
-
resolved "https://registry.yarnpkg.com/
|
3433
|
-
integrity
|
3434
|
-
|
3435
|
-
nwsapi@^2.0.7:
|
3436
|
-
version "2.1.4"
|
3437
|
-
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f"
|
3438
|
-
integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw==
|
3393
|
+
nwsapi@^2.1.3:
|
3394
|
+
version "2.2.0"
|
3395
|
+
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
|
3396
|
+
integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
|
3439
3397
|
|
3440
3398
|
oauth-sign@~0.9.0:
|
3441
3399
|
version "0.9.0"
|
3442
3400
|
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
|
3443
3401
|
integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
|
3444
3402
|
|
3445
|
-
object-assign@^4.
|
3403
|
+
object-assign@^4.1.1:
|
3446
3404
|
version "4.1.1"
|
3447
3405
|
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
3448
3406
|
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
|
@@ -3456,12 +3414,17 @@ object-copy@^0.1.0:
|
|
3456
3414
|
define-property "^0.2.5"
|
3457
3415
|
kind-of "^3.0.3"
|
3458
3416
|
|
3417
|
+
object-inspect@^1.7.0:
|
3418
|
+
version "1.7.0"
|
3419
|
+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
|
3420
|
+
integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
|
3421
|
+
|
3459
3422
|
object-inspect@~1.4.0:
|
3460
3423
|
version "1.4.1"
|
3461
3424
|
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.4.1.tgz#37ffb10e71adaf3748d05f713b4c9452f402cbc4"
|
3462
3425
|
integrity sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw==
|
3463
3426
|
|
3464
|
-
object-keys@^1.0.12, object-keys@^1.0.6:
|
3427
|
+
object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.0.6, object-keys@^1.1.1:
|
3465
3428
|
version "1.1.1"
|
3466
3429
|
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
|
3467
3430
|
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
|
@@ -3473,13 +3436,23 @@ object-visit@^1.0.0:
|
|
3473
3436
|
dependencies:
|
3474
3437
|
isobject "^3.0.0"
|
3475
3438
|
|
3476
|
-
object.
|
3477
|
-
version "
|
3478
|
-
resolved "https://registry.yarnpkg.com/object.
|
3479
|
-
integrity
|
3439
|
+
object.assign@^4.1.0:
|
3440
|
+
version "4.1.0"
|
3441
|
+
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
|
3442
|
+
integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
|
3480
3443
|
dependencies:
|
3481
3444
|
define-properties "^1.1.2"
|
3482
|
-
|
3445
|
+
function-bind "^1.1.1"
|
3446
|
+
has-symbols "^1.0.0"
|
3447
|
+
object-keys "^1.0.11"
|
3448
|
+
|
3449
|
+
object.getownpropertydescriptors@^2.0.3:
|
3450
|
+
version "2.1.0"
|
3451
|
+
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649"
|
3452
|
+
integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==
|
3453
|
+
dependencies:
|
3454
|
+
define-properties "^1.1.3"
|
3455
|
+
es-abstract "^1.17.0-next.1"
|
3483
3456
|
|
3484
3457
|
object.pick@^1.3.0:
|
3485
3458
|
version "1.3.0"
|
@@ -3489,12 +3462,12 @@ object.pick@^1.3.0:
|
|
3489
3462
|
isobject "^3.0.1"
|
3490
3463
|
|
3491
3464
|
object.values@^1.1.0:
|
3492
|
-
version "1.1.
|
3493
|
-
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.
|
3494
|
-
integrity sha512-
|
3465
|
+
version "1.1.1"
|
3466
|
+
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
|
3467
|
+
integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
|
3495
3468
|
dependencies:
|
3496
3469
|
define-properties "^1.1.3"
|
3497
|
-
es-abstract "^1.
|
3470
|
+
es-abstract "^1.17.0-next.1"
|
3498
3471
|
function-bind "^1.1.1"
|
3499
3472
|
has "^1.0.3"
|
3500
3473
|
|
@@ -3527,16 +3500,16 @@ opn@^5.1.0:
|
|
3527
3500
|
is-wsl "^1.1.0"
|
3528
3501
|
|
3529
3502
|
optionator@^0.8.1:
|
3530
|
-
version "0.8.
|
3531
|
-
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.
|
3532
|
-
integrity
|
3503
|
+
version "0.8.3"
|
3504
|
+
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
|
3505
|
+
integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
|
3533
3506
|
dependencies:
|
3534
3507
|
deep-is "~0.1.3"
|
3535
|
-
fast-levenshtein "~2.0.
|
3508
|
+
fast-levenshtein "~2.0.6"
|
3536
3509
|
levn "~0.3.0"
|
3537
3510
|
prelude-ls "~1.1.2"
|
3538
3511
|
type-check "~0.3.2"
|
3539
|
-
|
3512
|
+
word-wrap "~1.2.3"
|
3540
3513
|
|
3541
3514
|
ora@^2.1.0:
|
3542
3515
|
version "2.1.0"
|
@@ -3555,23 +3528,24 @@ os-browserify@^0.3.0:
|
|
3555
3528
|
resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
|
3556
3529
|
integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
|
3557
3530
|
|
3558
|
-
|
3559
|
-
version "
|
3560
|
-
resolved "https://registry.yarnpkg.com/
|
3561
|
-
integrity
|
3562
|
-
|
3563
|
-
|
3564
|
-
version "1.0.2"
|
3565
|
-
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
3566
|
-
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
|
3531
|
+
p-limit@^2.0.0:
|
3532
|
+
version "2.2.2"
|
3533
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e"
|
3534
|
+
integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
|
3535
|
+
dependencies:
|
3536
|
+
p-try "^2.0.0"
|
3567
3537
|
|
3568
|
-
|
3569
|
-
version "0.
|
3570
|
-
resolved "https://registry.yarnpkg.com/
|
3571
|
-
integrity sha512-
|
3538
|
+
p-locate@^3.0.0:
|
3539
|
+
version "3.0.0"
|
3540
|
+
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
|
3541
|
+
integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
|
3572
3542
|
dependencies:
|
3573
|
-
|
3574
|
-
|
3543
|
+
p-limit "^2.0.0"
|
3544
|
+
|
3545
|
+
p-try@^2.0.0:
|
3546
|
+
version "2.2.0"
|
3547
|
+
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
|
3548
|
+
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
|
3575
3549
|
|
3576
3550
|
pako@^0.2.5:
|
3577
3551
|
version "0.2.9"
|
@@ -3584,27 +3558,27 @@ pako@~1.0.5:
|
|
3584
3558
|
integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==
|
3585
3559
|
|
3586
3560
|
parcel-bundler@^1.12.3:
|
3587
|
-
version "1.12.
|
3588
|
-
resolved "https://registry.yarnpkg.com/parcel-bundler/-/parcel-bundler-1.12.
|
3589
|
-
integrity sha512-
|
3590
|
-
dependencies:
|
3591
|
-
"@babel/code-frame" "^7.0.0
|
3592
|
-
"@babel/core" "^7.
|
3593
|
-
"@babel/generator" "^7.
|
3594
|
-
"@babel/parser" "^7.
|
3595
|
-
"@babel/plugin-transform-flow-strip-types" "^7.
|
3596
|
-
"@babel/plugin-transform-modules-commonjs" "^7.
|
3597
|
-
"@babel/plugin-transform-react-jsx" "^7.0.0
|
3598
|
-
"@babel/preset-env" "^7.
|
3599
|
-
"@babel/runtime" "^7.
|
3600
|
-
"@babel/template" "^7.
|
3601
|
-
"@babel/traverse" "^7.
|
3602
|
-
"@babel/types" "^7.
|
3561
|
+
version "1.12.4"
|
3562
|
+
resolved "https://registry.yarnpkg.com/parcel-bundler/-/parcel-bundler-1.12.4.tgz#31223f4ab4d00323a109fce28d5e46775409a9ee"
|
3563
|
+
integrity sha512-G+iZGGiPEXcRzw0fiRxWYCKxdt/F7l9a0xkiU4XbcVRJCSlBnioWEwJMutOCCpoQmaQtjB4RBHDGIHN85AIhLQ==
|
3564
|
+
dependencies:
|
3565
|
+
"@babel/code-frame" "^7.0.0"
|
3566
|
+
"@babel/core" "^7.4.4"
|
3567
|
+
"@babel/generator" "^7.4.4"
|
3568
|
+
"@babel/parser" "^7.4.4"
|
3569
|
+
"@babel/plugin-transform-flow-strip-types" "^7.4.4"
|
3570
|
+
"@babel/plugin-transform-modules-commonjs" "^7.4.4"
|
3571
|
+
"@babel/plugin-transform-react-jsx" "^7.0.0"
|
3572
|
+
"@babel/preset-env" "^7.4.4"
|
3573
|
+
"@babel/runtime" "^7.4.4"
|
3574
|
+
"@babel/template" "^7.4.4"
|
3575
|
+
"@babel/traverse" "^7.4.4"
|
3576
|
+
"@babel/types" "^7.4.4"
|
3603
3577
|
"@iarna/toml" "^2.2.0"
|
3604
3578
|
"@parcel/fs" "^1.11.0"
|
3605
|
-
"@parcel/logger" "^1.11.
|
3579
|
+
"@parcel/logger" "^1.11.1"
|
3606
3580
|
"@parcel/utils" "^1.11.0"
|
3607
|
-
"@parcel/watcher" "^1.12.
|
3581
|
+
"@parcel/watcher" "^1.12.1"
|
3608
3582
|
"@parcel/workers" "^1.11.0"
|
3609
3583
|
ansi-to-html "^0.6.4"
|
3610
3584
|
babylon-walk "^1.0.2"
|
@@ -3613,12 +3587,14 @@ parcel-bundler@^1.12.3:
|
|
3613
3587
|
clone "^2.1.1"
|
3614
3588
|
command-exists "^1.2.6"
|
3615
3589
|
commander "^2.11.0"
|
3590
|
+
core-js "^2.6.5"
|
3616
3591
|
cross-spawn "^6.0.4"
|
3617
3592
|
css-modules-loader-core "^1.1.0"
|
3618
3593
|
cssnano "^4.0.0"
|
3619
3594
|
deasync "^0.1.14"
|
3620
3595
|
dotenv "^5.0.0"
|
3621
|
-
dotenv-expand "^
|
3596
|
+
dotenv-expand "^5.1.0"
|
3597
|
+
envinfo "^7.3.1"
|
3622
3598
|
fast-glob "^2.2.2"
|
3623
3599
|
filesize "^3.6.0"
|
3624
3600
|
get-port "^3.2.0"
|
@@ -3639,7 +3615,7 @@ parcel-bundler@^1.12.3:
|
|
3639
3615
|
posthtml-render "^1.1.3"
|
3640
3616
|
resolve "^1.4.0"
|
3641
3617
|
semver "^5.4.1"
|
3642
|
-
serialize-to-js "^
|
3618
|
+
serialize-to-js "^3.0.0"
|
3643
3619
|
serve-static "^1.12.4"
|
3644
3620
|
source-map "0.6.1"
|
3645
3621
|
terser "^3.7.3"
|
@@ -3647,9 +3623,9 @@ parcel-bundler@^1.12.3:
|
|
3647
3623
|
ws "^5.1.1"
|
3648
3624
|
|
3649
3625
|
parse-asn1@^5.0.0:
|
3650
|
-
version "5.1.
|
3651
|
-
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.
|
3652
|
-
integrity sha512-
|
3626
|
+
version "5.1.5"
|
3627
|
+
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e"
|
3628
|
+
integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==
|
3653
3629
|
dependencies:
|
3654
3630
|
asn1.js "^4.0.0"
|
3655
3631
|
browserify-aes "^1.0.0"
|
@@ -3666,10 +3642,10 @@ parse-json@^4.0.0:
|
|
3666
3642
|
error-ex "^1.3.1"
|
3667
3643
|
json-parse-better-errors "^1.0.1"
|
3668
3644
|
|
3669
|
-
parse5@
|
3670
|
-
version "
|
3671
|
-
resolved "https://registry.yarnpkg.com/parse5/-/parse5-
|
3672
|
-
integrity sha512-
|
3645
|
+
parse5@5.1.0:
|
3646
|
+
version "5.1.0"
|
3647
|
+
resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2"
|
3648
|
+
integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==
|
3673
3649
|
|
3674
3650
|
parseurl@~1.3.3:
|
3675
3651
|
version "1.3.3"
|
@@ -3681,16 +3657,21 @@ pascalcase@^0.1.1:
|
|
3681
3657
|
resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
|
3682
3658
|
integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
|
3683
3659
|
|
3684
|
-
path-browserify@0.0.
|
3685
|
-
version "0.0.
|
3686
|
-
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.
|
3687
|
-
integrity
|
3660
|
+
path-browserify@0.0.1:
|
3661
|
+
version "0.0.1"
|
3662
|
+
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
|
3663
|
+
integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
|
3688
3664
|
|
3689
3665
|
path-dirname@^1.0.0:
|
3690
3666
|
version "1.0.2"
|
3691
3667
|
resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
|
3692
3668
|
integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
|
3693
3669
|
|
3670
|
+
path-exists@^3.0.0:
|
3671
|
+
version "3.0.0"
|
3672
|
+
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
|
3673
|
+
integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
|
3674
|
+
|
3694
3675
|
path-is-absolute@^1.0.0:
|
3695
3676
|
version "1.0.1"
|
3696
3677
|
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
@@ -3805,12 +3786,12 @@ postcss-functions@^3.0.0:
|
|
3805
3786
|
postcss-value-parser "^3.3.0"
|
3806
3787
|
|
3807
3788
|
postcss-js@^2.0.0:
|
3808
|
-
version "2.0.
|
3809
|
-
resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-2.0.
|
3810
|
-
integrity sha512-
|
3789
|
+
version "2.0.3"
|
3790
|
+
resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-2.0.3.tgz#a96f0f23ff3d08cec7dc5b11bf11c5f8077cdab9"
|
3791
|
+
integrity sha512-zS59pAk3deu6dVHyrGqmC3oDXBdNdajk4k1RyxeVXCrcEDBUBHoIhE4QTsmhxgzXxsaqFDAkUZfmMa5f/N/79w==
|
3811
3792
|
dependencies:
|
3812
3793
|
camelcase-css "^2.0.1"
|
3813
|
-
postcss "^7.0.
|
3794
|
+
postcss "^7.0.18"
|
3814
3795
|
|
3815
3796
|
postcss-merge-longhand@^4.0.11:
|
3816
3797
|
version "4.0.11"
|
@@ -3906,12 +3887,12 @@ postcss-modules-values@1.3.0:
|
|
3906
3887
|
postcss "^6.0.1"
|
3907
3888
|
|
3908
3889
|
postcss-nested@^4.1.1:
|
3909
|
-
version "4.1
|
3910
|
-
resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-4.1.
|
3911
|
-
integrity sha512-
|
3890
|
+
version "4.2.1"
|
3891
|
+
resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-4.2.1.tgz#4bc2e5b35e3b1e481ff81e23b700da7f82a8b248"
|
3892
|
+
integrity sha512-AMayXX8tS0HCp4O4lolp4ygj9wBn32DJWXvG6gCv+ZvJrEa00GUxJcJEEzMh87BIe6FrWdYkpR2cuyqHKrxmXw==
|
3912
3893
|
dependencies:
|
3913
|
-
postcss "^7.0.
|
3914
|
-
postcss-selector-parser "^
|
3894
|
+
postcss "^7.0.21"
|
3895
|
+
postcss-selector-parser "^6.0.2"
|
3915
3896
|
|
3916
3897
|
postcss-normalize-charset@^4.0.1:
|
3917
3898
|
version "4.0.1"
|
@@ -4023,7 +4004,16 @@ postcss-reduce-transforms@^4.0.2:
|
|
4023
4004
|
postcss "^7.0.0"
|
4024
4005
|
postcss-value-parser "^3.0.0"
|
4025
4006
|
|
4026
|
-
postcss-selector-parser@
|
4007
|
+
postcss-selector-parser@6.0.2, postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
|
4008
|
+
version "6.0.2"
|
4009
|
+
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
|
4010
|
+
integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
|
4011
|
+
dependencies:
|
4012
|
+
cssesc "^3.0.0"
|
4013
|
+
indexes-of "^1.0.1"
|
4014
|
+
uniq "^1.0.1"
|
4015
|
+
|
4016
|
+
postcss-selector-parser@^3.0.0:
|
4027
4017
|
version "3.1.1"
|
4028
4018
|
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865"
|
4029
4019
|
integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU=
|
@@ -4032,7 +4022,7 @@ postcss-selector-parser@3.1.1, postcss-selector-parser@^3.0.0:
|
|
4032
4022
|
indexes-of "^1.0.1"
|
4033
4023
|
uniq "^1.0.1"
|
4034
4024
|
|
4035
|
-
postcss-selector-parser@^5.0.0
|
4025
|
+
postcss-selector-parser@^5.0.0-rc.4:
|
4036
4026
|
version "5.0.0"
|
4037
4027
|
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c"
|
4038
4028
|
integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==
|
@@ -4041,15 +4031,6 @@ postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.4:
|
|
4041
4031
|
indexes-of "^1.0.1"
|
4042
4032
|
uniq "^1.0.1"
|
4043
4033
|
|
4044
|
-
postcss-selector-parser@^6.0.0:
|
4045
|
-
version "6.0.2"
|
4046
|
-
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
|
4047
|
-
integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
|
4048
|
-
dependencies:
|
4049
|
-
cssesc "^3.0.0"
|
4050
|
-
indexes-of "^1.0.1"
|
4051
|
-
uniq "^1.0.1"
|
4052
|
-
|
4053
4034
|
postcss-svgo@^4.0.2:
|
4054
4035
|
version "4.0.2"
|
4055
4036
|
resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258"
|
@@ -4074,6 +4055,11 @@ postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0, postcss-value-parser@^
|
|
4074
4055
|
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
|
4075
4056
|
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
|
4076
4057
|
|
4058
|
+
postcss-value-parser@^4.0.2:
|
4059
|
+
version "4.0.2"
|
4060
|
+
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz#482282c09a42706d1fc9a069b73f44ec08391dc9"
|
4061
|
+
integrity sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==
|
4062
|
+
|
4077
4063
|
postcss@6.0.1:
|
4078
4064
|
version "6.0.1"
|
4079
4065
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2"
|
@@ -4083,7 +4069,7 @@ postcss@6.0.1:
|
|
4083
4069
|
source-map "^0.5.6"
|
4084
4070
|
supports-color "^3.2.3"
|
4085
4071
|
|
4086
|
-
postcss@^6.0.1, postcss@^6.0.
|
4072
|
+
postcss@^6.0.1, postcss@^6.0.9:
|
4087
4073
|
version "6.0.23"
|
4088
4074
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
|
4089
4075
|
integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==
|
@@ -4092,32 +4078,39 @@ postcss@^6.0.1, postcss@^6.0.14, postcss@^6.0.9:
|
|
4092
4078
|
source-map "^0.6.1"
|
4093
4079
|
supports-color "^5.4.0"
|
4094
4080
|
|
4095
|
-
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.11, postcss@^7.0.14, postcss@^7.0.5:
|
4096
|
-
version "7.0.
|
4097
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.
|
4098
|
-
integrity sha512-
|
4081
|
+
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.11, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.21, postcss@^7.0.23, postcss@^7.0.5:
|
4082
|
+
version "7.0.26"
|
4083
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.26.tgz#5ed615cfcab35ba9bbb82414a4fa88ea10429587"
|
4084
|
+
integrity sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA==
|
4099
4085
|
dependencies:
|
4100
4086
|
chalk "^2.4.2"
|
4101
4087
|
source-map "^0.6.1"
|
4102
4088
|
supports-color "^6.1.0"
|
4103
4089
|
|
4104
4090
|
posthtml-parser@^0.4.0, posthtml-parser@^0.4.1:
|
4105
|
-
version "0.4.
|
4106
|
-
resolved "https://registry.yarnpkg.com/posthtml-parser/-/posthtml-parser-0.4.
|
4107
|
-
integrity sha512-
|
4091
|
+
version "0.4.2"
|
4092
|
+
resolved "https://registry.yarnpkg.com/posthtml-parser/-/posthtml-parser-0.4.2.tgz#a132bbdf0cd4bc199d34f322f5c1599385d7c6c1"
|
4093
|
+
integrity sha512-BUIorsYJTvS9UhXxPTzupIztOMVNPa/HtAm9KHni9z6qEfiJ1bpOBL5DfUOL9XAc3XkLIEzBzpph+Zbm4AdRAg==
|
4108
4094
|
dependencies:
|
4109
4095
|
htmlparser2 "^3.9.2"
|
4110
|
-
object-assign "^4.1.1"
|
4111
4096
|
|
4112
|
-
posthtml-render@^1.1.3, posthtml-render@^1.1.
|
4097
|
+
posthtml-render@^1.1.3, posthtml-render@^1.1.5:
|
4113
4098
|
version "1.1.5"
|
4114
4099
|
resolved "https://registry.yarnpkg.com/posthtml-render/-/posthtml-render-1.1.5.tgz#387934e85438a3de77085fbc7d264efb00bd0e0f"
|
4115
4100
|
integrity sha512-yvt54j0zCBHQVEFAuR+yHld8CZrCa/E1Z/OcFNCV1IEWTLVxT8O7nYnM4IIw1CD4r8kaRd3lc42+0lgCKgm87w==
|
4116
4101
|
|
4117
|
-
posthtml@^0.11.2
|
4118
|
-
version "0.11.
|
4119
|
-
resolved "https://registry.yarnpkg.com/posthtml/-/posthtml-0.11.
|
4120
|
-
integrity sha512-
|
4102
|
+
posthtml@^0.11.2:
|
4103
|
+
version "0.11.6"
|
4104
|
+
resolved "https://registry.yarnpkg.com/posthtml/-/posthtml-0.11.6.tgz#e349d51af7929d0683b9d8c3abd8166beecc90a8"
|
4105
|
+
integrity sha512-C2hrAPzmRdpuL3iH0TDdQ6XCc9M7Dcc3zEW5BLerY65G4tWWszwv6nG/ksi6ul5i2mx22ubdljgktXCtNkydkw==
|
4106
|
+
dependencies:
|
4107
|
+
posthtml-parser "^0.4.1"
|
4108
|
+
posthtml-render "^1.1.5"
|
4109
|
+
|
4110
|
+
posthtml@^0.12.0:
|
4111
|
+
version "0.12.0"
|
4112
|
+
resolved "https://registry.yarnpkg.com/posthtml/-/posthtml-0.12.0.tgz#6e2a2fcd774eaed1a419a95c5cc3a92b676a40a6"
|
4113
|
+
integrity sha512-aNUEP/SfKUXAt+ghG51LC5MmafChBZeslVe/SSdfKIgLGUVRE68mrMF4V8XbH07ZifM91tCSuxY3eHIFLlecQw==
|
4121
4114
|
dependencies:
|
4122
4115
|
posthtml-parser "^0.4.1"
|
4123
4116
|
posthtml-render "^1.1.5"
|
@@ -4138,29 +4131,19 @@ private@^0.1.6:
|
|
4138
4131
|
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
|
4139
4132
|
|
4140
4133
|
process-nextick-args@~2.0.0:
|
4141
|
-
version "2.0.
|
4142
|
-
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.
|
4143
|
-
integrity sha512-
|
4134
|
+
version "2.0.1"
|
4135
|
+
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
|
4136
|
+
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
|
4144
4137
|
|
4145
4138
|
process@^0.11.10:
|
4146
4139
|
version "0.11.10"
|
4147
4140
|
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
|
4148
4141
|
integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
|
4149
4142
|
|
4150
|
-
proto-list@~1.2.1:
|
4151
|
-
version "1.2.4"
|
4152
|
-
resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
|
4153
|
-
integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
|
4154
|
-
|
4155
|
-
pseudomap@^1.0.2:
|
4156
|
-
version "1.0.2"
|
4157
|
-
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
4158
|
-
integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
|
4159
|
-
|
4160
4143
|
psl@^1.1.24, psl@^1.1.28:
|
4161
|
-
version "1.
|
4162
|
-
resolved "https://registry.yarnpkg.com/psl/-/psl-1.
|
4163
|
-
integrity sha512
|
4144
|
+
version "1.7.0"
|
4145
|
+
resolved "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz#f1c4c47a8ef97167dea5d6bbf4816d736e884a3c"
|
4146
|
+
integrity sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==
|
4164
4147
|
|
4165
4148
|
public-encrypt@^4.0.0:
|
4166
4149
|
version "4.0.3"
|
@@ -4189,6 +4172,16 @@ punycode@^2.1.0, punycode@^2.1.1:
|
|
4189
4172
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
4190
4173
|
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
4191
4174
|
|
4175
|
+
purgecss@^1.4.0:
|
4176
|
+
version "1.4.2"
|
4177
|
+
resolved "https://registry.yarnpkg.com/purgecss/-/purgecss-1.4.2.tgz#67ab50cb4f5c163fcefde56002467c974e577f41"
|
4178
|
+
integrity sha512-hkOreFTgiyMHMmC2BxzdIw5DuC6kxAbP/gGOGd3MEsF3+5m69rIvUEPaxrnoUtfODTFKe9hcXjGwC6jcjoyhOw==
|
4179
|
+
dependencies:
|
4180
|
+
glob "^7.1.3"
|
4181
|
+
postcss "^7.0.14"
|
4182
|
+
postcss-selector-parser "^6.0.0"
|
4183
|
+
yargs "^14.0.0"
|
4184
|
+
|
4192
4185
|
q@^1.1.2:
|
4193
4186
|
version "1.5.1"
|
4194
4187
|
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
|
@@ -4218,11 +4211,6 @@ quote-stream@^1.0.1, quote-stream@~1.0.2:
|
|
4218
4211
|
minimist "^1.1.3"
|
4219
4212
|
through2 "^2.0.0"
|
4220
4213
|
|
4221
|
-
rails-ujs@^5.2.3:
|
4222
|
-
version "5.2.3"
|
4223
|
-
resolved "https://registry.yarnpkg.com/rails-ujs/-/rails-ujs-5.2.3.tgz#4b65ea781a6befe62e96da6362165286a1fe4099"
|
4224
|
-
integrity sha512-rYgj185MowWFBJI1wdac2FkX4yFYe4+3jJPlB+CTY7a4rmIyg0TqE4vYZmSBBesp7blPUa57oqKzwQjN7eVbEQ==
|
4225
|
-
|
4226
4214
|
randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
|
4227
4215
|
version "2.1.0"
|
4228
4216
|
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
|
@@ -4238,25 +4226,15 @@ randomfill@^1.0.3:
|
|
4238
4226
|
randombytes "^2.0.5"
|
4239
4227
|
safe-buffer "^5.1.0"
|
4240
4228
|
|
4241
|
-
range-parser@~1.2.
|
4242
|
-
version "1.2.
|
4243
|
-
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.
|
4244
|
-
integrity
|
4245
|
-
|
4246
|
-
rc@^1.2.7:
|
4247
|
-
version "1.2.8"
|
4248
|
-
resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
|
4249
|
-
integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
|
4250
|
-
dependencies:
|
4251
|
-
deep-extend "^0.6.0"
|
4252
|
-
ini "~1.3.0"
|
4253
|
-
minimist "^1.2.0"
|
4254
|
-
strip-json-comments "~2.0.1"
|
4229
|
+
range-parser@~1.2.1:
|
4230
|
+
version "1.2.1"
|
4231
|
+
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
|
4232
|
+
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
|
4255
4233
|
|
4256
|
-
readable-stream@^2.0.2, readable-stream@^2.
|
4257
|
-
version "2.3.
|
4258
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.
|
4259
|
-
integrity sha512-
|
4234
|
+
readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.3, readable-stream@~2.3.6:
|
4235
|
+
version "2.3.7"
|
4236
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
|
4237
|
+
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
|
4260
4238
|
dependencies:
|
4261
4239
|
core-util-is "~1.0.0"
|
4262
4240
|
inherits "~2.0.3"
|
@@ -4267,9 +4245,9 @@ readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2, readable
|
|
4267
4245
|
util-deprecate "~1.0.1"
|
4268
4246
|
|
4269
4247
|
readable-stream@^3.1.1:
|
4270
|
-
version "3.
|
4271
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.
|
4272
|
-
integrity sha512-
|
4248
|
+
version "3.4.0"
|
4249
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc"
|
4250
|
+
integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==
|
4273
4251
|
dependencies:
|
4274
4252
|
inherits "^2.0.3"
|
4275
4253
|
string_decoder "^1.1.1"
|
@@ -4284,10 +4262,18 @@ readdirp@^2.2.1:
|
|
4284
4262
|
micromatch "^3.1.10"
|
4285
4263
|
readable-stream "^2.0.2"
|
4286
4264
|
|
4287
|
-
|
4288
|
-
version "
|
4289
|
-
resolved "https://registry.yarnpkg.com/
|
4290
|
-
integrity sha512-
|
4265
|
+
reduce-css-calc@^2.1.6:
|
4266
|
+
version "2.1.7"
|
4267
|
+
resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.7.tgz#1ace2e02c286d78abcd01fd92bfe8097ab0602c2"
|
4268
|
+
integrity sha512-fDnlZ+AybAS3C7Q9xDq5y8A2z+lT63zLbynew/lur/IR24OQF5x98tfNwf79mzEdfywZ0a2wpM860FhFfMxZlA==
|
4269
|
+
dependencies:
|
4270
|
+
css-unit-converter "^1.1.1"
|
4271
|
+
postcss-value-parser "^3.3.0"
|
4272
|
+
|
4273
|
+
regenerate-unicode-properties@^8.1.0:
|
4274
|
+
version "8.1.0"
|
4275
|
+
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"
|
4276
|
+
integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==
|
4291
4277
|
dependencies:
|
4292
4278
|
regenerate "^1.4.0"
|
4293
4279
|
|
@@ -4301,15 +4287,15 @@ regenerator-runtime@^0.11.0:
|
|
4301
4287
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
|
4302
4288
|
integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
|
4303
4289
|
|
4304
|
-
regenerator-runtime@^0.
|
4305
|
-
version "0.
|
4306
|
-
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.
|
4307
|
-
integrity sha512-
|
4290
|
+
regenerator-runtime@^0.13.2:
|
4291
|
+
version "0.13.3"
|
4292
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"
|
4293
|
+
integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==
|
4308
4294
|
|
4309
|
-
regenerator-transform@^0.
|
4310
|
-
version "0.
|
4311
|
-
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.
|
4312
|
-
integrity sha512-
|
4295
|
+
regenerator-transform@^0.14.0:
|
4296
|
+
version "0.14.1"
|
4297
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb"
|
4298
|
+
integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ==
|
4313
4299
|
dependencies:
|
4314
4300
|
private "^0.1.6"
|
4315
4301
|
|
@@ -4321,11 +4307,6 @@ regex-not@^1.0.0, regex-not@^1.0.2:
|
|
4321
4307
|
extend-shallow "^3.0.2"
|
4322
4308
|
safe-regex "^1.1.0"
|
4323
4309
|
|
4324
|
-
regexp-tree@^0.1.0:
|
4325
|
-
version "0.1.6"
|
4326
|
-
resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.6.tgz#84900fa12fdf428a2ac25f04300382a7c0148479"
|
4327
|
-
integrity sha512-LFrA98Dw/heXqDojz7qKFdygZmFoiVlvE1Zp7Cq2cvF+ZA+03Gmhy0k0PQlsC1jvHPiTUSs+pDHEuSWv6+6D7w==
|
4328
|
-
|
4329
4310
|
regexpu-core@^1.0.0:
|
4330
4311
|
version "1.0.0"
|
4331
4312
|
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b"
|
@@ -4335,13 +4316,13 @@ regexpu-core@^1.0.0:
|
|
4335
4316
|
regjsgen "^0.2.0"
|
4336
4317
|
regjsparser "^0.1.4"
|
4337
4318
|
|
4338
|
-
regexpu-core@^4.
|
4339
|
-
version "4.
|
4340
|
-
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.
|
4341
|
-
integrity sha512-
|
4319
|
+
regexpu-core@^4.6.0:
|
4320
|
+
version "4.6.0"
|
4321
|
+
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6"
|
4322
|
+
integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
|
4342
4323
|
dependencies:
|
4343
4324
|
regenerate "^1.4.0"
|
4344
|
-
regenerate-unicode-properties "^8.0
|
4325
|
+
regenerate-unicode-properties "^8.1.0"
|
4345
4326
|
regjsgen "^0.5.0"
|
4346
4327
|
regjsparser "^0.6.0"
|
4347
4328
|
unicode-match-property-ecmascript "^1.0.4"
|
@@ -4353,9 +4334,9 @@ regjsgen@^0.2.0:
|
|
4353
4334
|
integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=
|
4354
4335
|
|
4355
4336
|
regjsgen@^0.5.0:
|
4356
|
-
version "0.5.
|
4357
|
-
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.
|
4358
|
-
integrity sha512-
|
4337
|
+
version "0.5.1"
|
4338
|
+
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
|
4339
|
+
integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
|
4359
4340
|
|
4360
4341
|
regjsparser@^0.1.4:
|
4361
4342
|
version "0.1.5"
|
@@ -4365,9 +4346,9 @@ regjsparser@^0.1.4:
|
|
4365
4346
|
jsesc "~0.5.0"
|
4366
4347
|
|
4367
4348
|
regjsparser@^0.6.0:
|
4368
|
-
version "0.6.
|
4369
|
-
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.
|
4370
|
-
integrity sha512-
|
4349
|
+
version "0.6.2"
|
4350
|
+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.2.tgz#fd62c753991467d9d1ffe0a9f67f27a529024b96"
|
4351
|
+
integrity sha512-E9ghzUtoLwDekPT0DYCp+c4h+bvuUpe6rRHCTYn6eGoqj1LgKXxT6I0Il4WbjhQkOghzi/V+y03bPKvbllL93Q==
|
4371
4352
|
dependencies:
|
4372
4353
|
jsesc "~0.5.0"
|
4373
4354
|
|
@@ -4386,23 +4367,23 @@ repeat-string@^1.6.1:
|
|
4386
4367
|
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
|
4387
4368
|
integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
|
4388
4369
|
|
4389
|
-
request-promise-core@1.1.
|
4390
|
-
version "1.1.
|
4391
|
-
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.
|
4392
|
-
integrity sha512-
|
4370
|
+
request-promise-core@1.1.3:
|
4371
|
+
version "1.1.3"
|
4372
|
+
resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9"
|
4373
|
+
integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==
|
4393
4374
|
dependencies:
|
4394
|
-
lodash "^4.17.
|
4375
|
+
lodash "^4.17.15"
|
4395
4376
|
|
4396
4377
|
request-promise-native@^1.0.5:
|
4397
|
-
version "1.0.
|
4398
|
-
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.
|
4399
|
-
integrity sha512-
|
4378
|
+
version "1.0.8"
|
4379
|
+
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36"
|
4380
|
+
integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==
|
4400
4381
|
dependencies:
|
4401
|
-
request-promise-core "1.1.
|
4382
|
+
request-promise-core "1.1.3"
|
4402
4383
|
stealthy-require "^1.1.1"
|
4403
4384
|
tough-cookie "^2.3.3"
|
4404
4385
|
|
4405
|
-
request@^2.
|
4386
|
+
request@^2.88.0:
|
4406
4387
|
version "2.88.0"
|
4407
4388
|
resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef"
|
4408
4389
|
integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==
|
@@ -4428,6 +4409,16 @@ request@^2.72.0, request@^2.87.0:
|
|
4428
4409
|
tunnel-agent "^0.6.0"
|
4429
4410
|
uuid "^3.3.2"
|
4430
4411
|
|
4412
|
+
require-directory@^2.1.1:
|
4413
|
+
version "2.1.1"
|
4414
|
+
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
4415
|
+
integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
|
4416
|
+
|
4417
|
+
require-main-filename@^2.0.0:
|
4418
|
+
version "2.0.0"
|
4419
|
+
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
|
4420
|
+
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
|
4421
|
+
|
4431
4422
|
resolve-from@^3.0.0:
|
4432
4423
|
version "3.0.0"
|
4433
4424
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
|
@@ -4439,9 +4430,9 @@ resolve-url@^0.2.1:
|
|
4439
4430
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
4440
4431
|
|
4441
4432
|
resolve@^1.1.5, resolve@^1.3.2, resolve@^1.4.0:
|
4442
|
-
version "1.
|
4443
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
4444
|
-
integrity sha512-
|
4433
|
+
version "1.14.2"
|
4434
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.14.2.tgz#dbf31d0fa98b1f29aa5169783b9c290cb865fea2"
|
4435
|
+
integrity sha512-EjlOBLBO1kxsUxsKjLt7TAECyKW6fOh1VRkykQkKGzcBbjjPIxBqGh0jf7GJ3k/f5mxMqW3htMD3WdTUVtW8HQ==
|
4445
4436
|
dependencies:
|
4446
4437
|
path-parse "^1.0.6"
|
4447
4438
|
|
@@ -4468,10 +4459,10 @@ rgba-regex@^1.0.0:
|
|
4468
4459
|
resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
|
4469
4460
|
integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
|
4470
4461
|
|
4471
|
-
rimraf@^2.6.
|
4472
|
-
version "2.
|
4473
|
-
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.
|
4474
|
-
integrity sha512-
|
4462
|
+
rimraf@^2.6.2:
|
4463
|
+
version "2.7.1"
|
4464
|
+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
|
4465
|
+
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
|
4475
4466
|
dependencies:
|
4476
4467
|
glob "^7.1.3"
|
4477
4468
|
|
@@ -4483,7 +4474,12 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
|
|
4483
4474
|
hash-base "^3.0.0"
|
4484
4475
|
inherits "^2.0.1"
|
4485
4476
|
|
4486
|
-
safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.
|
4477
|
+
safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0:
|
4478
|
+
version "5.2.0"
|
4479
|
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
|
4480
|
+
integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
|
4481
|
+
|
4482
|
+
safe-buffer@~5.1.0, safe-buffer@~5.1.1:
|
4487
4483
|
version "5.1.2"
|
4488
4484
|
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
|
4489
4485
|
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
|
@@ -4500,27 +4496,42 @@ safe-regex@^1.1.0:
|
|
4500
4496
|
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
4501
4497
|
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
4502
4498
|
|
4503
|
-
|
4504
|
-
version "1.3.2"
|
4505
|
-
resolved "https://registry.yarnpkg.com/safer-eval/-/safer-eval-1.3.2.tgz#35f9658458cdfb5769d64fd6842866b53372d568"
|
4506
|
-
integrity sha512-mAkc9NX+ULPw4qX+lkFVuIhXQbjFaX97fWFj6atFXMG11lUX4rXfQY6Q0VFf1wfJfqCHYO7cxtC7cA8fIkWsLQ==
|
4507
|
-
dependencies:
|
4508
|
-
clones "^1.2.0"
|
4509
|
-
|
4510
|
-
sax@^1.2.4, sax@~1.2.4:
|
4499
|
+
sax@~1.2.4:
|
4511
4500
|
version "1.2.4"
|
4512
4501
|
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
4513
4502
|
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
4514
4503
|
|
4515
|
-
|
4516
|
-
version "
|
4517
|
-
resolved "https://registry.yarnpkg.com/
|
4518
|
-
integrity sha512-
|
4504
|
+
saxes@^3.1.9:
|
4505
|
+
version "3.1.11"
|
4506
|
+
resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b"
|
4507
|
+
integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==
|
4508
|
+
dependencies:
|
4509
|
+
xmlchars "^2.1.1"
|
4510
|
+
|
4511
|
+
semver@7.0.0:
|
4512
|
+
version "7.0.0"
|
4513
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
4514
|
+
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
|
4515
|
+
|
4516
|
+
semver@^5.4.1, semver@^5.5.0:
|
4517
|
+
version "5.7.1"
|
4518
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
4519
|
+
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
4520
|
+
|
4521
|
+
semver@^6.3.0:
|
4522
|
+
version "6.3.0"
|
4523
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
|
4524
|
+
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
|
4519
4525
|
|
4520
|
-
|
4521
|
-
version "
|
4522
|
-
resolved "https://registry.yarnpkg.com/
|
4523
|
-
integrity sha512-
|
4526
|
+
semver@^7.1.1:
|
4527
|
+
version "7.1.1"
|
4528
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.1.tgz#29104598a197d6cbe4733eeecbe968f7b43a9667"
|
4529
|
+
integrity sha512-WfuG+fl6eh3eZ2qAf6goB7nhiCd7NPXhmyFxigB/TOkQyeLP8w8GsVehvtGNtnNmyboz4TgeK40B1Kbql/8c5A==
|
4530
|
+
|
4531
|
+
send@0.17.1:
|
4532
|
+
version "0.17.1"
|
4533
|
+
resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
|
4534
|
+
integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
|
4524
4535
|
dependencies:
|
4525
4536
|
debug "2.6.9"
|
4526
4537
|
depd "~1.1.2"
|
@@ -4533,46 +4544,33 @@ send@0.17.0:
|
|
4533
4544
|
mime "1.6.0"
|
4534
4545
|
ms "2.1.1"
|
4535
4546
|
on-finished "~2.3.0"
|
4536
|
-
range-parser "~1.2.
|
4547
|
+
range-parser "~1.2.1"
|
4537
4548
|
statuses "~1.5.0"
|
4538
4549
|
|
4539
|
-
serialize-to-js@^
|
4540
|
-
version "
|
4541
|
-
resolved "https://registry.yarnpkg.com/serialize-to-js/-/serialize-to-js-
|
4542
|
-
integrity sha512-
|
4543
|
-
dependencies:
|
4544
|
-
js-beautify "^1.8.9"
|
4545
|
-
safer-eval "^1.3.0"
|
4550
|
+
serialize-to-js@^3.0.0:
|
4551
|
+
version "3.0.2"
|
4552
|
+
resolved "https://registry.yarnpkg.com/serialize-to-js/-/serialize-to-js-3.0.2.tgz#d71834a18135aff742e516d3b2208f662a46a8ac"
|
4553
|
+
integrity sha512-o5FqeMyxGx1wkp8p14q9QqGXh1JjXtIDYTr15N/B4ThM5ULqlpXdtOO84m950jFGvBkeRD1utW+WyNKvao2ybQ==
|
4546
4554
|
|
4547
4555
|
serve-static@^1.12.4:
|
4548
|
-
version "1.14.
|
4549
|
-
resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.
|
4550
|
-
integrity sha512-
|
4556
|
+
version "1.14.1"
|
4557
|
+
resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
|
4558
|
+
integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
|
4551
4559
|
dependencies:
|
4552
4560
|
encodeurl "~1.0.2"
|
4553
4561
|
escape-html "~1.0.3"
|
4554
4562
|
parseurl "~1.3.3"
|
4555
|
-
send "0.17.
|
4563
|
+
send "0.17.1"
|
4556
4564
|
|
4557
|
-
set-blocking
|
4565
|
+
set-blocking@^2.0.0:
|
4558
4566
|
version "2.0.0"
|
4559
4567
|
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
|
4560
4568
|
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
|
4561
4569
|
|
4562
|
-
set-value@^0.
|
4563
|
-
version "0.
|
4564
|
-
resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.
|
4565
|
-
integrity
|
4566
|
-
dependencies:
|
4567
|
-
extend-shallow "^2.0.1"
|
4568
|
-
is-extendable "^0.1.1"
|
4569
|
-
is-plain-object "^2.0.1"
|
4570
|
-
to-object-path "^0.3.0"
|
4571
|
-
|
4572
|
-
set-value@^2.0.0:
|
4573
|
-
version "2.0.0"
|
4574
|
-
resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
|
4575
|
-
integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==
|
4570
|
+
set-value@^2.0.0, set-value@^2.0.1:
|
4571
|
+
version "2.0.1"
|
4572
|
+
resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
|
4573
|
+
integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
|
4576
4574
|
dependencies:
|
4577
4575
|
extend-shallow "^2.0.1"
|
4578
4576
|
is-extendable "^0.1.1"
|
@@ -4614,12 +4612,7 @@ shebang-regex@^1.0.0:
|
|
4614
4612
|
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
|
4615
4613
|
integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
|
4616
4614
|
|
4617
|
-
|
4618
|
-
version "1.0.1"
|
4619
|
-
resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
|
4620
|
-
integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=
|
4621
|
-
|
4622
|
-
signal-exit@^3.0.0, signal-exit@^3.0.2:
|
4615
|
+
signal-exit@^3.0.2:
|
4623
4616
|
version "3.0.2"
|
4624
4617
|
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
4625
4618
|
integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
|
@@ -4662,20 +4655,20 @@ snapdragon@^0.8.1:
|
|
4662
4655
|
use "^3.1.0"
|
4663
4656
|
|
4664
4657
|
source-map-resolve@^0.5.0:
|
4665
|
-
version "0.5.
|
4666
|
-
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.
|
4667
|
-
integrity sha512-
|
4658
|
+
version "0.5.3"
|
4659
|
+
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
|
4660
|
+
integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
|
4668
4661
|
dependencies:
|
4669
|
-
atob "^2.1.
|
4662
|
+
atob "^2.1.2"
|
4670
4663
|
decode-uri-component "^0.2.0"
|
4671
4664
|
resolve-url "^0.2.1"
|
4672
4665
|
source-map-url "^0.4.0"
|
4673
4666
|
urix "^0.1.0"
|
4674
4667
|
|
4675
|
-
source-map-support@~0.5.10:
|
4676
|
-
version "0.5.
|
4677
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.
|
4678
|
-
integrity sha512-
|
4668
|
+
source-map-support@~0.5.10, source-map-support@~0.5.12:
|
4669
|
+
version "0.5.16"
|
4670
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042"
|
4671
|
+
integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==
|
4679
4672
|
dependencies:
|
4680
4673
|
buffer-from "^1.0.0"
|
4681
4674
|
source-map "^0.6.0"
|
@@ -4690,7 +4683,7 @@ source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
|
|
4690
4683
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
4691
4684
|
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
|
4692
4685
|
|
4693
|
-
source-map@^0.5.0, source-map@^0.5.
|
4686
|
+
source-map@^0.5.0, source-map@^0.5.6:
|
4694
4687
|
version "0.5.7"
|
4695
4688
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
4696
4689
|
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
|
@@ -4728,11 +4721,11 @@ stable@^0.1.8:
|
|
4728
4721
|
integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
|
4729
4722
|
|
4730
4723
|
static-eval@^2.0.0:
|
4731
|
-
version "2.0.
|
4732
|
-
resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.
|
4733
|
-
integrity sha512-
|
4724
|
+
version "2.0.3"
|
4725
|
+
resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.3.tgz#cb62fc79946bd4d5f623a45ad428233adace4d72"
|
4726
|
+
integrity sha512-zsxDGucfAh8T339sSKgpFbvg15Fms2IVaJGC+jqp0bVsxhcpM+iMeAI8weNo8dmf4OblgifTBUoyk1vGVtYw2w==
|
4734
4727
|
dependencies:
|
4735
|
-
escodegen "^1.
|
4728
|
+
escodegen "^1.11.1"
|
4736
4729
|
|
4737
4730
|
static-extend@^0.1.1:
|
4738
4731
|
version "0.1.2"
|
@@ -4799,29 +4792,37 @@ stream-http@^2.7.2:
|
|
4799
4792
|
to-arraybuffer "^1.0.0"
|
4800
4793
|
xtend "^4.0.0"
|
4801
4794
|
|
4802
|
-
string-width@^
|
4803
|
-
version "1.0
|
4804
|
-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.
|
4805
|
-
integrity
|
4795
|
+
string-width@^3.0.0, string-width@^3.1.0:
|
4796
|
+
version "3.1.0"
|
4797
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
|
4798
|
+
integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
|
4806
4799
|
dependencies:
|
4807
|
-
|
4808
|
-
is-fullwidth-code-point "^
|
4809
|
-
strip-ansi "^
|
4800
|
+
emoji-regex "^7.0.1"
|
4801
|
+
is-fullwidth-code-point "^2.0.0"
|
4802
|
+
strip-ansi "^5.1.0"
|
4810
4803
|
|
4811
|
-
|
4804
|
+
string.prototype.trimleft@^2.1.1:
|
4812
4805
|
version "2.1.1"
|
4813
|
-
resolved "https://registry.yarnpkg.com/string
|
4814
|
-
integrity sha512-
|
4806
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74"
|
4807
|
+
integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==
|
4815
4808
|
dependencies:
|
4816
|
-
|
4817
|
-
|
4809
|
+
define-properties "^1.1.3"
|
4810
|
+
function-bind "^1.1.1"
|
4811
|
+
|
4812
|
+
string.prototype.trimright@^2.1.1:
|
4813
|
+
version "2.1.1"
|
4814
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9"
|
4815
|
+
integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==
|
4816
|
+
dependencies:
|
4817
|
+
define-properties "^1.1.3"
|
4818
|
+
function-bind "^1.1.1"
|
4818
4819
|
|
4819
4820
|
string_decoder@^1.0.0, string_decoder@^1.1.1:
|
4820
|
-
version "1.
|
4821
|
-
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.
|
4822
|
-
integrity sha512-
|
4821
|
+
version "1.3.0"
|
4822
|
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
|
4823
|
+
integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
|
4823
4824
|
dependencies:
|
4824
|
-
safe-buffer "~5.
|
4825
|
+
safe-buffer "~5.2.0"
|
4825
4826
|
|
4826
4827
|
string_decoder@~1.1.1:
|
4827
4828
|
version "1.1.1"
|
@@ -4830,7 +4831,7 @@ string_decoder@~1.1.1:
|
|
4830
4831
|
dependencies:
|
4831
4832
|
safe-buffer "~5.1.0"
|
4832
4833
|
|
4833
|
-
strip-ansi@^3.0.0
|
4834
|
+
strip-ansi@^3.0.0:
|
4834
4835
|
version "3.0.1"
|
4835
4836
|
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
|
4836
4837
|
integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
|
@@ -4844,10 +4845,12 @@ strip-ansi@^4.0.0:
|
|
4844
4845
|
dependencies:
|
4845
4846
|
ansi-regex "^3.0.0"
|
4846
4847
|
|
4847
|
-
strip-
|
4848
|
-
version "2.0
|
4849
|
-
resolved "https://registry.yarnpkg.com/strip-
|
4850
|
-
integrity
|
4848
|
+
strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
|
4849
|
+
version "5.2.0"
|
4850
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
|
4851
|
+
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
|
4852
|
+
dependencies:
|
4853
|
+
ansi-regex "^4.1.0"
|
4851
4854
|
|
4852
4855
|
stylehacks@^4.0.0:
|
4853
4856
|
version "4.0.3"
|
@@ -4884,18 +4887,17 @@ supports-color@^6.1.0:
|
|
4884
4887
|
dependencies:
|
4885
4888
|
has-flag "^3.0.0"
|
4886
4889
|
|
4887
|
-
svgo@^1.0.0, svgo@^1.
|
4888
|
-
version "1.
|
4889
|
-
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.
|
4890
|
-
integrity sha512-
|
4890
|
+
svgo@^1.0.0, svgo@^1.3.2:
|
4891
|
+
version "1.3.2"
|
4892
|
+
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
|
4893
|
+
integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
|
4891
4894
|
dependencies:
|
4892
4895
|
chalk "^2.4.1"
|
4893
4896
|
coa "^2.0.2"
|
4894
4897
|
css-select "^2.0.0"
|
4895
4898
|
css-select-base-adapter "^0.1.1"
|
4896
|
-
css-tree "1.0.0-alpha.
|
4897
|
-
|
4898
|
-
csso "^3.5.1"
|
4899
|
+
css-tree "1.0.0-alpha.37"
|
4900
|
+
csso "^4.0.2"
|
4899
4901
|
js-yaml "^3.13.1"
|
4900
4902
|
mkdirp "~0.5.1"
|
4901
4903
|
object.values "^1.1.0"
|
@@ -4905,14 +4907,14 @@ svgo@^1.0.0, svgo@^1.0.5:
|
|
4905
4907
|
util.promisify "~1.0.0"
|
4906
4908
|
|
4907
4909
|
symbol-tree@^3.2.2:
|
4908
|
-
version "3.2.
|
4909
|
-
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.
|
4910
|
-
integrity
|
4910
|
+
version "3.2.4"
|
4911
|
+
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
|
4912
|
+
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
|
4911
4913
|
|
4912
4914
|
tailwindcss@^1.0.1:
|
4913
|
-
version "1.
|
4914
|
-
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.
|
4915
|
-
integrity sha512-
|
4915
|
+
version "1.1.4"
|
4916
|
+
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.1.4.tgz#786bd5faaf485c9eddcb821dd55666c56baa814e"
|
4917
|
+
integrity sha512-p4AxVa4CKpX7IbNxImwNMGG9MHuLgratOaOE/iGriNd4AsRQRM2xMisoQ3KQHqShunrWuObga7rI7xbNsVoWGA==
|
4916
4918
|
dependencies:
|
4917
4919
|
autoprefixer "^9.4.5"
|
4918
4920
|
bytes "^3.0.0"
|
@@ -4927,21 +4929,9 @@ tailwindcss@^1.0.1:
|
|
4927
4929
|
postcss-nested "^4.1.1"
|
4928
4930
|
postcss-selector-parser "^6.0.0"
|
4929
4931
|
pretty-hrtime "^1.0.3"
|
4932
|
+
reduce-css-calc "^2.1.6"
|
4930
4933
|
|
4931
|
-
|
4932
|
-
version "4.4.8"
|
4933
|
-
resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d"
|
4934
|
-
integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ==
|
4935
|
-
dependencies:
|
4936
|
-
chownr "^1.1.1"
|
4937
|
-
fs-minipass "^1.2.5"
|
4938
|
-
minipass "^2.3.4"
|
4939
|
-
minizlib "^1.1.1"
|
4940
|
-
mkdirp "^0.5.0"
|
4941
|
-
safe-buffer "^5.1.2"
|
4942
|
-
yallist "^3.0.2"
|
4943
|
-
|
4944
|
-
terser@^3.16.1, terser@^3.7.3:
|
4934
|
+
terser@^3.7.3:
|
4945
4935
|
version "3.17.0"
|
4946
4936
|
resolved "https://registry.yarnpkg.com/terser/-/terser-3.17.0.tgz#f88ffbeda0deb5637f9d24b0da66f4e15ab10cb2"
|
4947
4937
|
integrity sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ==
|
@@ -4950,6 +4940,15 @@ terser@^3.16.1, terser@^3.7.3:
|
|
4950
4940
|
source-map "~0.6.1"
|
4951
4941
|
source-map-support "~0.5.10"
|
4952
4942
|
|
4943
|
+
terser@^4.3.9:
|
4944
|
+
version "4.6.2"
|
4945
|
+
resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.2.tgz#cb1cf055e7f70caa5863f00ba3e67dc3c97b5150"
|
4946
|
+
integrity sha512-6FUjJdY2i3WZAtYBtnV06OOcOfzl+4hSKYE9wgac8rkLRBToPDDrBB2AcHwQD/OKDxbnvhVy2YgOPWO2SsKWqg==
|
4947
|
+
dependencies:
|
4948
|
+
commander "^2.20.0"
|
4949
|
+
source-map "~0.6.1"
|
4950
|
+
source-map-support "~0.5.12"
|
4951
|
+
|
4953
4952
|
through2@^2.0.0, through2@~2.0.3:
|
4954
4953
|
version "2.0.5"
|
4955
4954
|
resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
|
@@ -4959,9 +4958,9 @@ through2@^2.0.0, through2@~2.0.3:
|
|
4959
4958
|
xtend "~4.0.1"
|
4960
4959
|
|
4961
4960
|
timers-browserify@^2.0.4:
|
4962
|
-
version "2.0.
|
4963
|
-
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.
|
4964
|
-
integrity sha512-
|
4961
|
+
version "2.0.11"
|
4962
|
+
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f"
|
4963
|
+
integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==
|
4965
4964
|
dependencies:
|
4966
4965
|
setimmediate "^1.0.4"
|
4967
4966
|
|
@@ -4971,9 +4970,9 @@ timsort@^0.3.0:
|
|
4971
4970
|
integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
|
4972
4971
|
|
4973
4972
|
tiny-inflate@^1.0.0:
|
4974
|
-
version "1.0.
|
4975
|
-
resolved "https://registry.yarnpkg.com/tiny-inflate/-/tiny-inflate-1.0.
|
4976
|
-
integrity
|
4973
|
+
version "1.0.3"
|
4974
|
+
resolved "https://registry.yarnpkg.com/tiny-inflate/-/tiny-inflate-1.0.3.tgz#122715494913a1805166aaf7c93467933eea26c4"
|
4975
|
+
integrity sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==
|
4977
4976
|
|
4978
4977
|
to-arraybuffer@^1.0.0:
|
4979
4978
|
version "1.0.1"
|
@@ -5020,7 +5019,7 @@ toidentifier@1.0.0:
|
|
5020
5019
|
resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
|
5021
5020
|
integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
|
5022
5021
|
|
5023
|
-
tough-cookie@^2.3.3, tough-cookie@^2.
|
5022
|
+
tough-cookie@^2.3.3, tough-cookie@^2.5.0:
|
5024
5023
|
version "2.5.0"
|
5025
5024
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
|
5026
5025
|
integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
|
@@ -5043,11 +5042,6 @@ tr46@^1.0.1:
|
|
5043
5042
|
dependencies:
|
5044
5043
|
punycode "^2.1.0"
|
5045
5044
|
|
5046
|
-
trim-right@^1.0.1:
|
5047
|
-
version "1.0.1"
|
5048
|
-
resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
|
5049
|
-
integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
|
5050
|
-
|
5051
5045
|
tty-browserify@0.0.0:
|
5052
5046
|
version "0.0.0"
|
5053
5047
|
resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
|
@@ -5077,20 +5071,25 @@ typedarray@^0.0.6:
|
|
5077
5071
|
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
5078
5072
|
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
5079
5073
|
|
5080
|
-
|
5081
|
-
version "
|
5082
|
-
resolved "https://registry.yarnpkg.com/
|
5083
|
-
integrity
|
5084
|
-
|
5085
|
-
|
5086
|
-
|
5087
|
-
|
5088
|
-
|
5089
|
-
|
5090
|
-
|
5091
|
-
|
5092
|
-
|
5093
|
-
|
5074
|
+
typescript@^3.7.4:
|
5075
|
+
version "3.7.4"
|
5076
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.4.tgz#1743a5ec5fef6a1fa9f3e4708e33c81c73876c19"
|
5077
|
+
integrity sha512-A25xv5XCtarLwXpcDNZzCGvW2D1S3/bACratYBx2sax8PefsFhlYmkQicKHvpYflFS8if4zne5zT5kpJ7pzuvw==
|
5078
|
+
|
5079
|
+
uncss@^0.17.2:
|
5080
|
+
version "0.17.2"
|
5081
|
+
resolved "https://registry.yarnpkg.com/uncss/-/uncss-0.17.2.tgz#fac1c2429be72108e8a47437c647d58cf9ea66f1"
|
5082
|
+
integrity sha512-hu2HquwDItuGDem4YsJROdAD8SknmWtM24zwhQax6J1se8tPjV1cnwPKhtjodzBaUhaL8Zb3hlGdZ2WAUpbAOg==
|
5083
|
+
dependencies:
|
5084
|
+
commander "^2.20.0"
|
5085
|
+
glob "^7.1.4"
|
5086
|
+
is-absolute-url "^3.0.1"
|
5087
|
+
is-html "^1.1.0"
|
5088
|
+
jsdom "^14.1.0"
|
5089
|
+
lodash "^4.17.15"
|
5090
|
+
postcss "^7.0.17"
|
5091
|
+
postcss-selector-parser "6.0.2"
|
5092
|
+
request "^2.88.0"
|
5094
5093
|
|
5095
5094
|
unicode-canonical-property-names-ecmascript@^1.0.4:
|
5096
5095
|
version "1.0.4"
|
@@ -5124,14 +5123,14 @@ unicode-trie@^0.3.1:
|
|
5124
5123
|
tiny-inflate "^1.0.0"
|
5125
5124
|
|
5126
5125
|
union-value@^1.0.0:
|
5127
|
-
version "1.0.
|
5128
|
-
resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.
|
5129
|
-
integrity
|
5126
|
+
version "1.0.1"
|
5127
|
+
resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
|
5128
|
+
integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
|
5130
5129
|
dependencies:
|
5131
5130
|
arr-union "^3.1.0"
|
5132
5131
|
get-value "^2.0.6"
|
5133
5132
|
is-extendable "^0.1.1"
|
5134
|
-
set-value "^0.
|
5133
|
+
set-value "^2.0.1"
|
5135
5134
|
|
5136
5135
|
uniq@^1.0.1:
|
5137
5136
|
version "1.0.1"
|
@@ -5162,9 +5161,9 @@ unset-value@^1.0.0:
|
|
5162
5161
|
isobject "^3.0.0"
|
5163
5162
|
|
5164
5163
|
upath@^1.1.1:
|
5165
|
-
version "1.
|
5166
|
-
resolved "https://registry.yarnpkg.com/upath/-/upath-1.
|
5167
|
-
integrity sha512-
|
5164
|
+
version "1.2.0"
|
5165
|
+
resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
|
5166
|
+
integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
|
5168
5167
|
|
5169
5168
|
uri-js@^4.2.2:
|
5170
5169
|
version "4.2.2"
|
@@ -5219,19 +5218,19 @@ util@^0.11.0:
|
|
5219
5218
|
inherits "2.0.3"
|
5220
5219
|
|
5221
5220
|
uuid@^3.3.2:
|
5222
|
-
version "3.3.
|
5223
|
-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.
|
5224
|
-
integrity sha512-
|
5221
|
+
version "3.3.3"
|
5222
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866"
|
5223
|
+
integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==
|
5225
5224
|
|
5226
5225
|
v8-compile-cache@^2.0.0:
|
5227
|
-
version "2.0
|
5228
|
-
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.
|
5229
|
-
integrity sha512-
|
5226
|
+
version "2.1.0"
|
5227
|
+
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e"
|
5228
|
+
integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
|
5230
5229
|
|
5231
5230
|
vendors@^1.0.0:
|
5232
|
-
version "1.0.
|
5233
|
-
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.
|
5234
|
-
integrity sha512-
|
5231
|
+
version "1.0.3"
|
5232
|
+
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.3.tgz#a6467781abd366217c050f8202e7e50cc9eef8c0"
|
5233
|
+
integrity sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw==
|
5235
5234
|
|
5236
5235
|
verror@1.10.0:
|
5237
5236
|
version "1.10.0"
|
@@ -5247,12 +5246,10 @@ vlq@^0.2.2:
|
|
5247
5246
|
resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26"
|
5248
5247
|
integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==
|
5249
5248
|
|
5250
|
-
vm-browserify
|
5251
|
-
version "
|
5252
|
-
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-
|
5253
|
-
integrity
|
5254
|
-
dependencies:
|
5255
|
-
indexof "0.0.1"
|
5249
|
+
vm-browserify@^1.0.1:
|
5250
|
+
version "1.1.2"
|
5251
|
+
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
|
5252
|
+
integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
|
5256
5253
|
|
5257
5254
|
w3c-hr-time@^1.0.1:
|
5258
5255
|
version "1.0.1"
|
@@ -5261,6 +5258,15 @@ w3c-hr-time@^1.0.1:
|
|
5261
5258
|
dependencies:
|
5262
5259
|
browser-process-hrtime "^0.1.2"
|
5263
5260
|
|
5261
|
+
w3c-xmlserializer@^1.1.2:
|
5262
|
+
version "1.1.2"
|
5263
|
+
resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794"
|
5264
|
+
integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==
|
5265
|
+
dependencies:
|
5266
|
+
domexception "^1.0.1"
|
5267
|
+
webidl-conversions "^4.0.2"
|
5268
|
+
xml-name-validator "^3.0.0"
|
5269
|
+
|
5264
5270
|
wcwidth@^1.0.1:
|
5265
5271
|
version "1.0.1"
|
5266
5272
|
resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
|
@@ -5273,36 +5279,32 @@ webidl-conversions@^4.0.2:
|
|
5273
5279
|
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
|
5274
5280
|
integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
|
5275
5281
|
|
5276
|
-
whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.
|
5282
|
+
whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5:
|
5277
5283
|
version "1.0.5"
|
5278
5284
|
resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
|
5279
5285
|
integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
|
5280
5286
|
dependencies:
|
5281
5287
|
iconv-lite "0.4.24"
|
5282
5288
|
|
5283
|
-
whatwg-mimetype@^2.
|
5289
|
+
whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0:
|
5284
5290
|
version "2.3.0"
|
5285
5291
|
resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
|
5286
5292
|
integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
|
5287
5293
|
|
5288
|
-
whatwg-url@^6.4.1:
|
5289
|
-
version "6.5.0"
|
5290
|
-
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"
|
5291
|
-
integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==
|
5292
|
-
dependencies:
|
5293
|
-
lodash.sortby "^4.7.0"
|
5294
|
-
tr46 "^1.0.1"
|
5295
|
-
webidl-conversions "^4.0.2"
|
5296
|
-
|
5297
5294
|
whatwg-url@^7.0.0:
|
5298
|
-
version "7.
|
5299
|
-
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.
|
5300
|
-
integrity sha512-
|
5295
|
+
version "7.1.0"
|
5296
|
+
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
|
5297
|
+
integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
|
5301
5298
|
dependencies:
|
5302
5299
|
lodash.sortby "^4.7.0"
|
5303
5300
|
tr46 "^1.0.1"
|
5304
5301
|
webidl-conversions "^4.0.2"
|
5305
5302
|
|
5303
|
+
which-module@^2.0.0:
|
5304
|
+
version "2.0.0"
|
5305
|
+
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
5306
|
+
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
5307
|
+
|
5306
5308
|
which@^1.2.9:
|
5307
5309
|
version "1.3.1"
|
5308
5310
|
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
@@ -5310,46 +5312,80 @@ which@^1.2.9:
|
|
5310
5312
|
dependencies:
|
5311
5313
|
isexe "^2.0.0"
|
5312
5314
|
|
5313
|
-
|
5314
|
-
version "1.
|
5315
|
-
resolved "https://registry.yarnpkg.com/
|
5316
|
-
integrity sha512-
|
5317
|
-
dependencies:
|
5318
|
-
string-width "^1.0.2 || 2"
|
5315
|
+
word-wrap@~1.2.3:
|
5316
|
+
version "1.2.3"
|
5317
|
+
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
5318
|
+
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
5319
5319
|
|
5320
|
-
|
5321
|
-
version "1.0
|
5322
|
-
resolved "https://registry.yarnpkg.com/
|
5323
|
-
integrity
|
5320
|
+
wrap-ansi@^5.1.0:
|
5321
|
+
version "5.1.0"
|
5322
|
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
|
5323
|
+
integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
|
5324
|
+
dependencies:
|
5325
|
+
ansi-styles "^3.2.0"
|
5326
|
+
string-width "^3.0.0"
|
5327
|
+
strip-ansi "^5.0.0"
|
5324
5328
|
|
5325
5329
|
wrappy@1:
|
5326
5330
|
version "1.0.2"
|
5327
5331
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
5328
5332
|
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
5329
5333
|
|
5330
|
-
ws@^5.1.1
|
5334
|
+
ws@^5.1.1:
|
5331
5335
|
version "5.2.2"
|
5332
5336
|
resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f"
|
5333
5337
|
integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==
|
5334
5338
|
dependencies:
|
5335
5339
|
async-limiter "~1.0.0"
|
5336
5340
|
|
5341
|
+
ws@^6.1.2:
|
5342
|
+
version "6.2.1"
|
5343
|
+
resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb"
|
5344
|
+
integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==
|
5345
|
+
dependencies:
|
5346
|
+
async-limiter "~1.0.0"
|
5347
|
+
|
5337
5348
|
xml-name-validator@^3.0.0:
|
5338
5349
|
version "3.0.0"
|
5339
5350
|
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
|
5340
5351
|
integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
|
5341
5352
|
|
5342
|
-
|
5343
|
-
version "
|
5344
|
-
resolved "https://registry.yarnpkg.com/
|
5345
|
-
integrity
|
5353
|
+
xmlchars@^2.1.1:
|
5354
|
+
version "2.2.0"
|
5355
|
+
resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
|
5356
|
+
integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
|
5346
5357
|
|
5347
|
-
|
5348
|
-
version "
|
5349
|
-
resolved "https://registry.yarnpkg.com/
|
5350
|
-
integrity
|
5358
|
+
xtend@^4.0.0, xtend@~4.0.1:
|
5359
|
+
version "4.0.2"
|
5360
|
+
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
|
5361
|
+
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
|
5351
5362
|
|
5352
|
-
|
5353
|
-
version "
|
5354
|
-
resolved "https://registry.yarnpkg.com/
|
5355
|
-
integrity sha512-
|
5363
|
+
y18n@^4.0.0:
|
5364
|
+
version "4.0.0"
|
5365
|
+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
|
5366
|
+
integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
|
5367
|
+
|
5368
|
+
yargs-parser@^15.0.0:
|
5369
|
+
version "15.0.0"
|
5370
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.0.tgz#cdd7a97490ec836195f59f3f4dbe5ea9e8f75f08"
|
5371
|
+
integrity sha512-xLTUnCMc4JhxrPEPUYD5IBR1mWCK/aT6+RJ/K29JY2y1vD+FhtgKK0AXRWvI262q3QSffAQuTouFIKUuHX89wQ==
|
5372
|
+
dependencies:
|
5373
|
+
camelcase "^5.0.0"
|
5374
|
+
decamelize "^1.2.0"
|
5375
|
+
|
5376
|
+
yargs@^14.0.0:
|
5377
|
+
version "14.2.2"
|
5378
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.2.tgz#2769564379009ff8597cdd38fba09da9b493c4b5"
|
5379
|
+
integrity sha512-/4ld+4VV5RnrynMhPZJ/ZpOCGSCeghMykZ3BhdFBDa9Wy/RH6uEGNWDJog+aUlq+9OM1CFTgtYRW5Is1Po9NOA==
|
5380
|
+
dependencies:
|
5381
|
+
cliui "^5.0.0"
|
5382
|
+
decamelize "^1.2.0"
|
5383
|
+
find-up "^3.0.0"
|
5384
|
+
get-caller-file "^2.0.1"
|
5385
|
+
require-directory "^2.1.1"
|
5386
|
+
require-main-filename "^2.0.0"
|
5387
|
+
set-blocking "^2.0.0"
|
5388
|
+
string-width "^3.0.0"
|
5389
|
+
which-module "^2.0.0"
|
5390
|
+
y18n "^4.0.0"
|
5391
|
+
yargs-parser "^15.0.0"
|