stimulus_reflex 3.4.0 → 3.5.0.pre2

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.

Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +639 -484
  3. data/CODE_OF_CONDUCT.md +6 -0
  4. data/Gemfile.lock +99 -96
  5. data/LATEST +1 -0
  6. data/README.md +15 -14
  7. data/app/channels/stimulus_reflex/channel.rb +42 -73
  8. data/lib/generators/USAGE +1 -1
  9. data/lib/generators/stimulus_reflex/{config_generator.rb → initializer_generator.rb} +3 -3
  10. data/lib/generators/stimulus_reflex/templates/app/reflexes/%file_name%_reflex.rb.tt +3 -2
  11. data/lib/generators/stimulus_reflex/templates/app/reflexes/application_reflex.rb.tt +11 -4
  12. data/lib/generators/stimulus_reflex/templates/config/initializers/stimulus_reflex.rb +16 -1
  13. data/lib/stimulus_reflex.rb +11 -2
  14. data/lib/stimulus_reflex/broadcasters/broadcaster.rb +7 -4
  15. data/lib/stimulus_reflex/broadcasters/page_broadcaster.rb +2 -2
  16. data/lib/stimulus_reflex/broadcasters/selector_broadcaster.rb +20 -10
  17. data/lib/stimulus_reflex/broadcasters/update.rb +23 -0
  18. data/lib/stimulus_reflex/cable_ready_channels.rb +18 -3
  19. data/lib/stimulus_reflex/callbacks.rb +98 -0
  20. data/lib/stimulus_reflex/concern_enhancer.rb +37 -0
  21. data/lib/stimulus_reflex/configuration.rb +3 -1
  22. data/lib/stimulus_reflex/element.rb +48 -7
  23. data/lib/stimulus_reflex/policies/reflex_invocation_policy.rb +28 -0
  24. data/lib/stimulus_reflex/reflex.rb +49 -58
  25. data/lib/stimulus_reflex/reflex_data.rb +79 -0
  26. data/lib/stimulus_reflex/reflex_factory.rb +31 -0
  27. data/lib/stimulus_reflex/request_parameters.rb +19 -0
  28. data/lib/stimulus_reflex/{logger.rb → utils/logger.rb} +6 -8
  29. data/lib/stimulus_reflex/utils/sanity_checker.rb +210 -0
  30. data/lib/stimulus_reflex/version.rb +1 -1
  31. data/lib/tasks/stimulus_reflex/install.rake +54 -15
  32. data/package.json +7 -6
  33. data/stimulus_reflex.gemspec +8 -8
  34. data/test/broadcasters/broadcaster_test_case.rb +1 -1
  35. data/test/broadcasters/nothing_broadcaster_test.rb +5 -3
  36. data/test/broadcasters/page_broadcaster_test.rb +8 -4
  37. data/test/broadcasters/selector_broadcaster_test.rb +171 -55
  38. data/test/callbacks_test.rb +652 -0
  39. data/test/concern_enhancer_test.rb +54 -0
  40. data/test/element_test.rb +181 -0
  41. data/test/reflex_test.rb +2 -2
  42. data/test/test_helper.rb +22 -0
  43. data/test/tmp/app/reflexes/application_reflex.rb +10 -3
  44. data/test/tmp/app/reflexes/demo_reflex.rb +4 -2
  45. data/yarn.lock +1280 -1284
  46. metadata +47 -33
  47. data/lib/stimulus_reflex/sanity_checker.rb +0 -154
  48. 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
 
@@ -27,6 +27,6 @@ class StimulusReflex::ReflexTest < ActionCable::Channel::TestCase
27
27
  end
28
28
 
29
29
  test "dom_id" do
30
- assert @reflex.dom_id(TestModel.new(id: 123)) == "test_model_123"
30
+ assert @reflex.dom_id(TestModel.new(id: 123)) == "#test_model_123"
31
31
  end
32
32
  end
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,27 @@ 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
45
+
46
+ def to_gid_param
47
+ "xxxyyyzzz"
48
+ end
49
+ end
50
+
51
+ module ActionCable
52
+ module Channel
53
+ class ConnectionStub
54
+ def connection_identifier
55
+ connection_gid identifiers.map { |id| send(id.to_sym) if id }.compact
56
+ end
57
+
58
+ def connection_gid(ids)
59
+ ids.map { |o| o.respond_to?(:to_gid_param) ? o.to_gid_param : o.to_s }.sort.join(":")
60
+ end
61
+ end
62
+ end
41
63
  end
42
64
 
43
65
  StimulusReflex.configuration.parent_channel = "ActionCable::Channel::Base"
@@ -3,10 +3,17 @@
3
3
  class ApplicationReflex < StimulusReflex::Reflex
4
4
  # Put application-wide Reflex behavior and callbacks in this file.
5
5
  #
6
- # Example:
6
+ # Learn more at: https://docs.stimulusreflex.com/rtfm/reflex-classes
7
7
  #
8
- # # If your ActionCable connection is: `identified_by :current_user`
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/reflexes#reflex-classes
11
+ # If you need to localize your Reflexes, you can set the I18n locale here:
12
+ #
13
+ # before_reflex do
14
+ # I18n.locale = :fr
15
+ # end
16
+ #
17
+ # For code examples, considerations and caveats, see:
18
+ # https://docs.stimulusreflex.com/rtfm/patterns#internationalization
12
19
  end
@@ -17,12 +17,13 @@ class DemoReflex < 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,5 +31,6 @@ class DemoReflex < 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/reflexes#reflex-classes
34
+ # Learn more at: https://docs.stimulusreflex.com/rtfm/reflex-classes
35
+
34
36
  end
data/yarn.lock CHANGED
@@ -16,247 +16,252 @@
16
16
  dependencies:
17
17
  "@babel/highlight" "^7.8.3"
18
18
 
19
- "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
20
- version "7.12.11"
21
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
22
- integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
19
+ "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.14.5":
20
+ version "7.14.5"
21
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb"
22
+ integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==
23
23
  dependencies:
24
- "@babel/highlight" "^7.10.4"
24
+ "@babel/highlight" "^7.14.5"
25
25
 
26
- "@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7":
27
- version "7.12.7"
28
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41"
29
- integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==
26
+ "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.5", "@babel/compat-data@^7.14.7":
27
+ version "7.14.7"
28
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz#7b047d7a3a89a67d2258dc61f604f098f1bc7e08"
29
+ integrity sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==
30
30
 
31
31
  "@babel/core@^7.6.2":
32
- version "7.12.10"
33
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.10.tgz#b79a2e1b9f70ed3d84bbfb6d8c4ef825f606bccd"
34
- integrity sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==
35
- dependencies:
36
- "@babel/code-frame" "^7.10.4"
37
- "@babel/generator" "^7.12.10"
38
- "@babel/helper-module-transforms" "^7.12.1"
39
- "@babel/helpers" "^7.12.5"
40
- "@babel/parser" "^7.12.10"
41
- "@babel/template" "^7.12.7"
42
- "@babel/traverse" "^7.12.10"
43
- "@babel/types" "^7.12.10"
32
+ version "7.14.8"
33
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.8.tgz#20cdf7c84b5d86d83fac8710a8bc605a7ba3f010"
34
+ integrity sha512-/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q==
35
+ dependencies:
36
+ "@babel/code-frame" "^7.14.5"
37
+ "@babel/generator" "^7.14.8"
38
+ "@babel/helper-compilation-targets" "^7.14.5"
39
+ "@babel/helper-module-transforms" "^7.14.8"
40
+ "@babel/helpers" "^7.14.8"
41
+ "@babel/parser" "^7.14.8"
42
+ "@babel/template" "^7.14.5"
43
+ "@babel/traverse" "^7.14.8"
44
+ "@babel/types" "^7.14.8"
44
45
  convert-source-map "^1.7.0"
45
46
  debug "^4.1.0"
46
- gensync "^1.0.0-beta.1"
47
+ gensync "^1.0.0-beta.2"
47
48
  json5 "^2.1.2"
48
- lodash "^4.17.19"
49
- semver "^5.4.1"
49
+ semver "^6.3.0"
50
50
  source-map "^0.5.0"
51
51
 
52
- "@babel/generator@^7.12.10":
53
- version "7.12.11"
54
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.11.tgz#98a7df7b8c358c9a37ab07a24056853016aba3af"
55
- integrity sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==
52
+ "@babel/generator@^7.14.8":
53
+ version "7.14.8"
54
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.8.tgz#bf86fd6af96cf3b74395a8ca409515f89423e070"
55
+ integrity sha512-cYDUpvIzhBVnMzRoY1fkSEhK/HmwEVwlyULYgn/tMQYd6Obag3ylCjONle3gdErfXBW61SVTlR9QR7uWlgeIkg==
56
56
  dependencies:
57
- "@babel/types" "^7.12.11"
57
+ "@babel/types" "^7.14.8"
58
58
  jsesc "^2.5.1"
59
59
  source-map "^0.5.0"
60
60
 
61
- "@babel/helper-annotate-as-pure@^7.10.4":
62
- version "7.12.10"
63
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz#54ab9b000e60a93644ce17b3f37d313aaf1d115d"
64
- integrity sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==
61
+ "@babel/helper-annotate-as-pure@^7.14.5":
62
+ version "7.14.5"
63
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz#7bf478ec3b71726d56a8ca5775b046fc29879e61"
64
+ integrity sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==
65
65
  dependencies:
66
- "@babel/types" "^7.12.10"
66
+ "@babel/types" "^7.14.5"
67
67
 
68
- "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
69
- version "7.10.4"
70
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
71
- integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
68
+ "@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5":
69
+ version "7.14.5"
70
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz#b939b43f8c37765443a19ae74ad8b15978e0a191"
71
+ integrity sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==
72
72
  dependencies:
73
- "@babel/helper-explode-assignable-expression" "^7.10.4"
74
- "@babel/types" "^7.10.4"
73
+ "@babel/helper-explode-assignable-expression" "^7.14.5"
74
+ "@babel/types" "^7.14.5"
75
75
 
76
- "@babel/helper-compilation-targets@^7.12.5":
77
- version "7.12.5"
78
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831"
79
- integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==
76
+ "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5":
77
+ version "7.14.5"
78
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf"
79
+ integrity sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==
80
80
  dependencies:
81
- "@babel/compat-data" "^7.12.5"
82
- "@babel/helper-validator-option" "^7.12.1"
83
- browserslist "^4.14.5"
84
- semver "^5.5.0"
81
+ "@babel/compat-data" "^7.14.5"
82
+ "@babel/helper-validator-option" "^7.14.5"
83
+ browserslist "^4.16.6"
84
+ semver "^6.3.0"
85
85
 
86
- "@babel/helper-create-class-features-plugin@^7.12.1":
87
- version "7.12.1"
88
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e"
89
- integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==
86
+ "@babel/helper-create-class-features-plugin@^7.14.5":
87
+ version "7.14.8"
88
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.8.tgz#a6f8c3de208b1e5629424a9a63567f56501955fc"
89
+ integrity sha512-bpYvH8zJBWzeqi1o+co8qOrw+EXzQ/0c74gVmY205AWXy9nifHrOg77y+1zwxX5lXE7Icq4sPlSQ4O2kWBrteQ==
90
90
  dependencies:
91
- "@babel/helper-function-name" "^7.10.4"
92
- "@babel/helper-member-expression-to-functions" "^7.12.1"
93
- "@babel/helper-optimise-call-expression" "^7.10.4"
94
- "@babel/helper-replace-supers" "^7.12.1"
95
- "@babel/helper-split-export-declaration" "^7.10.4"
91
+ "@babel/helper-annotate-as-pure" "^7.14.5"
92
+ "@babel/helper-function-name" "^7.14.5"
93
+ "@babel/helper-member-expression-to-functions" "^7.14.7"
94
+ "@babel/helper-optimise-call-expression" "^7.14.5"
95
+ "@babel/helper-replace-supers" "^7.14.5"
96
+ "@babel/helper-split-export-declaration" "^7.14.5"
96
97
 
97
- "@babel/helper-create-regexp-features-plugin@^7.12.1":
98
- version "7.12.7"
99
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f"
100
- integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==
98
+ "@babel/helper-create-regexp-features-plugin@^7.14.5":
99
+ version "7.14.5"
100
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4"
101
+ integrity sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==
101
102
  dependencies:
102
- "@babel/helper-annotate-as-pure" "^7.10.4"
103
+ "@babel/helper-annotate-as-pure" "^7.14.5"
103
104
  regexpu-core "^4.7.1"
104
105
 
105
- "@babel/helper-define-map@^7.10.4":
106
- version "7.10.5"
107
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
108
- integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
106
+ "@babel/helper-define-polyfill-provider@^0.2.2":
107
+ version "0.2.3"
108
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6"
109
+ integrity sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==
109
110
  dependencies:
110
- "@babel/helper-function-name" "^7.10.4"
111
- "@babel/types" "^7.10.5"
112
- lodash "^4.17.19"
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.10.4":
115
- version "7.12.1"
116
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633"
117
- integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==
120
+ "@babel/helper-explode-assignable-expression@^7.14.5":
121
+ version "7.14.5"
122
+ resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz#8aa72e708205c7bb643e45c73b4386cdf2a1f645"
123
+ integrity sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==
118
124
  dependencies:
119
- "@babel/types" "^7.12.1"
120
-
121
- "@babel/helper-function-name@^7.10.4":
122
- version "7.12.11"
123
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz#1fd7738aee5dcf53c3ecff24f1da9c511ec47b42"
124
- integrity sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==
125
+ "@babel/types" "^7.14.5"
126
+
127
+ "@babel/helper-function-name@^7.14.5":
128
+ version "7.14.5"
129
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4"
130
+ integrity sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==
125
131
  dependencies:
126
- "@babel/helper-get-function-arity" "^7.12.10"
127
- "@babel/template" "^7.12.7"
128
- "@babel/types" "^7.12.11"
132
+ "@babel/helper-get-function-arity" "^7.14.5"
133
+ "@babel/template" "^7.14.5"
134
+ "@babel/types" "^7.14.5"
129
135
 
130
- "@babel/helper-get-function-arity@^7.12.10":
131
- version "7.12.10"
132
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz#b158817a3165b5faa2047825dfa61970ddcc16cf"
133
- integrity sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==
136
+ "@babel/helper-get-function-arity@^7.14.5":
137
+ version "7.14.5"
138
+ resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815"
139
+ integrity sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==
134
140
  dependencies:
135
- "@babel/types" "^7.12.10"
141
+ "@babel/types" "^7.14.5"
142
+
143
+ "@babel/helper-hoist-variables@^7.14.5":
144
+ version "7.14.5"
145
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d"
146
+ integrity sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==
147
+ dependencies:
148
+ "@babel/types" "^7.14.5"
136
149
 
137
- "@babel/helper-hoist-variables@^7.10.4":
138
- version "7.10.4"
139
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
140
- integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
141
- dependencies:
142
- "@babel/types" "^7.10.4"
143
-
144
- "@babel/helper-member-expression-to-functions@^7.12.1", "@babel/helper-member-expression-to-functions@^7.12.7":
145
- version "7.12.7"
146
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855"
147
- integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==
148
- dependencies:
149
- "@babel/types" "^7.12.7"
150
-
151
- "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5":
152
- version "7.12.5"
153
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb"
154
- integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
155
- dependencies:
156
- "@babel/types" "^7.12.5"
157
-
158
- "@babel/helper-module-transforms@^7.12.1":
159
- version "7.12.1"
160
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c"
161
- integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==
162
- dependencies:
163
- "@babel/helper-module-imports" "^7.12.1"
164
- "@babel/helper-replace-supers" "^7.12.1"
165
- "@babel/helper-simple-access" "^7.12.1"
166
- "@babel/helper-split-export-declaration" "^7.11.0"
167
- "@babel/helper-validator-identifier" "^7.10.4"
168
- "@babel/template" "^7.10.4"
169
- "@babel/traverse" "^7.12.1"
170
- "@babel/types" "^7.12.1"
171
- lodash "^4.17.19"
172
-
173
- "@babel/helper-optimise-call-expression@^7.10.4", "@babel/helper-optimise-call-expression@^7.12.10":
174
- version "7.12.10"
175
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz#94ca4e306ee11a7dd6e9f42823e2ac6b49881e2d"
176
- integrity sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==
177
- dependencies:
178
- "@babel/types" "^7.12.10"
179
-
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.10.4"
182
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
183
- integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
184
-
185
- "@babel/helper-remap-async-to-generator@^7.12.1":
186
- version "7.12.1"
187
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd"
188
- integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==
189
- dependencies:
190
- "@babel/helper-annotate-as-pure" "^7.10.4"
191
- "@babel/helper-wrap-function" "^7.10.4"
192
- "@babel/types" "^7.12.1"
193
-
194
- "@babel/helper-replace-supers@^7.12.1":
195
- version "7.12.11"
196
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz#ea511658fc66c7908f923106dd88e08d1997d60d"
197
- integrity sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==
198
- dependencies:
199
- "@babel/helper-member-expression-to-functions" "^7.12.7"
200
- "@babel/helper-optimise-call-expression" "^7.12.10"
201
- "@babel/traverse" "^7.12.10"
202
- "@babel/types" "^7.12.11"
203
-
204
- "@babel/helper-simple-access@^7.12.1":
205
- version "7.12.1"
206
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136"
207
- integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==
208
- dependencies:
209
- "@babel/types" "^7.12.1"
210
-
211
- "@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
212
- version "7.12.1"
213
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf"
214
- integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==
215
- dependencies:
216
- "@babel/types" "^7.12.1"
217
-
218
- "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
219
- version "7.12.11"
220
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz#1b4cc424458643c47d37022223da33d76ea4603a"
221
- integrity sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==
222
- dependencies:
223
- "@babel/types" "^7.12.11"
224
-
225
- "@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11":
226
- version "7.12.11"
227
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
228
- integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
229
-
230
- "@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.11":
231
- version "7.12.11"
232
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz#d66cb8b7a3e7fe4c6962b32020a131ecf0847f4f"
233
- integrity sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==
234
-
235
- "@babel/helper-wrap-function@^7.10.4":
236
- version "7.12.3"
237
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9"
238
- integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==
239
- dependencies:
240
- "@babel/helper-function-name" "^7.10.4"
241
- "@babel/template" "^7.10.4"
242
- "@babel/traverse" "^7.10.4"
243
- "@babel/types" "^7.10.4"
244
-
245
- "@babel/helpers@^7.12.5":
246
- version "7.12.5"
247
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e"
248
- integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
249
- dependencies:
250
- "@babel/template" "^7.10.4"
251
- "@babel/traverse" "^7.12.5"
252
- "@babel/types" "^7.12.5"
253
-
254
- "@babel/highlight@^7.10.4", "@babel/highlight@^7.8.3":
255
- version "7.10.4"
256
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
257
- integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
258
- dependencies:
259
- "@babel/helper-validator-identifier" "^7.10.4"
150
+ "@babel/helper-member-expression-to-functions@^7.14.5", "@babel/helper-member-expression-to-functions@^7.14.7":
151
+ version "7.14.7"
152
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz#97e56244beb94211fe277bd818e3a329c66f7970"
153
+ integrity sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==
154
+ dependencies:
155
+ "@babel/types" "^7.14.5"
156
+
157
+ "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5":
158
+ version "7.14.5"
159
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3"
160
+ integrity sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==
161
+ dependencies:
162
+ "@babel/types" "^7.14.5"
163
+
164
+ "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.14.8":
165
+ version "7.14.8"
166
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.8.tgz#d4279f7e3fd5f4d5d342d833af36d4dd87d7dc49"
167
+ integrity sha512-RyE+NFOjXn5A9YU1dkpeBaduagTlZ0+fccnIcAGbv1KGUlReBj7utF7oEth8IdIBQPcux0DDgW5MFBH2xu9KcA==
168
+ dependencies:
169
+ "@babel/helper-module-imports" "^7.14.5"
170
+ "@babel/helper-replace-supers" "^7.14.5"
171
+ "@babel/helper-simple-access" "^7.14.8"
172
+ "@babel/helper-split-export-declaration" "^7.14.5"
173
+ "@babel/helper-validator-identifier" "^7.14.8"
174
+ "@babel/template" "^7.14.5"
175
+ "@babel/traverse" "^7.14.8"
176
+ "@babel/types" "^7.14.8"
177
+
178
+ "@babel/helper-optimise-call-expression@^7.14.5":
179
+ version "7.14.5"
180
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c"
181
+ integrity sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==
182
+ dependencies:
183
+ "@babel/types" "^7.14.5"
184
+
185
+ "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
186
+ version "7.14.5"
187
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9"
188
+ integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==
189
+
190
+ "@babel/helper-remap-async-to-generator@^7.14.5":
191
+ version "7.14.5"
192
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz#51439c913612958f54a987a4ffc9ee587a2045d6"
193
+ integrity sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==
194
+ dependencies:
195
+ "@babel/helper-annotate-as-pure" "^7.14.5"
196
+ "@babel/helper-wrap-function" "^7.14.5"
197
+ "@babel/types" "^7.14.5"
198
+
199
+ "@babel/helper-replace-supers@^7.14.5":
200
+ version "7.14.5"
201
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94"
202
+ integrity sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==
203
+ dependencies:
204
+ "@babel/helper-member-expression-to-functions" "^7.14.5"
205
+ "@babel/helper-optimise-call-expression" "^7.14.5"
206
+ "@babel/traverse" "^7.14.5"
207
+ "@babel/types" "^7.14.5"
208
+
209
+ "@babel/helper-simple-access@^7.14.5", "@babel/helper-simple-access@^7.14.8":
210
+ version "7.14.8"
211
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz#82e1fec0644a7e775c74d305f212c39f8fe73924"
212
+ integrity sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==
213
+ dependencies:
214
+ "@babel/types" "^7.14.8"
215
+
216
+ "@babel/helper-skip-transparent-expression-wrappers@^7.14.5":
217
+ version "7.14.5"
218
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz#96f486ac050ca9f44b009fbe5b7d394cab3a0ee4"
219
+ integrity sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==
220
+ dependencies:
221
+ "@babel/types" "^7.14.5"
222
+
223
+ "@babel/helper-split-export-declaration@^7.14.5":
224
+ version "7.14.5"
225
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a"
226
+ integrity sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==
227
+ dependencies:
228
+ "@babel/types" "^7.14.5"
229
+
230
+ "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.8":
231
+ version "7.14.8"
232
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz#32be33a756f29e278a0d644fa08a2c9e0f88a34c"
233
+ integrity sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow==
234
+
235
+ "@babel/helper-validator-option@^7.14.5":
236
+ version "7.14.5"
237
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3"
238
+ integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==
239
+
240
+ "@babel/helper-wrap-function@^7.14.5":
241
+ version "7.14.5"
242
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz#5919d115bf0fe328b8a5d63bcb610f51601f2bff"
243
+ integrity sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==
244
+ dependencies:
245
+ "@babel/helper-function-name" "^7.14.5"
246
+ "@babel/template" "^7.14.5"
247
+ "@babel/traverse" "^7.14.5"
248
+ "@babel/types" "^7.14.5"
249
+
250
+ "@babel/helpers@^7.14.8":
251
+ version "7.14.8"
252
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.8.tgz#839f88f463025886cff7f85a35297007e2da1b77"
253
+ integrity sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw==
254
+ dependencies:
255
+ "@babel/template" "^7.14.5"
256
+ "@babel/traverse" "^7.14.8"
257
+ "@babel/types" "^7.14.8"
258
+
259
+ "@babel/highlight@^7.14.5", "@babel/highlight@^7.8.3":
260
+ version "7.14.5"
261
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
262
+ integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==
263
+ dependencies:
264
+ "@babel/helper-validator-identifier" "^7.14.5"
260
265
  chalk "^2.0.0"
