netsoft-danger 0.3.7 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +4 -4
- data/CHANGELOG.md +20 -0
- data/Dangerfile +57 -23
- data/bin/netsoft-circle +1 -1
- data/dangerfiles/pr.js +7 -3
- data/lib/netsoft-danger/version.rb +1 -1
- data/netsoft-danger.gemspec +1 -0
- data/yarn.lock +317 -117
- metadata +17 -4
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 0c1bb297084211ee73b3610e83d81c606dfc91b766b0f27c85039e4a60356d4a
         | 
| 4 | 
            +
              data.tar.gz: e04cb0d0da8aee130efd829b14699e578276c1034e1530ccc482065bea14f803
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: dc45dbff4585b2522bed6bfebf6667a717133745913770a4fbe7c6e5ef428e05dde4fc3503cd7da1eab62c2f5c36ab776d6e83da03d3810e1c4a4c4330325a5d
         | 
| 7 | 
            +
              data.tar.gz: 8139e5cb47340d0cfe6b3e416ebc9f41758c40360f52fb124bc89fd7048a4bf757a937187af1e135fe7435ec2bac099272107bc9c14e8ee92a25885099bf1508
         | 
    
        data/.circleci/config.yml
    CHANGED
    
    | @@ -3,11 +3,11 @@ version: 2 | |
| 3 3 | 
             
            defaults: &defaults
         | 
| 4 4 | 
             
              docker: &ruby_image
         | 
| 5 5 | 
             
                - &ruby_image
         | 
| 6 | 
            -
                  image: circleci/ruby:2. | 
| 6 | 
            +
                  image: circleci/ruby:2.5.5-stretch
         | 
| 7 7 | 
             
                  environment:
         | 
| 8 8 | 
             
                    RUBYOPT: '-KU -E utf-8:utf-8'
         | 
| 9 9 | 
             
                    BUNDLE_PATH: vendor/bundle
         | 
| 10 | 
            -
                    BUNDLE_VERSION: 1. | 
| 10 | 
            +
                    BUNDLE_VERSION: 1.17.3
         | 
| 11 11 | 
             
                    BUNDLE_JOBS: 4
         | 
| 12 12 | 
             
                    BUNDLE_RETRY: 3
         | 
| 13 13 |  | 
| @@ -82,7 +82,7 @@ jobs: | |
| 82 82 |  | 
| 83 83 | 
             
                  - restore_cache:
         | 
| 84 84 | 
             
                      keys:
         | 
| 85 | 
            -
                        - netsoft-danger-bundle- | 
| 85 | 
            +
                        - netsoft-danger-bundle-v3-{{ checksum "Gemfile" }}-{{ checksum "netsoft-danger.gemspec" }}
         | 
| 86 86 | 
             
                  - run:
         | 
| 87 87 | 
             
                      name: Install bundler
         | 
| 88 88 | 
             
                      command: gem install bundler --version=$BUNDLE_VERSION
         | 
| @@ -91,7 +91,7 @@ jobs: | |
| 91 91 | 
             
                      command: |-
         | 
| 92 92 | 
             
                        bundle _${BUNDLE_VERSION}_ check || bundle _${BUNDLE_VERSION}_ install --retry=$BUNDLE_RETRY
         | 
| 93 93 | 
             
                  - save_cache:
         | 
| 94 | 
            -
                      key: netsoft-danger-bundle- | 
| 94 | 
            +
                      key: netsoft-danger-bundle-v3-{{ checksum "Gemfile" }}-{{ checksum "netsoft-danger.gemspec" }}
         | 
| 95 95 | 
             
                      paths:
         | 
| 96 96 | 
             
                        - vendor/bundle
         | 
| 97 97 | 
             
                        - Gemfile.lock
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -9,6 +9,26 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. | |
| 9 9 | 
             
            ### Changed
         | 
| 10 10 | 
             
            ### Fixed
         | 
| 11 11 |  | 
| 12 | 
            +
            ## [0.4.1]
         | 
| 13 | 
            +
            ### Changed
         | 
| 14 | 
            +
            - exclude binary files in the grep calls
         | 
| 15 | 
            +
            - make PR base ~= master a hard error
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            ## [0.4.0]
         | 
| 18 | 
            +
            ### Fixed
         | 
| 19 | 
            +
            - correct simplecov merge on newer simplecov release
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            ## [0.3.9]
         | 
| 22 | 
            +
            ### Fixed
         | 
| 23 | 
            +
            - correct API call to github for adding labels and fix logic in determining if we should or should not add the label
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            ## [0.3.8]
         | 
| 26 | 
            +
            ### Added
         | 
| 27 | 
            +
            - auto add/remove some labels
         | 
| 28 | 
            +
            - allow conventional commit format for our migration, gemfile, and package.json
         | 
| 29 | 
            +
            - add support for product review labels
         | 
| 30 | 
            +
            - add support for renamed code review labels
         | 
| 31 | 
            +
             | 
| 12 32 | 
             
            ## [0.3.7]
         | 
| 13 33 | 
             
            ### Fixed
         | 
| 14 34 | 
             
            - require English in the netsoft-circle bin
         | 
    
        data/Dangerfile
    CHANGED
    
    | @@ -1,45 +1,69 @@ | |
| 1 1 | 
             
            # frozen_string_literal: true
         | 
| 2 2 |  | 
| 3 | 
            +
            def toggle_label(github, label, should_set)
         | 
| 4 | 
            +
              repo_name = github.pr_json['head']['repo']['full_name']
         | 
| 5 | 
            +
              pr_number = github.pr_json['number']
         | 
| 6 | 
            +
              has_label = github.pr_labels.include?(label)
         | 
| 7 | 
            +
             | 
| 8 | 
            +
              if should_set && !has_label
         | 
| 9 | 
            +
                github.api.add_labels_to_an_issue(repo_name, pr_number, [label])
         | 
| 10 | 
            +
              elsif !should_set && has_label
         | 
| 11 | 
            +
                github.api.remove_label(repo_name, pr_number, label)
         | 
| 12 | 
            +
              end
         | 
| 13 | 
            +
            end
         | 
| 14 | 
            +
             | 
| 3 15 | 
             
            # Don't let testing shortcuts get into master by accident
         | 
| 4 16 | 
             
            if Dir.exist?('spec')
         | 
| 5 | 
            -
              fail('fdescribe left in tests') if `grep -r -e '\\bfdescribe\\b' spec/ |grep -v 'danger ok' `.length > 1
         | 
| 6 | 
            -
              fail('fcontext left in tests') if `grep -r -e '\\bfcontext\\b' spec/ |grep -v 'danger ok' `.length > 1
         | 
| 7 | 
            -
              fail('fit left in tests') if `grep -r -e '\\bfit\\b' spec/ | grep -v 'danger ok' `.length > 1
         | 
| 8 | 
            -
              fail('ap left in tests') if `grep -r -e '\\bap\\b' spec/ | grep -v 'danger ok' `.length > 1
         | 
| 9 | 
            -
              fail('puts left in tests') if `grep -r -e '\\bputs\\b' spec/ | grep -v 'danger ok' `.length > 1
         | 
| 17 | 
            +
              fail('fdescribe left in tests') if `grep -r -I -e '\\bfdescribe\\b' spec/ |grep -v 'danger ok' `.length > 1
         | 
| 18 | 
            +
              fail('fcontext left in tests') if `grep -r -I -e '\\bfcontext\\b' spec/ |grep -v 'danger ok' `.length > 1
         | 
| 19 | 
            +
              fail('fit left in tests') if `grep -r -I -e '\\bfit\\b' spec/ | grep -v 'danger ok' `.length > 1
         | 
| 20 | 
            +
              fail('ap left in tests') if `grep -r -I -e '\\bap\\b' spec/ | grep -v 'danger ok' `.length > 1
         | 
| 21 | 
            +
              fail('puts left in tests') if `grep -r -I -e '\\bputs\\b' spec/ | grep -v 'danger ok' `.length > 1
         | 
| 10 22 | 
             
            end
         | 
| 11 23 |  | 
| 12 24 | 
             
            if File.exist?('Gemfile')
         | 
| 13 25 | 
             
              if `grep -r -e "^ *gem 'hubstaff_[a-z]\\+" Gemfile | grep -e ",.\\+[a-zA-Z]" `.length > 1
         | 
