decidim 0.0.1.alpha7 → 0.0.1.alpha8

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim might be problematic. Click here for more details.

Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +2 -1
  3. data/.eslintignore +1 -0
  4. data/.eslintrc.json +12 -0
  5. data/.github/ISSUE_TEMPLATE.md +12 -0
  6. data/.github/PULL_REQUEST_TEMPLATE.md +8 -11
  7. data/.gitignore +1 -0
  8. data/.hound.yml +4 -0
  9. data/.rubocop.yml +14 -1
  10. data/.travis.yml +20 -4
  11. data/CODE_OF_CONDUCT.md +1 -1
  12. data/Dockerfile +1 -0
  13. data/Gemfile +3 -2
  14. data/Gemfile.common +1 -1
  15. data/Gemfile.lock +68 -39
  16. data/LICENSE.txt +619 -21
  17. data/README.md +17 -13
  18. data/Rakefile +1 -1
  19. data/codecov.yml +6 -1
  20. data/crowdin.yaml +4 -0
  21. data/decidim-admin/LICENSE.txt +619 -0
  22. data/decidim-admin/README.md +1 -1
  23. data/decidim-admin/app/assets/javascripts/decidim/admin/application.js.es6 +12 -0
  24. data/decidim-admin/app/assets/javascripts/decidim/admin/sort_steps.js.es6 +21 -0
  25. data/decidim-admin/app/assets/stylesheets/decidim/admin/_tables.scss +9 -0
  26. data/decidim-admin/app/commands/decidim/admin/activate_participatory_process_step.rb +43 -0
  27. data/decidim-admin/app/commands/decidim/admin/create_participatory_process.rb +1 -0
  28. data/decidim-admin/app/commands/decidim/admin/create_participatory_process_step.rb +46 -0
  29. data/decidim-admin/app/commands/decidim/admin/deactivate_participatory_process_step.rb +35 -0
  30. data/decidim-admin/app/commands/decidim/admin/publish_participatory_process.rb +35 -0
  31. data/decidim-admin/app/commands/decidim/admin/reorder_participatory_process_steps.rb +47 -0
  32. data/decidim-admin/app/commands/decidim/admin/unpublish_participatory_process.rb +35 -0
  33. data/decidim-admin/app/commands/decidim/admin/update_participatory_process.rb +1 -0
  34. data/decidim-admin/app/commands/decidim/admin/update_participatory_process_step.rb +49 -0
  35. data/decidim-admin/app/constraints/decidim/admin/organization_dashboard_constraint.rb +1 -1
  36. data/decidim-admin/app/controllers/decidim/admin/application_controller.rb +4 -0
  37. data/decidim-admin/app/controllers/decidim/admin/dashboard_controller.rb +1 -9
  38. data/decidim-admin/app/controllers/decidim/admin/participatory_process_publications_controller.rb +49 -0
  39. data/decidim-admin/app/controllers/decidim/admin/participatory_process_step_activations_controller.rb +56 -0
  40. data/decidim-admin/app/controllers/decidim/admin/participatory_process_step_ordering_controller.rb +30 -0
  41. data/decidim-admin/app/controllers/decidim/admin/participatory_process_steps_controller.rb +81 -0
  42. data/decidim-admin/app/controllers/decidim/admin/participatory_processes_controller.rb +7 -12
  43. data/decidim-admin/app/forms/decidim/admin/participatory_process_form.rb +1 -0
  44. data/decidim-admin/app/forms/decidim/admin/participatory_process_step_form.rb +25 -0
  45. data/decidim-admin/app/helpers/decidim/admin/application_helper.rb +1 -0
  46. data/decidim-admin/app/mailers/decidim/admin/application_mailer.rb +1 -1
  47. data/decidim-admin/app/models/decidim/admin/abilities/admin.rb +21 -0
  48. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/_form.html.erb +19 -0
  49. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/_table.html.erb +53 -0
  50. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/edit.html.erb +11 -0
  51. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/new.html.erb +11 -0
  52. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/show.html.erb +22 -0
  53. data/decidim-admin/app/views/decidim/admin/participatory_processes/_form.html.erb +4 -0
  54. data/decidim-admin/app/views/decidim/admin/participatory_processes/index.html.erb +22 -2
  55. data/decidim-admin/app/views/decidim/admin/participatory_processes/show.html.erb +21 -2
  56. data/decidim-admin/config/i18n-tasks.yml +2 -2
  57. data/decidim-admin/config/locales/ca.yml +55 -2
  58. data/decidim-admin/config/locales/en.yml +55 -2
  59. data/decidim-admin/config/locales/es.yml +56 -3
  60. data/decidim-admin/config/routes.rb +10 -1
  61. data/decidim-admin/decidim-admin.gemspec +6 -7
  62. data/decidim-admin/lib/decidim/admin/engine.rb +6 -1
  63. data/decidim-admin/spec/commands/activate_participatory_process_step_spec.rb +44 -0
  64. data/decidim-admin/spec/commands/deactivate_participatory_process_step_spec.rb +35 -0
  65. data/decidim-admin/spec/commands/publish_participatory_process_spec.rb +35 -0
  66. data/decidim-admin/spec/commands/reorder_participatory_process_steps_spec.rb +53 -0
  67. data/decidim-admin/spec/commands/unpublish_participatory_process_spec.rb +35 -0
  68. data/decidim-admin/spec/controllers/participatory_processes_controller_spec.rb +32 -0
  69. data/decidim-admin/spec/features/manage_participatory_process_steps_spec.rb +151 -0
  70. data/decidim-admin/spec/features/manage_participatory_processes_spec.rb +87 -39
  71. data/decidim-admin/spec/forms/participatory_process_form_spec.rb +122 -0
  72. data/decidim-admin/spec/forms/participatory_process_step_form_spec.rb +113 -0
  73. data/decidim-admin/spec/models/abilities/admin_spec.rb +25 -0
  74. data/decidim-admin/spec/spec_helper.rb +0 -1
  75. data/decidim-admin/vendor/assets/javascripts/html.sortable.min.js +2 -0
  76. data/decidim-api/.gitignore +7 -0
  77. data/decidim-api/LICENSE.txt +619 -0
  78. data/decidim-api/README.md +28 -0
  79. data/decidim-api/Rakefile +27 -0
  80. data/decidim-api/app/controllers/decidim/api/application_controller.rb +9 -0
  81. data/decidim-api/app/controllers/decidim/api/queries_controller.rb +33 -0
  82. data/decidim-api/app/schemas/decidim/api/schema.rb +9 -0
  83. data/decidim-api/app/types/decidim/api/localized_string_type.rb +13 -0
  84. data/decidim-api/app/types/decidim/api/process_step_type.rb +26 -0
  85. data/decidim-api/app/types/decidim/api/process_type.rb +18 -0
  86. data/decidim-api/app/types/decidim/api/query_type.rb +19 -0
  87. data/decidim-api/app/types/decidim/api/translated_field_type.rb +44 -0
  88. data/decidim-api/bin/rails +14 -0
  89. data/decidim-api/config/routes.rb +6 -0
  90. data/decidim-api/decidim-api.gemspec +27 -0
  91. data/decidim-api/lib/decidim/api.rb +9 -0
  92. data/decidim-api/lib/decidim/api/engine.rb +22 -0
  93. data/decidim-api/lib/tasks/decidim/api_tasks.rake +5 -0
  94. data/decidim-api/spec/controllers/queries_controller_spec.rb +22 -0
  95. data/decidim-api/spec/factories.rb +1 -0
  96. data/decidim-api/spec/schemas/schema_spec.rb +38 -0
  97. data/decidim-api/spec/spec_helper.rb +2 -0
  98. data/decidim-api/spec/support/type_helpers.rb +46 -0
  99. data/decidim-api/spec/types/localized_string_type_spec.rb +30 -0
  100. data/decidim-api/spec/types/process_step_type_spec.rb +50 -0
  101. data/decidim-api/spec/types/process_type_spec.rb +39 -0
  102. data/decidim-api/spec/types/query_type_spec.rb +24 -0
  103. data/decidim-api/spec/types/translated_field_type_spec.rb +68 -0
  104. data/decidim-dev/README.md +1 -1
  105. data/decidim-dev/decidim-dev.gemspec +5 -3
  106. data/decidim-dev/lib/decidim/dummy_authorization_handler.rb +18 -0
  107. data/decidim-dev/lib/decidim/test/authorization_shared_examples.rb +31 -0
  108. data/decidim-dev/lib/decidim/test/base_spec_helper.rb +6 -1
  109. data/decidim-dev/lib/decidim/test/rspec_support/authenticated_controller_context.rb +9 -0
  110. data/decidim-dev/lib/decidim/test/rspec_support/authorization_handlers.rb +7 -0
  111. data/decidim-dev/lib/decidim/test/rspec_support/bullet.rb +15 -0
  112. data/decidim-dev/lib/decidim/test/rspec_support/engine_routes.rb +30 -0
  113. data/decidim-dev/lib/decidim/test/rspec_support/translation_helpers.rb +12 -0
  114. data/decidim-dev/lib/generators/decidim/dummy_generator.rb +10 -0
  115. data/decidim-dev/lib/generators/decidim/templates/bullet.rb +6 -0
  116. data/decidim-system/LICENSE.txt +619 -0
  117. data/decidim-system/README.md +1 -1
  118. data/decidim-system/app/assets/javascripts/decidim/system/application.js.es6 +10 -0
  119. data/decidim-system/app/mailers/decidim/system/application_mailer.rb +1 -1
  120. data/decidim-system/decidim-system.gemspec +4 -4
  121. data/decidim.gemspec +3 -2
  122. data/lib/decidim.rb +1 -6
  123. data/lib/generators/decidim/app_generator.rb +13 -1
  124. data/lib/generators/decidim/install_generator.rb +11 -2
  125. data/lib/generators/decidim/templates/Gemfile.erb +5 -2
  126. data/lib/generators/decidim/templates/authorization_handler.rb +50 -0
  127. data/lib/generators/decidim/templates/carrierwave.rb +27 -0
  128. data/lib/generators/decidim/templates/decidim.scss.erb +3 -0
  129. data/lib/generators/decidim/templates/initializer.rb +3 -1
  130. data/package.json +21 -0
  131. data/yarn.lock +890 -0
  132. metadata +102 -21
  133. data/.eslintrc +0 -213
  134. data/decidim-admin/app/assets/javascripts/decidim/admin/application.js +0 -22
  135. data/decidim-admin/app/controllers/concerns/decidim/needs_authorization.rb +0 -50
  136. data/decidim-admin/app/policies/decidim/admin/application_policy.rb +0 -20
  137. data/decidim-admin/app/policies/decidim/admin/dashboard_policy.rb +0 -15
  138. data/decidim-admin/app/policies/decidim/admin/organization_policy.rb +0 -15
  139. data/decidim-admin/app/policies/decidim/admin/participatory_process_policy.rb +0 -57
  140. data/decidim-admin/spec/policies/dashboard_policy_spec.rb +0 -23
  141. data/decidim-admin/spec/policies/organization_policy_spec.rb +0 -41
  142. data/decidim-admin/spec/policies/participatory_process_policy_spec.rb +0 -153
  143. data/decidim-system/app/assets/javascripts/decidim/system/application.js +0 -22