261
266
  js-tokens "^4.0.0"
262
267
 
@@ -265,133 +270,170 @@
265
270
  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
266
271
  integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
267
272
 
268
- "@babel/parser@^7.12.10", "@babel/parser@^7.12.7":
269
- version "7.12.11"
270
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79"
271
- integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==
272
-
273
- "@babel/plugin-proposal-async-generator-functions@^7.12.1":
274
- version "7.12.1"
275
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e"
276
- integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==
277
- dependencies:
278
- "@babel/helper-plugin-utils" "^7.10.4"
279
- "@babel/helper-remap-async-to-generator" "^7.12.1"
280
- "@babel/plugin-syntax-async-generators" "^7.8.0"
281
-
282
- "@babel/plugin-proposal-class-properties@^7.12.1":
283
- version "7.12.1"
284
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de"
285
- integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
286
- dependencies:
287
- "@babel/helper-create-class-features-plugin" "^7.12.1"
288
- "@babel/helper-plugin-utils" "^7.10.4"
289
-
290
- "@babel/plugin-proposal-dynamic-import@^7.12.1":
291
- version "7.12.1"
292
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc"
293
- integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==
294
- dependencies:
295
- "@babel/helper-plugin-utils" "^7.10.4"
296
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
273
+ "@babel/parser@^7.14.5", "@babel/parser@^7.14.8":
274
+ version "7.14.8"
275
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.8.tgz#66fd41666b2d7b840bd5ace7f7416d5ac60208d4"
276
+ integrity sha512-syoCQFOoo/fzkWDeM0dLEZi5xqurb5vuyzwIMNZRNun+N/9A4cUZeQaE7dTrB8jGaKuJRBtEOajtnmw0I5hvvA==
297
277
 
298
- "@babel/plugin-proposal-export-namespace-from@^7.12.1":
299
- version "7.12.1"
300
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4"
301
- integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==
278
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5":
279
+ version "7.14.5"
280
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz#4b467302e1548ed3b1be43beae2cc9cf45e0bb7e"
281
+ integrity sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==
302
282
  dependencies:
303
- "@babel/helper-plugin-utils" "^7.10.4"
304
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
283
+ "@babel/helper-plugin-utils" "^7.14.5"
284
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
285
+ "@babel/plugin-proposal-optional-chaining" "^7.14.5"
305
286
 
306
- "@babel/plugin-proposal-json-strings@^7.12.1":
307
- version "7.12.1"
308
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c"
309
- integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==
287
+ "@babel/plugin-proposal-async-generator-functions@^7.14.7":
288
+ version "7.14.7"
289
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.7.tgz#784a48c3d8ed073f65adcf30b57bcbf6c8119ace"
290
+ integrity sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q==
310
291
  dependencies:
311
- "@babel/helper-plugin-utils" "^7.10.4"
312
- "@babel/plugin-syntax-json-strings" "^7.8.0"
292
+ "@babel/helper-plugin-utils" "^7.14.5"
293
+ "@babel/helper-remap-async-to-generator" "^7.14.5"
294
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
313
295
 
314
- "@babel/plugin-proposal-logical-assignment-operators@^7.12.1":
315
- version "7.12.1"
316
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751"
317
- integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==
296
+ "@babel/plugin-proposal-class-properties@^7.14.5":
297
+ version "7.14.5"
298
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e"
299
+ integrity sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==
318
300
  dependencies:
319
- "@babel/helper-plugin-utils" "^7.10.4"
320
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
301
+ "@babel/helper-create-class-features-plugin" "^7.14.5"
302
+ "@babel/helper-plugin-utils" "^7.14.5"
321
303
 
322
- "@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1":
323
- version "7.12.1"
324
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c"
325
- integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==
304
+ "@babel/plugin-proposal-class-static-block@^7.14.5":
305
+ version "7.14.5"
306
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz#158e9e10d449c3849ef3ecde94a03d9f1841b681"
307
+ integrity sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==
326
308
  dependencies:
327
- "@babel/helper-plugin-utils" "^7.10.4"
328
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
309
+ "@babel/helper-create-class-features-plugin" "^7.14.5"
310
+ "@babel/helper-plugin-utils" "^7.14.5"
311
+ "@babel/plugin-syntax-class-static-block" "^7.14.5"
329
312
 
330
- "@babel/plugin-proposal-numeric-separator@^7.12.7":
331
- version "7.12.7"
332
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b"
333
- integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==
313
+ "@babel/plugin-proposal-dynamic-import@^7.14.5":
314
+ version "7.14.5"
315
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz#0c6617df461c0c1f8fff3b47cd59772360101d2c"
316
+ integrity sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==
334
317
  dependencies:
335
- "@babel/helper-plugin-utils" "^7.10.4"
336
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
318
+ "@babel/helper-plugin-utils" "^7.14.5"
319
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
337
320
 
338
- "@babel/plugin-proposal-object-rest-spread@^7.12.1":
339
- version "7.12.1"
340
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069"
341
- integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
321
+ "@babel/plugin-proposal-export-namespace-from@^7.14.5":
322
+ version "7.14.5"
323
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz#dbad244310ce6ccd083072167d8cea83a52faf76"
324
+ integrity sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==
342
325
  dependencies:
343
- "@babel/helper-plugin-utils" "^7.10.4"
344
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
345
- "@babel/plugin-transform-parameters" "^7.12.1"
326
+ "@babel/helper-plugin-utils" "^7.14.5"
327
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
346
328
 
347
- "@babel/plugin-proposal-optional-catch-binding@^7.12.1":
348
- version "7.12.1"
349
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942"
350
- integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==
329
+ "@babel/plugin-proposal-json-strings@^7.14.5":
330
+ version "7.14.5"
331
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz#38de60db362e83a3d8c944ac858ddf9f0c2239eb"
332
+ integrity sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==
351
333
  dependencies:
352
- "@babel/helper-plugin-utils" "^7.10.4"
353
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
334
+ "@babel/helper-plugin-utils" "^7.14.5"
335
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
354
336
 
355
- "@babel/plugin-proposal-optional-chaining@^7.12.7":
356
- version "7.12.7"
357
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c"
358
- integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==
337
+ "@babel/plugin-proposal-logical-assignment-operators@^7.14.5":
338
+ version "7.14.5"
339
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz#6e6229c2a99b02ab2915f82571e0cc646a40c738"
340
+ integrity sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==
359
341
  dependencies:
360
- "@babel/helper-plugin-utils" "^7.10.4"
361
- "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
362
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
342
+ "@babel/helper-plugin-utils" "^7.14.5"
343
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
363
344
 
364
- "@babel/plugin-proposal-private-methods@^7.12.1":
365
- version "7.12.1"
366
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389"
367
- integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==
345
+ "@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5":
346
+ version "7.14.5"
347
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz#ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6"
348
+ integrity sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==
368
349
  dependencies:
369
- "@babel/helper-create-class-features-plugin" "^7.12.1"
370
- "@babel/helper-plugin-utils" "^7.10.4"
350
+ "@babel/helper-plugin-utils" "^7.14.5"
351
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
371
352
 
372
- "@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
373
- version "7.12.1"
374
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072"
375
- integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==
353
+ "@babel/plugin-proposal-numeric-separator@^7.14.5":
354
+ version "7.14.5"
355
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz#83631bf33d9a51df184c2102a069ac0c58c05f18"
356
+ integrity sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==
376
357
  dependencies:
377
- "@babel/helper-create-regexp-features-plugin" "^7.12.1"
378
- "@babel/helper-plugin-utils" "^7.10.4"
358
+ "@babel/helper-plugin-utils" "^7.14.5"
359
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
379
360
 
380
- "@babel/plugin-syntax-async-generators@^7.8.0":
361
+ "@babel/plugin-proposal-object-rest-spread@^7.14.7":
362
+ version "7.14.7"
363
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz#5920a2b3df7f7901df0205974c0641b13fd9d363"
364
+ integrity sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==
365
+ dependencies:
366
+ "@babel/compat-data" "^7.14.7"
367
+ "@babel/helper-compilation-targets" "^7.14.5"
368
+ "@babel/helper-plugin-utils" "^7.14.5"
369
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
370
+ "@babel/plugin-transform-parameters" "^7.14.5"
371
+
372
+ "@babel/plugin-proposal-optional-catch-binding@^7.14.5":
373
+ version "7.14.5"
374
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz#939dd6eddeff3a67fdf7b3f044b5347262598c3c"
375
+ integrity sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==
376
+ dependencies:
377
+ "@babel/helper-plugin-utils" "^7.14.5"
378
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
379
+
380
+ "@babel/plugin-proposal-optional-chaining@^7.14.5":
381
+ version "7.14.5"
382
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz#fa83651e60a360e3f13797eef00b8d519695b603"
383
+ integrity sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==
384
+ dependencies:
385
+ "@babel/helper-plugin-utils" "^7.14.5"
386
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
387
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
388
+
389
+ "@babel/plugin-proposal-private-methods@^7.14.5":
390
+ version "7.14.5"
391
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz#37446495996b2945f30f5be5b60d5e2aa4f5792d"
392
+ integrity sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==
393
+ dependencies:
394
+ "@babel/helper-create-class-features-plugin" "^7.14.5"
395
+ "@babel/helper-plugin-utils" "^7.14.5"
396
+
397
+ "@babel/plugin-proposal-private-property-in-object@^7.14.5":
398
+ version "7.14.5"
399
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz#9f65a4d0493a940b4c01f8aa9d3f1894a587f636"
400
+ integrity sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==
401
+ dependencies:
402
+ "@babel/helper-annotate-as-pure" "^7.14.5"
403
+ "@babel/helper-create-class-features-plugin" "^7.14.5"
404
+ "@babel/helper-plugin-utils" "^7.14.5"
405
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
406
+
407
+ "@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
408
+ version "7.14.5"
409
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz#0f95ee0e757a5d647f378daa0eca7e93faa8bbe8"
410
+ integrity sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==
411
+ dependencies:
412
+ "@babel/helper-create-regexp-features-plugin" "^7.14.5"
413
+ "@babel/helper-plugin-utils" "^7.14.5"
414
+
415
+ "@babel/plugin-syntax-async-generators@^7.8.4":
381
416
  version "7.8.4"
382
417
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
383
418
  integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
384
419
  dependencies:
385
420
  "@babel/helper-plugin-utils" "^7.8.0"
386
421
 
387
- "@babel/plugin-syntax-class-properties@^7.12.1":
388
- version "7.12.1"
389
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978"
390
- integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==
422
+ "@babel/plugin-syntax-class-properties@^7.12.13":
423
+ version "7.12.13"
424
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
425
+ integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
391
426
  dependencies:
392
- "@babel/helper-plugin-utils" "^7.10.4"
427
+ "@babel/helper-plugin-utils" "^7.12.13"
428
+
429
+ "@babel/plugin-syntax-class-static-block@^7.14.5":
430
+ version "7.14.5"
431
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
432
+ integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
433
+ dependencies:
434
+ "@babel/helper-plugin-utils" "^7.14.5"
393
435
 
394
- "@babel/plugin-syntax-dynamic-import@^7.8.0":
436
+ "@babel/plugin-syntax-dynamic-import@^7.8.3":
395
437
  version "7.8.3"
396
438
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
397
439
  integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
@@ -405,7 +447,7 @@
405
447
  dependencies:
406
448
  "@babel/helper-plugin-utils" "^7.8.3"
407
449
 
408
- "@babel/plugin-syntax-json-strings@^7.8.0":
450
+ "@babel/plugin-syntax-json-strings@^7.8.3":
409
451
  version "7.8.3"
410
452
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
411
453
  integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
@@ -419,7 +461,7 @@
419
461
  dependencies:
420
462
  "@babel/helper-plugin-utils" "^7.10.4"
421
463
 
422
- "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
464
+ "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
423
465
  version "7.8.3"
424
466
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
425
467
  integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
@@ -433,356 +475,369 @@
433
475
  dependencies:
434
476
  "@babel/helper-plugin-utils" "^7.10.4"
435
477
 
436
- "@babel/plugin-syntax-object-rest-spread@^7.8.0":
478
+ "@babel/plugin-syntax-object-rest-spread@^7.8.3":
437
479
  version "7.8.3"
438
480
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
439
481
  integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
440
482
  dependencies:
441
483
  "@babel/helper-plugin-utils" "^7.8.0"
442
484
 
443
- "@babel/plugin-syntax-optional-catch-binding@^7.8.0":
485
+ "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
444
486
  version "7.8.3"
445
487
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
446
488
  integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
447
489
  dependencies:
448
490
  "@babel/helper-plugin-utils" "^7.8.0"
449
491
 
450
- "@babel/plugin-syntax-optional-chaining@^7.8.0":
492
+ "@babel/plugin-syntax-optional-chaining@^7.8.3":
451
493
  version "7.8.3"
452
494
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
453
495
  integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
454
496
  dependencies:
455
497
  "@babel/helper-plugin-utils" "^7.8.0"
456
498
 
457
- "@babel/plugin-syntax-top-level-await@^7.12.1":
458
- version "7.12.1"
459
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0"
460
- integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==
499
+ "@babel/plugin-syntax-private-property-in-object@^7.14.5":
500
+ version "7.14.5"
501
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
502
+ integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
461
503
  dependencies:
462
- "@babel/helper-plugin-utils" "^7.10.4"
504
+ "@babel/helper-plugin-utils" "^7.14.5"
463
505
 
464
- "@babel/plugin-transform-arrow-functions@^7.12.1":
465
- version "7.12.1"
466
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3"
467
- integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==
506
+ "@babel/plugin-syntax-top-level-await@^7.14.5":
507
+ version "7.14.5"
508
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
509
+ integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
468
510
  dependencies:
469
- "@babel/helper-plugin-utils" "^7.10.4"
511
+ "@babel/helper-plugin-utils" "^7.14.5"
470
512
 
471
- "@babel/plugin-transform-async-to-generator@^7.12.1":
472
- version "7.12.1"
473
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1"
474
- integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==
513
+ "@babel/plugin-transform-arrow-functions@^7.14.5":
514
+ version "7.14.5"
515
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a"
516
+ integrity sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==
475
517
  dependencies:
476
- "@babel/helper-module-imports" "^7.12.1"
477
- "@babel/helper-plugin-utils" "^7.10.4"
478
- "@babel/helper-remap-async-to-generator" "^7.12.1"
518
+ "@babel/helper-plugin-utils" "^7.14.5"
479
519
 
480
- "@babel/plugin-transform-block-scoped-functions@^7.12.1":
481
- version "7.12.1"
482
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9"
483
- integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==
520
+ "@babel/plugin-transform-async-to-generator@^7.14.5":
521
+ version "7.14.5"
522
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz#72c789084d8f2094acb945633943ef8443d39e67"
523
+ integrity sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==
484
524
  dependencies:
485
- "@babel/helper-plugin-utils" "^7.10.4"
525
+ "@babel/helper-module-imports" "^7.14.5"
526
+ "@babel/helper-plugin-utils" "^7.14.5"
527
+ "@babel/helper-remap-async-to-generator" "^7.14.5"
486
528
 
487
- "@babel/plugin-transform-block-scoping@^7.12.11":
488
- version "7.12.11"
489
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.11.tgz#83ae92a104dbb93a7d6c6dd1844f351083c46b4f"
490
- integrity sha512-atR1Rxc3hM+VPg/NvNvfYw0npQEAcHuJ+MGZnFn6h3bo+1U3BWXMdFMlvVRApBTWKQMX7SOwRJZA5FBF/JQbvA==
529
+ "@babel/plugin-transform-block-scoped-functions@^7.14.5":
530
+ version "7.14.5"
531
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4"
532
+ integrity sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==
491
533
  dependencies:
492
- "@babel/helper-plugin-utils" "^7.10.4"
534
+ "@babel/helper-plugin-utils" "^7.14.5"
493
535
 