| 14 | 
            -
                fail(' | 
| 26 | 
            +
                fail('gemfile: Beta hubstaff_* gems are not allowed in master/production')
         | 
| 15 27 | 
             
              end
         | 
| 16 28 | 
             
              if `grep -r -e "^ *gem 'hubstaff_[a-z]\\+" Gemfile | grep -e ",.\\+'[~>=]\\+.\\+[a-zA-Z]" `.length > 1
         | 
| 17 | 
            -
                fail(' | 
| 29 | 
            +
                fail('gemfile: Beta hubstaff_* gems should be the exact version')
         | 
| 18 30 | 
             
              end
         | 
| 19 31 | 
             
              if `grep -r -e "^ *gem 'hubstaff_[a-z]\\+" Gemfile | grep -e ",.\\+[' ][0-9.]\\+'" | grep -v '~>' `.length > 1
         | 
| 20 | 
            -
                fail(' | 
| 32 | 
            +
                fail('gemfile: Release hubstaff_* gems should be using a ~> version')
         | 
| 21 33 | 
             
              end
         | 
| 22 34 | 
             
            end
         | 
| 23 35 |  | 
| 36 | 
            +
            if github.branch_for_head.start_with?('security')
         | 
| 37 | 
            +
              toggle_label(github, 'security', true)
         | 
| 38 | 
            +
            end
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            should_have_migration_label = false
         | 
| 41 | 
            +
             | 
| 24 42 | 
             
            git.commits.each do |c|
         | 
| 25 43 | 
             
              short              = " ( #{c.sha[0..7]} )"
         | 
| 26 44 | 
             
              has_migrations     = c.diff_parent.any? { |f| f.path =~ %r{db/migrate/} }
         | 
| 27 45 | 
             
              has_schema_changes = c.diff_parent.any? { |f| f.path =~ %r{db/schema\.rb} }
         | 
| 28 | 
            -
               | 
| 46 | 
            +
              old_migration_msg  = c.message.start_with?('[migration]')
         | 
| 47 | 
            +
              has_migration_msg  = old_migration_msg || c.message.match?(/\Amigration(\([A-Za-z]+\))?:/)
         | 
| 29 48 | 
             
              no_schema_ok       = ENV['DANGER_NO_SCHEMA_OK'] || false
         | 
| 30 49 | 
             
              if has_migrations || has_schema_changes
         | 
| 31 50 | 
             
                unless has_migration_msg
         | 
| 32 | 
            -
                  fail ' | 
| 51 | 
            +
                  fail 'migration: Schema migration commits needs to be tagged with (migration). e.g. migration(Module): ' + short
         | 
| 52 | 
            +
                end
         | 
| 53 | 
            +
                if old_migration_msg
         | 
| 54 | 
            +
                  warn 'migration: Please switch to the new conventional commit format.'
         | 
| 33 55 | 
             
                end
         | 
| 34 56 | 
             
                if has_migrations && !has_schema_changes && !no_schema_ok
         | 
| 35 | 
            -
                  fail ' | 
| 57 | 
            +
                  fail 'migration: Please checkin your schema.rb changes with your migration' + short
         | 
| 36 58 | 
             
                end
         | 
| 37 59 | 
             
                if !has_migrations && has_schema_changes
         | 
| 38 | 
            -
                  warn ' | 
| 60 | 
            +
                  warn 'migration: Please checkin your migrations with your schema.rb changes' + short
         | 
| 39 61 | 
             
                end
         | 
| 40 62 | 
             
                if c.diff_parent.any? { |f| f.path !~ %r{db/migrate/|db/schema\.rb} }
         | 
| 41 | 
            -
                  fail ' | 
| 63 | 
            +
                  fail 'migration: Migration commit contains non-migration changes' + short
         | 
| 42 64 | 
             
                end
         | 
| 65 | 
            +
             | 
| 66 | 
            +
                should_have_migration_label = true
         | 
| 43 67 | 
             
              elsif has_migration_msg
         | 
| 44 68 | 
             
                fail '[migration] Migration commit with no migrations!' + short
         | 
| 45 69 | 
             
              end
         | 
| @@ -47,42 +71,52 @@ git.commits.each do |c| | |
| 47 71 | 
             
              has_hubstaff_icon_changes = c.diff_parent.any? { |f| f.path =~ /hubstaff(icons|font)|fontcustom-manifest/ }
         | 
| 48 72 | 
             
              if has_hubstaff_icon_changes
         | 
| 49 73 | 
             
                if c.diff_parent.any? { |f| !(f.path =~ /hubstaff-(icons|font)/ || f.path =~ /fontcustom-manifest/) }
         | 
| 50 | 
            -
                  fail ' | 
| 74 | 
            +
                  fail 'hubstaff-icons: Put hubstaff-icon changes into their own commit' + short
         | 
| 51 75 | 
             
                end
         | 
| 52 76 | 
             
              end
         | 
| 53 77 |  | 
| 54 78 | 
             
              has_gemfile_changes = c.diff_parent.any? { |f| f.path =~ /Gemfile|gemspec/ }
         | 
| 55 | 
            -
               | 
| 79 | 
            +
              old_gemfile_msg     = c.message.start_with?('[gemfile]')
         | 
| 80 | 
            +
              has_gemfile_msg     = old_gemfile_msg || c.message.match?(/\Agemfile(\([A-Za-z]+\))?:/)
         | 
| 56 81 | 
             
              if has_gemfile_changes
         | 
| 57 82 | 
             
                unless has_gemfile_msg
         | 
| 58 | 
            -
                  fail ' | 
| 83 | 
            +
                  fail 'gemfile: Gemfile commits needs to be tagged with (gemfile). e.g. gemfile(Module): ' + short
         | 
| 84 | 
            +
                end
         | 
| 85 | 
            +
                if old_migration_msg
         | 
| 86 | 
            +
                  warn 'gemfile: Please switch to the new conventional commit format.'
         | 
| 59 87 | 
             
                end
         | 
| 60 88 | 
             
                if c.diff_parent.any? { |f| f.path !~ /Gemfile|gemspec/ }
         | 
| 61 | 
            -
                  fail ' | 
| 89 | 
            +
                  fail 'gemfile: Gemfile commit contains non-gemfile changes' + short
         | 
| 62 90 | 
             
                end
         | 
| 63 91 | 
             
                if c.diff_parent.any? { |f| f.path == 'Gemfile.lock' }
         | 
| 64 92 | 
             
                  unless `grep -E -- '^BUNDLED WITH\s*\n\s+(1\\.15\\.2|1\\.17\\.3)$' Gemfile.lock`.length > 1
         | 
| 65 | 
            -
                    fail(' | 
| 93 | 
            +
                    fail('gemfile: Gemfile not bundled with bundler 1.15.2 or 1.17.3')
         | 
| 66 94 | 
             
                  end
         | 
| 67 95 | 
             
                end
         | 
| 68 96 | 
             
              elsif has_gemfile_msg
         | 
| 69 | 
            -
                fail ' | 
| 97 | 
            +
                fail 'gemfile: Gemfile commit has no gemfile changes!' + short
         | 
| 70 98 | 
             
              end
         | 
| 71 99 |  | 
| 72 100 | 
             
              has_package_changes = c.diff_parent.any? { |f| f.path =~ /package\.json|yarn\.lock/ }
         | 
| 73 | 
            -
               | 
| 101 | 
            +
              old_package_msg     = c.message.start_with?('[package.json]')
         | 
| 102 | 
            +
              has_package_msg     = old_package_msg || c.message.match?(/\Apackage(\([A-Za-z]+\))?:/)
         | 
| 74 103 | 
             
              if has_package_changes
         | 
| 75 104 | 
             
                unless has_package_msg
         | 
| 76 | 
            -
                  fail ' | 
| 105 | 
            +
                  fail 'package: Package.json commits needs to be tagged with package. e.g package(Module): ' + short
         | 
| 106 | 
            +
                end
         | 
| 107 | 
            +
                if old_package_msg
         | 
| 108 | 
            +
                  warn 'package: Please switch to the new conventional commit format.'
         | 
| 77 109 | 
             
                end
         | 
| 78 110 | 
             
                if c.diff_parent.any? { |f| f.path !~ /package\.json|yarn\.lock/ }
         | 
| 79 | 
            -
                  fail ' | 
| 111 | 
            +
                  fail 'package: Package.json commit contains non-package changes' + short
         | 
| 80 112 | 
             
                end
         | 
| 81 113 | 
             
              elsif has_package_msg
         | 
| 82 | 
            -
                fail ' | 
| 114 | 
            +
                fail 'package: Pacakge.json commit has no package changes!' + short
         | 
| 83 115 | 
             
              end
         | 
| 84 116 | 
             
            end
         | 
| 85 117 |  | 
| 118 | 
            +
            toggle_label(github, 'run migration', should_have_migration_label)
         | 
| 119 | 
            +
             | 
| 86 120 | 
             
            if ENV['CIRCLE_TOKEN']
         | 
| 87 121 | 
             
              require 'open-uri'
         | 
| 88 122 |  | 
    
        data/bin/netsoft-circle
    CHANGED
    
    
    
        data/dangerfiles/pr.js
    CHANGED
    
    | @@ -15,8 +15,12 @@ if ((danger.github.pr.body || '').length < 5) { | |
| 15 15 | 
             
              fail("Please provide a summary in the Pull Request description");
         | 
| 16 16 | 
             
            }
         | 
| 17 17 |  | 
| 18 | 
            -
            if ( | 
| 19 | 
            -
              fail( | 
| 18 | 
            +
            if (labels.includes('product review needed')) {
         | 
| 19 | 
            +
              fail('Has not passed product review');
         | 
| 20 | 
            +
            }
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            if (!(labels.includes('review passed') || labels.includes('code review passed'))) {
         | 
| 23 | 
            +
              fail("Has not passed code review");
         | 
| 20 24 | 
             
            }
         | 
| 21 25 |  | 
| 22 26 | 
             
            if (!labels.includes('QA passed')) {
         | 
| @@ -24,7 +28,7 @@ if (!labels.includes('QA passed')) { | |
| 24 28 | 
             
            }
         | 
| 25 29 |  | 
| 26 30 | 
             
            if (!danger.github.pr.base.ref.includes('master')) {
         | 
| 27 | 
            -
               | 
| 31 | 
            +
              fail("PR base is not set to master!");
         | 
| 28 32 | 
             
            }
         | 
| 29 33 |  | 
| 30 34 | 
             
            // Warn when there is a big PR
         | 
    
        data/netsoft-danger.gemspec
    CHANGED
    
    
    
        data/yarn.lock
    CHANGED
    
    | @@ -2,9 +2,10 @@ | |
| 2 2 | 
             
            # yarn lockfile v1
         | 
| 3 3 |  | 
| 4 4 |  | 
| 5 | 
            -
            "@octokit/rest@^15.5 | 
| 6 | 
            -
              version "15. | 
| 7 | 
            -
              resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-15. | 
| 5 | 
            +
            "@octokit/rest@^15.9.5":
         | 
| 6 | 
            +
              version "15.18.3"
         | 
| 7 | 
            +
              resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-15.18.3.tgz#ff4ecbb784ca286c40cc1d568abceda6d99b36fc"
         | 
| 8 | 
            +
              integrity sha512-oHABAvvC83tPIuvUfWRaw9eLThFrCxBgywl+KvEwfTFjoCrMOfEaMh0r39+Ub/EEbV345GJiMzN+zPZ4kqOvbA==
         | 
| 8 9 | 
             
              dependencies:
         | 
| 9 10 | 
             
                before-after-hook "^1.1.0"
         | 
| 10 11 | 
             
                btoa-lite "^1.0.0"
         | 
| @@ -13,31 +14,37 @@ | |
| 13 14 | 
             
                https-proxy-agent "^2.2.0"
         | 
| 14 15 | 
             
                lodash "^4.17.4"
         | 
| 15 16 | 
             
                node-fetch "^2.1.1"
         | 
| 17 | 
            +
                universal-user-agent "^2.0.0"
         | 
| 16 18 | 
             
                url-template "^2.0.8"
         | 
| 17 19 |  | 
| 18 | 
            -
            agent-base@4, agent-base@^4. | 
| 19 | 
            -
              version "4. | 
| 20 | 
            -
              resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4. | 
| 20 | 
            +
            agent-base@4, agent-base@^4.3.0:
         | 
| 21 | 
            +
              version "4.3.0"
         | 
| 22 | 
            +
              resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee"
         | 
| 23 | 
            +
              integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==
         | 
| 21 24 | 
             
              dependencies:
         | 
| 22 25 | 
             
                es6-promisify "^5.0.0"
         | 
| 23 26 |  | 
| 24 27 | 
             
            ansi-regex@^2.0.0:
         | 
| 25 28 | 
             
              version "2.1.1"
         | 
| 26 29 | 
             
              resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
         | 
| 30 | 
            +
              integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
         | 
| 27 31 |  | 
| 28 32 | 
             
            ansi-regex@^3.0.0:
         | 
| 29 33 | 
             
              version "3.0.0"
         | 
| 30 34 | 
             
              resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
         | 
| 35 | 
            +
              integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
         | 
| 31 36 |  | 
| 32 37 | 
             
            ansi-styles@^3.2.1:
         | 
| 33 38 | 
             
              version "3.2.1"
         | 
| 34 39 | 
             
              resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
         | 
| 40 | 
            +
              integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
         | 
| 35 41 | 
             
              dependencies:
         | 
| 36 42 | 
             
                color-convert "^1.9.0"
         | 
| 37 43 |  | 
| 38 44 | 
             
            babel-polyfill@^6.23.0:
         | 
| 39 45 | 
             
              version "6.26.0"
         | 
| 40 46 | 
             
              resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
         | 
| 47 | 
            +
              integrity sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=
         | 
| 41 48 | 
             
              dependencies:
         | 
| 42 49 | 
             
                babel-runtime "^6.26.0"
         | 
| 43 50 | 
             
                core-js "^2.5.0"
         | 
| @@ -46,29 +53,35 @@ babel-polyfill@^6.23.0: | |
| 46 53 | 
             
            babel-runtime@^6.26.0:
         | 
| 47 54 | 
             
              version "6.26.0"
         | 
| 48 55 | 
             
              resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
         | 
| 56 | 
            +
              integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
         | 
| 49 57 | 
             
              dependencies:
         | 
| 50 58 | 
             
                core-js "^2.4.0"
         | 
| 51 59 | 
             
                regenerator-runtime "^0.11.0"
         | 
| 52 60 |  | 
| 53 61 | 
             
            before-after-hook@^1.1.0:
         | 
| 54 | 
            -
              version "1. | 
| 55 | 
            -
              resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-1. | 
| 62 | 
            +
              version "1.4.0"
         | 
| 63 | 
            +
              resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-1.4.0.tgz#2b6bf23dca4f32e628fd2747c10a37c74a4b484d"
         | 
| 64 | 
            +
              integrity sha512-l5r9ir56nda3qu14nAXIlyq1MmUSs0meCIaFAh8HwkFwP1F8eToOuS3ah2VAHHcY04jaYD7FpJC5JTXHYRbkzg==
         | 
| 56 65 |  | 
| 57 66 | 
             
            btoa-lite@^1.0.0:
         | 
| 58 67 | 
             
              version "1.0.0"
         | 
| 59 68 | 
             
              resolved "https://registry.yarnpkg.com/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337"
         | 
| 69 | 
            +
              integrity sha1-M3dm2hWAEhD92VbCLpxokaudAzc=
         | 
| 60 70 |  | 
| 61 71 | 
             
            buffer-equal-constant-time@1.0.1:
         | 
| 62 72 | 
             
              version "1.0.1"
         | 
| 63 73 | 
             
              resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819"
         | 
| 74 | 
            +
              integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=
         | 
| 64 75 |  | 
| 65 76 | 
             
            camelcase@^4.1.0:
         | 
| 66 77 | 
             
              version "4.1.0"
         | 
| 67 78 | 
             
              resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
         | 
| 79 | 
            +
              integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
         | 
| 68 80 |  | 
| 69 81 | 
             
            chalk@^2.3.0:
         | 
| 70 | 
            -
              version "2.4. | 
| 71 | 
            -
              resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4. | 
| 82 | 
            +
              version "2.4.2"
         | 
| 83 | 
            +
              resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
         | 
| 84 | 
            +
              integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
         | 
| 72 85 | 
             
              dependencies:
         | 
| 73 86 | 
             
                ansi-styles "^3.2.1"
         | 
| 74 87 | 
             
                escape-string-regexp "^1.0.5"
         | 
| @@ -77,6 +90,7 @@ chalk@^2.3.0: | |
| 77 90 | 
             
            cliui@^4.0.0:
         | 
| 78 91 | 
             
              version "4.1.0"
         | 
| 79 92 | 
             
              resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
         | 
| 93 | 
            +
              integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==
         | 
| 80 94 | 
             
              dependencies:
         | 
| 81 95 | 
             
                string-width "^2.1.1"
         | 
| 82 96 | 
             
                strip-ansi "^4.0.0"
         | 
| @@ -85,38 +99,47 @@ cliui@^4.0.0: | |
| 85 99 | 
             
            code-point-at@^1.0.0:
         | 
| 86 100 | 
             
              version "1.1.0"
         | 
| 87 101 | 
             
              resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
         | 
| 102 | 
            +
              integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
         | 
| 88 103 |  | 
| 89 104 | 
             
            color-convert@^1.9.0:
         | 
| 90 | 
            -
              version "1.9. | 
| 91 | 
            -
              resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9. | 
| 105 | 
            +
              version "1.9.3"
         | 
| 106 | 
            +
              resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
         | 
| 107 | 
            +
              integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
         | 
| 92 108 | 
             
              dependencies:
         | 
| 93 | 
            -
                color-name "1.1. | 
| 109 | 
            +
                color-name "1.1.3"
         | 
| 94 110 |  | 
| 95 | 
            -
            color-name@1.1. | 
| 96 | 
            -
              version "1.1. | 
| 97 | 
            -
              resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1. | 
| 111 | 
            +
            color-name@1.1.3:
         | 
| 112 | 
            +
              version "1.1.3"
         | 
| 113 | 
            +
              resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
         | 
| 114 | 
            +
              integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
         | 
| 98 115 |  | 
| 99 116 | 
             
            commander@^2.13.0:
         | 
| 100 | 
            -
              version "2. | 
| 101 | 
            -
              resolved "https://registry.yarnpkg.com/commander/-/commander-2. | 
| 117 | 
            +
              version "2.20.3"
         | 
| 118 | 
            +
              resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
         | 
| 119 | 
            +
              integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
         | 
| 102 120 |  | 
| 103 121 | 
             
            core-js@^2.4.0, core-js@^2.5.0:
         | 
| 104 | 
            -
              version "2. | 
| 105 | 
            -
              resolved "https://registry.yarnpkg.com/core-js/-/core-js-2. | 
| 106 | 
            -
             | 
| 107 | 
            -
             | 
| 108 | 
            -
             | 
| 109 | 
            -
               | 
| 110 | 
            -
               | 
| 111 | 
            -
             | 
| 122 | 
            +
              version "2.6.11"
         | 
| 123 | 
            +
              resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
         | 
| 124 | 
            +
              integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
         | 
| 125 | 
            +
             | 
| 126 | 
            +
            cross-spawn@^6.0.0:
         | 
| 127 | 
            +
              version "6.0.5"
         | 
| 128 | 
            +
              resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
         | 
| 129 | 
            +
              integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
         | 
| 130 | 
            +
              dependencies:
         | 
| 131 | 
            +
                nice-try "^1.0.4"
         | 
| 132 | 
            +
                path-key "^2.0.1"
         | 
| 133 | 
            +
                semver "^5.5.0"
         | 
| 112 134 | 
             
                shebang-command "^1.2.0"
         | 
| 113 135 | 
             
                which "^1.2.9"
         | 
| 114 136 |  | 
| 115 137 | 
             
            danger@^3.7.16:
         | 
| 116 | 
            -
              version "3. | 
| 117 | 
            -
              resolved "https://registry.yarnpkg.com/danger/-/danger-3. | 
| 138 | 
            +
              version "3.9.0"
         | 
| 139 | 
            +
              resolved "https://registry.yarnpkg.com/danger/-/danger-3.9.0.tgz#41e6257fcfd4b92dcde16a47c96f5731931b5108"
         | 
| 140 | 
            +
              integrity sha512-alFPZBK/ceTkEzjzrz1LOhi30Zn/2ZTLtBTUpqPhAEIV7G3CbjWYmZJdxnZtjW4cCh6UjHIgzyhMK6+MmnZP5g==
         | 
| 118 141 | 
             
              dependencies:
         | 
| 119 | 
            -
                "@octokit/rest" "^15.5 | 
| 142 | 
            +
                "@octokit/rest" "^15.9.5"
         | 
| 120 143 | 
             
                babel-polyfill "^6.23.0"
         | 
| 121 144 | 
             
                chalk "^2.3.0"
         | 
| 122 145 | 
             
                commander "^2.13.0"
         | 
| @@ -147,42 +170,63 @@ danger@^3.7.16: | |
| 147 170 | 
             
                vm2 "^3.6.0"
         | 
| 148 171 | 
             
                voca "^1.4.0"
         | 
| 149 172 |  | 
| 150 | 
            -
            debug@3.1.0 | 
| 173 | 
            +
            debug@3.1.0:
         | 
| 151 174 | 
             
              version "3.1.0"
         | 
| 152 175 | 
             
              resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
         | 
| 176 | 
            +
              integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
         | 
| 153 177 | 
             
              dependencies:
         | 
| 154 178 | 
             
                ms "2.0.0"
         | 
| 155 179 |  | 
| 180 | 
            +
            debug@^3.1.0:
         | 
| 181 | 
            +
              version "3.2.6"
         | 
| 182 | 
            +
              resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
         | 
| 183 | 
            +
              integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
         | 
| 184 | 
            +
              dependencies:
         | 
| 185 | 
            +
                ms "^2.1.1"
         | 
| 186 | 
            +
             | 
| 156 187 | 
             
            decamelize@^1.1.1:
         | 
| 157 188 | 
             
              version "1.2.0"
         | 
| 158 189 | 
             
              resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
         | 
| 190 | 
            +
              integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
         | 
| 159 191 |  | 
| 160 | 
            -
            ecdsa-sig-formatter@1.0. | 
| 161 | 
            -
              version "1.0. | 
| 162 | 
            -
              resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0. | 
| 192 | 
            +
            ecdsa-sig-formatter@1.0.11:
         | 
| 193 | 
            +
              version "1.0.11"
         | 
| 194 | 
            +
              resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf"
         | 
| 195 | 
            +
              integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==
         | 
| 163 196 | 
             
              dependencies:
         | 
| 164 197 | 
             
                safe-buffer "^5.0.1"
         | 
| 165 198 |  | 
| 199 | 
            +
            end-of-stream@^1.1.0:
         | 
| 200 | 
            +
              version "1.4.4"
         | 
| 201 | 
            +
              resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
         | 
| 202 | 
            +
              integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
         | 
| 203 | 
            +
              dependencies:
         | 
| 204 | 
            +
                once "^1.4.0"
         | 
| 205 | 
            +
             | 
| 166 206 | 
             
            es6-promise@^4.0.3:
         | 
| 167 | 
            -
              version "4.2. | 
| 168 | 
            -
              resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2. | 
| 207 | 
            +
              version "4.2.8"
         | 
| 208 | 
            +
              resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a"
         | 
| 209 | 
            +
              integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==
         | 
| 169 210 |  | 
| 170 211 | 
             
            es6-promisify@^5.0.0:
         | 
| 171 212 | 
             
              version "5.0.0"
         | 
| 172 213 | 
             
              resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203"
         | 
| 214 | 
            +
              integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=
         | 
| 173 215 | 
             
              dependencies:
         | 
| 174 216 | 
             
                es6-promise "^4.0.3"
         | 
| 175 217 |  | 
| 176 218 | 
             
            escape-string-regexp@^1.0.5:
         | 
| 177 219 | 
             
              version "1.0.5"
         | 
| 178 220 | 
             
              resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
         | 
| 221 | 
            +
              integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
         | 
| 179 222 |  | 
| 180 | 
            -
            execa@^0. | 
| 181 | 
            -
              version "0. | 
| 182 | 
            -
              resolved "https://registry.yarnpkg.com/execa/-/execa-0. | 
| 223 | 
            +
            execa@^1.0.0:
         | 
| 224 | 
            +
              version "1.0.0"
         | 
| 225 | 
            +
              resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
         | 
| 226 | 
            +
              integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
         | 
| 183 227 | 
             
              dependencies:
         | 
| 184 | 
            -
                cross-spawn "^ | 
| 185 | 
            -
                get-stream "^ | 
| 228 | 
            +
                cross-spawn "^6.0.0"
         | 
| 229 | 
            +
                get-stream "^4.0.0"
         | 
| 186 230 | 
             
                is-stream "^1.1.0"
         | 
| 187 231 | 
             
                npm-run-path "^2.0.0"
         | 
| 188 232 | 
             
                p-finally "^1.0.0"
         | 
| @@ -192,40 +236,50 @@ execa@^0.7.0: | |
| 192 236 | 
             
            expand-tilde@^2.0.2:
         | 
| 193 237 | 
             
              version "2.0.2"
         | 
| 194 238 | 
             
              resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
         | 
| 239 | 
            +
              integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=
         | 
| 195 240 | 
             
              dependencies:
         | 
| 196 241 | 
             
                homedir-polyfill "^1.0.1"
         | 
| 197 242 |  | 
| 198 243 | 
             
            extend-shallow@^2.0.1:
         | 
| 199 244 | 
             
              version "2.0.1"
         | 
| 200 245 | 
             
              resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
         | 
| 246 | 
            +
              integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
         | 
| 201 247 | 
             
              dependencies:
         | 
| 202 248 | 
             
                is-extendable "^0.1.0"
         | 
| 203 249 |  | 
| 204 250 | 
             
            find-up@^2.1.0:
         | 
| 205 251 | 
             
              version "2.1.0"
         | 
| 206 252 | 
             
              resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
         | 
| 253 | 
            +
              integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
         | 
| 207 254 | 
             
              dependencies:
         | 
| 208 255 | 
             
                locate-path "^2.0.0"
         | 
| 209 256 |  | 
| 210 257 | 
             
            fs-exists-sync@^0.1.0:
         | 
| 211 258 | 
             
              version "0.1.0"
         | 
| 212 259 | 
             
              resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add"
         | 
| 260 | 
            +
              integrity sha1-mC1ok6+RjnLQjeyehnP/K1qNat0=
         | 
| 213 261 |  | 
| 214 262 | 
             
            get-caller-file@^1.0.1:
         | 
| 215 263 | 
             
              version "1.0.3"
         | 
| 216 264 | 
             
              resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
         | 
| 265 | 
            +
              integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==
         | 
| 217 266 |  | 
| 218 267 | 
             
            get-stdin@^6.0.0:
         | 
| 219 268 | 
             
              version "6.0.0"
         | 
| 220 269 | 
             
              resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b"
         | 
| 270 | 
            +
              integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
         | 
| 221 271 |  | 
| 222 | 
            -
            get-stream@^ | 
| 223 | 
            -
              version " | 
| 224 | 
            -
              resolved "https://registry.yarnpkg.com/get-stream/-/get-stream- | 
| 272 | 
            +
            get-stream@^4.0.0:
         | 
| 273 | 
            +
              version "4.1.0"
         | 
| 274 | 
            +
              resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
         | 
| 275 | 
            +
              integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
         | 
| 276 | 
            +
              dependencies:
         | 
| 277 | 
            +
                pump "^3.0.0"
         | 
| 225 278 |  | 
| 226 279 | 
             
            git-config-path@^1.0.1:
         | 
| 227 280 | 
             
              version "1.0.1"
         | 
| 228 281 | 
             
              resolved "https://registry.yarnpkg.com/git-config-path/-/git-config-path-1.0.1.tgz#6d33f7ed63db0d0e118131503bab3aca47d54664"
         | 
| 282 | 
            +
              integrity sha1-bTP37WPbDQ4RgTFQO6s6ykfVRmQ=
         | 
| 229 283 | 
             
              dependencies:
         | 
| 230 284 | 
             
                extend-shallow "^2.0.1"
         | 
| 231 285 | 
             
                fs-exists-sync "^0.1.0"
         | 
| @@ -234,68 +288,82 @@ git-config-path@^1.0.1: | |
| 234 288 | 
             
            has-flag@^2.0.0:
         | 
| 235 289 | 
             
              version "2.0.0"
         | 
| 236 290 | 
             
              resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
         | 
| 291 | 
            +
              integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=
         | 
| 237 292 |  | 
| 238 293 | 
             
            has-flag@^3.0.0:
         | 
| 239 294 | 
             
              version "3.0.0"
         | 
| 240 295 | 
             
              resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
         | 
| 296 | 
            +
              integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
         | 
| 241 297 |  | 
| 242 298 | 
             
            homedir-polyfill@^1.0.0, homedir-polyfill@^1.0.1:
         | 
| 243 | 
            -
              version "1.0. | 
| 244 | 
            -
              resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0. | 
| 299 | 
            +
              version "1.0.3"
         | 
| 300 | 
            +
              resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
         | 
| 301 | 
            +
              integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==
         | 
| 245 302 | 
             
              dependencies:
         | 
| 246 303 | 
             
                parse-passwd "^1.0.0"
         | 
| 247 304 |  | 
| 248 305 | 
             
            http-proxy-agent@^2.1.0:
         | 
| 249 306 | 
             
              version "2.1.0"
         | 
| 250 307 | 
             
              resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405"
         | 
| 308 | 
            +
              integrity sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==
         | 
| 251 309 | 
             
              dependencies:
         | 
| 252 310 | 
             
                agent-base "4"
         | 
| 253 311 | 
             
                debug "3.1.0"
         | 
| 254 312 |  | 
| 255 313 | 
             
            https-proxy-agent@^2.2.0, https-proxy-agent@^2.2.1:
         | 
| 256 | 
            -
              version "2.2. | 
| 257 | 
            -
              resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2. | 
| 314 | 
            +
              version "2.2.4"
         | 
| 315 | 
            +
              resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b"
         | 
| 316 | 
            +
              integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==
         | 
| 258 317 | 
             
              dependencies:
         | 
| 259 | 
            -
                agent-base "^4. | 
| 318 | 
            +
                agent-base "^4.3.0"
         | 
| 260 319 | 
             
                debug "^3.1.0"
         | 
| 261 320 |  | 
| 262 321 | 
             
            hyperlinker@^1.0.0:
         | 
| 263 322 | 
             
              version "1.0.0"
         | 
| 264 323 | 
             
              resolved "https://registry.yarnpkg.com/hyperlinker/-/hyperlinker-1.0.0.tgz#23dc9e38a206b208ee49bc2d6c8ef47027df0c0e"
         | 
| 324 | 
            +
              integrity sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==
         | 
| 265 325 |  | 
| 266 326 | 
             
            ini@^1.3.5:
         | 
| 267 327 | 
             
              version "1.3.5"
         | 
| 268 328 | 
             
              resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
         | 
| 329 | 
            +
              integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
         | 
| 269 330 |  | 
| 270 | 
            -
            invert-kv@^ | 
| 271 | 
            -
              version " | 
| 272 | 
            -
              resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv- | 
| 331 | 
            +
            invert-kv@^2.0.0:
         | 
| 332 | 
            +
              version "2.0.0"
         | 
| 333 | 
            +
              resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
         | 
| 334 | 
            +
              integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==
         | 
| 273 335 |  | 
| 274 336 | 
             
            is-extendable@^0.1.0:
         | 
| 275 337 | 
             
              version "0.1.1"
         | 
| 276 338 | 
             
              resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
         | 
| 339 | 
            +
              integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
         | 
| 277 340 |  | 
| 278 341 | 
             
            is-fullwidth-code-point@^1.0.0:
         | 
| 279 342 | 
             
              version "1.0.0"
         | 
| 280 343 | 
             
              resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
         | 
| 344 | 
            +
              integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
         | 
| 281 345 | 
             
              dependencies:
         | 
| 282 346 | 
             
                number-is-nan "^1.0.0"
         | 
| 283 347 |  | 
| 284 348 | 
             
            is-fullwidth-code-point@^2.0.0:
         | 
| 285 349 | 
             
              version "2.0.0"
         | 
| 286 350 | 
             
              resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
         | 
| 351 | 
            +
              integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
         | 
| 287 352 |  | 
| 288 353 | 
             
            is-stream@^1.1.0:
         | 
| 289 354 | 
             
              version "1.1.0"
         | 
| 290 355 | 
             
              resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
         | 
| 356 | 
            +
              integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
         | 
| 291 357 |  | 
| 292 358 | 
             
            isexe@^2.0.0:
         | 
| 293 359 | 
             
              version "2.0.0"
         | 
| 294 360 | 
             
              resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
         | 
| 361 | 
            +
              integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
         | 
| 295 362 |  | 
| 296 363 | 
             
            jsome@^2.3.25:
         | 
| 297 364 | 
             
              version "2.5.0"
         | 
| 298 365 | 
             
              resolved "https://registry.yarnpkg.com/jsome/-/jsome-2.5.0.tgz#5e417eef4341ffeb83ee8bfa9265b36d56fe49ed"
         | 
| 366 | 
            +
              integrity sha1-XkF+70NB/+uD7ov6kmWzbVb+Se0=
         | 
| 299 367 | 
             
              dependencies:
         | 
| 300 368 | 
             
                chalk "^2.3.0"
         | 
| 301 369 | 
             
                json-stringify-safe "^5.0.1"
         | 
| @@ -304,22 +372,26 @@ jsome@^2.3.25: | |
| 304 372 | 
             
            json-stringify-safe@^5.0.1:
         | 
| 305 373 | 
             
              version "5.0.1"
         | 
| 306 374 | 
             
              resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
         | 
| 375 | 
            +
              integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
         | 
| 307 376 |  | 
| 308 377 | 
             
            json5@^1.0.0:
         | 
| 309 378 | 
             
              version "1.0.1"
         | 
| 310 379 | 
             
              resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
         | 
| 380 | 
            +
              integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
         | 
| 311 381 | 
             
              dependencies:
         | 
| 312 382 | 
             
                minimist "^1.2.0"
         | 
| 313 383 |  | 
| 314 384 | 
             
            jsonpointer@^4.0.1:
         | 
| 315 385 | 
             
              version "4.0.1"
         | 
| 316 386 | 
             
              resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
         | 
| 387 | 
            +
              integrity sha1-T9kss04OnbPInIYi7PUfm5eMbLk=
         | 
| 317 388 |  | 
| 318 389 | 
             
            jsonwebtoken@^8.2.1:
         | 
| 319 | 
            -
              version "8. | 
| 320 | 
            -
              resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8. | 
| 390 | 
            +
              version "8.5.1"
         | 
| 391 | 
            +
              resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d"
         | 
| 392 | 
            +
              integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==
         | 
| 321 393 | 
             
              dependencies:
         | 
| 322 | 
            -
                jws "^3. | 
| 394 | 
            +
                jws "^3.2.2"
         | 
| 323 395 | 
             
                lodash.includes "^4.3.0"
         | 
| 324 396 | 
             
                lodash.isboolean "^3.0.3"
         | 
| 325 397 | 
             
                lodash.isinteger "^4.0.4"
         | 
| @@ -328,31 +400,36 @@ jsonwebtoken@^8.2.1: | |
| 328 400 | 
             
                lodash.isstring "^4.0.1"
         | 
| 329 401 | 
             
                lodash.once "^4.0.0"
         | 
| 330 402 | 
             
                ms "^2.1.1"
         | 
| 403 | 
            +
                semver "^5.6.0"
         | 
| 331 404 |  | 
| 332 | 
            -
            jwa@^1.1 | 
| 333 | 
            -
              version "1.1 | 
| 334 | 
            -
              resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1. | 
| 405 | 
            +
            jwa@^1.4.1:
         | 
| 406 | 
            +
              version "1.4.1"
         | 
| 407 | 
            +
              resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a"
         | 
| 408 | 
            +
              integrity sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==
         | 
| 335 409 | 
             
              dependencies:
         | 
| 336 410 | 
             
                buffer-equal-constant-time "1.0.1"
         | 
| 337 | 
            -
                ecdsa-sig-formatter "1.0. | 
| 411 | 
            +
                ecdsa-sig-formatter "1.0.11"
         | 
| 338 412 | 
             
                safe-buffer "^5.0.1"
         | 
| 339 413 |  | 
| 340 | 
            -
            jws@^3. | 
| 341 | 
            -
              version "3. | 
| 342 | 
            -
              resolved "https://registry.yarnpkg.com/jws/-/jws-3. | 
| 414 | 
            +
            jws@^3.2.2:
         | 
| 415 | 
            +
              version "3.2.2"
         | 
| 416 | 
            +
              resolved "https://registry.yarnpkg.com/jws/-/jws-3.2.2.tgz#001099f3639468c9414000e99995fa52fb478304"
         | 
| 417 | 
            +
              integrity sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==
         | 
| 343 418 | 
             
              dependencies:
         | 
| 344 | 
            -
                jwa "^1.1 | 
| 419 | 
            +
                jwa "^1.4.1"
         | 
| 345 420 | 
             
                safe-buffer "^5.0.1"
         | 
| 346 421 |  | 
| 347 | 
            -
            lcid@^ | 
| 348 | 
            -
              version " | 
| 349 | 
            -
              resolved "https://registry.yarnpkg.com/lcid/-/lcid- | 
| 422 | 
            +
            lcid@^2.0.0:
         | 
| 423 | 
            +
              version "2.0.0"
         | 
| 424 | 
            +
              resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf"
         | 
| 425 | 
            +
              integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==
         | 
| 350 426 | 
             
              dependencies:
         | 
| 351 | 
            -
                invert-kv "^ | 
| 427 | 
            +
                invert-kv "^2.0.0"
         | 
| 352 428 |  | 
| 353 429 | 
             
            locate-path@^2.0.0:
         | 
| 354 430 | 
             
              version "2.0.0"
         | 
| 355 431 | 
             
              resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
         | 
| 432 | 
            +
              integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
         | 
| 356 433 | 
             
              dependencies:
         | 
| 357 434 | 
             
                p-locate "^2.0.0"
         | 
| 358 435 | 
             
                path-exists "^3.0.0"
         | 
| @@ -360,129 +437,193 @@ locate-path@^2.0.0: | |
| 360 437 | 
             
            lodash.find@^4.6.0:
         | 
| 361 438 | 
             
              version "4.6.0"
         | 
| 362 439 | 
             
              resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1"
         | 
| 440 | 
            +
              integrity sha1-ywcE1Hq3F4n/oN6Ll92Sb7iLE7E=
         | 
| 363 441 |  | 
| 364 442 | 
             
            lodash.includes@^4.3.0:
         | 
| 365 443 | 
             
              version "4.3.0"
         | 
| 366 444 | 
             
              resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f"
         | 
| 445 | 
            +
              integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=
         | 
| 367 446 |  | 
| 368 447 | 
             
            lodash.isboolean@^3.0.3:
         | 
| 369 448 | 
             
              version "3.0.3"
         | 
| 370 449 | 
             
              resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6"
         | 
| 450 | 
            +
              integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=
         | 
| 371 451 |  | 
| 372 452 | 
             
            lodash.isinteger@^4.0.4:
         | 
| 373 453 | 
             
              version "4.0.4"
         | 
| 374 454 | 
             
              resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343"
         | 
| 455 | 
            +
              integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=
         | 
| 375 456 |  | 
| 376 457 | 
             
            lodash.isnumber@^3.0.3:
         | 
| 377 458 | 
             
              version "3.0.3"
         | 
| 378 459 | 
             
              resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc"
         | 
| 460 | 
            +
              integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=
         | 
| 379 461 |  | 
| 380 462 | 
             
            lodash.isobject@^3.0.2:
         | 
| 381 463 | 
             
              version "3.0.2"
         | 
| 382 464 | 
             
              resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d"
         | 
| 465 | 
            +
              integrity sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0=
         | 
| 383 466 |  | 
| 384 467 | 
             
            lodash.isplainobject@^4.0.6:
         | 
| 385 468 | 
             
              version "4.0.6"
         | 
| 386 469 | 
             
              resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
         | 
| 470 | 
            +
              integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=
         | 
| 387 471 |  | 
| 388 472 | 
             
            lodash.isstring@^4.0.1:
         | 
| 389 473 | 
             
              version "4.0.1"
         | 
| 390 474 | 
             
              resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
         | 
| 475 | 
            +
              integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=
         | 
| 391 476 |  | 
| 392 477 | 
             
            lodash.keys@^4.0.8:
         | 
| 393 478 | 
             
              version "4.2.0"
         | 
| 394 479 | 
             
              resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-4.2.0.tgz#a08602ac12e4fb83f91fc1fb7a360a4d9ba35205"
         | 
| 480 | 
            +
              integrity sha1-oIYCrBLk+4P5H8H7ejYKTZujUgU=
         | 
| 395 481 |  | 
| 396 482 | 
             
            lodash.once@^4.0.0:
         | 
| 397 483 | 
             
              version "4.1.1"
         | 
| 398 484 | 
             
              resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
         | 
| 485 | 
            +
              integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=
         | 
| 399 486 |  | 
| 400 487 | 
             
            lodash@^4.17.4:
         | 
| 401 | 
            -
              version "4.17. | 
| 402 | 
            -
              resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17. | 
| 488 | 
            +
              version "4.17.15"
         | 
| 489 | 
            +
              resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
         | 
| 490 | 
            +
              integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
         | 
| 491 | 
            +
             | 
| 492 | 
            +
            macos-release@^2.2.0:
         | 
| 493 | 
            +
              version "2.3.0"
         | 
| 494 | 
            +
              resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.3.0.tgz#eb1930b036c0800adebccd5f17bc4c12de8bb71f"
         | 
| 495 | 
            +
              integrity sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA==
         | 
| 403 496 |  | 
| 404 | 
            -
             | 
| 405 | 
            -
              version " | 
| 406 | 
            -
              resolved "https://registry.yarnpkg.com/ | 
| 497 | 
            +
            map-age-cleaner@^0.1.1:
         | 
| 498 | 
            +
              version "0.1.3"
         | 
| 499 | 
            +
              resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
         | 
| 500 | 
            +
              integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==
         | 
| 407 501 | 
             
              dependencies:
         | 
| 408 | 
            -
                 | 
| 409 | 
            -
                yallist "^2.1.2"
         | 
| 502 | 
            +
                p-defer "^1.0.0"
         | 
| 410 503 |  | 
| 411 | 
            -
            mem@^ | 
| 412 | 
            -
              version " | 
| 413 | 
            -
              resolved "https://registry.yarnpkg.com/mem/-/mem- | 
| 504 | 
            +
            mem@^4.0.0:
         | 
| 505 | 
            +
              version "4.3.0"
         | 
| 506 | 
            +
              resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178"
         | 
| 507 | 
            +
              integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==
         | 
| 414 508 | 
             
              dependencies:
         | 
| 415 | 
            -
                 | 
| 509 | 
            +
                map-age-cleaner "^0.1.1"
         | 
| 510 | 
            +
                mimic-fn "^2.0.0"
         | 
| 511 | 
            +
                p-is-promise "^2.0.0"
         | 
| 416 512 |  | 
| 417 | 
            -
            mimic-fn@^ | 
| 418 | 
            -
              version "1. | 
| 419 | 
            -
              resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1. | 
| 513 | 
            +
            mimic-fn@^2.0.0:
         | 
| 514 | 
            +
              version "2.1.0"
         | 
| 515 | 
            +
              resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
         | 
| 516 | 
            +
              integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
         | 
| 420 517 |  | 
| 421 518 | 
             
            minimist@^1.2.0:
         | 
| 422 | 
            -
              version "1.2. | 
| 423 | 
            -
              resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2. | 
| 519 | 
            +
              version "1.2.5"
         | 
| 520 | 
            +
              resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
         | 
| 521 | 
            +
              integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
         | 
| 424 522 |  | 
| 425 523 | 
             
            ms@2.0.0:
         | 
| 426 524 | 
             
              version "2.0.0"
         | 
| 427 525 | 
             
              resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
         | 
| 526 | 
            +
              integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
         | 
| 428 527 |  | 
| 429 528 | 
             
            ms@^2.1.1:
         | 
| 430 | 
            -
              version "2.1. | 
| 431 | 
            -
              resolved "https://registry.yarnpkg.com/ms/-/ms-2.1. | 
| 529 | 
            +
              version "2.1.2"
         | 
| 530 | 
            +
              resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
         | 
| 531 | 
            +
              integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
         | 
| 532 | 
            +
             | 
| 533 | 
            +
            nice-try@^1.0.4:
         | 
| 534 | 
            +
              version "1.0.5"
         | 
| 535 | 
            +
              resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
         | 
| 536 | 
            +
              integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
         | 
| 432 537 |  | 
| 433 538 | 
             
            node-cleanup@^2.1.2:
         | 
| 434 539 | 
             
              version "2.1.2"
         | 
| 435 540 | 
             
              resolved "https://registry.yarnpkg.com/node-cleanup/-/node-cleanup-2.1.2.tgz#7ac19abd297e09a7f72a71545d951b517e4dde2c"
         | 
| 541 | 
            +
              integrity sha1-esGavSl+Caf3KnFUXZUbUX5N3iw=
         | 
| 436 542 |  | 
| 437 543 | 
             
            node-fetch@^2.1.1, node-fetch@^2.1.2:
         | 
| 438 | 
            -
              version "2. | 
| 439 | 
            -
              resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2. | 
| 544 | 
            +
              version "2.6.0"
         | 
| 545 | 
            +
              resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd"
         | 
| 546 | 
            +
              integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==
         | 
| 440 547 |  | 
| 441 548 | 
             
            npm-run-path@^2.0.0:
         | 
| 442 549 | 
             
              version "2.0.2"
         | 
| 443 550 | 
             
              resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
         | 
| 551 | 
            +
              integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
         | 
| 444 552 | 
             
              dependencies:
         | 
| 445 553 | 
             
                path-key "^2.0.0"
         | 
| 446 554 |  | 
| 447 555 | 
             
            number-is-nan@^1.0.0:
         | 
| 448 556 | 
             
              version "1.0.1"
         | 
| 449 557 | 
             
              resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
         | 
| 558 | 
            +
              integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
         | 
| 450 559 |  | 
| 451 | 
            -
             | 
| 452 | 
            -
              version " | 
| 453 | 
            -
              resolved "https://registry.yarnpkg.com/ | 
| 560 | 
            +
            once@^1.3.1, once@^1.4.0:
         | 
| 561 | 
            +
              version "1.4.0"
         | 
| 562 | 
            +
              resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
         | 
| 563 | 
            +
              integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
         | 
| 564 | 
            +
              dependencies:
         | 
| 565 | 
            +
                wrappy "1"
         | 
| 566 | 
            +
             | 
| 567 | 
            +
            os-locale@^3.1.0:
         | 
| 568 | 
            +
              version "3.1.0"
         | 
| 569 | 
            +
              resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a"
         | 
| 570 | 
            +
              integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==
         | 
| 571 | 
            +
              dependencies:
         | 
| 572 | 
            +
                execa "^1.0.0"
         | 
| 573 | 
            +
                lcid "^2.0.0"
         | 
| 574 | 
            +
                mem "^4.0.0"
         | 
| 575 | 
            +
             | 
| 576 | 
            +
            os-name@^3.0.0:
         | 
| 577 | 
            +
              version "3.1.0"
         | 
| 578 | 
            +
              resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801"
         | 
| 579 | 
            +
              integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==
         | 
| 454 580 | 
             
              dependencies:
         | 
| 455 | 
            -
                 | 
| 456 | 
            -
                 | 
| 457 | 
            -
             | 
| 581 | 
            +
                macos-release "^2.2.0"
         | 
| 582 | 
            +
                windows-release "^3.1.0"
         | 
| 583 | 
            +
             | 
| 584 | 
            +
            p-defer@^1.0.0:
         | 
| 585 | 
            +
              version "1.0.0"
         | 
| 586 | 
            +
              resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
         | 
| 587 | 
            +
              integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
         | 
| 458 588 |  | 
| 459 589 | 
             
            p-finally@^1.0.0:
         | 
| 460 590 | 
             
              version "1.0.0"
         | 
| 461 591 | 
             
              resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
         | 
| 592 | 
            +
              integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
         | 
| 593 | 
            +
             | 
| 594 | 
            +
            p-is-promise@^2.0.0:
         | 
| 595 | 
            +
              version "2.1.0"
         | 
| 596 | 
            +
              resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e"
         | 
| 597 | 
            +
              integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==
         | 
| 462 598 |  | 
| 463 599 | 
             
            p-limit@^1.1.0, p-limit@^1.2.0:
         | 
| 464 600 | 
             
              version "1.3.0"
         | 
| 465 601 | 
             
              resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
         | 
| 602 | 
            +
              integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
         | 
| 466 603 | 
             
              dependencies:
         | 
| 467 604 | 
             
                p-try "^1.0.0"
         | 
| 468 605 |  | 
| 469 606 | 
             
            p-locate@^2.0.0:
         | 
| 470 607 | 
             
              version "2.0.0"
         | 
| 471 608 | 
             
              resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
         | 
| 609 | 
            +
              integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
         | 
| 472 610 | 
             
              dependencies:
         | 
| 473 611 | 
             
                p-limit "^1.1.0"
         | 
| 474 612 |  | 
| 475 613 | 
             
            p-try@^1.0.0:
         | 
| 476 614 | 
             
              version "1.0.0"
         | 
| 477 615 | 
             
              resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
         | 
| 616 | 
            +
              integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
         | 
| 478 617 |  | 
| 479 618 | 
             
            parse-diff@^0.4.2:
         | 
| 480 619 | 
             
              version "0.4.2"
         | 
| 481 620 | 
             
              resolved "https://registry.yarnpkg.com/parse-diff/-/parse-diff-0.4.2.tgz#b173390e916564e8c70ccd37756047941e5b3ef2"
         | 
| 621 | 
            +
              integrity sha512-YYQzII66NqysdPgDVxzbdwNXMv5Ww562JSZSXZ4RIPoolzD7yqA4crgD8swrs+JNcvjoZMKMiT4kGcLYvf6IoA==
         | 
| 482 622 |  | 
| 483 623 | 
             
            parse-git-config@^2.0.2:
         | 
| 484 | 
            -
              version "2.0. | 
| 485 | 
            -
              resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-2.0. | 
| 624 | 
            +
              version "2.0.3"
         | 
| 625 | 
            +
              resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-2.0.3.tgz#6fb840d4a956e28b971c97b33a5deb73a6d5b6bb"
         | 
| 626 | 
            +
              integrity sha512-Js7ueMZOVSZ3tP8C7E3KZiHv6QQl7lnJ+OkbxoaFazzSa2KyEHqApfGbU3XboUgUnq4ZuUmskUpYKTNx01fm5A==
         | 
| 486 627 | 
             
              dependencies:
         | 
| 487 628 | 
             
                expand-tilde "^2.0.2"
         | 
| 488 629 | 
             
                git-config-path "^1.0.1"
         | 
| @@ -491,86 +632,114 @@ parse-git-config@^2.0.2: | |
| 491 632 | 
             
            parse-github-url@^1.0.2:
         | 
| 492 633 | 
             
              version "1.0.2"
         | 
| 493 634 | 
             
              resolved "https://registry.yarnpkg.com/parse-github-url/-/parse-github-url-1.0.2.tgz#242d3b65cbcdda14bb50439e3242acf6971db395"
         | 
| 635 | 
            +
              integrity sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==
         | 
| 494 636 |  | 
| 495 637 | 
             
            parse-link-header@^1.0.1:
         | 
| 496 638 | 
             
              version "1.0.1"
         | 
| 497 639 | 
             
              resolved "https://registry.yarnpkg.com/parse-link-header/-/parse-link-header-1.0.1.tgz#bedfe0d2118aeb84be75e7b025419ec8a61140a7"
         | 
| 640 | 
            +
              integrity sha1-vt/g0hGK64S+deewJUGeyKYRQKc=
         | 
| 498 641 | 
             
              dependencies:
         | 
| 499 642 | 
             
                xtend "~4.0.1"
         | 
| 500 643 |  | 
| 501 644 | 
             
            parse-passwd@^1.0.0:
         | 
| 502 645 | 
             
              version "1.0.0"
         | 
| 503 646 | 
             
              resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
         | 
| 647 | 
            +
              integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
         | 
| 504 648 |  | 
| 505 649 | 
             
            path-exists@^3.0.0:
         | 
| 506 650 | 
             
              version "3.0.0"
         | 
| 507 651 | 
             
              resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
         | 
| 652 | 
            +
              integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
         | 
| 508 653 |  | 
| 509 | 
            -
            path-key@^2.0.0:
         | 
| 654 | 
            +
            path-key@^2.0.0, path-key@^2.0.1:
         | 
| 510 655 | 
             
              version "2.0.1"
         | 
| 511 656 | 
             
              resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
         | 
| 657 | 
            +
              integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
         | 
| 512 658 |  | 
| 513 659 | 
             
            pinpoint@^1.1.0:
         | 
| 514 660 | 
             
              version "1.1.0"
         | 
| 515 661 | 
             
              resolved "https://registry.yarnpkg.com/pinpoint/-/pinpoint-1.1.0.tgz#0cf7757a6977f1bf7f6a32207b709e377388e874"
         | 
| 662 | 
            +
              integrity sha1-DPd1eml38b9/ajIge3CeN3OI6HQ=
         | 
| 516 663 |  | 
| 517 | 
            -
             | 
| 518 | 
            -
              version " | 
| 519 | 
            -
              resolved "https://registry.yarnpkg.com/ | 
| 664 | 
            +
            pump@^3.0.0:
         | 
| 665 | 
            +
              version "3.0.0"
         | 
| 666 | 
            +
              resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
         | 
| 667 | 
            +
              integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
         | 
| 668 | 
            +
              dependencies:
         | 
| 669 | 
            +
                end-of-stream "^1.1.0"
         | 
| 670 | 
            +
                once "^1.3.1"
         | 
| 520 671 |  | 
| 521 672 | 
             
            readline-sync@^1.4.9:
         | 
| 522 | 
            -
              version "1.4. | 
| 523 | 
            -
              resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4. | 
| 673 | 
            +
              version "1.4.10"
         | 
| 674 | 
            +
              resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.10.tgz#41df7fbb4b6312d673011594145705bf56d8873b"
         | 
| 675 | 
            +
              integrity sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==
         | 
| 524 676 |  | 
| 525 677 | 
             
            regenerator-runtime@^0.10.5:
         | 
| 526 678 | 
             
              version "0.10.5"
         | 
| 527 679 | 
             
              resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
         | 
| 680 | 
            +
              integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=
         | 
| 528 681 |  | 
| 529 682 | 
             
            regenerator-runtime@^0.11.0:
         | 
| 530 683 | 
             
              version "0.11.1"
         | 
| 531 684 | 
             
              resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
         | 
| 685 | 
            +
              integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
         | 
| 532 686 |  | 
| 533 687 | 
             
            require-directory@^2.1.1:
         | 
| 534 688 | 
             
              version "2.1.1"
         | 
| 535 689 | 
             
              resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
         | 
| 690 | 
            +
              integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
         | 
| 536 691 |  | 
| 537 692 | 
             
            require-from-string@^2.0.2:
         | 
| 538 693 | 
             
              version "2.0.2"
         | 
| 539 694 | 
             
              resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
         | 
| 695 | 
            +
              integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
         | 
| 540 696 |  | 
| 541 697 | 
             
            require-main-filename@^1.0.1:
         | 
| 542 698 | 
             
              version "1.0.1"
         | 
| 543 699 | 
             
              resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
         | 
| 700 | 
            +
              integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=
         | 
| 544 701 |  | 
| 545 702 | 
             
            rfc6902@^2.2.2:
         | 
| 546 703 | 
             
              version "2.4.0"
         | 
| 547 704 | 
             
              resolved "https://registry.yarnpkg.com/rfc6902/-/rfc6902-2.4.0.tgz#da188888602ce4fa0c36a5202b26b71a5184422a"
         | 
| 705 | 
            +
              integrity sha512-Oof0+ZGIey7+U2kIU51Ao2YUjgkik6iFwyKNIRzNnl9DD/WnaxQnp21iUwBlkbqrRkxuE/DGPRroLzYjj/ngMA==
         | 
| 548 706 |  | 
| 549 707 | 
             
            safe-buffer@^5.0.1:
         | 
| 550 | 
            -
              version "5.1 | 
| 551 | 
            -
              resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1. | 
| 708 | 
            +
              version "5.2.1"
         | 
| 709 | 
            +
              resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
         | 
| 710 | 
            +
              integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
         | 
| 711 | 
            +
             | 
| 712 | 
            +
            semver@^5.5.0, semver@^5.6.0:
         | 
| 713 | 
            +
              version "5.7.1"
         | 
| 714 | 
            +
              resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
         | 
| 715 | 
            +
              integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
         | 
| 552 716 |  | 
| 553 717 | 
             
            set-blocking@^2.0.0:
         | 
| 554 718 | 
             
              version "2.0.0"
         | 
| 555 719 | 
             
              resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
         | 
| 720 | 
            +
              integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
         | 
| 556 721 |  | 
| 557 722 | 
             
            shebang-command@^1.2.0:
         | 
| 558 723 | 
             
              version "1.2.0"
         | 
| 559 724 | 
             
              resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
         | 
| 725 | 
            +
              integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
         | 
| 560 726 | 
             
              dependencies:
         | 
| 561 727 | 
             
                shebang-regex "^1.0.0"
         | 
| 562 728 |  | 
| 563 729 | 
             
            shebang-regex@^1.0.0:
         | 
| 564 730 | 
             
              version "1.0.0"
         | 
| 565 731 | 
             
              resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
         | 
| 732 | 
            +
              integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
         | 
| 566 733 |  | 
| 567 734 | 
             
            signal-exit@^3.0.0:
         | 
| 568 | 
            -
              version "3.0. | 
| 569 | 
            -
              resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0. | 
| 735 | 
            +
              version "3.0.3"
         | 
| 736 | 
            +
              resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
         | 
| 737 | 
            +
              integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
         | 
| 570 738 |  | 
| 571 739 | 
             
            string-width@^1.0.1:
         | 
| 572 740 | 
             
              version "1.0.2"
         | 
| 573 741 | 
             
              resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
         | 
| 742 | 
            +
              integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
         | 
| 574 743 | 
             
              dependencies:
         | 
| 575 744 | 
             
                code-point-at "^1.0.0"
         | 
| 576 745 | 
             
                is-fullwidth-code-point "^1.0.0"
         | 
| @@ -579,6 +748,7 @@ string-width@^1.0.1: | |
| 579 748 | 
             
            string-width@^2.0.0, string-width@^2.1.1:
         | 
| 580 749 | 
             
              version "2.1.1"
         | 
| 581 750 | 
             
              resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
         | 
| 751 | 
            +
              integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
         | 
| 582 752 | 
             
              dependencies:
         | 
| 583 753 | 
             
                is-fullwidth-code-point "^2.0.0"
         | 
| 584 754 | 
             
                strip-ansi "^4.0.0"
         | 
| @@ -586,88 +756,118 @@ string-width@^2.0.0, string-width@^2.1.1: | |
| 586 756 | 
             
            strip-ansi@^3.0.0, strip-ansi@^3.0.1:
         | 
| 587 757 | 
             
              version "3.0.1"
         | 
| 588 758 | 
             
              resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
         | 
| 759 | 
            +
              integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
         | 
| 589 760 | 
             
              dependencies:
         | 
| 590 761 | 
             
                ansi-regex "^2.0.0"
         | 
| 591 762 |  | 
| 592 763 | 
             
            strip-ansi@^4.0.0:
         | 
| 593 764 | 
             
              version "4.0.0"
         | 
| 594 765 | 
             
              resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
         | 
| 766 | 
            +
              integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
         | 
| 595 767 | 
             
              dependencies:
         | 
| 596 768 | 
             
                ansi-regex "^3.0.0"
         | 
| 597 769 |  | 
| 598 770 | 
             
            strip-eof@^1.0.0:
         | 
| 599 771 | 
             
              version "1.0.0"
         | 
| 600 772 | 
             
              resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
         | 
| 773 | 
            +
              integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
         | 
| 601 774 |  | 
| 602 775 | 
             
            supports-color@^5.0.0, supports-color@^5.3.0:
         | 
| 603 | 
            -
              version "5. | 
| 604 | 
            -
              resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5. | 
| 776 | 
            +
              version "5.5.0"
         | 
| 777 | 
            +
              resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
         | 
| 778 | 
            +
              integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
         | 
| 605 779 | 
             
              dependencies:
         | 
| 606 780 | 
             
                has-flag "^3.0.0"
         | 
| 607 781 |  | 
| 608 782 | 
             
            supports-hyperlinks@^1.0.1:
         | 
| 609 783 | 
             
              version "1.0.1"
         | 
| 610 784 | 
             
              resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz#71daedf36cc1060ac5100c351bb3da48c29c0ef7"
         | 
| 785 | 
            +
              integrity sha512-HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw==
         | 
| 611 786 | 
             
              dependencies:
         | 
| 612 787 | 
             
                has-flag "^2.0.0"
         | 
| 613 788 | 
             
                supports-color "^5.0.0"
         | 
| 614 789 |  | 
| 790 | 
            +
            universal-user-agent@^2.0.0:
         | 
| 791 | 
            +
              version "2.1.0"
         | 
| 792 | 
            +
              resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-2.1.0.tgz#5abfbcc036a1ba490cb941f8fd68c46d3669e8e4"
         | 
| 793 | 
            +
              integrity sha512-8itiX7G05Tu3mGDTdNY2fB4KJ8MgZLS54RdG6PkkfwMAavrXu1mV/lls/GABx9O3Rw4PnTtasxrvbMQoBYY92Q==
         | 
| 794 | 
            +
              dependencies:
         | 
| 795 | 
            +
                os-name "^3.0.0"
         | 
| 796 | 
            +
             | 
| 615 797 | 
             
            url-template@^2.0.8:
         | 
| 616 798 | 
             
              version "2.0.8"
         | 
| 617 799 | 
             
              resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21"
         | 
| 800 | 
            +
              integrity sha1-/FZaPMy/93MMd19WQflVV5FDnyE=
         | 
| 618 801 |  | 
| 619 802 | 
             
            vm2@^3.6.0:
         | 
| 620 | 
            -
              version "3. | 
| 621 | 
            -
              resolved "https://registry.yarnpkg.com/vm2/-/vm2-3. | 
| 803 | 
            +
              version "3.9.2"
         | 
| 804 | 
            +
              resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.9.2.tgz#a4085d2d88a808a1b3c06d5478c2db3222a9cc30"
         | 
| 805 | 
            +
              integrity sha512-nzyFmHdy2FMg7mYraRytc2jr4QBaUY3TEGe3q3bK8EgS9WC98wxn2jrPxS/ruWm+JGzrEIIeufKweQzVoQEd+Q==
         | 
| 622 806 |  | 
| 623 807 | 
             
            voca@^1.4.0:
         | 
| 624 808 | 
             
              version "1.4.0"
         | 
| 625 809 | 
             
              resolved "https://registry.yarnpkg.com/voca/-/voca-1.4.0.tgz#e15ac58b38290b72acc0c330366b6cc7984924d7"
         | 
| 810 | 
            +
              integrity sha512-8Xz4H3vhYRGbFupLtl6dHwMx0ojUcjt0HYkqZ9oBCfipd/5mD7Md58m2/dq7uPuZU/0T3Gb1m66KS9jn+I+14Q==
         | 
| 626 811 |  | 
| 627 812 | 
             
            which-module@^2.0.0:
         | 
| 628 813 | 
             
              version "2.0.0"
         | 
| 629 814 | 
             
              resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
         | 
| 815 | 
            +
              integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
         | 
| 630 816 |  | 
| 631 817 | 
             
            which@^1.2.9:
         | 
| 632 818 | 
             
              version "1.3.1"
         | 
| 633 819 | 
             
              resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
         | 
| 820 | 
            +
              integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
         | 
| 634 821 | 
             
              dependencies:
         | 
| 635 822 | 
             
                isexe "^2.0.0"
         | 
| 636 823 |  | 
| 824 | 
            +
            windows-release@^3.1.0:
         | 
| 825 | 
            +
              version "3.3.1"
         | 
| 826 | 
            +
              resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.3.1.tgz#cb4e80385f8550f709727287bf71035e209c4ace"
         | 
| 827 | 
            +
              integrity sha512-Pngk/RDCaI/DkuHPlGTdIkDiTAnAkyMjoQMZqRsxydNl1qGXNIoZrB7RK8g53F2tEgQBMqQJHQdYZuQEEAu54A==
         | 
| 828 | 
            +
              dependencies:
         | 
| 829 | 
            +
                execa "^1.0.0"
         | 
| 830 | 
            +
             | 
| 637 831 | 
             
            wrap-ansi@^2.0.0:
         | 
| 638 832 | 
             
              version "2.1.0"
         | 
| 639 833 | 
             
              resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
         | 
| 834 | 
            +
              integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=
         | 
| 640 835 | 
             
              dependencies:
         | 
| 641 836 | 
             
                string-width "^1.0.1"
         | 
| 642 837 | 
             
                strip-ansi "^3.0.1"
         | 
| 643 838 |  | 
| 839 | 
            +
            wrappy@1:
         | 
| 840 | 
            +
              version "1.0.2"
         | 
| 841 | 
            +
              resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
         | 
| 842 | 
            +
              integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
         | 
| 843 | 
            +
             | 
| 644 844 | 
             
            xtend@~4.0.1:
         | 
| 645 | 
            -
              version "4.0. | 
| 646 | 
            -
              resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0. | 
| 845 | 
            +
              version "4.0.2"
         | 
| 846 | 
            +
              resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
         | 
| 847 | 
            +
              integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
         | 
| 647 848 |  | 
| 648 849 | 
             
            y18n@^3.2.1:
         | 
| 649 850 | 
             
              version "3.2.1"
         | 
| 650 851 | 
             
              resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
         | 
| 651 | 
            -
             | 
| 652 | 
            -
            yallist@^2.1.2:
         | 
| 653 | 
            -
              version "2.1.2"
         | 
| 654 | 
            -
              resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
         | 
| 852 | 
            +
              integrity sha1-bRX7qITAhnnA136I53WegR4H+kE=
         | 
| 655 853 |  | 
| 656 854 | 
             
            yargs-parser@^9.0.2:
         | 
| 657 855 | 
             
              version "9.0.2"
         | 
| 658 856 | 
             
              resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077"
         | 
| 857 | 
            +
              integrity sha1-nM9qQ0YP5O1Aqbto9I1DuKaMwHc=
         | 
| 659 858 | 
             
              dependencies:
         | 
| 660 859 | 
             
                camelcase "^4.1.0"
         | 
| 661 860 |  | 
| 662 861 | 
             
            yargs@^11.0.0:
         | 
| 663 | 
            -
              version "11.1. | 
| 664 | 
            -
              resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1. | 
| 862 | 
            +
              version "11.1.1"
         | 
| 863 | 
            +
              resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.1.1.tgz#5052efe3446a4df5ed669c995886cc0f13702766"
         | 
| 864 | 
            +
              integrity sha512-PRU7gJrJaXv3q3yQZ/+/X6KBswZiaQ+zOmdprZcouPYtQgvNU35i+68M4b1ZHLZtYFT5QObFLV+ZkmJYcwKdiw==
         | 
| 665 865 | 
             
              dependencies:
         | 
| 666 866 | 
             
                cliui "^4.0.0"
         | 
| 667 867 | 
             
                decamelize "^1.1.1"
         | 
| 668 868 | 
             
                find-up "^2.1.0"
         | 
| 669 869 | 
             
                get-caller-file "^1.0.1"
         | 
| 670 | 
            -
                os-locale "^ | 
| 870 | 
            +
                os-locale "^3.1.0"
         | 
| 671 871 | 
             
                require-directory "^2.1.1"
         | 
| 672 872 | 
             
                require-main-filename "^1.0.1"
         | 
| 673 873 | 
             
                set-blocking "^2.0.0"
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: netsoft-danger
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.4.2
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - urkle
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2021-01-05 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: danger
         | 
| @@ -38,6 +38,20 @@ dependencies: | |
| 38 38 | 
             
                - - ">="
         | 
| 39 39 | 
             
                  - !ruby/object:Gem::Version
         | 
| 40 40 | 
             
                    version: '0'
         | 
| 41 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 42 | 
            +
              name: simplecov
         | 
| 43 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 44 | 
            +
                requirements:
         | 
| 45 | 
            +
                - - "~>"
         | 
| 46 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 47 | 
            +
                    version: 0.20.0
         | 
| 48 | 
            +
              type: :runtime
         | 
| 49 | 
            +
              prerelease: false
         | 
| 50 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 51 | 
            +
                requirements:
         | 
| 52 | 
            +
                - - "~>"
         | 
| 53 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 54 | 
            +
                    version: 0.20.0
         | 
| 41 55 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 42 56 | 
             
              name: thor
         | 
| 43 57 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -179,8 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 179 193 | 
             
                - !ruby/object:Gem::Version
         | 
| 180 194 | 
             
                  version: '0'
         | 
| 181 195 | 
             
            requirements: []
         | 
| 182 | 
            -
             | 
| 183 | 
            -
            rubygems_version: 2.7.7
         | 
| 196 | 
            +
            rubygems_version: 3.0.3
         | 
| 184 197 | 
             
            signing_key: 
         | 
| 185 198 | 
             
            specification_version: 4
         | 
| 186 199 | 
             
            summary: Danger.systems conventions for Netsoft projects.
         |