@@ -25,4 +25,4 @@ $ gem install decidim-system
25
25
  Contribution directions go here.
26
26
 
27
27
  ## License
28
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
28
+ The gem is available as open source under the terms of the [AGPLv3 License](https://opensource.org/licenses/AGPL-3.0).
@@ -0,0 +1,10 @@
1
+ //= require jquery
2
+ //= require jquery_ujs
3
+ //= require foundation
4
+ //= require turbolinks
5
+ //= require_self
6
+
7
+ $(document).on('turbolinks:load', () => {
8
+ $(document).foundation();
9
+ });
10
+
@@ -4,7 +4,7 @@ module Decidim
4
4
  # Custom application mailer, scoped to the system mailer.
5
5
  #
6
6
  class ApplicationMailer < ActionMailer::Base
7
- default from: "from@example.com"
7
+ default from: Decidim.config.mailer_sender
8
8
  layout "mailer"
9
9
  end
10
10
  end
@@ -13,17 +13,17 @@ Gem::Specification.new do |s|
13
13
  s.homepage = ""
14
14
  s.summary = "System administration"
15
15
  s.description = "System administration to create new organization in an installation."
16
- s.license = "MIT"
16
+ s.license = "AGPLv3"
17
17
 
18
- s.files = Dir["{app,config,db,lib,vendor}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
18
+ s.files = Dir["{app,config,db,lib,vendor}/**/*", "LICENSE.txt", "Rakefile", "README.md"]
19
19
 
20
20
  s.add_dependency "decidim-core", Decidim.version
21
21
  s.add_dependency "rails", Decidim.rails_version
22
22
  s.add_dependency "devise", "~> 4.2"
23
23
  s.add_dependency "devise-i18n", "~> 1.1.0"
24
- s.add_dependency "rectify", "~> 0.6"
24
+ s.add_dependency "rectify", "~> 0.7.1"
25
25
  s.add_dependency "devise_invitable", "~> 1.7.0"
26
- s.add_dependency "foundation-rails", "~> 6.2.3.0"
26
+ s.add_dependency "foundation-rails", "~> 6.2.4.0"
27
27
  s.add_dependency "sass-rails", "~> 5.0.0"
28
28
  s.add_dependency "jquery-rails", "~> 4.0"
29
29
  s.add_dependency "turbolinks", Decidim.rails_version
data/decidim.gemspec CHANGED
@@ -12,8 +12,8 @@ Gem::Specification.new do |spec|
12
12
 
13
13
  spec.summary = "Citizen participation framework for Ruby on Rails."
14
14
  spec.description = "Citizen participation framework for Ruby on Rails."
15
- spec.homepage = "https://github.com/codegram/decidim"
16
- spec.license = "MIT"
15
+ spec.homepage = "https://github.com/AjuntamentdeBarcelona/decidim"
16
+ spec.license = "AGPLv3"
17
17
 
18
18
  spec.required_ruby_version = ">= 2.3.1"
19
19
 
@@ -25,6 +25,7 @@ Gem::Specification.new do |spec|
25
25
  spec.add_dependency "decidim-core", Decidim.version
26
26
  spec.add_dependency "decidim-system", Decidim.version
27
27
  spec.add_dependency "decidim-admin", Decidim.version
28
+ spec.add_dependency "decidim-api", Decidim.version
28
29
  spec.add_dependency "rails", Decidim.rails_version
29
30
  spec.add_dependency "rails-i18n", Decidim.rails_version
30
31
 
data/lib/decidim.rb CHANGED
@@ -2,13 +2,8 @@
2
2
  require "decidim/core"
3
3
  require "decidim/system"
4
4
  require "decidim/admin"
5
+ require "decidim/api"
5
6
 
6
7
  # Module declaration.
7
8
  module Decidim
8
- # Loads seeds from all engines.
9
- def self.seed!
10
- Rails.application.railties.select do |railtie|
11
- railtie.respond_to?(:load_seed) && railtie.class.name.include?("Decidim::")
12
- end.each(&:load_seed)
13
- end
14
9
  end
@@ -32,7 +32,10 @@ module Decidim
32
32
  desc: "Path to the gem"
33
33
 
34
34
  class_option :edge, type: :boolean, default: false,
35
- desc: "Use GitHub's edge version"
35
+ desc: "Use GitHub's edge version from master branch"
36
+
37
+ class_option :branch, type: :string, default: nil,
38
+ desc: "Use a specific branch from GitHub's version"
36
39
 
37
40
  class_option :database, type: :string, aliases: "-d", default: "postgresql",
38
41
  desc: "Configure for selected database (options: #{DATABASES.join("/")})"
@@ -77,6 +80,15 @@ module Decidim
77
80
  ]
78
81
  end
79
82
 
83
+ def remove_default_error_pages
84
+ remove_file "public/404.html"
85
+ remove_file "public/500.html"
86
+ end
87
+
88
+ def authorization_handler
89
+ template "authorization_handler.rb", "app/services/example_authorization_handler.rb", force: true
90
+ end
91
+
80
92
  private
81
93
 
82
94
  def get_builder_class
@@ -23,6 +23,7 @@ module Decidim
23
23
  def install
24
24
  route "mount Decidim::System::Engine => '/system'"
25
25
  route "mount Decidim::Admin::Engine => '/admin'"
26
+ route "mount Decidim::Api::Engine => '/api'"
26
27
  route "mount Decidim::Core::Engine => '/'"
27
28
  end
28
29
 
@@ -33,11 +34,12 @@ module Decidim
33
34
  end
34
35
 
35
36
  def add_seeds
36
- append_file "db/seeds.rb", "\nDecidim.seed!"
37
+ append_file "db/seeds.rb", "\n# You can remove the 'faker' gem if you don't want Decidim seeds.\nDecidim.seed!"
37
38
  end
38
39
 
39
40
  def copy_initializer
40
41
  template "initializer.rb", "config/initializers/decidim.rb"
42
+ template "carrierwave.rb", "config/initializers/carrierwave.rb"
41
43
  end
42
44
 
43
45
  def insert_into_layout
@@ -67,8 +69,10 @@ module Decidim
67
69
  append_file "app/assets/javascripts/application.js", "//= require decidim"
68
70
  inject_into_file "app/assets/stylesheets/application.css",
69
71
  before: "*= require_tree ." do
70
- "*= require decidim\n"
72
+ "*= require decidim\n "
71
73
  end
74
+
75
+ template "decidim.scss.erb", "app/assets/stylesheets/decidim.scss", force: true
72
76
  end
73
77
 
74
78
  def smtp_environment
@@ -116,6 +120,11 @@ module Decidim
116
120
  rake "db:migrate"
117
121
  rake "db:test:prepare"
118
122
  end
123
+
124
+ def scss_variables
125
+ variables = File.join(Gem.loaded_specs["decidim-core"].full_gem_path, "app", "assets", "stylesheets", "decidim", "_variables.scss")
126
+ File.read(variables).split("\n").map { |line| "// #{line}" }.join("\n")
127
+ end
119
128
  end
120
129
  end
121
130
  end
@@ -4,14 +4,16 @@ ruby '<%= RUBY_VERSION %>'
4
4
  <% if options[:path] %>
5
5
  gem "decidim", path: "<%= options[:path] %>"
6
6
  <% elsif options[:edge] %>
7
- gem "decidim", github: 'codegram/decidim'
7
+ gem "decidim", github: 'AjuntamentdeBarcelona/decidim'
8
+ <% elsif options[:branch] %>
9
+ gem "decidim", github: 'AjuntamentdeBarcelona/decidim', branch: "<%= options[:branch] %>"
8
10
  <% else %>
9
11
  gem "decidim", "<%= Gem::Specification.find_by_name("decidim").version %>"
10
12
  <% end %>
11
13
  gem 'puma', '~> 3.0'
12
14
  gem 'uglifier', '>= 1.3.0'
13
15
 
14
- gem 'foundation_rails_helper', github: 'sgruhier/foundation_rails_helper'
16
+ gem "foundation_rails_helper", git: "https://github.com/sgruhier/foundation_rails_helper.git", tag: "df0bd8e"
15
17
 
16
18
  group :development, :test do
17
19
  gem 'byebug', platform: :mri
@@ -22,6 +24,7 @@ group :development do
22
24
  gem 'listen', '~> 3.0.5'
23
25
  gem 'spring'
24
26
  gem 'spring-watcher-listen', '~> 2.0.0'
27
+ gem 'faker', '~> 1.6.6'
25
28
  end
26
29
 
27
30
  group :production do
@@ -0,0 +1,50 @@
1
+ # frozen_string_literal: true
2
+ # An example authorization handler used so that users can be verified against
3
+ # third party systems.
4
+ #
5
+ # You should probably rename this class and file to match your needs.
6
+ #
7
+ # If you need a custom form to be rendered, you can create a file matching the
8
+ # class name named "_form".
9
+ #
10
+ # Example:
11
+ #
12
+ # A handler named Decidim::CensusHandler would look for its partial in:
13
+ # decidim/census/form
14
+ #
15
+ # When testing your authorization handler, add this line to be sure it has a
16
+ # valid public api:
17
+ #
18
+ # it_behaves_like "an authorization handler"
19
+ #
20
+ # See Decidim::AuthorizationHandler for more documentation.
21
+ class ExampleAuthorizationHandler < Decidim::AuthorizationHandler
22
+ # Define the attributes you need for this authorization handler. Attributes
23
+ # are defined using Virtus.
24
+ #
25
+ # Example:
26
+ # attribute :document_number, String
27
+ # attribute :birthday, Date
28
+ #
29
+ # You can (and should) also define validations on each attribute:
30
+ #
31
+ # validates :document_number, presence: true
32
+ # validate :custom_method_to_validate_an_attribute
33
+
34
+ # The only method that needs to be implemented for an authorization handler.
35
+ # Here you can add your business logic to check if the authorization should
36
+ # be created or not, you should return a Boolean value.
37
+ def authorized?
38
+ raise NotImplementedError
39
+ end
40
+
41
+ # If you need to store any of the defined attributes in the authorization you
42
+ # can do it here.
43
+ #
44
+ # You must return a Hash that will be serialized to the authorization when
45
+ # it's created, and available though authorization.metadata
46
+ #
47
+ # def metadata
48
+ # {}
49
+ # end
50
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+ # Default CarrierWave setup.
3
+ #
4
+ CarrierWave.configure do |config|
5
+ config.permissions = 0o666
6
+ config.directory_permissions = 0o777
7
+ config.storage = :file
8
+ config.enable_processing = !Rails.env.test?
9
+ end
10
+
11
+ # Setup CarrierWave to use Amazon S3. Add `gem "fog-aws" to your Gemfile.
12
+ #
13
+ # CarrierWave.configure do |config|
14
+ # config.storage = :fog
15
+ # config.fog_provider = 'fog/aws' # required
16
+ # config.fog_credentials = {
17
+ # provider: 'AWS', # required
18
+ # aws_access_key_id: Rails.configuration.secrets.aws_access_key_id, # required
19
+ # aws_secret_access_key: Rails.configuration.secrets.aws_secret_access_key, # required
20
+ # region: 'eu-west-1', # optional, defaults to 'us-east-1'
21
+ # host: 's3.example.com', # optional, defaults to nil
22
+ # endpoint: 'https://s3.example.com:8080' # optional, defaults to nil
23
+ # }
24
+ # config.fog_directory = 'name_of_directory' # required
25
+ # config.fog_public = false # optional, defaults to true
26
+ # config.fog_attributes = { 'Cache-Control' => "max-age=#{365.day.to_i}" } # optional, defaults to {}
27
+ # end
@@ -0,0 +1,3 @@
1
+ <%= scss_variables %>
2
+
3
+ @import "decidim/application";
@@ -1,4 +1,6 @@
1
1
  # frozen_string_literal: true
2
- Decidim.setup do |config|
2
+ Decidim.configure do |config|
3
3
  config.application_name = "My Application Name"
4
+ config.mailer_sender = "change-me@domain.org"
5
+ config.authorization_handlers = [ExampleAuthorizationHandler]
4
6
  end
data/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "decidim",
3
+ "repository": {
4
+ "url": "git@github.com:AjuntamentdeBarcelona/decidim.git",
5
+ "type": "git"
6
+ },
7
+ "author": "Marc Riera <mrc2407@gmail.com>",
8
+ "license": "AGPLv3",
9
+ "scripts": {
10
+ "test": "eslint app/**/*.js.es6 app/**/*.js"
11
+ },
12
+ "dependencies": {
13
+ "eslint": "^3.8.1"
14
+ },
15
+ "devDependencies": {
16
+ "eslint-config-airbnb": "^12.0.0",
17
+ "eslint-plugin-import": "^2.0.1",
18
+ "eslint-plugin-jsx-a11y": "^2.2.3",
19
+ "eslint-plugin-react": "^6.4.1"
20
+ }
21
+ }
data/yarn.lock ADDED
@@ -0,0 +1,890 @@
1
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
+ # yarn lockfile v1
3
+ acorn-jsx@^3.0.0, acorn-jsx@^3.0.1:
4
+ version "3.0.1"
5
+ resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
6
+ dependencies:
7
+ acorn "^3.0.4"
8
+
9
+ acorn@^3.0.4:
10
+ version "3.3.0"
11
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
12
+
13
+ acorn@^4.0.1:
14
+ version "4.0.3"
15
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1"
16
+
17
+ ajv-keywords@^1.0.0:
18
+ version "1.1.1"
19
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50"
20
+
21
+ ajv@^4.7.0:
22
+ version "4.8.2"
23
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.8.2.tgz#65486936ca36fea39a1504332a78bebd5d447bdc"
24
+ dependencies:
25
+ co "^4.6.0"
26
+ json-stable-stringify "^1.0.1"
27
+
28
+ ansi-escapes@^1.1.0:
29
+ version "1.4.0"
30
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
31
+
32
+ ansi-regex@^2.0.0:
33
+ version "2.0.0"
34
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107"
35
+
36
+ ansi-styles@^2.2.1:
37
+ version "2.2.1"
38
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
39
+
40
+ argparse@^1.0.7:
41
+ version "1.0.9"
42
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
43
+ dependencies:
44
+ sprintf-js "~1.0.2"
45
+
46
+ array-union@^1.0.1:
47
+ version "1.0.2"
48
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
49
+ dependencies:
50
+ array-uniq "^1.0.1"
51
+
52
+ array-uniq@^1.0.1:
53
+ version "1.0.3"
54
+ resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
55
+
56
+ arrify@^1.0.0:
57
+ version "1.0.1"
58
+ resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
59
+
60
+ balanced-match@^0.4.1:
61
+ version "0.4.2"
62
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
63
+
64
+ brace-expansion@^1.0.0:
65
+ version "1.1.6"
66
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
67
+ dependencies:
68
+ balanced-match "^0.4.1"
69
+ concat-map "0.0.1"
70
+
71
+ builtin-modules@^1.1.1:
72
+ version "1.1.1"
73
+ resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
74
+
75
+ caller-path@^0.1.0:
76
+ version "0.1.0"
77
+ resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
78
+ dependencies:
79
+ callsites "^0.2.0"
80
+
81
+ callsites@^0.2.0:
82
+ version "0.2.0"
83
+ resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
84
+
85
+ chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
86
+ version "1.1.3"
87
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
88
+ dependencies:
89
+ ansi-styles "^2.2.1"
90
+ escape-string-regexp "^1.0.2"
91
+ has-ansi "^2.0.0"
92
+ strip-ansi "^3.0.0"
93
+ supports-color "^2.0.0"
94
+
95
+ circular-json@^0.3.0:
96
+ version "0.3.1"
97
+ resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
98
+
99
+ cli-cursor@^1.0.1:
100
+ version "1.0.2"
101
+ resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
102
+ dependencies:
103
+ restore-cursor "^1.0.1"
104
+
105
+ cli-width@^2.0.0:
106
+ version "2.1.0"
107
+ resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
108
+
109
+ co@^4.6.0:
110
+ version "4.6.0"
111
+ resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
112
+
113
+ code-point-at@^1.0.0:
114
+ version "1.0.1"
115
+ resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.0.1.tgz#1104cd34f9b5b45d3eba88f1babc1924e1ce35fb"
116
+ dependencies:
117
+ number-is-nan "^1.0.0"
118
+
119
+ concat-map@0.0.1:
120
+ version "0.0.1"
121
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
122
+
123
+ concat-stream@^1.4.6:
124
+ version "1.5.2"
125
+ resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266"
126
+ dependencies:
127
+ inherits "~2.0.1"
128
+ readable-stream "~2.0.0"
129
+ typedarray "~0.0.5"
130
+
131
+ contains-path@^0.1.0:
132
+ version "0.1.0"
133
+ resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
134
+
135
+ core-util-is@~1.0.0:
136
+ version "1.0.2"
137
+ resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
138
+
139
+ d@^0.1.1, d@~0.1.1:
140
+ version "0.1.1"
141
+ resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
142
+ dependencies:
143
+ es5-ext "~0.10.2"
144
+
145
+ damerau-levenshtein@^1.0.0:
146
+ version "1.0.3"
147
+ resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.3.tgz#ae4f4ce0b62acae10ff63a01bb08f652f5213af2"
148
+
149
+ debug@^2.1.1, debug@^2.2.0, debug@2.2.0:
150
+ version "2.2.0"
151
+ resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
152
+ dependencies:
153
+ ms "0.7.1"
154
+
155
+ deep-is@~0.1.3:
156
+ version "0.1.3"
157
+ resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
158
+
159
+ del@^2.0.2:
160
+ version "2.2.2"
161
+ resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
162
+ dependencies:
163
+ globby "^5.0.0"
164
+ is-path-cwd "^1.0.0"
165
+ is-path-in-cwd "^1.0.0"
166
+ object-assign "^4.0.1"
167
+ pify "^2.0.0"
168
+ pinkie-promise "^2.0.0"
169
+ rimraf "^2.2.8"
170
+
171
+ doctrine@^1.2.2:
172
+ version "1.5.0"
173
+ resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
174
+ dependencies:
175
+ esutils "^2.0.2"
176
+ isarray "^1.0.0"
177
+
178
+ doctrine@1.3.x:
179
+ version "1.3.0"
180
+ resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.3.0.tgz#13e75682b55518424276f7c173783456ef913d26"
181
+ dependencies:
182
+ esutils "^2.0.2"
183
+ isarray "^1.0.0"
184
+
185
+ es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7:
186
+ version "0.10.12"
187
+ resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
188
+ dependencies:
189
+ es6-iterator "2"
190
+ es6-symbol "~3.1"
191
+
192
+ es6-iterator@2:
193
+ version "2.0.0"
194
+ resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
195
+ dependencies:
196
+ d "^0.1.1"
197
+ es5-ext "^0.10.7"
198
+ es6-symbol "3"
199
+
200
+ es6-map@^0.1.3:
201
+ version "0.1.4"
202
+ resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
203
+ dependencies:
204
+ d "~0.1.1"
205
+ es5-ext "~0.10.11"
206
+ es6-iterator "2"
207
+ es6-set "~0.1.3"
208
+ es6-symbol "~3.1.0"
209
+ event-emitter "~0.3.4"
210
+
211
+ es6-set@~0.1.3:
212
+ version "0.1.4"
213
+ resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
214
+ dependencies:
215
+ d "~0.1.1"
216
+ es5-ext "~0.10.11"
217
+ es6-iterator "2"
218
+ es6-symbol "3"
219
+ event-emitter "~0.3.4"
220
+
221
+ es6-symbol@~3.1, es6-symbol@~3.1.0, es6-symbol@3:
222
+ version "3.1.0"
223
+ resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
224
+ dependencies:
225
+ d "~0.1.1"
226
+ es5-ext "~0.10.11"
227
+
228
+ es6-weak-map@^2.0.1:
229
+ version "2.0.1"
230
+ resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
231
+ dependencies:
232
+ d "^0.1.1"
233
+ es5-ext "^0.10.8"
234
+ es6-iterator "2"
235
+ es6-symbol "3"
236
+
237
+ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
238
+ version "1.0.5"
239
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
240
+
241
+ escope@^3.6.0:
242
+ version "3.6.0"
243
+ resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
244
+ dependencies:
245
+ es6-map "^0.1.3"
246
+ es6-weak-map "^2.0.1"
247
+ esrecurse "^4.1.0"
248
+ estraverse "^4.1.1"
249
+
250
+ eslint:
251
+ version "3.8.1"
252
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.8.1.tgz#7d02db44cd5aaf4fa7aa489e1f083baa454342ba"
253
+ dependencies:
254
+ chalk "^1.1.3"
255
+ concat-stream "^1.4.6"
256
+ debug "^2.1.1"
257
+ doctrine "^1.2.2"
258
+ escope "^3.6.0"
259
+ espree "^3.3.1"
260
+ estraverse "^4.2.0"
261
+ esutils "^2.0.2"
262
+ file-entry-cache "^2.0.0"
263
+ glob "^7.0.3"
264
+ globals "^9.2.0"
265
+ ignore "^3.1.5"
266
+ imurmurhash "^0.1.4"
267
+ inquirer "^0.12.0"
268
+ is-my-json-valid "^2.10.0"
269
+ is-resolvable "^1.0.0"
270
+ js-yaml "^3.5.1"
271
+ json-stable-stringify "^1.0.0"
272
+ levn "^0.3.0"
273
+ lodash "^4.0.0"
274
+ mkdirp "^0.5.0"
275
+ natural-compare "^1.4.0"
276
+ optionator "^0.8.2"
277
+ path-is-inside "^1.0.1"
278
+ pluralize "^1.2.1"
279
+ progress "^1.1.8"
280
+ require-uncached "^1.0.2"
281
+ shelljs "^0.6.0"
282
+ strip-bom "^3.0.0"
283
+ strip-json-comments "~1.0.1"
284
+ table "^3.7.8"
285
+ text-table "~0.2.0"
286
+ user-home "^2.0.0"
287
+
288
+ eslint-config-airbnb:
289
+ version "12.0.0"
290
+ resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-12.0.0.tgz#ab282b756a25f03d04ac264c24d673a08a803270"
291
+ dependencies:
292
+ eslint-config-airbnb-base "^8.0.0"
293
+
294
+ eslint-config-airbnb-base@^8.0.0:
295
+ version "8.0.0"
296
+ resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-8.0.0.tgz#c5e958a469ab8af76aff068b43d784e5afe74ca7"
297
+
298
+ eslint-import-resolver-node@^0.2.0:
299
+ version "0.2.3"
300
+ resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c"
301
+ dependencies:
302
+ debug "^2.2.0"
303
+ object-assign "^4.0.1"
304
+ resolve "^1.1.6"
305
+
306
+ eslint-module-utils@^1.0.0:
307
+ version "1.0.0"
308
+ resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-1.0.0.tgz#c4a57fd3a53efd8426cc2d5550aadab9bbd05fd0"
309
+ dependencies:
310
+ debug "2.2.0"
311
+ pkg-dir "^1.0.0"
312
+
313
+ eslint-plugin-import:
314
+ version "2.0.1"
315
+ resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.0.1.tgz#dcfe96357d476b3f822570d42c29bec66f5d9c5c"
316
+ dependencies:
317
+ builtin-modules "^1.1.1"
318
+ contains-path "^0.1.0"
319
+ debug "^2.2.0"
320
+ doctrine "1.3.x"
321
+ eslint-import-resolver-node "^0.2.0"
322
+ eslint-module-utils "^1.0.0"
323
+ has "^1.0.1"
324
+ lodash.cond "^4.3.0"
325
+ minimatch "^3.0.3"
326
+ pkg-up "^1.0.0"
327
+
328
+ eslint-plugin-jsx-a11y:
329
+ version "2.2.3"
330
+ resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-2.2.3.tgz#4e35cb71b8a7db702ac415c806eb8e8d9ea6c65d"
331
+ dependencies:
332
+ damerau-levenshtein "^1.0.0"
333
+ jsx-ast-utils "^1.0.0"
334
+ object-assign "^4.0.1"
335
+
336
+ eslint-plugin-react:
337
+ version "6.4.1"
338
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.4.1.tgz#7d1aade747db15892f71eee1fea4addf97bcfa2b"
339
+ dependencies:
340
+ doctrine "^1.2.2"
341
+ jsx-ast-utils "^1.3.1"
342
+
343
+ espree@^3.3.1:
344
+ version "3.3.2"
345
+ resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c"
346
+ dependencies:
347
+ acorn "^4.0.1"
348
+ acorn-jsx "^3.0.0"
349
+
350
+ esprima@^2.6.0:
351
+ version "2.7.3"
352
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
353
+
354
+ esrecurse@^4.1.0:
355
+ version "4.1.0"
356
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
357
+ dependencies:
358
+ estraverse "~4.1.0"
359
+ object-assign "^4.0.1"
360
+
361
+ estraverse@^4.1.1, estraverse@^4.2.0:
362
+ version "4.2.0"
363
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
364
+
365
+ estraverse@~4.1.0:
366
+ version "4.1.1"
367
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
368
+
369
+ esutils@^2.0.2:
370
+ version "2.0.2"
371
+ resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
372
+
373
+ event-emitter@~0.3.4:
374
+ version "0.3.4"
375
+ resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
376
+ dependencies:
377
+ d "~0.1.1"
378
+ es5-ext "~0.10.7"
379
+
380
+ exit-hook@^1.0.0:
381
+ version "1.1.1"
382
+ resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
383
+
384
+ fast-levenshtein@~2.0.4:
385
+ version "2.0.5"
386
+ resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2"
387
+
388
+ figures@^1.3.5:
389
+ version "1.7.0"
390
+ resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
391
+ dependencies:
392
+ escape-string-regexp "^1.0.5"
393
+ object-assign "^4.1.0"
394
+
395
+ file-entry-cache@^2.0.0:
396
+ version "2.0.0"
397
+ resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
398
+ dependencies:
399
+ flat-cache "^1.2.1"
400
+ object-assign "^4.0.1"
401
+
402
+ find-up@^1.0.0:
403
+ version "1.1.2"
404
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
405
+ dependencies:
406
+ path-exists "^2.0.0"
407
+ pinkie-promise "^2.0.0"
408
+
409
+ flat-cache@^1.2.1:
410
+ version "1.2.1"
411
+ resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff"
412
+ dependencies:
413
+ circular-json "^0.3.0"
414
+ del "^2.0.2"
415
+ graceful-fs "^4.1.2"
416
+ write "^0.2.1"
417
+
418
+ fs.realpath@^1.0.0:
419
+ version "1.0.0"
420
+ resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
421
+
422
+ function-bind@^1.0.2:
423
+ version "1.1.0"
424
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
425
+
426
+ generate-function@^2.0.0:
427
+ version "2.0.0"
428
+ resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
429
+
430
+ generate-object-property@^1.1.0:
431
+ version "1.2.0"
432
+ resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
433
+ dependencies:
434
+ is-property "^1.0.0"
435
+
436
+ glob@^7.0.3, glob@^7.0.5:
437
+ version "7.1.1"
438
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
439
+ dependencies:
440
+ fs.realpath "^1.0.0"
441
+ inflight "^1.0.4"
442
+ inherits "2"
443
+ minimatch "^3.0.2"
444
+ once "^1.3.0"
445
+ path-is-absolute "^1.0.0"
446
+
447
+ globals@^9.2.0:
448
+ version "9.12.0"
449
+ resolved "https://registry.yarnpkg.com/globals/-/globals-9.12.0.tgz#992ce90828c3a55fa8f16fada177adb64664cf9d"
450
+
451
+ globby@^5.0.0:
452
+ version "5.0.0"
453
+ resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
454
+ dependencies:
455
+ array-union "^1.0.1"
456
+ arrify "^1.0.0"
457
+ glob "^7.0.3"
458
+ object-assign "^4.0.1"
459
+ pify "^2.0.0"
460
+ pinkie-promise "^2.0.0"
461
+
462
+ graceful-fs@^4.1.2:
463
+ version "4.1.9"
464
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.9.tgz#baacba37d19d11f9d146d3578bc99958c3787e29"
465
+
466
+ has-ansi@^2.0.0:
467
+ version "2.0.0"
468
+ resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
469
+ dependencies:
470
+ ansi-regex "^2.0.0"
471
+
472
+ has@^1.0.1:
473
+ version "1.0.1"
474
+ resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
475
+ dependencies:
476
+ function-bind "^1.0.2"
477
+
478
+ ignore@^3.1.5:
479
+ version "3.2.0"
480
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435"
481
+
482
+ imurmurhash@^0.1.4:
483
+ version "0.1.4"
484
+ resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
485
+
486
+ inflight@^1.0.4:
487
+ version "1.0.6"
488
+ resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
489
+ dependencies:
490
+ once "^1.3.0"
491
+ wrappy "1"
492
+
493
+ inherits@~2.0.1, inherits@2:
494
+ version "2.0.3"
495
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
496
+
497
+ inquirer@^0.12.0:
498
+ version "0.12.0"
499
+ resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
500
+ dependencies:
501
+ ansi-escapes "^1.1.0"
502
+ ansi-regex "^2.0.0"
503
+ chalk "^1.0.0"
504
+ cli-cursor "^1.0.1"
505
+ cli-width "^2.0.0"
506
+ figures "^1.3.5"
507
+ lodash "^4.3.0"
508
+ readline2 "^1.0.1"
509
+ run-async "^0.1.0"
510
+ rx-lite "^3.1.2"
511
+ string-width "^1.0.1"
512
+ strip-ansi "^3.0.0"
513
+ through "^2.3.6"
514
+
515
+ is-fullwidth-code-point@^1.0.0:
516
+ version "1.0.0"
517
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
518
+ dependencies:
519
+ number-is-nan "^1.0.0"
520
+
521
+ is-fullwidth-code-point@^2.0.0:
522
+ version "2.0.0"
523
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
524
+
525
+ is-my-json-valid@^2.10.0:
526
+ version "2.15.0"
527
+ resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
528
+ dependencies:
529
+ generate-function "^2.0.0"
530
+ generate-object-property "^1.1.0"
531
+ jsonpointer "^4.0.0"
532
+ xtend "^4.0.0"
533
+
534
+ is-path-cwd@^1.0.0:
535
+ version "1.0.0"
536
+ resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
537
+
538
+ is-path-in-cwd@^1.0.0:
539
+ version "1.0.0"
540
+ resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
541
+ dependencies:
542
+ is-path-inside "^1.0.0"
543
+
544
+ is-path-inside@^1.0.0:
545
+ version "1.0.0"
546
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
547
+ dependencies:
548
+ path-is-inside "^1.0.1"
549
+
550
+ is-property@^1.0.0:
551
+ version "1.0.2"
552
+ resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
553
+
554
+ is-resolvable@^1.0.0:
555
+ version "1.0.0"
556
+ resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
557
+ dependencies:
558
+ tryit "^1.0.1"
559
+
560
+ isarray@^1.0.0, isarray@~1.0.0:
561
+ version "1.0.0"
562
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
563
+
564
+ js-yaml@^3.5.1:
565
+ version "3.6.1"
566
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30"
567
+ dependencies:
568
+ argparse "^1.0.7"
569
+ esprima "^2.6.0"
570
+
571
+ json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
572
+ version "1.0.1"
573
+ resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
574
+ dependencies:
575
+ jsonify "~0.0.0"
576
+
577
+ jsonify@~0.0.0:
578
+ version "0.0.0"
579
+ resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
580
+
581
+ jsonpointer@^4.0.0:
582
+ version "4.0.0"
583
+ resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5"
584
+
585
+ jsx-ast-utils@^1.0.0, jsx-ast-utils@^1.3.1:
586
+ version "1.3.2"
587
+ resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.3.2.tgz#dff658782705352111f9865d40471bc4a955961e"
588
+ dependencies:
589
+ acorn-jsx "^3.0.1"
590
+ object-assign "^4.1.0"
591
+
592
+ levn@^0.3.0, levn@~0.3.0:
593
+ version "0.3.0"
594
+ resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
595
+ dependencies:
596
+ prelude-ls "~1.1.2"
597
+ type-check "~0.3.2"
598
+
599
+ lodash.cond@^4.3.0:
600
+ version "4.5.2"
601
+ resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
602
+
603
+ lodash@^4.0.0, lodash@^4.3.0:
604
+ version "4.16.4"
605
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.4.tgz#01ce306b9bad1319f2a5528674f88297aeb70127"
606
+
607
+ minimatch@^3.0.2, minimatch@^3.0.3:
608
+ version "3.0.3"
609
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
610
+ dependencies:
611
+ brace-expansion "^1.0.0"
612
+
613
+ minimist@0.0.8:
614
+ version "0.0.8"
615
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
616
+
617
+ mkdirp@^0.5.0, mkdirp@^0.5.1:
618
+ version "0.5.1"
619
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
620
+ dependencies:
621
+ minimist "0.0.8"
622
+
623
+ ms@0.7.1:
624
+ version "0.7.1"
625
+ resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
626
+
627
+ mute-stream@0.0.5:
628
+ version "0.0.5"
629
+ resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
630
+
631
+ natural-compare@^1.4.0:
632
+ version "1.4.0"
633
+ resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
634
+
635
+ number-is-nan@^1.0.0:
636
+ version "1.0.1"
637
+ resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
638
+
639
+ object-assign@^4.0.1, object-assign@^4.1.0:
640
+ version "4.1.0"
641
+ resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
642
+
643
+ once@^1.3.0:
644
+ version "1.4.0"
645
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
646
+ dependencies:
647
+ wrappy "1"
648
+
649
+ onetime@^1.0.0:
650
+ version "1.1.0"
651
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
652
+
653
+ optionator@^0.8.2:
654
+ version "0.8.2"
655
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
656
+ dependencies:
657
+ deep-is "~0.1.3"
658
+ fast-levenshtein "~2.0.4"
659
+ levn "~0.3.0"
660
+ prelude-ls "~1.1.2"
661
+ type-check "~0.3.2"
662
+ wordwrap "~1.0.0"
663
+
664
+ os-homedir@^1.0.0:
665
+ version "1.0.2"
666
+ resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
667
+
668
+ path-exists@^2.0.0:
669
+ version "2.1.0"
670
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
671
+ dependencies:
672
+ pinkie-promise "^2.0.0"
673
+
674
+ path-is-absolute@^1.0.0:
675
+ version "1.0.1"
676
+ resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
677
+
678
+ path-is-inside@^1.0.1:
679
+ version "1.0.2"
680
+ resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
681
+
682
+ pify@^2.0.0:
683
+ version "2.3.0"
684
+ resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
685
+
686
+ pinkie-promise@^2.0.0:
687
+ version "2.0.1"
688
+ resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
689
+ dependencies:
690
+ pinkie "^2.0.0"
691
+
692
+ pinkie@^2.0.0:
693
+ version "2.0.4"
694
+ resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
695
+
696
+ pkg-dir@^1.0.0:
697
+ version "1.0.0"
698
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
699
+ dependencies:
700
+ find-up "^1.0.0"
701
+
702
+ pkg-up@^1.0.0:
703
+ version "1.0.0"
704
+ resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26"
705
+ dependencies:
706
+ find-up "^1.0.0"
707
+
708
+ pluralize@^1.2.1:
709
+ version "1.2.1"
710
+ resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
711
+
712
+ prelude-ls@~1.1.2:
713
+ version "1.1.2"
714
+ resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
715
+
716
+ process-nextick-args@~1.0.6:
717
+ version "1.0.7"
718
+ resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
719
+
720
+ progress@^1.1.8:
721
+ version "1.1.8"
722
+ resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
723
+
724
+ readable-stream@~2.0.0:
725
+ version "2.0.6"
726
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
727
+ dependencies:
728
+ core-util-is "~1.0.0"
729
+ inherits "~2.0.1"
730
+ isarray "~1.0.0"
731
+ process-nextick-args "~1.0.6"
732
+ string_decoder "~0.10.x"
733
+ util-deprecate "~1.0.1"
734
+
735
+ readline2@^1.0.1:
736
+ version "1.0.1"
737
+ resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
738
+ dependencies:
739
+ code-point-at "^1.0.0"
740
+ is-fullwidth-code-point "^1.0.0"
741
+ mute-stream "0.0.5"
742
+
743
+ require-uncached@^1.0.2:
744
+ version "1.0.2"
745
+ resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.2.tgz#67dad3b733089e77030124678a459589faf6a7ec"
746
+ dependencies:
747
+ caller-path "^0.1.0"
748
+ resolve-from "^1.0.0"
749
+
750
+ resolve-from@^1.0.0:
751
+ version "1.0.1"
752
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
753
+
754
+ resolve@^1.1.6:
755
+ version "1.1.7"
756
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
757
+
758
+ restore-cursor@^1.0.1:
759
+ version "1.0.1"
760
+ resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
761
+ dependencies:
762
+ exit-hook "^1.0.0"
763
+ onetime "^1.0.0"
764
+
765
+ rimraf@^2.2.8:
766
+ version "2.5.4"
767
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
768
+ dependencies:
769
+ glob "^7.0.5"
770
+
771
+ run-async@^0.1.0:
772
+ version "0.1.0"
773
+ resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
774
+ dependencies:
775
+ once "^1.3.0"
776
+
777
+ rx-lite@^3.1.2:
778
+ version "3.1.2"
779
+ resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
780
+
781
+ shelljs@^0.6.0:
782
+ version "0.6.1"
783
+ resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8"
784
+
785
+ slice-ansi@0.0.4:
786
+ version "0.0.4"
787
+ resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
788
+
789
+ sprintf-js@~1.0.2:
790
+ version "1.0.3"
791
+ resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
792
+
793
+ string_decoder@~0.10.x:
794
+ version "0.10.31"
795
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
796
+
797
+ string-width@^1.0.1:
798
+ version "1.0.2"
799
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
800
+ dependencies:
801
+ code-point-at "^1.0.0"
802
+ is-fullwidth-code-point "^1.0.0"
803
+ strip-ansi "^3.0.0"
804
+
805
+ string-width@^2.0.0:
806
+ version "2.0.0"
807
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
808
+ dependencies:
809
+ is-fullwidth-code-point "^2.0.0"
810
+ strip-ansi "^3.0.0"
811
+
812
+ strip-ansi@^3.0.0:
813
+ version "3.0.1"
814
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
815
+ dependencies:
816
+ ansi-regex "^2.0.0"
817
+
818
+ strip-bom@^3.0.0:
819
+ version "3.0.0"
820
+ resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
821
+
822
+ strip-json-comments@~1.0.1:
823
+ version "1.0.4"
824
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"
825
+
826
+ supports-color@^2.0.0:
827
+ version "2.0.0"
828
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
829
+
830
+ table@^3.7.8:
831
+ version "3.8.3"
832
+ resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
833
+ dependencies:
834
+ ajv "^4.7.0"
835
+ ajv-keywords "^1.0.0"
836
+ chalk "^1.1.1"
837
+ lodash "^4.0.0"
838
+ slice-ansi "0.0.4"
839
+ string-width "^2.0.0"
840
+
841
+ text-table@~0.2.0:
842
+ version "0.2.0"
843
+ resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
844
+
845
+ through@^2.3.6:
846
+ version "2.3.8"
847
+ resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
848
+
849
+ tryit@^1.0.1:
850
+ version "1.0.2"
851
+ resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.2.tgz#c196b0073e6b1c595d93c9c830855b7acc32a453"
852
+
853
+ type-check@~0.3.2:
854
+ version "0.3.2"
855
+ resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
856
+ dependencies:
857
+ prelude-ls "~1.1.2"
858
+
859
+ typedarray@~0.0.5:
860
+ version "0.0.6"
861
+ resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
862
+
863
+ user-home@^2.0.0:
864
+ version "2.0.0"
865
+ resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
866
+ dependencies:
867
+ os-homedir "^1.0.0"
868
+
869
+ util-deprecate@~1.0.1:
870
+ version "1.0.2"
871
+ resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
872
+
873
+ wordwrap@~1.0.0:
874
+ version "1.0.0"
875
+ resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
876
+
877
+ wrappy@1:
878
+ version "1.0.2"
879
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
880
+
881
+ write@^0.2.1:
882
+ version "0.2.1"
883
+ resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
884
+ dependencies:
885
+ mkdirp "^0.5.1"
886
+
887
+ xtend@^4.0.0:
888
+ version "4.0.1"
889
+ resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
890
+