trestle 0.9.2 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +4 -6
- data/Gemfile +0 -1
- data/README.md +3 -1
- data/app/assets/bundle/trestle/bundle.css +0 -0
- data/app/assets/bundle/trestle/bundle.js +0 -0
- data/app/assets/bundle/trestle/fa-brands-400.eot +0 -0
- data/app/assets/bundle/trestle/fa-brands-400.svg +0 -0
- data/app/assets/bundle/trestle/fa-brands-400.ttf +0 -0
- data/app/assets/bundle/trestle/fa-brands-400.woff +0 -0
- data/app/assets/bundle/trestle/fa-brands-400.woff2 +0 -0
- data/app/assets/bundle/trestle/fa-regular-400.eot +0 -0
- data/app/assets/bundle/trestle/fa-regular-400.svg +0 -0
- data/app/assets/bundle/trestle/fa-regular-400.ttf +0 -0
- data/app/assets/bundle/trestle/fa-regular-400.woff +0 -0
- data/app/assets/bundle/trestle/fa-regular-400.woff2 +0 -0
- data/app/assets/bundle/trestle/fa-solid-900.eot +0 -0
- data/app/assets/bundle/trestle/fa-solid-900.svg +0 -0
- data/app/assets/bundle/trestle/fa-solid-900.ttf +0 -0
- data/app/assets/bundle/trestle/fa-solid-900.woff +0 -0
- data/app/assets/bundle/trestle/fa-solid-900.woff2 +0 -0
- data/{lib → app/controllers/concerns}/trestle/controller/breadcrumbs.rb +0 -0
- data/{lib → app/controllers/concerns}/trestle/controller/callbacks.rb +0 -0
- data/{lib → app/controllers/concerns}/trestle/controller/dialog.rb +0 -0
- data/{lib → app/controllers/concerns}/trestle/controller/helpers.rb +0 -0
- data/{lib → app/controllers/concerns}/trestle/controller/layout.rb +0 -0
- data/{lib → app/controllers/concerns}/trestle/controller/location.rb +0 -0
- data/{lib → app/controllers/concerns}/trestle/controller/title.rb +0 -0
- data/{lib → app/controllers/concerns}/trestle/controller/toolbars.rb +0 -0
- data/{lib → app/controllers/concerns}/trestle/resource/controller/actions.rb +1 -1
- data/{lib → app/controllers/concerns}/trestle/resource/controller/data_methods.rb +1 -1
- data/{lib → app/controllers/concerns}/trestle/resource/controller/redirection.rb +1 -1
- data/{lib → app/controllers/concerns}/trestle/resource/controller/toolbar.rb +1 -1
- data/app/controllers/trestle/admin_controller.rb +33 -0
- data/{lib → app/controllers}/trestle/application_controller.rb +0 -0
- data/app/controllers/trestle/dashboard_controller.rb +13 -11
- data/app/controllers/trestle/resource_controller.rb +8 -0
- data/app/helpers/trestle/grid_helper.rb +7 -3
- data/app/helpers/trestle/hook_helper.rb +8 -6
- data/app/views/trestle/resource/edit.html.erb +2 -2
- data/app/views/trestle/resource/index.html.erb +1 -1
- data/app/views/trestle/resource/new.html.erb +1 -1
- data/app/views/trestle/resource/show.html.erb +2 -2
- data/frontend/css/components/_table.scss +16 -0
- data/frontend/css/layout/_sidebar.scss +6 -1
- data/frontend/js/components/confirmation.js +4 -2
- data/frontend/js/components/dialog.js +3 -0
- data/frontend/js/components/form.js +9 -0
- data/frontend/js/components/sidebar.js +5 -5
- data/frontend/js/components/table.js +33 -2
- data/frontend/theme/trestle/theme/bootstrap/_buttons.scss +3 -0
- data/lib/trestle.rb +22 -38
- data/lib/trestle/adapters.rb +1 -1
- data/lib/trestle/admin.rb +1 -4
- data/lib/trestle/admin/builder.rb +2 -2
- data/lib/trestle/configurable.rb +10 -0
- data/lib/trestle/configuration.rb +2 -2
- data/lib/trestle/engine.rb +1 -5
- data/lib/trestle/form.rb +5 -7
- data/lib/trestle/form/builder.rb +2 -3
- data/lib/trestle/form/field.rb +13 -3
- data/lib/trestle/form/fields.rb +6 -38
- data/lib/trestle/form/fields/tag_select.rb +2 -0
- data/lib/trestle/form/renderer.rb +4 -2
- data/lib/trestle/hook.rb +2 -2
- data/lib/trestle/navigation.rb +3 -6
- data/lib/trestle/reloader.rb +0 -8
- data/lib/trestle/resource.rb +4 -7
- data/lib/trestle/resource/builder.rb +1 -1
- data/lib/trestle/resource/toolbar.rb +16 -3
- data/lib/trestle/scopes.rb +2 -4
- data/lib/trestle/tab.rb +2 -0
- data/lib/trestle/table.rb +12 -13
- data/lib/trestle/table/actions_column.rb +6 -6
- data/lib/trestle/table/automatic.rb +3 -3
- data/lib/trestle/table/builder.rb +4 -4
- data/lib/trestle/table/column.rb +29 -24
- data/lib/trestle/table/row.rb +13 -13
- data/lib/trestle/table/select_column.rb +19 -7
- data/lib/trestle/toolbar.rb +4 -11
- data/lib/trestle/version.rb +1 -1
- data/trestle.gemspec +5 -6
- data/yarn.lock +1226 -1144
- metadata +24 -24
- data/lib/trestle/admin/controller.rb +0 -35
- data/lib/trestle/resource/controller.rb +0 -17
data/lib/trestle/scopes.rb
CHANGED
data/lib/trestle/tab.rb
CHANGED
data/lib/trestle/table.rb
CHANGED
@@ -1,16 +1,15 @@
|
|
1
1
|
module Trestle
|
2
2
|
class Table
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
attr_reader :columns, :options
|
3
|
+
require_relative "table/automatic"
|
4
|
+
require_relative "table/builder"
|
5
|
+
require_relative "table/column"
|
6
|
+
require_relative "table/actions_column"
|
7
|
+
require_relative "table/select_column"
|
8
|
+
require_relative "table/row"
|
9
|
+
|
10
|
+
attr_reader :columns
|
13
11
|
attr_writer :row
|
12
|
+
attr_accessor :options
|
14
13
|
|
15
14
|
def initialize(options={})
|
16
15
|
@options = options
|
@@ -19,7 +18,7 @@ module Trestle
|
|
19
18
|
|
20
19
|
def with_options(opts={})
|
21
20
|
dup.tap do |table|
|
22
|
-
table.options
|
21
|
+
table.options = options.merge(opts)
|
23
22
|
end
|
24
23
|
end
|
25
24
|
|
@@ -44,7 +43,7 @@ module Trestle
|
|
44
43
|
end
|
45
44
|
|
46
45
|
def row
|
47
|
-
@row || Row.new
|
46
|
+
@row || Row.new
|
48
47
|
end
|
49
48
|
|
50
49
|
class Renderer
|
@@ -55,7 +54,7 @@ module Trestle
|
|
55
54
|
end
|
56
55
|
|
57
56
|
def row
|
58
|
-
@row ||= @table.row.renderer(@template)
|
57
|
+
@row ||= @table.row.renderer(table: @table, template: @template)
|
59
58
|
end
|
60
59
|
|
61
60
|
def columns
|
@@ -1,10 +1,10 @@
|
|
1
1
|
module Trestle
|
2
2
|
class Table
|
3
3
|
class ActionsColumn
|
4
|
-
attr_reader :
|
4
|
+
attr_reader :toolbar, :options
|
5
5
|
|
6
|
-
def initialize(
|
7
|
-
@
|
6
|
+
def initialize(options={}, &block)
|
7
|
+
@options = options
|
8
8
|
@toolbar = Toolbar.new(ActionsBuilder)
|
9
9
|
|
10
10
|
if block_given?
|
@@ -14,8 +14,8 @@ module Trestle
|
|
14
14
|
end
|
15
15
|
end
|
16
16
|
|
17
|
-
def renderer(template)
|
18
|
-
Renderer.new(self, template)
|
17
|
+
def renderer(table:, template:)
|
18
|
+
Renderer.new(self, table: table, template: template)
|
19
19
|
end
|
20
20
|
|
21
21
|
def default_actions
|
@@ -71,7 +71,7 @@ module Trestle
|
|
71
71
|
end
|
72
72
|
|
73
73
|
def content(instance)
|
74
|
-
@template.render_toolbar(@column.toolbar, instance, table.admin)
|
74
|
+
@template.render_toolbar(@column.toolbar, instance, @table.admin)
|
75
75
|
end
|
76
76
|
end
|
77
77
|
end
|
@@ -13,15 +13,15 @@ module Trestle
|
|
13
13
|
admin.default_table_attributes.map.with_index do |attribute, index|
|
14
14
|
case attribute.type
|
15
15
|
when :association
|
16
|
-
Column.new(
|
16
|
+
Column.new(attribute.association_name, sort: false)
|
17
17
|
else
|
18
|
-
Column.new(
|
18
|
+
Column.new(attribute.name, link: index.zero?, align: (:center if [:datetime, :boolean].include?(attribute.type)))
|
19
19
|
end
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
23
|
def actions_column
|
24
|
-
ActionsColumn.new
|
24
|
+
ActionsColumn.new
|
25
25
|
end
|
26
26
|
end
|
27
27
|
end
|
@@ -9,11 +9,11 @@ module Trestle
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def row(options={}, &block)
|
12
|
-
table.row = Row.new(
|
12
|
+
table.row = Row.new(options, &block)
|
13
13
|
end
|
14
14
|
|
15
15
|
def selectable_column(options={})
|
16
|
-
table.columns << SelectColumn.new(
|
16
|
+
table.columns << SelectColumn.new(options)
|
17
17
|
end
|
18
18
|
|
19
19
|
def column(field, proc=nil, options={}, &block)
|
@@ -22,11 +22,11 @@ module Trestle
|
|
22
22
|
proc = nil
|
23
23
|
end
|
24
24
|
|
25
|
-
table.columns << Column.new(
|
25
|
+
table.columns << Column.new(field, options, &(proc || block))
|
26
26
|
end
|
27
27
|
|
28
28
|
def actions(options={}, &block)
|
29
|
-
table.columns << ActionsColumn.new(
|
29
|
+
table.columns << ActionsColumn.new(options, &block)
|
30
30
|
end
|
31
31
|
end
|
32
32
|
end
|
data/lib/trestle/table/column.rb
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
module Trestle
|
2
2
|
class Table
|
3
3
|
class Column
|
4
|
-
attr_reader :
|
4
|
+
attr_reader :field, :options, :block
|
5
5
|
|
6
|
-
def initialize(
|
7
|
-
@
|
6
|
+
def initialize(field, options={}, &block)
|
7
|
+
@field, @options = field, options
|
8
8
|
@block = block if block_given?
|
9
9
|
end
|
10
10
|
|
11
|
-
def renderer(template)
|
12
|
-
Renderer.new(self, template)
|
11
|
+
def renderer(table:, template:)
|
12
|
+
Renderer.new(self, table: table, template: template)
|
13
13
|
end
|
14
14
|
|
15
15
|
def sortable?
|
16
|
-
|
16
|
+
options[:sort] != false && (!@block || options.has_key?(:sort))
|
17
17
|
end
|
18
18
|
|
19
19
|
def sort_field
|
@@ -28,21 +28,11 @@ module Trestle
|
|
28
28
|
options[:sort].is_a?(Hash) ? options[:sort] : {}
|
29
29
|
end
|
30
30
|
|
31
|
-
def header
|
32
|
-
if options[:header]
|
33
|
-
options[:header]
|
34
|
-
elsif table.admin
|
35
|
-
table.admin.t("table.headers.#{field}", default: table.admin.human_attribute_name(field))
|
36
|
-
else
|
37
|
-
I18n.t("admin.table.headers.#{field}", default: field.to_s.humanize.titleize)
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
31
|
class Renderer
|
42
|
-
delegate :options,
|
32
|
+
delegate :options, to: :@column
|
43
33
|
|
44
|
-
def initialize(column, template)
|
45
|
-
@column, @template = column, template
|
34
|
+
def initialize(column, table:, template:)
|
35
|
+
@column, @table, @template = column, table, template
|
46
36
|
end
|
47
37
|
|
48
38
|
def render(instance)
|
@@ -70,10 +60,11 @@ module Trestle
|
|
70
60
|
def header
|
71
61
|
return if options.key?(:header) && options[:header].in?([nil, false])
|
72
62
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
63
|
+
if @table.sortable? && @column.sortable?
|
64
|
+
@template.sort_link(header_text, @column.sort_field, @column.sort_options)
|
65
|
+
else
|
66
|
+
header_text
|
67
|
+
end
|
77
68
|
end
|
78
69
|
|
79
70
|
def content(instance)
|
@@ -86,7 +77,7 @@ module Trestle
|
|
86
77
|
content = @template.admin_link_to(content, value)
|
87
78
|
elsif options[:link]
|
88
79
|
# Explicitly link to the specified admin, or the table's admin
|
89
|
-
content = @template.admin_link_to(content, instance, admin: options[:admin] || table.admin)
|
80
|
+
content = @template.admin_link_to(content, instance, admin: options[:admin] || @table.admin)
|
90
81
|
end
|
91
82
|
|
92
83
|
content
|
@@ -101,6 +92,20 @@ module Trestle
|
|
101
92
|
end
|
102
93
|
|
103
94
|
private
|
95
|
+
def header_text
|
96
|
+
if header = options[:header]
|
97
|
+
if header.respond_to?(:call)
|
98
|
+
@template.instance_exec(&header)
|
99
|
+
else
|
100
|
+
header
|
101
|
+
end
|
102
|
+
elsif @table.admin
|
103
|
+
@table.admin.t("table.headers.#{@column.field}", default: @table.admin.human_attribute_name(@column.field))
|
104
|
+
else
|
105
|
+
I18n.t("admin.table.headers.#{@column.field}", default: @column.field.to_s.humanize.titleize)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
104
109
|
def column_value(instance)
|
105
110
|
if @column.block
|
106
111
|
if defined?(Haml) && Haml::Helpers.block_is_haml?(@column.block)
|
data/lib/trestle/table/row.rb
CHANGED
@@ -1,26 +1,26 @@
|
|
1
1
|
module Trestle
|
2
2
|
class Table
|
3
3
|
class Row
|
4
|
-
attr_reader :
|
4
|
+
attr_reader :options, :block
|
5
5
|
|
6
|
-
def initialize(
|
7
|
-
@
|
6
|
+
def initialize(options={}, &block)
|
7
|
+
@options = options
|
8
8
|
@block = block if block_given?
|
9
9
|
end
|
10
10
|
|
11
|
-
def renderer(template)
|
12
|
-
Renderer.new(self, template)
|
11
|
+
def renderer(table:, template:)
|
12
|
+
Renderer.new(self, table: table, template: template)
|
13
13
|
end
|
14
14
|
|
15
15
|
class Renderer
|
16
|
-
|
17
|
-
|
18
|
-
def initialize(row, template)
|
19
|
-
@row, @template = row, template
|
16
|
+
def initialize(row, table:, template:)
|
17
|
+
@row, @table, @template = row, table, template
|
20
18
|
end
|
21
19
|
|
22
20
|
def columns
|
23
|
-
table.columns.map { |column|
|
21
|
+
@table.columns.map { |column|
|
22
|
+
column.renderer(table: @table, template: @template)
|
23
|
+
}.select(&:render?)
|
24
24
|
end
|
25
25
|
|
26
26
|
def render(instance)
|
@@ -32,9 +32,9 @@ module Trestle
|
|
32
32
|
def options(instance)
|
33
33
|
options = Trestle::Options.new
|
34
34
|
|
35
|
-
if table.admin && table.autolink? && table.admin.actions.include?(:show)
|
35
|
+
if @table.admin && @table.autolink? && @table.admin.actions.include?(:show)
|
36
36
|
options.merge!(data: { url: admin_url_for(instance) })
|
37
|
-
options.merge!(data: { behavior: "dialog" }) if table.admin.form.dialog?
|
37
|
+
options.merge!(data: { behavior: "dialog" }) if @table.admin.form.dialog?
|
38
38
|
end
|
39
39
|
|
40
40
|
options.merge!(@row.options)
|
@@ -45,7 +45,7 @@ module Trestle
|
|
45
45
|
|
46
46
|
protected
|
47
47
|
def admin_url_for(instance)
|
48
|
-
@template.admin_url_for(instance, admin: table.admin)
|
48
|
+
@template.admin_url_for(instance, admin: @table.admin)
|
49
49
|
end
|
50
50
|
end
|
51
51
|
end
|
@@ -1,23 +1,23 @@
|
|
1
1
|
module Trestle
|
2
2
|
class Table
|
3
3
|
class SelectColumn
|
4
|
-
attr_reader :
|
4
|
+
attr_reader :options
|
5
5
|
|
6
|
-
def initialize(
|
7
|
-
@
|
6
|
+
def initialize(options={})
|
7
|
+
@options = options
|
8
8
|
end
|
9
9
|
|
10
|
-
def renderer(template)
|
11
|
-
Renderer.new(self, template)
|
10
|
+
def renderer(table:, template:)
|
11
|
+
Renderer.new(self, table: table, template: template)
|
12
12
|
end
|
13
13
|
|
14
14
|
class Renderer < Column::Renderer
|
15
15
|
def header
|
16
|
-
|
16
|
+
checkbox "", nil, id: checkbox_id("all")
|
17
17
|
end
|
18
18
|
|
19
19
|
def content(instance)
|
20
|
-
|
20
|
+
checkbox "selected[]", instance.to_param, id: checkbox_id(instance.to_param)
|
21
21
|
end
|
22
22
|
|
23
23
|
def classes
|
@@ -27,6 +27,18 @@ module Trestle
|
|
27
27
|
def data
|
28
28
|
{}
|
29
29
|
end
|
30
|
+
|
31
|
+
private
|
32
|
+
def checkbox_id(param)
|
33
|
+
[@table.options[:id], "select", param].compact.join("-")
|
34
|
+
end
|
35
|
+
|
36
|
+
def checkbox(name, value="1", options={})
|
37
|
+
@template.content_tag(:div, class: "custom-control custom-checkbox") do
|
38
|
+
@template.check_box_tag(name, value, false, options.merge(class: "custom-control-input")) +
|
39
|
+
@template.tag(:label, for: options.fetch(:id), class: "custom-control-label")
|
40
|
+
end
|
41
|
+
end
|
30
42
|
end
|
31
43
|
end
|
32
44
|
end
|
data/lib/trestle/toolbar.rb
CHANGED
@@ -1,16 +1,9 @@
|
|
1
1
|
module Trestle
|
2
2
|
class Toolbar
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
autoload :Menu
|
8
|
-
|
9
|
-
autoload_at "trestle/toolbar/item" do
|
10
|
-
autoload :Button
|
11
|
-
autoload :Dropdown
|
12
|
-
autoload :Link
|
13
|
-
end
|
3
|
+
require_relative "toolbar/builder"
|
4
|
+
require_relative "toolbar/context"
|
5
|
+
require_relative "toolbar/item"
|
6
|
+
require_relative "toolbar/menu"
|
14
7
|
|
15
8
|
def initialize(builder=Builder)
|
16
9
|
@builder = builder
|
data/lib/trestle/version.rb
CHANGED
data/trestle.gemspec
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# coding: utf-8
|
2
|
-
|
3
|
-
|
4
|
-
require 'trestle/version'
|
2
|
+
$:.push File.expand_path("lib", __dir__)
|
3
|
+
require "trestle/version"
|
5
4
|
|
6
5
|
Gem::Specification.new do |spec|
|
7
6
|
spec.name = "trestle"
|
@@ -24,11 +23,11 @@ Gem::Specification.new do |spec|
|
|
24
23
|
spec.add_dependency "railties", ">= 4.2.0"
|
25
24
|
spec.add_dependency "activemodel", ">= 4.2.0"
|
26
25
|
spec.add_dependency "sprockets-rails", ">= 2.0.0"
|
27
|
-
spec.add_dependency "kaminari", "
|
26
|
+
spec.add_dependency "kaminari", ">= 1.1.0"
|
28
27
|
|
29
28
|
spec.add_development_dependency "rspec-rails", "~> 3.5"
|
30
|
-
spec.add_development_dependency "rspec-html-matchers", "~> 0.
|
31
|
-
spec.add_development_dependency "database_cleaner", "~> 1.
|
29
|
+
spec.add_development_dependency "rspec-html-matchers", "~> 0.9.2"
|
30
|
+
spec.add_development_dependency "database_cleaner", "~> 1.8.3"
|
32
31
|
spec.add_development_dependency "ammeter", "~> 1.1.4"
|
33
32
|
|
34
33
|
spec.add_development_dependency "bundler"
|
data/yarn.lock
CHANGED
@@ -2,813 +2,905 @@
|
|
2
2
|
# yarn lockfile v1
|
3
3
|
|
4
4
|
|
5
|
-
"@babel/code-frame@^7.
|
6
|
-
version "7.
|
7
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.
|
8
|
-
integrity sha512-
|
5
|
+
"@babel/code-frame@^7.8.3":
|
6
|
+
version "7.8.3"
|
7
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e"
|
8
|
+
integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
|
9
9
|
dependencies:
|
10
|
-
"@babel/highlight" "^7.
|
10
|
+
"@babel/highlight" "^7.8.3"
|
11
|
+
|
12
|
+
"@babel/compat-data@^7.9.6":
|
13
|
+
version "7.9.6"
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.9.6.tgz#3f604c40e420131affe6f2c8052e9a275ae2049b"
|
15
|
+
integrity sha512-5QPTrNen2bm7RBc7dsOmcA5hbrS4O2Vhmk5XOL4zWW/zD/hV0iinpefDlkm+tBBy8kDtFaaeEvmAqt+nURAV2g==
|
16
|
+
dependencies:
|
17
|
+
browserslist "^4.11.1"
|
18
|
+
invariant "^2.2.4"
|
19
|
+
semver "^5.5.0"
|
11
20
|
|
12
21
|
"@babel/core@^7.6.0":
|
13
|
-
version "7.
|
14
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.
|
15
|
-
integrity sha512-
|
16
|
-
dependencies:
|
17
|
-
"@babel/code-frame" "^7.
|
18
|
-
"@babel/generator" "^7.
|
19
|
-
"@babel/
|
20
|
-
"@babel/
|
21
|
-
"@babel/
|
22
|
-
"@babel/
|
23
|
-
"@babel/
|
22
|
+
version "7.9.6"
|
23
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.6.tgz#d9aa1f580abf3b2286ef40b6904d390904c63376"
|
24
|
+
integrity sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg==
|
25
|
+
dependencies:
|
26
|
+
"@babel/code-frame" "^7.8.3"
|
27
|
+
"@babel/generator" "^7.9.6"
|
28
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
29
|
+
"@babel/helpers" "^7.9.6"
|
30
|
+
"@babel/parser" "^7.9.6"
|
31
|
+
"@babel/template" "^7.8.6"
|
32
|
+
"@babel/traverse" "^7.9.6"
|
33
|
+
"@babel/types" "^7.9.6"
|
24
34
|
convert-source-map "^1.7.0"
|
25
35
|
debug "^4.1.0"
|
26
|
-
|
36
|
+
gensync "^1.0.0-beta.1"
|
37
|
+
json5 "^2.1.2"
|
27
38
|
lodash "^4.17.13"
|
28
39
|
resolve "^1.3.2"
|
29
40
|
semver "^5.4.1"
|
30
41
|
source-map "^0.5.0"
|
31
42
|
|
32
|
-
"@babel/generator@^7.
|
33
|
-
version "7.
|
34
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
35
|
-
integrity sha512
|
43
|
+
"@babel/generator@^7.9.6":
|
44
|
+
version "7.9.6"
|
45
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.6.tgz#5408c82ac5de98cda0d77d8124e99fa1f2170a43"
|
46
|
+
integrity sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ==
|
36
47
|
dependencies:
|
37
|
-
"@babel/types" "^7.
|
48
|
+
"@babel/types" "^7.9.6"
|
38
49
|
jsesc "^2.5.1"
|
39
50
|
lodash "^4.17.13"
|
40
51
|
source-map "^0.5.0"
|
41
52
|
|
42
|
-
"@babel/helper-annotate-as-pure@^7.
|
43
|
-
version "7.
|
44
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.
|
45
|
-
integrity sha512-
|
53
|
+
"@babel/helper-annotate-as-pure@^7.8.3":
|
54
|
+
version "7.8.3"
|
55
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee"
|
56
|
+
integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==
|
46
57
|
dependencies:
|
47
|
-
"@babel/types" "^7.
|
58
|
+
"@babel/types" "^7.8.3"
|
48
59
|
|
49
|
-
"@babel/helper-builder-binary-assignment-operator-visitor@^7.
|
50
|
-
version "7.
|
51
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.
|
52
|
-
integrity sha512-
|
60
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3":
|
61
|
+
version "7.8.3"
|
62
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503"
|
63
|
+
integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==
|
53
64
|
dependencies:
|
54
|
-
"@babel/helper-explode-assignable-expression" "^7.
|
55
|
-
"@babel/types" "^7.
|
65
|
+
"@babel/helper-explode-assignable-expression" "^7.8.3"
|
66
|
+
"@babel/types" "^7.8.3"
|
56
67
|
|
57
|
-
"@babel/helper-
|
58
|
-
version "7.
|
59
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
60
|
-
integrity sha512-
|
68
|
+
"@babel/helper-compilation-targets@^7.9.6":
|
69
|
+
version "7.9.6"
|
70
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.9.6.tgz#1e05b7ccc9d38d2f8b40b458b380a04dcfadd38a"
|
71
|
+
integrity sha512-x2Nvu0igO0ejXzx09B/1fGBxY9NXQlBW2kZsSxCJft+KHN8t9XWzIvFxtPHnBOAXpVsdxZKZFbRUC8TsNKajMw==
|
61
72
|
dependencies:
|
62
|
-
"@babel/
|
63
|
-
|
64
|
-
|
73
|
+
"@babel/compat-data" "^7.9.6"
|
74
|
+
browserslist "^4.11.1"
|
75
|
+
invariant "^2.2.4"
|
76
|
+
levenary "^1.1.1"
|
77
|
+
semver "^5.5.0"
|
65
78
|
|
66
|
-
"@babel/helper-create-regexp-features-plugin@^7.7.
|
67
|
-
version "7.
|
68
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.
|
69
|
-
integrity sha512-
|
79
|
+
"@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8":
|
80
|
+
version "7.8.8"
|
81
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087"
|
82
|
+
integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==
|
70
83
|
dependencies:
|
71
|
-
"@babel/helper-
|
72
|
-
|
84
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
85
|
+
"@babel/helper-regex" "^7.8.3"
|
86
|
+
regexpu-core "^4.7.0"
|
73
87
|
|
74
|
-
"@babel/helper-define-map@^7.
|
75
|
-
version "7.
|
76
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.
|
77
|
-
integrity sha512-
|
88
|
+
"@babel/helper-define-map@^7.8.3":
|
89
|
+
version "7.8.3"
|
90
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15"
|
91
|
+
integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==
|
78
92
|
dependencies:
|
79
|
-
"@babel/helper-function-name" "^7.
|
80
|
-
"@babel/types" "^7.
|
93
|
+
"@babel/helper-function-name" "^7.8.3"
|
94
|
+
"@babel/types" "^7.8.3"
|
81
95
|
lodash "^4.17.13"
|
82
96
|
|
83
|
-
"@babel/helper-explode-assignable-expression@^7.
|
84
|
-
version "7.
|
85
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.
|
86
|
-
integrity sha512-
|
97
|
+
"@babel/helper-explode-assignable-expression@^7.8.3":
|
98
|
+
version "7.8.3"
|
99
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982"
|
100
|
+
integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==
|
87
101
|
dependencies:
|
88
|
-
"@babel/traverse" "^7.
|
89
|
-
"@babel/types" "^7.
|
102
|
+
"@babel/traverse" "^7.8.3"
|
103
|
+
"@babel/types" "^7.8.3"
|
90
104
|
|
91
|
-
"@babel/helper-function-name@^7.7.
|
92
|
-
version "7.
|
93
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.
|
94
|
-
integrity sha512-
|
105
|
+
"@babel/helper-function-name@^7.8.3", "@babel/helper-function-name@^7.9.5":
|
106
|
+
version "7.9.5"
|
107
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz#2b53820d35275120e1874a82e5aabe1376920a5c"
|
108
|
+
integrity sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==
|
95
109
|
dependencies:
|
96
|
-
"@babel/helper-get-function-arity" "^7.
|
97
|
-
"@babel/template" "^7.
|
98
|
-
"@babel/types" "^7.
|
110
|
+
"@babel/helper-get-function-arity" "^7.8.3"
|
111
|
+
"@babel/template" "^7.8.3"
|
112
|
+
"@babel/types" "^7.9.5"
|
99
113
|
|
100
|
-
"@babel/helper-get-function-arity@^7.
|
101
|
-
version "7.
|
102
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.
|
103
|
-
integrity sha512-
|
114
|
+
"@babel/helper-get-function-arity@^7.8.3":
|
115
|
+
version "7.8.3"
|
116
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5"
|
117
|
+
integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==
|
104
118
|
dependencies:
|
105
|
-
"@babel/types" "^7.
|
119
|
+
"@babel/types" "^7.8.3"
|
106
120
|
|
107
|
-
"@babel/helper-hoist-variables@^7.
|
108
|
-
version "7.
|
109
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.
|
110
|
-
integrity sha512-
|
121
|
+
"@babel/helper-hoist-variables@^7.8.3":
|
122
|
+
version "7.8.3"
|
123
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134"
|
124
|
+
integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==
|
111
125
|
dependencies:
|
112
|
-
"@babel/types" "^7.
|
126
|
+
"@babel/types" "^7.8.3"
|
113
127
|
|
114
|
-
"@babel/helper-member-expression-to-functions@^7.
|
115
|
-
version "7.
|
116
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.
|
117
|
-
integrity sha512-
|
128
|
+
"@babel/helper-member-expression-to-functions@^7.8.3":
|
129
|
+
version "7.8.3"
|
130
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c"
|
131
|
+
integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==
|
118
132
|
dependencies:
|
119
|
-
"@babel/types" "^7.
|
133
|
+
"@babel/types" "^7.8.3"
|
120
134
|
|
121
|
-
"@babel/helper-module-imports@^7.
|
122
|
-
version "7.
|
123
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.
|
124
|
-
integrity sha512-
|
135
|
+
"@babel/helper-module-imports@^7.8.3":
|
136
|
+
version "7.8.3"
|
137
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
|
138
|
+
integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==
|
125
139
|
dependencies:
|
126
|
-
"@babel/types" "^7.
|
140
|
+
"@babel/types" "^7.8.3"
|
127
141
|
|
128
|
-
"@babel/helper-module-transforms@^7.
|
129
|
-
version "7.
|
130
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.
|
131
|
-
integrity sha512-
|
142
|
+
"@babel/helper-module-transforms@^7.9.0":
|
143
|
+
version "7.9.0"
|
144
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5"
|
145
|
+
integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==
|
132
146
|
dependencies:
|
133
|
-
"@babel/helper-module-imports" "^7.
|
134
|
-
"@babel/helper-
|
135
|
-
"@babel/helper-
|
136
|
-
"@babel/
|
137
|
-
"@babel/
|
147
|
+
"@babel/helper-module-imports" "^7.8.3"
|
148
|
+
"@babel/helper-replace-supers" "^7.8.6"
|
149
|
+
"@babel/helper-simple-access" "^7.8.3"
|
150
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
151
|
+
"@babel/template" "^7.8.6"
|
152
|
+
"@babel/types" "^7.9.0"
|
138
153
|
lodash "^4.17.13"
|
139
154
|
|
140
|
-
"@babel/helper-optimise-call-expression@^7.
|
141
|
-
version "7.
|
142
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.
|
143
|
-
integrity sha512-
|
155
|
+
"@babel/helper-optimise-call-expression@^7.8.3":
|
156
|
+
version "7.8.3"
|
157
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9"
|
158
|
+
integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==
|
144
159
|
dependencies:
|
145
|
-
"@babel/types" "^7.
|
160
|
+
"@babel/types" "^7.8.3"
|
146
161
|
|
147
|
-
"@babel/helper-plugin-utils@^7.0.0":
|
148
|
-
version "7.
|
149
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.
|
150
|
-
integrity sha512-
|
162
|
+
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
|
163
|
+
version "7.8.3"
|
164
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670"
|
165
|
+
integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==
|
151
166
|
|
152
|
-
"@babel/helper-regex@^7.
|
153
|
-
version "7.
|
154
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.
|
155
|
-
integrity sha512-
|
167
|
+
"@babel/helper-regex@^7.8.3":
|
168
|
+
version "7.8.3"
|
169
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965"
|
170
|
+
integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==
|
156
171
|
dependencies:
|
157
172
|
lodash "^4.17.13"
|
158
173
|
|
159
|
-
"@babel/helper-remap-async-to-generator@^7.
|
160
|
-
version "7.
|
161
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.
|
162
|
-
integrity sha512-
|
163
|
-
dependencies:
|
164
|
-
"@babel/helper-annotate-as-pure" "^7.
|
165
|
-
"@babel/helper-wrap-function" "^7.
|
166
|
-
"@babel/template" "^7.
|
167
|
-
"@babel/traverse" "^7.
|
168
|
-
"@babel/types" "^7.
|
169
|
-
|
170
|
-
"@babel/helper-replace-supers@^7.7.
|
171
|
-
version "7.
|
172
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.
|
173
|
-
integrity sha512-
|
174
|
-
dependencies:
|
175
|
-
"@babel/helper-member-expression-to-functions" "^7.
|
176
|
-
"@babel/helper-optimise-call-expression" "^7.
|
177
|
-
"@babel/traverse" "^7.
|
178
|
-
"@babel/types" "^7.
|
179
|
-
|
180
|
-
"@babel/helper-simple-access@^7.
|
181
|
-
version "7.
|
182
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.
|
183
|
-
integrity sha512-
|
184
|
-
dependencies:
|
185
|
-
"@babel/template" "^7.
|
186
|
-
"@babel/types" "^7.
|
187
|
-
|
188
|
-
"@babel/helper-split-export-declaration@^7.
|
189
|
-
version "7.
|
190
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.
|
191
|
-
integrity sha512-
|
192
|
-
dependencies:
|
193
|
-
"@babel/types" "^7.
|
194
|
-
|
195
|
-
"@babel/helper-
|
196
|
-
version "7.
|
197
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
198
|
-
integrity sha512
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
"@babel/
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
174
|
+
"@babel/helper-remap-async-to-generator@^7.8.3":
|
175
|
+
version "7.8.3"
|
176
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86"
|
177
|
+
integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==
|
178
|
+
dependencies:
|
179
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
180
|
+
"@babel/helper-wrap-function" "^7.8.3"
|
181
|
+
"@babel/template" "^7.8.3"
|
182
|
+
"@babel/traverse" "^7.8.3"
|
183
|
+
"@babel/types" "^7.8.3"
|
184
|
+
|
185
|
+
"@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6":
|
186
|
+
version "7.9.6"
|
187
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.9.6.tgz#03149d7e6a5586ab6764996cd31d6981a17e1444"
|
188
|
+
integrity sha512-qX+chbxkbArLyCImk3bWV+jB5gTNU/rsze+JlcF6Nf8tVTigPJSI1o1oBow/9Resa1yehUO9lIipsmu9oG4RzA==
|
189
|
+
dependencies:
|
190
|
+
"@babel/helper-member-expression-to-functions" "^7.8.3"
|
191
|
+
"@babel/helper-optimise-call-expression" "^7.8.3"
|
192
|
+
"@babel/traverse" "^7.9.6"
|
193
|
+
"@babel/types" "^7.9.6"
|
194
|
+
|
195
|
+
"@babel/helper-simple-access@^7.8.3":
|
196
|
+
version "7.8.3"
|
197
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae"
|
198
|
+
integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==
|
199
|
+
dependencies:
|
200
|
+
"@babel/template" "^7.8.3"
|
201
|
+
"@babel/types" "^7.8.3"
|
202
|
+
|
203
|
+
"@babel/helper-split-export-declaration@^7.8.3":
|
204
|
+
version "7.8.3"
|
205
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9"
|
206
|
+
integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==
|
207
|
+
dependencies:
|
208
|
+
"@babel/types" "^7.8.3"
|
209
|
+
|
210
|
+
"@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5":
|
211
|
+
version "7.9.5"
|
212
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80"
|
213
|
+
integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==
|
214
|
+
|
215
|
+
"@babel/helper-wrap-function@^7.8.3":
|
216
|
+
version "7.8.3"
|
217
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610"
|
218
|
+
integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==
|
219
|
+
dependencies:
|
220
|
+
"@babel/helper-function-name" "^7.8.3"
|
221
|
+
"@babel/template" "^7.8.3"
|
222
|
+
"@babel/traverse" "^7.8.3"
|
223
|
+
"@babel/types" "^7.8.3"
|
224
|
+
|
225
|
+
"@babel/helpers@^7.9.6":
|
226
|
+
version "7.9.6"
|
227
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.6.tgz#092c774743471d0bb6c7de3ad465ab3d3486d580"
|
228
|
+
integrity sha512-tI4bUbldloLcHWoRUMAj4g1bF313M/o6fBKhIsb3QnGVPwRm9JsNf/gqMkQ7zjqReABiffPV6RWj7hEglID5Iw==
|
229
|
+
dependencies:
|
230
|
+
"@babel/template" "^7.8.3"
|
231
|
+
"@babel/traverse" "^7.9.6"
|
232
|
+
"@babel/types" "^7.9.6"
|
233
|
+
|
234
|
+
"@babel/highlight@^7.8.3":
|
235
|
+
version "7.9.0"
|
236
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079"
|
237
|
+
integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==
|
238
|
+
dependencies:
|
239
|
+
"@babel/helper-validator-identifier" "^7.9.0"
|
219
240
|
chalk "^2.0.0"
|
220
|
-
esutils "^2.0.2"
|
221
241
|
js-tokens "^4.0.0"
|
222
242
|
|
223
|
-
"@babel/parser@^7.
|
224
|
-
version "7.
|
225
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.
|
226
|
-
integrity sha512-
|
243
|
+
"@babel/parser@^7.8.6", "@babel/parser@^7.9.6":
|
244
|
+
version "7.9.6"
|
245
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.6.tgz#3b1bbb30dabe600cd72db58720998376ff653bc7"
|
246
|
+
integrity sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q==
|
227
247
|
|
228
|
-
"@babel/plugin-proposal-async-generator-functions@^7.
|
229
|
-
version "7.
|
230
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.
|
231
|
-
integrity sha512-
|
248
|
+
"@babel/plugin-proposal-async-generator-functions@^7.8.3":
|
249
|
+
version "7.8.3"
|
250
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f"
|
251
|
+
integrity sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==
|
232
252
|
dependencies:
|
233
|
-
"@babel/helper-plugin-utils" "^7.
|
234
|
-
"@babel/helper-remap-async-to-generator" "^7.
|
235
|
-
"@babel/plugin-syntax-async-generators" "^7.
|
253
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
254
|
+
"@babel/helper-remap-async-to-generator" "^7.8.3"
|
255
|
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
236
256
|
|
237
|
-
"@babel/plugin-proposal-dynamic-import@^7.
|
238
|
-
version "7.
|
239
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.
|
240
|
-
integrity sha512-
|
257
|
+
"@babel/plugin-proposal-dynamic-import@^7.8.3":
|
258
|
+
version "7.8.3"
|
259
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz#38c4fe555744826e97e2ae930b0fb4cc07e66054"
|
260
|
+
integrity sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==
|
241
261
|
dependencies:
|
242
|
-
"@babel/helper-plugin-utils" "^7.
|
243
|
-
"@babel/plugin-syntax-dynamic-import" "^7.
|
262
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
263
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
244
264
|
|
245
|
-
"@babel/plugin-proposal-json-strings@^7.
|
246
|
-
version "7.
|
247
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.
|
248
|
-
integrity sha512-
|
265
|
+
"@babel/plugin-proposal-json-strings@^7.8.3":
|
266
|
+
version "7.8.3"
|
267
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz#da5216b238a98b58a1e05d6852104b10f9a70d6b"
|
268
|
+
integrity sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==
|
249
269
|
dependencies:
|
250
|
-
"@babel/helper-plugin-utils" "^7.
|
251
|
-
"@babel/plugin-syntax-json-strings" "^7.
|
270
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
271
|
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
252
272
|
|
253
|
-
"@babel/plugin-proposal-
|
254
|
-
version "7.
|
255
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
256
|
-
integrity sha512-
|
273
|
+
"@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3":
|
274
|
+
version "7.8.3"
|
275
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2"
|
276
|
+
integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==
|
257
277
|
dependencies:
|
258
|
-
"@babel/helper-plugin-utils" "^7.
|
259
|
-
"@babel/plugin-syntax-
|
278
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
279
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
260
280
|
|
261
|
-
"@babel/plugin-proposal-
|
262
|
-
version "7.
|
263
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
264
|
-
integrity sha512-
|
281
|
+
"@babel/plugin-proposal-numeric-separator@^7.8.3":
|
282
|
+
version "7.8.3"
|
283
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8"
|
284
|
+
integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==
|
265
285
|
dependencies:
|
266
|
-
"@babel/helper-plugin-utils" "^7.
|
267
|
-
"@babel/plugin-syntax-
|
286
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
287
|
+
"@babel/plugin-syntax-numeric-separator" "^7.8.3"
|
268
288
|
|
269
|
-
"@babel/plugin-proposal-
|
270
|
-
version "7.
|
271
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
272
|
-
integrity sha512-
|
289
|
+
"@babel/plugin-proposal-object-rest-spread@^7.9.6":
|
290
|
+
version "7.9.6"
|
291
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.6.tgz#7a093586fcb18b08266eb1a7177da671ac575b63"
|
292
|
+
integrity sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A==
|
273
293
|
dependencies:
|
274
|
-
"@babel/helper-
|
275
|
-
"@babel/
|
294
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
295
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
296
|
+
"@babel/plugin-transform-parameters" "^7.9.5"
|
276
297
|
|
277
|
-
"@babel/plugin-
|
278
|
-
version "7.
|
279
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
280
|
-
integrity sha512-
|
298
|
+
"@babel/plugin-proposal-optional-catch-binding@^7.8.3":
|
299
|
+
version "7.8.3"
|
300
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9"
|
301
|
+
integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==
|
281
302
|
dependencies:
|
282
|
-
"@babel/helper-plugin-utils" "^7.
|
303
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
304
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
283
305
|
|
284
|
-
"@babel/plugin-
|
285
|
-
version "7.
|
286
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
287
|
-
integrity sha512-
|
306
|
+
"@babel/plugin-proposal-optional-chaining@^7.9.0":
|
307
|
+
version "7.9.0"
|
308
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58"
|
309
|
+
integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==
|
288
310
|
dependencies:
|
289
|
-
"@babel/helper-plugin-utils" "^7.
|
311
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
312
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
290
313
|
|
291
|
-
"@babel/plugin-
|
292
|
-
version "7.
|
293
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
294
|
-
integrity sha512-
|
314
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3":
|
315
|
+
version "7.8.8"
|
316
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d"
|
317
|
+
integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==
|
295
318
|
dependencies:
|
296
|
-
"@babel/helper-plugin
|
319
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.8"
|
320
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
297
321
|
|
298
|
-
"@babel/plugin-syntax-
|
299
|
-
version "7.
|
300
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
301
|
-
integrity sha512-
|
322
|
+
"@babel/plugin-syntax-async-generators@^7.8.0":
|
323
|
+
version "7.8.4"
|
324
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
|
325
|
+
integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
|
302
326
|
dependencies:
|
303
|
-
"@babel/helper-plugin-utils" "^7.
|
327
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
304
328
|
|
305
|
-
"@babel/plugin-syntax-
|
306
|
-
version "7.
|
307
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
308
|
-
integrity sha512-
|
329
|
+
"@babel/plugin-syntax-dynamic-import@^7.8.0":
|
330
|
+
version "7.8.3"
|
331
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
|
332
|
+
integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
|
309
333
|
dependencies:
|
310
|
-
"@babel/helper-plugin-utils" "^7.
|
334
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
311
335
|
|
312
|
-
"@babel/plugin-syntax-
|
313
|
-
version "7.
|
314
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
315
|
-
integrity sha512-
|
336
|
+
"@babel/plugin-syntax-json-strings@^7.8.0":
|
337
|
+
version "7.8.3"
|
338
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
|
339
|
+
integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
|
316
340
|
dependencies:
|
317
|
-
"@babel/helper-plugin-utils" "^7.
|
341
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
318
342
|
|
319
|
-
"@babel/plugin-
|
320
|
-
version "7.
|
321
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
322
|
-
integrity sha512-
|
343
|
+
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
|
344
|
+
version "7.8.3"
|
345
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
|
346
|
+
integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
|
323
347
|
dependencies:
|
324
|
-
"@babel/helper-plugin-utils" "^7.
|
348
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
325
349
|
|
326
|
-
"@babel/plugin-
|
327
|
-
version "7.
|
328
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
329
|
-
integrity sha512-
|
350
|
+
"@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3":
|
351
|
+
version "7.8.3"
|
352
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f"
|
353
|
+
integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw==
|
330
354
|
dependencies:
|
331
|
-
"@babel/helper-
|
332
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
333
|
-
"@babel/helper-remap-async-to-generator" "^7.7.4"
|
355
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
334
356
|
|
335
|
-
"@babel/plugin-
|
336
|
-
version "7.
|
337
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
338
|
-
integrity sha512-
|
357
|
+
"@babel/plugin-syntax-object-rest-spread@^7.8.0":
|
358
|
+
version "7.8.3"
|
359
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
|
360
|
+
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
|
339
361
|
dependencies:
|
340
|
-
"@babel/helper-plugin-utils" "^7.
|
362
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
341
363
|
|
342
|
-
"@babel/plugin-
|
343
|
-
version "7.
|
344
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
345
|
-
integrity sha512-
|
364
|
+
"@babel/plugin-syntax-optional-catch-binding@^7.8.0":
|
365
|
+
version "7.8.3"
|
366
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
|
367
|
+
integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
|
346
368
|
dependencies:
|
347
|
-
"@babel/helper-plugin-utils" "^7.
|
348
|
-
lodash "^4.17.13"
|
369
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
349
370
|
|
350
|
-
"@babel/plugin-
|
351
|
-
version "7.
|
352
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
353
|
-
integrity sha512-
|
371
|
+
"@babel/plugin-syntax-optional-chaining@^7.8.0":
|
372
|
+
version "7.8.3"
|
373
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
|
374
|
+
integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
|
354
375
|
dependencies:
|
355
|
-
"@babel/helper-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
376
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
377
|
+
|
378
|
+
"@babel/plugin-syntax-top-level-await@^7.8.3":
|
379
|
+
version "7.8.3"
|
380
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz#3acdece695e6b13aaf57fc291d1a800950c71391"
|
381
|
+
integrity sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==
|
382
|
+
dependencies:
|
383
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
384
|
+
|
385
|
+
"@babel/plugin-transform-arrow-functions@^7.8.3":
|
386
|
+
version "7.8.3"
|
387
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6"
|
388
|
+
integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==
|
389
|
+
dependencies:
|
390
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
391
|
+
|
392
|
+
"@babel/plugin-transform-async-to-generator@^7.8.3":
|
393
|
+
version "7.8.3"
|
394
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086"
|
395
|
+
integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==
|
396
|
+
dependencies:
|
397
|
+
"@babel/helper-module-imports" "^7.8.3"
|
398
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
399
|
+
"@babel/helper-remap-async-to-generator" "^7.8.3"
|
400
|
+
|
401
|
+
"@babel/plugin-transform-block-scoped-functions@^7.8.3":
|
402
|
+
version "7.8.3"
|
403
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3"
|
404
|
+
integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==
|
405
|
+
dependencies:
|
406
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
407
|
+
|
408
|
+
"@babel/plugin-transform-block-scoping@^7.8.3":
|
409
|
+
version "7.8.3"
|
410
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a"
|
411
|
+
integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==
|
412
|
+
dependencies:
|
413
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
414
|
+
lodash "^4.17.13"
|
415
|
+
|
416
|
+
"@babel/plugin-transform-classes@^7.9.5":
|
417
|
+
version "7.9.5"
|
418
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz#800597ddb8aefc2c293ed27459c1fcc935a26c2c"
|
419
|
+
integrity sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg==
|
420
|
+
dependencies:
|
421
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
422
|
+
"@babel/helper-define-map" "^7.8.3"
|
423
|
+
"@babel/helper-function-name" "^7.9.5"
|
424
|
+
"@babel/helper-optimise-call-expression" "^7.8.3"
|
425
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
426
|
+
"@babel/helper-replace-supers" "^7.8.6"
|
427
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
362
428
|
globals "^11.1.0"
|
363
429
|
|
364
|
-
"@babel/plugin-transform-computed-properties@^7.
|
365
|
-
version "7.
|
366
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.
|
367
|
-
integrity sha512-
|
430
|
+
"@babel/plugin-transform-computed-properties@^7.8.3":
|
431
|
+
version "7.8.3"
|
432
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b"
|
433
|
+
integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==
|
368
434
|
dependencies:
|
369
|
-
"@babel/helper-plugin-utils" "^7.
|
435
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
370
436
|
|
371
|
-
"@babel/plugin-transform-destructuring@^7.
|
372
|
-
version "7.
|
373
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
374
|
-
integrity sha512-
|
437
|
+
"@babel/plugin-transform-destructuring@^7.9.5":
|
438
|
+
version "7.9.5"
|
439
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz#72c97cf5f38604aea3abf3b935b0e17b1db76a50"
|
440
|
+
integrity sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q==
|
375
441
|
dependencies:
|
376
|
-
"@babel/helper-plugin-utils" "^7.
|
442
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
377
443
|
|
378
|
-
"@babel/plugin-transform-dotall-regex@^7.
|
379
|
-
version "7.
|
380
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.
|
381
|
-
integrity sha512-
|
444
|
+
"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3":
|
445
|
+
version "7.8.3"
|
446
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e"
|
447
|
+
integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==
|
382
448
|
dependencies:
|
383
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
384
|
-
"@babel/helper-plugin-utils" "^7.
|
449
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
450
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
385
451
|
|
386
|
-
"@babel/plugin-transform-duplicate-keys@^7.
|
387
|
-
version "7.
|
388
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.
|
389
|
-
integrity sha512-
|
452
|
+
"@babel/plugin-transform-duplicate-keys@^7.8.3":
|
453
|
+
version "7.8.3"
|
454
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz#8d12df309aa537f272899c565ea1768e286e21f1"
|
455
|
+
integrity sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==
|
390
456
|
dependencies:
|
391
|
-
"@babel/helper-plugin-utils" "^7.
|
457
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
392
458
|
|
393
|
-
"@babel/plugin-transform-exponentiation-operator@^7.
|
394
|
-
version "7.
|
395
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.
|
396
|
-
integrity sha512-
|
459
|
+
"@babel/plugin-transform-exponentiation-operator@^7.8.3":
|
460
|
+
version "7.8.3"
|
461
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7"
|
462
|
+
integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==
|
397
463
|
dependencies:
|
398
|
-
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.
|
399
|
-
"@babel/helper-plugin-utils" "^7.
|
464
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3"
|
465
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
400
466
|
|
401
|
-
"@babel/plugin-transform-for-of@^7.
|
402
|
-
version "7.
|
403
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
404
|
-
integrity sha512-
|
467
|
+
"@babel/plugin-transform-for-of@^7.9.0":
|
468
|
+
version "7.9.0"
|
469
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e"
|
470
|
+
integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==
|
405
471
|
dependencies:
|
406
|
-
"@babel/helper-plugin-utils" "^7.
|
472
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
407
473
|
|
408
|
-
"@babel/plugin-transform-function-name@^7.
|
409
|
-
version "7.
|
410
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.
|
411
|
-
integrity sha512-
|
474
|
+
"@babel/plugin-transform-function-name@^7.8.3":
|
475
|
+
version "7.8.3"
|
476
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b"
|
477
|
+
integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==
|
412
478
|
dependencies:
|
413
|
-
"@babel/helper-function-name" "^7.
|
414
|
-
"@babel/helper-plugin-utils" "^7.
|
479
|
+
"@babel/helper-function-name" "^7.8.3"
|
480
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
415
481
|
|
416
|
-
"@babel/plugin-transform-literals@^7.
|
417
|
-
version "7.
|
418
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.
|
419
|
-
integrity sha512-
|
482
|
+
"@babel/plugin-transform-literals@^7.8.3":
|
483
|
+
version "7.8.3"
|
484
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1"
|
485
|
+
integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==
|
420
486
|
dependencies:
|
421
|
-
"@babel/helper-plugin-utils" "^7.
|
487
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
422
488
|
|
423
|
-
"@babel/plugin-transform-member-expression-literals@^7.
|
424
|
-
version "7.
|
425
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.
|
426
|
-
integrity sha512-
|
489
|
+
"@babel/plugin-transform-member-expression-literals@^7.8.3":
|
490
|
+
version "7.8.3"
|
491
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410"
|
492
|
+
integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==
|
427
493
|
dependencies:
|
428
|
-
"@babel/helper-plugin-utils" "^7.
|
494
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
429
495
|
|
430
|
-
"@babel/plugin-transform-modules-amd@^7.
|
431
|
-
version "7.
|
432
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.
|
433
|
-
integrity sha512-
|
496
|
+
"@babel/plugin-transform-modules-amd@^7.9.6":
|
497
|
+
version "7.9.6"
|
498
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.6.tgz#8539ec42c153d12ea3836e0e3ac30d5aae7b258e"
|
499
|
+
integrity sha512-zoT0kgC3EixAyIAU+9vfaUVKTv9IxBDSabgHoUCBP6FqEJ+iNiN7ip7NBKcYqbfUDfuC2mFCbM7vbu4qJgOnDw==
|
434
500
|
dependencies:
|
435
|
-
"@babel/helper-module-transforms" "^7.
|
436
|
-
"@babel/helper-plugin-utils" "^7.
|
437
|
-
babel-plugin-dynamic-import-node "^2.3.
|
501
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
502
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
503
|
+
babel-plugin-dynamic-import-node "^2.3.3"
|
438
504
|
|
439
|
-
"@babel/plugin-transform-modules-commonjs@^7.
|
440
|
-
version "7.
|
441
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
442
|
-
integrity sha512-
|
505
|
+
"@babel/plugin-transform-modules-commonjs@^7.9.6":
|
506
|
+
version "7.9.6"
|
507
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.6.tgz#64b7474a4279ee588cacd1906695ca721687c277"
|
508
|
+
integrity sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ==
|
443
509
|
dependencies:
|
444
|
-
"@babel/helper-module-transforms" "^7.
|
445
|
-
"@babel/helper-plugin-utils" "^7.
|
446
|
-
"@babel/helper-simple-access" "^7.
|
447
|
-
babel-plugin-dynamic-import-node "^2.3.
|
510
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
511
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
512
|
+
"@babel/helper-simple-access" "^7.8.3"
|
513
|
+
babel-plugin-dynamic-import-node "^2.3.3"
|
448
514
|
|
449
|
-
"@babel/plugin-transform-modules-systemjs@^7.
|
450
|
-
version "7.
|
451
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
452
|
-
integrity sha512-
|
515
|
+
"@babel/plugin-transform-modules-systemjs@^7.9.6":
|
516
|
+
version "7.9.6"
|
517
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.6.tgz#207f1461c78a231d5337a92140e52422510d81a4"
|
518
|
+
integrity sha512-NW5XQuW3N2tTHim8e1b7qGy7s0kZ2OH3m5octc49K1SdAKGxYxeIx7hiIz05kS1R2R+hOWcsr1eYwcGhrdHsrg==
|
453
519
|
dependencies:
|
454
|
-
"@babel/helper-hoist-variables" "^7.
|
455
|
-
"@babel/helper-
|
456
|
-
babel-plugin-
|
520
|
+
"@babel/helper-hoist-variables" "^7.8.3"
|
521
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
522
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
523
|
+
babel-plugin-dynamic-import-node "^2.3.3"
|
457
524
|
|
458
|
-
"@babel/plugin-transform-modules-umd@^7.
|
459
|
-
version "7.
|
460
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
|
461
|
-
integrity sha512-
|
525
|
+
"@babel/plugin-transform-modules-umd@^7.9.0":
|
526
|
+
version "7.9.0"
|
527
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz#e909acae276fec280f9b821a5f38e1f08b480697"
|
528
|
+
integrity sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==
|
462
529
|
dependencies:
|
463
|
-
"@babel/helper-module-transforms" "^7.
|
464
|
-
"@babel/helper-plugin-utils" "^7.
|
530
|
+
"@babel/helper-module-transforms" "^7.9.0"
|
531
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
465
532
|
|
466
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.
|
467
|
-
version "7.
|
468
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.
|
469
|
-
integrity sha512-
|
533
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3":
|
534
|
+
version "7.8.3"
|
535
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c"
|
536
|
+
integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==
|
470
537
|
dependencies:
|
471
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
538
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
472
539
|
|
473
|
-
"@babel/plugin-transform-new-target@^7.
|
474
|
-
version "7.
|
475
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.
|
476
|
-
integrity sha512-
|
540
|
+
"@babel/plugin-transform-new-target@^7.8.3":
|
541
|
+
version "7.8.3"
|
542
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz#60cc2ae66d85c95ab540eb34babb6434d4c70c43"
|
543
|
+
integrity sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==
|
477
544
|
dependencies:
|
478
|
-
"@babel/helper-plugin-utils" "^7.
|
545
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
479
546
|
|
480
|
-
"@babel/plugin-transform-object-super@^7.
|
481
|
-
version "7.
|
482
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
|
483
|
-
integrity sha512-
|
547
|
+
"@babel/plugin-transform-object-super@^7.8.3":
|
548
|
+
version "7.8.3"
|
549
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725"
|
550
|
+
integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==
|
484
551
|
dependencies:
|
485
|
-
"@babel/helper-plugin-utils" "^7.
|
486
|
-
"@babel/helper-replace-supers" "^7.
|
552
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
553
|
+
"@babel/helper-replace-supers" "^7.8.3"
|
487
554
|
|
488
|
-
"@babel/plugin-transform-parameters@^7.
|
489
|
-
version "7.
|
490
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
|
491
|
-
integrity sha512-
|
555
|
+
"@babel/plugin-transform-parameters@^7.9.5":
|
556
|
+
version "7.9.5"
|
557
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz#173b265746f5e15b2afe527eeda65b73623a0795"
|
558
|
+
integrity sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA==
|
492
559
|
dependencies:
|
493
|
-
"@babel/helper-
|
494
|
-
"@babel/helper-
|
495
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
560
|
+
"@babel/helper-get-function-arity" "^7.8.3"
|
561
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
496
562
|
|
497
|
-
"@babel/plugin-transform-property-literals@^7.
|
498
|
-
version "7.
|
499
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.
|
500
|
-
integrity sha512-
|
563
|
+
"@babel/plugin-transform-property-literals@^7.8.3":
|
564
|
+
version "7.8.3"
|
565
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263"
|
566
|
+
integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==
|
501
567
|
dependencies:
|
502
|
-
"@babel/helper-plugin-utils" "^7.
|
568
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
503
569
|
|
504
|
-
"@babel/plugin-transform-regenerator@^7.7
|
505
|
-
version "7.7
|
506
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.
|
507
|
-
integrity sha512
|
570
|
+
"@babel/plugin-transform-regenerator@^7.8.7":
|
571
|
+
version "7.8.7"
|
572
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8"
|
573
|
+
integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==
|
508
574
|
dependencies:
|
509
|
-
regenerator-transform "^0.14.
|
575
|
+
regenerator-transform "^0.14.2"
|
510
576
|
|
511
|
-
"@babel/plugin-transform-reserved-words@^7.
|
512
|
-
version "7.
|
513
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.
|
514
|
-
integrity sha512-
|
577
|
+
"@babel/plugin-transform-reserved-words@^7.8.3":
|
578
|
+
version "7.8.3"
|
579
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz#9a0635ac4e665d29b162837dd3cc50745dfdf1f5"
|
580
|
+
integrity sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==
|
515
581
|
dependencies:
|
516
|
-
"@babel/helper-plugin-utils" "^7.
|
582
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
517
583
|
|
518
|
-
"@babel/plugin-transform-shorthand-properties@^7.
|
519
|
-
version "7.
|
520
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.
|
521
|
-
integrity sha512-
|
584
|
+
"@babel/plugin-transform-shorthand-properties@^7.8.3":
|
585
|
+
version "7.8.3"
|
586
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8"
|
587
|
+
integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==
|
522
588
|
dependencies:
|
523
|
-
"@babel/helper-plugin-utils" "^7.
|
589
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
524
590
|
|
525
|
-
"@babel/plugin-transform-spread@^7.
|
526
|
-
version "7.
|
527
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.
|
528
|
-
integrity sha512-
|
591
|
+
"@babel/plugin-transform-spread@^7.8.3":
|
592
|
+
version "7.8.3"
|
593
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8"
|
594
|
+
integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==
|
529
595
|
dependencies:
|
530
|
-
"@babel/helper-plugin-utils" "^7.
|
596
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
531
597
|
|
532
|
-
"@babel/plugin-transform-sticky-regex@^7.
|
533
|
-
version "7.
|
534
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.
|
535
|
-
integrity sha512-
|
598
|
+
"@babel/plugin-transform-sticky-regex@^7.8.3":
|
599
|
+
version "7.8.3"
|
600
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100"
|
601
|
+
integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==
|
536
602
|
dependencies:
|
537
|
-
"@babel/helper-plugin-utils" "^7.
|
538
|
-
"@babel/helper-regex" "^7.
|
603
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
604
|
+
"@babel/helper-regex" "^7.8.3"
|
539
605
|
|
540
|
-
"@babel/plugin-transform-template-literals@^7.
|
541
|
-
version "7.
|
542
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.
|
543
|
-
integrity sha512-
|
606
|
+
"@babel/plugin-transform-template-literals@^7.8.3":
|
607
|
+
version "7.8.3"
|
608
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80"
|
609
|
+
integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==
|
544
610
|
dependencies:
|
545
|
-
"@babel/helper-annotate-as-pure" "^7.
|
546
|
-
"@babel/helper-plugin-utils" "^7.
|
611
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
612
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
547
613
|
|
548
|
-
"@babel/plugin-transform-typeof-symbol@^7.
|
549
|
-
version "7.
|
550
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.
|
551
|
-
integrity sha512-
|
614
|
+
"@babel/plugin-transform-typeof-symbol@^7.8.4":
|
615
|
+
version "7.8.4"
|
616
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz#ede4062315ce0aaf8a657a920858f1a2f35fc412"
|
617
|
+
integrity sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==
|
552
618
|
dependencies:
|
553
|
-
"@babel/helper-plugin-utils" "^7.
|
619
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
554
620
|
|
555
|
-
"@babel/plugin-transform-unicode-regex@^7.
|
556
|
-
version "7.
|
557
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.
|
558
|
-
integrity sha512
|
621
|
+
"@babel/plugin-transform-unicode-regex@^7.8.3":
|
622
|
+
version "7.8.3"
|
623
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad"
|
624
|
+
integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==
|
559
625
|
dependencies:
|
560
|
-
"@babel/helper-create-regexp-features-plugin" "^7.
|
561
|
-
"@babel/helper-plugin-utils" "^7.
|
626
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
627
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
562
628
|
|
563
629
|
"@babel/preset-env@^7.6.0":
|
564
|
-
version "7.
|
565
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.
|
566
|
-
integrity sha512-
|
567
|
-
dependencies:
|
568
|
-
"@babel/
|
569
|
-
"@babel/helper-
|
570
|
-
"@babel/
|
571
|
-
"@babel/plugin-
|
572
|
-
"@babel/plugin-proposal-
|
573
|
-
"@babel/plugin-proposal-
|
574
|
-
"@babel/plugin-proposal-
|
575
|
-
"@babel/plugin-proposal-
|
576
|
-
"@babel/plugin-
|
577
|
-
"@babel/plugin-
|
578
|
-
"@babel/plugin-
|
579
|
-
"@babel/plugin-
|
580
|
-
"@babel/plugin-
|
581
|
-
"@babel/plugin-syntax-
|
582
|
-
"@babel/plugin-
|
583
|
-
"@babel/plugin-
|
584
|
-
"@babel/plugin-
|
585
|
-
"@babel/plugin-
|
586
|
-
"@babel/plugin-
|
587
|
-
"@babel/plugin-
|
588
|
-
"@babel/plugin-
|
589
|
-
"@babel/plugin-
|
590
|
-
"@babel/plugin-transform-
|
591
|
-
"@babel/plugin-transform-
|
592
|
-
"@babel/plugin-transform-
|
593
|
-
"@babel/plugin-transform-
|
594
|
-
"@babel/plugin-transform-
|
595
|
-
"@babel/plugin-transform-
|
596
|
-
"@babel/plugin-transform-
|
597
|
-
"@babel/plugin-transform-
|
598
|
-
"@babel/plugin-transform-
|
599
|
-
"@babel/plugin-transform-
|
600
|
-
"@babel/plugin-transform-
|
601
|
-
"@babel/plugin-transform-
|
602
|
-
"@babel/plugin-transform-
|
603
|
-
"@babel/plugin-transform-
|
604
|
-
"@babel/plugin-transform-
|
605
|
-
"@babel/plugin-transform-
|
606
|
-
"@babel/plugin-transform-
|
607
|
-
"@babel/plugin-transform-
|
608
|
-
"@babel/plugin-transform-
|
609
|
-
"@babel/plugin-transform-
|
610
|
-
"@babel/plugin-transform-
|
611
|
-
"@babel/plugin-transform-
|
612
|
-
"@babel/plugin-transform-
|
613
|
-
"@babel/
|
614
|
-
|
615
|
-
|
630
|
+
version "7.9.6"
|
631
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.6.tgz#df063b276c6455ec6fcfc6e53aacc38da9b0aea6"
|
632
|
+
integrity sha512-0gQJ9RTzO0heXOhzftog+a/WyOuqMrAIugVYxMYf83gh1CQaQDjMtsOpqOwXyDL/5JcWsrCm8l4ju8QC97O7EQ==
|
633
|
+
dependencies:
|
634
|
+
"@babel/compat-data" "^7.9.6"
|
635
|
+
"@babel/helper-compilation-targets" "^7.9.6"
|
636
|
+
"@babel/helper-module-imports" "^7.8.3"
|
637
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
638
|
+
"@babel/plugin-proposal-async-generator-functions" "^7.8.3"
|
639
|
+
"@babel/plugin-proposal-dynamic-import" "^7.8.3"
|
640
|
+
"@babel/plugin-proposal-json-strings" "^7.8.3"
|
641
|
+
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3"
|
642
|
+
"@babel/plugin-proposal-numeric-separator" "^7.8.3"
|
643
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.9.6"
|
644
|
+
"@babel/plugin-proposal-optional-catch-binding" "^7.8.3"
|
645
|
+
"@babel/plugin-proposal-optional-chaining" "^7.9.0"
|
646
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.8.3"
|
647
|
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
648
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
649
|
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
650
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
651
|
+
"@babel/plugin-syntax-numeric-separator" "^7.8.0"
|
652
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
653
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
654
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
655
|
+
"@babel/plugin-syntax-top-level-await" "^7.8.3"
|
656
|
+
"@babel/plugin-transform-arrow-functions" "^7.8.3"
|
657
|
+
"@babel/plugin-transform-async-to-generator" "^7.8.3"
|
658
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.8.3"
|
659
|
+
"@babel/plugin-transform-block-scoping" "^7.8.3"
|
660
|
+
"@babel/plugin-transform-classes" "^7.9.5"
|
661
|
+
"@babel/plugin-transform-computed-properties" "^7.8.3"
|
662
|
+
"@babel/plugin-transform-destructuring" "^7.9.5"
|
663
|
+
"@babel/plugin-transform-dotall-regex" "^7.8.3"
|
664
|
+
"@babel/plugin-transform-duplicate-keys" "^7.8.3"
|
665
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.8.3"
|
666
|
+
"@babel/plugin-transform-for-of" "^7.9.0"
|
667
|
+
"@babel/plugin-transform-function-name" "^7.8.3"
|
668
|
+
"@babel/plugin-transform-literals" "^7.8.3"
|
669
|
+
"@babel/plugin-transform-member-expression-literals" "^7.8.3"
|
670
|
+
"@babel/plugin-transform-modules-amd" "^7.9.6"
|
671
|
+
"@babel/plugin-transform-modules-commonjs" "^7.9.6"
|
672
|
+
"@babel/plugin-transform-modules-systemjs" "^7.9.6"
|
673
|
+
"@babel/plugin-transform-modules-umd" "^7.9.0"
|
674
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3"
|
675
|
+
"@babel/plugin-transform-new-target" "^7.8.3"
|
676
|
+
"@babel/plugin-transform-object-super" "^7.8.3"
|
677
|
+
"@babel/plugin-transform-parameters" "^7.9.5"
|
678
|
+
"@babel/plugin-transform-property-literals" "^7.8.3"
|
679
|
+
"@babel/plugin-transform-regenerator" "^7.8.7"
|
680
|
+
"@babel/plugin-transform-reserved-words" "^7.8.3"
|
681
|
+
"@babel/plugin-transform-shorthand-properties" "^7.8.3"
|
682
|
+
"@babel/plugin-transform-spread" "^7.8.3"
|
683
|
+
"@babel/plugin-transform-sticky-regex" "^7.8.3"
|
684
|
+
"@babel/plugin-transform-template-literals" "^7.8.3"
|
685
|
+
"@babel/plugin-transform-typeof-symbol" "^7.8.4"
|
686
|
+
"@babel/plugin-transform-unicode-regex" "^7.8.3"
|
687
|
+
"@babel/preset-modules" "^0.1.3"
|
688
|
+
"@babel/types" "^7.9.6"
|
689
|
+
browserslist "^4.11.1"
|
690
|
+
core-js-compat "^3.6.2"
|
616
691
|
invariant "^2.2.2"
|
617
|
-
|
692
|
+
levenary "^1.1.1"
|
618
693
|
semver "^5.5.0"
|
619
694
|
|
620
|
-
"@babel/
|
621
|
-
version "
|
622
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
623
|
-
integrity sha512-
|
624
|
-
dependencies:
|
625
|
-
"@babel/
|
626
|
-
"@babel/
|
627
|
-
"@babel/
|
628
|
-
|
629
|
-
"
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
695
|
+
"@babel/preset-modules@^0.1.3":
|
696
|
+
version "0.1.3"
|
697
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"
|
698
|
+
integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==
|
699
|
+
dependencies:
|
700
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
701
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
|
702
|
+
"@babel/plugin-transform-dotall-regex" "^7.4.4"
|
703
|
+
"@babel/types" "^7.4.4"
|
704
|
+
esutils "^2.0.2"
|
705
|
+
|
706
|
+
"@babel/runtime@^7.8.4":
|
707
|
+
version "7.9.6"
|
708
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f"
|
709
|
+
integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==
|
710
|
+
dependencies:
|
711
|
+
regenerator-runtime "^0.13.4"
|
712
|
+
|
713
|
+
"@babel/template@^7.8.3", "@babel/template@^7.8.6":
|
714
|
+
version "7.8.6"
|
715
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b"
|
716
|
+
integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==
|
717
|
+
dependencies:
|
718
|
+
"@babel/code-frame" "^7.8.3"
|
719
|
+
"@babel/parser" "^7.8.6"
|
720
|
+
"@babel/types" "^7.8.6"
|
721
|
+
|
722
|
+
"@babel/traverse@^7.8.3", "@babel/traverse@^7.9.6":
|
723
|
+
version "7.9.6"
|
724
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.6.tgz#5540d7577697bf619cc57b92aa0f1c231a94f442"
|
725
|
+
integrity sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg==
|
726
|
+
dependencies:
|
727
|
+
"@babel/code-frame" "^7.8.3"
|
728
|
+
"@babel/generator" "^7.9.6"
|
729
|
+
"@babel/helper-function-name" "^7.9.5"
|
730
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
731
|
+
"@babel/parser" "^7.9.6"
|
732
|
+
"@babel/types" "^7.9.6"
|
640
733
|
debug "^4.1.0"
|
641
734
|
globals "^11.1.0"
|
642
735
|
lodash "^4.17.13"
|
643
736
|
|
644
|
-
"@babel/types@^7.
|
645
|
-
version "7.
|
646
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.
|
647
|
-
integrity sha512-
|
737
|
+
"@babel/types@^7.4.4", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5", "@babel/types@^7.9.6":
|
738
|
+
version "7.9.6"
|
739
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.6.tgz#2c5502b427251e9de1bd2dff95add646d95cc9f7"
|
740
|
+
integrity sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==
|
648
741
|
dependencies:
|
649
|
-
|
742
|
+
"@babel/helper-validator-identifier" "^7.9.5"
|
650
743
|
lodash "^4.17.13"
|
651
744
|
to-fast-properties "^2.0.0"
|
652
745
|
|
653
746
|
"@fortawesome/fontawesome-free@^5.11.1":
|
654
|
-
version "5.
|
655
|
-
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.
|
656
|
-
integrity sha512-
|
747
|
+
version "5.13.0"
|
748
|
+
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.13.0.tgz#fcb113d1aca4b471b709e8c9c168674fbd6e06d9"
|
749
|
+
integrity sha512-xKOeQEl5O47GPZYIMToj6uuA2syyFlq9EMSl2ui0uytjY9xbe8XS0pexNWmxrdcCyNGyDmLyYw5FtKsalBUeOg==
|
657
750
|
|
658
751
|
"@rails/ujs@^6.0.0":
|
659
|
-
version "6.0.
|
660
|
-
resolved "https://registry.
|
661
|
-
integrity sha512-
|
752
|
+
version "6.0.2"
|
753
|
+
resolved "https://registry.npmjs.org/@rails/ujs/-/ujs-6.0.2.tgz#8d32452d51c5e115374a218fb5475803dc17f4c0"
|
754
|
+
integrity sha512-KSQjJG8yzSWC1IT+UtFQglefABU37hpJ7uAz39K1/iWtoaJaI9ydGIaxxpJBT/PmYv4kS6lCSjXq13DELeJocw==
|
662
755
|
|
663
756
|
"@types/q@^1.5.1":
|
664
757
|
version "1.5.2"
|
665
758
|
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
|
666
759
|
integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
|
667
760
|
|
668
|
-
"@webassemblyjs/ast@1.
|
669
|
-
version "1.
|
670
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.
|
671
|
-
integrity sha512-
|
672
|
-
dependencies:
|
673
|
-
"@webassemblyjs/helper-module-context" "1.
|
674
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
675
|
-
"@webassemblyjs/wast-parser" "1.
|
676
|
-
|
677
|
-
"@webassemblyjs/floating-point-hex-parser@1.
|
678
|
-
version "1.
|
679
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.
|
680
|
-
integrity sha512-
|
681
|
-
|
682
|
-
"@webassemblyjs/helper-api-error@1.
|
683
|
-
version "1.
|
684
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.
|
685
|
-
integrity sha512-
|
686
|
-
|
687
|
-
"@webassemblyjs/helper-buffer@1.
|
688
|
-
version "1.
|
689
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.
|
690
|
-
integrity sha512-
|
691
|
-
|
692
|
-
"@webassemblyjs/helper-code-frame@1.
|
693
|
-
version "1.
|
694
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.
|
695
|
-
integrity sha512-
|
696
|
-
dependencies:
|
697
|
-
"@webassemblyjs/wast-printer" "1.
|
698
|
-
|
699
|
-
"@webassemblyjs/helper-fsm@1.
|
700
|
-
version "1.
|
701
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.
|
702
|
-
integrity sha512-
|
703
|
-
|
704
|
-
"@webassemblyjs/helper-module-context@1.
|
705
|
-
version "1.
|
706
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.
|
707
|
-
integrity sha512
|
708
|
-
dependencies:
|
709
|
-
"@webassemblyjs/ast" "1.
|
710
|
-
|
711
|
-
|
712
|
-
"
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
"
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
"@webassemblyjs/
|
723
|
-
"@webassemblyjs/helper-
|
724
|
-
"@webassemblyjs/
|
725
|
-
|
726
|
-
|
727
|
-
"
|
728
|
-
|
729
|
-
|
730
|
-
integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==
|
761
|
+
"@webassemblyjs/ast@1.9.0":
|
762
|
+
version "1.9.0"
|
763
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
|
764
|
+
integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
|
765
|
+
dependencies:
|
766
|
+
"@webassemblyjs/helper-module-context" "1.9.0"
|
767
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
768
|
+
"@webassemblyjs/wast-parser" "1.9.0"
|
769
|
+
|
770
|
+
"@webassemblyjs/floating-point-hex-parser@1.9.0":
|
771
|
+
version "1.9.0"
|
772
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
|
773
|
+
integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
|
774
|
+
|
775
|
+
"@webassemblyjs/helper-api-error@1.9.0":
|
776
|
+
version "1.9.0"
|
777
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
|
778
|
+
integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
|
779
|
+
|
780
|
+
"@webassemblyjs/helper-buffer@1.9.0":
|
781
|
+
version "1.9.0"
|
782
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
|
783
|
+
integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
|
784
|
+
|
785
|
+
"@webassemblyjs/helper-code-frame@1.9.0":
|
786
|
+
version "1.9.0"
|
787
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
|
788
|
+
integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
|
789
|
+
dependencies:
|
790
|
+
"@webassemblyjs/wast-printer" "1.9.0"
|
791
|
+
|
792
|
+
"@webassemblyjs/helper-fsm@1.9.0":
|
793
|
+
version "1.9.0"
|
794
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
|
795
|
+
integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
|
796
|
+
|
797
|
+
"@webassemblyjs/helper-module-context@1.9.0":
|
798
|
+
version "1.9.0"
|
799
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
|
800
|
+
integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
|
801
|
+
dependencies:
|
802
|
+
"@webassemblyjs/ast" "1.9.0"
|
803
|
+
|
804
|
+
"@webassemblyjs/helper-wasm-bytecode@1.9.0":
|
805
|
+
version "1.9.0"
|
806
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
|
807
|
+
integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
|
808
|
+
|
809
|
+
"@webassemblyjs/helper-wasm-section@1.9.0":
|
810
|
+
version "1.9.0"
|
811
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
|
812
|
+
integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
|
813
|
+
dependencies:
|
814
|
+
"@webassemblyjs/ast" "1.9.0"
|
815
|
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
816
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
817
|
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
818
|
+
|
819
|
+
"@webassemblyjs/ieee754@1.9.0":
|
820
|
+
version "1.9.0"
|
821
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
|
822
|
+
integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
|
731
823
|
dependencies:
|
732
824
|
"@xtuc/ieee754" "^1.2.0"
|
733
825
|
|
734
|
-
"@webassemblyjs/leb128@1.
|
735
|
-
version "1.
|
736
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.
|
737
|
-
integrity sha512-
|
826
|
+
"@webassemblyjs/leb128@1.9.0":
|
827
|
+
version "1.9.0"
|
828
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
|
829
|
+
integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
|
738
830
|
dependencies:
|
739
831
|
"@xtuc/long" "4.2.2"
|
740
832
|
|
741
|
-
"@webassemblyjs/utf8@1.
|
742
|
-
version "1.
|
743
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.
|
744
|
-
integrity sha512-
|
745
|
-
|
746
|
-
"@webassemblyjs/wasm-edit@1.
|
747
|
-
version "1.
|
748
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.
|
749
|
-
integrity sha512-
|
750
|
-
dependencies:
|
751
|
-
"@webassemblyjs/ast" "1.
|
752
|
-
"@webassemblyjs/helper-buffer" "1.
|
753
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
754
|
-
"@webassemblyjs/helper-wasm-section" "1.
|
755
|
-
"@webassemblyjs/wasm-gen" "1.
|
756
|
-
"@webassemblyjs/wasm-opt" "1.
|
757
|
-
"@webassemblyjs/wasm-parser" "1.
|
758
|
-
"@webassemblyjs/wast-printer" "1.
|
759
|
-
|
760
|
-
"@webassemblyjs/wasm-gen@1.
|
761
|
-
version "1.
|
762
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.
|
763
|
-
integrity sha512-
|
764
|
-
dependencies:
|
765
|
-
"@webassemblyjs/ast" "1.
|
766
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
767
|
-
"@webassemblyjs/ieee754" "1.
|
768
|
-
"@webassemblyjs/leb128" "1.
|
769
|
-
"@webassemblyjs/utf8" "1.
|
770
|
-
|
771
|
-
"@webassemblyjs/wasm-opt@1.
|
772
|
-
version "1.
|
773
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.
|
774
|
-
integrity sha512-
|
775
|
-
dependencies:
|
776
|
-
"@webassemblyjs/ast" "1.
|
777
|
-
"@webassemblyjs/helper-buffer" "1.
|
778
|
-
"@webassemblyjs/wasm-gen" "1.
|
779
|
-
"@webassemblyjs/wasm-parser" "1.
|
780
|
-
|
781
|
-
"@webassemblyjs/wasm-parser@1.
|
782
|
-
version "1.
|
783
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.
|
784
|
-
integrity sha512-
|
785
|
-
dependencies:
|
786
|
-
"@webassemblyjs/ast" "1.
|
787
|
-
"@webassemblyjs/helper-api-error" "1.
|
788
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
789
|
-
"@webassemblyjs/ieee754" "1.
|
790
|
-
"@webassemblyjs/leb128" "1.
|
791
|
-
"@webassemblyjs/utf8" "1.
|
792
|
-
|
793
|
-
"@webassemblyjs/wast-parser@1.
|
794
|
-
version "1.
|
795
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.
|
796
|
-
integrity sha512-
|
797
|
-
dependencies:
|
798
|
-
"@webassemblyjs/ast" "1.
|
799
|
-
"@webassemblyjs/floating-point-hex-parser" "1.
|
800
|
-
"@webassemblyjs/helper-api-error" "1.
|
801
|
-
"@webassemblyjs/helper-code-frame" "1.
|
802
|
-
"@webassemblyjs/helper-fsm" "1.
|
833
|
+
"@webassemblyjs/utf8@1.9.0":
|
834
|
+
version "1.9.0"
|
835
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
|
836
|
+
integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
|
837
|
+
|
838
|
+
"@webassemblyjs/wasm-edit@1.9.0":
|
839
|
+
version "1.9.0"
|
840
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
|
841
|
+
integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
|
842
|
+
dependencies:
|
843
|
+
"@webassemblyjs/ast" "1.9.0"
|
844
|
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
845
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
846
|
+
"@webassemblyjs/helper-wasm-section" "1.9.0"
|
847
|
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
848
|
+
"@webassemblyjs/wasm-opt" "1.9.0"
|
849
|
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
850
|
+
"@webassemblyjs/wast-printer" "1.9.0"
|
851
|
+
|
852
|
+
"@webassemblyjs/wasm-gen@1.9.0":
|
853
|
+
version "1.9.0"
|
854
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
|
855
|
+
integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
|
856
|
+
dependencies:
|
857
|
+
"@webassemblyjs/ast" "1.9.0"
|
858
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
859
|
+
"@webassemblyjs/ieee754" "1.9.0"
|
860
|
+
"@webassemblyjs/leb128" "1.9.0"
|
861
|
+
"@webassemblyjs/utf8" "1.9.0"
|
862
|
+
|
863
|
+
"@webassemblyjs/wasm-opt@1.9.0":
|
864
|
+
version "1.9.0"
|
865
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
|
866
|
+
integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
|
867
|
+
dependencies:
|
868
|
+
"@webassemblyjs/ast" "1.9.0"
|
869
|
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
870
|
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
871
|
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
872
|
+
|
873
|
+
"@webassemblyjs/wasm-parser@1.9.0":
|
874
|
+
version "1.9.0"
|
875
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
|
876
|
+
integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
|
877
|
+
dependencies:
|
878
|
+
"@webassemblyjs/ast" "1.9.0"
|
879
|
+
"@webassemblyjs/helper-api-error" "1.9.0"
|
880
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
881
|
+
"@webassemblyjs/ieee754" "1.9.0"
|
882
|
+
"@webassemblyjs/leb128" "1.9.0"
|
883
|
+
"@webassemblyjs/utf8" "1.9.0"
|
884
|
+
|
885
|
+
"@webassemblyjs/wast-parser@1.9.0":
|
886
|
+
version "1.9.0"
|
887
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
|
888
|
+
integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
|
889
|
+
dependencies:
|
890
|
+
"@webassemblyjs/ast" "1.9.0"
|
891
|
+
"@webassemblyjs/floating-point-hex-parser" "1.9.0"
|
892
|
+
"@webassemblyjs/helper-api-error" "1.9.0"
|
893
|
+
"@webassemblyjs/helper-code-frame" "1.9.0"
|
894
|
+
"@webassemblyjs/helper-fsm" "1.9.0"
|
803
895
|
"@xtuc/long" "4.2.2"
|
804
896
|
|
805
|
-
"@webassemblyjs/wast-printer@1.
|
806
|
-
version "1.
|
807
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.
|
808
|
-
integrity sha512-
|
897
|
+
"@webassemblyjs/wast-printer@1.9.0":
|
898
|
+
version "1.9.0"
|
899
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
|
900
|
+
integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
|
809
901
|
dependencies:
|
810
|
-
"@webassemblyjs/ast" "1.
|
811
|
-
"@webassemblyjs/wast-parser" "1.
|
902
|
+
"@webassemblyjs/ast" "1.9.0"
|
903
|
+
"@webassemblyjs/wast-parser" "1.9.0"
|
812
904
|
"@xtuc/long" "4.2.2"
|
813
905
|
|
814
906
|
"@xtuc/ieee754@^1.2.0":
|
@@ -826,10 +918,10 @@ abbrev@1:
|
|
826
918
|
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
827
919
|
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
|
828
920
|
|
829
|
-
acorn@^6.
|
830
|
-
version "6.
|
831
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.
|
832
|
-
integrity sha512
|
921
|
+
acorn@^6.4.1:
|
922
|
+
version "6.4.1"
|
923
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474"
|
924
|
+
integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==
|
833
925
|
|
834
926
|
ajv-errors@^1.0.0:
|
835
927
|
version "1.0.1"
|
@@ -842,11 +934,21 @@ ajv-keywords@^3.1.0, ajv-keywords@^3.4.1:
|
|
842
934
|
integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
|
843
935
|
|
844
936
|
ajv@^6.1.0, ajv@^6.10.2, ajv@^6.5.5:
|
845
|
-
version "6.
|
846
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.
|
847
|
-
integrity sha512-
|
937
|
+
version "6.12.2"
|
938
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd"
|
939
|
+
integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==
|
848
940
|
dependencies:
|
849
|
-
fast-deep-equal "^
|
941
|
+
fast-deep-equal "^3.1.1"
|
942
|
+
fast-json-stable-stringify "^2.0.0"
|
943
|
+
json-schema-traverse "^0.4.1"
|
944
|
+
uri-js "^4.2.2"
|
945
|
+
|
946
|
+
ajv@^6.12.0:
|
947
|
+
version "6.12.0"
|
948
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7"
|
949
|
+
integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==
|
950
|
+
dependencies:
|
951
|
+
fast-deep-equal "^3.1.1"
|
850
952
|
fast-json-stable-stringify "^2.0.0"
|
851
953
|
json-schema-traverse "^0.4.1"
|
852
954
|
uri-js "^4.2.2"
|
@@ -863,7 +965,7 @@ amdefine@>=0.0.4:
|
|
863
965
|
|
864
966
|
ansi-colors@^3.0.0:
|
865
967
|
version "3.2.4"
|
866
|
-
resolved "https://registry.
|
968
|
+
resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
|
867
969
|
integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
|
868
970
|
|
869
971
|
ansi-regex@^2.0.0:
|
@@ -943,14 +1045,14 @@ array-find-index@^1.0.1:
|
|
943
1045
|
|
944
1046
|
array-union@^1.0.1:
|
945
1047
|
version "1.0.2"
|
946
|
-
resolved "https://registry.
|
1048
|
+
resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
|
947
1049
|
integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
|
948
1050
|
dependencies:
|
949
1051
|
array-uniq "^1.0.1"
|
950
1052
|
|
951
1053
|
array-uniq@^1.0.1:
|
952
1054
|
version "1.0.3"
|
953
|
-
resolved "https://registry.
|
1055
|
+
resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
|
954
1056
|
integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
|
955
1057
|
|
956
1058
|
array-unique@^0.3.2:
|
@@ -1007,23 +1109,23 @@ asynckit@^0.4.0:
|
|
1007
1109
|
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
1008
1110
|
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
|
1009
1111
|
|
1010
|
-
atob@^2.1.
|
1112
|
+
atob@^2.1.2:
|
1011
1113
|
version "2.1.2"
|
1012
1114
|
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
|
1013
1115
|
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
1014
1116
|
|
1015
1117
|
autoprefixer@^9.6.1:
|
1016
|
-
version "9.7.
|
1017
|
-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.
|
1018
|
-
integrity sha512-
|
1118
|
+
version "9.7.6"
|
1119
|
+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.6.tgz#63ac5bbc0ce7934e6997207d5bb00d68fa8293a4"
|
1120
|
+
integrity sha512-F7cYpbN7uVVhACZTeeIeealwdGM6wMtfWARVLTy5xmKtgVdBNJvbDRoCK3YO1orcs7gv/KwYlb3iXwu9Ug9BkQ==
|
1019
1121
|
dependencies:
|
1020
|
-
browserslist "^4.
|
1021
|
-
caniuse-lite "^1.0.
|
1122
|
+
browserslist "^4.11.1"
|
1123
|
+
caniuse-lite "^1.0.30001039"
|
1022
1124
|
chalk "^2.4.2"
|
1023
1125
|
normalize-range "^0.1.2"
|
1024
1126
|
num2fraction "^1.2.2"
|
1025
|
-
postcss "^7.0.
|
1026
|
-
postcss-value-parser "^4.0.
|
1127
|
+
postcss "^7.0.27"
|
1128
|
+
postcss-value-parser "^4.0.3"
|
1027
1129
|
|
1028
1130
|
aws-sign2@~0.7.0:
|
1029
1131
|
version "0.7.0"
|
@@ -1031,24 +1133,25 @@ aws-sign2@~0.7.0:
|
|
1031
1133
|
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
|
1032
1134
|
|
1033
1135
|
aws4@^1.8.0:
|
1034
|
-
version "1.
|
1035
|
-
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.
|
1036
|
-
integrity sha512-
|
1136
|
+
version "1.9.1"
|
1137
|
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e"
|
1138
|
+
integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==
|
1037
1139
|
|
1038
1140
|
babel-loader@^8.0.6:
|
1039
|
-
version "8.0
|
1040
|
-
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.
|
1041
|
-
integrity sha512-
|
1141
|
+
version "8.1.0"
|
1142
|
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
|
1143
|
+
integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==
|
1042
1144
|
dependencies:
|
1043
|
-
find-cache-dir "^2.
|
1044
|
-
loader-utils "^1.0
|
1045
|
-
mkdirp "^0.5.
|
1145
|
+
find-cache-dir "^2.1.0"
|
1146
|
+
loader-utils "^1.4.0"
|
1147
|
+
mkdirp "^0.5.3"
|
1046
1148
|
pify "^4.0.1"
|
1149
|
+
schema-utils "^2.6.5"
|
1047
1150
|
|
1048
|
-
babel-plugin-dynamic-import-node@^2.3.
|
1049
|
-
version "2.3.
|
1050
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.
|
1051
|
-
integrity sha512-
|
1151
|
+
babel-plugin-dynamic-import-node@^2.3.3:
|
1152
|
+
version "2.3.3"
|
1153
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
|
1154
|
+
integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
|
1052
1155
|
dependencies:
|
1053
1156
|
object.assign "^4.1.0"
|
1054
1157
|
|
@@ -1092,6 +1195,13 @@ binary-extensions@^1.0.0:
|
|
1092
1195
|
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
|
1093
1196
|
integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
|
1094
1197
|
|
1198
|
+
bindings@^1.5.0:
|
1199
|
+
version "1.5.0"
|
1200
|
+
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
|
1201
|
+
integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
|
1202
|
+
dependencies:
|
1203
|
+
file-uri-to-path "1.0.0"
|
1204
|
+
|
1095
1205
|
block-stream@*:
|
1096
1206
|
version "0.0.9"
|
1097
1207
|
resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
|
@@ -1221,19 +1331,20 @@ browserslist@^4.0.0:
|
|
1221
1331
|
electron-to-chromium "^1.3.247"
|
1222
1332
|
node-releases "^1.1.29"
|
1223
1333
|
|
1224
|
-
browserslist@^4.
|
1225
|
-
version "4.
|
1226
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
1227
|
-
integrity sha512
|
1334
|
+
browserslist@^4.11.1, browserslist@^4.8.5:
|
1335
|
+
version "4.12.0"
|
1336
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz#06c6d5715a1ede6c51fc39ff67fd647f740b656d"
|
1337
|
+
integrity sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==
|
1228
1338
|
dependencies:
|
1229
|
-
caniuse-lite "^1.0.
|
1230
|
-
electron-to-chromium "^1.3.
|
1231
|
-
node-releases "^1.1.
|
1339
|
+
caniuse-lite "^1.0.30001043"
|
1340
|
+
electron-to-chromium "^1.3.413"
|
1341
|
+
node-releases "^1.1.53"
|
1342
|
+
pkg-up "^2.0.0"
|
1232
1343
|
|
1233
1344
|
bs-custom-file-input@^1.3.2:
|
1234
|
-
version "1.3.
|
1235
|
-
resolved "https://registry.yarnpkg.com/bs-custom-file-input/-/bs-custom-file-input-1.3.
|
1236
|
-
integrity sha512-
|
1345
|
+
version "1.3.4"
|
1346
|
+
resolved "https://registry.yarnpkg.com/bs-custom-file-input/-/bs-custom-file-input-1.3.4.tgz#c275cb8d4f1c02ba026324292509fa9a747dbda8"
|
1347
|
+
integrity sha512-NBsQzTnef3OW1MvdKBbMHAYHssCd613MSeJV7z2McXznWtVMnJCy7Ckyc+PwxV6Pk16cu6YBcYWh/ZE0XWNKCA==
|
1237
1348
|
|
1238
1349
|
buffer-from@^1.0.0:
|
1239
1350
|
version "1.1.1"
|
@@ -1246,9 +1357,9 @@ buffer-xor@^1.0.3:
|
|
1246
1357
|
integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
|
1247
1358
|
|
1248
1359
|
buffer@^4.3.0:
|
1249
|
-
version "4.9.
|
1250
|
-
resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.
|
1251
|
-
integrity
|
1360
|
+
version "4.9.2"
|
1361
|
+
resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
|
1362
|
+
integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
|
1252
1363
|
dependencies:
|
1253
1364
|
base64-js "^1.0.2"
|
1254
1365
|
ieee754 "^1.1.4"
|
@@ -1259,9 +1370,30 @@ builtin-status-codes@^3.0.0:
|
|
1259
1370
|
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
|
1260
1371
|
integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
|
1261
1372
|
|
1262
|
-
cacache@^12.0.2
|
1373
|
+
cacache@^12.0.2:
|
1374
|
+
version "12.0.4"
|
1375
|
+
resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
|
1376
|
+
integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
|
1377
|
+
dependencies:
|
1378
|
+
bluebird "^3.5.5"
|
1379
|
+
chownr "^1.1.1"
|
1380
|
+
figgy-pudding "^3.5.1"
|
1381
|
+
glob "^7.1.4"
|
1382
|
+
graceful-fs "^4.1.15"
|
1383
|
+
infer-owner "^1.0.3"
|
1384
|
+
lru-cache "^5.1.1"
|
1385
|
+
mississippi "^3.0.0"
|
1386
|
+
mkdirp "^0.5.1"
|
1387
|
+
move-concurrently "^1.0.1"
|
1388
|
+
promise-inflight "^1.0.1"
|
1389
|
+
rimraf "^2.6.3"
|
1390
|
+
ssri "^6.0.1"
|
1391
|
+
unique-filename "^1.1.1"
|
1392
|
+
y18n "^4.0.0"
|
1393
|
+
|
1394
|
+
cacache@^12.0.3:
|
1263
1395
|
version "12.0.3"
|
1264
|
-
resolved "https://registry.
|
1396
|
+
resolved "https://registry.npmjs.org/cacache/-/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390"
|
1265
1397
|
integrity sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==
|
1266
1398
|
dependencies:
|
1267
1399
|
bluebird "^3.5.5"
|
@@ -1357,10 +1489,10 @@ caniuse-lite@^1.0.30000989:
|
|
1357
1489
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001006.tgz#5b6e8288792cfa275f007b2819a00ccad7112655"
|
1358
1490
|
integrity sha512-MXnUVX27aGs/QINz+QG1sWSLDr3P1A3Hq5EUWoIt0T7K24DuvMxZEnh3Y5aHlJW6Bz2aApJdSewdYLd8zQnUuw==
|
1359
1491
|
|
1360
|
-
caniuse-lite@^1.0.
|
1361
|
-
version "1.0.
|
1362
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1363
|
-
integrity sha512
|
1492
|
+
caniuse-lite@^1.0.30001039, caniuse-lite@^1.0.30001043:
|
1493
|
+
version "1.0.30001048"
|
1494
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001048.tgz#4bb4f1bc2eb304e5e1154da80b93dee3f1cf447e"
|
1495
|
+
integrity sha512-g1iSHKVxornw0K8LG9LLdf+Fxnv7T1Z+mMsf0/YYLclQX4Cd522Ap0Lrw6NFqHgezit78dtyWxzlV2Xfc7vgRg==
|
1364
1496
|
|
1365
1497
|
caseless@~0.12.0:
|
1366
1498
|
version "0.12.0"
|
@@ -1387,7 +1519,7 @@ chalk@^1.1.1:
|
|
1387
1519
|
strip-ansi "^3.0.0"
|
1388
1520
|
supports-color "^2.0.0"
|
1389
1521
|
|
1390
|
-
chokidar@^2.
|
1522
|
+
chokidar@^2.1.8:
|
1391
1523
|
version "2.1.8"
|
1392
1524
|
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
|
1393
1525
|
integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
|
@@ -1407,9 +1539,9 @@ chokidar@^2.0.2:
|
|
1407
1539
|
fsevents "^1.2.7"
|
1408
1540
|
|
1409
1541
|
chownr@^1.1.1:
|
1410
|
-
version "1.1.
|
1411
|
-
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.
|
1412
|
-
integrity sha512-
|
1542
|
+
version "1.1.4"
|
1543
|
+
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
|
1544
|
+
integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
|
1413
1545
|
|
1414
1546
|
chrome-trace-event@^1.0.2:
|
1415
1547
|
version "1.0.2"
|
@@ -1456,7 +1588,7 @@ cliui@^5.0.0:
|
|
1456
1588
|
|
1457
1589
|
clone-deep@^4.0.1:
|
1458
1590
|
version "4.0.1"
|
1459
|
-
resolved "https://registry.
|
1591
|
+
resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
|
1460
1592
|
integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
|
1461
1593
|
dependencies:
|
1462
1594
|
is-plain-object "^2.0.4"
|
@@ -1595,9 +1727,9 @@ copy-descriptor@^0.1.0:
|
|
1595
1727
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
1596
1728
|
|
1597
1729
|
copy-webpack-plugin@^5.0.4:
|
1598
|
-
version "5.1.
|
1599
|
-
resolved "https://registry.
|
1600
|
-
integrity sha512-
|
1730
|
+
version "5.1.1"
|
1731
|
+
resolved "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz#5481a03dea1123d88a988c6ff8b78247214f0b88"
|
1732
|
+
integrity sha512-P15M5ZC8dyCjQHWwd4Ia/dm0SgVvZJMYeykVIVYXbGyqO4dWB5oyPHp9i7wjwo5LhtlhKbiBCdS2NvM07Wlybg==
|
1601
1733
|
dependencies:
|
1602
1734
|
cacache "^12.0.3"
|
1603
1735
|
find-cache-dir "^2.1.0"
|
@@ -1612,13 +1744,13 @@ copy-webpack-plugin@^5.0.4:
|
|
1612
1744
|
serialize-javascript "^2.1.2"
|
1613
1745
|
webpack-log "^2.0.0"
|
1614
1746
|
|
1615
|
-
core-js-compat@^3.
|
1616
|
-
version "3.
|
1617
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.
|
1618
|
-
integrity sha512-
|
1747
|
+
core-js-compat@^3.6.2:
|
1748
|
+
version "3.6.5"
|
1749
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c"
|
1750
|
+
integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==
|
1619
1751
|
dependencies:
|
1620
|
-
browserslist "^4.8.
|
1621
|
-
semver "
|
1752
|
+
browserslist "^4.8.5"
|
1753
|
+
semver "7.0.0"
|
1622
1754
|
|
1623
1755
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
1624
1756
|
version "1.0.2"
|
@@ -1716,22 +1848,23 @@ css-declaration-sorter@^4.0.1:
|
|
1716
1848
|
timsort "^0.3.0"
|
1717
1849
|
|
1718
1850
|
css-loader@^3.2.0:
|
1719
|
-
version "3.3
|
1720
|
-
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.3.
|
1721
|
-
integrity sha512-
|
1851
|
+
version "3.5.3"
|
1852
|
+
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.5.3.tgz#95ac16468e1adcd95c844729e0bb167639eb0bcf"
|
1853
|
+
integrity sha512-UEr9NH5Lmi7+dguAm+/JSPovNjYbm2k3TK58EiwQHzOHH5Jfq1Y+XoP2bQO6TMn7PptMd0opxxedAWcaSTRKHw==
|
1722
1854
|
dependencies:
|
1723
1855
|
camelcase "^5.3.1"
|
1724
1856
|
cssesc "^3.0.0"
|
1725
1857
|
icss-utils "^4.1.1"
|
1726
1858
|
loader-utils "^1.2.3"
|
1727
1859
|
normalize-path "^3.0.0"
|
1728
|
-
postcss "^7.0.
|
1860
|
+
postcss "^7.0.27"
|
1729
1861
|
postcss-modules-extract-imports "^2.0.0"
|
1730
1862
|
postcss-modules-local-by-default "^3.0.2"
|
1731
|
-
postcss-modules-scope "^2.
|
1863
|
+
postcss-modules-scope "^2.2.0"
|
1732
1864
|
postcss-modules-values "^3.0.0"
|
1733
|
-
postcss-value-parser "^4.0.
|
1734
|
-
schema-utils "^2.6.
|
1865
|
+
postcss-value-parser "^4.0.3"
|
1866
|
+
schema-utils "^2.6.6"
|
1867
|
+
semver "^6.3.0"
|
1735
1868
|
|
1736
1869
|
css-select-base-adapter@^0.1.1:
|
1737
1870
|
version "0.1.1"
|
@@ -1885,13 +2018,6 @@ debug@^2.2.0, debug@^2.3.3:
|
|
1885
2018
|
dependencies:
|
1886
2019
|
ms "2.0.0"
|
1887
2020
|
|
1888
|
-
debug@^3.2.6:
|
1889
|
-
version "3.2.6"
|
1890
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
|
1891
|
-
integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
|
1892
|
-
dependencies:
|
1893
|
-
ms "^2.1.1"
|
1894
|
-
|
1895
2021
|
debug@^4.1.0:
|
1896
2022
|
version "4.1.1"
|
1897
2023
|
resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
|
@@ -1909,11 +2035,6 @@ decode-uri-component@^0.2.0:
|
|
1909
2035
|
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
|
1910
2036
|
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
|
1911
2037
|
|
1912
|
-
deep-extend@^0.6.0:
|
1913
|
-
version "0.6.0"
|
1914
|
-
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
|
1915
|
-
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
|
1916
|
-
|
1917
2038
|
define-properties@^1.1.2, define-properties@^1.1.3:
|
1918
2039
|
version "1.1.3"
|
1919
2040
|
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
|
@@ -1954,9 +2075,9 @@ delegates@^1.0.0:
|
|
1954
2075
|
integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
|
1955
2076
|
|
1956
2077
|
des.js@^1.0.0:
|
1957
|
-
version "1.0.
|
1958
|
-
resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.
|
1959
|
-
integrity
|
2078
|
+
version "1.0.1"
|
2079
|
+
resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
|
2080
|
+
integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
|
1960
2081
|
dependencies:
|
1961
2082
|
inherits "^2.0.1"
|
1962
2083
|
minimalistic-assert "^1.0.0"
|
@@ -1966,11 +2087,6 @@ detect-file@^1.0.0:
|
|
1966
2087
|
resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7"
|
1967
2088
|
integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=
|
1968
2089
|
|
1969
|
-
detect-libc@^1.0.2:
|
1970
|
-
version "1.0.3"
|
1971
|
-
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
|
1972
|
-
integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=
|
1973
|
-
|
1974
2090
|
diffie-hellman@^5.0.0:
|
1975
2091
|
version "5.0.3"
|
1976
2092
|
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
|
@@ -1982,7 +2098,7 @@ diffie-hellman@^5.0.0:
|
|
1982
2098
|
|
1983
2099
|
dir-glob@^2.0.0:
|
1984
2100
|
version "2.2.2"
|
1985
|
-
resolved "https://registry.
|
2101
|
+
resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4"
|
1986
2102
|
integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==
|
1987
2103
|
dependencies:
|
1988
2104
|
path-type "^3.0.0"
|
@@ -2048,15 +2164,15 @@ electron-to-chromium@^1.3.247:
|
|
2048
2164
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.296.tgz#a1d4322d742317945285d3ba88966561b67f3ac8"
|
2049
2165
|
integrity sha512-s5hv+TSJSVRsxH190De66YHb50pBGTweT9XGWYu/LMR20KX6TsjFzObo36CjVAzM+PUeeKSBRtm/mISlCzeojQ==
|
2050
2166
|
|
2051
|
-
electron-to-chromium@^1.3.
|
2052
|
-
version "1.3.
|
2053
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
2054
|
-
integrity sha512-
|
2167
|
+
electron-to-chromium@^1.3.413:
|
2168
|
+
version "1.3.424"
|
2169
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.424.tgz#29bf66325521209180829e8c8b5164deaf0f86b8"
|
2170
|
+
integrity sha512-h8apsMr1RK3OusH8iwxlJ7TZkpgWfg2HvTXZ3o1w9R/SeRKX0hEGMQmRyTWijZAloHfmfwTLaPurVqKWdFC5dw==
|
2055
2171
|
|
2056
2172
|
elliptic@^6.0.0:
|
2057
|
-
version "6.5.
|
2058
|
-
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.
|
2059
|
-
integrity sha512-
|
2173
|
+
version "6.5.2"
|
2174
|
+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
|
2175
|
+
integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==
|
2060
2176
|
dependencies:
|
2061
2177
|
bn.js "^4.4.0"
|
2062
2178
|
brorand "^1.0.1"
|
@@ -2076,6 +2192,11 @@ emojis-list@^2.0.0:
|
|
2076
2192
|
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
|
2077
2193
|
integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
|
2078
2194
|
|
2195
|
+
emojis-list@^3.0.0:
|
2196
|
+
version "3.0.0"
|
2197
|
+
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
|
2198
|
+
integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
|
2199
|
+
|
2079
2200
|
end-of-stream@^1.0.0, end-of-stream@^1.1.0:
|
2080
2201
|
version "1.4.4"
|
2081
2202
|
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
|
@@ -2181,9 +2302,9 @@ esutils@^2.0.2:
|
|
2181
2302
|
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
|
2182
2303
|
|
2183
2304
|
events@^3.0.0:
|
2184
|
-
version "3.
|
2185
|
-
resolved "https://registry.yarnpkg.com/events/-/events-3.
|
2186
|
-
integrity sha512-
|
2305
|
+
version "3.1.0"
|
2306
|
+
resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59"
|
2307
|
+
integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==
|
2187
2308
|
|
2188
2309
|
evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
|
2189
2310
|
version "1.0.3"
|
@@ -2275,20 +2396,20 @@ extsprintf@^1.2.0:
|
|
2275
2396
|
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
|
2276
2397
|
integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
|
2277
2398
|
|
2278
|
-
fast-deep-equal@^
|
2279
|
-
version "
|
2280
|
-
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-
|
2281
|
-
integrity
|
2399
|
+
fast-deep-equal@^3.1.1:
|
2400
|
+
version "3.1.1"
|
2401
|
+
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4"
|
2402
|
+
integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==
|
2282
2403
|
|
2283
2404
|
fast-json-stable-stringify@^2.0.0:
|
2284
|
-
version "2.
|
2285
|
-
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.
|
2286
|
-
integrity
|
2405
|
+
version "2.1.0"
|
2406
|
+
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
|
2407
|
+
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
|
2287
2408
|
|
2288
2409
|
figgy-pudding@^3.5.1:
|
2289
|
-
version "3.5.
|
2290
|
-
resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.
|
2291
|
-
integrity sha512-
|
2410
|
+
version "3.5.2"
|
2411
|
+
resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
|
2412
|
+
integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
|
2292
2413
|
|
2293
2414
|
file-loader@^4.2.0:
|
2294
2415
|
version "4.3.0"
|
@@ -2298,6 +2419,11 @@ file-loader@^4.2.0:
|
|
2298
2419
|
loader-utils "^1.2.3"
|
2299
2420
|
schema-utils "^2.5.0"
|
2300
2421
|
|
2422
|
+
file-uri-to-path@1.0.0:
|
2423
|
+
version "1.0.0"
|
2424
|
+
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
|
2425
|
+
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
|
2426
|
+
|
2301
2427
|
fill-range@^4.0.0:
|
2302
2428
|
version "4.0.0"
|
2303
2429
|
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
|
@@ -2308,7 +2434,7 @@ fill-range@^4.0.0:
|
|
2308
2434
|
repeat-string "^1.6.1"
|
2309
2435
|
to-regex-range "^2.1.0"
|
2310
2436
|
|
2311
|
-
find-cache-dir@^2.
|
2437
|
+
find-cache-dir@^2.1.0:
|
2312
2438
|
version "2.1.0"
|
2313
2439
|
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
|
2314
2440
|
integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
|
@@ -2325,6 +2451,13 @@ find-up@^1.0.0:
|
|
2325
2451
|
path-exists "^2.0.0"
|
2326
2452
|
pinkie-promise "^2.0.0"
|
2327
2453
|
|
2454
|
+
find-up@^2.1.0:
|
2455
|
+
version "2.1.0"
|
2456
|
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
|
2457
|
+
integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
|
2458
|
+
dependencies:
|
2459
|
+
locate-path "^2.0.0"
|
2460
|
+
|
2328
2461
|
find-up@^3.0.0:
|
2329
2462
|
version "3.0.0"
|
2330
2463
|
resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
|
@@ -2389,13 +2522,6 @@ from2@^2.1.0:
|
|
2389
2522
|
inherits "^2.0.1"
|
2390
2523
|
readable-stream "^2.0.0"
|
2391
2524
|
|
2392
|
-
fs-minipass@^1.2.5:
|
2393
|
-
version "1.2.7"
|
2394
|
-
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7"
|
2395
|
-
integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==
|
2396
|
-
dependencies:
|
2397
|
-
minipass "^2.6.0"
|
2398
|
-
|
2399
2525
|
fs-write-stream-atomic@^1.0.8:
|
2400
2526
|
version "1.0.10"
|
2401
2527
|
resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
|
@@ -2412,12 +2538,12 @@ fs.realpath@^1.0.0:
|
|
2412
2538
|
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
2413
2539
|
|
2414
2540
|
fsevents@^1.2.7:
|
2415
|
-
version "1.2.
|
2416
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.
|
2417
|
-
integrity sha512-
|
2541
|
+
version "1.2.12"
|
2542
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.12.tgz#db7e0d8ec3b0b45724fd4d83d43554a8f1f0de5c"
|
2543
|
+
integrity sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==
|
2418
2544
|
dependencies:
|
2545
|
+
bindings "^1.5.0"
|
2419
2546
|
nan "^2.12.1"
|
2420
|
-
node-pre-gyp "^0.12.0"
|
2421
2547
|
|
2422
2548
|
fstream@^1.0.0, fstream@^1.0.12:
|
2423
2549
|
version "1.0.12"
|
@@ -2455,6 +2581,11 @@ gaze@^1.0.0:
|
|
2455
2581
|
dependencies:
|
2456
2582
|
globule "^1.0.0"
|
2457
2583
|
|
2584
|
+
gensync@^1.0.0-beta.1:
|
2585
|
+
version "1.0.0-beta.1"
|
2586
|
+
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
|
2587
|
+
integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
|
2588
|
+
|
2458
2589
|
get-caller-file@^1.0.1:
|
2459
2590
|
version "1.0.3"
|
2460
2591
|
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
|
@@ -2497,19 +2628,7 @@ glob-parent@^3.1.0:
|
|
2497
2628
|
is-glob "^3.1.0"
|
2498
2629
|
path-dirname "^1.0.0"
|
2499
2630
|
|
2500
|
-
glob@^7.0.0, glob@^7.0.3, glob@~7.1.1:
|
2501
|
-
version "7.1.5"
|
2502
|
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0"
|
2503
|
-
integrity sha512-J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==
|
2504
|
-
dependencies:
|
2505
|
-
fs.realpath "^1.0.0"
|
2506
|
-
inflight "^1.0.4"
|
2507
|
-
inherits "2"
|
2508
|
-
minimatch "^3.0.4"
|
2509
|
-
once "^1.3.0"
|
2510
|
-
path-is-absolute "^1.0.0"
|
2511
|
-
|
2512
|
-
glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
|
2631
|
+
glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.1:
|
2513
2632
|
version "7.1.6"
|
2514
2633
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
|
2515
2634
|
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
|
@@ -2564,7 +2683,7 @@ globals@^11.1.0:
|
|
2564
2683
|
|
2565
2684
|
globby@^7.1.1:
|
2566
2685
|
version "7.1.1"
|
2567
|
-
resolved "https://registry.
|
2686
|
+
resolved "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680"
|
2568
2687
|
integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA=
|
2569
2688
|
dependencies:
|
2570
2689
|
array-union "^1.0.1"
|
@@ -2575,25 +2694,25 @@ globby@^7.1.1:
|
|
2575
2694
|
slash "^1.0.0"
|
2576
2695
|
|
2577
2696
|
globule@^1.0.0:
|
2578
|
-
version "1.
|
2579
|
-
resolved "https://registry.yarnpkg.com/globule/-/globule-1.
|
2580
|
-
integrity sha512-
|
2697
|
+
version "1.3.1"
|
2698
|
+
resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.1.tgz#90a25338f22b7fbeb527cee63c629aea754d33b9"
|
2699
|
+
integrity sha512-OVyWOHgw29yosRHCHo7NncwR1hW5ew0W/UrvtwvjefVJeQ26q4/8r8FmPsSF1hJ93IgWkyv16pCTz6WblMzm/g==
|
2581
2700
|
dependencies:
|
2582
2701
|
glob "~7.1.1"
|
2583
|
-
lodash "~4.17.
|
2702
|
+
lodash "~4.17.12"
|
2584
2703
|
minimatch "~3.0.2"
|
2585
2704
|
|
2586
2705
|
graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2:
|
2587
|
-
version "4.2.
|
2588
|
-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.
|
2589
|
-
integrity sha512-
|
2706
|
+
version "4.2.4"
|
2707
|
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
|
2708
|
+
integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
|
2590
2709
|
|
2591
2710
|
har-schema@^2.0.0:
|
2592
2711
|
version "2.0.0"
|
2593
2712
|
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
|
2594
2713
|
integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
|
2595
2714
|
|
2596
|
-
har-validator@~5.1.
|
2715
|
+
har-validator@~5.1.3:
|
2597
2716
|
version "5.1.3"
|
2598
2717
|
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
|
2599
2718
|
integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==
|
@@ -2699,9 +2818,9 @@ homedir-polyfill@^1.0.1:
|
|
2699
2818
|
parse-passwd "^1.0.0"
|
2700
2819
|
|
2701
2820
|
hosted-git-info@^2.1.4:
|
2702
|
-
version "2.8.
|
2703
|
-
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.
|
2704
|
-
integrity sha512-
|
2821
|
+
version "2.8.8"
|
2822
|
+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
|
2823
|
+
integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
|
2705
2824
|
|
2706
2825
|
hsl-regex@^1.0.0:
|
2707
2826
|
version "1.0.0"
|
@@ -2732,13 +2851,6 @@ https-browserify@^1.0.0:
|
|
2732
2851
|
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
|
2733
2852
|
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
|
2734
2853
|
|
2735
|
-
iconv-lite@^0.4.4:
|
2736
|
-
version "0.4.24"
|
2737
|
-
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
|
2738
|
-
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
|
2739
|
-
dependencies:
|
2740
|
-
safer-buffer ">= 2.1.2 < 3"
|
2741
|
-
|
2742
2854
|
icss-utils@^4.0.0, icss-utils@^4.1.1:
|
2743
2855
|
version "4.1.1"
|
2744
2856
|
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
|
@@ -2756,16 +2868,9 @@ iferr@^0.1.5:
|
|
2756
2868
|
resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
|
2757
2869
|
integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
|
2758
2870
|
|
2759
|
-
ignore-walk@^3.0.1:
|
2760
|
-
version "3.0.3"
|
2761
|
-
resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37"
|
2762
|
-
integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==
|
2763
|
-
dependencies:
|
2764
|
-
minimatch "^3.0.4"
|
2765
|
-
|
2766
2871
|
ignore@^3.3.5:
|
2767
2872
|
version "3.3.10"
|
2768
|
-
resolved "https://registry.
|
2873
|
+
resolved "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
|
2769
2874
|
integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==
|
2770
2875
|
|
2771
2876
|
import-cwd@^2.0.0:
|
@@ -2804,9 +2909,9 @@ imurmurhash@^0.1.4:
|
|
2804
2909
|
integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
|
2805
2910
|
|
2806
2911
|
in-publish@^2.0.0:
|
2807
|
-
version "2.0.
|
2808
|
-
resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.
|
2809
|
-
integrity
|
2912
|
+
version "2.0.1"
|
2913
|
+
resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.1.tgz#948b1a535c8030561cea522f73f78f4be357e00c"
|
2914
|
+
integrity sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==
|
2810
2915
|
|
2811
2916
|
indent-string@^2.1.0:
|
2812
2917
|
version "2.1.0"
|
@@ -2848,7 +2953,7 @@ inherits@2.0.3:
|
|
2848
2953
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
2849
2954
|
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
|
2850
2955
|
|
2851
|
-
ini@^1.3.4, ini@^1.3.5
|
2956
|
+
ini@^1.3.4, ini@^1.3.5:
|
2852
2957
|
version "1.3.5"
|
2853
2958
|
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
|
2854
2959
|
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
|
@@ -2858,7 +2963,7 @@ interpret@1.2.0:
|
|
2858
2963
|
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296"
|
2859
2964
|
integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==
|
2860
2965
|
|
2861
|
-
invariant@^2.2.2:
|
2966
|
+
invariant@^2.2.2, invariant@^2.2.4:
|
2862
2967
|
version "2.2.4"
|
2863
2968
|
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
|
2864
2969
|
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
|
@@ -2993,11 +3098,9 @@ is-extglob@^2.1.0, is-extglob@^2.1.1:
|
|
2993
3098
|
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
|
2994
3099
|
|
2995
3100
|
is-finite@^1.0.0:
|
2996
|
-
version "1.0
|
2997
|
-
resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.
|
2998
|
-
integrity
|
2999
|
-
dependencies:
|
3000
|
-
number-is-nan "^1.0.0"
|
3101
|
+
version "1.1.0"
|
3102
|
+
resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3"
|
3103
|
+
integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==
|
3001
3104
|
|
3002
3105
|
is-fullwidth-code-point@^1.0.0:
|
3003
3106
|
version "1.0.0"
|
@@ -3020,7 +3123,7 @@ is-glob@^3.1.0:
|
|
3020
3123
|
|
3021
3124
|
is-glob@^4.0.0, is-glob@^4.0.1:
|
3022
3125
|
version "4.0.1"
|
3023
|
-
resolved "https://registry.
|
3126
|
+
resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
|
3024
3127
|
integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
|
3025
3128
|
dependencies:
|
3026
3129
|
is-extglob "^2.1.1"
|
@@ -3039,7 +3142,7 @@ is-obj@^1.0.0:
|
|
3039
3142
|
|
3040
3143
|
is-plain-obj@^1.0.0:
|
3041
3144
|
version "1.1.0"
|
3042
|
-
resolved "https://registry.
|
3145
|
+
resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
|
3043
3146
|
integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
|
3044
3147
|
|
3045
3148
|
is-plain-object@^2.0.3, is-plain-object@^2.0.4:
|
@@ -3128,19 +3231,14 @@ isstream@~0.1.2:
|
|
3128
3231
|
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
|
3129
3232
|
|
3130
3233
|
jquery@^3.4.1:
|
3131
|
-
version "3.
|
3132
|
-
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.
|
3133
|
-
integrity sha512-
|
3234
|
+
version "3.5.0"
|
3235
|
+
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.0.tgz#9980b97d9e4194611c36530e7dc46a58d7340fc9"
|
3236
|
+
integrity sha512-Xb7SVYMvygPxbFMpTFQiHh1J7HClEaThguL15N/Gg37Lri/qKyhRGZYzHRyLH8Stq3Aow0LsHO2O2ci86fCrNQ==
|
3134
3237
|
|
3135
3238
|
js-base64@^2.1.8:
|
3136
|
-
version "2.5.
|
3137
|
-
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.
|
3138
|
-
integrity sha512-
|
3139
|
-
|
3140
|
-
js-levenshtein@^1.1.3:
|
3141
|
-
version "1.1.6"
|
3142
|
-
resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
|
3143
|
-
integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==
|
3239
|
+
version "2.5.2"
|
3240
|
+
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.2.tgz#313b6274dda718f714d00b3330bbae6e38e90209"
|
3241
|
+
integrity sha512-Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ==
|
3144
3242
|
|
3145
3243
|
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
|
3146
3244
|
version "4.0.0"
|
@@ -3197,12 +3295,12 @@ json5@^1.0.1:
|
|
3197
3295
|
dependencies:
|
3198
3296
|
minimist "^1.2.0"
|
3199
3297
|
|
3200
|
-
json5@^2.1.
|
3201
|
-
version "2.1.
|
3202
|
-
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.
|
3203
|
-
integrity sha512-
|
3298
|
+
json5@^2.1.2:
|
3299
|
+
version "2.1.3"
|
3300
|
+
resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
|
3301
|
+
integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
|
3204
3302
|
dependencies:
|
3205
|
-
minimist "^1.2.
|
3303
|
+
minimist "^1.2.5"
|
3206
3304
|
|
3207
3305
|
jsprim@^1.2.2:
|
3208
3306
|
version "1.4.1"
|
@@ -3234,9 +3332,9 @@ kind-of@^5.0.0:
|
|
3234
3332
|
integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
|
3235
3333
|
|
3236
3334
|
kind-of@^6.0.0, kind-of@^6.0.2:
|
3237
|
-
version "6.0.
|
3238
|
-
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.
|
3239
|
-
integrity sha512-
|
3335
|
+
version "6.0.3"
|
3336
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
|
3337
|
+
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
|
3240
3338
|
|
3241
3339
|
last-call-webpack-plugin@^3.0.0:
|
3242
3340
|
version "3.0.0"
|
@@ -3260,6 +3358,18 @@ lcid@^2.0.0:
|
|
3260
3358
|
dependencies:
|
3261
3359
|
invert-kv "^2.0.0"
|
3262
3360
|
|
3361
|
+
leven@^3.1.0:
|
3362
|
+
version "3.1.0"
|
3363
|
+
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
3364
|
+
integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
|
3365
|
+
|
3366
|
+
levenary@^1.1.1:
|
3367
|
+
version "1.1.1"
|
3368
|
+
resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77"
|
3369
|
+
integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==
|
3370
|
+
dependencies:
|
3371
|
+
leven "^3.1.0"
|
3372
|
+
|
3263
3373
|
load-json-file@^1.0.0:
|
3264
3374
|
version "1.1.0"
|
3265
3375
|
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
|
@@ -3276,7 +3386,7 @@ loader-runner@^2.4.0:
|
|
3276
3386
|
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
|
3277
3387
|
integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
|
3278
3388
|
|
3279
|
-
loader-utils@1.2.3, loader-utils@^1.
|
3389
|
+
loader-utils@1.2.3, loader-utils@^1.1.0:
|
3280
3390
|
version "1.2.3"
|
3281
3391
|
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
|
3282
3392
|
integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
|
@@ -3285,6 +3395,23 @@ loader-utils@1.2.3, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.
|
|
3285
3395
|
emojis-list "^2.0.0"
|
3286
3396
|
json5 "^1.0.1"
|
3287
3397
|
|
3398
|
+
loader-utils@^1.2.3, loader-utils@^1.4.0:
|
3399
|
+
version "1.4.0"
|
3400
|
+
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
|
3401
|
+
integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
|
3402
|
+
dependencies:
|
3403
|
+
big.js "^5.2.2"
|
3404
|
+
emojis-list "^3.0.0"
|
3405
|
+
json5 "^1.0.1"
|
3406
|
+
|
3407
|
+
locate-path@^2.0.0:
|
3408
|
+
version "2.0.0"
|
3409
|
+
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
|
3410
|
+
integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
|
3411
|
+
dependencies:
|
3412
|
+
p-locate "^2.0.0"
|
3413
|
+
path-exists "^3.0.0"
|
3414
|
+
|
3288
3415
|
locate-path@^3.0.0:
|
3289
3416
|
version "3.0.0"
|
3290
3417
|
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
|
@@ -3303,7 +3430,7 @@ lodash.uniq@^4.5.0:
|
|
3303
3430
|
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
3304
3431
|
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
|
3305
3432
|
|
3306
|
-
lodash@^4.0.0, lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.5, lodash@~4.17.
|
3433
|
+
lodash@^4.0.0, lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.5, lodash@~4.17.12:
|
3307
3434
|
version "4.17.15"
|
3308
3435
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
3309
3436
|
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
@@ -3351,11 +3478,6 @@ make-dir@^2.0.0:
|
|
3351
3478
|
pify "^4.0.1"
|
3352
3479
|
semver "^5.6.0"
|
3353
3480
|
|
3354
|
-
mamacro@^0.0.3:
|
3355
|
-
version "0.0.3"
|
3356
|
-
resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4"
|
3357
|
-
integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==
|
3358
|
-
|
3359
3481
|
map-age-cleaner@^0.1.1:
|
3360
3482
|
version "0.1.3"
|
3361
3483
|
resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
|
@@ -3467,17 +3589,17 @@ miller-rabin@^4.0.0:
|
|
3467
3589
|
bn.js "^4.0.0"
|
3468
3590
|
brorand "^1.0.1"
|
3469
3591
|
|
3470
|
-
mime-db@1.
|
3471
|
-
version "1.
|
3472
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.
|
3473
|
-
integrity sha512
|
3592
|
+
mime-db@1.44.0:
|
3593
|
+
version "1.44.0"
|
3594
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92"
|
3595
|
+
integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==
|
3474
3596
|
|
3475
3597
|
mime-types@^2.1.12, mime-types@~2.1.19:
|
3476
|
-
version "2.1.
|
3477
|
-
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.
|
3478
|
-
integrity sha512-
|
3598
|
+
version "2.1.27"
|
3599
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f"
|
3600
|
+
integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==
|
3479
3601
|
dependencies:
|
3480
|
-
mime-db "1.
|
3602
|
+
mime-db "1.44.0"
|
3481
3603
|
|
3482
3604
|
mime@^2.4.4:
|
3483
3605
|
version "2.4.4"
|
@@ -3490,9 +3612,9 @@ mimic-fn@^2.0.0:
|
|
3490
3612
|
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
|
3491
3613
|
|
3492
3614
|
mini-css-extract-plugin@^0.8.0:
|
3493
|
-
version "0.8.
|
3494
|
-
resolved "https://registry.
|
3495
|
-
integrity sha512-
|
3615
|
+
version "0.8.2"
|
3616
|
+
resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.2.tgz#a875e169beb27c88af77dd962771c9eedc3da161"
|
3617
|
+
integrity sha512-a3Y4of27Wz+mqK3qrcd3VhYz6cU0iW5x3Sgvqzbj+XmlrSizmvu8QQMl5oMYJjgHOC4iyt+w7l4umP+dQeW3bw==
|
3496
3618
|
dependencies:
|
3497
3619
|
loader-utils "^1.1.0"
|
3498
3620
|
normalize-url "1.9.1"
|
@@ -3521,25 +3643,10 @@ minimist@0.0.8:
|
|
3521
3643
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
3522
3644
|
integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
|
3523
3645
|
|
3524
|
-
minimist@^1.1.3, minimist@^1.2.0:
|
3525
|
-
version "1.2.
|
3526
|
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.
|
3527
|
-
integrity
|
3528
|
-
|
3529
|
-
minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0:
|
3530
|
-
version "2.9.0"
|
3531
|
-
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6"
|
3532
|
-
integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==
|
3533
|
-
dependencies:
|
3534
|
-
safe-buffer "^5.1.2"
|
3535
|
-
yallist "^3.0.0"
|
3536
|
-
|
3537
|
-
minizlib@^1.2.1:
|
3538
|
-
version "1.3.3"
|
3539
|
-
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d"
|
3540
|
-
integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==
|
3541
|
-
dependencies:
|
3542
|
-
minipass "^2.9.0"
|
3646
|
+
minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
|
3647
|
+
version "1.2.5"
|
3648
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
3649
|
+
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
|
3543
3650
|
|
3544
3651
|
mississippi@^3.0.0:
|
3545
3652
|
version "3.0.0"
|
@@ -3565,9 +3672,16 @@ mixin-deep@^1.2.0:
|
|
3565
3672
|
for-in "^1.0.2"
|
3566
3673
|
is-extendable "^1.0.1"
|
3567
3674
|
|
3568
|
-
"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp
|
3675
|
+
"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3:
|
3676
|
+
version "0.5.5"
|
3677
|
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
|
3678
|
+
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
|
3679
|
+
dependencies:
|
3680
|
+
minimist "^1.2.5"
|
3681
|
+
|
3682
|
+
mkdirp@~0.5.1:
|
3569
3683
|
version "0.5.1"
|
3570
|
-
resolved "https://registry.
|
3684
|
+
resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
3571
3685
|
integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
|
3572
3686
|
dependencies:
|
3573
3687
|
minimist "0.0.8"
|
@@ -3595,9 +3709,9 @@ ms@^2.1.1:
|
|
3595
3709
|
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
3596
3710
|
|
3597
3711
|
nan@^2.12.1, nan@^2.13.2:
|
3598
|
-
version "2.14.
|
3599
|
-
resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.
|
3600
|
-
integrity sha512-
|
3712
|
+
version "2.14.1"
|
3713
|
+
resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01"
|
3714
|
+
integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==
|
3601
3715
|
|
3602
3716
|
nanomatch@^1.2.9:
|
3603
3717
|
version "1.2.13"
|
@@ -3616,15 +3730,6 @@ nanomatch@^1.2.9:
|
|
3616
3730
|
snapdragon "^0.8.1"
|
3617
3731
|
to-regex "^3.0.1"
|
3618
3732
|
|
3619
|
-
needle@^2.2.1:
|
3620
|
-
version "2.4.0"
|
3621
|
-
resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c"
|
3622
|
-
integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==
|
3623
|
-
dependencies:
|
3624
|
-
debug "^3.2.6"
|
3625
|
-
iconv-lite "^0.4.4"
|
3626
|
-
sax "^1.2.4"
|
3627
|
-
|
3628
3733
|
neo-async@^2.5.0, neo-async@^2.6.1:
|
3629
3734
|
version "2.6.1"
|
3630
3735
|
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
|
@@ -3682,22 +3787,6 @@ node-libs-browser@^2.2.1:
|
|
3682
3787
|
util "^0.11.0"
|
3683
3788
|
vm-browserify "^1.0.1"
|
3684
3789
|
|
3685
|
-
node-pre-gyp@^0.12.0:
|
3686
|
-
version "0.12.0"
|
3687
|
-
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149"
|
3688
|
-
integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A==
|
3689
|
-
dependencies:
|
3690
|
-
detect-libc "^1.0.2"
|
3691
|
-
mkdirp "^0.5.1"
|
3692
|
-
needle "^2.2.1"
|
3693
|
-
nopt "^4.0.1"
|
3694
|
-
npm-packlist "^1.1.6"
|
3695
|
-
npmlog "^4.0.2"
|
3696
|
-
rc "^1.2.7"
|
3697
|
-
rimraf "^2.6.1"
|
3698
|
-
semver "^5.3.0"
|
3699
|
-
tar "^4"
|
3700
|
-
|
3701
3790
|
node-releases@^1.1.29:
|
3702
3791
|
version "1.1.39"
|
3703
3792
|
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.39.tgz#c1011f30343aff5b633153b10ff691d278d08e8d"
|
@@ -3705,17 +3794,15 @@ node-releases@^1.1.29:
|
|
3705
3794
|
dependencies:
|
3706
3795
|
semver "^6.3.0"
|
3707
3796
|
|
3708
|
-
node-releases@^1.1.
|
3709
|
-
version "1.1.
|
3710
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.
|
3711
|
-
integrity sha512-
|
3712
|
-
dependencies:
|
3713
|
-
semver "^6.3.0"
|
3797
|
+
node-releases@^1.1.53:
|
3798
|
+
version "1.1.53"
|
3799
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4"
|
3800
|
+
integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ==
|
3714
3801
|
|
3715
3802
|
node-sass@^4.12.0:
|
3716
|
-
version "4.
|
3717
|
-
resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.
|
3718
|
-
integrity sha512-
|
3803
|
+
version "4.14.0"
|
3804
|
+
resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.14.0.tgz#a8e9d7720f8e15b4a1072719dcf04006f5648eeb"
|
3805
|
+
integrity sha512-AxqU+DFpk0lEz95sI6jO0hU0Rwyw7BXVEv6o9OItoXLyeygPeaSpiV4rwQb10JiTghHaa0gZeD21sz+OsQluaw==
|
3719
3806
|
dependencies:
|
3720
3807
|
async-foreach "^0.1.3"
|
3721
3808
|
chalk "^1.1.1"
|
@@ -3742,14 +3829,6 @@ node-sass@^4.12.0:
|
|
3742
3829
|
dependencies:
|
3743
3830
|
abbrev "1"
|
3744
3831
|
|
3745
|
-
nopt@^4.0.1:
|
3746
|
-
version "4.0.1"
|
3747
|
-
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
|
3748
|
-
integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=
|
3749
|
-
dependencies:
|
3750
|
-
abbrev "1"
|
3751
|
-
osenv "^0.1.4"
|
3752
|
-
|
3753
3832
|
normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
|
3754
3833
|
version "2.5.0"
|
3755
3834
|
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
|
@@ -3779,7 +3858,7 @@ normalize-range@^0.1.2:
|
|
3779
3858
|
|
3780
3859
|
normalize-url@1.9.1:
|
3781
3860
|
version "1.9.1"
|
3782
|
-
resolved "https://registry.
|
3861
|
+
resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
|
3783
3862
|
integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
|
3784
3863
|
dependencies:
|
3785
3864
|
object-assign "^4.0.1"
|
@@ -3792,19 +3871,6 @@ normalize-url@^3.0.0:
|
|
3792
3871
|
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
|
3793
3872
|
integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
|
3794
3873
|
|
3795
|
-
npm-bundled@^1.0.1:
|
3796
|
-
version "1.0.6"
|
3797
|
-
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd"
|
3798
|
-
integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==
|
3799
|
-
|
3800
|
-
npm-packlist@^1.1.6:
|
3801
|
-
version "1.4.6"
|
3802
|
-
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.6.tgz#53ba3ed11f8523079f1457376dd379ee4ea42ff4"
|
3803
|
-
integrity sha512-u65uQdb+qwtGvEJh/DgQgW1Xg7sqeNbmxYyrvlNznaVTjV3E5P6F/EFjM+BVHXl7JJlsdG8A64M0XI8FI/IOlg==
|
3804
|
-
dependencies:
|
3805
|
-
ignore-walk "^3.0.1"
|
3806
|
-
npm-bundled "^1.0.1"
|
3807
|
-
|
3808
3874
|
npm-run-path@^2.0.0:
|
3809
3875
|
version "2.0.2"
|
3810
3876
|
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
|
@@ -3812,7 +3878,7 @@ npm-run-path@^2.0.0:
|
|
3812
3878
|
dependencies:
|
3813
3879
|
path-key "^2.0.0"
|
3814
3880
|
|
3815
|
-
"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0
|
3881
|
+
"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0:
|
3816
3882
|
version "4.1.2"
|
3817
3883
|
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
3818
3884
|
integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
|
@@ -3956,7 +4022,7 @@ os-tmpdir@^1.0.0:
|
|
3956
4022
|
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
3957
4023
|
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
|
3958
4024
|
|
3959
|
-
osenv@0
|
4025
|
+
osenv@0:
|
3960
4026
|
version "0.1.5"
|
3961
4027
|
resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
|
3962
4028
|
integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
|
@@ -3979,13 +4045,34 @@ p-is-promise@^2.0.0:
|
|
3979
4045
|
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e"
|
3980
4046
|
integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==
|
3981
4047
|
|
3982
|
-
p-limit@^
|
3983
|
-
version "
|
3984
|
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-
|
3985
|
-
integrity sha512-
|
4048
|
+
p-limit@^1.1.0:
|
4049
|
+
version "1.3.0"
|
4050
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
|
4051
|
+
integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
|
4052
|
+
dependencies:
|
4053
|
+
p-try "^1.0.0"
|
4054
|
+
|
4055
|
+
p-limit@^2.0.0:
|
4056
|
+
version "2.3.0"
|
4057
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
|
4058
|
+
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
|
4059
|
+
dependencies:
|
4060
|
+
p-try "^2.0.0"
|
4061
|
+
|
4062
|
+
p-limit@^2.2.1:
|
4063
|
+
version "2.2.2"
|
4064
|
+
resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e"
|
4065
|
+
integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
|
3986
4066
|
dependencies:
|
3987
4067
|
p-try "^2.0.0"
|
3988
4068
|
|
4069
|
+
p-locate@^2.0.0:
|
4070
|
+
version "2.0.0"
|
4071
|
+
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
|
4072
|
+
integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
|
4073
|
+
dependencies:
|
4074
|
+
p-limit "^1.1.0"
|
4075
|
+
|
3989
4076
|
p-locate@^3.0.0:
|
3990
4077
|
version "3.0.0"
|
3991
4078
|
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
|
@@ -3993,15 +4080,20 @@ p-locate@^3.0.0:
|
|
3993
4080
|
dependencies:
|
3994
4081
|
p-limit "^2.0.0"
|
3995
4082
|
|
4083
|
+
p-try@^1.0.0:
|
4084
|
+
version "1.0.0"
|
4085
|
+
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
|
4086
|
+
integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
|
4087
|
+
|
3996
4088
|
p-try@^2.0.0:
|
3997
4089
|
version "2.2.0"
|
3998
4090
|
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
|
3999
4091
|
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
|
4000
4092
|
|
4001
4093
|
pako@~1.0.5:
|
4002
|
-
version "1.0.
|
4003
|
-
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.
|
4004
|
-
integrity sha512-
|
4094
|
+
version "1.0.11"
|
4095
|
+
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
|
4096
|
+
integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
|
4005
4097
|
|
4006
4098
|
parallel-transform@^1.1.0:
|
4007
4099
|
version "1.2.0"
|
@@ -4097,7 +4189,7 @@ path-type@^1.0.0:
|
|
4097
4189
|
|
4098
4190
|
path-type@^3.0.0:
|
4099
4191
|
version "3.0.0"
|
4100
|
-
resolved "https://registry.
|
4192
|
+
resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
|
4101
4193
|
integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
|
4102
4194
|
dependencies:
|
4103
4195
|
pify "^3.0.0"
|
@@ -4125,7 +4217,7 @@ pify@^2.0.0:
|
|
4125
4217
|
|
4126
4218
|
pify@^3.0.0:
|
4127
4219
|
version "3.0.0"
|
4128
|
-
resolved "https://registry.
|
4220
|
+
resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
|
4129
4221
|
integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
|
4130
4222
|
|
4131
4223
|
pify@^4.0.1:
|
@@ -4152,10 +4244,17 @@ pkg-dir@^3.0.0:
|
|
4152
4244
|
dependencies:
|
4153
4245
|
find-up "^3.0.0"
|
4154
4246
|
|
4247
|
+
pkg-up@^2.0.0:
|
4248
|
+
version "2.0.0"
|
4249
|
+
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
|
4250
|
+
integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
|
4251
|
+
dependencies:
|
4252
|
+
find-up "^2.1.0"
|
4253
|
+
|
4155
4254
|
popper.js@^1.15.0:
|
4156
|
-
version "1.16.
|
4157
|
-
resolved "https://registry.
|
4158
|
-
integrity sha512
|
4255
|
+
version "1.16.1"
|
4256
|
+
resolved "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b"
|
4257
|
+
integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==
|
4159
4258
|
|
4160
4259
|
posix-character-classes@^0.1.0:
|
4161
4260
|
version "0.1.1"
|
@@ -4316,10 +4415,10 @@ postcss-modules-local-by-default@^3.0.2:
|
|
4316
4415
|
postcss-selector-parser "^6.0.2"
|
4317
4416
|
postcss-value-parser "^4.0.0"
|
4318
4417
|
|
4319
|
-
postcss-modules-scope@^2.
|
4320
|
-
version "2.
|
4321
|
-
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.
|
4322
|
-
integrity sha512-
|
4418
|
+
postcss-modules-scope@^2.2.0:
|
4419
|
+
version "2.2.0"
|
4420
|
+
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee"
|
4421
|
+
integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==
|
4323
4422
|
dependencies:
|
4324
4423
|
postcss "^7.0.6"
|
4325
4424
|
postcss-selector-parser "^6.0.0"
|
@@ -4493,10 +4592,10 @@ postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.1:
|
|
4493
4592
|
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
|
4494
4593
|
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
|
4495
4594
|
|
4496
|
-
postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.
|
4497
|
-
version "4.0
|
4498
|
-
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.
|
4499
|
-
integrity sha512-
|
4595
|
+
postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.3:
|
4596
|
+
version "4.1.0"
|
4597
|
+
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
|
4598
|
+
integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
|
4500
4599
|
|
4501
4600
|
postcss@^7.0.0, postcss@^7.0.1:
|
4502
4601
|
version "7.0.18"
|
@@ -4507,10 +4606,10 @@ postcss@^7.0.0, postcss@^7.0.1:
|
|
4507
4606
|
source-map "^0.6.1"
|
4508
4607
|
supports-color "^6.1.0"
|
4509
4608
|
|
4510
|
-
postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.
|
4511
|
-
version "7.0.
|
4512
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.
|
4513
|
-
integrity sha512-
|
4609
|
+
postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6:
|
4610
|
+
version "7.0.27"
|
4611
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9"
|
4612
|
+
integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==
|
4514
4613
|
dependencies:
|
4515
4614
|
chalk "^2.4.2"
|
4516
4615
|
source-map "^0.6.1"
|
@@ -4518,10 +4617,10 @@ postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.23, postcss@^7.0.5, postcss@^7.0.
|
|
4518
4617
|
|
4519
4618
|
prepend-http@^1.0.0:
|
4520
4619
|
version "1.0.4"
|
4521
|
-
resolved "https://registry.
|
4620
|
+
resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
|
4522
4621
|
integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
|
4523
4622
|
|
4524
|
-
private@^0.1.
|
4623
|
+
private@^0.1.8:
|
4525
4624
|
version "0.1.8"
|
4526
4625
|
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
|
4527
4626
|
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
|
@@ -4551,10 +4650,10 @@ pseudomap@^1.0.2:
|
|
4551
4650
|
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
4552
4651
|
integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
|
4553
4652
|
|
4554
|
-
psl@^1.1.
|
4555
|
-
version "1.
|
4556
|
-
resolved "https://registry.yarnpkg.com/psl/-/psl-1.
|
4557
|
-
integrity sha512-
|
4653
|
+
psl@^1.1.28:
|
4654
|
+
version "1.8.0"
|
4655
|
+
resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
|
4656
|
+
integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
|
4558
4657
|
|
4559
4658
|
public-encrypt@^4.0.0:
|
4560
4659
|
version "4.0.3"
|
@@ -4598,12 +4697,12 @@ punycode@1.3.2:
|
|
4598
4697
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
|
4599
4698
|
integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
|
4600
4699
|
|
4601
|
-
punycode@^1.2.4
|
4700
|
+
punycode@^1.2.4:
|
4602
4701
|
version "1.4.1"
|
4603
4702
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
|
4604
4703
|
integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
|
4605
4704
|
|
4606
|
-
punycode@^2.1.0:
|
4705
|
+
punycode@^2.1.0, punycode@^2.1.1:
|
4607
4706
|
version "2.1.1"
|
4608
4707
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
4609
4708
|
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
@@ -4620,7 +4719,7 @@ qs@~6.5.2:
|
|
4620
4719
|
|
4621
4720
|
query-string@^4.1.0:
|
4622
4721
|
version "4.3.4"
|
4623
|
-
resolved "https://registry.
|
4722
|
+
resolved "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
|
4624
4723
|
integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
|
4625
4724
|
dependencies:
|
4626
4725
|
object-assign "^4.1.0"
|
@@ -4651,16 +4750,6 @@ randomfill@^1.0.3:
|
|
4651
4750
|
randombytes "^2.0.5"
|
4652
4751
|
safe-buffer "^5.1.0"
|
4653
4752
|
|
4654
|
-
rc@^1.2.7:
|
4655
|
-
version "1.2.8"
|
4656
|
-
resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
|
4657
|
-
integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
|
4658
|
-
dependencies:
|
4659
|
-
deep-extend "^0.6.0"
|
4660
|
-
ini "~1.3.0"
|
4661
|
-
minimist "^1.2.0"
|
4662
|
-
strip-json-comments "~2.0.1"
|
4663
|
-
|
4664
4753
|
read-pkg-up@^1.0.1:
|
4665
4754
|
version "1.0.1"
|
4666
4755
|
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
|
@@ -4679,9 +4768,9 @@ read-pkg@^1.0.0:
|
|
4679
4768
|
path-type "^1.0.0"
|
4680
4769
|
|
4681
4770
|
"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
|
4682
|
-
version "2.3.
|
4683
|
-
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.
|
4684
|
-
integrity sha512-
|
4771
|
+
version "2.3.7"
|
4772
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
|
4773
|
+
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
|
4685
4774
|
dependencies:
|
4686
4775
|
core-util-is "~1.0.0"
|
4687
4776
|
inherits "~2.0.3"
|
@@ -4708,10 +4797,10 @@ redent@^1.0.0:
|
|
4708
4797
|
indent-string "^2.1.0"
|
4709
4798
|
strip-indent "^1.0.1"
|
4710
4799
|
|
4711
|
-
regenerate-unicode-properties@^8.
|
4712
|
-
version "8.
|
4713
|
-
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.
|
4714
|
-
integrity sha512-
|
4800
|
+
regenerate-unicode-properties@^8.2.0:
|
4801
|
+
version "8.2.0"
|
4802
|
+
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
|
4803
|
+
integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
|
4715
4804
|
dependencies:
|
4716
4805
|
regenerate "^1.4.0"
|
4717
4806
|
|
@@ -4720,12 +4809,18 @@ regenerate@^1.4.0:
|
|
4720
4809
|
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
|
4721
4810
|
integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
|
4722
4811
|
|
4723
|
-
regenerator-
|
4724
|
-
version "0.
|
4725
|
-
resolved "https://registry.yarnpkg.com/regenerator-
|
4726
|
-
integrity sha512-
|
4812
|
+
regenerator-runtime@^0.13.4:
|
4813
|
+
version "0.13.5"
|
4814
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
|
4815
|
+
integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
|
4816
|
+
|
4817
|
+
regenerator-transform@^0.14.2:
|
4818
|
+
version "0.14.4"
|
4819
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7"
|
4820
|
+
integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==
|
4727
4821
|
dependencies:
|
4728
|
-
|
4822
|
+
"@babel/runtime" "^7.8.4"
|
4823
|
+
private "^0.1.8"
|
4729
4824
|
|
4730
4825
|
regex-not@^1.0.0, regex-not@^1.0.2:
|
4731
4826
|
version "1.0.2"
|
@@ -4735,27 +4830,27 @@ regex-not@^1.0.0, regex-not@^1.0.2:
|
|
4735
4830
|
extend-shallow "^3.0.2"
|
4736
4831
|
safe-regex "^1.1.0"
|
4737
4832
|
|
4738
|
-
regexpu-core@^4.
|
4739
|
-
version "4.
|
4740
|
-
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.
|
4741
|
-
integrity sha512-
|
4833
|
+
regexpu-core@^4.7.0:
|
4834
|
+
version "4.7.0"
|
4835
|
+
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938"
|
4836
|
+
integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==
|
4742
4837
|
dependencies:
|
4743
4838
|
regenerate "^1.4.0"
|
4744
|
-
regenerate-unicode-properties "^8.
|
4745
|
-
regjsgen "^0.5.
|
4746
|
-
regjsparser "^0.6.
|
4839
|
+
regenerate-unicode-properties "^8.2.0"
|
4840
|
+
regjsgen "^0.5.1"
|
4841
|
+
regjsparser "^0.6.4"
|
4747
4842
|
unicode-match-property-ecmascript "^1.0.4"
|
4748
|
-
unicode-match-property-value-ecmascript "^1.
|
4843
|
+
unicode-match-property-value-ecmascript "^1.2.0"
|
4749
4844
|
|
4750
|
-
regjsgen@^0.5.
|
4845
|
+
regjsgen@^0.5.1:
|
4751
4846
|
version "0.5.1"
|
4752
4847
|
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
|
4753
4848
|
integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
|
4754
4849
|
|
4755
|
-
regjsparser@^0.6.
|
4756
|
-
version "0.6.
|
4757
|
-
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.
|
4758
|
-
integrity sha512-
|
4850
|
+
regjsparser@^0.6.4:
|
4851
|
+
version "0.6.4"
|
4852
|
+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
|
4853
|
+
integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==
|
4759
4854
|
dependencies:
|
4760
4855
|
jsesc "~0.5.0"
|
4761
4856
|
|
@@ -4782,9 +4877,9 @@ repeating@^2.0.0:
|
|
4782
4877
|
is-finite "^1.0.0"
|
4783
4878
|
|
4784
4879
|
request@^2.87.0, request@^2.88.0:
|
4785
|
-
version "2.88.
|
4786
|
-
resolved "https://registry.yarnpkg.com/request/-/request-2.88.
|
4787
|
-
integrity sha512-
|
4880
|
+
version "2.88.2"
|
4881
|
+
resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
|
4882
|
+
integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
|
4788
4883
|
dependencies:
|
4789
4884
|
aws-sign2 "~0.7.0"
|
4790
4885
|
aws4 "^1.8.0"
|
@@ -4793,7 +4888,7 @@ request@^2.87.0, request@^2.88.0:
|
|
4793
4888
|
extend "~3.0.2"
|
4794
4889
|
forever-agent "~0.6.1"
|
4795
4890
|
form-data "~2.3.2"
|
4796
|
-
har-validator "~5.1.
|
4891
|
+
har-validator "~5.1.3"
|
4797
4892
|
http-signature "~1.2.0"
|
4798
4893
|
is-typedarray "~1.0.0"
|
4799
4894
|
isstream "~0.1.2"
|
@@ -4803,7 +4898,7 @@ request@^2.87.0, request@^2.88.0:
|
|
4803
4898
|
performance-now "^2.1.0"
|
4804
4899
|
qs "~6.5.2"
|
4805
4900
|
safe-buffer "^5.1.2"
|
4806
|
-
tough-cookie "~2.
|
4901
|
+
tough-cookie "~2.5.0"
|
4807
4902
|
tunnel-agent "^0.6.0"
|
4808
4903
|
uuid "^3.3.2"
|
4809
4904
|
|
@@ -4847,17 +4942,10 @@ resolve-url@^0.2.1:
|
|
4847
4942
|
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
4848
4943
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
4849
4944
|
|
4850
|
-
resolve@^1.10.0:
|
4851
|
-
version "1.
|
4852
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
4853
|
-
integrity sha512-
|
4854
|
-
dependencies:
|
4855
|
-
path-parse "^1.0.6"
|
4856
|
-
|
4857
|
-
resolve@^1.3.2:
|
4858
|
-
version "1.13.1"
|
4859
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.13.1.tgz#be0aa4c06acd53083505abb35f4d66932ab35d16"
|
4860
|
-
integrity sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==
|
4945
|
+
resolve@^1.10.0, resolve@^1.3.2:
|
4946
|
+
version "1.17.0"
|
4947
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
|
4948
|
+
integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
|
4861
4949
|
dependencies:
|
4862
4950
|
path-parse "^1.0.6"
|
4863
4951
|
|
@@ -4876,7 +4964,7 @@ rgba-regex@^1.0.0:
|
|
4876
4964
|
resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
|
4877
4965
|
integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
|
4878
4966
|
|
4879
|
-
rimraf@2, rimraf@^2.5.4, rimraf@^2.6.
|
4967
|
+
rimraf@2, rimraf@^2.5.4, rimraf@^2.6.3:
|
4880
4968
|
version "2.7.1"
|
4881
4969
|
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
|
4882
4970
|
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
|
@@ -4915,7 +5003,7 @@ safe-regex@^1.1.0:
|
|
4915
5003
|
dependencies:
|
4916
5004
|
ret "~0.1.10"
|
4917
5005
|
|
4918
|
-
|
5006
|
+
safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
|
4919
5007
|
version "2.1.2"
|
4920
5008
|
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
4921
5009
|
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
@@ -4931,17 +5019,17 @@ sass-graph@^2.2.4:
|
|
4931
5019
|
yargs "^7.0.0"
|
4932
5020
|
|
4933
5021
|
sass-loader@^8.0.0:
|
4934
|
-
version "8.0.
|
4935
|
-
resolved "https://registry.
|
4936
|
-
integrity sha512
|
5022
|
+
version "8.0.2"
|
5023
|
+
resolved "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz#debecd8c3ce243c76454f2e8290482150380090d"
|
5024
|
+
integrity sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==
|
4937
5025
|
dependencies:
|
4938
5026
|
clone-deep "^4.0.1"
|
4939
5027
|
loader-utils "^1.2.3"
|
4940
5028
|
neo-async "^2.6.1"
|
4941
|
-
schema-utils "^2.1
|
5029
|
+
schema-utils "^2.6.1"
|
4942
5030
|
semver "^6.3.0"
|
4943
5031
|
|
4944
|
-
sax
|
5032
|
+
sax@~1.2.4:
|
4945
5033
|
version "1.2.4"
|
4946
5034
|
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
4947
5035
|
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
@@ -4955,14 +5043,6 @@ schema-utils@^1.0.0:
|
|
4955
5043
|
ajv-errors "^1.0.0"
|
4956
5044
|
ajv-keywords "^3.1.0"
|
4957
5045
|
|
4958
|
-
schema-utils@^2.1.0:
|
4959
|
-
version "2.2.0"
|
4960
|
-
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.2.0.tgz#48a065ce219e0cacf4631473159037b2c1ae82da"
|
4961
|
-
integrity sha512-5EwsCNhfFTZvUreQhx/4vVQpJ/lnCAkgoIHLhSpp4ZirE+4hzFvdJi0FMub6hxbFVBJYSpeVVmon+2e7uEGRrA==
|
4962
|
-
dependencies:
|
4963
|
-
ajv "^6.10.2"
|
4964
|
-
ajv-keywords "^3.4.1"
|
4965
|
-
|
4966
5046
|
schema-utils@^2.5.0:
|
4967
5047
|
version "2.6.0"
|
4968
5048
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.0.tgz#68a259aabbef9d08d1252c2e63c398e476308e80"
|
@@ -4971,14 +5051,30 @@ schema-utils@^2.5.0:
|
|
4971
5051
|
ajv "^6.10.2"
|
4972
5052
|
ajv-keywords "^3.4.1"
|
4973
5053
|
|
4974
|
-
schema-utils@^2.6.
|
4975
|
-
version "2.6.
|
4976
|
-
resolved "https://registry.
|
4977
|
-
integrity sha512-
|
5054
|
+
schema-utils@^2.6.1:
|
5055
|
+
version "2.6.4"
|
5056
|
+
resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.4.tgz#a27efbf6e4e78689d91872ee3ccfa57d7bdd0f53"
|
5057
|
+
integrity sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ==
|
4978
5058
|
dependencies:
|
4979
5059
|
ajv "^6.10.2"
|
4980
5060
|
ajv-keywords "^3.4.1"
|
4981
5061
|
|
5062
|
+
schema-utils@^2.6.5:
|
5063
|
+
version "2.6.5"
|
5064
|
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.5.tgz#c758f0a7e624263073d396e29cd40aa101152d8a"
|
5065
|
+
integrity sha512-5KXuwKziQrTVHh8j/Uxz+QUbxkaLW9X/86NBlx/gnKgtsZA2GIVMUn17qWhRFwF8jdYb3Dig5hRO/W5mZqy6SQ==
|
5066
|
+
dependencies:
|
5067
|
+
ajv "^6.12.0"
|
5068
|
+
ajv-keywords "^3.4.1"
|
5069
|
+
|
5070
|
+
schema-utils@^2.6.6:
|
5071
|
+
version "2.6.6"
|
5072
|
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.6.tgz#299fe6bd4a3365dc23d99fd446caff8f1d6c330c"
|
5073
|
+
integrity sha512-wHutF/WPSbIi9x6ctjGGk2Hvl0VOz5l3EKEuKbjPlB30mKZUzb9A5k9yEXRX3pwyqVLPvpfZZEllaFq/M718hA==
|
5074
|
+
dependencies:
|
5075
|
+
ajv "^6.12.0"
|
5076
|
+
ajv-keywords "^3.4.1"
|
5077
|
+
|
4982
5078
|
scss-tokenizer@^0.2.3:
|
4983
5079
|
version "0.2.3"
|
4984
5080
|
resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1"
|
@@ -4988,20 +5084,25 @@ scss-tokenizer@^0.2.3:
|
|
4988
5084
|
source-map "^0.4.2"
|
4989
5085
|
|
4990
5086
|
select2-theme-bootstrap4@^0.2.0-beta.4:
|
4991
|
-
version "0.2.0-beta.
|
4992
|
-
resolved "https://registry.yarnpkg.com/select2-theme-bootstrap4/-/select2-theme-bootstrap4-0.2.0-beta.
|
4993
|
-
integrity sha512-
|
5087
|
+
version "0.2.0-beta.6"
|
5088
|
+
resolved "https://registry.yarnpkg.com/select2-theme-bootstrap4/-/select2-theme-bootstrap4-0.2.0-beta.6.tgz#a2c45b49e7e11ad882ab3eb7eb7f880d06cfc0e6"
|
5089
|
+
integrity sha512-e2qWK+hA5o/Dpy+xrdDBGkqQnPb3QJC4n4xL94nn/qjbQOyVWFF25LCFqNDriuwHPir7GlXz8JOcP/6z+Kd6+Q==
|
4994
5090
|
|
4995
5091
|
select2@^4.0.10:
|
4996
|
-
version "4.0.
|
4997
|
-
resolved "https://registry.
|
4998
|
-
integrity sha512-
|
5092
|
+
version "4.0.13"
|
5093
|
+
resolved "https://registry.npmjs.org/select2/-/select2-4.0.13.tgz#0dbe377df3f96167c4c1626033e924372d8ef44d"
|
5094
|
+
integrity sha512-1JeB87s6oN/TDxQQYCvS5EFoQyvV6eYMZZ0AeA4tdFDYWN3BAGZ8npr17UBFddU0lgAt3H0yjX3X6/ekOj1yjw==
|
4999
5095
|
|
5000
|
-
"semver@2 || 3 || 4 || 5", semver@^5.
|
5096
|
+
"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:
|
5001
5097
|
version "5.7.1"
|
5002
5098
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
5003
5099
|
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
5004
5100
|
|
5101
|
+
semver@7.0.0:
|
5102
|
+
version "7.0.0"
|
5103
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
5104
|
+
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
|
5105
|
+
|
5005
5106
|
semver@^6.3.0:
|
5006
5107
|
version "6.3.0"
|
5007
5108
|
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
|
@@ -5014,7 +5115,7 @@ semver@~5.3.0:
|
|
5014
5115
|
|
5015
5116
|
serialize-javascript@^1.7.0:
|
5016
5117
|
version "1.9.1"
|
5017
|
-
resolved "https://registry.
|
5118
|
+
resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz#cfc200aef77b600c47da9bb8149c943e798c2fdb"
|
5018
5119
|
integrity sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==
|
5019
5120
|
|
5020
5121
|
serialize-javascript@^2.1.2:
|
@@ -5052,7 +5153,7 @@ sha.js@^2.4.0, sha.js@^2.4.8:
|
|
5052
5153
|
|
5053
5154
|
shallow-clone@^3.0.0:
|
5054
5155
|
version "3.0.1"
|
5055
|
-
resolved "https://registry.
|
5156
|
+
resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
|
5056
5157
|
integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
|
5057
5158
|
dependencies:
|
5058
5159
|
kind-of "^6.0.2"
|
@@ -5070,9 +5171,9 @@ shebang-regex@^1.0.0:
|
|
5070
5171
|
integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
|
5071
5172
|
|
5072
5173
|
signal-exit@^3.0.0:
|
5073
|
-
version "3.0.
|
5074
|
-
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.
|
5075
|
-
integrity
|
5174
|
+
version "3.0.3"
|
5175
|
+
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
|
5176
|
+
integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
|
5076
5177
|
|
5077
5178
|
simple-swizzle@^0.2.2:
|
5078
5179
|
version "0.2.2"
|
@@ -5083,7 +5184,7 @@ simple-swizzle@^0.2.2:
|
|
5083
5184
|
|
5084
5185
|
slash@^1.0.0:
|
5085
5186
|
version "1.0.0"
|
5086
|
-
resolved "https://registry.
|
5187
|
+
resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
|
5087
5188
|
integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=
|
5088
5189
|
|
5089
5190
|
snapdragon-node@^2.0.1:
|
@@ -5118,7 +5219,7 @@ snapdragon@^0.8.1:
|
|
5118
5219
|
|
5119
5220
|
sort-keys@^1.0.0:
|
5120
5221
|
version "1.1.2"
|
5121
|
-
resolved "https://registry.
|
5222
|
+
resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
|
5122
5223
|
integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
|
5123
5224
|
dependencies:
|
5124
5225
|
is-plain-obj "^1.0.0"
|
@@ -5129,20 +5230,20 @@ source-list-map@^2.0.0:
|
|
5129
5230
|
integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
|
5130
5231
|
|
5131
5232
|
source-map-resolve@^0.5.0:
|
5132
|
-
version "0.5.
|
5133
|
-
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.
|
5134
|
-
integrity sha512-
|
5233
|
+
version "0.5.3"
|
5234
|
+
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
|
5235
|
+
integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
|
5135
5236
|
dependencies:
|
5136
|
-
atob "^2.1.
|
5237
|
+
atob "^2.1.2"
|
5137
5238
|
decode-uri-component "^0.2.0"
|
5138
5239
|
resolve-url "^0.2.1"
|
5139
5240
|
source-map-url "^0.4.0"
|
5140
5241
|
urix "^0.1.0"
|
5141
5242
|
|
5142
5243
|
source-map-support@~0.5.12:
|
5143
|
-
version "0.5.
|
5144
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.
|
5145
|
-
integrity sha512-
|
5244
|
+
version "0.5.19"
|
5245
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
|
5246
|
+
integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
|
5146
5247
|
dependencies:
|
5147
5248
|
buffer-from "^1.0.0"
|
5148
5249
|
source-map "^0.6.0"
|
@@ -5178,9 +5279,9 @@ spdx-correct@^3.0.0:
|
|
5178
5279
|
spdx-license-ids "^3.0.0"
|
5179
5280
|
|
5180
5281
|
spdx-exceptions@^2.1.0:
|
5181
|
-
version "2.
|
5182
|
-
resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.
|
5183
|
-
integrity sha512
|
5282
|
+
version "2.3.0"
|
5283
|
+
resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
|
5284
|
+
integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
|
5184
5285
|
|
5185
5286
|
spdx-expression-parse@^3.0.0:
|
5186
5287
|
version "3.0.0"
|
@@ -5277,13 +5378,13 @@ stream-http@^2.7.2:
|
|
5277
5378
|
xtend "^4.0.0"
|
5278
5379
|
|
5279
5380
|
stream-shift@^1.0.0:
|
5280
|
-
version "1.0.
|
5281
|
-
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.
|
5282
|
-
integrity
|
5381
|
+
version "1.0.1"
|
5382
|
+
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
|
5383
|
+
integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
|
5283
5384
|
|
5284
5385
|
strict-uri-encode@^1.0.0:
|
5285
5386
|
version "1.1.0"
|
5286
|
-
resolved "https://registry.
|
5387
|
+
resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
|
5287
5388
|
integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
|
5288
5389
|
|
5289
5390
|
string-width@^1.0.1, string-width@^1.0.2:
|
@@ -5382,11 +5483,6 @@ strip-indent@^1.0.1:
|
|
5382
5483
|
dependencies:
|
5383
5484
|
get-stdin "^4.0.1"
|
5384
5485
|
|
5385
|
-
strip-json-comments@~2.0.1:
|
5386
|
-
version "2.0.1"
|
5387
|
-
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
5388
|
-
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
|
5389
|
-
|
5390
5486
|
stylehacks@^4.0.0:
|
5391
5487
|
version "4.0.3"
|
5392
5488
|
resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
|
@@ -5448,38 +5544,25 @@ tar@^2.0.0:
|
|
5448
5544
|
fstream "^1.0.12"
|
5449
5545
|
inherits "2"
|
5450
5546
|
|
5451
|
-
|
5452
|
-
version "
|
5453
|
-
resolved "https://registry.yarnpkg.com/
|
5454
|
-
integrity sha512-
|
5455
|
-
dependencies:
|
5456
|
-
chownr "^1.1.1"
|
5457
|
-
fs-minipass "^1.2.5"
|
5458
|
-
minipass "^2.8.6"
|
5459
|
-
minizlib "^1.2.1"
|
5460
|
-
mkdirp "^0.5.0"
|
5461
|
-
safe-buffer "^5.1.2"
|
5462
|
-
yallist "^3.0.3"
|
5463
|
-
|
5464
|
-
terser-webpack-plugin@^1.4.1:
|
5465
|
-
version "1.4.1"
|
5466
|
-
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4"
|
5467
|
-
integrity sha512-ZXmmfiwtCLfz8WKZyYUuuHf3dMYEjg8NrjHMb0JqHVHVOSkzp3cW2/XG1fP3tRhqEqSzMwzzRQGtAPbs4Cncxg==
|
5547
|
+
terser-webpack-plugin@^1.4.3:
|
5548
|
+
version "1.4.3"
|
5549
|
+
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c"
|
5550
|
+
integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==
|
5468
5551
|
dependencies:
|
5469
5552
|
cacache "^12.0.2"
|
5470
5553
|
find-cache-dir "^2.1.0"
|
5471
5554
|
is-wsl "^1.1.0"
|
5472
5555
|
schema-utils "^1.0.0"
|
5473
|
-
serialize-javascript "^1.
|
5556
|
+
serialize-javascript "^2.1.2"
|
5474
5557
|
source-map "^0.6.1"
|
5475
5558
|
terser "^4.1.2"
|
5476
5559
|
webpack-sources "^1.4.0"
|
5477
5560
|
worker-farm "^1.7.0"
|
5478
5561
|
|
5479
5562
|
terser@^4.1.2:
|
5480
|
-
version "4.
|
5481
|
-
resolved "https://registry.yarnpkg.com/terser/-/terser-4.
|
5482
|
-
integrity sha512-
|
5563
|
+
version "4.6.12"
|
5564
|
+
resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.12.tgz#44b98aef8703fdb09a3491bf79b43faffc5b4fee"
|
5565
|
+
integrity sha512-fnIwuaKjFPANG6MAixC/k1TDtnl1YlPLUlLVIxxGZUn1gfUx2+l3/zGNB72wya+lgsb50QBi2tUV75RiODwnww==
|
5483
5566
|
dependencies:
|
5484
5567
|
commander "^2.20.0"
|
5485
5568
|
source-map "~0.6.1"
|
@@ -5540,13 +5623,13 @@ to-regex@^3.0.1, to-regex@^3.0.2:
|
|
5540
5623
|
regex-not "^1.0.2"
|
5541
5624
|
safe-regex "^1.1.0"
|
5542
5625
|
|
5543
|
-
tough-cookie@~2.
|
5544
|
-
version "2.
|
5545
|
-
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.
|
5546
|
-
integrity sha512-
|
5626
|
+
tough-cookie@~2.5.0:
|
5627
|
+
version "2.5.0"
|
5628
|
+
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
|
5629
|
+
integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
|
5547
5630
|
dependencies:
|
5548
|
-
psl "^1.1.
|
5549
|
-
punycode "^1.
|
5631
|
+
psl "^1.1.28"
|
5632
|
+
punycode "^2.1.1"
|
5550
5633
|
|
5551
5634
|
trim-newlines@^1.0.0:
|
5552
5635
|
version "1.0.0"
|
@@ -5561,9 +5644,9 @@ trim-newlines@^1.0.0:
|
|
5561
5644
|
glob "^7.1.2"
|
5562
5645
|
|
5563
5646
|
tslib@^1.9.0:
|
5564
|
-
version "1.
|
5565
|
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.
|
5566
|
-
integrity sha512-
|
5647
|
+
version "1.11.1"
|
5648
|
+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35"
|
5649
|
+
integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==
|
5567
5650
|
|
5568
5651
|
tty-browserify@0.0.0:
|
5569
5652
|
version "0.0.0"
|
@@ -5588,12 +5671,11 @@ typedarray@^0.0.6:
|
|
5588
5671
|
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
5589
5672
|
|
5590
5673
|
uglify-js@^3.6.0:
|
5591
|
-
version "3.
|
5592
|
-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.
|
5593
|
-
integrity sha512-
|
5674
|
+
version "3.9.1"
|
5675
|
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.9.1.tgz#a56a71c8caa2d36b5556cc1fd57df01ae3491539"
|
5676
|
+
integrity sha512-JUPoL1jHsc9fOjVFHdQIhqEEJsQvfKDjlubcCilu8U26uZ73qOg8VsN8O1jbuei44ZPlwL7kmbAdM4tzaUvqnA==
|
5594
5677
|
dependencies:
|
5595
5678
|
commander "~2.20.3"
|
5596
|
-
source-map "~0.6.1"
|
5597
5679
|
|
5598
5680
|
uglifyjs-webpack-plugin@^2.2.0:
|
5599
5681
|
version "2.2.0"
|
@@ -5623,15 +5705,15 @@ unicode-match-property-ecmascript@^1.0.4:
|
|
5623
5705
|
unicode-canonical-property-names-ecmascript "^1.0.4"
|
5624
5706
|
unicode-property-aliases-ecmascript "^1.0.4"
|
5625
5707
|
|
5626
|
-
unicode-match-property-value-ecmascript@^1.
|
5627
|
-
version "1.
|
5628
|
-
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.
|
5629
|
-
integrity sha512-
|
5708
|
+
unicode-match-property-value-ecmascript@^1.2.0:
|
5709
|
+
version "1.2.0"
|
5710
|
+
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
|
5711
|
+
integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
|
5630
5712
|
|
5631
5713
|
unicode-property-aliases-ecmascript@^1.0.4:
|
5632
|
-
version "1.0
|
5633
|
-
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.
|
5634
|
-
integrity sha512-
|
5714
|
+
version "1.1.0"
|
5715
|
+
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
|
5716
|
+
integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
|
5635
5717
|
|
5636
5718
|
union-value@^1.0.0:
|
5637
5719
|
version "1.0.1"
|
@@ -5747,9 +5829,9 @@ util@^0.11.0:
|
|
5747
5829
|
inherits "2.0.3"
|
5748
5830
|
|
5749
5831
|
uuid@^3.3.2:
|
5750
|
-
version "3.
|
5751
|
-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.
|
5752
|
-
integrity sha512-
|
5832
|
+
version "3.4.0"
|
5833
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
|
5834
|
+
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
|
5753
5835
|
|
5754
5836
|
v8-compile-cache@2.0.3:
|
5755
5837
|
version "2.0.3"
|
@@ -5779,23 +5861,23 @@ verror@1.10.0:
|
|
5779
5861
|
extsprintf "^1.2.0"
|
5780
5862
|
|
5781
5863
|
vm-browserify@^1.0.1:
|
5782
|
-
version "1.1.
|
5783
|
-
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.
|
5784
|
-
integrity sha512-
|
5864
|
+
version "1.1.2"
|
5865
|
+
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
|
5866
|
+
integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
|
5785
5867
|
|
5786
|
-
watchpack@^1.6.
|
5787
|
-
version "1.6.
|
5788
|
-
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.
|
5789
|
-
integrity sha512
|
5868
|
+
watchpack@^1.6.1:
|
5869
|
+
version "1.6.1"
|
5870
|
+
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.1.tgz#280da0a8718592174010c078c7585a74cd8cd0e2"
|
5871
|
+
integrity sha512-+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA==
|
5790
5872
|
dependencies:
|
5791
|
-
chokidar "^2.
|
5873
|
+
chokidar "^2.1.8"
|
5792
5874
|
graceful-fs "^4.1.2"
|
5793
5875
|
neo-async "^2.5.0"
|
5794
5876
|
|
5795
5877
|
webpack-cli@^3.3.9:
|
5796
|
-
version "3.3.
|
5797
|
-
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.
|
5798
|
-
integrity sha512-
|
5878
|
+
version "3.3.11"
|
5879
|
+
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.11.tgz#3bf21889bf597b5d82c38f215135a411edfdc631"
|
5880
|
+
integrity sha512-dXlfuml7xvAFwYUPsrtQAA9e4DOe58gnzSxhgrO/ZM/gyXTBowrsYeubyN4mqGhYdpXMFNyQ6emjJS9M7OBd4g==
|
5799
5881
|
dependencies:
|
5800
5882
|
chalk "2.4.2"
|
5801
5883
|
cross-spawn "6.0.5"
|
@@ -5811,7 +5893,7 @@ webpack-cli@^3.3.9:
|
|
5811
5893
|
|
5812
5894
|
webpack-log@^2.0.0:
|
5813
5895
|
version "2.0.0"
|
5814
|
-
resolved "https://registry.
|
5896
|
+
resolved "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
|
5815
5897
|
integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
|
5816
5898
|
dependencies:
|
5817
5899
|
ansi-colors "^3.0.0"
|
@@ -5819,22 +5901,22 @@ webpack-log@^2.0.0:
|
|
5819
5901
|
|
5820
5902
|
webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1:
|
5821
5903
|
version "1.4.3"
|
5822
|
-
resolved "https://registry.
|
5904
|
+
resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
|
5823
5905
|
integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
|
5824
5906
|
dependencies:
|
5825
5907
|
source-list-map "^2.0.0"
|
5826
5908
|
source-map "~0.6.1"
|
5827
5909
|
|
5828
5910
|
webpack@^4.40.2:
|
5829
|
-
version "4.
|
5830
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.
|
5831
|
-
integrity sha512-
|
5832
|
-
dependencies:
|
5833
|
-
"@webassemblyjs/ast" "1.
|
5834
|
-
"@webassemblyjs/helper-module-context" "1.
|
5835
|
-
"@webassemblyjs/wasm-edit" "1.
|
5836
|
-
"@webassemblyjs/wasm-parser" "1.
|
5837
|
-
acorn "^6.
|
5911
|
+
version "4.43.0"
|
5912
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6"
|
5913
|
+
integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g==
|
5914
|
+
dependencies:
|
5915
|
+
"@webassemblyjs/ast" "1.9.0"
|
5916
|
+
"@webassemblyjs/helper-module-context" "1.9.0"
|
5917
|
+
"@webassemblyjs/wasm-edit" "1.9.0"
|
5918
|
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
5919
|
+
acorn "^6.4.1"
|
5838
5920
|
ajv "^6.10.2"
|
5839
5921
|
ajv-keywords "^3.4.1"
|
5840
5922
|
chrome-trace-event "^1.0.2"
|
@@ -5845,13 +5927,13 @@ webpack@^4.40.2:
|
|
5845
5927
|
loader-utils "^1.2.3"
|
5846
5928
|
memory-fs "^0.4.1"
|
5847
5929
|
micromatch "^3.1.10"
|
5848
|
-
mkdirp "^0.5.
|
5930
|
+
mkdirp "^0.5.3"
|
5849
5931
|
neo-async "^2.6.1"
|
5850
5932
|
node-libs-browser "^2.2.1"
|
5851
5933
|
schema-utils "^1.0.0"
|
5852
5934
|
tapable "^1.1.3"
|
5853
|
-
terser-webpack-plugin "^1.4.
|
5854
|
-
watchpack "^1.6.
|
5935
|
+
terser-webpack-plugin "^1.4.3"
|
5936
|
+
watchpack "^1.6.1"
|
5855
5937
|
webpack-sources "^1.4.1"
|
5856
5938
|
|
5857
5939
|
which-module@^1.0.0:
|
@@ -5927,15 +6009,15 @@ yallist@^2.1.2:
|
|
5927
6009
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
|
5928
6010
|
integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
|
5929
6011
|
|
5930
|
-
yallist@^3.0.
|
6012
|
+
yallist@^3.0.2:
|
5931
6013
|
version "3.1.1"
|
5932
6014
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
|
5933
6015
|
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
|
5934
6016
|
|
5935
6017
|
yargs-parser@^13.1.0:
|
5936
|
-
version "13.1.
|
5937
|
-
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.
|
5938
|
-
integrity sha512-
|
6018
|
+
version "13.1.2"
|
6019
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
|
6020
|
+
integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
|
5939
6021
|
dependencies:
|
5940
6022
|
camelcase "^5.0.0"
|
5941
6023
|
decamelize "^1.2.0"
|