494
- "@babel/plugin-transform-classes@^7.12.1":
495
- version "7.12.1"
496
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6"
497
- integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==
536
+ "@babel/plugin-transform-block-scoping@^7.14.5":
537
+ version "7.14.5"
538
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz#8cc63e61e50f42e078e6f09be775a75f23ef9939"
539
+ integrity sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==
498
540
  dependencies:
499
- "@babel/helper-annotate-as-pure" "^7.10.4"
500
- "@babel/helper-define-map" "^7.10.4"
501
- "@babel/helper-function-name" "^7.10.4"
502
- "@babel/helper-optimise-call-expression" "^7.10.4"
503
- "@babel/helper-plugin-utils" "^7.10.4"
504
- "@babel/helper-replace-supers" "^7.12.1"
505
- "@babel/helper-split-export-declaration" "^7.10.4"
541
+ "@babel/helper-plugin-utils" "^7.14.5"
542
+
543
+ "@babel/plugin-transform-classes@^7.14.5":
544
+ version "7.14.5"
545
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz#0e98e82097b38550b03b483f9b51a78de0acb2cf"
546
+ integrity sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA==
547
+ dependencies:
548
+ "@babel/helper-annotate-as-pure" "^7.14.5"
549
+ "@babel/helper-function-name" "^7.14.5"
550
+ "@babel/helper-optimise-call-expression" "^7.14.5"
551
+ "@babel/helper-plugin-utils" "^7.14.5"
552
+ "@babel/helper-replace-supers" "^7.14.5"
553
+ "@babel/helper-split-export-declaration" "^7.14.5"
506
554
  globals "^11.1.0"
507
555
 
508
- "@babel/plugin-transform-computed-properties@^7.12.1":
509
- version "7.12.1"
510
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852"
511
- integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==
556
+ "@babel/plugin-transform-computed-properties@^7.14.5":
557
+ version "7.14.5"
558
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f"
559
+ integrity sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==
512
560
  dependencies:
513
- "@babel/helper-plugin-utils" "^7.10.4"
561
+ "@babel/helper-plugin-utils" "^7.14.5"
514
562
 
515
- "@babel/plugin-transform-destructuring@^7.12.1":
516
- version "7.12.1"
517
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847"
518
- integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==
563
+ "@babel/plugin-transform-destructuring@^7.14.7":
564
+ version "7.14.7"
565
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz#0ad58ed37e23e22084d109f185260835e5557576"
566
+ integrity sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==
519
567
  dependencies:
520
- "@babel/helper-plugin-utils" "^7.10.4"
568
+ "@babel/helper-plugin-utils" "^7.14.5"
521
569
 
522
- "@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.4.4":
523
- version "7.12.1"
524
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975"
525
- integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==
570
+ "@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4":
571
+ version "7.14.5"
572
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz#2f6bf76e46bdf8043b4e7e16cf24532629ba0c7a"
573
+ integrity sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==
526
574
  dependencies:
527
- "@babel/helper-create-regexp-features-plugin" "^7.12.1"
528
- "@babel/helper-plugin-utils" "^7.10.4"
575
+ "@babel/helper-create-regexp-features-plugin" "^7.14.5"
576
+ "@babel/helper-plugin-utils" "^7.14.5"
529
577
 
530
- "@babel/plugin-transform-duplicate-keys@^7.12.1":
531
- version "7.12.1"
532
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228"
533
- integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==
578
+ "@babel/plugin-transform-duplicate-keys@^7.14.5":
579
+ version "7.14.5"
580
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz#365a4844881bdf1501e3a9f0270e7f0f91177954"
581
+ integrity sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==
534
582
  dependencies:
535
- "@babel/helper-plugin-utils" "^7.10.4"
583
+ "@babel/helper-plugin-utils" "^7.14.5"
536
584
 
537
- "@babel/plugin-transform-exponentiation-operator@^7.12.1":
538
- version "7.12.1"
539
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0"
540
- integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==
585
+ "@babel/plugin-transform-exponentiation-operator@^7.14.5":
586
+ version "7.14.5"
587
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz#5154b8dd6a3dfe6d90923d61724bd3deeb90b493"
588
+ integrity sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==
541
589
  dependencies:
542
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
543
- "@babel/helper-plugin-utils" "^7.10.4"
590
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5"
591
+ "@babel/helper-plugin-utils" "^7.14.5"
544
592
 
545
- "@babel/plugin-transform-for-of@^7.12.1":
546
- version "7.12.1"
547
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa"
548
- integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==
593
+ "@babel/plugin-transform-for-of@^7.14.5":
594
+ version "7.14.5"
595
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz#dae384613de8f77c196a8869cbf602a44f7fc0eb"
596
+ integrity sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==
549
597
  dependencies:
550
- "@babel/helper-plugin-utils" "^7.10.4"
598
+ "@babel/helper-plugin-utils" "^7.14.5"
551
599
 
552
- "@babel/plugin-transform-function-name@^7.12.1":
553
- version "7.12.1"
554
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667"
555
- integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==
600
+ "@babel/plugin-transform-function-name@^7.14.5":
601
+ version "7.14.5"
602
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2"
603
+ integrity sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==
556
604
  dependencies:
557
- "@babel/helper-function-name" "^7.10.4"
558
- "@babel/helper-plugin-utils" "^7.10.4"
605
+ "@babel/helper-function-name" "^7.14.5"
606
+ "@babel/helper-plugin-utils" "^7.14.5"
559
607
 
560
- "@babel/plugin-transform-literals@^7.12.1":
561
- version "7.12.1"
562
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57"
563
- integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==
608
+ "@babel/plugin-transform-literals@^7.14.5":
609
+ version "7.14.5"
610
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78"
611
+ integrity sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==
564
612
  dependencies:
565
- "@babel/helper-plugin-utils" "^7.10.4"
613
+ "@babel/helper-plugin-utils" "^7.14.5"
566
614
 
567
- "@babel/plugin-transform-member-expression-literals@^7.12.1":
568
- version "7.12.1"
569
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad"
570
- integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==
615
+ "@babel/plugin-transform-member-expression-literals@^7.14.5":
616
+ version "7.14.5"
617
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7"
618
+ integrity sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==
571
619
  dependencies:
572
- "@babel/helper-plugin-utils" "^7.10.4"
620
+ "@babel/helper-plugin-utils" "^7.14.5"
573
621
 
574
- "@babel/plugin-transform-modules-amd@^7.12.1":
575
- version "7.12.1"
576
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9"
577
- integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==
622
+ "@babel/plugin-transform-modules-amd@^7.14.5":
623
+ version "7.14.5"
624
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz#4fd9ce7e3411cb8b83848480b7041d83004858f7"
625
+ integrity sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==
578
626
  dependencies:
579
- "@babel/helper-module-transforms" "^7.12.1"
580
- "@babel/helper-plugin-utils" "^7.10.4"
627
+ "@babel/helper-module-transforms" "^7.14.5"
628
+ "@babel/helper-plugin-utils" "^7.14.5"
581
629
  babel-plugin-dynamic-import-node "^2.3.3"
582
630
 
583
- "@babel/plugin-transform-modules-commonjs@^7.12.1":
584
- version "7.12.1"
585
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648"
586
- integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==
631
+ "@babel/plugin-transform-modules-commonjs@^7.14.5":
632
+ version "7.14.5"
633
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz#7aaee0ea98283de94da98b28f8c35701429dad97"
634
+ integrity sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A==
587
635
  dependencies:
588
- "@babel/helper-module-transforms" "^7.12.1"
589
- "@babel/helper-plugin-utils" "^7.10.4"
590
- "@babel/helper-simple-access" "^7.12.1"
636
+ "@babel/helper-module-transforms" "^7.14.5"
637
+ "@babel/helper-plugin-utils" "^7.14.5"
638
+ "@babel/helper-simple-access" "^7.14.5"
591
639
  babel-plugin-dynamic-import-node "^2.3.3"
592
640
 
593
- "@babel/plugin-transform-modules-systemjs@^7.12.1":
594
- version "7.12.1"
595
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086"
596
- integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==
641
+ "@babel/plugin-transform-modules-systemjs@^7.14.5":
642
+ version "7.14.5"
643
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz#c75342ef8b30dcde4295d3401aae24e65638ed29"
644
+ integrity sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==
597
645
  dependencies:
598
- "@babel/helper-hoist-variables" "^7.10.4"
599
- "@babel/helper-module-transforms" "^7.12.1"
600
- "@babel/helper-plugin-utils" "^7.10.4"
601
- "@babel/helper-validator-identifier" "^7.10.4"
646
+ "@babel/helper-hoist-variables" "^7.14.5"
647
+ "@babel/helper-module-transforms" "^7.14.5"
648
+ "@babel/helper-plugin-utils" "^7.14.5"
649
+ "@babel/helper-validator-identifier" "^7.14.5"
602
650
  babel-plugin-dynamic-import-node "^2.3.3"
603
651
 
604
- "@babel/plugin-transform-modules-umd@^7.12.1":
605
- version "7.12.1"
606
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902"
607
- integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==
652
+ "@babel/plugin-transform-modules-umd@^7.14.5":
653
+ version "7.14.5"
654
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz#fb662dfee697cce274a7cda525190a79096aa6e0"
655
+ integrity sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==
608
656
  dependencies:
609
- "@babel/helper-module-transforms" "^7.12.1"
610
- "@babel/helper-plugin-utils" "^7.10.4"
657
+ "@babel/helper-module-transforms" "^7.14.5"
658
+ "@babel/helper-plugin-utils" "^7.14.5"
611
659
 
612
- "@babel/plugin-transform-named-capturing-groups-regex@^7.12.1":
613
- version "7.12.1"
614
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753"
615
- integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==
660
+ "@babel/plugin-transform-named-capturing-groups-regex@^7.14.7":
661
+ version "7.14.7"
662
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.7.tgz#60c06892acf9df231e256c24464bfecb0908fd4e"
663
+ integrity sha512-DTNOTaS7TkW97xsDMrp7nycUVh6sn/eq22VaxWfEdzuEbRsiaOU0pqU7DlyUGHVsbQbSghvjKRpEl+nUCKGQSg==
616
664
  dependencies:
617
- "@babel/helper-create-regexp-features-plugin" "^7.12.1"
665
+ "@babel/helper-create-regexp-features-plugin" "^7.14.5"
618
666
 
619
- "@babel/plugin-transform-new-target@^7.12.1":
620
- version "7.12.1"
621
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0"
622
- integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==
667
+ "@babel/plugin-transform-new-target@^7.14.5":
668
+ version "7.14.5"
669
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz#31bdae8b925dc84076ebfcd2a9940143aed7dbf8"
670
+ integrity sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==
623
671
  dependencies:
624
- "@babel/helper-plugin-utils" "^7.10.4"
672
+ "@babel/helper-plugin-utils" "^7.14.5"
625
673
 
626
- "@babel/plugin-transform-object-super@^7.12.1":
627
- version "7.12.1"
628
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e"
629
- integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==
674
+ "@babel/plugin-transform-object-super@^7.14.5":
675
+ version "7.14.5"
676
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45"
677
+ integrity sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==
630
678
  dependencies:
631
- "@babel/helper-plugin-utils" "^7.10.4"
632
- "@babel/helper-replace-supers" "^7.12.1"
679
+ "@babel/helper-plugin-utils" "^7.14.5"
680
+ "@babel/helper-replace-supers" "^7.14.5"
633
681
 
634
- "@babel/plugin-transform-parameters@^7.12.1":
635
- version "7.12.1"
636
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d"
637
- integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==
682
+ "@babel/plugin-transform-parameters@^7.14.5":
683
+ version "7.14.5"
684
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz#49662e86a1f3ddccac6363a7dfb1ff0a158afeb3"
685
+ integrity sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==
638
686
  dependencies:
639
- "@babel/helper-plugin-utils" "^7.10.4"
687
+ "@babel/helper-plugin-utils" "^7.14.5"
640
688
 
641
- "@babel/plugin-transform-property-literals@^7.12.1":
642
- version "7.12.1"
643
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd"
644
- integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==
689
+ "@babel/plugin-transform-property-literals@^7.14.5":
690
+ version "7.14.5"
691
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34"
692
+ integrity sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==
645
693
  dependencies:
646
- "@babel/helper-plugin-utils" "^7.10.4"
694
+ "@babel/helper-plugin-utils" "^7.14.5"
647
695
 
648
- "@babel/plugin-transform-regenerator@^7.12.1":
649
- version "7.12.1"
650
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753"
651
- integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==
696
+ "@babel/plugin-transform-regenerator@^7.14.5":
697
+ version "7.14.5"
698
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz#9676fd5707ed28f522727c5b3c0aa8544440b04f"
699
+ integrity sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==
652
700
  dependencies:
653
701
  regenerator-transform "^0.14.2"
654
702
 
655
- "@babel/plugin-transform-reserved-words@^7.12.1":
656
- version "7.12.1"
657
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8"
658
- integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==
703
+ "@babel/plugin-transform-reserved-words@^7.14.5":
704
+ version "7.14.5"
705
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz#c44589b661cfdbef8d4300dcc7469dffa92f8304"
706
+ integrity sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==
659
707
  dependencies:
660
- "@babel/helper-plugin-utils" "^7.10.4"
708
+ "@babel/helper-plugin-utils" "^7.14.5"
661
709
 
662
- "@babel/plugin-transform-shorthand-properties@^7.12.1":
663
- version "7.12.1"
664
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3"
665
- integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==
710
+ "@babel/plugin-transform-shorthand-properties@^7.14.5":
711
+ version "7.14.5"
712
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58"
713
+ integrity sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==
666
714
  dependencies:
667
- "@babel/helper-plugin-utils" "^7.10.4"
715
+ "@babel/helper-plugin-utils" "^7.14.5"
668
716
 
669
- "@babel/plugin-transform-spread@^7.12.1":
670
- version "7.12.1"
671
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e"
672
- integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==
717
+ "@babel/plugin-transform-spread@^7.14.6":
718
+ version "7.14.6"
719
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz#6bd40e57fe7de94aa904851963b5616652f73144"
720
+ integrity sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==
673
721
  dependencies:
674
- "@babel/helper-plugin-utils" "^7.10.4"
675
- "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
722
+ "@babel/helper-plugin-utils" "^7.14.5"
723
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
676
724
 
677
- "@babel/plugin-transform-sticky-regex@^7.12.7":
678
- version "7.12.7"
679
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad"
680
- integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==
725
+ "@babel/plugin-transform-sticky-regex@^7.14.5":
726
+ version "7.14.5"
727
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz#5b617542675e8b7761294381f3c28c633f40aeb9"
728
+ integrity sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==
681
729
  dependencies:
682
- "@babel/helper-plugin-utils" "^7.10.4"
730
+ "@babel/helper-plugin-utils" "^7.14.5"
683
731
 
684
- "@babel/plugin-transform-template-literals@^7.12.1":
685
- version "7.12.1"
686
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843"
687
- integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==
732
+ "@babel/plugin-transform-template-literals@^7.14.5":
733
+ version "7.14.5"
734
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93"
735
+ integrity sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==
688
736
  dependencies:
689
- "@babel/helper-plugin-utils" "^7.10.4"
737
+ "@babel/helper-plugin-utils" "^7.14.5"
690
738
 
691
- "@babel/plugin-transform-typeof-symbol@^7.12.10":
692
- version "7.12.10"
693
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz#de01c4c8f96580bd00f183072b0d0ecdcf0dec4b"
694
- integrity sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==
739
+ "@babel/plugin-transform-typeof-symbol@^7.14.5":
740
+ version "7.14.5"
741
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz#39af2739e989a2bd291bf6b53f16981423d457d4"
742
+ integrity sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==
695
743
  dependencies:
696
- "@babel/helper-plugin-utils" "^7.10.4"
744
+ "@babel/helper-plugin-utils" "^7.14.5"
697
745
 
698
- "@babel/plugin-transform-unicode-escapes@^7.12.1":
699
- version "7.12.1"
700
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709"
701
- integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==
746
+ "@babel/plugin-transform-unicode-escapes@^7.14.5":
747
+ version "7.14.5"
748
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz#9d4bd2a681e3c5d7acf4f57fa9e51175d91d0c6b"
749
+ integrity sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==
702
750
  dependencies:
703
- "@babel/helper-plugin-utils" "^7.10.4"
751
+ "@babel/helper-plugin-utils" "^7.14.5"
704
752
 
705
- "@babel/plugin-transform-unicode-regex@^7.12.1":
706
- version "7.12.1"
707
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb"
708
- integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==
753
+ "@babel/plugin-transform-unicode-regex@^7.14.5":
754
+ version "7.14.5"
755
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz#4cd09b6c8425dd81255c7ceb3fb1836e7414382e"
756
+ integrity sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==
709
757
  dependencies:
710
- "@babel/helper-create-regexp-features-plugin" "^7.12.1"
711
- "@babel/helper-plugin-utils" "^7.10.4"
758
+ "@babel/helper-create-regexp-features-plugin" "^7.14.5"
759
+ "@babel/helper-plugin-utils" "^7.14.5"
712
760
 
713
761
  "@babel/preset-env@^7.6.2":
714
- version "7.12.11"
715
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.11.tgz#55d5f7981487365c93dbbc84507b1c7215e857f9"
716
- integrity sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==
717
- dependencies:
718
- "@babel/compat-data" "^7.12.7"
719
- "@babel/helper-compilation-targets" "^7.12.5"
720
- "@babel/helper-module-imports" "^7.12.5"
721
- "@babel/helper-plugin-utils" "^7.10.4"
722
- "@babel/helper-validator-option" "^7.12.11"
723
- "@babel/plugin-proposal-async-generator-functions" "^7.12.1"
724
- "@babel/plugin-proposal-class-properties" "^7.12.1"
725
- "@babel/plugin-proposal-dynamic-import" "^7.12.1"
726
- "@babel/plugin-proposal-export-namespace-from" "^7.12.1"
727
- "@babel/plugin-proposal-json-strings" "^7.12.1"
728
- "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1"
729
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
730
- "@babel/plugin-proposal-numeric-separator" "^7.12.7"
731
- "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
732
- "@babel/plugin-proposal-optional-catch-binding" "^7.12.1"
733
- "@babel/plugin-proposal-optional-chaining" "^7.12.7"
734
- "@babel/plugin-proposal-private-methods" "^7.12.1"
735
- "@babel/plugin-proposal-unicode-property-regex" "^7.12.1"
736
- "@babel/plugin-syntax-async-generators" "^7.8.0"
737
- "@babel/plugin-syntax-class-properties" "^7.12.1"
738
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
762
+ version "7.14.8"
763
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.8.tgz#254942f5ca80ccabcfbb2a9f524c74bca574005b"
764
+ integrity sha512-a9aOppDU93oArQ51H+B8M1vH+tayZbuBqzjOhntGetZVa+4tTu5jp+XTwqHGG2lxslqomPYVSjIxQkFwXzgnxg==
765
+ dependencies:
766
+ "@babel/compat-data" "^7.14.7"
767
+ "@babel/helper-compilation-targets" "^7.14.5"
768
+ "@babel/helper-plugin-utils" "^7.14.5"
769
+ "@babel/helper-validator-option" "^7.14.5"
770
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.14.5"
771
+ "@babel/plugin-proposal-async-generator-functions" "^7.14.7"
772
+ "@babel/plugin-proposal-class-properties" "^7.14.5"
773
+ "@babel/plugin-proposal-class-static-block" "^7.14.5"
774
+ "@babel/plugin-proposal-dynamic-import" "^7.14.5"
775
+ "@babel/plugin-proposal-export-namespace-from" "^7.14.5"
776
+ "@babel/plugin-proposal-json-strings" "^7.14.5"
777
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.14.5"
778
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5"
779
+ "@babel/plugin-proposal-numeric-separator" "^7.14.5"
780
+ "@babel/plugin-proposal-object-rest-spread" "^7.14.7"
781
+ "@babel/plugin-proposal-optional-catch-binding" "^7.14.5"
782
+ "@babel/plugin-proposal-optional-chaining" "^7.14.5"
783
+ "@babel/plugin-proposal-private-methods" "^7.14.5"
784
+ "@babel/plugin-proposal-private-property-in-object" "^7.14.5"
785
+ "@babel/plugin-proposal-unicode-property-regex" "^7.14.5"
786
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
787
+ "@babel/plugin-syntax-class-properties" "^7.12.13"
788
+ "@babel/plugin-syntax-class-static-block" "^7.14.5"
789
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
739
790
  "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
