stimulus_reflex 3.4.1 → 3.5.0.pre0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stimulus_reflex might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +587 -495
- data/Gemfile.lock +82 -86
- data/LATEST +1 -0
- data/README.md +10 -10
- data/app/channels/stimulus_reflex/channel.rb +40 -67
- data/lib/generators/USAGE +1 -1
- data/lib/generators/stimulus_reflex/{config_generator.rb → initializer_generator.rb} +3 -3
- data/lib/generators/stimulus_reflex/templates/app/reflexes/%file_name%_reflex.rb.tt +3 -2
- data/lib/generators/stimulus_reflex/templates/app/reflexes/application_reflex.rb.tt +1 -1
- data/lib/generators/stimulus_reflex/templates/config/initializers/stimulus_reflex.rb +6 -1
- data/lib/stimulus_reflex.rb +9 -2
- data/lib/stimulus_reflex/broadcasters/broadcaster.rb +7 -4
- data/lib/stimulus_reflex/broadcasters/page_broadcaster.rb +2 -2
- data/lib/stimulus_reflex/broadcasters/selector_broadcaster.rb +12 -5
- data/lib/stimulus_reflex/cable_ready_channels.rb +6 -2
- data/lib/stimulus_reflex/callbacks.rb +55 -5
- data/lib/stimulus_reflex/concern_enhancer.rb +37 -0
- data/lib/stimulus_reflex/configuration.rb +2 -1
- data/lib/stimulus_reflex/element.rb +31 -7
- data/lib/stimulus_reflex/policies/reflex_invocation_policy.rb +28 -0
- data/lib/stimulus_reflex/reflex.rb +35 -20
- data/lib/stimulus_reflex/reflex_data.rb +79 -0
- data/lib/stimulus_reflex/reflex_factory.rb +31 -0
- data/lib/stimulus_reflex/request_parameters.rb +19 -0
- data/lib/stimulus_reflex/{logger.rb → utils/logger.rb} +0 -2
- data/lib/stimulus_reflex/{sanity_checker.rb → utils/sanity_checker.rb} +58 -10
- data/lib/stimulus_reflex/version.rb +1 -1
- data/lib/tasks/stimulus_reflex/install.rake +6 -4
- data/package.json +6 -5
- data/stimulus_reflex.gemspec +5 -5
- data/test/broadcasters/broadcaster_test_case.rb +1 -1
- data/test/broadcasters/nothing_broadcaster_test.rb +5 -3
- data/test/broadcasters/page_broadcaster_test.rb +8 -4
- data/test/broadcasters/selector_broadcaster_test.rb +171 -55
- data/test/callbacks_test.rb +652 -0
- data/test/concern_enhancer_test.rb +54 -0
- data/test/element_test.rb +181 -0
- data/test/reflex_test.rb +1 -1
- data/test/test_helper.rb +4 -0
- data/test/tmp/app/reflexes/application_reflex.rb +2 -2
- data/test/tmp/app/reflexes/user_reflex.rb +3 -2
- data/yarn.lock +1138 -919
- metadata +39 -28
- data/tags +0 -156
@@ -0,0 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "test_helper"
|
4
|
+
|
5
|
+
class StimulusReflex::ConcernTest < ActiveSupport::TestCase
|
6
|
+
module TestConcern
|
7
|
+
extend ActiveSupport::Concern
|
8
|
+
include StimulusReflex::ConcernEnhancer
|
9
|
+
end
|
10
|
+
|
11
|
+
class TestReflex < StimulusReflex::Reflex
|
12
|
+
include TestConcern
|
13
|
+
|
14
|
+
def initialize
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
class TestController < ActionController::Base
|
19
|
+
include TestConcern
|
20
|
+
end
|
21
|
+
|
22
|
+
class TestModel < ActiveRecord::Base
|
23
|
+
include TestConcern
|
24
|
+
end
|
25
|
+
|
26
|
+
test "included in a reflex it stubs controller and model methods" do
|
27
|
+
assert_nil TestReflex.helper_method
|
28
|
+
assert_nil TestReflex.before_action
|
29
|
+
assert_nil TestReflex.around_action
|
30
|
+
assert_nil TestReflex.after_action
|
31
|
+
|
32
|
+
assert_nil TestReflex.before_save
|
33
|
+
assert_nil TestReflex.around_save
|
34
|
+
assert_nil TestReflex.after_save
|
35
|
+
|
36
|
+
refute_nil TestReflex.before_reflex
|
37
|
+
end
|
38
|
+
|
39
|
+
test "included in a controller it stubs reflex methods" do
|
40
|
+
assert_nil TestController.before_reflex
|
41
|
+
assert_nil TestController.around_reflex
|
42
|
+
assert_nil TestController.after_reflex
|
43
|
+
|
44
|
+
refute_nil TestController.before_action
|
45
|
+
end
|
46
|
+
|
47
|
+
test "included in a model it stubs reflex methods" do
|
48
|
+
assert_nil TestModel.before_reflex
|
49
|
+
assert_nil TestModel.around_reflex
|
50
|
+
assert_nil TestModel.after_reflex
|
51
|
+
|
52
|
+
refute_nil TestModel.after_save
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,181 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "test_helper"
|
4
|
+
|
5
|
+
class StimulusReflex::ElementTest < ActiveSupport::TestCase
|
6
|
+
element = StimulusReflex::Element.new({
|
7
|
+
"attrs" => {
|
8
|
+
"user" => "First User",
|
9
|
+
"user-id" => "1"
|
10
|
+
},
|
11
|
+
"dataset" => {
|
12
|
+
"dataset" => {
|
13
|
+
"data-post" => "The Post",
|
14
|
+
"data-post-id" => "2"
|
15
|
+
},
|
16
|
+
"datasetAll" => {}
|
17
|
+
}
|
18
|
+
})
|
19
|
+
|
20
|
+
test "should be able to access attributes on element itself" do
|
21
|
+
assert_equal "First User", element.user
|
22
|
+
assert_equal "First User", element["user"]
|
23
|
+
assert_equal "First User", element[:user]
|
24
|
+
|
25
|
+
assert_equal "1", element.user_id
|
26
|
+
assert_equal "1", element["user_id"]
|
27
|
+
assert_equal "1", element["user-id"]
|
28
|
+
assert_equal "1", element[:user_id]
|
29
|
+
|
30
|
+
assert_equal "The Post", element.data_post
|
31
|
+
assert_equal "The Post", element["data_post"]
|
32
|
+
assert_equal "The Post", element["data-post"]
|
33
|
+
assert_equal "The Post", element[:data_post]
|
34
|
+
|
35
|
+
assert_equal "2", element.data_post_id
|
36
|
+
assert_equal "2", element["data_post_id"]
|
37
|
+
assert_equal "2", element["data-post-id"]
|
38
|
+
assert_equal "2", element[:data_post_id]
|
39
|
+
end
|
40
|
+
|
41
|
+
test "should be able to access attributes via attributes" do
|
42
|
+
assert_equal "First User", element.attributes.user
|
43
|
+
assert_equal "First User", element.attributes["user"]
|
44
|
+
assert_equal "First User", element.attributes[:user]
|
45
|
+
|
46
|
+
assert_equal "1", element.attributes.user_id
|
47
|
+
assert_equal "1", element.attributes["user_id"]
|
48
|
+
assert_equal "1", element.attributes["user-id"]
|
49
|
+
assert_equal "1", element.attributes[:user_id]
|
50
|
+
end
|
51
|
+
|
52
|
+
test "should be able to access attributes via dataset" do
|
53
|
+
assert_equal "The Post", element.dataset.post
|
54
|
+
assert_equal "The Post", element.dataset["post"]
|
55
|
+
assert_equal "The Post", element.dataset[:post]
|
56
|
+
|
57
|
+
assert_equal "2", element.dataset.post_id
|
58
|
+
assert_equal "2", element.dataset["post-id"]
|
59
|
+
assert_equal "2", element.dataset["post_id"]
|
60
|
+
assert_equal "2", element.dataset[:post_id]
|
61
|
+
end
|
62
|
+
|
63
|
+
test "should be able to access attributes via data_attributes" do
|
64
|
+
assert_equal "The Post", element.data_attributes.post
|
65
|
+
assert_equal "The Post", element.data_attributes["post"]
|
66
|
+
assert_equal "The Post", element.data_attributes[:post]
|
67
|
+
|
68
|
+
assert_equal "2", element.data_attributes.post_id
|
69
|
+
assert_equal "2", element.data_attributes["post-id"]
|
70
|
+
assert_equal "2", element.data_attributes["post_id"]
|
71
|
+
assert_equal "2", element.data_attributes[:post_id]
|
72
|
+
end
|
73
|
+
|
74
|
+
test "should pluralize keys from datasetAll" do
|
75
|
+
data = {
|
76
|
+
"dataset" => {
|
77
|
+
"dataset" => {
|
78
|
+
"data-reflex" => "click",
|
79
|
+
"data-sex" => "male"
|
80
|
+
},
|
81
|
+
"datasetAll" => {
|
82
|
+
"data-reflex" => ["click"],
|
83
|
+
"data-post-id" => ["1", "2", "3", "4"],
|
84
|
+
"data-name" => ["steve", "bill", "steve", "mike"]
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
dataset_all_element = StimulusReflex::Element.new(data)
|
90
|
+
|
91
|
+
assert_equal "click", dataset_all_element.dataset.reflex
|
92
|
+
assert_equal "male", dataset_all_element.dataset.sex
|
93
|
+
|
94
|
+
assert_equal ["steve", "bill", "steve", "mike"], dataset_all_element.dataset.names
|
95
|
+
assert_equal ["1", "2", "3", "4"], dataset_all_element.dataset.post_ids
|
96
|
+
assert_equal ["click"], dataset_all_element.dataset.reflexes
|
97
|
+
end
|
98
|
+
|
99
|
+
test "should pluralize irregular words from datasetAll" do
|
100
|
+
data = {
|
101
|
+
"dataset" => {
|
102
|
+
"dataset" => {},
|
103
|
+
"datasetAll" => {
|
104
|
+
"data-cat" => ["cat"],
|
105
|
+
"data-child" => ["child"],
|
106
|
+
"data-women" => ["woman"],
|
107
|
+
"data-man" => ["man"],
|
108
|
+
"data-wolf" => ["wolf"],
|
109
|
+
"data-library" => ["library"],
|
110
|
+
"data-mouse" => ["mouse"]
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
pluralize_element = StimulusReflex::Element.new(data)
|
116
|
+
|
117
|
+
assert_equal ["cat"], pluralize_element.dataset.cats
|
118
|
+
assert_equal ["child"], pluralize_element.dataset.children
|
119
|
+
assert_equal ["woman"], pluralize_element.dataset.women
|
120
|
+
assert_equal ["man"], pluralize_element.dataset.men
|
121
|
+
assert_equal ["wolf"], pluralize_element.dataset.wolves
|
122
|
+
assert_equal ["library"], pluralize_element.dataset.libraries
|
123
|
+
assert_equal ["mouse"], pluralize_element.dataset.mice
|
124
|
+
end
|
125
|
+
|
126
|
+
test "should not pluralize plural key" do
|
127
|
+
data = {
|
128
|
+
"dataset" => {
|
129
|
+
"datasetAll" => {
|
130
|
+
"data-ids" => ["1", "2"]
|
131
|
+
}
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
135
|
+
assert_equal ["1", "2"], StimulusReflex::Element.new(data).dataset.ids
|
136
|
+
assert_nil StimulusReflex::Element.new(data).dataset.idss
|
137
|
+
end
|
138
|
+
|
139
|
+
test "should not build array with pluralized key" do
|
140
|
+
data = {
|
141
|
+
"dataset" => {
|
142
|
+
"dataset" => {
|
143
|
+
"data-ids" => "1"
|
144
|
+
}
|
145
|
+
}
|
146
|
+
}
|
147
|
+
|
148
|
+
assert_equal "1", StimulusReflex::Element.new(data).dataset.ids
|
149
|
+
end
|
150
|
+
|
151
|
+
test "should handle overlapping singluar and plural key names" do
|
152
|
+
data = {
|
153
|
+
"dataset" => {
|
154
|
+
"dataset" => {
|
155
|
+
"data-id" => "1",
|
156
|
+
"data-ids" => "2",
|
157
|
+
"data-post-id" => "9",
|
158
|
+
"data-post-ids" => "10",
|
159
|
+
"data-duplicate-value" => "19",
|
160
|
+
"data-duplicate-values" => "20"
|
161
|
+
},
|
162
|
+
"datasetAll" => {
|
163
|
+
"data-id" => ["3", "4"],
|
164
|
+
"data-post-ids" => ["11", "12"],
|
165
|
+
"data-duplicate-value" => ["20", "21", "22"]
|
166
|
+
}
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
overlapping_keys_element = StimulusReflex::Element.new(data)
|
171
|
+
|
172
|
+
assert_equal "1", overlapping_keys_element.dataset.id
|
173
|
+
assert_equal ["2", "3", "4"], overlapping_keys_element.dataset.ids
|
174
|
+
|
175
|
+
assert_equal "9", overlapping_keys_element.dataset.post_id
|
176
|
+
assert_equal ["10", "11", "12"], overlapping_keys_element.dataset.post_ids
|
177
|
+
|
178
|
+
assert_equal "19", overlapping_keys_element.dataset.duplicate_value
|
179
|
+
assert_equal ["20", "20", "21", "22"], overlapping_keys_element.dataset.duplicate_values
|
180
|
+
end
|
181
|
+
end
|
data/test/reflex_test.rb
CHANGED
@@ -10,7 +10,7 @@ class StimulusReflex::ReflexTest < ActionCable::Channel::TestCase
|
|
10
10
|
def connection.env
|
11
11
|
@env ||= {}
|
12
12
|
end
|
13
|
-
@reflex = StimulusReflex::Reflex.new(subscribe, url: "https://test.stimulusreflex.com")
|
13
|
+
@reflex = StimulusReflex::Reflex.new(subscribe, url: "https://test.stimulusreflex.com", client_attributes: {reflex_id: "666"})
|
14
14
|
@reflex.controller_class.view_paths << Rails.root.join("test/views")
|
15
15
|
end
|
16
16
|
|
data/test/test_helper.rb
CHANGED
@@ -5,6 +5,7 @@ ENV["RAILS_ENV"] ||= "test"
|
|
5
5
|
require "minitest/mock"
|
6
6
|
require "rails"
|
7
7
|
require "active_model"
|
8
|
+
require "active_record"
|
8
9
|
require "action_controller"
|
9
10
|
require "pry"
|
10
11
|
require_relative "../lib/stimulus_reflex"
|
@@ -38,6 +39,9 @@ end
|
|
38
39
|
class TestModel
|
39
40
|
include ActiveModel::Model
|
40
41
|
attr_accessor :id
|
42
|
+
def is_a?(klass)
|
43
|
+
klass == ActiveRecord::Base
|
44
|
+
end
|
41
45
|
end
|
42
46
|
|
43
47
|
StimulusReflex.configuration.parent_channel = "ActionCable::Channel::Base"
|
@@ -1,12 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
class ApplicationReflex < StimulusReflex::Reflex
|
4
|
-
# Put application-wide Reflex behavior and callbacks in this file.
|
4
|
+
# Put application-wide Reflex behavior and callbacks in this file.
|
5
5
|
#
|
6
6
|
# Example:
|
7
7
|
#
|
8
8
|
# # If your ActionCable connection is: `identified_by :current_user`
|
9
9
|
# delegate :current_user, to: :connection
|
10
10
|
#
|
11
|
-
# Learn more at: https://docs.stimulusreflex.com/
|
11
|
+
# Learn more at: https://docs.stimulusreflex.com/rtfm/reflex-classes
|
12
12
|
end
|
@@ -17,12 +17,13 @@ class UserReflex < ApplicationReflex
|
|
17
17
|
# - unsigned - use an unsigned Global ID to map dataset attribute to a model eg. element.unsigned[:foo]
|
18
18
|
# - cable_ready - a special cable_ready that can broadcast to the current visitor (no brackets needed)
|
19
19
|
# - reflex_id - a UUIDv4 that uniquely identies each Reflex
|
20
|
+
# - tab_id - a UUIDv4 that uniquely identifies the browser tab
|
20
21
|
#
|
21
22
|
# Example:
|
22
23
|
#
|
23
24
|
# before_reflex do
|
24
25
|
# # throw :abort # this will prevent the Reflex from continuing
|
25
|
-
# # learn more about callbacks at https://docs.stimulusreflex.com/lifecycle
|
26
|
+
# # learn more about callbacks at https://docs.stimulusreflex.com/rtfm/lifecycle
|
26
27
|
# end
|
27
28
|
#
|
28
29
|
# def example(argument=true)
|
@@ -30,7 +31,7 @@ class UserReflex < ApplicationReflex
|
|
30
31
|
# # Any declared instance variables will be made available to the Rails controller and view.
|
31
32
|
# end
|
32
33
|
#
|
33
|
-
# Learn more at: https://docs.stimulusreflex.com/
|
34
|
+
# Learn more at: https://docs.stimulusreflex.com/rtfm/reflex-classes
|
34
35
|
|
35
36
|
def update
|
36
37
|
end
|
data/yarn.lock
CHANGED
@@ -16,197 +16,203 @@
|
|
16
16
|
dependencies:
|
17
17
|
"@babel/highlight" "^7.8.3"
|
18
18
|
|
19
|
-
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.
|
20
|
-
version "7.12.
|
21
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.
|
22
|
-
integrity sha512-
|
19
|
+
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13":
|
20
|
+
version "7.12.13"
|
21
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
|
22
|
+
integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
|
23
23
|
dependencies:
|
24
|
-
"@babel/highlight" "^7.
|
24
|
+
"@babel/highlight" "^7.12.13"
|
25
25
|
|
26
|
-
"@babel/compat-data@^7.
|
27
|
-
version "7.
|
28
|
-
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.
|
29
|
-
integrity sha512-
|
26
|
+
"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.15", "@babel/compat-data@^7.14.0":
|
27
|
+
version "7.14.0"
|
28
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz#a901128bce2ad02565df95e6ecbf195cf9465919"
|
29
|
+
integrity sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==
|
30
30
|
|
31
31
|
"@babel/core@^7.6.2":
|
32
|
-
version "7.
|
33
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.
|
34
|
-
integrity sha512-
|
35
|
-
dependencies:
|
36
|
-
"@babel/code-frame" "^7.
|
37
|
-
"@babel/generator" "^7.
|
38
|
-
"@babel/helper-
|
39
|
-
"@babel/
|
40
|
-
"@babel/
|
41
|
-
"@babel/
|
42
|
-
"@babel/
|
43
|
-
"@babel/
|
32
|
+
version "7.14.3"
|
33
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.3.tgz#5395e30405f0776067fbd9cf0884f15bfb770a38"
|
34
|
+
integrity sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==
|
35
|
+
dependencies:
|
36
|
+
"@babel/code-frame" "^7.12.13"
|
37
|
+
"@babel/generator" "^7.14.3"
|
38
|
+
"@babel/helper-compilation-targets" "^7.13.16"
|
39
|
+
"@babel/helper-module-transforms" "^7.14.2"
|
40
|
+
"@babel/helpers" "^7.14.0"
|
41
|
+
"@babel/parser" "^7.14.3"
|
42
|
+
"@babel/template" "^7.12.13"
|
43
|
+
"@babel/traverse" "^7.14.2"
|
44
|
+
"@babel/types" "^7.14.2"
|
44
45
|
convert-source-map "^1.7.0"
|
45
46
|
debug "^4.1.0"
|
46
|
-
gensync "^1.0.0-beta.
|
47
|
+
gensync "^1.0.0-beta.2"
|
47
48
|
json5 "^2.1.2"
|
48
|
-
|
49
|
-
semver "^5.4.1"
|
49
|
+
semver "^6.3.0"
|
50
50
|
source-map "^0.5.0"
|
51
51
|
|
52
|
-
"@babel/generator@^7.
|
53
|
-
version "7.
|
54
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
55
|
-
integrity sha512-
|
52
|
+
"@babel/generator@^7.14.2", "@babel/generator@^7.14.3":
|
53
|
+
version "7.14.3"
|
54
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.3.tgz#0c2652d91f7bddab7cccc6ba8157e4f40dcedb91"
|
55
|
+
integrity sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==
|
56
56
|
dependencies:
|
57
|
-
"@babel/types" "^7.
|
57
|
+
"@babel/types" "^7.14.2"
|
58
58
|
jsesc "^2.5.1"
|
59
59
|
source-map "^0.5.0"
|
60
60
|
|
61
|
-
"@babel/helper-annotate-as-pure@^7.
|
62
|
-
version "7.12.
|
63
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.
|
64
|
-
integrity sha512-
|
61
|
+
"@babel/helper-annotate-as-pure@^7.12.13":
|
62
|
+
version "7.12.13"
|
63
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab"
|
64
|
+
integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==
|
65
65
|
dependencies:
|
66
|
-
"@babel/types" "^7.12.
|
66
|
+
"@babel/types" "^7.12.13"
|
67
67
|
|
68
|
-
"@babel/helper-builder-binary-assignment-operator-visitor@^7.
|
69
|
-
version "7.
|
70
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.
|
71
|
-
integrity sha512-
|
68
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13":
|
69
|
+
version "7.12.13"
|
70
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc"
|
71
|
+
integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==
|
72
72
|
dependencies:
|
73
|
-
"@babel/helper-explode-assignable-expression" "^7.
|
74
|
-
"@babel/types" "^7.
|
73
|
+
"@babel/helper-explode-assignable-expression" "^7.12.13"
|
74
|
+
"@babel/types" "^7.12.13"
|
75
75
|
|
76
|
-
"@babel/helper-compilation-targets@^7.
|
77
|
-
version "7.
|
78
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
79
|
-
integrity sha512
|
76
|
+
"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16":
|
77
|
+
version "7.13.16"
|
78
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz#6e91dccf15e3f43e5556dffe32d860109887563c"
|
79
|
+
integrity sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==
|
80
80
|
dependencies:
|
81
|
-
"@babel/compat-data" "^7.
|
82
|
-
"@babel/helper-validator-option" "^7.12.
|
81
|
+
"@babel/compat-data" "^7.13.15"
|
82
|
+
"@babel/helper-validator-option" "^7.12.17"
|
83
83
|
browserslist "^4.14.5"
|
84
|
-
semver "^
|
84
|
+
semver "^6.3.0"
|
85
85
|
|
86
|
-
"@babel/helper-create-class-features-plugin@^7.
|
87
|
-
version "7.
|
88
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.
|
89
|
-
integrity sha512-
|
86
|
+
"@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.14.0", "@babel/helper-create-class-features-plugin@^7.14.3":
|
87
|
+
version "7.14.3"
|
88
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.3.tgz#832111bcf4f57ca57a4c5b1a000fc125abc6554a"
|
89
|
+
integrity sha512-BnEfi5+6J2Lte9LeiL6TxLWdIlEv9Woacc1qXzXBgbikcOzMRM2Oya5XGg/f/ngotv1ej2A/b+3iJH8wbS1+lQ==
|
90
90
|
dependencies:
|
91
|
-
"@babel/helper-
|
92
|
-
"@babel/helper-
|
93
|
-
"@babel/helper-
|
94
|
-
"@babel/helper-
|
95
|
-
"@babel/helper-
|
91
|
+
"@babel/helper-annotate-as-pure" "^7.12.13"
|
92
|
+
"@babel/helper-function-name" "^7.14.2"
|
93
|
+
"@babel/helper-member-expression-to-functions" "^7.13.12"
|
94
|
+
"@babel/helper-optimise-call-expression" "^7.12.13"
|
95
|
+
"@babel/helper-replace-supers" "^7.14.3"
|
96
|
+
"@babel/helper-split-export-declaration" "^7.12.13"
|
96
97
|
|
97
|
-
"@babel/helper-create-regexp-features-plugin@^7.12.
|
98
|
-
version "7.
|
99
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.
|
100
|
-
integrity sha512-
|
98
|
+
"@babel/helper-create-regexp-features-plugin@^7.12.13":
|
99
|
+
version "7.14.3"
|
100
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.3.tgz#149aa6d78c016e318c43e2409a0ae9c136a86688"
|
101
|
+
integrity sha512-JIB2+XJrb7v3zceV2XzDhGIB902CmKGSpSl4q2C6agU9SNLG/2V1RtFRGPG1Ajh9STj3+q6zJMOC+N/pp2P9DA==
|
101
102
|
dependencies:
|
102
|
-
"@babel/helper-annotate-as-pure" "^7.
|
103
|
+
"@babel/helper-annotate-as-pure" "^7.12.13"
|
103
104
|
regexpu-core "^4.7.1"
|
104
105
|
|
105
|
-
"@babel/helper-define-
|
106
|
-
version "
|
107
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-define-
|
108
|
-
integrity sha512-
|
106
|
+
"@babel/helper-define-polyfill-provider@^0.2.0":
|
107
|
+
version "0.2.0"
|
108
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz#a640051772045fedaaecc6f0c6c69f02bdd34bf1"
|
109
|
+
integrity sha512-JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw==
|
109
110
|
dependencies:
|
110
|
-
"@babel/helper-
|
111
|
-
"@babel/
|
112
|
-
|
111
|
+
"@babel/helper-compilation-targets" "^7.13.0"
|
112
|
+
"@babel/helper-module-imports" "^7.12.13"
|
113
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
114
|
+
"@babel/traverse" "^7.13.0"
|
115
|
+
debug "^4.1.1"
|
116
|
+
lodash.debounce "^4.0.8"
|
117
|
+
resolve "^1.14.2"
|
118
|
+
semver "^6.1.2"
|
113
119
|
|
114
|
-
"@babel/helper-explode-assignable-expression@^7.
|
115
|
-
version "7.
|
116
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.
|
117
|
-
integrity sha512-
|
120
|
+
"@babel/helper-explode-assignable-expression@^7.12.13":
|
121
|
+
version "7.13.0"
|
122
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f"
|
123
|
+
integrity sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==
|
118
124
|
dependencies:
|
119
|
-
"@babel/types" "^7.
|
125
|
+
"@babel/types" "^7.13.0"
|
120
126
|
|
121
|
-
"@babel/helper-function-name@^7.
|
122
|
-
version "7.
|
123
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.
|
124
|
-
integrity sha512-
|
127
|
+
"@babel/helper-function-name@^7.12.13", "@babel/helper-function-name@^7.14.2":
|
128
|
+
version "7.14.2"
|
129
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz#397688b590760b6ef7725b5f0860c82427ebaac2"
|
130
|
+
integrity sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==
|
125
131
|
dependencies:
|
126
|
-
"@babel/helper-get-function-arity" "^7.12.
|
127
|
-
"@babel/template" "^7.12.
|
128
|
-
"@babel/types" "^7.
|
132
|
+
"@babel/helper-get-function-arity" "^7.12.13"
|
133
|
+
"@babel/template" "^7.12.13"
|
134
|
+
"@babel/types" "^7.14.2"
|
129
135
|
|
130
|
-
"@babel/helper-get-function-arity@^7.12.
|
131
|
-
version "7.12.
|
132
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.
|
133
|
-
integrity sha512-
|
136
|
+
"@babel/helper-get-function-arity@^7.12.13":
|
137
|
+
version "7.12.13"
|
138
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583"
|
139
|
+
integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
|
134
140
|
dependencies:
|
135
|
-
"@babel/types" "^7.12.
|
141
|
+
"@babel/types" "^7.12.13"
|
136
142
|
|
137
|
-
"@babel/helper-hoist-variables@^7.
|
138
|
-
version "7.
|
139
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.
|
140
|
-
integrity sha512-
|
143
|
+
"@babel/helper-hoist-variables@^7.13.0":
|
144
|
+
version "7.13.16"
|
145
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.16.tgz#1b1651249e94b51f8f0d33439843e33e39775b30"
|
146
|
+
integrity sha512-1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg==
|
141
147
|
dependencies:
|
142
|
-
"@babel/
|
148
|
+
"@babel/traverse" "^7.13.15"
|
149
|
+
"@babel/types" "^7.13.16"
|
143
150
|
|
144
|
-
"@babel/helper-member-expression-to-functions@^7.
|
145
|
-
version "7.12
|
146
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.
|
147
|
-
integrity sha512-
|
151
|
+
"@babel/helper-member-expression-to-functions@^7.13.12":
|
152
|
+
version "7.13.12"
|
153
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72"
|
154
|
+
integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==
|
148
155
|
dependencies:
|
149
|
-
"@babel/types" "^7.12
|
156
|
+
"@babel/types" "^7.13.12"
|
150
157
|
|
151
|
-
"@babel/helper-module-imports@^7.12.
|
152
|
-
version "7.12
|
153
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.
|
154
|
-
integrity sha512-
|
158
|
+
"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.13.12":
|
159
|
+
version "7.13.12"
|
160
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
|
161
|
+
integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
|
155
162
|
dependencies:
|
156
|
-
"@babel/types" "^7.12
|
163
|
+
"@babel/types" "^7.13.12"
|
157
164
|
|
158
|
-
"@babel/helper-module-transforms@^7.
|
159
|
-
version "7.
|
160
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.
|
161
|
-
integrity sha512-
|
162
|
-
dependencies:
|
163
|
-
"@babel/helper-module-imports" "^7.12
|
164
|
-
"@babel/helper-replace-supers" "^7.12
|
165
|
-
"@babel/helper-simple-access" "^7.12
|
166
|
-
"@babel/helper-split-export-declaration" "^7.
|
167
|
-
"@babel/helper-validator-identifier" "^7.
|
168
|
-
"@babel/template" "^7.
|
169
|
-
"@babel/traverse" "^7.
|
170
|
-
"@babel/types" "^7.
|
171
|
-
lodash "^4.17.19"
|
165
|
+
"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.14.0", "@babel/helper-module-transforms@^7.14.2":
|
166
|
+
version "7.14.2"
|
167
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz#ac1cc30ee47b945e3e0c4db12fa0c5389509dfe5"
|
168
|
+
integrity sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==
|
169
|
+
dependencies:
|
170
|
+
"@babel/helper-module-imports" "^7.13.12"
|
171
|
+
"@babel/helper-replace-supers" "^7.13.12"
|
172
|
+
"@babel/helper-simple-access" "^7.13.12"
|
173
|
+
"@babel/helper-split-export-declaration" "^7.12.13"
|
174
|
+
"@babel/helper-validator-identifier" "^7.14.0"
|
175
|
+
"@babel/template" "^7.12.13"
|
176
|
+
"@babel/traverse" "^7.14.2"
|
177
|
+
"@babel/types" "^7.14.2"
|
172
178
|
|
173
|
-
"@babel/helper-optimise-call-expression@^7.
|
174
|
-
version "7.12.
|
175
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.
|
176
|
-
integrity sha512-
|
179
|
+
"@babel/helper-optimise-call-expression@^7.12.13":
|
180
|
+
version "7.12.13"
|
181
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea"
|
182
|
+
integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==
|
177
183
|
dependencies:
|
178
|
-
"@babel/types" "^7.12.
|
184
|
+
"@babel/types" "^7.12.13"
|
179
185
|
|
180
|
-
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
|
181
|
-
version "7.
|
182
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.
|
183
|
-
integrity sha512-
|
186
|
+
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
|
187
|
+
version "7.13.0"
|
188
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af"
|
189
|
+
integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==
|
184
190
|
|
185
|
-
"@babel/helper-remap-async-to-generator@^7.
|
186
|
-
version "7.
|
187
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.
|
188
|
-
integrity sha512-
|
191
|
+
"@babel/helper-remap-async-to-generator@^7.13.0":
|
192
|
+
version "7.13.0"
|
193
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209"
|
194
|
+
integrity sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==
|
189
195
|
dependencies:
|
190
|
-
"@babel/helper-annotate-as-pure" "^7.
|
191
|
-
"@babel/helper-wrap-function" "^7.
|
192
|
-
"@babel/types" "^7.
|
196
|
+
"@babel/helper-annotate-as-pure" "^7.12.13"
|
197
|
+
"@babel/helper-wrap-function" "^7.13.0"
|
198
|
+
"@babel/types" "^7.13.0"
|
193
199
|
|
194
|
-
"@babel/helper-replace-supers@^7.12.
|
195
|
-
version "7.
|
196
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.
|
197
|
-
integrity sha512-
|
200
|
+
"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.12", "@babel/helper-replace-supers@^7.14.3":
|
201
|
+
version "7.14.3"
|
202
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.3.tgz#ca17b318b859d107f0e9b722d58cf12d94436600"
|
203
|
+
integrity sha512-Rlh8qEWZSTfdz+tgNV/N4gz1a0TMNwCUcENhMjHTHKp3LseYH5Jha0NSlyTQWMnjbYcwFt+bqAMqSLHVXkQ6UA==
|
198
204
|
dependencies:
|
199
|
-
"@babel/helper-member-expression-to-functions" "^7.12
|
200
|
-
"@babel/helper-optimise-call-expression" "^7.12.
|
201
|
-
"@babel/traverse" "^7.
|
202
|
-
"@babel/types" "^7.
|
205
|
+
"@babel/helper-member-expression-to-functions" "^7.13.12"
|
206
|
+
"@babel/helper-optimise-call-expression" "^7.12.13"
|
207
|
+
"@babel/traverse" "^7.14.2"
|
208
|
+
"@babel/types" "^7.14.2"
|
203
209
|
|
204
|
-
"@babel/helper-simple-access@^7.12
|
205
|
-
version "7.12
|
206
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.
|
207
|
-
integrity sha512-
|
210
|
+
"@babel/helper-simple-access@^7.13.12":
|
211
|
+
version "7.13.12"
|
212
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6"
|
213
|
+
integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==
|
208
214
|
dependencies:
|
209
|
-
"@babel/types" "^7.12
|
215
|
+
"@babel/types" "^7.13.12"
|
210
216
|
|
211
217
|
"@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
|
212
218
|
version "7.12.1"
|
@@ -215,48 +221,48 @@
|
|
215
221
|
dependencies:
|
216
222
|
"@babel/types" "^7.12.1"
|
217
223
|
|
218
|
-
"@babel/helper-split-export-declaration@^7.
|
219
|
-
version "7.12.
|
220
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.
|
221
|
-
integrity sha512-
|
224
|
+
"@babel/helper-split-export-declaration@^7.12.13":
|
225
|
+
version "7.12.13"
|
226
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05"
|
227
|
+
integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
|
222
228
|
dependencies:
|
223
|
-
"@babel/types" "^7.12.
|
229
|
+
"@babel/types" "^7.12.13"
|
224
230
|
|
225
|
-
"@babel/helper-validator-identifier@^7.
|
226
|
-
version "7.
|
227
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.
|
228
|
-
integrity sha512-
|
231
|
+
"@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.14.0":
|
232
|
+
version "7.14.0"
|
233
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288"
|
234
|
+
integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==
|
229
235
|
|
230
|
-
"@babel/helper-validator-option@^7.12.
|
231
|
-
version "7.12.
|
232
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.
|
233
|
-
integrity sha512-
|
236
|
+
"@babel/helper-validator-option@^7.12.17":
|
237
|
+
version "7.12.17"
|
238
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"
|
239
|
+
integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==
|
234
240
|
|
235
|
-
"@babel/helper-wrap-function@^7.
|
236
|
-
version "7.
|
237
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.
|
238
|
-
integrity sha512-
|
241
|
+
"@babel/helper-wrap-function@^7.13.0":
|
242
|
+
version "7.13.0"
|
243
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4"
|
244
|
+
integrity sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==
|
239
245
|
dependencies:
|
240
|
-
"@babel/helper-function-name" "^7.
|
241
|
-
"@babel/template" "^7.
|
242
|
-
"@babel/traverse" "^7.
|
243
|
-
"@babel/types" "^7.
|
246
|
+
"@babel/helper-function-name" "^7.12.13"
|
247
|
+
"@babel/template" "^7.12.13"
|
248
|
+
"@babel/traverse" "^7.13.0"
|
249
|
+
"@babel/types" "^7.13.0"
|
244
250
|
|
245
|
-
"@babel/helpers@^7.
|
246
|
-
version "7.
|
247
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.
|
248
|
-
integrity sha512
|
251
|
+
"@babel/helpers@^7.14.0":
|
252
|
+
version "7.14.0"
|
253
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.0.tgz#ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62"
|
254
|
+
integrity sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==
|
249
255
|
dependencies:
|
250
|
-
"@babel/template" "^7.
|
251
|
-
"@babel/traverse" "^7.
|
252
|
-
"@babel/types" "^7.
|
256
|
+
"@babel/template" "^7.12.13"
|
257
|
+
"@babel/traverse" "^7.14.0"
|
258
|
+
"@babel/types" "^7.14.0"
|
253
259
|
|
254
|
-
"@babel/highlight@^7.
|
255
|
-
version "7.
|
256
|
-
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.
|
257
|
-
integrity sha512-
|
260
|
+
"@babel/highlight@^7.12.13", "@babel/highlight@^7.8.3":
|
261
|
+
version "7.14.0"
|
262
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf"
|
263
|
+
integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==
|
258
264
|
dependencies:
|
259
|
-
"@babel/helper-validator-identifier" "^7.
|
265
|
+
"@babel/helper-validator-identifier" "^7.14.0"
|
260
266
|
chalk "^2.0.0"
|
261
267
|
js-tokens "^4.0.0"
|
262
268
|
|
@@ -265,133 +271,170 @@
|
|
265
271
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
|
266
272
|
integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
|
267
273
|
|
268
|
-
"@babel/parser@^7.12.
|
269
|
-
version "7.
|
270
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.
|
271
|
-
integrity sha512-
|
274
|
+
"@babel/parser@^7.12.13", "@babel/parser@^7.14.2", "@babel/parser@^7.14.3":
|
275
|
+
version "7.14.3"
|
276
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.3.tgz#9b530eecb071fd0c93519df25c5ff9f14759f298"
|
277
|
+
integrity sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==
|
272
278
|
|
273
|
-
"@babel/plugin-
|
274
|
-
version "7.
|
275
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
276
|
-
integrity sha512-
|
279
|
+
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12":
|
280
|
+
version "7.13.12"
|
281
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a"
|
282
|
+
integrity sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==
|
277
283
|
dependencies:
|
278
|
-
"@babel/helper-plugin-utils" "^7.
|
279
|
-
"@babel/helper-
|
280
|
-
"@babel/plugin-
|
284
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
285
|
+
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
|
286
|
+
"@babel/plugin-proposal-optional-chaining" "^7.13.12"
|
281
287
|
|
282
|
-
"@babel/plugin-proposal-
|
283
|
-
version "7.
|
284
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
285
|
-
integrity sha512-
|
288
|
+
"@babel/plugin-proposal-async-generator-functions@^7.14.2":
|
289
|
+
version "7.14.2"
|
290
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.2.tgz#3a2085abbf5d5f962d480dbc81347385ed62eb1e"
|
291
|
+
integrity sha512-b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ==
|
286
292
|
dependencies:
|
287
|
-
"@babel/helper-
|
288
|
-
"@babel/helper-
|
293
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
294
|
+
"@babel/helper-remap-async-to-generator" "^7.13.0"
|
295
|
+
"@babel/plugin-syntax-async-generators" "^7.8.4"
|
289
296
|
|
290
|
-
"@babel/plugin-proposal-
|
291
|
-
version "7.
|
292
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
293
|
-
integrity sha512-
|
297
|
+
"@babel/plugin-proposal-class-properties@^7.13.0":
|
298
|
+
version "7.13.0"
|
299
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37"
|
300
|
+
integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==
|
294
301
|
dependencies:
|
295
|
-
"@babel/helper-plugin
|
296
|
-
"@babel/plugin-
|
302
|
+
"@babel/helper-create-class-features-plugin" "^7.13.0"
|
303
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
297
304
|
|
298
|
-
"@babel/plugin-proposal-
|
299
|
-
version "7.
|
300
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
301
|
-
integrity sha512-
|
305
|
+
"@babel/plugin-proposal-class-static-block@^7.13.11":
|
306
|
+
version "7.14.3"
|
307
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.3.tgz#5a527e2cae4a4753119c3a3e7f64ecae8ccf1360"
|
308
|
+
integrity sha512-HEjzp5q+lWSjAgJtSluFDrGGosmwTgKwCXdDQZvhKsRlwv3YdkUEqxNrrjesJd+B9E9zvr1PVPVBvhYZ9msjvQ==
|
302
309
|
dependencies:
|
303
|
-
"@babel/helper-plugin
|
310
|
+
"@babel/helper-create-class-features-plugin" "^7.14.3"
|
311
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
312
|
+
"@babel/plugin-syntax-class-static-block" "^7.12.13"
|
313
|
+
|
314
|
+
"@babel/plugin-proposal-dynamic-import@^7.14.2":
|
315
|
+
version "7.14.2"
|
316
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.2.tgz#01ebabd7c381cff231fa43e302939a9de5be9d9f"
|
317
|
+
integrity sha512-oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA==
|
318
|
+
dependencies:
|
319
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
320
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
|
321
|
+
|
322
|
+
"@babel/plugin-proposal-export-namespace-from@^7.14.2":
|
323
|
+
version "7.14.2"
|
324
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz#62542f94aa9ce8f6dba79eec698af22112253791"
|
325
|
+
integrity sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ==
|
326
|
+
dependencies:
|
327
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
304
328
|
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
305
329
|
|
306
|
-
"@babel/plugin-proposal-json-strings@^7.
|
307
|
-
version "7.
|
308
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.
|
309
|
-
integrity sha512-
|
330
|
+
"@babel/plugin-proposal-json-strings@^7.14.2":
|
331
|
+
version "7.14.2"
|
332
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.2.tgz#830b4e2426a782e8b2878fbfe2cba85b70cbf98c"
|
333
|
+
integrity sha512-w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA==
|
310
334
|
dependencies:
|
311
|
-
"@babel/helper-plugin-utils" "^7.
|
312
|
-
"@babel/plugin-syntax-json-strings" "^7.8.
|
335
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
336
|
+
"@babel/plugin-syntax-json-strings" "^7.8.3"
|
313
337
|
|
314
|
-
"@babel/plugin-proposal-logical-assignment-operators@^7.
|
315
|
-
version "7.
|
316
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.
|
317
|
-
integrity sha512-
|
338
|
+
"@babel/plugin-proposal-logical-assignment-operators@^7.14.2":
|
339
|
+
version "7.14.2"
|
340
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.2.tgz#222348c080a1678e0e74ea63fe76f275882d1fd7"
|
341
|
+
integrity sha512-1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg==
|
318
342
|
dependencies:
|
319
|
-
"@babel/helper-plugin-utils" "^7.
|
343
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
320
344
|
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
321
345
|
|
322
|
-
"@babel/plugin-proposal-nullish-coalescing-operator@^7.
|
323
|
-
version "7.
|
324
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.
|
325
|
-
integrity sha512-
|
346
|
+
"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.2":
|
347
|
+
version "7.14.2"
|
348
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.2.tgz#425b11dc62fc26939a2ab42cbba680bdf5734546"
|
349
|
+
integrity sha512-ebR0zU9OvI2N4qiAC38KIAK75KItpIPTpAtd2r4OZmMFeKbKJpUFLYP2EuDut82+BmYi8sz42B+TfTptJ9iG5Q==
|
326
350
|
dependencies:
|
327
|
-
"@babel/helper-plugin-utils" "^7.
|
328
|
-
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.
|
351
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
352
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
|
329
353
|
|
330
|
-
"@babel/plugin-proposal-numeric-separator@^7.
|
331
|
-
version "7.
|
332
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.
|
333
|
-
integrity sha512-
|
354
|
+
"@babel/plugin-proposal-numeric-separator@^7.14.2":
|
355
|
+
version "7.14.2"
|
356
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz#82b4cc06571143faf50626104b335dd71baa4f9e"
|
357
|
+
integrity sha512-DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg==
|
334
358
|
dependencies:
|
335
|
-
"@babel/helper-plugin-utils" "^7.
|
359
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
336
360
|
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
337
361
|
|
338
|
-
"@babel/plugin-proposal-object-rest-spread@^7.
|
339
|
-
version "7.
|
340
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.
|
341
|
-
integrity sha512-
|
362
|
+
"@babel/plugin-proposal-object-rest-spread@^7.14.2":
|
363
|
+
version "7.14.2"
|
364
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.2.tgz#e17d418f81cc103fedd4ce037e181c8056225abc"
|
365
|
+
integrity sha512-hBIQFxwZi8GIp934+nj5uV31mqclC1aYDhctDu5khTi9PCCUOczyy0b34W0oE9U/eJXiqQaKyVsmjeagOaSlbw==
|
342
366
|
dependencies:
|
343
|
-
"@babel/
|
344
|
-
"@babel/
|
345
|
-
"@babel/plugin-
|
367
|
+
"@babel/compat-data" "^7.14.0"
|
368
|
+
"@babel/helper-compilation-targets" "^7.13.16"
|
369
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
370
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
|
371
|
+
"@babel/plugin-transform-parameters" "^7.14.2"
|
346
372
|
|
347
|
-
"@babel/plugin-proposal-optional-catch-binding@^7.
|
348
|
-
version "7.
|
349
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.
|
350
|
-
integrity sha512-
|
373
|
+
"@babel/plugin-proposal-optional-catch-binding@^7.14.2":
|
374
|
+
version "7.14.2"
|
375
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.2.tgz#150d4e58e525b16a9a1431bd5326c4eed870d717"
|
376
|
+
integrity sha512-XtkJsmJtBaUbOxZsNk0Fvrv8eiqgneug0A6aqLFZ4TSkar2L5dSXWcnUKHgmjJt49pyB/6ZHvkr3dPgl9MOWRQ==
|
351
377
|
dependencies:
|
352
|
-
"@babel/helper-plugin-utils" "^7.
|
353
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.8.
|
378
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
379
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
|
354
380
|
|
355
|
-
"@babel/plugin-proposal-optional-chaining@^7.12.
|
356
|
-
version "7.
|
357
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.
|
358
|
-
integrity sha512-
|
381
|
+
"@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.14.2":
|
382
|
+
version "7.14.2"
|
383
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.2.tgz#df8171a8b9c43ebf4c1dabe6311b432d83e1b34e"
|
384
|
+
integrity sha512-qQByMRPwMZJainfig10BoaDldx/+VDtNcrA7qdNaEOAj6VXud+gfrkA8j4CRAU5HjnWREXqIpSpH30qZX1xivA==
|
359
385
|
dependencies:
|
360
|
-
"@babel/helper-plugin-utils" "^7.
|
386
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
361
387
|
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
|
362
|
-
"@babel/plugin-syntax-optional-chaining" "^7.8.
|
388
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
|
363
389
|
|
364
|
-
"@babel/plugin-proposal-private-methods@^7.
|
365
|
-
version "7.
|
366
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.
|
367
|
-
integrity sha512-
|
390
|
+
"@babel/plugin-proposal-private-methods@^7.13.0":
|
391
|
+
version "7.13.0"
|
392
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787"
|
393
|
+
integrity sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==
|
368
394
|
dependencies:
|
369
|
-
"@babel/helper-create-class-features-plugin" "^7.
|
370
|
-
"@babel/helper-plugin-utils" "^7.
|
395
|
+
"@babel/helper-create-class-features-plugin" "^7.13.0"
|
396
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
371
397
|
|
372
|
-
"@babel/plugin-proposal-
|
373
|
-
version "7.
|
374
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
375
|
-
integrity sha512-
|
398
|
+
"@babel/plugin-proposal-private-property-in-object@^7.14.0":
|
399
|
+
version "7.14.0"
|
400
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz#b1a1f2030586b9d3489cc26179d2eb5883277636"
|
401
|
+
integrity sha512-59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg==
|
376
402
|
dependencies:
|
377
|
-
"@babel/helper-
|
378
|
-
"@babel/helper-plugin
|
403
|
+
"@babel/helper-annotate-as-pure" "^7.12.13"
|
404
|
+
"@babel/helper-create-class-features-plugin" "^7.14.0"
|
405
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
406
|
+
"@babel/plugin-syntax-private-property-in-object" "^7.14.0"
|
407
|
+
|
408
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
|
409
|
+
version "7.12.13"
|
410
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba"
|
411
|
+
integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==
|
412
|
+
dependencies:
|
413
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.13"
|
414
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
379
415
|
|
380
|
-
"@babel/plugin-syntax-async-generators@^7.8.
|
416
|
+
"@babel/plugin-syntax-async-generators@^7.8.4":
|
381
417
|
version "7.8.4"
|
382
418
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
|
383
419
|
integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
|
384
420
|
dependencies:
|
385
421
|
"@babel/helper-plugin-utils" "^7.8.0"
|
386
422
|
|
387
|
-
"@babel/plugin-syntax-class-properties@^7.12.
|
388
|
-
version "7.12.
|
389
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.
|
390
|
-
integrity sha512-
|
423
|
+
"@babel/plugin-syntax-class-properties@^7.12.13":
|
424
|
+
version "7.12.13"
|
425
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
|
426
|
+
integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
|
391
427
|
dependencies:
|
392
|
-
"@babel/helper-plugin-utils" "^7.
|
428
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
393
429
|
|
394
|
-
"@babel/plugin-syntax-
|
430
|
+
"@babel/plugin-syntax-class-static-block@^7.12.13":
|
431
|
+
version "7.12.13"
|
432
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz#8e3d674b0613e67975ceac2776c97b60cafc5c9c"
|
433
|
+
integrity sha512-ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A==
|
434
|
+
dependencies:
|
435
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
436
|
+
|
437
|
+
"@babel/plugin-syntax-dynamic-import@^7.8.3":
|
395
438
|
version "7.8.3"
|
396
439
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
|
397
440
|
integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
|
@@ -405,7 +448,7 @@
|
|
405
448
|
dependencies:
|
406
449
|
"@babel/helper-plugin-utils" "^7.8.3"
|
407
450
|
|
408
|
-
"@babel/plugin-syntax-json-strings@^7.8.
|
451
|
+
"@babel/plugin-syntax-json-strings@^7.8.3":
|
409
452
|
version "7.8.3"
|
410
453
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
|
411
454
|
integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
|
@@ -419,7 +462,7 @@
|
|
419
462
|
dependencies:
|
420
463
|
"@babel/helper-plugin-utils" "^7.10.4"
|
421
464
|
|
422
|
-
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.
|
465
|
+
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
|
423
466
|
version "7.8.3"
|
424
467
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
|
425
468
|
integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
|
@@ -433,356 +476,369 @@
|
|
433
476
|
dependencies:
|
434
477
|
"@babel/helper-plugin-utils" "^7.10.4"
|
435
478
|
|
436
|
-
"@babel/plugin-syntax-object-rest-spread@^7.8.
|
479
|
+
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
|
437
480
|
version "7.8.3"
|
438
481
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
|
439
482
|
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
|
440
483
|
dependencies:
|
441
484
|
"@babel/helper-plugin-utils" "^7.8.0"
|
442
485
|
|
443
|
-
"@babel/plugin-syntax-optional-catch-binding@^7.8.
|
486
|
+
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
|
444
487
|
version "7.8.3"
|
445
488
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
|
446
489
|
integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
|
447
490
|
dependencies:
|
448
491
|
"@babel/helper-plugin-utils" "^7.8.0"
|
449
492
|
|
450
|
-
"@babel/plugin-syntax-optional-chaining@^7.8.
|
493
|
+
"@babel/plugin-syntax-optional-chaining@^7.8.3":
|
451
494
|
version "7.8.3"
|
452
495
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
|
453
496
|
integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
|
454
497
|
dependencies:
|
455
498
|
"@babel/helper-plugin-utils" "^7.8.0"
|
456
499
|
|
457
|
-
"@babel/plugin-syntax-
|
458
|
-
version "7.
|
459
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
460
|
-
integrity sha512-
|
500
|
+
"@babel/plugin-syntax-private-property-in-object@^7.14.0":
|
501
|
+
version "7.14.0"
|
502
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz#762a4babec61176fec6c88480dec40372b140c0b"
|
503
|
+
integrity sha512-bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w==
|
461
504
|
dependencies:
|
462
|
-
"@babel/helper-plugin-utils" "^7.
|
505
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
463
506
|
|
464
|
-
"@babel/plugin-
|
465
|
-
version "7.12.
|
466
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
467
|
-
integrity sha512-
|
507
|
+
"@babel/plugin-syntax-top-level-await@^7.12.13":
|
508
|
+
version "7.12.13"
|
509
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178"
|
510
|
+
integrity sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==
|
468
511
|
dependencies:
|
469
|
-
"@babel/helper-plugin-utils" "^7.
|
512
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
470
513
|
|
471
|
-
"@babel/plugin-transform-
|
472
|
-
version "7.
|
473
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
474
|
-
integrity sha512-
|
514
|
+
"@babel/plugin-transform-arrow-functions@^7.13.0":
|
515
|
+
version "7.13.0"
|
516
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae"
|
517
|
+
integrity sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==
|
475
518
|
dependencies:
|
476
|
-
"@babel/helper-
|
477
|
-
"@babel/helper-plugin-utils" "^7.10.4"
|
478
|
-
"@babel/helper-remap-async-to-generator" "^7.12.1"
|
519
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
479
520
|
|
480
|
-
"@babel/plugin-transform-
|
481
|
-
version "7.
|
482
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
483
|
-
integrity sha512-
|
521
|
+
"@babel/plugin-transform-async-to-generator@^7.13.0":
|
522
|
+
version "7.13.0"
|
523
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f"
|
524
|
+
integrity sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==
|
484
525
|
dependencies:
|
485
|
-
"@babel/helper-
|
526
|
+
"@babel/helper-module-imports" "^7.12.13"
|
527
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
528
|
+
"@babel/helper-remap-async-to-generator" "^7.13.0"
|
486
529
|
|
487
|
-
"@babel/plugin-transform-block-
|
488
|
-
version "7.12.
|
489
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-
|
490
|
-
integrity sha512-
|
530
|
+
"@babel/plugin-transform-block-scoped-functions@^7.12.13":
|
531
|
+
version "7.12.13"
|
532
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4"
|
533
|
+
integrity sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==
|
491
534
|
dependencies:
|
492
|
-
"@babel/helper-plugin-utils" "^7.
|
535
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
493
536
|
|
494
|
-
"@babel/plugin-transform-
|
495
|
-
version "7.
|
496
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
497
|
-
integrity sha512
|
537
|
+
"@babel/plugin-transform-block-scoping@^7.14.2":
|
538
|
+
version "7.14.2"
|
539
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.2.tgz#761cb12ab5a88d640ad4af4aa81f820e6b5fdf5c"
|
540
|
+
integrity sha512-neZZcP19NugZZqNwMTH+KoBjx5WyvESPSIOQb4JHpfd+zPfqcH65RMu5xJju5+6q/Y2VzYrleQTr+b6METyyxg==
|
498
541
|
dependencies:
|
499
|
-
"@babel/helper-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
542
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
543
|
+
|
544
|
+
"@babel/plugin-transform-classes@^7.14.2":
|
545
|
+
version "7.14.2"
|
546
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.2.tgz#3f1196c5709f064c252ad056207d87b7aeb2d03d"
|
547
|
+
integrity sha512-7oafAVcucHquA/VZCsXv/gmuiHeYd64UJyyTYU+MPfNu0KeNlxw06IeENBO8bJjXVbolu+j1MM5aKQtH1OMCNg==
|
548
|
+
dependencies:
|
549
|
+
"@babel/helper-annotate-as-pure" "^7.12.13"
|
550
|
+
"@babel/helper-function-name" "^7.14.2"
|
551
|
+
"@babel/helper-optimise-call-expression" "^7.12.13"
|
552
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
553
|
+
"@babel/helper-replace-supers" "^7.13.12"
|
554
|
+
"@babel/helper-split-export-declaration" "^7.12.13"
|
506
555
|
globals "^11.1.0"
|
507
556
|
|
508
|
-
"@babel/plugin-transform-computed-properties@^7.
|
509
|
-
version "7.
|
510
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.
|
511
|
-
integrity sha512-
|
557
|
+
"@babel/plugin-transform-computed-properties@^7.13.0":
|
558
|
+
version "7.13.0"
|
559
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed"
|
560
|
+
integrity sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==
|
512
561
|
dependencies:
|
513
|
-
"@babel/helper-plugin-utils" "^7.
|
562
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
514
563
|
|
515
|
-
"@babel/plugin-transform-destructuring@^7.
|
516
|
-
version "7.
|
517
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
518
|
-
integrity sha512-
|
564
|
+
"@babel/plugin-transform-destructuring@^7.13.17":
|
565
|
+
version "7.13.17"
|
566
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.17.tgz#678d96576638c19d5b36b332504d3fd6e06dea27"
|
567
|
+
integrity sha512-UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==
|
519
568
|
dependencies:
|
520
|
-
"@babel/helper-plugin-utils" "^7.
|
569
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
521
570
|
|
522
|
-
"@babel/plugin-transform-dotall-regex@^7.12.
|
523
|
-
version "7.12.
|
524
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.
|
525
|
-
integrity sha512-
|
571
|
+
"@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4":
|
572
|
+
version "7.12.13"
|
573
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad"
|
574
|
+
integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==
|
526
575
|
dependencies:
|
527
|
-
"@babel/helper-create-regexp-features-plugin" "^7.12.
|
528
|
-
"@babel/helper-plugin-utils" "^7.
|
576
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.13"
|
577
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
529
578
|
|
530
|
-
"@babel/plugin-transform-duplicate-keys@^7.12.
|
531
|
-
version "7.12.
|
532
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.
|
533
|
-
integrity sha512-
|
579
|
+
"@babel/plugin-transform-duplicate-keys@^7.12.13":
|
580
|
+
version "7.12.13"
|
581
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de"
|
582
|
+
integrity sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==
|
534
583
|
dependencies:
|
535
|
-
"@babel/helper-plugin-utils" "^7.
|
584
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
536
585
|
|
537
|
-
"@babel/plugin-transform-exponentiation-operator@^7.12.
|
538
|
-
version "7.12.
|
539
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.
|
540
|
-
integrity sha512-
|
586
|
+
"@babel/plugin-transform-exponentiation-operator@^7.12.13":
|
587
|
+
version "7.12.13"
|
588
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1"
|
589
|
+
integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==
|
541
590
|
dependencies:
|
542
|
-
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.
|
543
|
-
"@babel/helper-plugin-utils" "^7.
|
591
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13"
|
592
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
544
593
|
|
545
|
-
"@babel/plugin-transform-for-of@^7.
|
546
|
-
version "7.
|
547
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
548
|
-
integrity sha512-
|
594
|
+
"@babel/plugin-transform-for-of@^7.13.0":
|
595
|
+
version "7.13.0"
|
596
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062"
|
597
|
+
integrity sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==
|
549
598
|
dependencies:
|
550
|
-
"@babel/helper-plugin-utils" "^7.
|
599
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
551
600
|
|
552
|
-
"@babel/plugin-transform-function-name@^7.12.
|
553
|
-
version "7.12.
|
554
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.
|
555
|
-
integrity sha512-
|
601
|
+
"@babel/plugin-transform-function-name@^7.12.13":
|
602
|
+
version "7.12.13"
|
603
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051"
|
604
|
+
integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==
|
556
605
|
dependencies:
|
557
|
-
"@babel/helper-function-name" "^7.
|
558
|
-
"@babel/helper-plugin-utils" "^7.
|
606
|
+
"@babel/helper-function-name" "^7.12.13"
|
607
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
559
608
|
|
560
|
-
"@babel/plugin-transform-literals@^7.12.
|
561
|
-
version "7.12.
|
562
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.
|
563
|
-
integrity sha512
|
609
|
+
"@babel/plugin-transform-literals@^7.12.13":
|
610
|
+
version "7.12.13"
|
611
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9"
|
612
|
+
integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==
|
564
613
|
dependencies:
|
565
|
-
"@babel/helper-plugin-utils" "^7.
|
614
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
566
615
|
|
567
|
-
"@babel/plugin-transform-member-expression-literals@^7.12.
|
568
|
-
version "7.12.
|
569
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.
|
570
|
-
integrity sha512-
|
616
|
+
"@babel/plugin-transform-member-expression-literals@^7.12.13":
|
617
|
+
version "7.12.13"
|
618
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40"
|
619
|
+
integrity sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==
|
571
620
|
dependencies:
|
572
|
-
"@babel/helper-plugin-utils" "^7.
|
621
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
573
622
|
|
574
|
-
"@babel/plugin-transform-modules-amd@^7.
|
575
|
-
version "7.
|
576
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
|
577
|
-
integrity sha512-
|
623
|
+
"@babel/plugin-transform-modules-amd@^7.14.2":
|
624
|
+
version "7.14.2"
|
625
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.2.tgz#6622806fe1a7c07a1388444222ef9535f2ca17b0"
|
626
|
+
integrity sha512-hPC6XBswt8P3G2D1tSV2HzdKvkqOpmbyoy+g73JG0qlF/qx2y3KaMmXb1fLrpmWGLZYA0ojCvaHdzFWjlmV+Pw==
|
578
627
|
dependencies:
|
579
|
-
"@babel/helper-module-transforms" "^7.
|
580
|
-
"@babel/helper-plugin-utils" "^7.
|
628
|
+
"@babel/helper-module-transforms" "^7.14.2"
|
629
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
581
630
|
babel-plugin-dynamic-import-node "^2.3.3"
|
582
631
|
|
583
|
-
"@babel/plugin-transform-modules-commonjs@^7.
|
584
|
-
version "7.
|
585
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
586
|
-
integrity sha512-
|
632
|
+
"@babel/plugin-transform-modules-commonjs@^7.14.0":
|
633
|
+
version "7.14.0"
|
634
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz#52bc199cb581e0992edba0f0f80356467587f161"
|
635
|
+
integrity sha512-EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==
|
587
636
|
dependencies:
|
588
|
-
"@babel/helper-module-transforms" "^7.
|
589
|
-
"@babel/helper-plugin-utils" "^7.
|
590
|
-
"@babel/helper-simple-access" "^7.12
|
637
|
+
"@babel/helper-module-transforms" "^7.14.0"
|
638
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
639
|
+
"@babel/helper-simple-access" "^7.13.12"
|
591
640
|
babel-plugin-dynamic-import-node "^2.3.3"
|
592
641
|
|
593
|
-
"@babel/plugin-transform-modules-systemjs@^7.
|
594
|
-
version "7.
|
595
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
596
|
-
integrity sha512-
|
642
|
+
"@babel/plugin-transform-modules-systemjs@^7.13.8":
|
643
|
+
version "7.13.8"
|
644
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3"
|
645
|
+
integrity sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==
|
597
646
|
dependencies:
|
598
|
-
"@babel/helper-hoist-variables" "^7.
|
599
|
-
"@babel/helper-module-transforms" "^7.
|
600
|
-
"@babel/helper-plugin-utils" "^7.
|
601
|
-
"@babel/helper-validator-identifier" "^7.
|
647
|
+
"@babel/helper-hoist-variables" "^7.13.0"
|
648
|
+
"@babel/helper-module-transforms" "^7.13.0"
|
649
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
650
|
+
"@babel/helper-validator-identifier" "^7.12.11"
|
602
651
|
babel-plugin-dynamic-import-node "^2.3.3"
|
603
652
|
|
604
|
-
"@babel/plugin-transform-modules-umd@^7.
|
605
|
-
version "7.
|
606
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
|
607
|
-
integrity sha512-
|
653
|
+
"@babel/plugin-transform-modules-umd@^7.14.0":
|
654
|
+
version "7.14.0"
|
655
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz#2f8179d1bbc9263665ce4a65f305526b2ea8ac34"
|
656
|
+
integrity sha512-nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==
|
608
657
|
dependencies:
|
609
|
-
"@babel/helper-module-transforms" "^7.
|
610
|
-
"@babel/helper-plugin-utils" "^7.
|
658
|
+
"@babel/helper-module-transforms" "^7.14.0"
|
659
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
611
660
|
|
612
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.12.
|
613
|
-
version "7.12.
|
614
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.
|
615
|
-
integrity sha512-
|
661
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.12.13":
|
662
|
+
version "7.12.13"
|
663
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9"
|
664
|
+
integrity sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==
|
616
665
|
dependencies:
|
617
|
-
"@babel/helper-create-regexp-features-plugin" "^7.12.
|
666
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.13"
|
618
667
|
|
619
|
-
"@babel/plugin-transform-new-target@^7.12.
|
620
|
-
version "7.12.
|
621
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.
|
622
|
-
integrity sha512
|
668
|
+
"@babel/plugin-transform-new-target@^7.12.13":
|
669
|
+
version "7.12.13"
|
670
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c"
|
671
|
+
integrity sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==
|
623
672
|
dependencies:
|
624
|
-
"@babel/helper-plugin-utils" "^7.
|
673
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
625
674
|
|
626
|
-
"@babel/plugin-transform-object-super@^7.12.
|
627
|
-
version "7.12.
|
628
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.
|
629
|
-
integrity sha512-
|
675
|
+
"@babel/plugin-transform-object-super@^7.12.13":
|
676
|
+
version "7.12.13"
|
677
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7"
|
678
|
+
integrity sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==
|
630
679
|
dependencies:
|
631
|
-
"@babel/helper-plugin-utils" "^7.
|
632
|
-
"@babel/helper-replace-supers" "^7.12.
|
680
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
681
|
+
"@babel/helper-replace-supers" "^7.12.13"
|
633
682
|
|
634
|
-
"@babel/plugin-transform-parameters@^7.
|
635
|
-
version "7.
|
636
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
|
637
|
-
integrity sha512-
|
683
|
+
"@babel/plugin-transform-parameters@^7.14.2":
|
684
|
+
version "7.14.2"
|
685
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.2.tgz#e4290f72e0e9e831000d066427c4667098decc31"
|
686
|
+
integrity sha512-NxoVmA3APNCC1JdMXkdYXuQS+EMdqy0vIwyDHeKHiJKRxmp1qGSdb0JLEIoPRhkx6H/8Qi3RJ3uqOCYw8giy9A==
|
638
687
|
dependencies:
|
639
|
-
"@babel/helper-plugin-utils" "^7.
|
688
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
640
689
|
|
641
|
-
"@babel/plugin-transform-property-literals@^7.12.
|
642
|
-
version "7.12.
|
643
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.
|
644
|
-
integrity sha512-
|
690
|
+
"@babel/plugin-transform-property-literals@^7.12.13":
|
691
|
+
version "7.12.13"
|
692
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81"
|
693
|
+
integrity sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==
|
645
694
|
dependencies:
|
646
|
-
"@babel/helper-plugin-utils" "^7.
|
695
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
647
696
|
|
648
|
-
"@babel/plugin-transform-regenerator@^7.
|
649
|
-
version "7.
|
650
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.
|
651
|
-
integrity sha512-
|
697
|
+
"@babel/plugin-transform-regenerator@^7.13.15":
|
698
|
+
version "7.13.15"
|
699
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz#e5eb28945bf8b6563e7f818945f966a8d2997f39"
|
700
|
+
integrity sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ==
|
652
701
|
dependencies:
|
653
702
|
regenerator-transform "^0.14.2"
|
654
703
|
|
655
|
-
"@babel/plugin-transform-reserved-words@^7.12.
|
656
|
-
version "7.12.
|
657
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.
|
658
|
-
integrity sha512-
|
704
|
+
"@babel/plugin-transform-reserved-words@^7.12.13":
|
705
|
+
version "7.12.13"
|
706
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695"
|
707
|
+
integrity sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==
|
659
708
|
dependencies:
|
660
|
-
"@babel/helper-plugin-utils" "^7.
|
709
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
661
710
|
|
662
|
-
"@babel/plugin-transform-shorthand-properties@^7.12.
|
663
|
-
version "7.12.
|
664
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.
|
665
|
-
integrity sha512-
|
711
|
+
"@babel/plugin-transform-shorthand-properties@^7.12.13":
|
712
|
+
version "7.12.13"
|
713
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad"
|
714
|
+
integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==
|
666
715
|
dependencies:
|
667
|
-
"@babel/helper-plugin-utils" "^7.
|
716
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
668
717
|
|
669
|
-
"@babel/plugin-transform-spread@^7.
|
670
|
-
version "7.
|
671
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.
|
672
|
-
integrity sha512-
|
718
|
+
"@babel/plugin-transform-spread@^7.13.0":
|
719
|
+
version "7.13.0"
|
720
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd"
|
721
|
+
integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==
|
673
722
|
dependencies:
|
674
|
-
"@babel/helper-plugin-utils" "^7.
|
723
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
675
724
|
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
|
676
725
|
|
677
|
-
"@babel/plugin-transform-sticky-regex@^7.12.
|
678
|
-
version "7.12.
|
679
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.
|
680
|
-
integrity sha512-
|
726
|
+
"@babel/plugin-transform-sticky-regex@^7.12.13":
|
727
|
+
version "7.12.13"
|
728
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f"
|
729
|
+
integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==
|
681
730
|
dependencies:
|
682
|
-
"@babel/helper-plugin-utils" "^7.
|
731
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
683
732
|
|
684
|
-
"@babel/plugin-transform-template-literals@^7.
|
685
|
-
version "7.
|
686
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.
|
687
|
-
integrity sha512-
|
733
|
+
"@babel/plugin-transform-template-literals@^7.13.0":
|
734
|
+
version "7.13.0"
|
735
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d"
|
736
|
+
integrity sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==
|
688
737
|
dependencies:
|
689
|
-
"@babel/helper-plugin-utils" "^7.
|
738
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
690
739
|
|
691
|
-
"@babel/plugin-transform-typeof-symbol@^7.12.
|
692
|
-
version "7.12.
|
693
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.
|
694
|
-
integrity sha512-
|
740
|
+
"@babel/plugin-transform-typeof-symbol@^7.12.13":
|
741
|
+
version "7.12.13"
|
742
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f"
|
743
|
+
integrity sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==
|
695
744
|
dependencies:
|
696
|
-
"@babel/helper-plugin-utils" "^7.
|
745
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
697
746
|
|
698
|
-
"@babel/plugin-transform-unicode-escapes@^7.12.
|
699
|
-
version "7.12.
|
700
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.
|
701
|
-
integrity sha512-
|
747
|
+
"@babel/plugin-transform-unicode-escapes@^7.12.13":
|
748
|
+
version "7.12.13"
|
749
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74"
|
750
|
+
integrity sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==
|
702
751
|
dependencies:
|
703
|
-
"@babel/helper-plugin-utils" "^7.
|
752
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
704
753
|
|
705
|
-
"@babel/plugin-transform-unicode-regex@^7.12.
|
706
|
-
version "7.12.
|
707
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.
|
708
|
-
integrity sha512-
|
754
|
+
"@babel/plugin-transform-unicode-regex@^7.12.13":
|
755
|
+
version "7.12.13"
|
756
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac"
|
757
|
+
integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==
|
709
758
|
dependencies:
|
710
|
-
"@babel/helper-create-regexp-features-plugin" "^7.12.
|
711
|
-
"@babel/helper-plugin-utils" "^7.
|
759
|
+
"@babel/helper-create-regexp-features-plugin" "^7.12.13"
|
760
|
+
"@babel/helper-plugin-utils" "^7.12.13"
|
712
761
|
|
713
762
|
"@babel/preset-env@^7.6.2":
|
714
|
-
version "7.
|
715
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.
|
716
|
-
integrity sha512-
|
717
|
-
dependencies:
|
718
|
-
"@babel/compat-data" "^7.
|
719
|
-
"@babel/helper-compilation-targets" "^7.
|
720
|
-
"@babel/helper-
|
721
|
-
"@babel/helper-
|
722
|
-
"@babel/
|
723
|
-
"@babel/plugin-proposal-async-generator-functions" "^7.
|
724
|
-
"@babel/plugin-proposal-class-properties" "^7.
|
725
|
-
"@babel/plugin-proposal-
|
726
|
-
"@babel/plugin-proposal-
|
727
|
-
"@babel/plugin-proposal-
|
728
|
-
"@babel/plugin-proposal-
|
729
|
-
"@babel/plugin-proposal-
|
730
|
-
"@babel/plugin-proposal-
|
731
|
-
"@babel/plugin-proposal-
|
732
|
-
"@babel/plugin-proposal-
|
733
|
-
"@babel/plugin-proposal-optional-
|
734
|
-
"@babel/plugin-proposal-
|
735
|
-
"@babel/plugin-proposal-
|
736
|
-
"@babel/plugin-
|
737
|
-
"@babel/plugin-
|
738
|
-
"@babel/plugin-syntax-
|
763
|
+
version "7.14.2"
|
764
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.2.tgz#e80612965da73579c84ad2f963c2359c71524ed5"
|
765
|
+
integrity sha512-7dD7lVT8GMrE73v4lvDEb85cgcQhdES91BSD7jS/xjC6QY8PnRhux35ac+GCpbiRhp8crexBvZZqnaL6VrY8TQ==
|
766
|
+
dependencies:
|
767
|
+
"@babel/compat-data" "^7.14.0"
|
768
|
+
"@babel/helper-compilation-targets" "^7.13.16"
|
769
|
+
"@babel/helper-plugin-utils" "^7.13.0"
|
770
|
+
"@babel/helper-validator-option" "^7.12.17"
|
771
|
+
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12"
|
772
|
+
"@babel/plugin-proposal-async-generator-functions" "^7.14.2"
|
773
|
+
"@babel/plugin-proposal-class-properties" "^7.13.0"
|
774
|
+
"@babel/plugin-proposal-class-static-block" "^7.13.11"
|
775
|
+
"@babel/plugin-proposal-dynamic-import" "^7.14.2"
|
776
|
+
"@babel/plugin-proposal-export-namespace-from" "^7.14.2"
|
777
|
+
"@babel/plugin-proposal-json-strings" "^7.14.2"
|
778
|
+
"@babel/plugin-proposal-logical-assignment-operators" "^7.14.2"
|
779
|
+
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.2"
|
780
|
+
"@babel/plugin-proposal-numeric-separator" "^7.14.2"
|
781
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.14.2"
|
782
|
+
"@babel/plugin-proposal-optional-catch-binding" "^7.14.2"
|
783
|
+
"@babel/plugin-proposal-optional-chaining" "^7.14.2"
|
784
|
+
"@babel/plugin-proposal-private-methods" "^7.13.0"
|
785
|
+
"@babel/plugin-proposal-private-property-in-object" "^7.14.0"
|
786
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.12.13"
|
787
|
+
"@babel/plugin-syntax-async-generators" "^7.8.4"
|
788
|
+
"@babel/plugin-syntax-class-properties" "^7.12.13"
|
789
|
+
"@babel/plugin-syntax-class-static-block" "^7.12.13"
|
790
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
|
739
791
|
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
|
740
|
-
"@babel/plugin-syntax-json-strings" "^7.8.
|
792
|
+
"@babel/plugin-syntax-json-strings" "^7.8.3"
|
741
793
|
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
|
742
|
-
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.
|
794
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
|
743
795
|
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
|
744
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.8.
|
745
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.8.
|
746
|
-
"@babel/plugin-syntax-optional-chaining" "^7.8.
|
747
|
-
"@babel/plugin-syntax-
|
748
|
-
"@babel/plugin-
|
749
|
-
"@babel/plugin-transform-
|
750
|
-
"@babel/plugin-transform-
|
751
|
-
"@babel/plugin-transform-block-
|
752
|
-
"@babel/plugin-transform-
|
753
|
-
"@babel/plugin-transform-
|
754
|
-
"@babel/plugin-transform-
|
755
|
-
"@babel/plugin-transform-
|
756
|
-
"@babel/plugin-transform-
|
757
|
-
"@babel/plugin-transform-
|
758
|
-
"@babel/plugin-transform-
|
759
|
-
"@babel/plugin-transform-
|
760
|
-
"@babel/plugin-transform-
|
761
|
-
"@babel/plugin-transform-
|
762
|
-
"@babel/plugin-transform-
|
763
|
-
"@babel/plugin-transform-modules-
|
764
|
-
"@babel/plugin-transform-modules-
|
765
|
-
"@babel/plugin-transform-modules-
|
766
|
-
"@babel/plugin-transform-
|
767
|
-
"@babel/plugin-transform-
|
768
|
-
"@babel/plugin-transform-
|
769
|
-
"@babel/plugin-transform-
|
770
|
-
"@babel/plugin-transform-
|
771
|
-
"@babel/plugin-transform-
|
772
|
-
"@babel/plugin-transform-
|
773
|
-
"@babel/plugin-transform-
|
774
|
-
"@babel/plugin-transform-
|
775
|
-
"@babel/plugin-transform-
|
776
|
-
"@babel/plugin-transform-
|
777
|
-
"@babel/plugin-transform-
|
778
|
-
"@babel/plugin-transform-
|
779
|
-
"@babel/plugin-transform-unicode-
|
780
|
-
"@babel/
|
781
|
-
"@babel/
|
782
|
-
|
783
|
-
|
796
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
|
797
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
|
798
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
|
799
|
+
"@babel/plugin-syntax-private-property-in-object" "^7.14.0"
|
800
|
+
"@babel/plugin-syntax-top-level-await" "^7.12.13"
|
801
|
+
"@babel/plugin-transform-arrow-functions" "^7.13.0"
|
802
|
+
"@babel/plugin-transform-async-to-generator" "^7.13.0"
|
803
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.12.13"
|
804
|
+
"@babel/plugin-transform-block-scoping" "^7.14.2"
|
805
|
+
"@babel/plugin-transform-classes" "^7.14.2"
|
806
|
+
"@babel/plugin-transform-computed-properties" "^7.13.0"
|
807
|
+
"@babel/plugin-transform-destructuring" "^7.13.17"
|
808
|
+
"@babel/plugin-transform-dotall-regex" "^7.12.13"
|
809
|
+
"@babel/plugin-transform-duplicate-keys" "^7.12.13"
|
810
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.12.13"
|
811
|
+
"@babel/plugin-transform-for-of" "^7.13.0"
|
812
|
+
"@babel/plugin-transform-function-name" "^7.12.13"
|
813
|
+
"@babel/plugin-transform-literals" "^7.12.13"
|
814
|
+
"@babel/plugin-transform-member-expression-literals" "^7.12.13"
|
815
|
+
"@babel/plugin-transform-modules-amd" "^7.14.2"
|
816
|
+
"@babel/plugin-transform-modules-commonjs" "^7.14.0"
|
817
|
+
"@babel/plugin-transform-modules-systemjs" "^7.13.8"
|
818
|
+
"@babel/plugin-transform-modules-umd" "^7.14.0"
|
819
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13"
|
820
|
+
"@babel/plugin-transform-new-target" "^7.12.13"
|
821
|
+
"@babel/plugin-transform-object-super" "^7.12.13"
|
822
|
+
"@babel/plugin-transform-parameters" "^7.14.2"
|
823
|
+
"@babel/plugin-transform-property-literals" "^7.12.13"
|
824
|
+
"@babel/plugin-transform-regenerator" "^7.13.15"
|
825
|
+
"@babel/plugin-transform-reserved-words" "^7.12.13"
|
826
|
+
"@babel/plugin-transform-shorthand-properties" "^7.12.13"
|
827
|
+
"@babel/plugin-transform-spread" "^7.13.0"
|
828
|
+
"@babel/plugin-transform-sticky-regex" "^7.12.13"
|
829
|
+
"@babel/plugin-transform-template-literals" "^7.13.0"
|
830
|
+
"@babel/plugin-transform-typeof-symbol" "^7.12.13"
|
831
|
+
"@babel/plugin-transform-unicode-escapes" "^7.12.13"
|
832
|
+
"@babel/plugin-transform-unicode-regex" "^7.12.13"
|
833
|
+
"@babel/preset-modules" "^0.1.4"
|
834
|
+
"@babel/types" "^7.14.2"
|
835
|
+
babel-plugin-polyfill-corejs2 "^0.2.0"
|
836
|
+
babel-plugin-polyfill-corejs3 "^0.2.0"
|
837
|
+
babel-plugin-polyfill-regenerator "^0.2.0"
|
838
|
+
core-js-compat "^3.9.0"
|
839
|
+
semver "^6.3.0"
|
784
840
|
|
785
|
-
"@babel/preset-modules@^0.1.
|
841
|
+
"@babel/preset-modules@^0.1.4":
|
786
842
|
version "0.1.4"
|
787
843
|
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
|
788
844
|
integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
|
@@ -794,54 +850,52 @@
|
|
794
850
|
esutils "^2.0.2"
|
795
851
|
|
796
852
|
"@babel/register@^7.6.2":
|
797
|
-
version "7.
|
798
|
-
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.
|
799
|
-
integrity sha512-
|
853
|
+
version "7.13.16"
|
854
|
+
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.13.16.tgz#ae3ab0b55c8ec28763877383c454f01521d9a53d"
|
855
|
+
integrity sha512-dh2t11ysujTwByQjXNgJ48QZ2zcXKQVdV8s0TbeMI0flmtGWCdTwK9tJiACHXPLmncm5+ktNn/diojA45JE4jg==
|
800
856
|
dependencies:
|
857
|
+
clone-deep "^4.0.1"
|
801
858
|
find-cache-dir "^2.0.0"
|
802
|
-
lodash "^4.17.19"
|
803
859
|
make-dir "^2.1.0"
|
804
860
|
pirates "^4.0.0"
|
805
861
|
source-map-support "^0.5.16"
|
806
862
|
|
807
863
|
"@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7":
|
808
|
-
version "7.
|
809
|
-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.
|
810
|
-
integrity sha512-
|
864
|
+
version "7.14.0"
|
865
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6"
|
866
|
+
integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==
|
811
867
|
dependencies:
|
812
868
|
regenerator-runtime "^0.13.4"
|
813
869
|
|
814
|
-
"@babel/template@^7.
|
815
|
-
version "7.12.
|
816
|
-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.
|
817
|
-
integrity sha512
|
818
|
-
dependencies:
|
819
|
-
"@babel/code-frame" "^7.
|
820
|
-
"@babel/parser" "^7.12.
|
821
|
-
"@babel/types" "^7.12.
|
822
|
-
|
823
|
-
"@babel/traverse@^7.
|
824
|
-
version "7.
|
825
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.
|
826
|
-
integrity sha512-
|
827
|
-
dependencies:
|
828
|
-
"@babel/code-frame" "^7.12.
|
829
|
-
"@babel/generator" "^7.
|
830
|
-
"@babel/helper-function-name" "^7.
|
831
|
-
"@babel/helper-split-export-declaration" "^7.12.
|
832
|
-
"@babel/parser" "^7.
|
833
|
-
"@babel/types" "^7.
|
870
|
+
"@babel/template@^7.12.13":
|
871
|
+
version "7.12.13"
|
872
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
|
873
|
+
integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
|
874
|
+
dependencies:
|
875
|
+
"@babel/code-frame" "^7.12.13"
|
876
|
+
"@babel/parser" "^7.12.13"
|
877
|
+
"@babel/types" "^7.12.13"
|
878
|
+
|
879
|
+
"@babel/traverse@^7.13.0", "@babel/traverse@^7.13.15", "@babel/traverse@^7.14.0", "@babel/traverse@^7.14.2":
|
880
|
+
version "7.14.2"
|
881
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.2.tgz#9201a8d912723a831c2679c7ebbf2fe1416d765b"
|
882
|
+
integrity sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==
|
883
|
+
dependencies:
|
884
|
+
"@babel/code-frame" "^7.12.13"
|
885
|
+
"@babel/generator" "^7.14.2"
|
886
|
+
"@babel/helper-function-name" "^7.14.2"
|
887
|
+
"@babel/helper-split-export-declaration" "^7.12.13"
|
888
|
+
"@babel/parser" "^7.14.2"
|
889
|
+
"@babel/types" "^7.14.2"
|
834
890
|
debug "^4.1.0"
|
835
891
|
globals "^11.1.0"
|
836
|
-
lodash "^4.17.19"
|
837
892
|
|
838
|
-
"@babel/types@^7.
|
839
|
-
version "7.
|
840
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.
|
841
|
-
integrity sha512-
|
893
|
+
"@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.16", "@babel/types@^7.14.0", "@babel/types@^7.14.2", "@babel/types@^7.4.4":
|
894
|
+
version "7.14.2"
|
895
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.2.tgz#4208ae003107ef8a057ea8333e56eb64d2f6a2c3"
|
896
|
+
integrity sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==
|
842
897
|
dependencies:
|
843
|
-
"@babel/helper-validator-identifier" "^7.
|
844
|
-
lodash "^4.17.19"
|
898
|
+
"@babel/helper-validator-identifier" "^7.14.0"
|
845
899
|
to-fast-properties "^2.0.0"
|
846
900
|
|
847
901
|
"@glimmer/interfaces@^0.41.4":
|
@@ -891,9 +945,9 @@
|
|
891
945
|
fastq "^1.6.0"
|
892
946
|
|
893
947
|
"@rails/actioncable@>= 6.0":
|
894
|
-
version "6.1.
|
895
|
-
resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.1.
|
896
|
-
integrity sha512-
|
948
|
+
version "6.1.3"
|
949
|
+
resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.1.3.tgz#c8a67ec4d22ecd6931f7ebd98143fddbc815419a"
|
950
|
+
integrity sha512-m02524MR9cTnUNfGz39Lkx9jVvuL0tle4O7YgvouJ7H83FILxzG1nQ5jw8pAjLAr9XQGu+P1sY4SKE3zyhCNjw==
|
897
951
|
|
898
952
|
"@samverschueren/stream-to-observable@^0.3.0":
|
899
953
|
version "0.3.1"
|
@@ -935,14 +989,14 @@
|
|
935
989
|
"@types/node" "*"
|
936
990
|
|
937
991
|
"@types/minimatch@*":
|
938
|
-
version "3.0.
|
939
|
-
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.
|
940
|
-
integrity sha512-
|
992
|
+
version "3.0.4"
|
993
|
+
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21"
|
994
|
+
integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==
|
941
995
|
|
942
996
|
"@types/node@*":
|
943
|
-
version "
|
944
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-
|
945
|
-
integrity sha512-
|
997
|
+
version "15.3.1"
|
998
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-15.3.1.tgz#23a06b87eedb524016616e886b116b8fdcb180af"
|
999
|
+
integrity sha512-weaeiP4UF4XgF++3rpQhpIJWsCTS4QJw5gvBhQu6cFIxTwyxWIe3xbnrY/o2lTCQ0lsdb8YIUDUvLR4Vuz5rbw==
|
946
1000
|
|
947
1001
|
"@types/unist@^2.0.0", "@types/unist@^2.0.2":
|
948
1002
|
version "2.0.3"
|
@@ -966,7 +1020,7 @@
|
|
966
1020
|
resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
|
967
1021
|
integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==
|
968
1022
|
|
969
|
-
abab@^2.0.3:
|
1023
|
+
abab@^2.0.3, abab@^2.0.5:
|
970
1024
|
version "2.0.5"
|
971
1025
|
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
|
972
1026
|
integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
|
@@ -994,6 +1048,11 @@ acorn@^7.1.1:
|
|
994
1048
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
|
995
1049
|
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
996
1050
|
|
1051
|
+
acorn@^8.1.0:
|
1052
|
+
version "8.2.4"
|
1053
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.2.4.tgz#caba24b08185c3b56e3168e97d15ed17f4d31fd0"
|
1054
|
+
integrity sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg==
|
1055
|
+
|
997
1056
|
aggregate-error@^3.0.0:
|
998
1057
|
version "3.1.0"
|
999
1058
|
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
|
@@ -1038,11 +1097,11 @@ ansi-escapes@^3.0.0:
|
|
1038
1097
|
integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
|
1039
1098
|
|
1040
1099
|
ansi-escapes@^4.2.1:
|
1041
|
-
version "4.3.
|
1042
|
-
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.
|
1043
|
-
integrity sha512-
|
1100
|
+
version "4.3.2"
|
1101
|
+
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
|
1102
|
+
integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
|
1044
1103
|
dependencies:
|
1045
|
-
type-fest "^0.
|
1104
|
+
type-fest "^0.21.3"
|
1046
1105
|
|
1047
1106
|
ansi-regex@^2.0.0:
|
1048
1107
|
version "2.1.1"
|
@@ -1076,7 +1135,7 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
|
1076
1135
|
dependencies:
|
1077
1136
|
color-convert "^1.9.0"
|
1078
1137
|
|
1079
|
-
ansi-styles@^4.1.0:
|
1138
|
+
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
|
1080
1139
|
version "4.3.0"
|
1081
1140
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
1082
1141
|
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
@@ -1089,9 +1148,9 @@ any-observable@^0.3.0:
|
|
1089
1148
|
integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==
|
1090
1149
|
|
1091
1150
|
anymatch@~3.1.1:
|
1092
|
-
version "3.1.
|
1093
|
-
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.
|
1094
|
-
integrity sha512-
|
1151
|
+
version "3.1.2"
|
1152
|
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
|
1153
|
+
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
|
1095
1154
|
dependencies:
|
1096
1155
|
normalize-path "^3.0.0"
|
1097
1156
|
picomatch "^2.0.4"
|
@@ -1103,16 +1162,16 @@ argparse@^1.0.7:
|
|
1103
1162
|
dependencies:
|
1104
1163
|
sprintf-js "~1.0.2"
|
1105
1164
|
|
1165
|
+
argparse@^2.0.1:
|
1166
|
+
version "2.0.1"
|
1167
|
+
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
|
1168
|
+
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
|
1169
|
+
|
1106
1170
|
array-differ@^2.0.3:
|
1107
1171
|
version "2.1.0"
|
1108
1172
|
resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-2.1.0.tgz#4b9c1c3f14b906757082925769e8ab904f4801b1"
|
1109
1173
|
integrity sha512-KbUpJgx909ZscOc/7CLATBFam7P1Z1QRQInvgT0UztM9Q72aGKCunKASAl7WNW0tnPmPyEMeMhdsfWhfmW037w==
|
1110
1174
|
|
1111
|
-
array-filter@^1.0.0:
|
1112
|
-
version "1.0.0"
|
1113
|
-
resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83"
|
1114
|
-
integrity sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=
|
1115
|
-
|
1116
1175
|
array-union@^1.0.1, array-union@^1.0.2:
|
1117
1176
|
version "1.0.2"
|
1118
1177
|
resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
|
@@ -1130,6 +1189,17 @@ array-uniq@^1.0.1:
|
|
1130
1189
|
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
|
1131
1190
|
integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
|
1132
1191
|
|
1192
|
+
array.prototype.filter@^1.0.0:
|
1193
|
+
version "1.0.0"
|
1194
|
+
resolved "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.0.tgz#24d63e38983cdc6bf023a3c574b2f2a3f384c301"
|
1195
|
+
integrity sha512-TfO1gz+tLm+Bswq0FBOXPqAchtCr2Rn48T8dLJoRFl8NoEosjZmzptmuo1X8aZBzZcqsR1W8U761tjACJtngTQ==
|
1196
|
+
dependencies:
|
1197
|
+
call-bind "^1.0.2"
|
1198
|
+
define-properties "^1.1.3"
|
1199
|
+
es-abstract "^1.18.0"
|
1200
|
+
es-array-method-boxes-properly "^1.0.0"
|
1201
|
+
is-string "^1.0.5"
|
1202
|
+
|
1133
1203
|
arrify@^1.0.1:
|
1134
1204
|
version "1.0.1"
|
1135
1205
|
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
@@ -1168,11 +1238,11 @@ asynckit@^0.4.0:
|
|
1168
1238
|
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
|
1169
1239
|
|
1170
1240
|
available-typed-arrays@^1.0.2:
|
1171
|
-
version "1.0.
|
1172
|
-
resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.
|
1173
|
-
integrity sha512-
|
1241
|
+
version "1.0.3"
|
1242
|
+
resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.3.tgz#fb7d02445bfedefad79fad1fe47931163a227198"
|
1243
|
+
integrity sha512-CuPhFULixV/d89POo1UG4GqGbR7dmrefY2ZdmsYakeR4gOSJXoF7tfeaiqMHGOMrlTiJoeEs87fpLsBYmE2BMw==
|
1174
1244
|
dependencies:
|
1175
|
-
array
|
1245
|
+
array.prototype.filter "^1.0.0"
|
1176
1246
|
|
1177
1247
|
aws-sign2@~0.7.0:
|
1178
1248
|
version "0.7.0"
|
@@ -1191,15 +1261,39 @@ babel-plugin-dynamic-import-node@^2.3.3:
|
|
1191
1261
|
dependencies:
|
1192
1262
|
object.assign "^4.1.0"
|
1193
1263
|
|
1264
|
+
babel-plugin-polyfill-corejs2@^0.2.0:
|
1265
|
+
version "0.2.0"
|
1266
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz#686775bf9a5aa757e10520903675e3889caeedc4"
|
1267
|
+
integrity sha512-9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg==
|
1268
|
+
dependencies:
|
1269
|
+
"@babel/compat-data" "^7.13.11"
|
1270
|
+
"@babel/helper-define-polyfill-provider" "^0.2.0"
|
1271
|
+
semver "^6.1.1"
|
1272
|
+
|
1273
|
+
babel-plugin-polyfill-corejs3@^0.2.0:
|
1274
|
+
version "0.2.0"
|
1275
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz#f4b4bb7b19329827df36ff56f6e6d367026cb7a2"
|
1276
|
+
integrity sha512-zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg==
|
1277
|
+
dependencies:
|
1278
|
+
"@babel/helper-define-polyfill-provider" "^0.2.0"
|
1279
|
+
core-js-compat "^3.9.1"
|
1280
|
+
|
1281
|
+
babel-plugin-polyfill-regenerator@^0.2.0:
|
1282
|
+
version "0.2.0"
|
1283
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz#853f5f5716f4691d98c84f8069c7636ea8da7ab8"
|
1284
|
+
integrity sha512-J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg==
|
1285
|
+
dependencies:
|
1286
|
+
"@babel/helper-define-polyfill-provider" "^0.2.0"
|
1287
|
+
|
1194
1288
|
bail@^1.0.0:
|
1195
1289
|
version "1.0.5"
|
1196
1290
|
resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
|
1197
1291
|
integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==
|
1198
1292
|
|
1199
1293
|
balanced-match@^1.0.0:
|
1200
|
-
version "1.0.
|
1201
|
-
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.
|
1202
|
-
integrity
|
1294
|
+
version "1.0.2"
|
1295
|
+
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
1296
|
+
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
|
1203
1297
|
|
1204
1298
|
bcrypt-pbkdf@^1.0.0:
|
1205
1299
|
version "1.0.2"
|
@@ -1238,26 +1332,26 @@ browser-stdout@1.3.1:
|
|
1238
1332
|
resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
|
1239
1333
|
integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
|
1240
1334
|
|
1241
|
-
browserslist@^4.14.5, browserslist@^4.16.
|
1242
|
-
version "4.16.
|
1243
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.
|
1244
|
-
integrity sha512-
|
1335
|
+
browserslist@^4.14.5, browserslist@^4.16.6:
|
1336
|
+
version "4.16.6"
|
1337
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
|
1338
|
+
integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
|
1245
1339
|
dependencies:
|
1246
|
-
caniuse-lite "^1.0.
|
1247
|
-
colorette "^1.2.
|
1248
|
-
electron-to-chromium "^1.3.
|
1340
|
+
caniuse-lite "^1.0.30001219"
|
1341
|
+
colorette "^1.2.2"
|
1342
|
+
electron-to-chromium "^1.3.723"
|
1249
1343
|
escalade "^3.1.1"
|
1250
|
-
node-releases "^1.1.
|
1344
|
+
node-releases "^1.1.71"
|
1251
1345
|
|
1252
1346
|
buffer-from@^1.0.0:
|
1253
1347
|
version "1.1.1"
|
1254
1348
|
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
|
1255
1349
|
integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
|
1256
1350
|
|
1257
|
-
|
1258
|
-
version "
|
1259
|
-
resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-
|
1260
|
-
integrity sha512-
|
1351
|
+
cable_ready@5.0.0-pre0:
|
1352
|
+
version "5.0.0-pre0"
|
1353
|
+
resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-5.0.0-pre0.tgz#eeca1305f83e06ada44d95690c073df084719fef"
|
1354
|
+
integrity sha512-hBeCg2wjfa4PSfNo6uHaVTVgTDi0wPUqBBf/pJpAoEjj94BVVLShGnBIe3n0I/f4FClcOQePd8CXl8p2hDj2bw==
|
1261
1355
|
dependencies:
|
1262
1356
|
morphdom "^2.6.1"
|
1263
1357
|
|
@@ -1293,7 +1387,7 @@ callsites@^3.0.0:
|
|
1293
1387
|
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
|
1294
1388
|
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
|
1295
1389
|
|
1296
|
-
camelcase@5.3.1
|
1390
|
+
camelcase@5.3.1:
|
1297
1391
|
version "5.3.1"
|
1298
1392
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
1299
1393
|
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
@@ -1303,10 +1397,10 @@ camelcase@^6.0.0:
|
|
1303
1397
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
|
1304
1398
|
integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
|
1305
1399
|
|
1306
|
-
caniuse-lite@^1.0.
|
1307
|
-
version "1.0.
|
1308
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1309
|
-
integrity sha512-
|
1400
|
+
caniuse-lite@^1.0.30001219:
|
1401
|
+
version "1.0.30001228"
|
1402
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001228.tgz#bfdc5942cd3326fa51ee0b42fbef4da9d492a7fa"
|
1403
|
+
integrity sha512-QQmLOGJ3DEgokHbMSA8cj2a+geXqmnpyOFT0lhQV6P3/YOJvGDEwoedcwxEQ30gJIwIIunHIicunJ2rzK5gB2A==
|
1310
1404
|
|
1311
1405
|
caseless@~0.12.0:
|
1312
1406
|
version "0.12.0"
|
@@ -1342,9 +1436,9 @@ chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
|
|
1342
1436
|
supports-color "^5.3.0"
|
1343
1437
|
|
1344
1438
|
chalk@^4.0.0, chalk@^4.1.0:
|
1345
|
-
version "4.1.
|
1346
|
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.
|
1347
|
-
integrity sha512-
|
1439
|
+
version "4.1.1"
|
1440
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
|
1441
|
+
integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
|
1348
1442
|
dependencies:
|
1349
1443
|
ansi-styles "^4.1.0"
|
1350
1444
|
supports-color "^7.1.0"
|
@@ -1369,10 +1463,10 @@ chardet@^0.7.0:
|
|
1369
1463
|
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
|
1370
1464
|
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
|
1371
1465
|
|
1372
|
-
chokidar@3.
|
1373
|
-
version "3.
|
1374
|
-
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.
|
1375
|
-
integrity sha512-
|
1466
|
+
chokidar@3.5.1:
|
1467
|
+
version "3.5.1"
|
1468
|
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
|
1469
|
+
integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
|
1376
1470
|
dependencies:
|
1377
1471
|
anymatch "~3.1.1"
|
1378
1472
|
braces "~3.0.2"
|
@@ -1382,7 +1476,7 @@ chokidar@3.4.3:
|
|
1382
1476
|
normalize-path "~3.0.0"
|
1383
1477
|
readdirp "~3.5.0"
|
1384
1478
|
optionalDependencies:
|
1385
|
-
fsevents "~2.1
|
1479
|
+
fsevents "~2.3.1"
|
1386
1480
|
|
1387
1481
|
ci-info@^2.0.0:
|
1388
1482
|
version "2.0.0"
|
@@ -1429,14 +1523,23 @@ cli-width@^3.0.0:
|
|
1429
1523
|
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
|
1430
1524
|
integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
|
1431
1525
|
|
1432
|
-
cliui@^
|
1433
|
-
version "
|
1434
|
-
resolved "https://registry.yarnpkg.com/cliui/-/cliui-
|
1435
|
-
integrity sha512-
|
1526
|
+
cliui@^7.0.2:
|
1527
|
+
version "7.0.4"
|
1528
|
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
|
1529
|
+
integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
|
1436
1530
|
dependencies:
|
1437
|
-
string-width "^
|
1438
|
-
strip-ansi "^
|
1439
|
-
wrap-ansi "^
|
1531
|
+
string-width "^4.2.0"
|
1532
|
+
strip-ansi "^6.0.0"
|
1533
|
+
wrap-ansi "^7.0.0"
|
1534
|
+
|
1535
|
+
clone-deep@^4.0.1:
|
1536
|
+
version "4.0.1"
|
1537
|
+
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
|
1538
|
+
integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
|
1539
|
+
dependencies:
|
1540
|
+
is-plain-object "^2.0.4"
|
1541
|
+
kind-of "^6.0.2"
|
1542
|
+
shallow-clone "^3.0.0"
|
1440
1543
|
|
1441
1544
|
code-point-at@^1.0.0:
|
1442
1545
|
version "1.1.0"
|
@@ -1472,10 +1575,10 @@ color-name@~1.1.4:
|
|
1472
1575
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
1473
1576
|
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
1474
1577
|
|
1475
|
-
colorette@^1.2.
|
1476
|
-
version "1.2.
|
1477
|
-
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.
|
1478
|
-
integrity sha512-
|
1578
|
+
colorette@^1.2.2:
|
1579
|
+
version "1.2.2"
|
1580
|
+
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
|
1581
|
+
integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
|
1479
1582
|
|
1480
1583
|
combined-stream@^1.0.6, combined-stream@~1.0.6:
|
1481
1584
|
version "1.0.8"
|
@@ -1506,12 +1609,12 @@ convert-source-map@^1.7.0:
|
|
1506
1609
|
dependencies:
|
1507
1610
|
safe-buffer "~5.1.1"
|
1508
1611
|
|
1509
|
-
core-js-compat@^3.
|
1510
|
-
version "3.
|
1511
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.
|
1512
|
-
integrity sha512-
|
1612
|
+
core-js-compat@^3.9.0, core-js-compat@^3.9.1:
|
1613
|
+
version "3.12.1"
|
1614
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.12.1.tgz#2c302c4708505fa7072b0adb5156d26f7801a18b"
|
1615
|
+
integrity sha512-i6h5qODpw6EsHAoIdQhKoZdWn+dGBF3dSS8m5tif36RlWvW3A6+yu2S16QHUo3CrkzrnEskMAt9f8FxmY9fhWQ==
|
1513
1616
|
dependencies:
|
1514
|
-
browserslist "^4.16.
|
1617
|
+
browserslist "^4.16.6"
|
1515
1618
|
semver "7.0.0"
|
1516
1619
|
|
1517
1620
|
core-util-is@1.0.2:
|
@@ -1559,7 +1662,7 @@ cssom@~0.3.6:
|
|
1559
1662
|
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
|
1560
1663
|
integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
|
1561
1664
|
|
1562
|
-
cssstyle@^2.
|
1665
|
+
cssstyle@^2.3.0:
|
1563
1666
|
version "2.3.0"
|
1564
1667
|
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
|
1565
1668
|
integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
|
@@ -1592,31 +1695,19 @@ date-fns@^1.27.2:
|
|
1592
1695
|
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
|
1593
1696
|
integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
|
1594
1697
|
|
1595
|
-
debug@4.
|
1596
|
-
version "4.2.0"
|
1597
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1"
|
1598
|
-
integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==
|
1599
|
-
dependencies:
|
1600
|
-
ms "2.1.2"
|
1601
|
-
|
1602
|
-
debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
|
1698
|
+
debug@4.3.1, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
|
1603
1699
|
version "4.3.1"
|
1604
1700
|
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
|
1605
1701
|
integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
|
1606
1702
|
dependencies:
|
1607
1703
|
ms "2.1.2"
|
1608
1704
|
|
1609
|
-
decamelize@^1.2.0:
|
1610
|
-
version "1.2.0"
|
1611
|
-
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
1612
|
-
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
|
1613
|
-
|
1614
1705
|
decamelize@^4.0.0:
|
1615
1706
|
version "4.0.0"
|
1616
1707
|
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
|
1617
1708
|
integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
|
1618
1709
|
|
1619
|
-
decimal.js@^10.2.
|
1710
|
+
decimal.js@^10.2.1:
|
1620
1711
|
version "10.2.1"
|
1621
1712
|
resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3"
|
1622
1713
|
integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==
|
@@ -1667,6 +1758,11 @@ diff@4.0.2, diff@^4.0.2:
|
|
1667
1758
|
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
|
1668
1759
|
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
|
1669
1760
|
|
1761
|
+
diff@5.0.0:
|
1762
|
+
version "5.0.0"
|
1763
|
+
resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b"
|
1764
|
+
integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==
|
1765
|
+
|
1670
1766
|
dir-glob@^3.0.1:
|
1671
1767
|
version "3.0.1"
|
1672
1768
|
resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
|
@@ -1711,10 +1807,10 @@ editorconfig@0.15.3:
|
|
1711
1807
|
semver "^5.6.0"
|
1712
1808
|
sigmund "^1.0.1"
|
1713
1809
|
|
1714
|
-
electron-to-chromium@^1.3.
|
1715
|
-
version "1.3.
|
1716
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
1717
|
-
integrity sha512-
|
1810
|
+
electron-to-chromium@^1.3.723:
|
1811
|
+
version "1.3.735"
|
1812
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.735.tgz#fa1a8660f2790662291cb2136f0e446a444cdfdc"
|
1813
|
+
integrity sha512-cp7MWzC3NseUJV2FJFgaiesdrS+A8ZUjX5fLAxdRlcaPDkaPGFplX930S5vf84yqDp4LjuLdKouWuVOTwUfqHQ==
|
1718
1814
|
|
1719
1815
|
elegant-spinner@^1.0.1:
|
1720
1816
|
version "1.0.1"
|
@@ -1745,25 +1841,32 @@ error-ex@^1.3.1:
|
|
1745
1841
|
dependencies:
|
1746
1842
|
is-arrayish "^0.2.1"
|
1747
1843
|
|
1748
|
-
es-abstract@^1.18.0-next.1:
|
1749
|
-
version "1.18.0
|
1750
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0
|
1751
|
-
integrity sha512-
|
1844
|
+
es-abstract@^1.18.0, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2:
|
1845
|
+
version "1.18.0"
|
1846
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4"
|
1847
|
+
integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==
|
1752
1848
|
dependencies:
|
1753
1849
|
call-bind "^1.0.2"
|
1754
1850
|
es-to-primitive "^1.2.1"
|
1755
1851
|
function-bind "^1.1.1"
|
1756
|
-
get-intrinsic "^1.
|
1852
|
+
get-intrinsic "^1.1.1"
|
1757
1853
|
has "^1.0.3"
|
1758
|
-
has-symbols "^1.0.
|
1759
|
-
is-callable "^1.2.
|
1854
|
+
has-symbols "^1.0.2"
|
1855
|
+
is-callable "^1.2.3"
|
1760
1856
|
is-negative-zero "^2.0.1"
|
1761
|
-
is-regex "^1.1.
|
1857
|
+
is-regex "^1.1.2"
|
1858
|
+
is-string "^1.0.5"
|
1762
1859
|
object-inspect "^1.9.0"
|
1763
1860
|
object-keys "^1.1.1"
|
1764
1861
|
object.assign "^4.1.2"
|
1765
|
-
string.prototype.trimend "^1.0.
|
1766
|
-
string.prototype.trimstart "^1.0.
|
1862
|
+
string.prototype.trimend "^1.0.4"
|
1863
|
+
string.prototype.trimstart "^1.0.4"
|
1864
|
+
unbox-primitive "^1.0.0"
|
1865
|
+
|
1866
|
+
es-array-method-boxes-properly@^1.0.0:
|
1867
|
+
version "1.0.0"
|
1868
|
+
resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
|
1869
|
+
integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
|
1767
1870
|
|
1768
1871
|
es-to-primitive@^1.2.1:
|
1769
1872
|
version "1.2.1"
|
@@ -1799,13 +1902,13 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
|
1799
1902
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
1800
1903
|
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
1801
1904
|
|
1802
|
-
escodegen@^
|
1803
|
-
version "
|
1804
|
-
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-
|
1805
|
-
integrity sha512-
|
1905
|
+
escodegen@^2.0.0:
|
1906
|
+
version "2.0.0"
|
1907
|
+
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
|
1908
|
+
integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
|
1806
1909
|
dependencies:
|
1807
1910
|
esprima "^4.0.1"
|
1808
|
-
estraverse "^
|
1911
|
+
estraverse "^5.2.0"
|
1809
1912
|
esutils "^2.0.2"
|
1810
1913
|
optionator "^0.8.1"
|
1811
1914
|
optionalDependencies:
|
@@ -1894,9 +1997,9 @@ esprima@^4.0.0, esprima@^4.0.1:
|
|
1894
1997
|
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
|
1895
1998
|
|
1896
1999
|
esquery@^1.0.1:
|
1897
|
-
version "1.
|
1898
|
-
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.
|
1899
|
-
integrity sha512-
|
2000
|
+
version "1.4.0"
|
2001
|
+
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
|
2002
|
+
integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
|
1900
2003
|
dependencies:
|
1901
2004
|
estraverse "^5.1.0"
|
1902
2005
|
|
@@ -1907,7 +2010,7 @@ esrecurse@^4.3.0:
|
|
1907
2010
|
dependencies:
|
1908
2011
|
estraverse "^5.2.0"
|
1909
2012
|
|
1910
|
-
estraverse@^4.1.1
|
2013
|
+
estraverse@^4.1.1:
|
1911
2014
|
version "4.3.0"
|
1912
2015
|
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
|
1913
2016
|
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
|
@@ -1989,9 +2092,9 @@ fast-levenshtein@~2.0.6:
|
|
1989
2092
|
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
|
1990
2093
|
|
1991
2094
|
fastq@^1.6.0:
|
1992
|
-
version "1.
|
1993
|
-
resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.
|
1994
|
-
integrity sha512-
|
2095
|
+
version "1.11.0"
|
2096
|
+
resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858"
|
2097
|
+
integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==
|
1995
2098
|
dependencies:
|
1996
2099
|
reusify "^1.0.4"
|
1997
2100
|
|
@@ -2126,10 +2229,10 @@ fs.realpath@^1.0.0:
|
|
2126
2229
|
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
2127
2230
|
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
2128
2231
|
|
2129
|
-
fsevents@~2.1
|
2130
|
-
version "2.
|
2131
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.
|
2132
|
-
integrity sha512-
|
2232
|
+
fsevents@~2.3.1:
|
2233
|
+
version "2.3.2"
|
2234
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
|
2235
|
+
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
|
2133
2236
|
|
2134
2237
|
function-bind@^1.1.1:
|
2135
2238
|
version "1.1.1"
|
@@ -2141,20 +2244,20 @@ functional-red-black-tree@^1.0.1:
|
|
2141
2244
|
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
|
2142
2245
|
integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
|
2143
2246
|
|
2144
|
-
gensync@^1.0.0-beta.
|
2247
|
+
gensync@^1.0.0-beta.2:
|
2145
2248
|
version "1.0.0-beta.2"
|
2146
2249
|
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
|
2147
2250
|
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
|
2148
2251
|
|
2149
|
-
get-caller-file@^2.0.
|
2252
|
+
get-caller-file@^2.0.5:
|
2150
2253
|
version "2.0.5"
|
2151
2254
|
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
|
2152
2255
|
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
|
2153
2256
|
|
2154
|
-
get-intrinsic@^1.0.2:
|
2155
|
-
version "1.1.
|
2156
|
-
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.
|
2157
|
-
integrity sha512-
|
2257
|
+
get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
|
2258
|
+
version "1.1.1"
|
2259
|
+
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
|
2260
|
+
integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
|
2158
2261
|
dependencies:
|
2159
2262
|
function-bind "^1.1.1"
|
2160
2263
|
has "^1.0.3"
|
@@ -2192,13 +2295,13 @@ getpass@^0.1.1:
|
|
2192
2295
|
assert-plus "^1.0.0"
|
2193
2296
|
|
2194
2297
|
glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0:
|
2195
|
-
version "5.1.
|
2196
|
-
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.
|
2197
|
-
integrity sha512-
|
2298
|
+
version "5.1.2"
|
2299
|
+
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
|
2300
|
+
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
|
2198
2301
|
dependencies:
|
2199
2302
|
is-glob "^4.0.1"
|
2200
2303
|
|
2201
|
-
glob@7.1.6
|
2304
|
+
glob@7.1.6:
|
2202
2305
|
version "7.1.6"
|
2203
2306
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
|
2204
2307
|
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
|
@@ -2210,6 +2313,18 @@ glob@7.1.6, glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
|
|
2210
2313
|
once "^1.3.0"
|
2211
2314
|
path-is-absolute "^1.0.0"
|
2212
2315
|
|
2316
|
+
glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
|
2317
|
+
version "7.1.7"
|
2318
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
|
2319
|
+
integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
|
2320
|
+
dependencies:
|
2321
|
+
fs.realpath "^1.0.0"
|
2322
|
+
inflight "^1.0.4"
|
2323
|
+
inherits "2"
|
2324
|
+
minimatch "^3.0.4"
|
2325
|
+
once "^1.3.0"
|
2326
|
+
path-is-absolute "^1.0.0"
|
2327
|
+
|
2213
2328
|
globals@^11.1.0:
|
2214
2329
|
version "11.12.0"
|
2215
2330
|
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
@@ -2248,9 +2363,9 @@ globby@^10.0.1:
|
|
2248
2363
|
slash "^3.0.0"
|
2249
2364
|
|
2250
2365
|
graceful-fs@^4.2.2:
|
2251
|
-
version "4.2.
|
2252
|
-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.
|
2253
|
-
integrity sha512-
|
2366
|
+
version "4.2.6"
|
2367
|
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
|
2368
|
+
integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
|
2254
2369
|
|
2255
2370
|
graphql@14.6.0:
|
2256
2371
|
version "14.6.0"
|
@@ -2265,9 +2380,9 @@ growl@1.10.5:
|
|
2265
2380
|
integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
|
2266
2381
|
|
2267
2382
|
handlebars@^4.0.13:
|
2268
|
-
version "4.7.
|
2269
|
-
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.
|
2270
|
-
integrity sha512-
|
2383
|
+
version "4.7.7"
|
2384
|
+
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
|
2385
|
+
integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
|
2271
2386
|
dependencies:
|
2272
2387
|
minimist "^1.2.5"
|
2273
2388
|
neo-async "^2.6.0"
|
@@ -2296,6 +2411,11 @@ has-ansi@^2.0.0:
|
|
2296
2411
|
dependencies:
|
2297
2412
|
ansi-regex "^2.0.0"
|
2298
2413
|
|
2414
|
+
has-bigints@^1.0.1:
|
2415
|
+
version "1.0.1"
|
2416
|
+
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
|
2417
|
+
integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
|
2418
|
+
|
2299
2419
|
has-flag@^1.0.0:
|
2300
2420
|
version "1.0.0"
|
2301
2421
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
|
@@ -2311,10 +2431,10 @@ has-flag@^4.0.0:
|
|
2311
2431
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
2312
2432
|
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
2313
2433
|
|
2314
|
-
has-symbols@^1.0.1:
|
2315
|
-
version "1.0.
|
2316
|
-
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.
|
2317
|
-
integrity sha512-
|
2434
|
+
has-symbols@^1.0.1, has-symbols@^1.0.2:
|
2435
|
+
version "1.0.2"
|
2436
|
+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
|
2437
|
+
integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
|
2318
2438
|
|
2319
2439
|
has@^1.0.3:
|
2320
2440
|
version "1.0.3"
|
@@ -2449,11 +2569,6 @@ inquirer@^7.0.0:
|
|
2449
2569
|
strip-ansi "^6.0.0"
|
2450
2570
|
through "^2.3.6"
|
2451
2571
|
|
2452
|
-
ip-regex@^2.1.0:
|
2453
|
-
version "2.1.0"
|
2454
|
-
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
|
2455
|
-
integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
|
2456
|
-
|
2457
2572
|
is-alphabetical@^1.0.0:
|
2458
2573
|
version "1.0.4"
|
2459
2574
|
resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
|
@@ -2479,6 +2594,11 @@ is-arrayish@^0.2.1:
|
|
2479
2594
|
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
2480
2595
|
integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
|
2481
2596
|
|
2597
|
+
is-bigint@^1.0.1:
|
2598
|
+
version "1.0.2"
|
2599
|
+
resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a"
|
2600
|
+
integrity sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==
|
2601
|
+
|
2482
2602
|
is-binary-path@~2.1.0:
|
2483
2603
|
version "2.1.0"
|
2484
2604
|
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
|
@@ -2486,15 +2606,22 @@ is-binary-path@~2.1.0:
|
|
2486
2606
|
dependencies:
|
2487
2607
|
binary-extensions "^2.0.0"
|
2488
2608
|
|
2609
|
+
is-boolean-object@^1.1.0:
|
2610
|
+
version "1.1.1"
|
2611
|
+
resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8"
|
2612
|
+
integrity sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==
|
2613
|
+
dependencies:
|
2614
|
+
call-bind "^1.0.2"
|
2615
|
+
|
2489
2616
|
is-buffer@^2.0.0:
|
2490
2617
|
version "2.0.5"
|
2491
2618
|
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
|
2492
2619
|
integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
|
2493
2620
|
|
2494
|
-
is-callable@^1.1.4, is-callable@^1.2.
|
2495
|
-
version "1.2.
|
2496
|
-
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.
|
2497
|
-
integrity sha512-
|
2621
|
+
is-callable@^1.1.4, is-callable@^1.2.3:
|
2622
|
+
version "1.2.3"
|
2623
|
+
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e"
|
2624
|
+
integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==
|
2498
2625
|
|
2499
2626
|
is-ci@2.0.0:
|
2500
2627
|
version "2.0.0"
|
@@ -2503,10 +2630,17 @@ is-ci@2.0.0:
|
|
2503
2630
|
dependencies:
|
2504
2631
|
ci-info "^2.0.0"
|
2505
2632
|
|
2633
|
+
is-core-module@^2.2.0:
|
2634
|
+
version "2.4.0"
|
2635
|
+
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1"
|
2636
|
+
integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==
|
2637
|
+
dependencies:
|
2638
|
+
has "^1.0.3"
|
2639
|
+
|
2506
2640
|
is-date-object@^1.0.1:
|
2507
|
-
version "1.0.
|
2508
|
-
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.
|
2509
|
-
integrity sha512
|
2641
|
+
version "1.0.4"
|
2642
|
+
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5"
|
2643
|
+
integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==
|
2510
2644
|
|
2511
2645
|
is-decimal@^1.0.0:
|
2512
2646
|
version "1.0.4"
|
@@ -2541,9 +2675,9 @@ is-fullwidth-code-point@^3.0.0:
|
|
2541
2675
|
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
2542
2676
|
|
2543
2677
|
is-generator-function@^1.0.7:
|
2544
|
-
version "1.0.
|
2545
|
-
resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.
|
2546
|
-
integrity sha512-
|
2678
|
+
version "1.0.9"
|
2679
|
+
resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.9.tgz#e5f82c2323673e7fcad3d12858c83c4039f6399c"
|
2680
|
+
integrity sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==
|
2547
2681
|
|
2548
2682
|
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
|
2549
2683
|
version "4.0.1"
|
@@ -2570,6 +2704,11 @@ is-negative-zero@^2.0.1:
|
|
2570
2704
|
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
|
2571
2705
|
integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
|
2572
2706
|
|
2707
|
+
is-number-object@^1.0.4:
|
2708
|
+
version "1.0.5"
|
2709
|
+
resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb"
|
2710
|
+
integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==
|
2711
|
+
|
2573
2712
|
is-number@^7.0.0:
|
2574
2713
|
version "7.0.0"
|
2575
2714
|
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
|
@@ -2593,31 +2732,39 @@ is-path-cwd@^2.2.0:
|
|
2593
2732
|
integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
|
2594
2733
|
|
2595
2734
|
is-path-inside@^3.0.1:
|
2596
|
-
version "3.0.
|
2597
|
-
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.
|
2598
|
-
integrity sha512
|
2735
|
+
version "3.0.3"
|
2736
|
+
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
|
2737
|
+
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
|
2599
2738
|
|
2600
2739
|
is-plain-obj@^2.0.0, is-plain-obj@^2.1.0:
|
2601
2740
|
version "2.1.0"
|
2602
2741
|
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
|
2603
2742
|
integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
|
2604
2743
|
|
2744
|
+
is-plain-object@^2.0.4:
|
2745
|
+
version "2.0.4"
|
2746
|
+
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
|
2747
|
+
integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
|
2748
|
+
dependencies:
|
2749
|
+
isobject "^3.0.1"
|
2750
|
+
|
2605
2751
|
is-potential-custom-element-name@^1.0.0:
|
2606
|
-
version "1.0.
|
2607
|
-
resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.
|
2608
|
-
integrity
|
2752
|
+
version "1.0.1"
|
2753
|
+
resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
|
2754
|
+
integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
|
2609
2755
|
|
2610
2756
|
is-promise@^2.1.0:
|
2611
2757
|
version "2.2.2"
|
2612
2758
|
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
|
2613
2759
|
integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
|
2614
2760
|
|
2615
|
-
is-regex@^1.1.
|
2616
|
-
version "1.1.
|
2617
|
-
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.
|
2618
|
-
integrity sha512-
|
2761
|
+
is-regex@^1.1.2:
|
2762
|
+
version "1.1.3"
|
2763
|
+
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
|
2764
|
+
integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==
|
2619
2765
|
dependencies:
|
2620
|
-
|
2766
|
+
call-bind "^1.0.2"
|
2767
|
+
has-symbols "^1.0.2"
|
2621
2768
|
|
2622
2769
|
is-regexp@^1.0.0:
|
2623
2770
|
version "1.0.0"
|
@@ -2634,21 +2781,26 @@ is-stream@^2.0.0:
|
|
2634
2781
|
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
|
2635
2782
|
integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
|
2636
2783
|
|
2637
|
-
is-
|
2638
|
-
version "1.0.
|
2639
|
-
resolved "https://registry.yarnpkg.com/is-
|
2640
|
-
integrity sha512-
|
2784
|
+
is-string@^1.0.5:
|
2785
|
+
version "1.0.6"
|
2786
|
+
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
|
2787
|
+
integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==
|
2788
|
+
|
2789
|
+
is-symbol@^1.0.2, is-symbol@^1.0.3:
|
2790
|
+
version "1.0.4"
|
2791
|
+
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
|
2792
|
+
integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
|
2641
2793
|
dependencies:
|
2642
|
-
has-symbols "^1.0.
|
2794
|
+
has-symbols "^1.0.2"
|
2643
2795
|
|
2644
2796
|
is-typed-array@^1.1.3:
|
2645
|
-
version "1.1.
|
2646
|
-
resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.
|
2647
|
-
integrity sha512-
|
2797
|
+
version "1.1.5"
|
2798
|
+
resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz#f32e6e096455e329eb7b423862456aa213f0eb4e"
|
2799
|
+
integrity sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==
|
2648
2800
|
dependencies:
|
2649
2801
|
available-typed-arrays "^1.0.2"
|
2650
|
-
call-bind "^1.0.
|
2651
|
-
es-abstract "^1.18.0-next.
|
2802
|
+
call-bind "^1.0.2"
|
2803
|
+
es-abstract "^1.18.0-next.2"
|
2652
2804
|
foreach "^2.0.5"
|
2653
2805
|
has-symbols "^1.0.1"
|
2654
2806
|
|
@@ -2672,6 +2824,11 @@ isexe@^2.0.0:
|
|
2672
2824
|
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
2673
2825
|
integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
|
2674
2826
|
|
2827
|
+
isobject@^3.0.1:
|
2828
|
+
version "3.0.1"
|
2829
|
+
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
|
2830
|
+
integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
|
2831
|
+
|
2675
2832
|
isstream@~0.1.2:
|
2676
2833
|
version "0.1.2"
|
2677
2834
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
@@ -2699,13 +2856,12 @@ js-tokens@^4.0.0:
|
|
2699
2856
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
2700
2857
|
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
2701
2858
|
|
2702
|
-
js-yaml@
|
2703
|
-
version "
|
2704
|
-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-
|
2705
|
-
integrity sha512
|
2859
|
+
js-yaml@4.0.0:
|
2860
|
+
version "4.0.0"
|
2861
|
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz#f426bc0ff4b4051926cd588c71113183409a121f"
|
2862
|
+
integrity sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==
|
2706
2863
|
dependencies:
|
2707
|
-
argparse "^
|
2708
|
-
esprima "^4.0.0"
|
2864
|
+
argparse "^2.0.1"
|
2709
2865
|
|
2710
2866
|
js-yaml@^3.13.1:
|
2711
2867
|
version "3.14.1"
|
@@ -2720,36 +2876,41 @@ jsbn@~0.1.0:
|
|
2720
2876
|
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
|
2721
2877
|
integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
|
2722
2878
|
|
2879
|
+
jsdom-global@^3.0.2:
|
2880
|
+
version "3.0.2"
|
2881
|
+
resolved "https://registry.yarnpkg.com/jsdom-global/-/jsdom-global-3.0.2.tgz#6bd299c13b0c4626b2da2c0393cd4385d606acb9"
|
2882
|
+
integrity sha1-a9KZwTsMRiay2iwDk81DhdYGrLk=
|
2883
|
+
|
2723
2884
|
jsdom@^16.0.1:
|
2724
|
-
version "16.
|
2725
|
-
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.
|
2726
|
-
integrity sha512-
|
2885
|
+
version "16.5.3"
|
2886
|
+
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.5.3.tgz#13a755b3950eb938b4482c407238ddf16f0d2136"
|
2887
|
+
integrity sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==
|
2727
2888
|
dependencies:
|
2728
|
-
abab "^2.0.
|
2729
|
-
acorn "^
|
2889
|
+
abab "^2.0.5"
|
2890
|
+
acorn "^8.1.0"
|
2730
2891
|
acorn-globals "^6.0.0"
|
2731
2892
|
cssom "^0.4.4"
|
2732
|
-
cssstyle "^2.
|
2893
|
+
cssstyle "^2.3.0"
|
2733
2894
|
data-urls "^2.0.0"
|
2734
|
-
decimal.js "^10.2.
|
2895
|
+
decimal.js "^10.2.1"
|
2735
2896
|
domexception "^2.0.1"
|
2736
|
-
escodegen "^
|
2897
|
+
escodegen "^2.0.0"
|
2737
2898
|
html-encoding-sniffer "^2.0.1"
|
2738
2899
|
is-potential-custom-element-name "^1.0.0"
|
2739
2900
|
nwsapi "^2.2.0"
|
2740
|
-
parse5 "
|
2901
|
+
parse5 "6.0.1"
|
2741
2902
|
request "^2.88.2"
|
2742
|
-
request-promise-native "^1.0.
|
2743
|
-
saxes "^5.0.
|
2903
|
+
request-promise-native "^1.0.9"
|
2904
|
+
saxes "^5.0.1"
|
2744
2905
|
symbol-tree "^3.2.4"
|
2745
|
-
tough-cookie "^
|
2906
|
+
tough-cookie "^4.0.0"
|
2746
2907
|
w3c-hr-time "^1.0.2"
|
2747
2908
|
w3c-xmlserializer "^2.0.0"
|
2748
2909
|
webidl-conversions "^6.1.0"
|
2749
2910
|
whatwg-encoding "^1.0.5"
|
2750
2911
|
whatwg-mimetype "^2.3.0"
|
2751
|
-
whatwg-url "^8.
|
2752
|
-
ws "^7.
|
2912
|
+
whatwg-url "^8.5.0"
|
2913
|
+
ws "^7.4.4"
|
2753
2914
|
xml-name-validator "^3.0.0"
|
2754
2915
|
|
2755
2916
|
jsesc@^2.5.1:
|
@@ -2795,9 +2956,9 @@ json-stringify-safe@~5.0.1:
|
|
2795
2956
|
integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
|
2796
2957
|
|
2797
2958
|
json5@^2.1.2:
|
2798
|
-
version "2.
|
2799
|
-
resolved "https://registry.yarnpkg.com/json5/-/json5-2.
|
2800
|
-
integrity sha512-
|
2959
|
+
version "2.2.0"
|
2960
|
+
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
|
2961
|
+
integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
|
2801
2962
|
dependencies:
|
2802
2963
|
minimist "^1.2.5"
|
2803
2964
|
|
@@ -2816,6 +2977,11 @@ jsprim@^1.2.2:
|
|
2816
2977
|
json-schema "0.2.3"
|
2817
2978
|
verror "1.10.0"
|
2818
2979
|
|
2980
|
+
kind-of@^6.0.2:
|
2981
|
+
version "6.0.3"
|
2982
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
|
2983
|
+
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
|
2984
|
+
|
2819
2985
|
leven@3.1.0:
|
2820
2986
|
version "3.1.0"
|
2821
2987
|
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
@@ -2930,10 +3096,10 @@ locate-path@^6.0.0:
|
|
2930
3096
|
dependencies:
|
2931
3097
|
p-locate "^5.0.0"
|
2932
3098
|
|
2933
|
-
lodash.
|
2934
|
-
version "4.
|
2935
|
-
resolved "https://registry.yarnpkg.com/lodash.
|
2936
|
-
integrity sha1-
|
3099
|
+
lodash.debounce@^4.0.8:
|
3100
|
+
version "4.0.8"
|
3101
|
+
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
|
3102
|
+
integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
|
2937
3103
|
|
2938
3104
|
lodash.unescape@4.0.1:
|
2939
3105
|
version "4.0.1"
|
@@ -2945,10 +3111,10 @@ lodash.uniqby@4.7.0:
|
|
2945
3111
|
resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302"
|
2946
3112
|
integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=
|
2947
3113
|
|
2948
|
-
lodash@^4.17.14, lodash@^4.17.19:
|
2949
|
-
version "4.17.
|
2950
|
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.
|
2951
|
-
integrity sha512-
|
3114
|
+
lodash@^4.17.14, lodash@^4.17.19, lodash@^4.7.0:
|
3115
|
+
version "4.17.21"
|
3116
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
3117
|
+
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
2952
3118
|
|
2953
3119
|
log-symbols@4.0.0:
|
2954
3120
|
version "4.0.0"
|
@@ -3028,24 +3194,24 @@ merge2@^1.2.3, merge2@^1.3.0:
|
|
3028
3194
|
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
3029
3195
|
|
3030
3196
|
micromatch@^4.0.2:
|
3031
|
-
version "4.0.
|
3032
|
-
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.
|
3033
|
-
integrity sha512-
|
3197
|
+
version "4.0.4"
|
3198
|
+
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
|
3199
|
+
integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
|
3034
3200
|
dependencies:
|
3035
3201
|
braces "^3.0.1"
|
3036
|
-
picomatch "^2.
|
3202
|
+
picomatch "^2.2.3"
|
3037
3203
|
|
3038
|
-
mime-db@1.
|
3039
|
-
version "1.
|
3040
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.
|
3041
|
-
integrity sha512-
|
3204
|
+
mime-db@1.47.0:
|
3205
|
+
version "1.47.0"
|
3206
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c"
|
3207
|
+
integrity sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==
|
3042
3208
|
|
3043
3209
|
mime-types@^2.1.12, mime-types@~2.1.19:
|
3044
|
-
version "2.1.
|
3045
|
-
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.
|
3046
|
-
integrity sha512-
|
3210
|
+
version "2.1.30"
|
3211
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.30.tgz#6e7be8b4c479825f85ed6326695db73f9305d62d"
|
3212
|
+
integrity sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==
|
3047
3213
|
dependencies:
|
3048
|
-
mime-db "1.
|
3214
|
+
mime-db "1.47.0"
|
3049
3215
|
|
3050
3216
|
mimic-fn@^1.0.0:
|
3051
3217
|
version "1.2.0"
|
@@ -3077,34 +3243,34 @@ mkdirp@^0.5.1:
|
|
3077
3243
|
minimist "^1.2.5"
|
3078
3244
|
|
3079
3245
|
mocha@^8.0.1:
|
3080
|
-
version "8.
|
3081
|
-
resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.
|
3082
|
-
integrity sha512-
|
3246
|
+
version "8.4.0"
|
3247
|
+
resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.4.0.tgz#677be88bf15980a3cae03a73e10a0fc3997f0cff"
|
3248
|
+
integrity sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==
|
3083
3249
|
dependencies:
|
3084
3250
|
"@ungap/promise-all-settled" "1.1.2"
|
3085
3251
|
ansi-colors "4.1.1"
|
3086
3252
|
browser-stdout "1.3.1"
|
3087
|
-
chokidar "3.
|
3088
|
-
debug "4.
|
3089
|
-
diff "
|
3253
|
+
chokidar "3.5.1"
|
3254
|
+
debug "4.3.1"
|
3255
|
+
diff "5.0.0"
|
3090
3256
|
escape-string-regexp "4.0.0"
|
3091
3257
|
find-up "5.0.0"
|
3092
3258
|
glob "7.1.6"
|
3093
3259
|
growl "1.10.5"
|
3094
3260
|
he "1.2.0"
|
3095
|
-
js-yaml "
|
3261
|
+
js-yaml "4.0.0"
|
3096
3262
|
log-symbols "4.0.0"
|
3097
3263
|
minimatch "3.0.4"
|
3098
|
-
ms "2.1.
|
3099
|
-
nanoid "3.1.
|
3264
|
+
ms "2.1.3"
|
3265
|
+
nanoid "3.1.20"
|
3100
3266
|
serialize-javascript "5.0.1"
|
3101
3267
|
strip-json-comments "3.1.1"
|
3102
|
-
supports-color "
|
3268
|
+
supports-color "8.1.1"
|
3103
3269
|
which "2.0.2"
|
3104
3270
|
wide-align "1.1.3"
|
3105
|
-
workerpool "6.0
|
3106
|
-
yargs "
|
3107
|
-
yargs-parser "
|
3271
|
+
workerpool "6.1.0"
|
3272
|
+
yargs "16.2.0"
|
3273
|
+
yargs-parser "20.2.4"
|
3108
3274
|
yargs-unparser "2.0.0"
|
3109
3275
|
|
3110
3276
|
morphdom@^2.6.1:
|
@@ -3122,6 +3288,11 @@ ms@2.1.2:
|
|
3122
3288
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
3123
3289
|
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
3124
3290
|
|
3291
|
+
ms@2.1.3:
|
3292
|
+
version "2.1.3"
|
3293
|
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
3294
|
+
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
3295
|
+
|
3125
3296
|
multimatch@^3.0.0:
|
3126
3297
|
version "3.0.0"
|
3127
3298
|
resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-3.0.0.tgz#0e2534cc6bc238d9ab67e1b9cd5fcd85a6dbf70b"
|
@@ -3142,10 +3313,10 @@ n-readlines@1.0.0:
|
|
3142
3313
|
resolved "https://registry.yarnpkg.com/n-readlines/-/n-readlines-1.0.0.tgz#c353797f216c253fdfef7e91da4e8b17c29a91a6"
|
3143
3314
|
integrity sha512-ISDqGcspVu6U3VKqtJZG1uR55SmNNF9uK0EMq1IvNVVZOui6MW6VR0+pIZhqz85ORAGp+4zW+5fJ/SE7bwEibA==
|
3144
3315
|
|
3145
|
-
nanoid@3.1.
|
3146
|
-
version "3.1.
|
3147
|
-
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.
|
3148
|
-
integrity sha512-
|
3316
|
+
nanoid@3.1.20:
|
3317
|
+
version "3.1.20"
|
3318
|
+
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788"
|
3319
|
+
integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==
|
3149
3320
|
|
3150
3321
|
natural-compare@^1.4.0:
|
3151
3322
|
version "1.4.0"
|
@@ -3167,10 +3338,10 @@ node-modules-regexp@^1.0.0:
|
|
3167
3338
|
resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
|
3168
3339
|
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
|
3169
3340
|
|
3170
|
-
node-releases@^1.1.
|
3171
|
-
version "1.1.
|
3172
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.
|
3173
|
-
integrity sha512-
|
3341
|
+
node-releases@^1.1.71:
|
3342
|
+
version "1.1.72"
|
3343
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe"
|
3344
|
+
integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==
|
3174
3345
|
|
3175
3346
|
normalize-path@3.0.0, normalize-path@^3.0.0, normalize-path@~3.0.0:
|
3176
3347
|
version "3.0.0"
|
@@ -3205,16 +3376,16 @@ object-assign@^4.0.1, object-assign@^4.1.0:
|
|
3205
3376
|
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
|
3206
3377
|
|
3207
3378
|
object-inspect@^1.9.0:
|
3208
|
-
version "1.
|
3209
|
-
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.
|
3210
|
-
integrity sha512-
|
3379
|
+
version "1.10.3"
|
3380
|
+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369"
|
3381
|
+
integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==
|
3211
3382
|
|
3212
3383
|
object-is@^1.0.1:
|
3213
|
-
version "1.1.
|
3214
|
-
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.
|
3215
|
-
integrity sha512-
|
3384
|
+
version "1.1.5"
|
3385
|
+
resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
|
3386
|
+
integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
|
3216
3387
|
dependencies:
|
3217
|
-
call-bind "^1.0.
|
3388
|
+
call-bind "^1.0.2"
|
3218
3389
|
define-properties "^1.1.3"
|
3219
3390
|
|
3220
3391
|
object-keys@^1.0.12, object-keys@^1.1.1:
|
@@ -3369,10 +3540,10 @@ parse-srcset@1.0.2:
|
|
3369
3540
|
resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1"
|
3370
3541
|
integrity sha1-8r0iH2zJcKk42IVWq8WJyqqiveE=
|
3371
3542
|
|
3372
|
-
parse5@
|
3373
|
-
version "
|
3374
|
-
resolved "https://registry.yarnpkg.com/parse5/-/parse5-
|
3375
|
-
integrity sha512-
|
3543
|
+
parse5@6.0.1:
|
3544
|
+
version "6.0.1"
|
3545
|
+
resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
|
3546
|
+
integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
|
3376
3547
|
|
3377
3548
|
path-exists@^3.0.0:
|
3378
3549
|
version "3.0.0"
|
@@ -3414,10 +3585,10 @@ performance-now@^2.1.0:
|
|
3414
3585
|
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
|
3415
3586
|
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
|
3416
3587
|
|
3417
|
-
picomatch@^2.0.4, picomatch@^2.
|
3418
|
-
version "2.2.
|
3419
|
-
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.
|
3420
|
-
integrity sha512-
|
3588
|
+
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3:
|
3589
|
+
version "2.2.3"
|
3590
|
+
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d"
|
3591
|
+
integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==
|
3421
3592
|
|
3422
3593
|
pify@^2.0.0:
|
3423
3594
|
version "2.3.0"
|
@@ -3615,7 +3786,7 @@ pseudomap@^1.0.2:
|
|
3615
3786
|
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
3616
3787
|
integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
|
3617
3788
|
|
3618
|
-
psl@^1.1.28:
|
3789
|
+
psl@^1.1.28, psl@^1.1.33:
|
3619
3790
|
version "1.8.0"
|
3620
3791
|
resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
|
3621
3792
|
integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
|
@@ -3638,6 +3809,11 @@ qs@~6.5.2:
|
|
3638
3809
|
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
|
3639
3810
|
integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
|
3640
3811
|
|
3812
|
+
queue-microtask@^1.2.2:
|
3813
|
+
version "1.2.3"
|
3814
|
+
resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
|
3815
|
+
integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
|
3816
|
+
|
3641
3817
|
randombytes@^2.1.0:
|
3642
3818
|
version "2.1.0"
|
3643
3819
|
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
|
@@ -3706,9 +3882,9 @@ regjsgen@^0.5.1:
|
|
3706
3882
|
integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
|
3707
3883
|
|
3708
3884
|
regjsparser@^0.6.4:
|
3709
|
-
version "0.6.
|
3710
|
-
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.
|
3711
|
-
integrity sha512-
|
3885
|
+
version "0.6.9"
|
3886
|
+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
|
3887
|
+
integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
|
3712
3888
|
dependencies:
|
3713
3889
|
jsesc "~0.5.0"
|
3714
3890
|
|
@@ -3752,7 +3928,7 @@ request-promise-core@1.1.4:
|
|
3752
3928
|
dependencies:
|
3753
3929
|
lodash "^4.17.19"
|
3754
3930
|
|
3755
|
-
request-promise-native@^1.0.
|
3931
|
+
request-promise-native@^1.0.9:
|
3756
3932
|
version "1.0.9"
|
3757
3933
|
resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28"
|
3758
3934
|
integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==
|
@@ -3792,11 +3968,6 @@ require-directory@^2.1.1:
|
|
3792
3968
|
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
3793
3969
|
integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
|
3794
3970
|
|
3795
|
-
require-main-filename@^2.0.0:
|
3796
|
-
version "2.0.0"
|
3797
|
-
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
|
3798
|
-
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
|
3799
|
-
|
3800
3971
|
resolve-from@^3.0.0:
|
3801
3972
|
version "3.0.0"
|
3802
3973
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
|
@@ -3814,6 +3985,14 @@ resolve@1.15.1:
|
|
3814
3985
|
dependencies:
|
3815
3986
|
path-parse "^1.0.6"
|
3816
3987
|
|
3988
|
+
resolve@^1.14.2:
|
3989
|
+
version "1.20.0"
|
3990
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
|
3991
|
+
integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
|
3992
|
+
dependencies:
|
3993
|
+
is-core-module "^2.2.0"
|
3994
|
+
path-parse "^1.0.6"
|
3995
|
+
|
3817
3996
|
restore-cursor@^2.0.0:
|
3818
3997
|
version "2.0.0"
|
3819
3998
|
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
@@ -3855,14 +4034,16 @@ run-async@^2.4.0:
|
|
3855
4034
|
integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
|
3856
4035
|
|
3857
4036
|
run-parallel@^1.1.9:
|
3858
|
-
version "1.
|
3859
|
-
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.
|
3860
|
-
integrity sha512-
|
4037
|
+
version "1.2.0"
|
4038
|
+
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
|
4039
|
+
integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
|
4040
|
+
dependencies:
|
4041
|
+
queue-microtask "^1.2.2"
|
3861
4042
|
|
3862
4043
|
rxjs@^6.3.3, rxjs@^6.6.0:
|
3863
|
-
version "6.6.
|
3864
|
-
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.
|
3865
|
-
integrity sha512-
|
4044
|
+
version "6.6.7"
|
4045
|
+
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
|
4046
|
+
integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
|
3866
4047
|
dependencies:
|
3867
4048
|
tslib "^1.9.0"
|
3868
4049
|
|
@@ -3881,7 +4062,7 @@ safe-buffer@~5.1.1:
|
|
3881
4062
|
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
3882
4063
|
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
3883
4064
|
|
3884
|
-
saxes@^5.0.
|
4065
|
+
saxes@^5.0.1:
|
3885
4066
|
version "5.0.1"
|
3886
4067
|
resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
|
3887
4068
|
integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
|
@@ -3893,7 +4074,7 @@ semver-compare@^1.0.0:
|
|
3893
4074
|
resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
|
3894
4075
|
integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
|
3895
4076
|
|
3896
|
-
semver@6.3.0, semver@^6.1.2, semver@^6.3.0:
|
4077
|
+
semver@6.3.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
|
3897
4078
|
version "6.3.0"
|
3898
4079
|
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
|
3899
4080
|
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
|
@@ -3903,7 +4084,7 @@ semver@7.0.0:
|
|
3903
4084
|
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
3904
4085
|
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
|
3905
4086
|
|
3906
|
-
semver@^5.
|
4087
|
+
semver@^5.5.0, semver@^5.6.0:
|
3907
4088
|
version "5.7.1"
|
3908
4089
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
3909
4090
|
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
@@ -3915,10 +4096,12 @@ serialize-javascript@5.0.1:
|
|
3915
4096
|
dependencies:
|
3916
4097
|
randombytes "^2.1.0"
|
3917
4098
|
|
3918
|
-
|
3919
|
-
version "
|
3920
|
-
resolved "https://registry.yarnpkg.com/
|
3921
|
-
integrity
|
4099
|
+
shallow-clone@^3.0.0:
|
4100
|
+
version "3.0.1"
|
4101
|
+
resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
|
4102
|
+
integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
|
4103
|
+
dependencies:
|
4104
|
+
kind-of "^6.0.2"
|
3922
4105
|
|
3923
4106
|
shebang-command@^1.2.0:
|
3924
4107
|
version "1.2.0"
|
@@ -3955,9 +4138,9 @@ signal-exit@^3.0.2:
|
|
3955
4138
|
integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
|
3956
4139
|
|
3957
4140
|
simple-html-tokenizer@^0.5.7:
|
3958
|
-
version "0.5.
|
3959
|
-
resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.
|
3960
|
-
integrity sha512-
|
4141
|
+
version "0.5.11"
|
4142
|
+
resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.11.tgz#4c5186083c164ba22a7b477b7687ac056ad6b1d9"
|
4143
|
+
integrity sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==
|
3961
4144
|
|
3962
4145
|
slash@^3.0.0:
|
3963
4146
|
version "3.0.0"
|
@@ -4039,7 +4222,7 @@ string-argv@^0.3.0:
|
|
4039
4222
|
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
|
4040
4223
|
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
|
4041
4224
|
|
4042
|
-
string-width@4.2.0
|
4225
|
+
string-width@4.2.0:
|
4043
4226
|
version "4.2.0"
|
4044
4227
|
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
|
4045
4228
|
integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
|
@@ -4065,7 +4248,7 @@ string-width@^1.0.1:
|
|
4065
4248
|
is-fullwidth-code-point "^2.0.0"
|
4066
4249
|
strip-ansi "^4.0.0"
|
4067
4250
|
|
4068
|
-
string-width@^3.0.0
|
4251
|
+
string-width@^3.0.0:
|
4069
4252
|
version "3.1.0"
|
4070
4253
|
resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
|
4071
4254
|
integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
|
@@ -4074,20 +4257,29 @@ string-width@^3.0.0, string-width@^3.1.0:
|
|
4074
4257
|
is-fullwidth-code-point "^2.0.0"
|
4075
4258
|
strip-ansi "^5.1.0"
|
4076
4259
|
|
4077
|
-
string.
|
4078
|
-
version "
|
4079
|
-
resolved "https://registry.yarnpkg.com/string
|
4080
|
-
integrity sha512-
|
4260
|
+
string-width@^4.1.0, string-width@^4.2.0:
|
4261
|
+
version "4.2.2"
|
4262
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
|
4263
|
+
integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
|
4081
4264
|
dependencies:
|
4082
|
-
|
4265
|
+
emoji-regex "^8.0.0"
|
4266
|
+
is-fullwidth-code-point "^3.0.0"
|
4267
|
+
strip-ansi "^6.0.0"
|
4268
|
+
|
4269
|
+
string.prototype.trimend@^1.0.4:
|
4270
|
+
version "1.0.4"
|
4271
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
|
4272
|
+
integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
|
4273
|
+
dependencies:
|
4274
|
+
call-bind "^1.0.2"
|
4083
4275
|
define-properties "^1.1.3"
|
4084
4276
|
|
4085
|
-
string.prototype.trimstart@^1.0.
|
4086
|
-
version "1.0.
|
4087
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.
|
4088
|
-
integrity sha512-
|
4277
|
+
string.prototype.trimstart@^1.0.4:
|
4278
|
+
version "1.0.4"
|
4279
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
|
4280
|
+
integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
|
4089
4281
|
dependencies:
|
4090
|
-
call-bind "^1.0.
|
4282
|
+
call-bind "^1.0.2"
|
4091
4283
|
define-properties "^1.1.3"
|
4092
4284
|
|
4093
4285
|
stringify-object@^3.3.0:
|
@@ -4113,7 +4305,7 @@ strip-ansi@^4.0.0:
|
|
4113
4305
|
dependencies:
|
4114
4306
|
ansi-regex "^3.0.0"
|
4115
4307
|
|
4116
|
-
strip-ansi@^5.
|
4308
|
+
strip-ansi@^5.1.0, strip-ansi@^5.2.0:
|
4117
4309
|
version "5.2.0"
|
4118
4310
|
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
|
4119
4311
|
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
|
@@ -4137,10 +4329,10 @@ strip-json-comments@3.1.1, strip-json-comments@^3.0.1:
|
|
4137
4329
|
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
|
4138
4330
|
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
|
4139
4331
|
|
4140
|
-
supports-color@
|
4141
|
-
version "
|
4142
|
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-
|
4143
|
-
integrity sha512-
|
4332
|
+
supports-color@8.1.1:
|
4333
|
+
version "8.1.1"
|
4334
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
|
4335
|
+
integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
|
4144
4336
|
dependencies:
|
4145
4337
|
has-flag "^4.0.0"
|
4146
4338
|
|
@@ -4170,6 +4362,13 @@ supports-color@^6.1.0:
|
|
4170
4362
|
dependencies:
|
4171
4363
|
has-flag "^3.0.0"
|
4172
4364
|
|
4365
|
+
supports-color@^7.1.0:
|
4366
|
+
version "7.2.0"
|
4367
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
|
4368
|
+
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
|
4369
|
+
dependencies:
|
4370
|
+
has-flag "^4.0.0"
|
4371
|
+
|
4173
4372
|
symbol-observable@^1.1.0:
|
4174
4373
|
version "1.2.0"
|
4175
4374
|
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
|
@@ -4227,14 +4426,14 @@ tough-cookie@^2.3.3, tough-cookie@~2.5.0:
|
|
4227
4426
|
psl "^1.1.28"
|
4228
4427
|
punycode "^2.1.1"
|
4229
4428
|
|
4230
|
-
tough-cookie@^
|
4231
|
-
version "
|
4232
|
-
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-
|
4233
|
-
integrity sha512-
|
4429
|
+
tough-cookie@^4.0.0:
|
4430
|
+
version "4.0.0"
|
4431
|
+
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4"
|
4432
|
+
integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==
|
4234
4433
|
dependencies:
|
4235
|
-
|
4236
|
-
psl "^1.1.28"
|
4434
|
+
psl "^1.1.33"
|
4237
4435
|
punycode "^2.1.1"
|
4436
|
+
universalify "^0.1.2"
|
4238
4437
|
|
4239
4438
|
tr46@^2.0.2:
|
4240
4439
|
version "2.0.2"
|
@@ -4264,9 +4463,9 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
|
|
4264
4463
|
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
|
4265
4464
|
|
4266
4465
|
tsutils@^3.17.1:
|
4267
|
-
version "3.
|
4268
|
-
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.
|
4269
|
-
integrity sha512-
|
4466
|
+
version "3.21.0"
|
4467
|
+
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
|
4468
|
+
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
|
4270
4469
|
dependencies:
|
4271
4470
|
tslib "^1.8.1"
|
4272
4471
|
|
@@ -4289,10 +4488,10 @@ type-check@~0.3.2:
|
|
4289
4488
|
dependencies:
|
4290
4489
|
prelude-ls "~1.1.2"
|
4291
4490
|
|
4292
|
-
type-fest@^0.
|
4293
|
-
version "0.
|
4294
|
-
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.
|
4295
|
-
integrity sha512-
|
4491
|
+
type-fest@^0.21.3:
|
4492
|
+
version "0.21.3"
|
4493
|
+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
|
4494
|
+
integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
|
4296
4495
|
|
4297
4496
|
type-fest@^0.8.1:
|
4298
4497
|
version "0.8.1"
|
@@ -4300,9 +4499,19 @@ type-fest@^0.8.1:
|
|
4300
4499
|
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
|
4301
4500
|
|
4302
4501
|
uglify-js@^3.1.4:
|
4303
|
-
version "3.
|
4304
|
-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.
|
4305
|
-
integrity sha512-
|
4502
|
+
version "3.13.7"
|
4503
|
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.7.tgz#25468a3b39b1c875df03f0937b2b7036a93f3fee"
|
4504
|
+
integrity sha512-1Psi2MmnZJbnEsgJJIlfnd7tFlJfitusmR7zDI8lXlFI0ACD4/Rm/xdrU8bh6zF0i74aiVoBtkRiFulkrmh3AA==
|
4505
|
+
|
4506
|
+
unbox-primitive@^1.0.0:
|
4507
|
+
version "1.0.1"
|
4508
|
+
resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
|
4509
|
+
integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
|
4510
|
+
dependencies:
|
4511
|
+
function-bind "^1.1.1"
|
4512
|
+
has-bigints "^1.0.1"
|
4513
|
+
has-symbols "^1.0.2"
|
4514
|
+
which-boxed-primitive "^1.0.2"
|
4306
4515
|
|
4307
4516
|
unherit@^1.0.4:
|
4308
4517
|
version "1.1.3"
|
@@ -4398,6 +4607,11 @@ unist-util-visit@^1.1.0:
|
|
4398
4607
|
dependencies:
|
4399
4608
|
unist-util-visit-parents "^2.0.0"
|
4400
4609
|
|
4610
|
+
universalify@^0.1.2:
|
4611
|
+
version "0.1.2"
|
4612
|
+
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
|
4613
|
+
integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
|
4614
|
+
|
4401
4615
|
uri-js@^4.2.2:
|
4402
4616
|
version "4.4.1"
|
4403
4617
|
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
|
@@ -4423,9 +4637,9 @@ uuid@^3.3.2:
|
|
4423
4637
|
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
|
4424
4638
|
|
4425
4639
|
v8-compile-cache@^2.0.3:
|
4426
|
-
version "2.
|
4427
|
-
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.
|
4428
|
-
integrity sha512-
|
4640
|
+
version "2.3.0"
|
4641
|
+
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
|
4642
|
+
integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
|
4429
4643
|
|
4430
4644
|
verror@1.10.0:
|
4431
4645
|
version "1.10.0"
|
@@ -4504,19 +4718,25 @@ whatwg-mimetype@^2.3.0:
|
|
4504
4718
|
resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
|
4505
4719
|
integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
|
4506
4720
|
|
4507
|
-
whatwg-url@^8.0.0:
|
4508
|
-
version "8.
|
4509
|
-
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.
|
4510
|
-
integrity sha512-
|
4721
|
+
whatwg-url@^8.0.0, whatwg-url@^8.5.0:
|
4722
|
+
version "8.5.0"
|
4723
|
+
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.5.0.tgz#7752b8464fc0903fec89aa9846fc9efe07351fd3"
|
4724
|
+
integrity sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg==
|
4511
4725
|
dependencies:
|
4512
|
-
lodash
|
4726
|
+
lodash "^4.7.0"
|
4513
4727
|
tr46 "^2.0.2"
|
4514
4728
|
webidl-conversions "^6.1.0"
|
4515
4729
|
|
4516
|
-
which-
|
4517
|
-
version "
|
4518
|
-
resolved "https://registry.yarnpkg.com/which-
|
4519
|
-
integrity
|
4730
|
+
which-boxed-primitive@^1.0.2:
|
4731
|
+
version "1.0.2"
|
4732
|
+
resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
|
4733
|
+
integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
|
4734
|
+
dependencies:
|
4735
|
+
is-bigint "^1.0.1"
|
4736
|
+
is-boolean-object "^1.1.0"
|
4737
|
+
is-number-object "^1.0.4"
|
4738
|
+
is-string "^1.0.5"
|
4739
|
+
is-symbol "^1.0.3"
|
4520
4740
|
|
4521
4741
|
which-typed-array@^1.1.2:
|
4522
4742
|
version "1.1.4"
|
@@ -4562,10 +4782,10 @@ wordwrap@^1.0.0:
|
|
4562
4782
|
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
|
4563
4783
|
integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
|
4564
4784
|
|
4565
|
-
workerpool@6.0
|
4566
|
-
version "6.0
|
4567
|
-
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.0.
|
4568
|
-
integrity sha512-
|
4785
|
+
workerpool@6.1.0:
|
4786
|
+
version "6.1.0"
|
4787
|
+
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.0.tgz#a8e038b4c94569596852de7a8ea4228eefdeb37b"
|
4788
|
+
integrity sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==
|
4569
4789
|
|
4570
4790
|
wrap-ansi@^3.0.1:
|
4571
4791
|
version "3.0.1"
|
@@ -4575,14 +4795,14 @@ wrap-ansi@^3.0.1:
|
|
4575
4795
|
string-width "^2.1.1"
|
4576
4796
|
strip-ansi "^4.0.0"
|
4577
4797
|
|
4578
|
-
wrap-ansi@^
|
4579
|
-
version "
|
4580
|
-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-
|
4581
|
-
integrity sha512-
|
4798
|
+
wrap-ansi@^7.0.0:
|
4799
|
+
version "7.0.0"
|
4800
|
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
|
4801
|
+
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
4582
4802
|
dependencies:
|
4583
|
-
ansi-styles "^
|
4584
|
-
string-width "^
|
4585
|
-
strip-ansi "^
|
4803
|
+
ansi-styles "^4.0.0"
|
4804
|
+
string-width "^4.1.0"
|
4805
|
+
strip-ansi "^6.0.0"
|
4586
4806
|
|
4587
4807
|
wrappy@1:
|
4588
4808
|
version "1.0.2"
|
@@ -4596,10 +4816,10 @@ write@1.0.3:
|
|
4596
4816
|
dependencies:
|
4597
4817
|
mkdirp "^0.5.1"
|
4598
4818
|
|
4599
|
-
ws@^7.
|
4600
|
-
version "7.4.
|
4601
|
-
resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.
|
4602
|
-
integrity sha512-
|
4819
|
+
ws@^7.4.4:
|
4820
|
+
version "7.4.5"
|
4821
|
+
resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1"
|
4822
|
+
integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==
|
4603
4823
|
|
4604
4824
|
xml-name-validator@^3.0.0:
|
4605
4825
|
version "3.0.0"
|
@@ -4616,10 +4836,10 @@ xtend@^4.0.0, xtend@^4.0.1:
|
|
4616
4836
|
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
|
4617
4837
|
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
|
4618
4838
|
|
4619
|
-
y18n@^
|
4620
|
-
version "
|
4621
|
-
resolved "https://registry.yarnpkg.com/y18n/-/y18n-
|
4622
|
-
integrity sha512-
|
4839
|
+
y18n@^5.0.5:
|
4840
|
+
version "5.0.8"
|
4841
|
+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
|
4842
|
+
integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
|
4623
4843
|
|
4624
4844
|
yallist@^2.1.2:
|
4625
4845
|
version "2.1.2"
|
@@ -4643,17 +4863,19 @@ yaml@1.8.3:
|
|
4643
4863
|
"@babel/runtime" "^7.8.7"
|
4644
4864
|
|
4645
4865
|
yaml@^1.7.1:
|
4646
|
-
version "1.10.
|
4647
|
-
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.
|
4648
|
-
integrity sha512-
|
4866
|
+
version "1.10.2"
|
4867
|
+
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
|
4868
|
+
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
|
4649
4869
|
|
4650
|
-
yargs-parser@
|
4651
|
-
version "
|
4652
|
-
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-
|
4653
|
-
integrity sha512-
|
4654
|
-
|
4655
|
-
|
4656
|
-
|
4870
|
+
yargs-parser@20.2.4:
|
4871
|
+
version "20.2.4"
|
4872
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
|
4873
|
+
integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==
|
4874
|
+
|
4875
|
+
yargs-parser@^20.2.2:
|
4876
|
+
version "20.2.7"
|
4877
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a"
|
4878
|
+
integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==
|
4657
4879
|
|
4658
4880
|
yargs-unparser@2.0.0:
|
4659
4881
|
version "2.0.0"
|
@@ -4665,21 +4887,18 @@ yargs-unparser@2.0.0:
|
|
4665
4887
|
flat "^5.0.2"
|
4666
4888
|
is-plain-obj "^2.1.0"
|
4667
4889
|
|
4668
|
-
yargs@
|
4669
|
-
version "
|
4670
|
-
resolved "https://registry.yarnpkg.com/yargs/-/yargs-
|
4671
|
-
integrity sha512-
|
4890
|
+
yargs@16.2.0:
|
4891
|
+
version "16.2.0"
|
4892
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
|
4893
|
+
integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
|
4672
4894
|
dependencies:
|
4673
|
-
cliui "^
|
4674
|
-
|
4675
|
-
get-caller-file "^2.0.
|
4895
|
+
cliui "^7.0.2"
|
4896
|
+
escalade "^3.1.1"
|
4897
|
+
get-caller-file "^2.0.5"
|
4676
4898
|
require-directory "^2.1.1"
|
4677
|
-
|
4678
|
-
|
4679
|
-
|
4680
|
-
which-module "^2.0.0"
|
4681
|
-
y18n "^4.0.0"
|
4682
|
-
yargs-parser "^13.1.2"
|
4899
|
+
string-width "^4.2.0"
|
4900
|
+
y18n "^5.0.5"
|
4901
|
+
yargs-parser "^20.2.2"
|
4683
4902
|
|
4684
4903
|
yocto-queue@^0.1.0:
|
4685
4904
|
version "0.1.0"
|