740
- "@babel/plugin-syntax-json-strings" "^7.8.0"
791
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
741
792
  "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
742
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
793
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
743
794
  "@babel/plugin-syntax-numeric-separator" "^7.10.4"
744
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
745
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
746
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
747
- "@babel/plugin-syntax-top-level-await" "^7.12.1"
748
- "@babel/plugin-transform-arrow-functions" "^7.12.1"
749
- "@babel/plugin-transform-async-to-generator" "^7.12.1"
750
- "@babel/plugin-transform-block-scoped-functions" "^7.12.1"
751
- "@babel/plugin-transform-block-scoping" "^7.12.11"
752
- "@babel/plugin-transform-classes" "^7.12.1"
753
- "@babel/plugin-transform-computed-properties" "^7.12.1"
754
- "@babel/plugin-transform-destructuring" "^7.12.1"
755
- "@babel/plugin-transform-dotall-regex" "^7.12.1"
756
- "@babel/plugin-transform-duplicate-keys" "^7.12.1"
757
- "@babel/plugin-transform-exponentiation-operator" "^7.12.1"
758
- "@babel/plugin-transform-for-of" "^7.12.1"
759
- "@babel/plugin-transform-function-name" "^7.12.1"
760
- "@babel/plugin-transform-literals" "^7.12.1"
761
- "@babel/plugin-transform-member-expression-literals" "^7.12.1"
762
- "@babel/plugin-transform-modules-amd" "^7.12.1"
763
- "@babel/plugin-transform-modules-commonjs" "^7.12.1"
764
- "@babel/plugin-transform-modules-systemjs" "^7.12.1"
765
- "@babel/plugin-transform-modules-umd" "^7.12.1"
766
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1"
767
- "@babel/plugin-transform-new-target" "^7.12.1"
768
- "@babel/plugin-transform-object-super" "^7.12.1"
769
- "@babel/plugin-transform-parameters" "^7.12.1"
770
- "@babel/plugin-transform-property-literals" "^7.12.1"
771
- "@babel/plugin-transform-regenerator" "^7.12.1"
772
- "@babel/plugin-transform-reserved-words" "^7.12.1"
773
- "@babel/plugin-transform-shorthand-properties" "^7.12.1"
774
- "@babel/plugin-transform-spread" "^7.12.1"
775
- "@babel/plugin-transform-sticky-regex" "^7.12.7"
776
- "@babel/plugin-transform-template-literals" "^7.12.1"
777
- "@babel/plugin-transform-typeof-symbol" "^7.12.10"
778
- "@babel/plugin-transform-unicode-escapes" "^7.12.1"
779
- "@babel/plugin-transform-unicode-regex" "^7.12.1"
780
- "@babel/preset-modules" "^0.1.3"
781
- "@babel/types" "^7.12.11"
782
- core-js-compat "^3.8.0"
783
- semver "^5.5.0"
795
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
796
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
797
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
798
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
799
+ "@babel/plugin-syntax-top-level-await" "^7.14.5"
800
+ "@babel/plugin-transform-arrow-functions" "^7.14.5"
801
+ "@babel/plugin-transform-async-to-generator" "^7.14.5"
802
+ "@babel/plugin-transform-block-scoped-functions" "^7.14.5"
803
+ "@babel/plugin-transform-block-scoping" "^7.14.5"
804
+ "@babel/plugin-transform-classes" "^7.14.5"
805
+ "@babel/plugin-transform-computed-properties" "^7.14.5"
806
+ "@babel/plugin-transform-destructuring" "^7.14.7"
807
+ "@babel/plugin-transform-dotall-regex" "^7.14.5"
808
+ "@babel/plugin-transform-duplicate-keys" "^7.14.5"
809
+ "@babel/plugin-transform-exponentiation-operator" "^7.14.5"
810
+ "@babel/plugin-transform-for-of" "^7.14.5"
811
+ "@babel/plugin-transform-function-name" "^7.14.5"
812
+ "@babel/plugin-transform-literals" "^7.14.5"
813
+ "@babel/plugin-transform-member-expression-literals" "^7.14.5"
814
+ "@babel/plugin-transform-modules-amd" "^7.14.5"
815
+ "@babel/plugin-transform-modules-commonjs" "^7.14.5"
816
+ "@babel/plugin-transform-modules-systemjs" "^7.14.5"
817
+ "@babel/plugin-transform-modules-umd" "^7.14.5"
818
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.7"
819
+ "@babel/plugin-transform-new-target" "^7.14.5"
820
+ "@babel/plugin-transform-object-super" "^7.14.5"
821
+ "@babel/plugin-transform-parameters" "^7.14.5"
822
+ "@babel/plugin-transform-property-literals" "^7.14.5"
823
+ "@babel/plugin-transform-regenerator" "^7.14.5"
824
+ "@babel/plugin-transform-reserved-words" "^7.14.5"
825
+ "@babel/plugin-transform-shorthand-properties" "^7.14.5"
826
+ "@babel/plugin-transform-spread" "^7.14.6"
827
+ "@babel/plugin-transform-sticky-regex" "^7.14.5"
828
+ "@babel/plugin-transform-template-literals" "^7.14.5"
829
+ "@babel/plugin-transform-typeof-symbol" "^7.14.5"
830
+ "@babel/plugin-transform-unicode-escapes" "^7.14.5"
831
+ "@babel/plugin-transform-unicode-regex" "^7.14.5"
832
+ "@babel/preset-modules" "^0.1.4"
833
+ "@babel/types" "^7.14.8"
834
+ babel-plugin-polyfill-corejs2 "^0.2.2"
835
+ babel-plugin-polyfill-corejs3 "^0.2.2"
836
+ babel-plugin-polyfill-regenerator "^0.2.2"
837
+ core-js-compat "^3.15.0"
838
+ semver "^6.3.0"
784
839
 
785
- "@babel/preset-modules@^0.1.3":
840
+ "@babel/preset-modules@^0.1.4":
786
841
  version "0.1.4"
787
842
  resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
788
843
  integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
@@ -794,54 +849,53 @@
794
849
  esutils "^2.0.2"
795
850
 
796
851
  "@babel/register@^7.6.2":
797
- version "7.12.10"
798
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.10.tgz#19b87143f17128af4dbe7af54c735663b3999f60"
799
- integrity sha512-EvX/BvMMJRAA3jZgILWgbsrHwBQvllC5T8B29McyME8DvkdOxk4ujESfrMvME8IHSDvWXrmMXxPvA/lx2gqPLQ==
852
+ version "7.14.5"
853
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.14.5.tgz#d0eac615065d9c2f1995842f85d6e56c345f3233"
854
+ integrity sha512-TjJpGz/aDjFGWsItRBQMOFTrmTI9tr79CHOK+KIvLeCkbxuOAk2M5QHjvruIMGoo9OuccMh5euplPzc5FjAKGg==
800
855
  dependencies:
856
+ clone-deep "^4.0.1"
801
857
  find-cache-dir "^2.0.0"
802
- lodash "^4.17.19"
803
858
  make-dir "^2.1.0"
804
859
  pirates "^4.0.0"
805
860
  source-map-support "^0.5.16"
806
861
 
807
862
  "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7":
808
- version "7.12.5"
809
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
810
- integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
863
+ version "7.14.8"
864
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.8.tgz#7119a56f421018852694290b9f9148097391b446"
865
+ integrity sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==
811
866
  dependencies:
812
867
  regenerator-runtime "^0.13.4"
813
868
 
814
- "@babel/template@^7.10.4", "@babel/template@^7.12.7":
815
- version "7.12.7"
816
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc"
817
- integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==
818
- dependencies:
819
- "@babel/code-frame" "^7.10.4"
820
- "@babel/parser" "^7.12.7"
821
- "@babel/types" "^7.12.7"
822
-
823
- "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.10", "@babel/traverse@^7.12.5":
824
- version "7.12.10"
825
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.10.tgz#2d1f4041e8bf42ea099e5b2dc48d6a594c00017a"
826
- integrity sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg==
827
- dependencies:
828
- "@babel/code-frame" "^7.10.4"
829
- "@babel/generator" "^7.12.10"
830
- "@babel/helper-function-name" "^7.10.4"
831
- "@babel/helper-split-export-declaration" "^7.11.0"
832
- "@babel/parser" "^7.12.10"
833
- "@babel/types" "^7.12.10"
869
+ "@babel/template@^7.14.5":
870
+ version "7.14.5"
871
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4"
872
+ integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==
873
+ dependencies:
874
+ "@babel/code-frame" "^7.14.5"
875
+ "@babel/parser" "^7.14.5"
876
+ "@babel/types" "^7.14.5"
877
+
878
+ "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.14.8":
879
+ version "7.14.8"
880
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.8.tgz#c0253f02677c5de1a8ff9df6b0aacbec7da1a8ce"
881
+ integrity sha512-kexHhzCljJcFNn1KYAQ6A5wxMRzq9ebYpEDV4+WdNyr3i7O44tanbDOR/xjiG2F3sllan+LgwK+7OMk0EmydHg==
882
+ dependencies:
883
+ "@babel/code-frame" "^7.14.5"
884
+ "@babel/generator" "^7.14.8"
885
+ "@babel/helper-function-name" "^7.14.5"
886
+ "@babel/helper-hoist-variables" "^7.14.5"
887
+ "@babel/helper-split-export-declaration" "^7.14.5"
888
+ "@babel/parser" "^7.14.8"
889
+ "@babel/types" "^7.14.8"
834
890
  debug "^4.1.0"
835
891
  globals "^11.1.0"
836
- lodash "^4.17.19"
837
892
 
838
- "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4":
839
- version "7.12.11"
840
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.11.tgz#a86e4d71e30a9b6ee102590446c98662589283ce"
841
- integrity sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==
893
+ "@babel/types@^7.14.5", "@babel/types@^7.14.8", "@babel/types@^7.4.4":
894
+ version "7.14.8"
895
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.8.tgz#38109de8fcadc06415fbd9b74df0065d4d41c728"
896
+ integrity sha512-iob4soQa7dZw8nodR/KlOQkPh9S4I8RwCxwRIFuiMRYjOzH/KJzdUfDgz6cGi5dDaclXF4P2PAhCdrBJNIg68Q==
842
897
  dependencies:
843
- "@babel/helper-validator-identifier" "^7.12.11"
844
- lodash "^4.17.19"
898
+ "@babel/helper-validator-identifier" "^7.14.8"
845
899
  to-fast-properties "^2.0.0"
846
900
 
847
901
  "@glimmer/interfaces@^0.41.4":
@@ -869,31 +923,31 @@
869
923
  resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.3.tgz#f060bf6eaafae4d56a7dac618980838b0696e2ab"
870
924
  integrity sha512-FmuxfCuolpLl0AnQ2NHSzoUKWEJDFl63qXjzdoWBVyFCXzMGm1spBzk7LeHNoVCiWCF7mRVms9e6jEV9+MoPbg==
871
925
 
872
- "@nodelib/fs.scandir@2.1.3":
873
- version "2.1.3"
874
- resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b"
875
- integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==
926
+ "@nodelib/fs.scandir@2.1.5":
927
+ version "2.1.5"
928
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
929
+ integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
876
930
  dependencies:
877
- "@nodelib/fs.stat" "2.0.3"
931
+ "@nodelib/fs.stat" "2.0.5"
878
932
  run-parallel "^1.1.9"
879
933
 
880
- "@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2":
881
- version "2.0.3"
882
- resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3"
883
- integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==
934
+ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
935
+ version "2.0.5"
936
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
937
+ integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
884
938
 
885
939
  "@nodelib/fs.walk@^1.2.3":
886
- version "1.2.4"
887
- resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976"
888
- integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==
940
+ version "1.2.8"
941
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
942
+ integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
889
943
  dependencies:
890
- "@nodelib/fs.scandir" "2.1.3"
944
+ "@nodelib/fs.scandir" "2.1.5"
891
945
  fastq "^1.6.0"
892
946
 
893
947
  "@rails/actioncable@>= 6.0":
894
- version "6.1.0"
895
- resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.1.0.tgz#f336f25450b1bc43b99bc60557a70b6e6bb1d3d2"
896
- integrity sha512-eDgy+vcKN9RIzxmMBfSAe77rTj2cp6kJALiVQyKrW2O9EK2MdostOmP+99At/Dit3ur5+77NVnruxD7y14ZYFA==
948
+ version "6.1.4"
949
+ resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.1.4.tgz#c3c5a9f8302c429af9722b6c50ab48049016d2a3"
950
+ integrity sha512-0LmSKJTuo2dL6BQ+9xxLnS9lbkyfz2mBGeBnQ2J7o9Bn0l0q+ZC6VuoZMZZXPvABI4QT7Nfknv5WhfKYL+boew==
897
951
 
898
952
  "@samverschueren/stream-to-observable@^0.3.0":
899
953
  version "0.3.1"
@@ -926,28 +980,33 @@
926
980
  resolved "https://registry.yarnpkg.com/@stimulus/webpack-helpers/-/webpack-helpers-2.0.0.tgz#54296d2a2dffd4f962d2e802d99a3fdd84b8845f"
927
981
  integrity sha512-D6tJWsAC024MwGEIKlUVYU8Ln87mlrmiwHvYAjipg+s8H4eLxUMQ3PZkWyPevfipH+oR3leuHsjYsK1gN5ViQA==
928
982
 
983
+ "@tootallnate/once@1":
984
+ version "1.1.2"
985
+ resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
986
+ integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
987
+
929
988
  "@types/glob@^7.1.1":
930
- version "7.1.3"
931
- resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183"
932
- integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==
989
+ version "7.1.4"
990
+ resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.4.tgz#ea59e21d2ee5c517914cb4bc8e4153b99e566672"
991
+ integrity sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==
933
992
  dependencies:
934
993
  "@types/minimatch" "*"
935
994
  "@types/node" "*"
936
995
 
937
996
  "@types/minimatch@*":
938
- version "3.0.3"
939
- resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"
940
- integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
997
+ version "3.0.5"
998
+ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40"
999
+ integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==
941
1000
 
942
1001
  "@types/node@*":
943
- version "14.14.14"
944
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.14.tgz#f7fd5f3cc8521301119f63910f0fb965c7d761ae"
945
- integrity sha512-UHnOPWVWV1z+VV8k6L1HhG7UbGBgIdghqF3l9Ny9ApPghbjICXkUJSd/b9gOgQfjM1r+37cipdw/HJ3F6ICEnQ==
1002
+ version "16.4.0"
1003
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.0.tgz#2c219eaa3b8d1e4d04f4dd6e40bc68c7467d5272"
1004
+ integrity sha512-HrJuE7Mlqcjj+00JqMWpZ3tY8w7EUd+S0U3L1+PQSWiXZbOgyQDvi+ogoUxaHApPJq5diKxYBQwA3iIlNcPqOg==
946
1005
 
947
1006
  "@types/unist@^2.0.0", "@types/unist@^2.0.2":
948
- version "2.0.3"
949
- resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e"
950
- integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==
1007
+ version "2.0.6"
1008
+ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
1009
+ integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
951
1010
 
952
1011
  "@typescript-eslint/typescript-estree@2.6.1":
953
1012
  version "2.6.1"
@@ -966,7 +1025,7 @@
966
1025
  resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
967
1026
  integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==
968
1027
 
969
- abab@^2.0.3:
1028
+ abab@^2.0.3, abab@^2.0.5:
970
1029
  version "2.0.5"
971
1030
  resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
972
1031
  integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
@@ -980,9 +1039,9 @@ acorn-globals@^6.0.0:
980
1039
  acorn-walk "^7.1.1"
981
1040
 
982
1041
  acorn-jsx@^5.2.0:
983
- version "5.3.1"
984
- resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
985
- integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
1042
+ version "5.3.2"
1043
+ resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
1044
+ integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
986
1045
 
987
1046
  acorn-walk@^7.1.1:
988
1047
  version "7.2.0"
@@ -994,6 +1053,18 @@ acorn@^7.1.1:
994
1053
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
995
1054
  integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
996
1055
 
1056
+ acorn@^8.2.4:
1057
+ version "8.4.1"
1058
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.4.1.tgz#56c36251fc7cabc7096adc18f05afe814321a28c"
1059
+ integrity sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==
1060
+
1061
+ agent-base@6:
1062
+ version "6.0.2"
1063
+ resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
1064
+ integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
1065
+ dependencies:
1066
+ debug "4"
1067
+
997
1068
  aggregate-error@^3.0.0:
998
1069
  version "3.1.0"
999
1070
  resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
@@ -1002,7 +1073,7 @@ aggregate-error@^3.0.0:
1002
1073
  clean-stack "^2.0.0"
1003
1074
  indent-string "^4.0.0"
1004
1075
 
1005
- ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3:
1076
+ ajv@^6.10.0, ajv@^6.10.2:
1006
1077
  version "6.12.6"
1007
1078
  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
1008
1079
  integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -1038,11 +1109,11 @@ ansi-escapes@^3.0.0:
1038
1109
  integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
1039
1110
 
1040
1111
  ansi-escapes@^4.2.1:
1041
- version "4.3.1"
1042
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61"
1043
- integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==
1112
+ version "4.3.2"
1113
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
1114
+ integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
1044
1115
  dependencies:
1045
- type-fest "^0.11.0"
1116
+ type-fest "^0.21.3"
1046
1117
 
1047
1118
  ansi-regex@^2.0.0:
1048
1119
  version "2.1.1"
@@ -1076,7 +1147,7 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
1076
1147
  dependencies:
1077
1148
  color-convert "^1.9.0"
1078
1149
 
1079
- ansi-styles@^4.1.0:
1150
+ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
1080
1151
  version "4.3.0"
1081
1152
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
1082
1153
  integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
@@ -1089,9 +1160,9 @@ any-observable@^0.3.0:
1089
1160
  integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==
1090
1161
 
1091
1162
  anymatch@~3.1.1:
1092
- version "3.1.1"
1093
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
1094
- integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
1163
+ version "3.1.2"
1164
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
1165
+ integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
1095
1166
  dependencies:
1096
1167
  normalize-path "^3.0.0"
1097
1168
  picomatch "^2.0.4"
@@ -1103,16 +1174,16 @@ argparse@^1.0.7:
1103
1174
  dependencies:
1104
1175
  sprintf-js "~1.0.2"
1105
1176
 
1177
+ argparse@^2.0.1:
1178
+ version "2.0.1"
1179
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
1180
+ integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
1181
+
1106
1182
  array-differ@^2.0.3:
1107
1183
  version "2.1.0"
1108
1184
  resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-2.1.0.tgz#4b9c1c3f14b906757082925769e8ab904f4801b1"
1109
1185
  integrity sha512-KbUpJgx909ZscOc/7CLATBFam7P1Z1QRQInvgT0UztM9Q72aGKCunKASAl7WNW0tnPmPyEMeMhdsfWhfmW037w==
1110
1186
 
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
1187
  array-union@^1.0.1, array-union@^1.0.2:
1117
1188
  version "1.0.2"
1118
1189
  resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
@@ -1135,18 +1206,6 @@ arrify@^1.0.1:
1135
1206
  resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
1136
1207
  integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
1137
1208
 
1138
- asn1@~0.2.3:
1139
- version "0.2.4"
1140
- resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
1141
- integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==
1142
- dependencies:
1143
- safer-buffer "~2.1.0"
1144
-
1145
- assert-plus@1.0.0, assert-plus@^1.0.0:
1146
- version "1.0.0"
1147
- resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
1148
- integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
1149
-
1150
1209
  assert@^2.0.0:
1151
1210
  version "2.0.0"
1152
1211
  resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32"
@@ -1168,21 +1227,9 @@ asynckit@^0.4.0:
1168
1227
  integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
1169
1228
 
1170
1229
  available-typed-arrays@^1.0.2:
1171
- version "1.0.2"
1172
- resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz#6b098ca9d8039079ee3f77f7b783c4480ba513f5"
1173
- integrity sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==
1174
- dependencies:
1175
- array-filter "^1.0.0"
1176
-
1177
- aws-sign2@~0.7.0:
1178
- version "0.7.0"
1179
- resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
1180
- integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
1181
-
1182
- aws4@^1.8.0:
1183
- version "1.11.0"
1184
- resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
1185
- integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
1230
+ version "1.0.4"
1231
+ resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.4.tgz#9e0ae84ecff20caae6a94a1c3bc39b955649b7a9"
1232
+ integrity sha512-SA5mXJWrId1TaQjfxUYghbqQ/hYioKmLJvPJyDuYRtXXenFNMjj4hSSt1Cf1xsuXSXrtxrVC5Ot4eU6cOtBDdA==
1186
1233
 
1187
1234
  babel-plugin-dynamic-import-node@^2.3.3:
1188
1235
  version "2.3.3"
@@ -1191,27 +1238,44 @@ babel-plugin-dynamic-import-node@^2.3.3:
1191
1238
  dependencies:
1192
1239
  object.assign "^4.1.0"
1193
1240
 
1241
+ babel-plugin-polyfill-corejs2@^0.2.2:
1242
+ version "0.2.2"
1243
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz#e9124785e6fd94f94b618a7954e5693053bf5327"
1244
+ integrity sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==
1245
+ dependencies:
1246
+ "@babel/compat-data" "^7.13.11"
1247
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
1248
+ semver "^6.1.1"
1249
+
1250
+ babel-plugin-polyfill-corejs3@^0.2.2:
1251
+ version "0.2.3"
1252
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.3.tgz#72add68cf08a8bf139ba6e6dfc0b1d504098e57b"
1253
+ integrity sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g==
1254
+ dependencies:
1255
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
1256
+ core-js-compat "^3.14.0"
1257
+
1258
+ babel-plugin-polyfill-regenerator@^0.2.2:
1259
+ version "0.2.2"
1260
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz#b310c8d642acada348c1fa3b3e6ce0e851bee077"
1261
+ integrity sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==
1262
+ dependencies:
1263
+ "@babel/helper-define-polyfill-provider" "^0.2.2"
1264
+
1194
1265
  bail@^1.0.0:
1195
1266
  version "1.0.5"
1196
1267
  resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
1197
1268
  integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==
1198
1269
 
1199
1270
  balanced-match@^1.0.0:
1200
- version "1.0.0"
1201
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
1202
- integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
1203
-
1204
- bcrypt-pbkdf@^1.0.0:
1205
1271
  version "1.0.2"
1206
- resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
1207
- integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
1208
- dependencies:
1209
- tweetnacl "^0.14.3"
1272
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
1273
+ integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
1210
1274
 
1211
1275
  binary-extensions@^2.0.0:
1212
- version "2.1.0"
1213
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9"
1214
- integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==
1276
+ version "2.2.0"
1277
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
1278
+ integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
1215
1279
 
1216
1280
  brace-expansion@^1.1.7:
1217
1281
  version "1.1.11"
@@ -1238,36 +1302,36 @@ browser-stdout@1.3.1:
1238
1302
  resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
1239
1303
  integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
1240
1304
 
1241
- browserslist@^4.14.5, browserslist@^4.15.0:
1242
- version "4.16.0"
1243
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.0.tgz#410277627500be3cb28a1bfe037586fbedf9488b"
1244
- integrity sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==
1305
+ browserslist@^4.16.6:
1306
+ version "4.16.6"
1307
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
1308
+ integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
1245
1309
  dependencies:
1246
- caniuse-lite "^1.0.30001165"
1247
- colorette "^1.2.1"
1248
- electron-to-chromium "^1.3.621"
1310
+ caniuse-lite "^1.0.30001219"
1311
+ colorette "^1.2.2"
1312
+ electron-to-chromium "^1.3.723"
1249
1313
  escalade "^3.1.1"
1250
- node-releases "^1.1.67"
1314
+ node-releases "^1.1.71"
1251
1315
 
1252
1316
  buffer-from@^1.0.0:
1253
1317
  version "1.1.1"
1254
1318
  resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
1255
1319
  integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
1256
1320
 
1257
- "cable_ready@>= 4.4":
1258
- version "4.4.6"
1259
- resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-4.4.6.tgz#a46c879ec48b722d78cb1fbe0c1850d2f6b2762a"
1260
- integrity sha512-nqo50yrnOlV0CKc+ysXnIzwulk7q54hGYUwbJb1s0pBY0eu1yjDhgdU8g9dxfO5xapK6S7oceuEnZ4FQawbU5g==
1321
+ cable_ready@5.0.0-pre2:
1322
+ version "5.0.0-pre2"
1323
+ resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-5.0.0-pre2.tgz#c3589ebfe28a10db3998ae3711d31a072be53bfb"
1324
+ integrity sha512-/Ql2e/Hz0kRRKzzz06sMXFm3+/qacYqSHfWkdt1CcsI7I6OOOhHzPAgY8VS+zqa/6+ggjWoPqHyi8Hr6j/0O6w==
1261
1325
  dependencies:
1262
1326
  morphdom "^2.6.1"
1263
1327
 
1264
- call-bind@^1.0.0:
1265
- version "1.0.0"
1266
- resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce"
1267
- integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==
1328
+ call-bind@^1.0.0, call-bind@^1.0.2:
1329
+ version "1.0.2"
1330
+ resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
1331
+ integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
1268
1332
  dependencies:
1269
1333
  function-bind "^1.1.1"
1270
- get-intrinsic "^1.0.0"
1334
+ get-intrinsic "^1.0.2"
1271
1335
 
1272
1336
  caller-callsite@^2.0.0:
1273
1337
  version "2.0.0"
@@ -1293,7 +1357,7 @@ callsites@^3.0.0:
1293
1357
  resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
1294
1358
  integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
1295
1359
 
1296
- camelcase@5.3.1, camelcase@^5.0.0:
1360
+ camelcase@5.3.1:
1297
1361
  version "5.3.1"
1298
1362
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
1299
1363
  integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
@@ -1303,15 +1367,10 @@ camelcase@^6.0.0:
1303
1367
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
1304
1368
  integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
1305
1369
 
1306
- caniuse-lite@^1.0.30001165:
1307
- version "1.0.30001168"
1308
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001168.tgz#6fcd098c139d003b9bd484cbb9ca26cb89907f9a"
1309
- integrity sha512-P2zmX7swIXKu+GMMR01TWa4csIKELTNnZKc+f1CjebmZJQtTAEXmpQSoKVJVVcvPGAA0TEYTOUp3VehavZSFPQ==
1310
-
1311
- caseless@~0.12.0:
1312
- version "0.12.0"
1313
- resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
1314
- integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
1370
+ caniuse-lite@^1.0.30001219:
1371
+ version "1.0.30001245"
1372
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001245.tgz#45b941bbd833cb0fa53861ff2bae746b3c6ca5d4"
1373
+ integrity sha512-768fM9j1PKXpOCKws6eTo3RHmvTUsG9UrpT4WoREFeZgJBTi4/X9g565azS/rVUGtqb8nt7FjLeF5u4kukERnA==
1315
1374
 
1316
1375
  chalk@3.0.0:
1317
1376
  version "3.0.0"
@@ -1342,9 +1401,9 @@ chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
1342
1401
  supports-color "^5.3.0"
1343
1402
 
1344
1403
  chalk@^4.0.0, chalk@^4.1.0:
1345
- version "4.1.0"
1346
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
1347
- integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
1404
+ version "4.1.1"
1405
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
1406
+ integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
1348
1407
  dependencies:
1349
1408
  ansi-styles "^4.1.0"
1350
1409
  supports-color "^7.1.0"
@@ -1369,10 +1428,10 @@ chardet@^0.7.0:
1369
1428
  resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
1370
1429
  integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
1371
1430
 
1372
- chokidar@3.4.3:
1373
- version "3.4.3"
1374
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b"
1375
- integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==
1431
+ chokidar@3.5.1:
1432
+ version "3.5.1"
1433
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
1434
+ integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
1376
1435
  dependencies:
1377
1436
  anymatch "~3.1.1"
1378
1437
  braces "~3.0.2"
@@ -1382,7 +1441,7 @@ chokidar@3.4.3:
1382
1441
  normalize-path "~3.0.0"
1383
1442
  readdirp "~3.5.0"
1384
1443
  optionalDependencies:
1385
- fsevents "~2.1.2"
1444
+ fsevents "~2.3.1"
1386
1445
 
1387
1446
  ci-info@^2.0.0:
1388
1447
  version "2.0.0"
@@ -1429,14 +1488,23 @@ cli-width@^3.0.0:
1429
1488
  resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
1430
1489
  integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
1431
1490
 
1432
- cliui@^5.0.0:
1433
- version "5.0.0"
1434
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
1435
- integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
1491
+ cliui@^7.0.2:
1492
+ version "7.0.4"
1493
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
1494
+ integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
1436
1495
  dependencies:
1437
- string-width "^3.1.0"
1438
- strip-ansi "^5.2.0"
1439
- wrap-ansi "^5.1.0"
1496
+ string-width "^4.2.0"
1497
+ strip-ansi "^6.0.0"
1498
+ wrap-ansi "^7.0.0"
1499
+
1500
+ clone-deep@^4.0.1:
1501
+ version "4.0.1"
1502
+ resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
1503
+ integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
1504
+ dependencies:
1505
+ is-plain-object "^2.0.4"
1506
+ kind-of "^6.0.2"
1507
+ shallow-clone "^3.0.0"
1440
1508
 
1441
1509
  code-point-at@^1.0.0:
1442
1510
  version "1.1.0"
@@ -1472,12 +1540,12 @@ color-name@~1.1.4:
1472
1540
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
1473
1541
  integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
1474
1542
 
1475
- colorette@^1.2.1:
1476
- version "1.2.1"
1477
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
1478
- integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
1543
+ colorette@^1.2.2:
1544
+ version "1.2.2"
1545
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
1546
+ integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
1479
1547
 
1480
- combined-stream@^1.0.6, combined-stream@~1.0.6:
1548
+ combined-stream@^1.0.8:
1481
1549
  version "1.0.8"
1482
1550
  resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
1483
1551
  integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
@@ -1500,25 +1568,20 @@ concat-map@0.0.1:
1500
1568
  integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
1501
1569
 
1502
1570
  convert-source-map@^1.7.0:
1503
- version "1.7.0"
1504
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
1505
- integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
1571
+ version "1.8.0"
1572
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
1573
+ integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
1506
1574
  dependencies:
1507
1575
  safe-buffer "~5.1.1"
1508
1576
 
1509
- core-js-compat@^3.8.0:
1510
- version "3.8.1"
1511
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.1.tgz#8d1ddd341d660ba6194cbe0ce60f4c794c87a36e"
1512
- integrity sha512-a16TLmy9NVD1rkjUGbwuyWkiDoN0FDpAwrfLONvHFQx0D9k7J9y0srwMT8QP/Z6HE3MIFaVynEeYwZwPX1o5RQ==
1577
+ core-js-compat@^3.14.0, core-js-compat@^3.15.0:
1578
+ version "3.15.2"
1579
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.15.2.tgz#47272fbb479880de14b4e6081f71f3492f5bd3cb"
1580
+ integrity sha512-Wp+BJVvwopjI+A1EFqm2dwUmWYXrvucmtIB2LgXn/Rb+gWPKYxtmb4GKHGKG/KGF1eK9jfjzT38DITbTOCX/SQ==
1513
1581
  dependencies:
1514
- browserslist "^4.15.0"
1582
+ browserslist "^4.16.6"
1515
1583
  semver "7.0.0"
1516
1584
 
1517
- core-util-is@1.0.2:
1518
- version "1.0.2"
1519
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1520
- integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
1521
-
1522
1585
  cosmiconfig@5.2.1, cosmiconfig@^5.2.1:
1523
1586
  version "5.2.1"
1524
1587
  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
@@ -1559,20 +1622,13 @@ cssom@~0.3.6:
1559
1622
  resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
1560
1623
  integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
1561
1624
 
1562
- cssstyle@^2.2.0:
1625
+ cssstyle@^2.3.0:
1563
1626
  version "2.3.0"
1564
1627
  resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
1565
1628
  integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
1566
1629
  dependencies:
1567
1630
  cssom "~0.3.6"
1568
1631
 
1569
- dashdash@^1.12.0:
1570
- version "1.14.1"
1571
- resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1572
- integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=
1573
- dependencies:
1574
- assert-plus "^1.0.0"
1575
-
1576
1632
  dashify@2.0.0:
1577
1633
  version "2.0.0"
1578
1634
  resolved "https://registry.yarnpkg.com/dashify/-/dashify-2.0.0.tgz#fff270ca2868ca427fee571de35691d6e437a648"
@@ -1592,34 +1648,29 @@ date-fns@^1.27.2:
1592
1648
  resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
1593
1649
  integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
1594
1650
 
1595
- debug@4.2.0:
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==
1651
+ debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
1652
+ version "4.3.2"
1653
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
1654
+ integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
1599
1655
  dependencies:
1600
1656
  ms "2.1.2"
1601
1657
 
1602
- debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
1658
+ debug@4.3.1:
1603
1659
  version "4.3.1"
1604
1660
  resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
1605
1661
  integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
1606
1662
  dependencies:
1607
1663
  ms "2.1.2"
1608
1664
 
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
1665
  decamelize@^4.0.0:
1615
1666
  version "4.0.0"
1616
1667
  resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
1617
1668
  integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
1618
1669
 
1619
- decimal.js@^10.2.0:
1620
- version "10.2.1"
1621
- resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3"
1622
- integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==
1670
+ decimal.js@^10.2.1:
1671
+ version "10.3.1"
1672
+ resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783"
1673
+ integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==
1623
1674
 
1624
1675
  dedent@0.7.0, dedent@^0.7.0:
1625
1676
  version "0.7.0"
@@ -1667,6 +1718,11 @@ diff@4.0.2, diff@^4.0.2:
1667
1718
  resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
1668
1719
  integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
1669
1720
 
1721
+ diff@5.0.0:
1722
+ version "5.0.0"
1723
+ resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b"
1724
+ integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==
1725
+
1670
1726
  dir-glob@^3.0.1:
1671
1727
  version "3.0.1"
1672
1728
  resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
@@ -1688,14 +1744,6 @@ domexception@^2.0.1:
1688
1744
  dependencies:
1689
1745
  webidl-conversions "^5.0.0"
1690
1746
 
1691
- ecc-jsbn@~0.1.1:
1692
- version "0.1.2"
1693
- resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
1694
- integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
1695
- dependencies:
1696
- jsbn "~0.1.0"
1697
- safer-buffer "^2.1.0"
1698
-
1699
1747
  editorconfig-to-prettier@0.1.1:
1700
1748
  version "0.1.1"
1701
1749
  resolved "https://registry.yarnpkg.com/editorconfig-to-prettier/-/editorconfig-to-prettier-0.1.1.tgz#7391c7067dfd68ffee65afc2c4fbe4fba8d4219a"
@@ -1711,10 +1759,10 @@ editorconfig@0.15.3:
1711
1759
  semver "^5.6.0"
1712
1760
  sigmund "^1.0.1"
1713
1761
 
1714
- electron-to-chromium@^1.3.621:
1715
- version "1.3.629"
1716
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.629.tgz#a08d13b64d90e3c77ec5b9bffa3efbc5b4a00969"
1717
- integrity sha512-iSPPJtPvHrMAvYOt+9cdbDmTasPqwnwz4lkP8Dn200gDNUBQOLQ96xUsWXBwXslAo5XxdoXAoQQ3RAy4uao9IQ==
1762
+ electron-to-chromium@^1.3.723:
1763
+ version "1.3.782"
1764
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.782.tgz#522740fe6b4b5255ca754c68d9c406a17b0998e2"
1765
+ integrity sha512-6AI2se1NqWA1SBf/tlD6tQD/6ZOt+yAhqmrTlh4XZw4/g0Mt3p6JhTQPZxRPxPZiOg0o7ss1EBP/CpYejfnoIA==
1718
1766
 
1719
1767
  elegant-spinner@^1.0.1:
1720
1768
  version "1.0.1"
@@ -1745,23 +1793,27 @@ error-ex@^1.3.1:
1745
1793
  dependencies:
1746
1794
  is-arrayish "^0.2.1"
1747
1795
 
1748
- es-abstract@^1.18.0-next.1:
1749
- version "1.18.0-next.1"
1750
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68"
1751
- integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==
1796
+ es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2:
1797
+ version "1.18.3"
1798
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0"
1799
+ integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==
1752
1800
  dependencies:
1801
+ call-bind "^1.0.2"
1753
1802
  es-to-primitive "^1.2.1"
1754
1803
  function-bind "^1.1.1"
1804
+ get-intrinsic "^1.1.1"
1755
1805
  has "^1.0.3"
1756
- has-symbols "^1.0.1"
1757
- is-callable "^1.2.2"
1758
- is-negative-zero "^2.0.0"
1759
- is-regex "^1.1.1"
1760
- object-inspect "^1.8.0"
1806
+ has-symbols "^1.0.2"
1807
+ is-callable "^1.2.3"
1808
+ is-negative-zero "^2.0.1"
1809
+ is-regex "^1.1.3"
1810
+ is-string "^1.0.6"
1811
+ object-inspect "^1.10.3"
1761
1812
  object-keys "^1.1.1"
1762
- object.assign "^4.1.1"
1763
- string.prototype.trimend "^1.0.1"
1764
- string.prototype.trimstart "^1.0.1"
1813
+ object.assign "^4.1.2"
1814
+ string.prototype.trimend "^1.0.4"
1815
+ string.prototype.trimstart "^1.0.4"
1816
+ unbox-primitive "^1.0.1"
1765
1817
 
1766
1818
  es-to-primitive@^1.2.1:
1767
1819
  version "1.2.1"
@@ -1797,13 +1849,13 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1797
1849
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1798
1850
  integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1799
1851
 
1800
- escodegen@^1.14.1:
1801
- version "1.14.3"
1802
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
1803
- integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
1852
+ escodegen@^2.0.0:
1853
+ version "2.0.0"
1854
+ resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
1855
+ integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
1804
1856
  dependencies:
1805
1857
  esprima "^4.0.1"
1806
- estraverse "^4.2.0"
1858
+ estraverse "^5.2.0"
1807
1859
  esutils "^2.0.2"
1808
1860
  optionator "^0.8.1"
1809
1861
  optionalDependencies:
@@ -1892,9 +1944,9 @@ esprima@^4.0.0, esprima@^4.0.1:
1892
1944
  integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1893
1945
 
1894
1946
  esquery@^1.0.1:
1895
- version "1.3.1"
1896
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
1897
- integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
1947
+ version "1.4.0"
1948
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
1949
+ integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
1898
1950
  dependencies:
1899
1951
  estraverse "^5.1.0"
1900
1952
 
@@ -1905,7 +1957,7 @@ esrecurse@^4.3.0:
1905
1957
  dependencies:
1906
1958
  estraverse "^5.2.0"
1907
1959
 
1908
- estraverse@^4.1.1, estraverse@^4.2.0:
1960
+ estraverse@^4.1.1:
1909
1961
  version "4.3.0"
1910
1962
  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
1911
1963
  integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
@@ -1935,7 +1987,7 @@ execa@^2.0.3, execa@^2.0.4:
1935
1987
  signal-exit "^3.0.2"
1936
1988
  strip-final-newline "^2.0.0"
1937
1989
 
1938
- extend@^3.0.0, extend@~3.0.2:
1990
+ extend@^3.0.0:
1939
1991
  version "3.0.2"
1940
1992
  resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
1941
1993
  integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
@@ -1949,32 +2001,21 @@ external-editor@^3.0.3:
1949
2001
  iconv-lite "^0.4.24"
1950
2002
  tmp "^0.0.33"
1951
2003
 
1952
- extsprintf@1.3.0:
1953
- version "1.3.0"
1954
- resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1955
- integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
1956
-
1957
- extsprintf@^1.2.0:
1958
- version "1.4.0"
1959
- resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
1960
- integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
1961
-
1962
2004
  fast-deep-equal@^3.1.1:
1963
2005
  version "3.1.3"
1964
2006
  resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
1965
2007
  integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
1966
2008
 
1967
2009
  fast-glob@^3.0.3:
1968
- version "3.2.4"
1969
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3"
1970
- integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==
2010
+ version "3.2.7"
2011
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1"
2012
+ integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==
1971
2013
  dependencies:
1972
2014
  "@nodelib/fs.stat" "^2.0.2"
1973
2015
  "@nodelib/fs.walk" "^1.2.3"
1974
- glob-parent "^5.1.0"
2016
+ glob-parent "^5.1.2"
1975
2017
  merge2 "^1.3.0"
1976
- micromatch "^4.0.2"
1977
- picomatch "^2.2.1"
2018
+ micromatch "^4.0.4"
1978
2019
 
1979
2020
  fast-json-stable-stringify@^2.0.0:
1980
2021
  version "2.1.0"
@@ -1987,9 +2028,9 @@ fast-levenshtein@~2.0.6:
1987
2028
  integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
1988
2029
 
1989
2030
  fastq@^1.6.0:
1990
- version "1.9.0"
1991
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.9.0.tgz#e16a72f338eaca48e91b5c23593bcc2ef66b7947"
1992
- integrity sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==
2031
+ version "1.11.1"
2032
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.1.tgz#5d8175aae17db61947f8b162cfc7f63264d22807"
2033
+ integrity sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==
1993
2034
  dependencies:
1994
2035
  reusify "^1.0.4"
1995
2036
 
@@ -2105,18 +2146,13 @@ foreach@^2.0.5:
2105
2146
  resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
2106
2147
  integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k=
2107
2148
 
2108
- forever-agent@~0.6.1:
2109
- version "0.6.1"
2110
- resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
2111
- integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
2112
-
2113
- form-data@~2.3.2:
2114
- version "2.3.3"
2115
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
2116
- integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
2149
+ form-data@^3.0.0:
2150
+ version "3.0.1"
2151
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f"
2152
+ integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==
2117
2153
  dependencies:
2118
2154
  asynckit "^0.4.0"
2119
- combined-stream "^1.0.6"
2155
+ combined-stream "^1.0.8"
2120
2156
  mime-types "^2.1.12"
2121
2157
 
2122
2158
  fs.realpath@^1.0.0:
@@ -2124,10 +2160,10 @@ fs.realpath@^1.0.0:
2124
2160
  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
2125
2161
  integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
2126
2162
 
2127
- fsevents@~2.1.2:
2128
- version "2.1.3"
2129
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e"
2130
- integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
2163
+ fsevents@~2.3.1:
2164
+ version "2.3.2"
2165
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
2166
+ integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
2131
2167
 
2132
2168
  function-bind@^1.1.1:
2133
2169
  version "1.1.1"
@@ -2139,20 +2175,20 @@ functional-red-black-tree@^1.0.1:
2139
2175
  resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
2140
2176
  integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
2141
2177
 
2142
- gensync@^1.0.0-beta.1:
2178
+ gensync@^1.0.0-beta.2:
2143
2179
  version "1.0.0-beta.2"
2144
2180
  resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
2145
2181
  integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
2146
2182
 
2147
- get-caller-file@^2.0.1:
2183
+ get-caller-file@^2.0.5:
2148
2184
  version "2.0.5"
2149
2185
  resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
2150
2186
  integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
2151
2187
 
2152
- get-intrinsic@^1.0.0:
2153
- version "1.0.2"
2154
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.2.tgz#6820da226e50b24894e08859469dc68361545d49"
2155
- integrity sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==
2188
+ get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
2189
+ version "1.1.1"
2190
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
2191
+ integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
2156
2192
  dependencies:
2157
2193
  function-bind "^1.1.1"
2158
2194
  has "^1.0.3"
@@ -2182,21 +2218,14 @@ get-stream@^5.0.0:
2182
2218
  dependencies:
2183
2219
  pump "^3.0.0"
2184
2220
 
2185
- getpass@^0.1.1:
2186
- version "0.1.7"
2187
- resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
2188
- integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
2189
- dependencies:
2190
- assert-plus "^1.0.0"
2191
-
2192
- glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0:
2193
- version "5.1.1"
2194
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
2195
- integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
2221
+ glob-parent@^5.0.0, glob-parent@^5.1.2, glob-parent@~5.1.0:
2222
+ version "5.1.2"
2223
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
2224
+ integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
2196
2225
  dependencies:
2197
2226
  is-glob "^4.0.1"
2198
2227
 
2199
- glob@7.1.6, glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
2228
+ glob@7.1.6:
2200
2229
  version "7.1.6"
2201
2230
  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
2202
2231
  integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
@@ -2208,6 +2237,18 @@ glob@7.1.6, glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
2208
2237
  once "^1.3.0"
2209
2238
  path-is-absolute "^1.0.0"
2210
2239
 
2240
+ glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
2241
+ version "7.1.7"
2242
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
2243
+ integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
2244
+ dependencies:
2245
+ fs.realpath "^1.0.0"
2246
+ inflight "^1.0.4"
2247
+ inherits "2"
2248
+ minimatch "^3.0.4"
2249
+ once "^1.3.0"
2250
+ path-is-absolute "^1.0.0"
2251
+
2211
2252
  globals@^11.1.0:
2212
2253
  version "11.12.0"
2213
2254
  resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
@@ -2246,9 +2287,9 @@ globby@^10.0.1:
2246
2287
  slash "^3.0.0"
2247
2288
 
2248
2289
  graceful-fs@^4.2.2:
2249
- version "4.2.4"
2250
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
2251
- integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
2290
+ version "4.2.6"
2291
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
2292
+ integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
2252
2293
 
2253
2294
  graphql@14.6.0:
2254
2295
  version "14.6.0"
@@ -2263,9 +2304,9 @@ growl@1.10.5:
2263
2304
  integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
2264
2305
 
2265
2306
  handlebars@^4.0.13:
2266
- version "4.7.6"
2267
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
2268
- integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==
2307
+ version "4.7.7"
2308
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
2309
+ integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
2269
2310
  dependencies:
2270
2311
  minimist "^1.2.5"
2271
2312
  neo-async "^2.6.0"
@@ -2274,19 +2315,6 @@ handlebars@^4.0.13:
2274
2315
  optionalDependencies:
2275
2316
  uglify-js "^3.1.4"
2276
2317
 
2277
- har-schema@^2.0.0:
2278
- version "2.0.0"
2279
- resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
2280
- integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
2281
-
2282
- har-validator@~5.1.3:
2283
- version "5.1.5"
2284
- resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"
2285
- integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
2286
- dependencies:
2287
- ajv "^6.12.3"
2288
- har-schema "^2.0.0"
2289
-
2290
2318
  has-ansi@^2.0.0:
2291
2319
  version "2.0.0"
2292
2320
  resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
@@ -2294,6 +2322,11 @@ has-ansi@^2.0.0:
2294
2322
  dependencies:
2295
2323
  ansi-regex "^2.0.0"
2296
2324
 
2325
+ has-bigints@^1.0.1:
2326
+ version "1.0.1"
2327
+ resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
2328
+ integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
2329
+
2297
2330
  has-flag@^1.0.0:
2298
2331
  version "1.0.0"
2299
2332
  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
@@ -2309,10 +2342,10 @@ has-flag@^4.0.0:
2309
2342
  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
2310
2343
  integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
2311
2344
 
2312
- has-symbols@^1.0.1:
2313
- version "1.0.1"
2314
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
2315
- integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
2345
+ has-symbols@^1.0.1, has-symbols@^1.0.2:
2346
+ version "1.0.2"
2347
+ resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
2348
+ integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
2316
2349
 
2317
2350
  has@^1.0.3:
2318
2351
  version "1.0.3"
@@ -2348,14 +2381,22 @@ html-tag-names@1.1.5:
2348
2381
  resolved "https://registry.yarnpkg.com/html-tag-names/-/html-tag-names-1.1.5.tgz#f537420c16769511283f8ae1681785fbc89ee0a9"
2349
2382
  integrity sha512-aI5tKwNTBzOZApHIynaAwecLBv8TlZTEy/P4Sj2SzzAhBrGuI8yGZ0UIXVPQzOHGS+to2mjb04iy6VWt/8+d8A==
2350
2383
 
2351
- http-signature@~1.2.0:
2352
- version "1.2.0"
2353
- resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
2354
- integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=
2384
+ http-proxy-agent@^4.0.1:
2385
+ version "4.0.1"
2386
+ resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
2387
+ integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
2355
2388
  dependencies:
2356
- assert-plus "^1.0.0"
2357
- jsprim "^1.2.2"
2358
- sshpk "^1.7.0"
2389
+ "@tootallnate/once" "1"
2390
+ agent-base "6"
2391
+ debug "4"
2392
+
2393
+ https-proxy-agent@^5.0.0:
2394
+ version "5.0.0"
2395
+ resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2"
2396
+ integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==
2397
+ dependencies:
2398
+ agent-base "6"
2399
+ debug "4"
2359
2400
 
2360
2401
  iconv-lite@0.4.24, iconv-lite@^0.4.24:
2361
2402
  version "0.4.24"
@@ -2388,9 +2429,9 @@ import-fresh@^2.0.0:
2388
2429
  resolve-from "^3.0.0"
2389
2430
 
2390
2431
  import-fresh@^3.0.0:
2391
- version "3.2.2"
2392
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e"
2393
- integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==
2432
+ version "3.3.0"
2433
+ resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
2434
+ integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
2394
2435
  dependencies:
2395
2436
  parent-module "^1.0.0"
2396
2437
  resolve-from "^4.0.0"
@@ -2447,11 +2488,6 @@ inquirer@^7.0.0:
2447
2488
  strip-ansi "^6.0.0"
2448
2489
  through "^2.3.6"
2449
2490
 
2450
- ip-regex@^2.1.0:
2451
- version "2.1.0"
2452
- resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
2453
- integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
2454
-
2455
2491
  is-alphabetical@^1.0.0:
2456
2492
  version "1.0.4"
2457
2493
  resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
@@ -2477,6 +2513,11 @@ is-arrayish@^0.2.1:
2477
2513
  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2478
2514
  integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
2479
2515
 
2516
+ is-bigint@^1.0.1:
2517
+ version "1.0.2"
2518
+ resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a"
2519
+ integrity sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==
2520
+
2480
2521
  is-binary-path@~2.1.0:
2481
2522
  version "2.1.0"
2482
2523
  resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
@@ -2484,15 +2525,22 @@ is-binary-path@~2.1.0:
2484
2525
  dependencies:
2485
2526
  binary-extensions "^2.0.0"
2486
2527
 
2528
+ is-boolean-object@^1.1.0:
2529
+ version "1.1.1"
2530
+ resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8"
2531
+ integrity sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==
2532
+ dependencies:
2533
+ call-bind "^1.0.2"
2534
+
2487
2535
  is-buffer@^2.0.0:
2488
2536
  version "2.0.5"
2489
2537
  resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
2490
2538
  integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
2491
2539
 
2492
- is-callable@^1.1.4, is-callable@^1.2.2:
2493
- version "1.2.2"
2494
- resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9"
2495
- integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==
2540
+ is-callable@^1.1.4, is-callable@^1.2.3:
2541
+ version "1.2.3"
2542
+ resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e"
2543
+ integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==
2496
2544
 
2497
2545
  is-ci@2.0.0:
2498
2546
  version "2.0.0"
@@ -2501,10 +2549,17 @@ is-ci@2.0.0:
2501
2549
  dependencies:
2502
2550
  ci-info "^2.0.0"
2503
2551
 
2552
+ is-core-module@^2.2.0:
2553
+ version "2.5.0"
2554
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.5.0.tgz#f754843617c70bfd29b7bd87327400cda5c18491"
2555
+ integrity sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==
2556
+ dependencies:
2557
+ has "^1.0.3"
2558
+
2504
2559
  is-date-object@^1.0.1:
2505
- version "1.0.2"
2506
- resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
2507
- integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
2560
+ version "1.0.4"
2561
+ resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5"
2562
+ integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==
2508
2563
 
2509
2564
  is-decimal@^1.0.0:
2510
2565
  version "1.0.4"
@@ -2539,9 +2594,9 @@ is-fullwidth-code-point@^3.0.0:
2539
2594
  integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
2540
2595
 
2541
2596
  is-generator-function@^1.0.7:
2542
- version "1.0.8"
2543
- resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.8.tgz#dfb5c2b120e02b0a8d9d2c6806cd5621aa922f7b"
2544
- integrity sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==
2597
+ version "1.0.9"
2598
+ resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.9.tgz#e5f82c2323673e7fcad3d12858c83c4039f6399c"
2599
+ integrity sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==
2545
2600
 
2546
2601
  is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
2547
2602
  version "4.0.1"
@@ -2556,17 +2611,23 @@ is-hexadecimal@^1.0.0:
2556
2611
  integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
2557
2612
 
2558
2613
  is-nan@^1.2.1:
2559
- version "1.3.0"
2560
- resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.0.tgz#85d1f5482f7051c2019f5673ccebdb06f3b0db03"
2561
- integrity sha512-z7bbREymOqt2CCaZVly8aC4ML3Xhfi0ekuOnjO2L8vKdl+CttdVoGZQhd4adMFAsxQ5VeRVwORs4tU8RH+HFtQ==
2614
+ version "1.3.2"
2615
+ resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d"
2616
+ integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==
2562
2617
  dependencies:
2618
+ call-bind "^1.0.0"
2563
2619
  define-properties "^1.1.3"
2564
2620
 
2565
- is-negative-zero@^2.0.0:
2621
+ is-negative-zero@^2.0.1:
2566
2622
  version "2.0.1"
2567
2623
  resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
2568
2624
  integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
2569
2625
 
2626
+ is-number-object@^1.0.4:
2627
+ version "1.0.5"
2628
+ resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb"
2629
+ integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==
2630
+
2570
2631
  is-number@^7.0.0:
2571
2632
  version "7.0.0"
2572
2633
  resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
@@ -2590,31 +2651,39 @@ is-path-cwd@^2.2.0:
2590
2651
  integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
2591
2652
 
2592
2653
  is-path-inside@^3.0.1:
2593
- version "3.0.2"
2594
- resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017"
2595
- integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==
2654
+ version "3.0.3"
2655
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
2656
+ integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
2596
2657
 
2597
2658
  is-plain-obj@^2.0.0, is-plain-obj@^2.1.0:
2598
2659
  version "2.1.0"
2599
2660
  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
2600
2661
  integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
2601
2662
 
2602
- is-potential-custom-element-name@^1.0.0:
2603
- version "1.0.0"
2604
- resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397"
2605
- integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c=
2663
+ is-plain-object@^2.0.4:
2664
+ version "2.0.4"
2665
+ resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
2666
+ integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
2667
+ dependencies:
2668
+ isobject "^3.0.1"
2669
+
2670
+ is-potential-custom-element-name@^1.0.1:
2671
+ version "1.0.1"
2672
+ resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
2673
+ integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
2606
2674
 
2607
2675
  is-promise@^2.1.0:
2608
2676
  version "2.2.2"
2609
2677
  resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
2610
2678
  integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
2611
2679
 
2612
- is-regex@^1.1.1:
2613
- version "1.1.1"
2614
- resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
2615
- integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==
2680
+ is-regex@^1.1.3:
2681
+ version "1.1.3"
2682
+ resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
2683
+ integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==
2616
2684
  dependencies:
2617
- has-symbols "^1.0.1"
2685
+ call-bind "^1.0.2"
2686
+ has-symbols "^1.0.2"
2618
2687
 
2619
2688
  is-regexp@^1.0.0:
2620
2689
  version "1.0.0"
@@ -2631,29 +2700,29 @@ is-stream@^2.0.0:
2631
2700
  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
2632
2701
  integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
2633
2702
 
2634
- is-symbol@^1.0.2:
2635
- version "1.0.3"
2636
- resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
2637
- integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
2703
+ is-string@^1.0.5, is-string@^1.0.6:
2704
+ version "1.0.6"
2705
+ resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
2706
+ integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==
2707
+
2708
+ is-symbol@^1.0.2, is-symbol@^1.0.3:
2709
+ version "1.0.4"
2710
+ resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
2711
+ integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
2638
2712
  dependencies:
2639
- has-symbols "^1.0.1"
2713
+ has-symbols "^1.0.2"
2640
2714
 
2641
2715
  is-typed-array@^1.1.3:
2642
- version "1.1.4"
2643
- resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.4.tgz#1f66f34a283a3c94a4335434661ca53fff801120"
2644
- integrity sha512-ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA==
2716
+ version "1.1.5"
2717
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz#f32e6e096455e329eb7b423862456aa213f0eb4e"
2718
+ integrity sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==
2645
2719
  dependencies:
2646
2720
  available-typed-arrays "^1.0.2"
2647
- call-bind "^1.0.0"
2648
- es-abstract "^1.18.0-next.1"
2721
+ call-bind "^1.0.2"
2722
+ es-abstract "^1.18.0-next.2"
2649
2723
  foreach "^2.0.5"
2650
2724
  has-symbols "^1.0.1"
2651
2725
 
2652
- is-typedarray@~1.0.0:
2653
- version "1.0.0"
2654
- resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2655
- integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
2656
-
2657
2726
  is-whitespace-character@^1.0.0:
2658
2727
  version "1.0.4"
2659
2728
  resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7"
@@ -2669,10 +2738,10 @@ isexe@^2.0.0:
2669
2738
  resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2670
2739
  integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
2671
2740
 
2672
- isstream@~0.1.2:
2673
- version "0.1.2"
2674
- resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
2675
- integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
2741
+ isobject@^3.0.1:
2742
+ version "3.0.1"
2743
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
2744
+ integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
2676
2745
 
2677
2746
  iterall@^1.2.2:
2678
2747
  version "1.3.0"
@@ -2696,13 +2765,12 @@ js-tokens@^4.0.0:
2696
2765
  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2697
2766
  integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
2698
2767
 
2699
- js-yaml@3.14.0:
2700
- version "3.14.0"
2701
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482"
2702
- integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
2768
+ js-yaml@4.0.0:
2769
+ version "4.0.0"
2770
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz#f426bc0ff4b4051926cd588c71113183409a121f"
2771
+ integrity sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==
2703
2772
  dependencies:
2704
- argparse "^1.0.7"
2705
- esprima "^4.0.0"
2773
+ argparse "^2.0.1"
2706
2774
 
2707
2775
  js-yaml@^3.13.1:
2708
2776
  version "3.14.1"
@@ -2712,41 +2780,42 @@ js-yaml@^3.13.1:
2712
2780
  argparse "^1.0.7"
2713
2781
  esprima "^4.0.0"
2714
2782
 
2715
- jsbn@~0.1.0:
2716
- version "0.1.1"
2717
- resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2718
- integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
2783
+ jsdom-global@^3.0.2:
2784
+ version "3.0.2"
2785
+ resolved "https://registry.yarnpkg.com/jsdom-global/-/jsdom-global-3.0.2.tgz#6bd299c13b0c4626b2da2c0393cd4385d606acb9"
2786
+ integrity sha1-a9KZwTsMRiay2iwDk81DhdYGrLk=
2719
2787
 
2720
2788
  jsdom@^16.0.1:
2721
- version "16.4.0"
2722
- resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb"
2723
- integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==
2789
+ version "16.6.0"
2790
+ resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.6.0.tgz#f79b3786682065492a3da6a60a4695da983805ac"
2791
+ integrity sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg==
2724
2792
  dependencies:
2725
- abab "^2.0.3"
2726
- acorn "^7.1.1"
2793
+ abab "^2.0.5"
2794
+ acorn "^8.2.4"
2727
2795
  acorn-globals "^6.0.0"
2728
2796
  cssom "^0.4.4"
2729
- cssstyle "^2.2.0"
2797
+ cssstyle "^2.3.0"
2730
2798
  data-urls "^2.0.0"
2731
- decimal.js "^10.2.0"
2799
+ decimal.js "^10.2.1"
2732
2800
  domexception "^2.0.1"
2733
- escodegen "^1.14.1"
2801
+ escodegen "^2.0.0"
2802
+ form-data "^3.0.0"
2734
2803
  html-encoding-sniffer "^2.0.1"
2735
- is-potential-custom-element-name "^1.0.0"
2804
+ http-proxy-agent "^4.0.1"
2805
+ https-proxy-agent "^5.0.0"
2806
+ is-potential-custom-element-name "^1.0.1"
2736
2807
  nwsapi "^2.2.0"
2737
- parse5 "5.1.1"
2738
- request "^2.88.2"
2739
- request-promise-native "^1.0.8"
2740
- saxes "^5.0.0"
2808
+ parse5 "6.0.1"
2809
+ saxes "^5.0.1"
2741
2810
  symbol-tree "^3.2.4"
2742
- tough-cookie "^3.0.1"
2811
+ tough-cookie "^4.0.0"
2743
2812
  w3c-hr-time "^1.0.2"
2744
2813
  w3c-xmlserializer "^2.0.0"
2745
2814
  webidl-conversions "^6.1.0"
2746
2815
  whatwg-encoding "^1.0.5"
2747
2816
  whatwg-mimetype "^2.3.0"
2748
- whatwg-url "^8.0.0"
2749
- ws "^7.2.3"
2817
+ whatwg-url "^8.5.0"
2818
+ ws "^7.4.5"
2750
2819
  xml-name-validator "^3.0.0"
2751
2820
 
2752
2821
  jsesc@^2.5.1:
@@ -2769,11 +2838,6 @@ json-schema-traverse@^0.4.1:
2769
2838
  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
2770
2839
  integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
2771
2840
 
2772
- json-schema@0.2.3:
2773
- version "0.2.3"
2774
- resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2775
- integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=
2776
-
2777
2841
  json-stable-stringify-without-jsonify@^1.0.1:
2778
2842
  version "1.0.1"
2779
2843
  resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
@@ -2786,15 +2850,10 @@ json-stable-stringify@1.0.1:
2786
2850
  dependencies:
2787
2851
  jsonify "~0.0.0"
2788
2852
 
2789
- json-stringify-safe@~5.0.1:
2790
- version "5.0.1"
2791
- resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2792
- integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
2793
-
2794
2853
  json5@^2.1.2:
2795
- version "2.1.3"
2796
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
2797
- integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
2854
+ version "2.2.0"
2855
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
2856
+ integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
2798
2857
  dependencies:
2799
2858
  minimist "^1.2.5"
2800
2859
 
@@ -2803,15 +2862,10 @@ jsonify@~0.0.0:
2803
2862
  resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2804
2863
  integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
2805
2864
 
2806
- jsprim@^1.2.2:
2807
- version "1.4.1"
2808
- resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
2809
- integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
2810
- dependencies:
2811
- assert-plus "1.0.0"
2812
- extsprintf "1.3.0"
2813
- json-schema "0.2.3"
2814
- verror "1.10.0"
2865
+ kind-of@^6.0.2:
2866
+ version "6.0.3"
2867
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
2868
+ integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
2815
2869
 
2816
2870
  leven@3.1.0:
2817
2871
  version "3.1.0"
@@ -2927,10 +2981,10 @@ locate-path@^6.0.0:
2927
2981
  dependencies:
2928
2982
  p-locate "^5.0.0"
2929
2983
 
2930
- lodash.sortby@^4.7.0:
2931
- version "4.7.0"
2932
- resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
2933
- integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
2984
+ lodash.debounce@^4.0.8:
2985
+ version "4.0.8"
2986
+ resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
2987
+ integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
2934
2988
 
2935
2989
  lodash.unescape@4.0.1:
2936
2990
  version "4.0.1"
@@ -2942,10 +2996,10 @@ lodash.uniqby@4.7.0:
2942
2996
  resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302"
2943
2997
  integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=
2944
2998
 
2945
- lodash@^4.17.14, lodash@^4.17.19:
2946
- version "4.17.20"
2947
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
2948
- integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
2999
+ lodash@^4.17.14, lodash@^4.17.19, lodash@^4.7.0:
3000
+ version "4.17.21"
3001
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
3002
+ integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
2949
3003
 
2950
3004
  log-symbols@4.0.0:
2951
3005
  version "4.0.0"
@@ -3024,25 +3078,25 @@ merge2@^1.2.3, merge2@^1.3.0:
3024
3078
  resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
3025
3079
  integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
3026
3080
 
3027
- micromatch@^4.0.2:
3028
- version "4.0.2"
3029
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
3030
- integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
3081
+ micromatch@^4.0.2, micromatch@^4.0.4:
3082
+ version "4.0.4"
3083
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
3084
+ integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
3031
3085
  dependencies:
3032
3086
  braces "^3.0.1"
3033
- picomatch "^2.0.5"
3087
+ picomatch "^2.2.3"
3034
3088
 
3035
- mime-db@1.44.0:
3036
- version "1.44.0"
3037
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92"
3038
- integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==
3089
+ mime-db@1.48.0:
3090
+ version "1.48.0"
3091
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d"
3092
+ integrity sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==
3039
3093
 
3040
- mime-types@^2.1.12, mime-types@~2.1.19:
3041
- version "2.1.27"
3042
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f"
3043
- integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==
3094
+ mime-types@^2.1.12:
3095
+ version "2.1.31"
3096
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b"
3097
+ integrity sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==
3044
3098
  dependencies:
3045
- mime-db "1.44.0"
3099
+ mime-db "1.48.0"
3046
3100
 
3047
3101
  mimic-fn@^1.0.0:
3048
3102
  version "1.2.0"
@@ -3074,34 +3128,34 @@ mkdirp@^0.5.1:
3074
3128
  minimist "^1.2.5"
3075
3129
 
3076
3130
  mocha@^8.0.1:
3077
- version "8.2.1"
3078
- resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.2.1.tgz#f2fa68817ed0e53343d989df65ccd358bc3a4b39"
3079
- integrity sha512-cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w==
3131
+ version "8.4.0"
3132
+ resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.4.0.tgz#677be88bf15980a3cae03a73e10a0fc3997f0cff"
3133
+ integrity sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==
3080
3134
  dependencies:
3081
3135
  "@ungap/promise-all-settled" "1.1.2"
3082
3136
  ansi-colors "4.1.1"
3083
3137
  browser-stdout "1.3.1"
3084
- chokidar "3.4.3"
3085
- debug "4.2.0"
3086
- diff "4.0.2"
3138
+ chokidar "3.5.1"
3139
+ debug "4.3.1"
3140
+ diff "5.0.0"
3087
3141
  escape-string-regexp "4.0.0"
3088
3142
  find-up "5.0.0"
3089
3143
  glob "7.1.6"
3090
3144
  growl "1.10.5"
3091
3145
  he "1.2.0"
3092
- js-yaml "3.14.0"
3146
+ js-yaml "4.0.0"
3093
3147
  log-symbols "4.0.0"
3094
3148
  minimatch "3.0.4"
3095
- ms "2.1.2"
3096
- nanoid "3.1.12"
3149
+ ms "2.1.3"
3150
+ nanoid "3.1.20"
3097
3151
  serialize-javascript "5.0.1"
3098
3152
  strip-json-comments "3.1.1"
3099
- supports-color "7.2.0"
3153
+ supports-color "8.1.1"
3100
3154
  which "2.0.2"
3101
3155
  wide-align "1.1.3"
3102
- workerpool "6.0.2"
3103
- yargs "13.3.2"
3104
- yargs-parser "13.1.2"
3156
+ workerpool "6.1.0"
3157
+ yargs "16.2.0"
3158
+ yargs-parser "20.2.4"
3105
3159
  yargs-unparser "2.0.0"
3106
3160
 
3107
3161
  morphdom@^2.6.1:
@@ -3119,6 +3173,11 @@ ms@2.1.2:
3119
3173
  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
3120
3174
  integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
3121
3175
 
3176
+ ms@2.1.3:
3177
+ version "2.1.3"
3178
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
3179
+ integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
3180
+
3122
3181
  multimatch@^3.0.0:
3123
3182
  version "3.0.0"
3124
3183
  resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-3.0.0.tgz#0e2534cc6bc238d9ab67e1b9cd5fcd85a6dbf70b"
@@ -3139,10 +3198,10 @@ n-readlines@1.0.0:
3139
3198
  resolved "https://registry.yarnpkg.com/n-readlines/-/n-readlines-1.0.0.tgz#c353797f216c253fdfef7e91da4e8b17c29a91a6"
3140
3199
  integrity sha512-ISDqGcspVu6U3VKqtJZG1uR55SmNNF9uK0EMq1IvNVVZOui6MW6VR0+pIZhqz85ORAGp+4zW+5fJ/SE7bwEibA==
3141
3200
 
3142
- nanoid@3.1.12:
3143
- version "3.1.12"
3144
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.12.tgz#6f7736c62e8d39421601e4a0c77623a97ea69654"
3145
- integrity sha512-1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A==
3201
+ nanoid@3.1.20:
3202
+ version "3.1.20"
3203
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788"
3204
+ integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==
3146
3205
 
3147
3206
  natural-compare@^1.4.0:
3148
3207
  version "1.4.0"
@@ -3164,10 +3223,10 @@ node-modules-regexp@^1.0.0:
3164
3223
  resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
3165
3224
  integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
3166
3225
 
3167
- node-releases@^1.1.67:
3168
- version "1.1.67"
3169
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12"
3170
- integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==
3226
+ node-releases@^1.1.71:
3227
+ version "1.1.73"
3228
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20"
3229
+ integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==
3171
3230
 
3172
3231
  normalize-path@3.0.0, normalize-path@^3.0.0, normalize-path@~3.0.0:
3173
3232
  version "3.0.0"
@@ -3191,27 +3250,22 @@ nwsapi@^2.2.0:
3191
3250
  resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
3192
3251
  integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
3193
3252
 
3194
- oauth-sign@~0.9.0:
3195
- version "0.9.0"
3196
- resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
3197
- integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
3198
-
3199
3253
  object-assign@^4.0.1, object-assign@^4.1.0:
3200
3254
  version "4.1.1"
3201
3255
  resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
3202
3256
  integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
3203
3257
 
3204
- object-inspect@^1.8.0:
3205
- version "1.9.0"
3206
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a"
3207
- integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==
3258
+ object-inspect@^1.10.3:
3259
+ version "1.11.0"
3260
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1"
3261
+ integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==
3208
3262
 
3209
3263
  object-is@^1.0.1:
3210
- version "1.1.4"
3211
- resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.4.tgz#63d6c83c00a43f4cbc9434eb9757c8a5b8565068"
3212
- integrity sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==
3264
+ version "1.1.5"
3265
+ resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
3266
+ integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
3213
3267
  dependencies:
3214
- call-bind "^1.0.0"
3268
+ call-bind "^1.0.2"
3215
3269
  define-properties "^1.1.3"
3216
3270
 
3217
3271
  object-keys@^1.0.12, object-keys@^1.1.1:
@@ -3219,7 +3273,7 @@ object-keys@^1.0.12, object-keys@^1.1.1:
3219
3273
  resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
3220
3274
  integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
3221
3275
 
3222
- object.assign@^4.1.0, object.assign@^4.1.1:
3276
+ object.assign@^4.1.0, object.assign@^4.1.2:
3223
3277
  version "4.1.2"
3224
3278
  resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
3225
3279
  integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
@@ -3366,10 +3420,10 @@ parse-srcset@1.0.2:
3366
3420
  resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1"
3367
3421
  integrity sha1-8r0iH2zJcKk42IVWq8WJyqqiveE=
3368
3422
 
3369
- parse5@5.1.1:
3370
- version "5.1.1"
3371
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178"
3372
- integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==
3423
+ parse5@6.0.1:
3424
+ version "6.0.1"
3425
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
3426
+ integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
3373
3427
 
3374
3428
  path-exists@^3.0.0:
3375
3429
  version "3.0.0"
@@ -3397,24 +3451,19 @@ path-key@^3.0.0, path-key@^3.1.0:
3397
3451
  integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
3398
3452
 
3399
3453
  path-parse@^1.0.6:
3400
- version "1.0.6"
3401
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
3402
- integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
3454
+ version "1.0.7"
3455
+ resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
3456
+ integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
3403
3457
 
3404
3458
  path-type@^4.0.0:
3405
3459
  version "4.0.0"
3406
3460
  resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
3407
3461
  integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
3408
3462
 
3409
- performance-now@^2.1.0:
3410
- version "2.1.0"
3411
- resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
3412
- integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
3413
-
3414
- picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
3415
- version "2.2.2"
3416
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
3417
- integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
3463
+ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3:
3464
+ version "2.3.0"
3465
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
3466
+ integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
3418
3467
 
3419
3468
  pify@^2.0.0:
3420
3469
  version "2.3.0"
@@ -3507,9 +3556,9 @@ postcss@^5.2.16:
3507
3556
  supports-color "^3.2.3"
3508
3557
 
3509
3558
  postcss@^7.0.0:
3510
- version "7.0.35"
3511
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
3512
- integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==
3559
+ version "7.0.36"
3560
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.36.tgz#056f8cffa939662a8f5905950c07d5285644dfcb"
3561
+ integrity sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==
3513
3562
  dependencies:
3514
3563
  chalk "^2.4.2"
3515
3564
  source-map "^0.6.1"
@@ -3612,7 +3661,7 @@ pseudomap@^1.0.2:
3612
3661
  resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3613
3662
  integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
3614
3663
 
3615
- psl@^1.1.28:
3664
+ psl@^1.1.33:
3616
3665
  version "1.8.0"
3617
3666
  resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
3618
3667
  integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
@@ -3630,10 +3679,10 @@ punycode@^2.1.0, punycode@^2.1.1:
3630
3679
  resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
3631
3680
  integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
3632
3681
 
3633
- qs@~6.5.2:
3634
- version "6.5.2"
3635
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
3636
- integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
3682
+ queue-microtask@^1.2.2:
3683
+ version "1.2.3"
3684
+ resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
3685
+ integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
3637
3686
 
3638
3687
  randombytes@^2.1.0:
3639
3688
  version "2.1.0"
@@ -3703,9 +3752,9 @@ regjsgen@^0.5.1:
3703
3752
  integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
3704
3753
 
3705
3754
  regjsparser@^0.6.4:
3706
- version "0.6.4"
3707
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
3708
- integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==
3755
+ version "0.6.9"
3756
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
3757
+ integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
3709
3758
  dependencies:
3710
3759
  jsesc "~0.5.0"
3711
3760
 
@@ -3742,58 +3791,11 @@ repeat-string@^1.5.4:
3742
3791
  resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3743
3792
  integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
3744
3793
 
3745
- request-promise-core@1.1.4:
3746
- version "1.1.4"
3747
- resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f"
3748
- integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==
3749
- dependencies:
3750
- lodash "^4.17.19"
3751
-
3752
- request-promise-native@^1.0.8:
3753
- version "1.0.9"
3754
- resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28"
3755
- integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==
3756
- dependencies:
3757
- request-promise-core "1.1.4"
3758
- stealthy-require "^1.1.1"
3759
- tough-cookie "^2.3.3"
3760
-
3761
- request@^2.88.2:
3762
- version "2.88.2"
3763
- resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
3764
- integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
3765
- dependencies:
3766
- aws-sign2 "~0.7.0"
3767
- aws4 "^1.8.0"
3768
- caseless "~0.12.0"
3769
- combined-stream "~1.0.6"
3770
- extend "~3.0.2"
3771
- forever-agent "~0.6.1"
3772
- form-data "~2.3.2"
3773
- har-validator "~5.1.3"
3774
- http-signature "~1.2.0"
3775
- is-typedarray "~1.0.0"
3776
- isstream "~0.1.2"
3777
- json-stringify-safe "~5.0.1"
3778
- mime-types "~2.1.19"
3779
- oauth-sign "~0.9.0"
3780
- performance-now "^2.1.0"
3781
- qs "~6.5.2"
3782
- safe-buffer "^5.1.2"
3783
- tough-cookie "~2.5.0"
3784
- tunnel-agent "^0.6.0"
3785
- uuid "^3.3.2"
3786
-
3787
3794
  require-directory@^2.1.1:
3788
3795
  version "2.1.1"
3789
3796
  resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3790
3797
  integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
3791
3798
 
3792
- require-main-filename@^2.0.0:
3793
- version "2.0.0"
3794
- resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
3795
- integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
3796
-
3797
3799
  resolve-from@^3.0.0:
3798
3800
  version "3.0.0"
3799
3801
  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
@@ -3811,6 +3813,14 @@ resolve@1.15.1:
3811
3813
  dependencies:
3812
3814
  path-parse "^1.0.6"
3813
3815
 
3816
+ resolve@^1.14.2:
3817
+ version "1.20.0"
3818
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
3819
+ integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
3820
+ dependencies:
3821
+ is-core-module "^2.2.0"
3822
+ path-parse "^1.0.6"
3823
+
3814
3824
  restore-cursor@^2.0.0:
3815
3825
  version "2.0.0"
3816
3826
  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
@@ -3852,18 +3862,20 @@ run-async@^2.4.0:
3852
3862
  integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
3853
3863
 
3854
3864
  run-parallel@^1.1.9:
3855
- version "1.1.10"
3856
- resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz#60a51b2ae836636c81377df16cb107351bcd13ef"
3857
- integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==
3865
+ version "1.2.0"
3866
+ resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
3867
+ integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
3868
+ dependencies:
3869
+ queue-microtask "^1.2.2"
3858
3870
 
3859
3871
  rxjs@^6.3.3, rxjs@^6.6.0:
3860
- version "6.6.3"
3861
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552"
3862
- integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==
3872
+ version "6.6.7"
3873
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
3874
+ integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
3863
3875
  dependencies:
3864
3876
  tslib "^1.9.0"
3865
3877
 
3866
- safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2:
3878
+ safe-buffer@^5.1.0, safe-buffer@^5.1.2:
3867
3879
  version "5.2.1"
3868
3880
  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
3869
3881
  integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
@@ -3873,12 +3885,12 @@ safe-buffer@~5.1.1:
3873
3885
  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
3874
3886
  integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
3875
3887
 
3876
- "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
3888
+ "safer-buffer@>= 2.1.2 < 3":
3877
3889
  version "2.1.2"
3878
3890
  resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
3879
3891
  integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
3880
3892
 
3881
- saxes@^5.0.0:
3893
+ saxes@^5.0.1:
3882
3894
  version "5.0.1"
3883
3895
  resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
3884
3896
  integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
@@ -3890,7 +3902,7 @@ semver-compare@^1.0.0:
3890
3902
  resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
3891
3903
  integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
3892
3904
 
3893
- semver@6.3.0, semver@^6.1.2, semver@^6.3.0:
3905
+ semver@6.3.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
3894
3906
  version "6.3.0"
3895
3907
  resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
3896
3908
  integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
@@ -3900,7 +3912,7 @@ semver@7.0.0:
3900
3912
  resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
3901
3913
  integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
3902
3914
 
3903
- semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:
3915
+ semver@^5.5.0, semver@^5.6.0:
3904
3916
  version "5.7.1"
3905
3917
  resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
3906
3918
  integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
@@ -3912,10 +3924,12 @@ serialize-javascript@5.0.1:
3912
3924
  dependencies:
3913
3925
  randombytes "^2.1.0"
3914
3926
 
3915
- set-blocking@^2.0.0:
3916
- version "2.0.0"
3917
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3918
- integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
3927
+ shallow-clone@^3.0.0:
3928
+ version "3.0.1"
3929
+ resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
3930
+ integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
3931
+ dependencies:
3932
+ kind-of "^6.0.2"
3919
3933
 
3920
3934
  shebang-command@^1.2.0:
3921
3935
  version "1.2.0"
@@ -3952,9 +3966,9 @@ signal-exit@^3.0.2:
3952
3966
  integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
3953
3967
 
3954
3968
  simple-html-tokenizer@^0.5.7:
3955
- version "0.5.10"
3956
- resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.10.tgz#0843e4f00c9677f1c81e3dfeefcee0a4aca8e5d0"
3957
- integrity sha512-1DHMUmvUOGuUZ9/+cX/+hOhWhRD5dEw6lodn8WuV+T+cQ31hhBcCu1dcDsNotowi4mMaNhrLyKoS+DtB81HdDA==
3969
+ version "0.5.11"
3970
+ resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.11.tgz#4c5186083c164ba22a7b477b7687ac056ad6b1d9"
3971
+ integrity sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==
3958
3972
 
3959
3973
  slash@^3.0.0:
3960
3974
  version "3.0.0"
@@ -3998,31 +4012,11 @@ sprintf-js@~1.0.2:
3998
4012
  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3999
4013
  integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
4000
4014
 
4001
- sshpk@^1.7.0:
4002
- version "1.16.1"
4003
- resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
4004
- integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==
4005
- dependencies:
4006
- asn1 "~0.2.3"
4007
- assert-plus "^1.0.0"
4008
- bcrypt-pbkdf "^1.0.0"
4009
- dashdash "^1.12.0"
4010
- ecc-jsbn "~0.1.1"
4011
- getpass "^0.1.1"
4012
- jsbn "~0.1.0"
4013
- safer-buffer "^2.0.2"
4014
- tweetnacl "~0.14.0"
4015
-
4016
4015
  state-toggle@^1.0.0:
4017
4016
  version "1.0.3"
4018
4017
  resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe"
4019
4018
  integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==
4020
4019
 
4021
- stealthy-require@^1.1.1:
4022
- version "1.1.1"
4023
- resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
4024
- integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
4025
-
4026
4020
  "stimulus@>= 1.1":
4027
4021
  version "2.0.0"
4028
4022
  resolved "https://registry.yarnpkg.com/stimulus/-/stimulus-2.0.0.tgz#713c8b91a72ef90914b90955f0e705f004403047"
@@ -4036,7 +4030,7 @@ string-argv@^0.3.0:
4036
4030
  resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
4037
4031
  integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
4038
4032
 
4039
- string-width@4.2.0, string-width@^4.1.0:
4033
+ string-width@4.2.0:
4040
4034
  version "4.2.0"
4041
4035
  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
4042
4036
  integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
@@ -4062,7 +4056,7 @@ string-width@^1.0.1:
4062
4056
  is-fullwidth-code-point "^2.0.0"
4063
4057
  strip-ansi "^4.0.0"
4064
4058
 
4065
- string-width@^3.0.0, string-width@^3.1.0:
4059
+ string-width@^3.0.0:
4066
4060
  version "3.1.0"
4067
4061
  resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
4068
4062
  integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
@@ -4071,20 +4065,29 @@ string-width@^3.0.0, string-width@^3.1.0:
4071
4065
  is-fullwidth-code-point "^2.0.0"
4072
4066
  strip-ansi "^5.1.0"
4073
4067
 
4074
- string.prototype.trimend@^1.0.1:
4075
- version "1.0.3"
4076
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b"
4077
- integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==
4068
+ string-width@^4.1.0, string-width@^4.2.0:
4069
+ version "4.2.2"
4070
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
4071
+ integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
4078
4072
  dependencies:
4079
- call-bind "^1.0.0"
4073
+ emoji-regex "^8.0.0"
4074
+ is-fullwidth-code-point "^3.0.0"
4075
+ strip-ansi "^6.0.0"
4076
+
4077
+ string.prototype.trimend@^1.0.4:
4078
+ version "1.0.4"
4079
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
4080
+ integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
4081
+ dependencies:
4082
+ call-bind "^1.0.2"
4080
4083
  define-properties "^1.1.3"
4081
4084
 
4082
- string.prototype.trimstart@^1.0.1:
4083
- version "1.0.3"
4084
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa"
4085
- integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==
4085
+ string.prototype.trimstart@^1.0.4:
4086
+ version "1.0.4"
4087
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
4088
+ integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
4086
4089
  dependencies:
4087
- call-bind "^1.0.0"
4090
+ call-bind "^1.0.2"
4088
4091
  define-properties "^1.1.3"
4089
4092
 
4090
4093
  stringify-object@^3.3.0:
@@ -4110,7 +4113,7 @@ strip-ansi@^4.0.0:
4110
4113
  dependencies:
4111
4114
  ansi-regex "^3.0.0"
4112
4115
 
4113
- strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
4116
+ strip-ansi@^5.1.0, strip-ansi@^5.2.0:
4114
4117
  version "5.2.0"
4115
4118
  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
4116
4119
  integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
@@ -4134,10 +4137,10 @@ strip-json-comments@3.1.1, strip-json-comments@^3.0.1:
4134
4137
  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
4135
4138
  integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
4136
4139
 
4137
- supports-color@7.2.0, supports-color@^7.1.0:
4138
- version "7.2.0"
4139
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
4140
- integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
4140
+ supports-color@8.1.1:
4141
+ version "8.1.1"
4142
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
4143
+ integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
4141
4144
  dependencies:
4142
4145
  has-flag "^4.0.0"
4143
4146
 
@@ -4167,6 +4170,13 @@ supports-color@^6.1.0:
4167
4170
  dependencies:
4168
4171
  has-flag "^3.0.0"
4169
4172
 
4173
+ supports-color@^7.1.0:
4174
+ version "7.2.0"
4175
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
4176
+ integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
4177
+ dependencies:
4178
+ has-flag "^4.0.0"
4179
+
4170
4180
  symbol-observable@^1.1.0:
4171
4181
  version "1.2.0"
4172
4182
  resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
@@ -4216,27 +4226,19 @@ to-regex-range@^5.0.1:
4216
4226
  dependencies:
4217
4227
  is-number "^7.0.0"
4218
4228
 
4219
- tough-cookie@^2.3.3, tough-cookie@~2.5.0:
4220
- version "2.5.0"
4221
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
4222
- integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
4223
- dependencies:
4224
- psl "^1.1.28"
4225
- punycode "^2.1.1"
4226
-
4227
- tough-cookie@^3.0.1:
4228
- version "3.0.1"
4229
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2"
4230
- integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==
4229
+ tough-cookie@^4.0.0:
4230
+ version "4.0.0"
4231
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4"
4232
+ integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==
4231
4233
  dependencies:
4232
- ip-regex "^2.1.0"
4233
- psl "^1.1.28"
4234
+ psl "^1.1.33"
4234
4235
  punycode "^2.1.1"
4236
+ universalify "^0.1.2"
4235
4237
 
4236
- tr46@^2.0.2:
4237
- version "2.0.2"
4238
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.0.2.tgz#03273586def1595ae08fedb38d7733cee91d2479"
4239
- integrity sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==
4238
+ tr46@^2.1.0:
4239
+ version "2.1.0"
4240
+ resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240"
4241
+ integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==
4240
4242
  dependencies:
4241
4243
  punycode "^2.1.1"
4242
4244
 
@@ -4261,24 +4263,12 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
4261
4263
  integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
4262
4264
 
4263
4265
  tsutils@^3.17.1:
4264
- version "3.17.1"
4265
- resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759"
4266
- integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==
4266
+ version "3.21.0"
4267
+ resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
4268
+ integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
4267
4269
  dependencies:
4268
4270
  tslib "^1.8.1"
4269
4271
 
4270
- tunnel-agent@^0.6.0:
4271
- version "0.6.0"
4272
- resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
4273
- integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=
4274
- dependencies:
4275
- safe-buffer "^5.0.1"
4276
-
4277
- tweetnacl@^0.14.3, tweetnacl@~0.14.0:
4278
- version "0.14.5"
4279
- resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
4280
- integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
4281
-
4282
4272
  type-check@~0.3.2:
4283
4273
  version "0.3.2"
4284
4274
  resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
@@ -4286,10 +4276,10 @@ type-check@~0.3.2:
4286
4276
  dependencies:
4287
4277
  prelude-ls "~1.1.2"
4288
4278
 
4289
- type-fest@^0.11.0:
4290
- version "0.11.0"
4291
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1"
4292
- integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
4279
+ type-fest@^0.21.3:
4280
+ version "0.21.3"
4281
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
4282
+ integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
4293
4283
 
4294
4284
  type-fest@^0.8.1:
4295
4285
  version "0.8.1"
@@ -4297,9 +4287,19 @@ type-fest@^0.8.1:
4297
4287
  integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
4298
4288
 
4299
4289
  uglify-js@^3.1.4:
4300
- version "3.12.2"
4301
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.2.tgz#c7ae89da0ed1bb58999c7fce07190b347fdbdaba"
4302
- integrity sha512-rWYleAvfJPjduYCt+ELvzybNah/zIkRteGXIBO8X0lteRZPGladF61hFi8tU7qKTsF7u6DUQCtT9k00VlFOgkg==
4290
+ version "3.13.10"
4291
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.10.tgz#a6bd0d28d38f592c3adb6b180ea6e07e1e540a8d"
4292
+ integrity sha512-57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg==
4293
+
4294
+ unbox-primitive@^1.0.1:
4295
+ version "1.0.1"
4296
+ resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
4297
+ integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
4298
+ dependencies:
4299
+ function-bind "^1.1.1"
4300
+ has-bigints "^1.0.1"
4301
+ has-symbols "^1.0.2"
4302
+ which-boxed-primitive "^1.0.2"
4303
4303
 
4304
4304
  unherit@^1.0.4:
4305
4305
  version "1.1.3"
@@ -4395,17 +4395,22 @@ unist-util-visit@^1.1.0:
4395
4395
  dependencies:
4396
4396
  unist-util-visit-parents "^2.0.0"
4397
4397
 
4398
+ universalify@^0.1.2:
4399
+ version "0.1.2"
4400
+ resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
4401
+ integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
4402
+
4398
4403
  uri-js@^4.2.2:
4399
- version "4.4.0"
4400
- resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602"
4401
- integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==
4404
+ version "4.4.1"
4405
+ resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
4406
+ integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
4402
4407
  dependencies:
4403
4408
  punycode "^2.1.0"
4404
4409
 
4405
4410
  util@^0.12.0:
4406
- version "0.12.3"
4407
- resolved "https://registry.yarnpkg.com/util/-/util-0.12.3.tgz#971bb0292d2cc0c892dab7c6a5d37c2bec707888"
4408
- integrity sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==
4411
+ version "0.12.4"
4412
+ resolved "https://registry.yarnpkg.com/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253"
4413
+ integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==
4409
4414
  dependencies:
4410
4415
  inherits "^2.0.3"
4411
4416
  is-arguments "^1.0.4"
@@ -4414,24 +4419,10 @@ util@^0.12.0:
4414
4419
  safe-buffer "^5.1.2"
4415
4420
  which-typed-array "^1.1.2"
4416
4421
 
4417
- uuid@^3.3.2:
4418
- version "3.4.0"
4419
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
4420
- integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
4421
-
4422
4422
  v8-compile-cache@^2.0.3:
4423
- version "2.2.0"
4424
- resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"
4425
- integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
4426
-
4427
- verror@1.10.0:
4428
- version "1.10.0"
4429
- resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
4430
- integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
4431
- dependencies:
4432
- assert-plus "^1.0.0"
4433
- core-util-is "1.0.2"
4434
- extsprintf "^1.2.0"
4423
+ version "2.3.0"
4424
+ resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
4425
+ integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
4435
4426
 
4436
4427
  vfile-location@^2.0.0:
4437
4428
  version "2.0.6"
@@ -4501,19 +4492,25 @@ whatwg-mimetype@^2.3.0:
4501
4492
  resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
4502
4493
  integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
4503
4494
 
4504
- whatwg-url@^8.0.0:
4505
- version "8.4.0"
4506
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.4.0.tgz#50fb9615b05469591d2b2bd6dfaed2942ed72837"
4507
- integrity sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==
4495
+ whatwg-url@^8.0.0, whatwg-url@^8.5.0:
4496
+ version "8.7.0"
4497
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77"
4498
+ integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==
4508
4499
  dependencies:
4509
- lodash.sortby "^4.7.0"
4510
- tr46 "^2.0.2"
4500
+ lodash "^4.7.0"
4501
+ tr46 "^2.1.0"
4511
4502
  webidl-conversions "^6.1.0"
4512
4503
 
4513
- which-module@^2.0.0:
4514
- version "2.0.0"
4515
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
4516
- integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
4504
+ which-boxed-primitive@^1.0.2:
4505
+ version "1.0.2"
4506
+ resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
4507
+ integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
4508
+ dependencies:
4509
+ is-bigint "^1.0.1"
4510
+ is-boolean-object "^1.1.0"
4511
+ is-number-object "^1.0.4"
4512
+ is-string "^1.0.5"
4513
+ is-symbol "^1.0.3"
4517
4514
 
4518
4515
  which-typed-array@^1.1.2:
4519
4516
  version "1.1.4"
@@ -4559,10 +4556,10 @@ wordwrap@^1.0.0:
4559
4556
  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
4560
4557
  integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
4561
4558
 
4562
- workerpool@6.0.2:
4563
- version "6.0.2"
4564
- resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.0.2.tgz#e241b43d8d033f1beb52c7851069456039d1d438"
4565
- integrity sha512-DSNyvOpFKrNusaaUwk+ej6cBj1bmhLcBfj80elGk+ZIo5JSkq+unB1dLKEOcNfJDZgjGICfhQ0Q5TbP0PvF4+Q==
4559
+ workerpool@6.1.0:
4560
+ version "6.1.0"
4561
+ resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.0.tgz#a8e038b4c94569596852de7a8ea4228eefdeb37b"
4562
+ integrity sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==
4566
4563
 
4567
4564
  wrap-ansi@^3.0.1:
4568
4565
  version "3.0.1"
@@ -4572,14 +4569,14 @@ wrap-ansi@^3.0.1:
4572
4569
  string-width "^2.1.1"
4573
4570
  strip-ansi "^4.0.0"
4574
4571
 
4575
- wrap-ansi@^5.1.0:
4576
- version "5.1.0"
4577
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
4578
- integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
4572
+ wrap-ansi@^7.0.0:
4573
+ version "7.0.0"
4574
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
4575
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
4579
4576
  dependencies:
4580
- ansi-styles "^3.2.0"
4581
- string-width "^3.0.0"
4582
- strip-ansi "^5.0.0"
4577
+ ansi-styles "^4.0.0"
4578
+ string-width "^4.1.0"
4579
+ strip-ansi "^6.0.0"
4583
4580
 
4584
4581
  wrappy@1:
4585
4582
  version "1.0.2"
@@ -4593,10 +4590,10 @@ write@1.0.3:
4593
4590
  dependencies:
4594
4591
  mkdirp "^0.5.1"
4595
4592
 
4596
- ws@^7.2.3:
4597
- version "7.4.1"
4598
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.1.tgz#a333be02696bd0e54cea0434e21dcc8a9ac294bb"
4599
- integrity sha512-pTsP8UAfhy3sk1lSk/O/s4tjD0CRwvMnzvwr4OKGX7ZvqZtUyx4KIJB5JWbkykPoc55tixMGgTNoh3k4FkNGFQ==
4593
+ ws@^7.4.5:
4594
+ version "7.5.3"
4595
+ resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.3.tgz#160835b63c7d97bfab418fc1b8a9fced2ac01a74"
4596
+ integrity sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==
4600
4597
 
4601
4598
  xml-name-validator@^3.0.0:
4602
4599
  version "3.0.0"
@@ -4613,10 +4610,10 @@ xtend@^4.0.0, xtend@^4.0.1:
4613
4610
  resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
4614
4611
  integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
4615
4612
 
4616
- y18n@^4.0.0:
4617
- version "4.0.1"
4618
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4"
4619
- integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==
4613
+ y18n@^5.0.5:
4614
+ version "5.0.8"
4615
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
4616
+ integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
4620
4617
 
4621
4618
  yallist@^2.1.2:
4622
4619
  version "2.1.2"
@@ -4640,17 +4637,19 @@ yaml@1.8.3:
4640
4637
  "@babel/runtime" "^7.8.7"
4641
4638
 
4642
4639
  yaml@^1.7.1:
4643
- version "1.10.0"
4644
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"
4645
- integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==
4640
+ version "1.10.2"
4641
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
4642
+ integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
4646
4643
 
4647
- yargs-parser@13.1.2, yargs-parser@^13.1.2:
4648
- version "13.1.2"
4649
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
4650
- integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
4651
- dependencies:
4652
- camelcase "^5.0.0"
4653
- decamelize "^1.2.0"
4644
+ yargs-parser@20.2.4:
4645
+ version "20.2.4"
4646
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
4647
+ integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==
4648
+
4649
+ yargs-parser@^20.2.2:
4650
+ version "20.2.9"
4651
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
4652
+ integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
4654
4653
 
4655
4654
  yargs-unparser@2.0.0:
4656
4655
  version "2.0.0"
@@ -4662,21 +4661,18 @@ yargs-unparser@2.0.0:
4662
4661
  flat "^5.0.2"
4663
4662
  is-plain-obj "^2.1.0"
4664
4663
 
4665
- yargs@13.3.2:
4666
- version "13.3.2"
4667
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
4668
- integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
4664
+ yargs@16.2.0:
4665
+ version "16.2.0"
4666
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
4667
+ integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
4669
4668
  dependencies:
4670
- cliui "^5.0.0"
4671
- find-up "^3.0.0"
4672
- get-caller-file "^2.0.1"
4669
+ cliui "^7.0.2"
4670
+ escalade "^3.1.1"
4671
+ get-caller-file "^2.0.5"
4673
4672
  require-directory "^2.1.1"
4674
- require-main-filename "^2.0.0"
4675
- set-blocking "^2.0.0"
4676
- string-width "^3.0.0"
4677
- which-module "^2.0.0"
4678
- y18n "^4.0.0"
4679
- yargs-parser "^13.1.2"
4673
+ string-width "^4.2.0"
4674
+ y18n "^5.0.5"
4675
+ yargs-parser "^20.2.2"
4680
4676
 
4681
4677
  yocto-queue@^0.1.0:
4682
4678
  version "0.1.0"