diff --git a/.appveyor.yml b/.appveyor.yml index 70638d07e9c3de617a6decad4aae1b6eab2c9337..8cf99f3ef194e5083d48a4a6e7fbb1a3f6e3b114 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -63,14 +63,12 @@ install: # Install node/npm - ps: Install-Product node $env:7 - set PATH=%APPDATA%\npm;%PATH% - - npm -g install npm - - npm -g install bower - - npm -g install grunt-cli - - npm install + - npm -g install npm bower grunt-cli + - npm install --quiet - bower install test_script: - - grunt ci + - npm run test - tox -v --recreate before_test: diff --git a/.editorconfig b/.editorconfig index ef1f8b39688a389ddf3e1d5f12fe1e0aada10bee..de785432133fdccaa54b141a4a2d224a2c9f0668 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,12 +10,12 @@ trim_trailing_whitespace = true # Matches multiple files with brace expansion notation # Set default charset -[*.{js,py,mako},.jshintrc] +[*.{json,js,py,mako}] charset = utf-8 indent_style = space indent_size = 4 -# Matches the exact files either package.json or .travis.yml -[{package.json,*.yml}] +# Matches configuration files for services like Travis, AppVeyor and Codecov +[{*.yml}] indent_style = space indent_size = 2 diff --git a/.jscsrc b/.jscsrc deleted file mode 100644 index c13d13dcf1eed8b2f55b8701780280638b1abc67..0000000000000000000000000000000000000000 --- a/.jscsrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "validateIndentation": 4 -} diff --git a/.jshintignore b/.jshintignore deleted file mode 100644 index 121531af8467c5344c1ddd59c7a6452793e15152..0000000000000000000000000000000000000000 --- a/.jshintignore +++ /dev/null @@ -1 +0,0 @@ -*.min.js diff --git a/.jshintrc b/.jshintrc deleted file mode 100644 index 054c5c9176fa54af36d624d0d89fd444ad0f73a0..0000000000000000000000000000000000000000 --- a/.jshintrc +++ /dev/null @@ -1,37 +0,0 @@ -{ - "bitwise": true, - "browser": true, - "camelcase": true, - "curly": true, - "devel": true, - "eqeqeq": true, - "forin": true, - "freeze": true, - "indent": 4, - "jquery": true, - "latedef": true, - "maxerr": 100, - "maxlen": 1000, - "mocha": true, - "noarg": true, - "noempty": true, - "nonbsp": true, - "undef": true, - "unused": true, - "node": true, - "predef": { - "chai": true, - "mocha": true, - "srRoot": true, - "themeSpinner": true, - "metaToBool": true, - "getMeta": true, - "isMeta": true, - "topImageHtml": true, - "generateBlackWhiteList": true, - "_": true, - "PNotify": true, - "anonURL": true, - "window": true - } -} diff --git a/.travis.yml b/.travis.yml index 284977b54975dcea7a3533977340f5b9400361b9..d6e5430370cd2d6e70bd15c7265e6880d7856a9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,13 +7,12 @@ dist: xenial sudo: false env: - - TRAVIS_NODE_VERSION="5.6.0" + - TRAVIS_NODE_VERSION="8.0.0" before_install: - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION - - npm install -g grunt-cli - - npm install -g bower + - npm install -g grunt-cli bower xo - npm install --quiet - bower install @@ -23,7 +22,7 @@ install: - pip install --upgrade babel mako crowdin-cli-py script: - - grunt ci + - npm run test - tox -v --recreate cache: @@ -46,7 +45,7 @@ after_success: - git remote rm origin - git remote add origin https://$GH_CRED@github.com/$TRAVIS_REPO_SLUG.git - git fetch origin master develop --no-tags - - grunt ci:update + - grunt auto_update_trans notifications: irc: "irc.freenode.net#sickrage-builds" diff --git a/Gruntfile.js b/Gruntfile.js index dabdefbdf2d5e5ee10830201b44f0d799e8ca374..bee4a16872a28fa3864529c33ccd2a194782b8c5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,7 +1,7 @@ 'use strict'; module.exports = function(grunt) { - var IsTravis = Boolean(process.env.TRAVIS); + const isTravis = Boolean(process.env.TRAVIS); grunt.registerTask('default', [ 'clean', @@ -9,34 +9,24 @@ module.exports = function(grunt) { 'bower_concat', 'copy', 'uglify', - 'sass', - 'cssmin', - 'jshint', - 'mocha' + 'cssmin' ]); - grunt.registerTask('ci', 'Alias for "jshint", "mocha" tasks.', function(update) { - if (!update) { - grunt.task.run([ - 'jshint', - 'mocha' - ]); - } else { - if (IsTravis) { - grunt.log.writeln('Running grunt and updating translations...'.magenta); - grunt.task.run([ - 'exec:git:checkout:master', - 'default', // Run default task - 'update_trans', // Update translations - 'exec:commit_changed_files:yes', // Determine what we need to commit if needed, stop if nothing to commit. - 'exec:git:reset --hard', // Reset unstaged changes (to allow for a rebase) - 'exec:git:checkout:develop', 'exec:git:rebase:master', // FF develop to the updated master - 'exec:git_push:origin:master develop' // Push master and develop - ]); - } else { - grunt.fatal('This task is only for Travis-CI!'); - } + grunt.registerTask('auto_update_trans', 'Update translations on master and push to master & develop', function() { + if (!isTravis) { + grunt.fatal('This task is only for Travis-CI!'); + return false; } + grunt.log.writeln('Running grunt and updating translations...'.magenta); + grunt.task.run([ + 'exec:git:checkout:master', + 'default', // Run default task + 'update_trans', // Update translations + 'exec:commit_changed_files:yes', // Determine what we need to commit if needed, stop if nothing to commit. + 'exec:git:reset --hard', // Reset unstaged changes (to allow for a rebase) + 'exec:git:checkout:develop', 'exec:git:rebase:master', // FF develop to the updated master + 'exec:git_push:origin:master develop' // Push master and develop + ]); }); grunt.registerTask('update_trans', 'Update translations', function() { @@ -189,16 +179,6 @@ module.exports = function(grunt) { } } }, - sass: { - options: { - sourceMap: true - }, - core: { - files: { - './dist/core.css': ['./gui/slick/scss/core.scss'] - } - } - }, cssmin: { options: { shorthandCompacting: false, @@ -215,25 +195,6 @@ module.exports = function(grunt) { } } }, - jshint: { - options: { - jshintrc: './.jshintrc' - }, - all: [ - './gui/slick/js/**/*.js', - '!./gui/slick/js/lib/**/*.js', - '!./gui/slick/js/ajaxNotifications.js', - '!./gui/slick/js/**/*.min.js' // We use this because ignores doesn't seem to work :( - ] - }, - mocha: { - all: { - src: ['tests/mocha/testrunner.html'] - }, - options: { - run: true - } - }, po2json: { messages: { options: { @@ -315,7 +276,7 @@ module.exports = function(grunt) { }, callback: function(err) { if (!err) { - if (!IsTravis) { + if (!isTravis) { grunt.task.run('exec:git:commit:-m "' + grunt.config('commit_msg') + '"'); } else { // Workaround for Travis (with -m "text" the quotes are within the message) var msgFilePath = 'commit-msg.txt'; diff --git a/gui/slick/js/ajaxEpSearch.js b/gui/slick/js/ajaxEpSearch.js index 75c20dfe34894d18007e73f5dd62c33c65d27af8..ce7603632a61656f0115e920483207a6849585ca 100644 --- a/gui/slick/js/ajaxEpSearch.js +++ b/gui/slick/js/ajaxEpSearch.js @@ -1,7 +1,7 @@ -var searchStatusUrl = srRoot + '/home/getManualSearchStatus'; -var failedDownload = false; -var qualityDownload = false; -var selectedEpisode = ''; +const searchStatusUrl = srRoot + '/home/getManualSearchStatus'; +let failedDownload = false; +let qualityDownload = false; +let selectedEpisode = ''; PNotify.prototype.options.maxonscreen = 5; $.fn.manualSearches = []; @@ -9,104 +9,102 @@ $.fn.manualSearches = []; function enableLink(link) { link.on('click.disabled', false); link.prop('enableClick', '1'); - link.fadeTo("fast", 1); + link.fadeTo('fast', 1); } function disableLink(link) { link.off('click.disabled'); link.prop('enableClick', '0'); - link.fadeTo("fast", 0.5); + link.fadeTo('fast', 0.5); } function updateImages(data) { - $.each(data.episodes, function (name, ep) { + $.each(data.episodes, function(name, ep) { // Get td element for current ep - var loadingClass = 'loading-spinner16'; - var queuedClass = 'displayshow-icon-clock'; - var searchClass = 'displayshow-icon-search'; + const loadingClass = 'loading-spinner16'; + const queuedClass = 'displayshow-icon-clock'; + const searchClass = 'displayshow-icon-search'; - //Try to get the <a> Element - var link = $('a[id=' + ep.show + 'x' + ep.season + 'x' + ep.episode+']'); + // Try to get the <a> Element + const link = $('a[id=' + ep.show + 'x' + ep.season + 'x' + ep.episode + ']'); if (link) { - var icon = link.children('span'); - var parent = link.parent(); + const icon = link.children('span'); + const parent = link.parent(); - var rSearchTerm = ''; - var htmlContent = ''; + let rSearchTerm = ''; + let htmlContent = ''; if (ep.searchstatus.toLowerCase() === 'searching') { icon.prop('class', loadingClass); - icon.prop('title','Searching'); - icon.prop('alt','Searching'); + icon.prop('title', 'Searching'); + icon.prop('alt', 'Searching'); disableLink(link); htmlContent = ep.searchstatus.title; - } else if (ep.searchstatus.toLowerCase() === 'queued') { - icon.prop('class', queuedClass ); - icon.prop('title','Queued'); - icon.prop('alt','Queued'); + icon.prop('class', queuedClass); + icon.prop('title', 'Queued'); + icon.prop('alt', 'Queued'); disableLink(link); htmlContent = ep.searchstatus; - } else if (ep.searchstatus.toLowerCase() === 'finished') { icon.prop('class', searchClass); - if (ep.quality !== "N/A") { - link.prop('class','epRetry'); + if (ep.quality !== 'N/A') { + link.prop('class', 'epRetry'); } - icon.prop('title','Search'); - icon.prop('alt','Search'); + icon.prop('title', 'Search'); + icon.prop('alt', 'Search'); enableLink(link); // Update Status and Quality rSearchTerm = /(\w+)\s\((.+?)\)/; - htmlContent = ep.status.replace(rSearchTerm,"$1"+' <span class="quality '+ep.quality+'">'+"$2"+'</span>'); - parent.closest('tr').prop("class", ep.overview + " season-" + ep.season + " seasonstyle"); + htmlContent = ep.status.replace(rSearchTerm, '$1 <span class="quality ' + ep.quality + '">$2</span>'); + parent.closest('tr').prop('class', ep.overview + ' season-' + ep.season + ' seasonstyle'); } - // update the status column if it exists + // Update the status column if it exists parent.siblings('.col-status').html(htmlContent); - // and location + // And location parent.siblings('.location').html(ep.location); - // and size + // And size parent.siblings('.size').html(ep.size); - // and qtip location + // And qtip location if (ep.location) { - parent.siblings('.episode').html('<span title="' + ep.location + '" class="addQTip">' + ep.episode + "</span>"); + parent.siblings('.episode').html('<span title="' + ep.location + '" class="addQTip">' + ep.episode + '</span>'); } } - var elementCompleteEpisodes = $('a[id=forceUpdate-' + ep.show + 'x' + ep.season + 'x' + ep.episode+']'); - var spanCompleteEpisodes = elementCompleteEpisodes.children('span'); + const elementCompleteEpisodes = $('a[id=forceUpdate-' + ep.show + 'x' + ep.season + 'x' + ep.episode + ']'); + const spanCompleteEpisodes = elementCompleteEpisodes.children('span'); if (elementCompleteEpisodes) { if (ep.searchstatus.toLowerCase() === 'searching') { spanCompleteEpisodes.prop('class', loadingClass); - spanCompleteEpisodes.prop('title','Searching'); - spanCompleteEpisodes.prop('alt','Searching'); + spanCompleteEpisodes.prop('title', 'Searching'); + spanCompleteEpisodes.prop('alt', 'Searching'); disableLink(elementCompleteEpisodes); } else if (ep.searchstatus.toLowerCase() === 'queued') { spanCompleteEpisodes.prop('class', queuedClass); - spanCompleteEpisodes.prop('title','Queued'); - spanCompleteEpisodes.prop('alt','Queued'); + spanCompleteEpisodes.prop('title', 'Queued'); + spanCompleteEpisodes.prop('alt', 'Queued'); disableLink(elementCompleteEpisodes); } else if (ep.searchstatus.toLowerCase() === 'finished') { spanCompleteEpisodes.prop('class', searchClass); - spanCompleteEpisodes.prop('title','Search'); - spanCompleteEpisodes.prop('alt','Search'); + spanCompleteEpisodes.prop('title', 'Search'); + spanCompleteEpisodes.prop('alt', 'Search'); if (ep.overview.toLowerCase() === 'snatched') { // Find Banner or Poster - var actionElement = elementCompleteEpisodes.closest('div.ep_listing'); + let actionElement = elementCompleteEpisodes.closest('div.ep_listing'); if (actionElement.length === 0) { if (elementCompleteEpisodes.closest('table.calendarTable').length === 0) { // List view actionElement = elementCompleteEpisodes.closest('tr'); } - // else - Calendar view is ignored + // Else - Calendar view is ignored } if (actionElement.length) { - // remove any listing-* classes and add listing-snatched (keeping non listing-* classes) - actionElement.attr('class', function (i, value) { + // Remove any listing-* classes and add listing-snatched (keeping non listing-* classes) + actionElement.attr('class', function(i, value) { return value.replace(/(^|\s)listing-\S+/g, ''); }).addClass('listing-snatched'); } @@ -118,12 +116,12 @@ function updateImages(data) { } function checkManualSearches() { - var pollInterval = 5000; - var showId = $('#showID').val(); - var url = showId !== undefined ? searchStatusUrl + '?show=' + showId : searchStatusUrl ; + let pollInterval = 5000; + const showId = $('#showID').val(); + const url = showId !== undefined ? searchStatusUrl + '?show=' + showId : searchStatusUrl; // eslint-disable-line no-negated-condition $.ajax({ url: url, - success: function (data) { + success: function(data) { if (data.episodes) { pollInterval = 5000; } else { @@ -131,73 +129,72 @@ function checkManualSearches() { } updateImages(data); }, - error: function () { + error: function() { pollInterval = 30000; }, - type: "GET", - dataType: "json", - complete: function () { + type: 'GET', + dataType: 'json', + complete: function() { setTimeout(checkManualSearches, pollInterval); }, - timeout: 15000 // timeout every 15 secs + timeout: 15000 // Timeout every 15 secs }); } -$(document).ready(function () { - checkManualSearches(); -}); +$(document).ready(checkManualSearches); -(function(){ - var stupidOptions; - function manualSearch(){ - var parent = selectedEpisode.parent(); +(function() { + let stupidOptions; + function manualSearch() { + const parent = selectedEpisode.parent(); // Create var for anchor - var link = selectedEpisode; + const link = selectedEpisode; // Create var for img under anchor and set options for the loading gif - var icon = selectedEpisode.children('span'); - icon.prop('title', _('Loading') ); - icon.prop('alt', _('Loading') ); + const icon = selectedEpisode.children('span'); + icon.prop('title', _('Loading')); + icon.prop('alt', _('Loading')); icon.prop('class', stupidOptions.loadingClass); - var url = selectedEpisode.prop('href'); + let url = selectedEpisode.prop('href'); if (failedDownload === false) { - url = url.replace("retryEpisode", "searchEpisode"); + url = url.replace('retryEpisode', 'searchEpisode'); } - url = url + "&downCurQuality=" + (qualityDownload ? '1' : '0'); + url = url + '&downCurQuality=' + (qualityDownload ? '1' : '0'); - $.getJSON(url, function(data){ - var imageName, imageResult; - // if they failed then just put the red X + $.getJSON(url, function(data) { + let imageName = null; // eslint-disable-line no-unused-vars + let imageResult = null; // eslint-disable-line no-unused-vars + // If they failed then just put the red X if (data.result.toLowerCase() === 'failure') { imageName = stupidOptions.noImage; imageResult = 'Failed'; } else { imageName = stupidOptions.loadingImage; imageResult = 'Success'; - // color the row + // Color the row if (stupidOptions.colorRow) { parent.parent().removeClass('skipped wanted qual good unaired').addClass('snatched'); } - // applying the quality class - var rSearchTerm = /(\w+)\s\((.+?)\)/; - var htmlContent = data.result.replace(rSearchTerm,"$1"+' <span class="quality '+data.quality+'">'+"$2"+'</span>'); - // update the status column if it exists + // Applying the quality class + const rSearchTerm = /(\w+)\s\((.+?)\)/; + const htmlContent = data.result.replace(rSearchTerm, '$1 <span class="quality ' + data.quality + '">$2</span>'); + // Update the status column if it exists parent.siblings('.col-status').html(htmlContent); // Only if the queuing was successful, disable the onClick event of the loading image disableLink(link); } - // put the corresponding image as the result of queuing of the manual search + // Put the corresponding image as the result of queuing of the manual search // icon.prop('title', imageResult); // icon.prop('alt', imageResult); // icon.prop('class', imageName); }); - // don't follow the link + // Don't follow the link return false; } @@ -212,33 +209,34 @@ $(document).ready(function () { } }; - $.fn.ajaxEpSearch = function(options){ + $.fn.ajaxEpSearch = function(options) { stupidOptions = $.extend({}, $.ajaxEpSearch.defaults, options); - $('.epSearch, .epRetry').on('click', function(event){ + $('.epSearch, .epRetry').on('click', function(event) { event.preventDefault(); // Check if we have disabled the click - if ($(this).prop('enableClick') === '0') { return false; } + if ($(this).prop('enableClick') === '0') { + return false; + } selectedEpisode = $(this); - if ($(this).hasClass("epRetry")){ - $("#manualSearchModalFailed").modal('show'); - } - else if ($(this).parent().parent().children(".col-status").children(".quality").length) { - $("#manualSearchModalQuality").modal('show'); + if ($(this).hasClass('epRetry')) { + $('#manualSearchModalFailed').modal('show'); + } else if ($(this).parent().parent().children('.col-status').children('.quality').length) { + $('#manualSearchModalQuality').modal('show'); } else { manualSearch(); } }); - $('#manualSearchModalFailed .btn').on('click', function(){ + $('#manualSearchModalFailed .btn').on('click', function() { failedDownload = ($(this).text().toLowerCase() === 'yes'); - $("#manualSearchModalQuality").modal('show'); + $('#manualSearchModalQuality').modal('show'); }); - $('#manualSearchModalQuality .btn').on('click', function(){ + $('#manualSearchModalQuality .btn').on('click', function() { qualityDownload = ($(this).text().toLowerCase() === 'yes'); manualSearch(); }); diff --git a/gui/slick/js/ajaxNotifications.js b/gui/slick/js/ajaxNotifications.js index 4639f9eae2e77e918d3128fdd68774809d1f0cd6..3774da14cba23e80bbe485961e66c0d9a8d68de1 100644 --- a/gui/slick/js/ajaxNotifications.js +++ b/gui/slick/js/ajaxNotifications.js @@ -1,8 +1,7 @@ -var message_url = srRoot + '/ui/get_messages', - test = !1; +const test = false; PNotify.prototype.options.addclass = 'stack-bottomright'; -PNotify.prototype.options.buttons.closer_hover = !1; +PNotify.prototype.options.buttons.closer_hover = !1; // eslint-disable-line camelcase PNotify.prototype.options.delay = 5000; PNotify.prototype.options.hide = !0; PNotify.prototype.options.history = !1; @@ -13,34 +12,32 @@ PNotify.prototype.options.width = '340px'; PNotify.desktop.permission(); PNotify.prototype.options.desktop = {desktop: !0, icon: srRoot + '/images/ico/favicon-196.png'}; - function displayPNotify(type, title, message, id) { - new PNotify({ + new PNotify({ // eslint-disable-line no-new desktop: { tag: id }, type: type, title: title, - text: message.replace(/<br[\s\/]*(?:\s[^>]*)?>/ig, "\n") - .replace(/<[\/]?b(?:\s[^>]*)?>/ig, '*') - .replace(/<i(?:\s[^>]*)?>/ig, '[').replace(/<[\/]i>/ig, ']') - .replace(/<(?:[\/]?ul|\/li)(?:\s[^>]*)?>/ig, '').replace(/<li(?:\s[^>]*)?>/ig, "\n" + '* ') + text: message.replace(/<br[\s/]*(?:\s[^>]*)?>/ig, '\n') + .replace(/<[/]?b(?:\s[^>]*)?>/ig, '*') + .replace(/<i(?:\s[^>]*)?>/ig, '[').replace(/<[/]i>/ig, ']') + .replace(/<(?:[/]?ul|\/li)(?:\s[^>]*)?>/ig, '').replace(/<li(?:\s[^>]*)?>/ig, '\n* ') }); } -function check_notifications() { - $.getJSON(message_url, function (data) { - $.each(data, function (name, data) { +function checkNotifications() { + $.getJSON(srRoot + '/ui/get_messages', function(data) { + $.each(data, function(name, data) { displayPNotify(data.type, data.title, data.message, data.hash); }); }); - setTimeout(function () { - "use strict"; - check_notifications(); - }, 3000); + setTimeout(checkNotifications, 3000); } -$(document).ready(function(){ - check_notifications(); - if(test) displayPNotify('notice', 'test', 'test<br><i class="test-class">hello <b>world</b></i><ul><li>item 1</li><li>item 2</li></ul>', 'notification-test'); +$(document).ready(function() { + checkNotifications(); + if (test) { + displayPNotify('notice', 'test', 'test<br><i class="test-class">hello <b>world</b></i><ul><li>item 1</li><li>item 2</li></ul>', 'notification-test'); + } }); diff --git a/gui/slick/js/apibuilder.js b/gui/slick/js/apibuilder.js index 5623ba810d5520cfa6af6a21928470199ec578e2..21433c501015a6a9c1e7eb40be470ab4c1b3bc14 100644 --- a/gui/slick/js/apibuilder.js +++ b/gui/slick/js/apibuilder.js @@ -1,19 +1,19 @@ $(document).ready(function() { // Perform an API call - $('[data-action=api-call]').on('click', function() { - var parameters = $('[data-command=' + $(this).data('command-name') + ']'); - var profile = $('#option-profile').is(':checked'); - var targetId = $(this).data('target'); - var timeId = $(this).data('time'); - var url = srRoot + $('#' + $(this).data('base-url')).text(); - var urlId = $(this).data('url'); - - $.each(parameters, function (index, item) { - var name = $(item).attr('name'); - var value = $(item).val(); - - if(name !== undefined && value !== undefined && name !== value && value) { - if($.isArray(value)) { + $('[data-action="api-call"]').on('click', function() { + const parameters = $('[data-command="' + $(this).data('command-name') + '"]'); + const profile = $('#option-profile').is(':checked'); + const targetId = $(this).data('target'); + const timeId = $(this).data('time'); + let url = srRoot + $('#' + $(this).data('base-url')).text(); + const urlId = $(this).data('url'); + + $.each(parameters, function(index, item) { + const name = $(item).attr('name'); + let value = $(item).val(); + + if (name !== undefined && value !== undefined && name !== value && value) { + if ($.isArray(value)) { value = value.join('|'); } @@ -21,24 +21,26 @@ $(document).ready(function() { } }); - if(profile) { url += '&profile=1'; } + if (profile) { + url += '&profile=1'; + } - var requestTime = new Date().getTime(); - $.get(url, function (data, textStatus, jqXHR) { - var responseTime = new Date().getTime() - requestTime; - var jsonp = $('#option-jsonp').is(':checked'); - var responseType = jqXHR.getResponseHeader('content-type') || ''; - var target = $(targetId); + const requestTime = new Date().getTime(); + $.get(url, function(data, textStatus, jqXHR) { + const responseTime = new Date().getTime() - requestTime; + const jsonp = $('#option-jsonp').is(':checked'); + const responseType = jqXHR.getResponseHeader('content-type') || ''; + const target = $(targetId); $(timeId).text(responseTime + 'ms'); $(urlId).text(url + (jsonp ? '&jsonp=foo' : '')); - if(responseType.slice(0, 6) === 'image/') { + if (responseType.slice(0, 6) === 'image/') { target.html($('<img/>').attr('src', url)); } else { - var json = JSON.stringify(data, null, 4); + const json = JSON.stringify(data, null, 4); - if(jsonp) { + if (jsonp) { target.text('foo(' + json + ');'); } else { target.text(json); @@ -50,59 +52,70 @@ $(document).ready(function() { }); // Remove the result of an API call - $('[data-action=clear-result]').on('click', function() { + $('[data-action="clear-result"]').on('click', function() { $($(this).data('target')).html('').parents('.result-wrapper').addClass('hidden'); }); // Update the list of episodes - $('[data-action=update-episodes').on('change', function() { - var command = $(this).data('command'); - var select = $('[data-command=' + command + '][name=episode]'); - var season = $(this).val(); - var show = $('[data-command=' + command + '][name=indexerid]').val(); + $('[data-action="update-episodes"').on('change', function() { + const command = $(this).data('command'); + const select = $('[data-command="' + command + '"][name="episode"]'); + const season = $(this).val(); + const show = $('[data-command="' + command + '"][name="indexerid"]').val(); - if(select !== undefined) { + if (select !== undefined) { select.removeClass('hidden'); select.find('option:gt(0)').remove(); - for(var episode in episodes[show][season]) { // jshint ignore:line + for (const episode in episodes[show][season]) { // eslint-disable-line no-undef,guard-for-in select.append($('<option>', { - value: episodes[show][season][episode], // jshint ignore:line - label: 'Episode ' + episodes[show][season][episode], // jshint ignore:line + value: episodes[show][season][episode], // eslint-disable-line no-undef + label: 'Episode ' + episodes[show][season][episode] // eslint-disable-line no-undef })); } } }); // Update the list of seasons - $('[data-action=update-seasons').on('change', function() { - var command = $(this).data('command'); - var select = $('[data-command=' + command + '][name=season]'); - var show = $(this).val(); + $('[data-action="update-seasons"').on('change', function() { + const command = $(this).data('command'); + const select = $('[data-command="' + command + '"][name="season"]'); + const show = $(this).val(); - if(select !== undefined) { + if (select !== undefined) { select.removeClass('hidden'); select.find('option:gt(0)').remove(); - for(var season in episodes[show]) { // jshint ignore:line + for (const season in episodes[show]) { // eslint-disable-line no-undef,guard-for-in select.append($('<option>', { value: season, - label: (season === 0) ? 'Specials' : 'Season ' + season, + label: (season === 0) ? 'Specials' : 'Season ' + season })); } } }); // Enable command search + $.fn.goTo = function() { + $('html, body').animate({ + scrollTop: $(this).offset().top - $('nav').outerHeight(true) + 'px' + }, 'fast'); + return this; + }; + $('#command-search').typeahead({ - source: commands, // jshint ignore:line + source: commands // eslint-disable-line no-undef }); $('#command-search').on('change', function() { - var command = $(this).typeahead('getActive'); + const command = $(this).typeahead('getActive'); + + if (command) { + const commandObj = $('[href="#command-' + command.replace('.', '-') + '"]'); + commandObj.click(); - if(command) { - var commandId = command.replace('.', '-'); - $('[href=#command-' + commandId + ']').click(); + setTimeout(function() { + commandObj.goTo(); + }, 250); } }); }); diff --git a/gui/slick/js/blackwhite.js b/gui/slick/js/blackwhite.js index 39199e8ce51ac643d595388e4ded798c98db1897..6f66cceafa97c77b67f501f969136b7891986351 100644 --- a/gui/slick/js/blackwhite.js +++ b/gui/slick/js/blackwhite.js @@ -1,30 +1,30 @@ -function generateBlackWhiteList() { // jshint ignore:line - var realvalues = []; +function generateBlackWhiteList() { // eslint-disable-line no-unused-vars + let realvalues = []; $('#white option').each(function(i, selected) { realvalues[i] = $(selected).val(); }); - $("#whitelist").val(realvalues.join(",")); + $('#whitelist').val(realvalues.join(',')); realvalues = []; $('#black option').each(function(i, selected) { realvalues[i] = $(selected).val(); }); - $("#blacklist").val(realvalues.join(",")); + $('#blacklist').val(realvalues.join(',')); } -function updateBlackWhiteList(showName) { // jshint ignore:line +function updateBlackWhiteList(showName) { // eslint-disable-line no-unused-vars $('#pool').children().remove(); $('#blackwhitelist').show(); if (showName) { $.getJSON(srRoot + '/home/fetch_releasegroups', { - 'show_name': showName - }, function (data) { + show_name: showName // eslint-disable-line camelcase + }, function(data) { if (data.result === 'success') { $.each(data.groups, function(i, group) { - var option = $("<option>"); - option.attr("value", group.name); + const option = $('<option>'); + option.attr('value', group.name); option.html(group.name + ' | ' + group.rating + ' | ' + group.range); option.appendTo('#pool'); }); @@ -34,30 +34,30 @@ function updateBlackWhiteList(showName) { // jshint ignore:line } $('#removeW').click(function() { - !$('#white option:selected').remove().appendTo('#pool'); // jshint ignore:line + !$('#white option:selected').remove().appendTo('#pool'); // eslint-disable-line no-unused-expressions }); $('#addW').click(function() { - !$('#pool option:selected').remove().appendTo('#white'); // jshint ignore:line + !$('#pool option:selected').remove().appendTo('#white'); // eslint-disable-line no-unused-expressions }); $('#addB').click(function() { - !$('#pool option:selected').remove().appendTo('#black'); // jshint ignore:line + !$('#pool option:selected').remove().appendTo('#black'); // eslint-disable-line no-unused-expressions }); $('#removeP').click(function() { - !$('#pool option:selected').remove(); // jshint ignore:line + !$('#pool option:selected').remove(); // eslint-disable-line no-unused-expressions }); $('#removeB').click(function() { - !$('#black option:selected').remove().appendTo('#pool'); // jshint ignore:line + !$('#black option:selected').remove().appendTo('#pool'); // eslint-disable-line no-unused-expressions }); $('#addToWhite').click(function() { - var group = $('#addToPoolText').val(); - if(group !== '') { - var option = $('<option>'); - option.attr('value',group); + const group = $('#addToPoolText').val(); + if (group !== '') { + const option = $('<option>'); + option.attr('value', group); option.html(group); option.appendTo('#white'); $('#addToPoolText').val(''); @@ -65,10 +65,10 @@ $('#addToWhite').click(function() { }); $('#addToBlack').click(function() { - var group = $('#addToPoolText').val(); - if(group !== '') { - var option = $('<option>'); - option.attr('value',group); + const group = $('#addToPoolText').val(); + if (group !== '') { + const option = $('<option>'); + option.attr('value', group); option.html(group); option.appendTo('#black'); $('#addToPoolText').val(''); diff --git a/gui/slick/js/browser.js b/gui/slick/js/browser.js index 336fbe9507d15e3684f87177de768fcaa9c22bc0..cd6158f707ca30563183d64ba83546c46ae744a9 100644 --- a/gui/slick/js/browser.js +++ b/gui/slick/js/browser.js @@ -1,18 +1,20 @@ -;(function ($) { +(function($) { 'use strict'; $.Browser = { defaults: { - title: _('Choose Directory'), - url: srRoot + '/browser/', - autocompleteURL: srRoot + '/browser/complete', - includeFiles: 0, - fileTypes: [], // file extensions to include, 'images' is an alias for image types - showBrowseButton: true + title: _('Choose Directory'), + url: srRoot + '/browser/', + autocompleteURL: srRoot + '/browser/complete', + includeFiles: 0, + fileTypes: [], // File extensions to include, 'images' is an alias for image types + showBrowseButton: true } }; - var fileBrowserDialog, currentBrowserPath, currentRequest = null; + let fileBrowserDialog = null; + let currentBrowserPath = null; + let currentRequest = null; function browse(path, endpoint, includeFiles, fileTypes) { if (currentBrowserPath === path) { @@ -27,36 +29,36 @@ fileBrowserDialog.dialog('option', 'dialogClass', 'browserDialog busy'); - currentRequest = $.getJSON(endpoint, - {path: path, includeFiles: includeFiles, fileTypes: fileTypes.join(',')}, function (data) { + currentRequest = $.getJSON(endpoint, { + path: path, + includeFiles: includeFiles, + fileTypes: fileTypes.join(',') + }, function(data) { fileBrowserDialog.empty(); - var firstVal = data[0]; - var i = 0; - var list, link = null; - data = $.grep(data, function () { + const firstVal = data[0]; + let i = 0; + let list = null; + let link = null; + data = $.grep(data, function() { return i++ !== 0; }); - $('<input type="text" class="form-control input-sm">') - .val(firstVal.currentPath) - .on('keypress', function (e) { - if (e.which === 13) { - browse(e.target.value, endpoint, includeFiles, fileTypes); - } - }) - .appendTo(fileBrowserDialog) - .fileBrowser({showBrowseButton: false}) - .on('autocompleteselect', function (e, ui) { - browse(ui.item.value, endpoint, includeFiles, fileTypes); - }); + $('<input type="text" class="form-control input-sm">').val(firstVal.currentPath).on('keypress', function(e) { + if (e.which === 13) { + browse(e.target.value, endpoint, includeFiles, fileTypes); + } + }).appendTo(fileBrowserDialog).fileBrowser({ + showBrowseButton: false + }).on('autocompleteselect', function(e, ui) { + browse(ui.item.value, endpoint, includeFiles, fileTypes); + }); list = $('<ul>').appendTo(fileBrowserDialog); - $.each(data, function (i, entry) { - if (entry.isFile && fileTypes && - (!entry.isAllowed || fileTypes.indexOf("images") !== -1 && !entry.isImage)) { + $.each(data, function(i, entry) { + if (entry.isFile && fileTypes && (!entry.isAllowed || fileTypes.indexOf('images') !== -1 && !entry.isImage)) { // eslint-disable-line no-mixed-operators return true; } - link = $('<a href="javascript:void(0)">').on('click', function () { + link = $('<a href="javascript:void(0)">').on('click', function() { if (entry.isFile) { currentBrowserPath = entry.path; $('.browserDialog .ui-button:contains("Ok")').click(); @@ -70,8 +72,12 @@ link.prepend('<span class="ui-icon ui-icon-document"></span>'); } else { link.prepend('<span class="ui-icon ui-icon-folder-collapsed"></span>') - .on('mouseenter', function () { $('span', this).addClass('ui-icon-folder-open'); }) - .on('mouseleave', function () { $('span', this).removeClass('ui-icon-folder-open'); }); + .on('mouseenter', function() { + $('span', this).addClass('ui-icon-folder-open'); + }) + .on('mouseleave', function() { + $('span', this).removeClass('ui-icon-folder-open'); + }); } link.appendTo(list); }); @@ -80,46 +86,46 @@ }); } - $.fn.nFileBrowser = function (callback, options) { + $.fn.nFileBrowser = function(callback, options) { options = $.extend({}, $.Browser.defaults, options); - // make a fileBrowserDialog object if one doesn't exist already - if (!fileBrowserDialog) { - // set up the jquery dialog + // Make a fileBrowserDialog object if one doesn't exist already + if (fileBrowserDialog) { + // The title may change, even if fileBrowserDialog already exists + fileBrowserDialog.dialog('option', 'title', options.title); + } else { + // Set up the jquery dialog fileBrowserDialog = $('<div class="fileBrowserDialog" style="display:none"></div>').appendTo('body').dialog({ dialogClass: 'browserDialog', - title: options.title, - position: { my: 'center top', at: 'center top+60', of: window }, - minWidth: Math.min($(document).width() - 80, 650), - height: Math.min($(document).height() - 80, $(window).height() - 80), - maxHeight: Math.min($(document).height() - 80, $(window).height() - 80), - maxWidth: $(document).width() - 80, - modal: true, - autoOpen: false + title: options.title, + position: {my: 'center top', at: 'center top+60', of: window}, + minWidth: Math.min($(document).width() - 80, 650), + height: Math.min($(document).height() - 80, $(window).height() - 80), + maxHeight: Math.min($(document).height() - 80, $(window).height() - 80), + maxWidth: $(document).width() - 80, + modal: true, + autoOpen: false }); - } else { - // The title may change, even if fileBrowserDialog already exists - fileBrowserDialog.dialog('option', 'title', options.title); } fileBrowserDialog.dialog('option', 'buttons', [{ text: 'Ok', - 'class': 'btn', - click: function () { - // store the browsed path to the associated text field + class: 'btn', + click: function() { + // Store the browsed path to the associated text field callback(options.includeFiles ? currentBrowserPath : $(this).find('.fileBrowserField').val(), options); $(this).dialog('close'); } }, { text: 'Cancel', - 'class': 'btn', - click: function () { + class: 'btn', + click: function() { $(this).dialog('close'); } }]); - // set up the browser and launch the dialog - var initialDir = ''; + // Set up the browser and launch the dialog + let initialDir = ''; if (options.initialDir) { initialDir = options.initialDir; } @@ -130,40 +136,40 @@ return false; }; - $.fn.fileBrowser = function (options) { + $.fn.fileBrowser = function(options) { options = $.extend({}, $.Browser.defaults, options); - // text field used for the result + // Text field used for the result options.field = $(this); if (options.field.autocomplete && options.autocompleteURL) { - var query = ''; + let query = ''; options.field.autocomplete({ - position: { my : 'top', at: 'bottom', collision: 'flipfit' }, - source: function (request, response) { - //keep track of user submitted search term + position: {my: 'top', at: 'bottom', collision: 'flipfit'}, + source: function(request, response) { + // Keep track of user submitted search term query = $.ui.autocomplete.escapeRegex(request.term, options.includeFiles); $.ajax({ url: options.autocompleteURL, data: request, dataType: 'json', - success: function (data) { - //implement a startsWith filter for the results - var matcher = new RegExp('^' + query, 'i'); - var a = $.grep(data, function (item) { + success: function(data) { + // Implement a startsWith filter for the results + const matcher = new RegExp('^' + query, 'i'); + const a = $.grep(data, function(item) { return matcher.test(item); }); response(a); } }); }, - open: function () { + open: function() { $('.ui-autocomplete li.ui-menu-item a').removeClass('ui-corner-all'); } - }).data('ui-autocomplete')._renderItem = function (ul, item) { - //highlight the matched search term from the item -- note that this is global and will match anywhere - var resultItem = item.label; - var x = new RegExp('(?![^&;]+;)(?!<[^<>]*)(' + query + ')(?![^<>]*>)(?![^&;]+;)', 'gi'); - resultItem = resultItem.replace(x, function (fullMatch) { + }).data('ui-autocomplete')._renderItem = function(ul, item) { + // Highlight the matched search term from the item -- note that this is global and will match anywhere + let resultItem = item.label; + const x = new RegExp('(?![^&;]+;)(?!<[^<>]*)(' + query + ')(?![^<>]*>)(?![^&;]+;)', 'gi'); + resultItem = resultItem.replace(x, function(fullMatch) { return '<b>' + fullMatch + '</b>'; }); return $('<li></li>') @@ -173,9 +179,13 @@ }; } - var path, callback, ls = false; - // if the text field is empty and we're given a key then populate it with the last browsed value from localStorage - try { ls = !!(localStorage.getItem); } catch (e) {} + let path = false; + let callback = false; + let ls = false; + // If the text field is empty and we're given a key then populate it with the last browsed value from localStorage + try { + ls = Boolean(localStorage.getItem); + } catch (e) {} if (ls && options.key) { path = localStorage['fileBrowser-' + options.key]; } @@ -183,11 +193,10 @@ options.field.val(path); } - callback = function (path, options) { - + callback = function(path, options) { options.field.val(path); - // use a localStorage to remember for next time -- no ie6/7 + // Use a localStorage to remember for next time -- no ie6/7 if (ls && options.key) { localStorage['fileBrowser-' + options.key] = path; } @@ -195,11 +204,11 @@ options.field.addClass('fileBrowserField'); if (options.showBrowseButton) { - // append the browse button and give it a click behaviour + // Append the browse button and give it a click behaviour options.field.after( - $('<input type="button" value="Browse…" class="btn btn-inline fileBrowser">').on('click', function () { - var initialDir = options.field.val() || (options.key && path) || ''; - var optionsWithInitialDir = $.extend({}, options, {initialDir: initialDir}); + $('<input type="button" value="Browse…" class="btn btn-inline fileBrowser">').on('click', function() { + const initialDir = options.field.val() || (options.key && path) || ''; + const optionsWithInitialDir = $.extend({}, options, {initialDir: initialDir}); $(this).nFileBrowser(callback, optionsWithInitialDir); return false; }) diff --git a/gui/slick/js/configProviders.js b/gui/slick/js/configProviders.js index 866c93abb0374bce920d8770af1015645d95a268..bc2d4b301cf9790a42c41c9375d16c097d34f501 100644 --- a/gui/slick/js/configProviders.js +++ b/gui/slick/js/configProviders.js @@ -1,10 +1,10 @@ -$(document).ready(function(){ +$(document).ready(function() { $.fn.showHideProviders = function() { - $('.providerDiv').each(function(){ - var providerName = $(this).attr('id'); - var selectedProvider = $('#editAProvider :selected').val(); + $('.providerDiv').each(function() { + const providerName = $(this).attr('id'); + const selectedProvider = $('#editAProvider :selected').val(); - if (selectedProvider + 'Div' == providerName) { // jshint ignore:line + if (selectedProvider + 'Div' === providerName) { $(this).show(); } else { $(this).hide(); @@ -12,14 +12,14 @@ $(document).ready(function(){ }); }; - var ifExists = function(loopThroughArray, searchFor) { - var found = false; + const ifExists = function(loopThroughArray, searchFor) { + let found = false; loopThroughArray.forEach(function(rootObject) { if (rootObject.name === searchFor) { found = true; } - console.log(rootObject.name + " while searching for: "+ searchFor); + console.log(rootObject.name + ' while searching for: ' + searchFor); }); return found; }; @@ -30,77 +30,76 @@ $(document).ready(function(){ * @param {Array} selectedProvider * @return no return data. Function updateNewznabCaps() is run at callback */ - $.fn.getCategories = function (isDefault, selectedProvider) { - - var name = selectedProvider[0]; - var url = selectedProvider[1]; - var key = selectedProvider[2]; + $.fn.getCategories = function(isDefault, selectedProvider) { + const name = selectedProvider[0]; + const url = selectedProvider[1]; + const key = selectedProvider[2]; if (!name || !url || !key) { return; } - var params = {url: url, name: name, key: key}; + const params = {url: url, name: name, key: key}; - $(".updating_categories").wrapInner('<span><img src="' + srRoot + '/images/loading16' + themeSpinner + '.gif"> Updating Categories ...</span>'); - var jqxhr = $.getJSON(srRoot + '/config/providers/getNewznabCategories', params, function(data){ - $(this).updateNewznabCaps( data, selectedProvider ); - console.debug(data.tv_categories); // jshint ignore:line + $('.updating_categories').wrapInner('<span><img src="' + srRoot + '/images/loading16' + themeSpinner + '.gif"> Updating Categories ...</span>'); + const jqxhr = $.getJSON(srRoot + '/config/providers/getNewznabCategories', params, function(data) { + $(this).updateNewznabCaps(data, selectedProvider); + console.debug(data.tv_categories); }); jqxhr.always(function() { - $(".updating_categories").empty(); + $('.updating_categories').empty(); }); }; - var newznabProviders = []; - var torrentRssProviders = []; + const newznabProviders = []; + const torrentRssProviders = []; - $.fn.addProvider = function (id, name, url, key, cat, isDefault, showProvider) { + $.fn.addProvider = function(id, name, url, key, cat, isDefault, showProvider) { // eslint-disable-line max-params url = $.trim(url); if (!url) { return; } if (!/^https?:\/\//i.test(url)) { - url = "http://" + url; + url = 'http://' + url; } if (url.match('/$') === null) { - url = url + '/'; + url += '/'; } - var newData = [isDefault, [name, url, key, cat]]; + const newData = [isDefault, [name, url, key, cat]]; newznabProviders[id] = newData; $('#editANewznabProvider').addOption(id, name); $(this).populateNewznabSection(); - if ($('#provider_order_list > #'+id).length === 0 && showProvider !== false) { - var toAdd = '<li class="ui-state-default" id="' + id + '"> <input type="checkbox" id="enable_' + id + '" class="provider_enabler" CHECKED> <a href="' + anonURL + url + '" class="imgLink" target="_new"><img src="' + srRoot + '/images/providers/newznab.png" alt="' + name + '" width="16" height="16"></a> ' + name + '</li>'; + if ($('#provider_order_list > #' + id).length === 0 && showProvider !== false) { + const toAdd = '<li class="ui-state-default" id="' + id + '"> <input type="checkbox" id="enable_' + id + '" class="provider_enabler" CHECKED> <a href="' + anonURL + url + '" class="imgLink" target="_new"><img src="' + srRoot + '/images/providers/newznab.png" alt="' + name + '" width="16" height="16"></a> ' + name + '</li>'; $('#provider_order_list').append(toAdd); - $('#provider_order_list').sortable("refresh"); + $('#provider_order_list').sortable('refresh'); } $(this).makeNewznabProviderString(); }; - $.fn.addTorrentRssProvider = function (id, name, url, cookies, titleTAG) { - var newData = [name, url, cookies, titleTAG]; + $.fn.addTorrentRssProvider = function(id, name, url, cookies, titleTAG) { // eslint-disable-line max-params + const newData = [name, url, cookies, titleTAG]; torrentRssProviders[id] = newData; $('#editATorrentRssProvider').addOption(id, name); $(this).populateTorrentRssSection(); - if ($('#provider_order_list > #'+id).length === 0) { + if ($('#provider_order_list > #' + id).length === 0) { $('#provider_order_list').append('<li class="ui-state-default" id="' + id + '"> <input type="checkbox" id="enable_' + id + '" class="provider_enabler" CHECKED> <a href="' + anonURL + url + '" class="imgLink" target="_new"><img src="' + srRoot + '/images/providers/torrentrss.png" alt="' + name + '" width="16" height="16"></a> ' + name + '</li>'); - $('#provider_order_list').sortable("refresh"); + $('#provider_order_list').sortable('refresh'); } $(this).makeTorrentRssProviderString(); }; - $.fn.updateProvider = function (id, url, key, cat) { + $.fn.updateProvider = function(id, url, key, cat) { newznabProviders[id][1][1] = url; newznabProviders[id][1][2] = key; newznabProviders[id][1][3] = cat; @@ -110,15 +109,15 @@ $(document).ready(function(){ $(this).makeNewznabProviderString(); }; - $.fn.deleteProvider = function (id) { + $.fn.deleteProvider = function(id) { $('#editANewznabProvider').removeOption(id); delete newznabProviders[id]; $(this).populateNewznabSection(); - $('li').remove('#'+id); + $('li').remove('#' + id); $(this).makeNewznabProviderString(); }; - $.fn.updateTorrentRssProvider = function (id, url, cookies, titleTAG) { + $.fn.updateTorrentRssProvider = function(id, url, cookies, titleTAG) { torrentRssProviders[id][1] = url; torrentRssProviders[id][2] = cookies; torrentRssProviders[id][3] = titleTAG; @@ -126,48 +125,45 @@ $(document).ready(function(){ $(this).makeTorrentRssProviderString(); }; - $.fn.deleteTorrentRssProvider = function (id) { + $.fn.deleteTorrentRssProvider = function(id) { $('#editATorrentRssProvider').removeOption(id); delete torrentRssProviders[id]; $(this).populateTorrentRssSection(); - $('li').remove('#'+id); + $('li').remove('#' + id); $(this).makeTorrentRssProviderString(); }; $.fn.populateNewznabSection = function() { - var selectedProvider = $('#editANewznabProvider :selected').val(); - var data = ''; - var isDefault = ''; - var rrcat = ''; + const selectedProvider = $('#editANewznabProvider :selected').val(); + let data = ''; + let isDefault = ''; + let rrcat = ''; if (selectedProvider === 'addNewznab') { - data = ['','','']; + data = ['', '', '']; isDefault = 0; $('#newznab_add_div').show(); $('#newznab_update_div').hide(); - $('#newznab_cat').attr('disabled','disabled'); - $('#newznab_cap').attr('disabled','disabled'); - $('#newznab_cat_update').attr('disabled','disabled'); + $('#newznab_cat').attr('disabled', 'disabled'); + $('#newznab_cap').attr('disabled', 'disabled'); + $('#newznab_cat_update').attr('disabled', 'disabled'); $('#newznabcapdiv').hide(); - $("#newznab_cat option").each(function() { + $('#newznab_cat option').each(function() { $(this).remove(); - return; }); - $("#newznab_cap option").each(function() { + $('#newznab_cap option').each(function() { $(this).remove(); - return; }); - } else { data = newznabProviders[selectedProvider][1]; isDefault = newznabProviders[selectedProvider][0]; $('#newznab_add_div').hide(); $('#newznab_update_div').show(); - $('#newznab_cat').removeAttr("disabled"); - $('#newznab_cap').removeAttr("disabled"); - $('#newznab_cat_update').removeAttr("disabled"); + $('#newznab_cat').removeAttr('disabled'); + $('#newznab_cap').removeAttr('disabled'); + $('#newznab_cat_update').removeAttr('disabled'); $('#newznabcapdiv').show(); } @@ -175,39 +171,39 @@ $(document).ready(function(){ $('#newznab_url').val(data[1]); $('#newznab_key').val(data[2]); - //Check if not already array + // Check if not already array if (typeof data[3] === 'string') { - rrcat = data[3].split(","); + rrcat = data[3].split(','); } else { rrcat = data[3]; } // Update the category select box (on the right) - var newCatOptions = []; + const newCatOptions = []; if (rrcat) { - rrcat.forEach(function (cat) { + rrcat.forEach(function(cat) { if (cat !== '') { - newCatOptions.push({text : cat, value : cat}); + newCatOptions.push({text: cat, value: cat}); } }); - $("#newznab_cat").replaceOptions(newCatOptions); + $('#newznab_cat').replaceOptions(newCatOptions); } if (selectedProvider === 'addNewznab') { - $('#newznab_name').removeAttr("disabled"); - $('#newznab_url').removeAttr("disabled"); + $('#newznab_name').removeAttr('disabled'); + $('#newznab_url').removeAttr('disabled'); } else { - $('#newznab_name').attr("disabled", "disabled"); + $('#newznab_name').attr('disabled', 'disabled'); if (isDefault) { - $('#newznab_url').attr("disabled", "disabled"); - $('#newznab_delete').attr("disabled", "disabled"); + $('#newznab_url').attr('disabled', 'disabled'); + $('#newznab_delete').attr('disabled', 'disabled'); } else { - $('#newznab_url').removeAttr("disabled"); - $('#newznab_delete').removeAttr("disabled"); + $('#newznab_url').removeAttr('disabled'); + $('#newznab_delete').removeAttr('disabled'); } - //Get Categories Capabilities + // Get Categories Capabilities if (data[0] && data[1] && data[2] && !ifExists($.fn.newznabProvidersCapabilities, data[0])) { $(this).getCategories(isDefault, data); } @@ -222,34 +218,34 @@ $(document).ready(function(){ * @param {Array} selectedProvider * @return no return data. The multiselect input $("#newznab_cap") is updated, as a result. */ - $.fn.updateNewznabCaps = function( newzNabCaps, selectedProvider ) { + $.fn.updateNewznabCaps = function(newzNabCaps, selectedProvider) { if (newzNabCaps && !ifExists($.fn.newznabProvidersCapabilities, selectedProvider[0])) { - $.fn.newznabProvidersCapabilities.push({'name' : selectedProvider[0], 'categories' : newzNabCaps.tv_categories}); // jshint ignore:line + $.fn.newznabProvidersCapabilities.push({name: selectedProvider[0], categories: newzNabCaps.tv_categories}); } - //Loop through the array and if currently selected newznab provider name matches one in the array, use it to - //update the capabilities select box (on the left). - $("#newznab_cap").empty(); + // Loop through the array and if currently selected newznab provider name matches one in the array, use it to + // update the capabilities select box (on the left). + $('#newznab_cap').empty(); if (selectedProvider[0]) { $.fn.newznabProvidersCapabilities.forEach(function(newzNabCap) { if (newzNabCap.name && newzNabCap.name === selectedProvider[0] && newzNabCap.categories instanceof Array) { - var newCapOptions = []; + const newCapOptions = []; newzNabCap.categories.forEach(function(categorySet) { if (categorySet.id && categorySet.name) { - newCapOptions.push({value : categorySet.id, text : categorySet.name + "(" + categorySet.id + ")"}); + newCapOptions.push({value: categorySet.id, text: categorySet.name + '(' + categorySet.id + ')'}); } }); - $("#newznab_cap").replaceOptions(newCapOptions); + $('#newznab_cap').replaceOptions(newCapOptions); } }); } }; $.fn.makeNewznabProviderString = function() { - var provStrings = []; + const provStrings = []; - for (var id in newznabProviders) { - if (newznabProviders.hasOwnProperty(id)) { + for (let id = 0; id < newznabProviders.length; id++) { + if ({}.hasOwnProperty.call(newznabProviders, id)) { provStrings.push(newznabProviders[id][1].join('|')); } } @@ -258,11 +254,11 @@ $(document).ready(function(){ }; $.fn.populateTorrentRssSection = function() { - var selectedProvider = $('#editATorrentRssProvider :selected').val(); - var data = ''; + const selectedProvider = $('#editATorrentRssProvider :selected').val(); + let data = ''; if (selectedProvider === 'addTorrentRss') { - data = ['','','','title']; + data = ['', '', '', 'title']; $('#torrentrss_add_div').show(); $('#torrentrss_update_div').hide(); } else { @@ -277,23 +273,23 @@ $(document).ready(function(){ $('#torrentrss_titleTAG').val(data[3]); if (selectedProvider === 'addTorrentRss') { - $('#torrentrss_name').removeAttr("disabled"); - $('#torrentrss_url').removeAttr("disabled"); - $('#torrentrss_cookies').removeAttr("disabled"); - $('#torrentrss_titleTAG').removeAttr("disabled"); + $('#torrentrss_name').removeAttr('disabled'); + $('#torrentrss_url').removeAttr('disabled'); + $('#torrentrss_cookies').removeAttr('disabled'); + $('#torrentrss_titleTAG').removeAttr('disabled'); } else { - $('#torrentrss_name').attr("disabled", "disabled"); - $('#torrentrss_url').removeAttr("disabled"); - $('#torrentrss_cookies').removeAttr("disabled"); - $('#torrentrss_titleTAG').removeAttr("disabled"); - $('#torrentrss_delete').removeAttr("disabled"); + $('#torrentrss_name').attr('disabled', 'disabled'); + $('#torrentrss_url').removeAttr('disabled'); + $('#torrentrss_cookies').removeAttr('disabled'); + $('#torrentrss_titleTAG').removeAttr('disabled'); + $('#torrentrss_delete').removeAttr('disabled'); } }; $.fn.makeTorrentRssProviderString = function() { - var provStrings = []; - for (var id in torrentRssProviders) { - if (torrentRssProviders.hasOwnProperty(id)) { + const provStrings = []; + for (let id = 0; id < torrentRssProviders.length; id++) { + if ({}.hasOwnProperty.call(torrentRssProviders, id)) { provStrings.push(torrentRssProviders[id].join('|')); } } @@ -301,146 +297,144 @@ $(document).ready(function(){ $('#torrentrss_string').val(provStrings.join('!!!')); }; - $.fn.refreshProviderList = function() { - var idArr = $("#provider_order_list").sortable('toArray'); - var finalArr = []; + const idArr = $('#provider_order_list').sortable('toArray'); + const finalArr = []; $.each(idArr, function(key, val) { - var checked = + $('#enable_'+val).prop('checked') ? '1' : '0'; + const checked = $('#enable_' + val).is(':checked') ? '1' : '0'; finalArr.push(val + ':' + checked); }); - $("#provider_order").val(finalArr.join(' ')); + $('#provider_order').val(finalArr.join(' ')); $(this).refreshEditAProvider(); }; $.fn.refreshEditAProvider = function() { $('#editAProvider').empty(); - var idArr = $("#provider_order_list").sortable('toArray'); - var finalArr = []; + const idArr = $('#provider_order_list').sortable('toArray'); + const finalArr = []; $.each(idArr, function(key, val) { - if ($('#enable_'+val).prop('checked')) { + if ($('#enable_' + val).prop('checked')) { finalArr.push(val); } }); if (finalArr.length > 0) { - $('<select>').prop('id','editAProvider').addClass('form-control input-sm').appendTo('#provider-list'); - for (var i = 0, len = finalArr.length; i < len; i++) { - var provider = finalArr[i]; - $('#editAProvider').append($('<option>').prop('value',provider).text($.trim($('#'+provider).text()).replace(/\s\*$/, '').replace(/\s\*\*$/, ''))); + $('<select>').prop('id', 'editAProvider').addClass('form-control input-sm').appendTo('#provider-list'); + for (let i = 0, len = finalArr.length; i < len; i++) { + const provider = finalArr[i]; + $('#editAProvider').append($('<option>').prop('value', provider).text($.trim($('#' + provider).text()).replace(/\s\*$/, '').replace(/\s\*\*$/, ''))); } } else { - document.getElementsByClassName('component-desc')[0].innerHTML = "No providers available to configure."; + document.getElementsByClassName('component-desc')[0].innerHTML = 'No providers available to configure.'; } $(this).showHideProviders(); }; - $(this).on('change', '.newznab_key', function(){ - var providerId = $(this).attr('id'); - providerId = providerId.substring(0, providerId.length-'_hash'.length); + $(this).on('change', '.newznab_key', function() { + let providerId = $(this).attr('id'); + providerId = providerId.substring(0, providerId.length - '_hash'.length); - var url = $('#'+providerId+'_url').val(); - var cat = $('#'+providerId+'_cat').val(); - var key = $(this).val(); + const url = $('#' + providerId + '_url').val(); + const cat = $('#' + providerId + '_cat').val(); + const key = $(this).val(); $(this).updateProvider(providerId, url, key, cat); }); - $('#newznab_key,#newznab_url').change(function(){ - var selectedProvider = $('#editANewznabProvider :selected').val(); + $('#newznab_key,#newznab_url').change(function() { + const selectedProvider = $('#editANewznabProvider :selected').val(); - if (selectedProvider === "addNewznab"){ + if (selectedProvider === 'addNewznab') { return; } - var url = $('#newznab_url').val(); - var key = $('#newznab_key').val(); + const url = $('#newznab_url').val(); + const key = $('#newznab_key').val(); - var cat = $('#newznab_cat option').map(function(i, opt) { + const cat = $('#newznab_cat option').map(function(i, opt) { return $(opt).text(); }).toArray().join(','); $(this).updateProvider(selectedProvider, url, key, cat); }); - $('#torrentrss_url,#torrentrss_cookies,#torrentrss_titleTAG').change(function(){ - var selectedProvider = $('#editATorrentRssProvider :selected').val(); + $('#torrentrss_url,#torrentrss_cookies,#torrentrss_titleTAG').change(function() { + const selectedProvider = $('#editATorrentRssProvider :selected').val(); - if (selectedProvider === "addTorrentRss"){ + if (selectedProvider === 'addTorrentRss') { return; } - var url = $('#torrentrss_url').val(); - var cookies = $('#torrentrss_cookies').val(); - var titleTAG = $('#torrentrss_titleTAG').val(); + const url = $('#torrentrss_url').val(); + const cookies = $('#torrentrss_cookies').val(); + const titleTAG = $('#torrentrss_titleTAG').val(); $(this).updateTorrentRssProvider(selectedProvider, url, cookies, titleTAG); }); - $('body').on('change', '#editAProvider',function(){ + $('body').on('change', '#editAProvider', function() { $(this).showHideProviders(); }); - $('#editANewznabProvider').change(function(){ + $('#editANewznabProvider').change(function() { $(this).populateNewznabSection(); }); - $('#editATorrentRssProvider').change(function(){ + $('#editATorrentRssProvider').change(function() { $(this).populateTorrentRssSection(); }); - $('.provider_enabler').on('change', function(){ + $('.provider_enabler').on('change', function() { $(this).refreshProviderList(); }); - $('#newznab_cat_update').click(function(){ + $('#newznab_cat_update').click(function() { console.debug('Clicked Button'); // Maybe check if there is anything selected? - $("#newznab_cat option").each(function() { + $('#newznab_cat option').each(function() { $(this).remove(); }); - var newOptions = []; + const newOptions = []; // When the update botton is clicked, loop through the capabilities list // and copy the selected category id's to the category list on the right. - $("#newznab_cap option:selected").each(function(){ - var selectedCat = $(this).val(); + $('#newznab_cap option:selected').each(function() { + const selectedCat = $(this).val(); console.debug(selectedCat); newOptions.push({text: selectedCat, value: selectedCat}); }); - $("#newznab_cat").replaceOptions(newOptions); + $('#newznab_cat').replaceOptions(newOptions); - var selectedProvider = $("#editANewznabProvider :selected").val(); - if (selectedProvider === "addNewznab"){ + const selectedProvider = $('#editANewznabProvider :selected').val(); + if (selectedProvider === 'addNewznab') { return; } - var url = $('#newznab_url').val(); - var key = $('#newznab_key').val(); + const url = $('#newznab_url').val(); + const key = $('#newznab_key').val(); - var cat = $('#newznab_cat option').map(function(i, opt) { + const cat = $('#newznab_cat option').map(function(i, opt) { return $(opt).text(); }).toArray().join(','); - $("#newznab_cat option:not([value])").remove(); + $('#newznab_cat option:not([value])').remove(); $(this).updateProvider(selectedProvider, url, key, cat); }); + $('#newznab_add').click(function() { + const name = $.trim($('#newznab_name').val()); + const url = $.trim($('#newznab_url').val()); + const key = $.trim($('#newznab_key').val()); + // Var cat = $.trim($('#newznab_cat').val()); - $('#newznab_add').click(function(){ - var name = $.trim($('#newznab_name').val()); - var url = $.trim($('#newznab_url').val()); - var key = $.trim($('#newznab_key').val()); - //var cat = $.trim($('#newznab_cat').val()); - - var cat = $.trim($('#newznab_cat option').map(function(i, opt) { + const cat = $.trim($('#newznab_cat option').map(function(i, opt) { return $(opt).text(); }).toArray().join(',')); @@ -448,34 +442,34 @@ $(document).ready(function(){ return; } - var params = {name: name}; + const params = {name: name}; - // send to the form with ajax, get a return value - $.getJSON(srRoot + '/config/providers/canAddNewznabProvider', params, function(data){ + // Send to the form with ajax, get a return value + $.getJSON(srRoot + '/config/providers/canAddNewznabProvider', params, function(data) { if (data.error !== undefined) { - alert(data.error); + alert(data.error); // eslint-disable-line no-alert return; } $(this).addProvider(data.success, name, url, key, cat, 0); }); }); - $('.newznab_delete').click(function(){ - var selectedProvider = $('#editANewznabProvider :selected').val(); + $('.newznab_delete').click(function() { + const selectedProvider = $('#editANewznabProvider :selected').val(); $(this).deleteProvider(selectedProvider); }); - $('#torrentrss_add').click(function(){ - var name = $('#torrentrss_name').val(); - var url = $('#torrentrss_url').val(); - var cookies = $('#torrentrss_cookies').val(); - var titleTAG = $('#torrentrss_titleTAG').val(); - var params = { name: name, url: url, cookies: cookies, titleTAG: titleTAG}; + $('#torrentrss_add').click(function() { + const name = $('#torrentrss_name').val(); + const url = $('#torrentrss_url').val(); + const cookies = $('#torrentrss_cookies').val(); + const titleTAG = $('#torrentrss_titleTAG').val(); + const params = {name: name, url: url, cookies: cookies, titleTAG: titleTAG}; - // send to the form with ajax, get a return value - $.getJSON(srRoot + '/config/providers/canAddTorrentRssProvider', params, function(data){ + // Send to the form with ajax, get a return value + $.getJSON(srRoot + '/config/providers/canAddTorrentRssProvider', params, function(data) { if (data.error !== undefined) { - alert(data.error); + alert(data.error); // eslint-disable-line no-alert return; } @@ -484,66 +478,64 @@ $(document).ready(function(){ }); }); - $('.torrentrss_delete').on('click', function(){ + $('.torrentrss_delete').on('click', function() { $(this).deleteTorrentRssProvider($('#editATorrentRssProvider :selected').val()); $(this).refreshEditAProvider(); }); - $(this).on('change', "[class='providerDiv_tip'] input", function(){ - $('div .providerDiv ' + "[name=" + $(this).attr('name') + "]").replaceWith($(this).clone()); - $('div .providerDiv ' + "[newznab_name=" + $(this).attr('id') + "]").replaceWith($(this).clone()); + $(this).on('change', '[class=\'providerDiv_tip\'] input', function() { + $('div .providerDiv [name=' + $(this).attr('name') + ']').replaceWith($(this).clone()); + $('div .providerDiv [newznab_name=' + $(this).attr('id') + ']').replaceWith($(this).clone()); }); - $(this).on('change', "[class='providerDiv_tip'] select", function(){ - $(this).find('option').each( function() { + $(this).on('change', '[class=\'providerDiv_tip\'] select', function() { + $(this).find('option').each(function() { if ($(this).is(':selected')) { $(this).prop('defaultSelected', true); } else { $(this).prop('defaultSelected', false); } }); - $('div .providerDiv ' + "[name=" + $(this).attr('name') + "]").empty().replaceWith($(this).clone()); + $('div .providerDiv [name=' + $(this).attr('name') + ']').empty().replaceWith($(this).clone()); }); $.fn.makeTorrentOptionString = function(providerId) { - var seedRatio = $('.providerDiv_tip #' + providerId + '_seed_ratio').prop('value'); - var seedTime = $('.providerDiv_tip #' + providerId + '_seed_time').prop('value'); - var processMet = $('.providerDiv_tip #' + providerId + '_process_method').prop('value'); - var optionString = $('.providerDiv_tip #' + providerId + '_option_string'); + const seedRatio = $('.providerDiv_tip #' + providerId + '_seed_ratio').prop('value'); + const seedTime = $('.providerDiv_tip #' + providerId + '_seed_time').prop('value'); + const processMet = $('.providerDiv_tip #' + providerId + '_process_method').prop('value'); + const optionString = $('.providerDiv_tip #' + providerId + '_option_string'); optionString.val([seedRatio, seedTime, processMet].join('|')); }; - $(this).on('change', '.seed_option', function(){ - var providerId = $(this).attr('id').split('_')[0]; + $(this).on('change', '.seed_option', function() { + const providerId = $(this).attr('id').split('_')[0]; $(this).makeTorrentOptionString(providerId); }); $.fn.replaceOptions = function(options) { - var self, $option; - this.empty(); - self = this; + const self = this; $.each(options, function(index, option) { - $option = $("<option></option>").attr("value", option.value).text(option.text); + const $option = $('<option></option>').attr('value', option.value).text(option.text); self.append($option); }); }; - // initialization stuff + // Initialization stuff $.fn.newznabProvidersCapabilities = []; $(this).showHideProviders(); - $("#provider_order_list").sortable({ + $('#provider_order_list').sortable({ placeholder: 'ui-state-highlight', - update: function () { + update: function() { $(this).refreshProviderList(); } }); - $("#provider_order_list").disableSelection(); + $('#provider_order_list').disableSelection(); if ($('#editANewznabProvider').length) { $(this).populateNewznabSection(); diff --git a/gui/slick/js/core.js b/gui/slick/js/core.js index 6709e9b653e2cb1255f477a0d39af8b2b460adfa..326c7afec7eab7e64ffade9b72ef89d3c5543ade 100644 --- a/gui/slick/js/core.js +++ b/gui/slick/js/core.js @@ -10,7 +10,7 @@ var srRoot = getMeta('srRoot'), srPID = getMeta('srPID'), themeSpinner = getMeta('themeSpinner'), anonURL = getMeta('anonURL'), - topImageHtml = '<img src="' + srRoot + '/images/top.gif" width="31" height="11" alt="Jump to top" />', // jshint ignore:line + topImageHtml = '<img src="' + srRoot + '/images/top.gif" width="31" height="11" alt="Jump to top" />', loading = '<img src="' + srRoot + '/images/loading16' + themeSpinner + '.gif" height="16" width="16" />'; var configSuccess = function(){ @@ -255,12 +255,12 @@ var SICKRAGE = { } $('#anyQualities').find('option').each(function() { - var result = preset & $(this).val(); // jshint ignore:line + var result = preset & $(this).val(); $(this).attr('selected', result > 0 ? 'selected' : false); }); $('#bestQualities').find('option').each(function() { - var result = preset & ($(this).val() << 16); // jshint ignore:line + var result = preset & ($(this).val() << 16); $(this).attr('selected', result > 0 ? 'selected' : false); }); }, @@ -1167,7 +1167,7 @@ var SICKRAGE = { var key = parseInt($('#prowl_show').val(), 10); $.getJSON(srRoot + "/home/loadShowNotifyLists", function(notifyData) { if (notifyData._size > 0) { - $('#prowl_show_list').val(key >= 0 ? notifyData[key.toString()].prowl_notify_list : ''); // jshint ignore:line + $('#prowl_show_list').val(key >= 0 ? notifyData[key.toString()].prowl_notify_list : ''); } }); }); @@ -3886,7 +3886,7 @@ var SICKRAGE = { $('#nameToSearch').focus(); // @TODO we need to move to real forms instead of this - var myform = new formtowizard({ // jshint ignore:line + var myform = new formtowizard({ formid: 'addShowForm', revealfx: ['slide', 500], oninit: function () { @@ -4059,9 +4059,9 @@ var UTIL = { var gt = null, _n = null; $.getJSON(srRoot + '/ui/locale.json', function(data) { if (data !== undefined) { - gt = new Gettext(data.messages); // jshint ignore:line + gt = new Gettext(data.messages); } else { - gt = new Gettext(); // jshint ignore:line + gt = new Gettext(); } _ = function(str) { return gt.gettext(str); }; // Shortcut for normal gettext _n = function(str, pluralStr, num) { return gt.ngettext(str, pluralStr, num); }; // Shortcut for plural gettext diff --git a/gui/slick/js/lib/jquery.scrolltopcontrol-1.1.js b/gui/slick/js/lib/jquery.scrolltopcontrol-1.1.js index c53a58f7caf2f932f8430f700c12773c9191bfd1..083b572d0652b9df3933f591126feb8d8faa0e72 100644 --- a/gui/slick/js/lib/jquery.scrolltopcontrol-1.1.js +++ b/gui/slick/js/lib/jquery.scrolltopcontrol-1.1.js @@ -9,7 +9,7 @@ var scrolltotop={ //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top). setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]}, - controlHTML: topImageHtml, // jshint ignore:line + controlHTML: topImageHtml, controlattrs: {offsetx:10, offsety:10}, //offset of control relative to right/ bottom of window corner anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links diff --git a/gui/slick/js/parsers.js b/gui/slick/js/parsers.js index f54f91edf32dcb7aec765e3c4534a7e70232bed2..33fba76b71d929a924c013ef728a0f8e41b2801f 100644 --- a/gui/slick/js/parsers.js +++ b/gui/slick/js/parsers.js @@ -4,11 +4,10 @@ $.tablesorter.addParser({ return false; }, format: function(s) { - if (0 === s.indexOf( _('Loading...') )) { - return s.replace( _('Loading...') , '000'); - } else { - return (metaToBool('sickbeard.SORT_ARTICLE') ? (s || '') : (s || '').replace(/^(The|A|An)\s/i,'')); + if (s.indexOf(_('Loading...')) === 0) { + return s.replace(_('Loading...'), '000'); } + return (metaToBool('sickbeard.SORT_ARTICLE') ? (s || '') : (s || '').replace(/^(The|A|An)\s/i, '')); }, type: 'text' }); @@ -18,19 +17,19 @@ $.tablesorter.addParser({ return false; }, format: function(s) { - var replacements = { - 'custom': 11, - 'bluray': 10, // Custom: Only bluray - 'hd1080p': 9, + const replacements = { + custom: 11, + bluray: 10, // Custom: Only bluray + hd1080p: 9, '1080p': 8, // Custom: Only 1080p - 'hdtv': 7, // Custom: 1080p and 720p (only HDTV) + hdtv: 7, // Custom: 1080p and 720p (only HDTV) 'web-dl': 6, // Custom: 1080p and 720p (only WEB-DL) - 'hd720p': 5, + hd720p: 5, '720p': 4, // Custom: Only 720p - 'hd': 3, - 'sd': 2, - 'any': 1, - 'best': 0 + hd: 3, + sd: 2, + any: 1, + best: 0 }; return replacements[s.toLowerCase()]; }, @@ -63,23 +62,29 @@ $.tablesorter.addParser({ return false; }, format: function(s) { - var match = s.match(/^(.*)/); + const match = s.match(/^(.*)/); - if (match === null || match[1] === "?") { return -10; } + if (match === null || match[1] === '?') { + return -10; + } - var nums = match[1].split(" / "); - if (nums[0].indexOf("+") !== -1) { - var numParts = nums[0].split("+"); + const nums = match[1].split(' / '); + if (nums[0].indexOf('+') !== -1) { + const numParts = nums[0].split('+'); nums[0] = numParts[0]; } - nums[0] = parseInt(nums[0]); - nums[1] = parseInt(nums[1]); + nums[0] = parseInt(nums[0], 10); + nums[1] = parseInt(nums[1], 10); - if (nums[0] === 0) { return nums[1]; } - var finalNum = parseInt((getMeta('max_download_count'))*nums[0]/nums[1]); - var pct = Math.round((nums[0]/nums[1])*100) / 1000; - if (finalNum > 0) { finalNum += nums[0]; } + if (nums[0] === 0) { + return nums[1]; + } + let finalNum = parseInt((getMeta('max_download_count')) * nums[0] / nums[1], 10); + const pct = Math.round((nums[0] / nums[1]) * 100) / 1000; + if (finalNum > 0) { + finalNum += nums[0]; + } return finalNum + pct; }, diff --git a/gui/slick/js/plotTooltip.js b/gui/slick/js/plotTooltip.js index 4d5b62bdcba07b21dbe455fc3f166602cf45489f..72c1e4038dee1291731e3652323c27d54efeed11 100644 --- a/gui/slick/js/plotTooltip.js +++ b/gui/slick/js/plotTooltip.js @@ -1,18 +1,18 @@ -$(function () { - $('.plotInfo').each(function () { - var match = $(this).attr("id").match(/^plot_info_(\d+)_(\d+)_(\d+)$/); +$(function() { + $('.plotInfo').each(function() { + const match = $(this).attr('id').match(/^plot_info_(\d+)_(\d+)_(\d+)$/); $(this).qtip({ content: { text: _('Loading...'), ajax: { - url: $("#srRoot").val() + '/home/plotDetails', + url: $('#srRoot').val() + '/home/plotDetails', type: 'GET', data: { show: match[1], episode: match[3], season: match[2] }, - success: function (data) { + success: function(data) { this.set('content.text', data); } } diff --git a/gui/slick/js/ratingTooltip.js b/gui/slick/js/ratingTooltip.js index 4d9352e960900fb915b72e1087729a0d8caf301f..ca46448aac46cb15d8f6c3a86bb042a00c7006d9 100644 --- a/gui/slick/js/ratingTooltip.js +++ b/gui/slick/js/ratingTooltip.js @@ -1,4 +1,4 @@ -$(function () { +$(function() { $('.imdbstars').qtip({ content: { text: function() { diff --git a/gui/slick/js/rootDirs.js b/gui/slick/js/rootDirs.js index 4b821c705acec003b1fcbcb76ab7cf77c0ebeedb..fb2234124dc4e083c2b30520a0376c2772dcecf0 100644 --- a/gui/slick/js/rootDirs.js +++ b/gui/slick/js/rootDirs.js @@ -1,15 +1,15 @@ // Avoid `console` errors in browsers that lack a console. (function() { - var method; - var noop = function noop() {}; - var methods = [ + let method; + const noop = function() {}; + const methods = [ 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', 'timeStamp', 'trace', 'warn' ]; - var length = methods.length; - var console = (window.console = window.console || {}); + let length = methods.length; + const console = (window.console = window.console || {}); // eslint-disable-line no-multi-assign while (length--) { method = methods[length]; @@ -19,22 +19,28 @@ console[method] = noop; } } -}()); +})(); $(document).ready(function() { - function setDefault(which, force){ - console.log('setting default to '+which); + function setDefault(which, force) { + console.log('setting default to ' + which); - if (which !== undefined && !which.length) { return; } + if (which !== undefined && !which.length) { + return; + } - if ($('#whichDefaultRootDir').val() === which && force !== true) { return; } + if ($('#whichDefaultRootDir').val() === which && force !== true) { + return; + } - // put an asterisk on the text - if ($('#'+which).text().charAt(0) !== '*') { $('#'+which).text('*'+$('#'+which).text()); } + // Put an asterisk on the text + if ($('#' + which).text().charAt(0) !== '*') { + $('#' + which).text('*' + $('#' + which).text()); + } - // if there's an existing one then take the asterisk off + // If there's an existing one then take the asterisk off if ($('#whichDefaultRootDir').val() && force !== true) { - var oldDefault = $('#'+$('#whichDefaultRootDir').val()); + const oldDefault = $('#' + $('#whichDefaultRootDir').val()); oldDefault.text(oldDefault.text().substring(1)); } @@ -42,67 +48,68 @@ $(document).ready(function() { } function syncOptionIDs() { - // re-sync option ids - var i = 0; + // Re-sync option ids + let i = 0; $('#rootDirs option').each(function() { - $(this).attr('id', 'rd-'+(i++)); + $(this).attr('id', 'rd-' + (i++)); }); } function refreshRootDirs() { + if (!$('#rootDirs').length) { + return; + } - if (!$("#rootDirs").length) { return; } - - var doDisable = 'true'; + let doDisable = 'true'; - // re-sync option ids + // Re-sync option ids syncOptionIDs(); - // if nothing's selected then select the default - if (!$("#rootDirs option:selected").length && $('#whichDefaultRootDir').val().length) { - $('#'+$('#whichDefaultRootDir').val()).prop("selected", true); + // If nothing's selected then select the default + if (!$('#rootDirs option:selected').length && $('#whichDefaultRootDir').val().length) { + $('#' + $('#whichDefaultRootDir').val()).prop('selected', true); } - // if something's selected then we have some behavior to figure out - if ($("#rootDirs option:selected").length) { + // If something's selected then we have some behavior to figure out + if ($('#rootDirs option:selected').length) { doDisable = ''; } - // update the elements + // Update the elements $('#deleteRootDir').prop('disabled', doDisable); $('#defaultRootDir').prop('disabled', doDisable); $('#editRootDir').prop('disabled', doDisable); - var logString = ''; - var dirString = ''; - if ($('#whichDefaultRootDir').val().length >= 4){ + let logString = ''; + let dirString = ''; + if ($('#whichDefaultRootDir').val().length >= 4) { dirString = $('#whichDefaultRootDir').val().substr(3); } $('#rootDirs option').each(function() { - logString += $(this).val()+'='+$(this).text()+'->'+$(this).attr('id')+'\n'; + logString += $(this).val() + '=' + $(this).text() + '->' + $(this).attr('id') + '\n'; if (dirString.length) { dirString += '|' + $(this).val(); } }); - logString += 'def: '+ $('#whichDefaultRootDir').val(); + logString += 'def: ' + $('#whichDefaultRootDir').val(); console.log(logString); $('#rootDirText').val(dirString); $('#rootDirText').change(); - console.log('rootDirText: '+$('#rootDirText').val()); + console.log('rootDirText: ' + $('#rootDirText').val()); } function addRootDir(path) { - if (!path.length){ + if (!path.length) { return; } - // check if it's the first one - var isDefault = false; - if (!$('#whichDefaultRootDir').val().length){ + // Check if it's the first one + let isDefault = false; + if (!$('#whichDefaultRootDir').val().length) { isDefault = true; } - $('#rootDirs').append('<option value="'+path+'">'+path+'</option>'); + $('#rootDirs').append('<option value="' + path + '">' + path + '</option>'); syncOptionIDs(); @@ -111,46 +118,45 @@ $(document).ready(function() { } refreshRootDirs(); - $.get(srRoot+'/config/general/saveRootDirs', { rootDirString: $('#rootDirText').val() }); + $.get(srRoot + '/config/general/saveRootDirs', {rootDirString: $('#rootDirText').val()}); } function editRootDir(path) { - if (!path.length){ + if (!path.length) { return; } - // as long as something is selected - if ($("#rootDirs option:selected").length) { - - // update the selected one with the provided path - if ($("#rootDirs option:selected").attr('id') === $("#whichDefaultRootDir").val()) { - $("#rootDirs option:selected").text('*'+path); + // As long as something is selected + if ($('#rootDirs option:selected').length) { + // Update the selected one with the provided path + if ($('#rootDirs option:selected').attr('id') === $('#whichDefaultRootDir').val()) { + $('#rootDirs option:selected').text('*' + path); } else { - $("#rootDirs option:selected").text(path); + $('#rootDirs option:selected').text(path); } - $("#rootDirs option:selected").val(path); + $('#rootDirs option:selected').val(path); } refreshRootDirs(); - $.get(srRoot+'/config/general/saveRootDirs', { + $.get(srRoot + '/config/general/saveRootDirs', { rootDirString: $('#rootDirText').val() }); } - $('#addRootDir').on('click', function(){ + $('#addRootDir').on('click', function() { $(this).nFileBrowser(addRootDir); }); - $('#editRootDir').on('click', function(){ + $('#editRootDir').on('click', function() { $(this).nFileBrowser(editRootDir, { - 'initialDir': $("#rootDirs option:selected").val() + initialDir: $('#rootDirs option:selected').val() }); }); $('#deleteRootDir').on('click', function() { - if ($("#rootDirs option:selected").length) { - var toDelete = $("#rootDirs option:selected"); - var newDefault = (toDelete.attr('id') === $("#whichDefaultRootDir").val()); - var deletedNum = $("#rootDirs option:selected").attr('id').substr(3); + if ($('#rootDirs option:selected').length) { + const toDelete = $('#rootDirs option:selected'); + const newDefault = (toDelete.attr('id') === $('#whichDefaultRootDir').val()); + const deletedNum = $('#rootDirs option:selected').attr('id').substr(3); toDelete.remove(); syncOptionIDs(); @@ -158,31 +164,29 @@ $(document).ready(function() { if (newDefault) { console.log('new default when deleting'); - // we deleted the default so this isn't valid anymore - $("#whichDefaultRootDir").val(''); + // We deleted the default so this isn't valid anymore + $('#whichDefaultRootDir').val(''); - // if we're deleting the default and there are options left then pick a new default - if ($("#rootDirs option").length) { + // If we're deleting the default and there are options left then pick a new default + if ($('#rootDirs option').length) { setDefault($('#rootDirs option').attr('id')); } - - } else if ($("#whichDefaultRootDir").val().length) { - var oldDefaultNum = $("#whichDefaultRootDir").val().substr(3); + } else if ($('#whichDefaultRootDir').val().length) { + const oldDefaultNum = $('#whichDefaultRootDir').val().substr(3); if (oldDefaultNum > deletedNum) { - $("#whichDefaultRootDir").val('rd-'+(oldDefaultNum-1)); + $('#whichDefaultRootDir').val('rd-' + (oldDefaultNum - 1)); } } - } refreshRootDirs(); - $.get(srRoot+'/config/general/saveRootDirs', { - 'rootDirString': $('#rootDirText').val() + $.get(srRoot + '/config/general/saveRootDirs', { + rootDirString: $('#rootDirText').val() }); }); - $('#defaultRootDir').on('click', function(){ - if ($("#rootDirs option:selected").length) { - setDefault($("#rootDirs option:selected").attr('id')); + $('#defaultRootDir').on('click', function() { + if ($('#rootDirs option:selected').length) { + setDefault($('#rootDirs option:selected').attr('id')); } refreshRootDirs(); $.get(srRoot + '/config/general/saveRootDirs', { @@ -191,7 +195,7 @@ $(document).ready(function() { }); $('#rootDirs').click(refreshRootDirs); - // set up buttons on page load + // Set up buttons on page load syncOptionIDs(); setDefault($('#whichDefaultRootDir').val(), true); refreshRootDirs(); diff --git a/gui/slick/js/sceneExceptionsTooltip.js b/gui/slick/js/sceneExceptionsTooltip.js index 7f99b99d89929f158dfcfc1a04ce4031fbb84093..b67147c02e50d620f66db8ec95298d7145093b1c 100644 --- a/gui/slick/js/sceneExceptionsTooltip.js +++ b/gui/slick/js/sceneExceptionsTooltip.js @@ -1,16 +1,16 @@ -$(function () { - $('.title a').each(function () { - var match = $(this).parent().attr("id").match(/^scene_exception_(\d+)$/); +$(function() { + $('.title a').each(function() { + const match = $(this).parent().attr('id').match(/^scene_exception_(\d+)$/); $(this).qtip({ content: { text: _('Loading...'), ajax: { - url: $("#srRoot").val() + '/home/sceneExceptions', + url: $('#srRoot').val() + '/home/sceneExceptions', type: 'GET', data: { show: match[1] }, - success: function (data) { + success: function(data) { this.set('content.text', data); } } diff --git a/gui/slick/js/testRename.js b/gui/slick/js/testRename.js index 2f12fe1e84fe0002b8b9759247ac1db702f04d18..69e3600b1e5c9369ba185f546dda5137034e6eda 100644 --- a/gui/slick/js/testRename.js +++ b/gui/slick/js/testRename.js @@ -1,22 +1,22 @@ -$(document).ready(function(){ - $('.seriesCheck').click(function(){ - var serCheck = this; +$(document).ready(function() { + $('.seriesCheck').click(function() { + const serCheck = this; - $('.seasonCheck:visible').each(function(){ + $('.seasonCheck:visible').each(function() { this.checked = serCheck.checked; }); - $('.epCheck:visible').each(function(){ + $('.epCheck:visible').each(function() { this.checked = serCheck.checked; }); }); - $('.seasonCheck').click(function(){ - var seasCheck = this; - var seasNo = $(seasCheck).attr('id'); + $('.seasonCheck').click(function() { + const seasCheck = this; + const seasNo = $(seasCheck).attr('id'); - $('.epCheck:visible').each(function(){ - var epParts = $(this).attr('id').split('x'); + $('.epCheck:visible').each(function() { + const epParts = $(this).attr('id').split('x'); if (epParts[0] === seasNo) { this.checked = seasCheck.checked; @@ -24,8 +24,8 @@ $(document).ready(function(){ }); }); - $('input[type=submit]').click(function(){ - var epArr = []; + $('input[type=submit]').click(function() { + const epArr = []; $('.epCheck').each(function() { if (this.checked === true) { @@ -33,8 +33,9 @@ $(document).ready(function(){ } }); - if (epArr.length === 0) { return false; } + if (epArr.length === 0) { + return false; + } $.redirect(srRoot + '/home/doRename', {show: $('#showID').attr('value'), eps: epArr.join('|')}, 'POST'); }); - }); diff --git a/gui/slick/js/trendingShows.js b/gui/slick/js/trendingShows.js index 6679f8e775c937bb908543f412c5342a7733742e..899371a794a73086b8c6f00419e8bcc598a3c2f9 100644 --- a/gui/slick/js/trendingShows.js +++ b/gui/slick/js/trendingShows.js @@ -1,17 +1,17 @@ -$(document).ready(function(){ - // initialise combos for dirty page refreshes +$(document).ready(function() { + // Initialise combos for dirty page refreshes $('#showsort').val('original'); $('#showsortdirection').val('asc'); - var $container = [$('#container')]; - $.each($container, function () { + const $container = [$('#container')]; + $.each($container, function() { this.isotope({ itemSelector: '.trakt_show', sortBy: 'original-order', layoutMode: 'fitRows', getSortData: { name: function(itemElem) { - var name = $(itemElem).attr('data-name') || ''; + const name = $(itemElem).attr('data-name') || ''; return (metaToBool('sickbeard.SORT_ARTICLE') ? name : name.replace(/^(The|A|An)\s/i, '')).toLowerCase(); }, rating: '[data-rating] parseInt', @@ -21,16 +21,16 @@ $(document).ready(function(){ }); $('#showsort').on('change', function() { - var sortCriteria; + let sortCriteria; switch (this.value) { case 'original': sortCriteria = 'original-order'; break; case 'rating': - /* randomise, else the rating_votes can already + /* Randomise, else the rating_votes can already * have sorted leaving this with nothing to do. */ - $('#container').isotope({ sortBy: 'random' }); + $('#container').isotope({sortBy: 'random'}); sortCriteria = 'rating'; break; case 'rating_votes': @@ -43,12 +43,12 @@ $(document).ready(function(){ sortCriteria = 'name'; break; } - $('#container').isotope({ sortBy: sortCriteria }); + $('#container').isotope({sortBy: sortCriteria}); }); $('#showsortdirection').on('change', function() { $('#container').isotope({ - sortAscending: ('asc' === this.value) + sortAscending: (this.value === 'asc') }); }); }); diff --git a/gui/slick/scss/core.scss b/gui/slick/scss/core.scss deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/gui/slick/views/apiBuilder.mako b/gui/slick/views/apiBuilder.mako index b5917386cf56e4637a4009d3c8027fe8b3064ec5..0d9b7503e589079fc39cfc729672da901f3faf96 100644 --- a/gui/slick/views/apiBuilder.mako +++ b/gui/slick/views/apiBuilder.mako @@ -1,4 +1,6 @@ <%! + import json + import sickbeard %> <!DOCTYPE html> @@ -219,8 +221,8 @@ </div> <script type="text/javascript"> - var episodes = ${episodes}; - // var commands = ${sorted(commands)}; // Dont know why this is breaking the apibuilder + var episodes = ${ json.dumps(episodes) }; + var commands = ${ json.dumps(sorted(commands)) }; </script> <script type="text/javascript" src="${ static_url('js/vender.min.js') }"></script> <script type="text/javascript" src="${ static_url('js/core.min.js') }"></script> diff --git a/gui/slick/views/config_providers.mako b/gui/slick/views/config_providers.mako index 3adf1d2a1d125da3f92d272d9c84d63357fa5294..ccfc57194496e9641086a7bcf422309dd71aabba 100644 --- a/gui/slick/views/config_providers.mako +++ b/gui/slick/views/config_providers.mako @@ -86,7 +86,7 @@ <input type="checkbox" id="enable_${curName}" class="provider_enabler" ${('', 'checked="checked"')[curProvider.is_enabled() is True]}/> <a href="${anon_url(curURL)}" class="imgLink" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;"> - <img src="${ static_url('/images/providers/' + curProvider.image_name()) }" + <img src="${ static_url('images/providers/' + curProvider.image_name()) }" alt="${curProvider.name}" title="${curProvider.name}" width="16" height="16" style="vertical-align:middle;"/> </a> diff --git a/package.json b/package.json index a392ac41ed9f6b103ec074c2389077ca575f009f..e1157b47f7b6bf0dbe6f2f8ee343d9025c8e68db 100644 --- a/package.json +++ b/package.json @@ -1,39 +1,85 @@ { - "name": "sickrage", - "version": "4.0.72", - "private": true, - "repository": { - "type": "git", - "url": "git+https://github.com/SickRage/SickRage.git" - }, - "bugs": { - "url": "https://github.com/SickRage/SickRage/issues" - }, - "homepage": "https://github.com/SickRage/SickRage#readme", - "scripts": { - "test": "grunt travis", - "security": "snyk test" - }, - "devDependencies": { - "chai": "^3.5.0", - "grunt": "^1.0.1", - "grunt-bower-concat": "^1.0.0", - "grunt-bower-task": "^0.5.0", - "grunt-cli": "^1.2.0", - "grunt-contrib-clean": "^1.1.0", - "grunt-contrib-copy": "^1.0.0", - "grunt-contrib-cssmin": "^2.0.0", - "grunt-contrib-jshint": "^1.1.0", - "grunt-contrib-sass": "^1.0.0", - "grunt-contrib-uglify": "^2.3.0", - "grunt-contrib-watch": "^1.0.0", - "grunt-exec": "^2.0.0", - "grunt-mocha": "^1.0.4", - "grunt-po2json": "git+https://github.com/rockykitamura/grunt-po2json.git", - "grunt-sass": "^2.0.0", - "load-grunt-tasks": "^3.5.2", - "mocha": "^3.2.0", - "npm-check-updates": "^2.10.5", - "snyk": "^1.28.1" - } + "name": "sickrage", + "version": "4.0.72", + "private": true, + "repository": { + "type": "git", + "url": "git+https://github.com/SickRage/SickRage.git" + }, + "bugs": { + "url": "https://github.com/SickRage/SickRage/issues" + }, + "homepage": "https://github.com/SickRage/SickRage#readme", + "scripts": { + "test": "xo && grunt", + "security": "snyk test" + }, + "devDependencies": { + "grunt": "^1.0.1", + "grunt-bower-concat": "^1.0.0", + "grunt-bower-task": "^0.5.0", + "grunt-cli": "^1.2.0", + "grunt-contrib-clean": "^1.1.0", + "grunt-contrib-copy": "^1.0.0", + "grunt-contrib-cssmin": "^2.0.0", + "grunt-contrib-jshint": "^1.1.0", + "grunt-contrib-sass": "^1.0.0", + "grunt-contrib-uglify": "^2.3.0", + "grunt-contrib-watch": "^1.0.0", + "grunt-exec": "^2.0.0", + "grunt-po2json": "git+https://github.com/rockykitamura/grunt-po2json.git", + "load-grunt-tasks": "^3.5.2", + "npm-check-updates": "^2.10.5", + "snyk": "^1.28.1", + "xo": "^0.18.2" + }, + "xo": { + "space": 4, + "rules": { + "space-before-function-paren": [ + "error", + "never" + ], + "unicorn/no-new-buffer": "off", + "unicorn/filename-case": "off", + "unicorn/custom-error-definition": "off", + "unicorn/no-array-instanceof": "off", + "unicorn/catch-error-name": "off", + "unicorn/no-process-exit": "off", + "unicorn/throw-new-error": "off", + "unicorn/number-literal-case": "off", + "unicorn/prefer-starts-ends-with": "off", + "unicorn/prefer-type-error": "off", + "unicorn/explicit-length-check": "off", + "unicorn/no-abusive-eslint-disable": "off", + "prefer-arrow-callback": "off", + "object-shorthand": [ + "error", + "never" + ] + }, + "esnext": false, + "envs": [ + "browser" + ], + "globals": [ + "_", + "srRoot", + "jQuery", + "$", + "metaToBool", + "getMeta", + "PNotify", + "themeSpinner", + "anonURL" + ], + "ignores": [ + "core.min.js", + "vender.min.js", + "lib/**/*", + "gui/slick/js/lib/*", + "gui/slick/js/core.js", + "Gruntfile.js" + ] + } } diff --git a/readme.md b/readme.md index 2982519d3ee298eff15bc66c90c1e2b6047f4407..603f4759c982b4070873530ba46312083554fffa 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -SickRage [](https://travis-ci.org/SickRage/SickRage) [](https://ci.appveyor.com/project/miigotu/sickrage/branch/master) [](http://isitmaintained.com/project/SickRage/SickRage "Average time to resolve an issue") [](http://isitmaintained.com/project/SickRage/SickRage "Percentage of issues still open") [](https://codecov.io/gh/SickRage/SickRage) +SickRage [](https://travis-ci.org/SickRage/SickRage) [](https://ci.appveyor.com/project/miigotu/sickrage/branch/master) [](http://isitmaintained.com/project/SickRage/SickRage "Average time to resolve an issue") [](http://isitmaintained.com/project/SickRage/SickRage "Percentage of issues still open") [](https://codecov.io/gh/SickRage/SickRage) [](https://github.com/sindresorhus/xo) ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================== Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic. diff --git a/tests/mocha/testrunner.html b/tests/mocha/testrunner.html deleted file mode 100644 index 8488c972ca03c73bdb25012625db8c93205b16d9..0000000000000000000000000000000000000000 --- a/tests/mocha/testrunner.html +++ /dev/null @@ -1,34 +0,0 @@ -<html> - <head> - <meta charset="utf-8"> - <title>Mocha Tests</title> - <link rel="stylesheet" href="../../node_modules/mocha/mocha.css" /> - <meta data-var="FAKE_TRUE_BOOLEAN" data-content="TRUE"> - <meta data-var="FAKE_TRUE_NUMBER" data-content="1"> - <meta data-var="FAKE_FALSE_BOOLEAN" data-content="FALSE"> - <meta data-var="FAKE_FALSE_NUMBER" data-content="0"> - <meta data-var="FAKE_CONTENT" data-content="RANDOM_CONTENT"> - </head> - <body> - <div id="mocha"></div> - <script src="../../node_modules/mocha/mocha.js"></script> - <script src="../../node_modules/chai/chai.js"></script> - <script src="../../gui/slick/js/vender.min.js"></script> - <script src="../../gui/slick/js/core.js"></script> - - <script> - mocha.setup('bdd'); - mocha.reporter('html'); - </script> - - <!-- Tests --> - <script src="tests.js"></script> - - <script> - // Only tests run in real browser, injected script run if options.run == true - if (navigator.userAgent.indexOf('PhantomJS') < 0) { - mocha.run(); - } - </script> - </body> -</html> diff --git a/tests/mocha/tests.js b/tests/mocha/tests.js deleted file mode 100644 index 718c0ceedb96376f011670895db5a9ac96283a56..0000000000000000000000000000000000000000 --- a/tests/mocha/tests.js +++ /dev/null @@ -1,34 +0,0 @@ -describe('metaToBool', function(){ - it('should return true', function(){ - chai.assert.equal(true, metaToBool('FAKE_TRUE_BOOLEAN')); - chai.assert.equal(true, metaToBool('FAKE_TRUE_NUMBER')); - }); - it('should return false', function(){ - chai.assert.equal(false, metaToBool('FAKE_FALSE_BOOLEAN')); - chai.assert.equal(false, metaToBool('FAKE_FALSE_NUMBER')); - }); - it('should return undefined', function(){ - chai.assert.equal(undefined, metaToBool('FAKE_UNDEFINED')); - }); -}); -describe('getMeta', function(){ - it('should return meta variable', function(){ - chai.assert.equal('RANDOM_CONTENT', getMeta('FAKE_CONTENT')); - }); -}); -describe('isMeta', function(){ - it('should return true if any string in array is matched', function(){ - chai.assert.equal(true, isMeta('FAKE_CONTENT', ['RANDOM_CONTENT'])); - }); - it('should return false if no strings in the array match', function(){ - chai.assert.equal(false, isMeta('FAKE_CONTENT', ['a', 'b', 'c'])); - }); -}); -describe('shiftReturn', function(){ - it('should return an array without the first item', function(){ - chai.assert.deepEqual(['2', '3'], shiftReturn(['1', '2', '3'])); - }); - it('should return an empty array', function(){ - chai.assert.deepEqual([], shiftReturn(['1'])); - }); -}); diff --git a/yarn.lock b/yarn.lock index e52ee486bbe917e2b406cf2f8497f3a6bce41f5a..d4083e71c071b2622dba0d01460a2b8628604f81 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6,14 +6,35 @@ abbrev@1, abbrev@^1.0.7: version "1.1.0" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" -abbrev@~1.0.4: +abbrev@~1.0.9: version "1.0.9" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" -acorn@^3.1.0: +acorn-jsx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" + dependencies: + acorn "^3.0.4" + +acorn@^3.0.4, acorn@^3.1.0: version "3.3.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" +acorn@^5.0.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" + +ajv-keywords@^1.0.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" + +ajv@^4.7.0: + version "4.11.8" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + dependencies: + co "^4.6.0" + json-stable-stringify "^1.0.1" + ajv@^4.9.1: version "4.11.5" resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" @@ -29,34 +50,24 @@ align-text@^0.1.1, align-text@^0.1.3: longest "^1.0.1" repeat-string "^1.5.2" -amdefine@>=0.0.4: - version "1.0.1" - resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" +ansi-align@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + dependencies: + string-width "^2.0.0" -ansi-escapes@^1.1.0, ansi-escapes@^1.3.0: +ansi-escapes@^1.1.0, ansi-escapes@^1.3.0, ansi-escapes@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" -ansi-regex@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-0.1.0.tgz#55ca60db6900857c423ae9297980026f941ed903" - -ansi-regex@^0.2.0, ansi-regex@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-0.2.1.tgz#0d8e946967a3d8143f93e24e298525fc1b2235f9" - -ansi-regex@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-1.1.1.tgz#41c847194646375e6a1a5d10c3ca054ef9fc980d" +ansi-regex@*, ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" -ansi-styles@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.1.0.tgz#eaecbf66cd706882760b2f4691582b8f55d7a7de" - ansi-styles@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" @@ -65,19 +76,23 @@ ansi-styles@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" -ansicolors@^0.3.2: +ansicolors@^0.3.2, ansicolors@~0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" +ansistyles@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/ansistyles/-/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539" + aproba@^1.0.3: version "1.1.1" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" -archy@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/archy/-/archy-0.0.2.tgz#910f43bf66141fc335564597abc189df44b3d35e" +aproba@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" -archy@^1.0.0: +archy@^1.0.0, archy@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" @@ -88,7 +103,7 @@ are-we-there-yet@~1.1.2: delegates "^1.0.0" readable-stream "^2.0.0 || ^1.1.13" -argparse@^1.0.2: +argparse@^1.0.2, argparse@^1.0.7: version "1.0.9" resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" dependencies: @@ -98,21 +113,16 @@ array-differ@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" -array-filter@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" - array-find-index@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" -array-map@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" - -array-reduce@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" +array-index@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-index/-/array-index-1.0.0.tgz#ec56a749ee103e4e08c790b9c353df16055b97f9" + dependencies: + debug "^2.2.0" + es6-symbol "^3.0.2" array-union@^1.0.1: version "1.0.2" @@ -124,18 +134,14 @@ array-uniq@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" -arrify@^1.0.0: +arrify@^1.0.0, arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" -asap@~2.0.3: +asap@^2.0.0, asap@~2.0.3, asap@~2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" -asn1@0.1.11: - version "0.1.11" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.1.11.tgz#559be18376d08a4ec4dbe80877d27818639b2df7" - asn1@~0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" @@ -144,10 +150,6 @@ assert-plus@1.0.0, assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" -assert-plus@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz#ee74009413002d84cec7219c6ac811812e723160" - assert-plus@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" @@ -156,10 +158,6 @@ assertion-error@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" -async-foreach@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" - async@^0.9.0, async@~0.9.0: version "0.9.2" resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" @@ -168,22 +166,16 @@ async@^1.5.0, async@^1.5.2, async@~1.5, async@~1.5.2: version "1.5.2" resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" -async@~0.1.22: - version "0.1.22" - resolved "https://registry.yarnpkg.com/async/-/async-0.1.22.tgz#0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061" - -async@~0.2.6, async@~0.2.8: - version "0.2.10" - resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" +async@^2.3.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" + dependencies: + lodash "^4.14.0" asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" -aws-sign2@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.5.0.tgz#c57103f7a17fc037f02d7c2e64b602ea223f7d63" - aws-sign2@~0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" @@ -192,28 +184,33 @@ aws4@^1.2.1: version "1.6.0" resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" +babel-code-frame@^6.16.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" + dependencies: + chalk "^1.1.0" + esutils "^2.0.2" + js-tokens "^3.0.0" + balanced-match@^0.4.1: version "0.4.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + bcrypt-pbkdf@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" dependencies: tweetnacl "^0.14.3" -binary@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz#9f60553bc5ce8c3386f3b553cff47462adecaa79" - dependencies: - buffers "~0.1.1" - chainsaw "~0.1.0" - -bl@^0.9.0, bl@~0.9.0: - version "0.9.5" - resolved "https://registry.yarnpkg.com/bl/-/bl-0.9.5.tgz#c06b797af085ea00bc527afc8efcf11de2232054" +bl@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" dependencies: - readable-stream "~1.0.26" + readable-stream "~2.0.5" block-stream@*: version "0.0.9" @@ -221,6 +218,10 @@ block-stream@*: dependencies: inherits "~2.0.0" +bluebird@^3.4.3: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" + body-parser@~1.14.0: version "1.14.2" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.14.2.tgz#1015cb1fe2c443858259581db53332f8d0cf50f9" @@ -236,101 +237,24 @@ body-parser@~1.14.0: raw-body "~2.1.5" type-is "~1.6.10" -boom@0.4.x: - version "0.4.2" - resolved "https://registry.yarnpkg.com/boom/-/boom-0.4.2.tgz#7a636e9ded4efcefb19cef4947a3c67dfaee911b" - dependencies: - hoek "0.9.x" - boom@2.x.x: version "2.10.1" resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" dependencies: hoek "2.x.x" -bower-config@~0.5.0, bower-config@~0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/bower-config/-/bower-config-0.5.2.tgz#1f7d2e899e99b70c29a613e70d4c64590414b22e" +bower-json@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/bower-json/-/bower-json-0.8.1.tgz#96c14723241ae6466a9c52e16caa32623a883843" dependencies: - graceful-fs "~2.0.0" - mout "~0.9.0" - optimist "~0.6.0" - osenv "0.0.3" - -bower-endpoint-parser@~0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/bower-endpoint-parser/-/bower-endpoint-parser-0.2.2.tgz#00b565adbfab6f2d35addde977e97962acbcb3f6" + deep-extend "^0.4.0" + ext-name "^3.0.0" + graceful-fs "^4.1.3" + intersect "^1.0.1" -bower-json@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/bower-json/-/bower-json-0.4.0.tgz#a99c3ccf416ef0590ed0ded252c760f1c6d93766" - dependencies: - deep-extend "~0.2.5" - graceful-fs "~2.0.0" - intersect "~0.0.3" - -bower-logger@~0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/bower-logger/-/bower-logger-0.2.2.tgz#39be07e979b2fc8e03a94634205ed9422373d381" - -bower-registry-client@~0.2.0: - version "0.2.4" - resolved "https://registry.yarnpkg.com/bower-registry-client/-/bower-registry-client-0.2.4.tgz#269fc7e898b627fb939d1144a593254d7fbbeebc" - dependencies: - async "~0.2.8" - bower-config "~0.5.0" - graceful-fs "~2.0.0" - lru-cache "~2.3.0" - mkdirp "~0.3.5" - request "~2.51.0" - request-replay "~0.2.0" - rimraf "~2.2.0" - -bower@~1.3.0: - version "1.3.12" - resolved "https://registry.yarnpkg.com/bower/-/bower-1.3.12.tgz#37de0edb3904baf90aee13384a1a379a05ee214c" - dependencies: - abbrev "~1.0.4" - archy "0.0.2" - bower-config "~0.5.2" - bower-endpoint-parser "~0.2.2" - bower-json "~0.4.0" - bower-logger "~0.2.2" - bower-registry-client "~0.2.0" - cardinal "0.4.0" - chalk "0.5.0" - chmodr "0.1.0" - decompress-zip "0.0.8" - fstream "~1.0.2" - fstream-ignore "~1.0.1" - glob "~4.0.2" - graceful-fs "~3.0.1" - handlebars "~2.0.0" - inquirer "0.7.1" - insight "0.4.3" - is-root "~1.0.0" - junk "~1.0.0" - lockfile "~1.0.0" - lru-cache "~2.5.0" - mkdirp "0.5.0" - mout "~0.9.0" - nopt "~3.0.0" - opn "~1.0.0" - osenv "0.1.0" - p-throttler "0.1.0" - promptly "0.2.0" - q "~1.0.1" - request "~2.42.0" - request-progress "0.3.0" - retry "0.6.0" - rimraf "~2.2.0" - semver "~2.3.0" - shell-quote "~1.4.1" - stringify-object "~1.0.0" - tar-fs "0.5.2" - tmp "0.0.23" - update-notifier "0.2.0" - which "~1.0.5" +bower@^1.7.9: + version "1.8.0" + resolved "https://registry.yarnpkg.com/bower/-/bower-1.8.0.tgz#55dbebef0ad9155382d9e9d3e497c1372345b44a" bower@~1.7.7: version "1.7.9" @@ -347,6 +271,18 @@ boxen@^0.3.1: string-width "^1.0.1" widest-line "^1.0.0" +boxen@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.1.0.tgz#b1b69dd522305e807a99deee777dbd6e5167b102" + dependencies: + ansi-align "^2.0.0" + camelcase "^4.0.0" + chalk "^1.1.1" + cli-boxes "^1.0.0" + string-width "^2.0.0" + term-size "^0.1.0" + widest-line "^1.0.0" + brace-expansion@^1.0.0: version "1.1.6" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" @@ -354,9 +290,12 @@ brace-expansion@^1.0.0: balanced-match "^0.4.1" concat-map "0.0.1" -browser-stdout@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" +brace-expansion@^1.1.7: + version "1.1.8" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" browserify-zlib@^0.1.4: version "0.1.4" @@ -364,15 +303,15 @@ browserify-zlib@^0.1.4: dependencies: pako "~0.2.0" +buf-compare@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" + buffer-shims@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" -buffers@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz#b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb" - -builtin-modules@^1.0.0: +builtin-modules@^1.0.0, builtin-modules@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" @@ -380,6 +319,10 @@ builtins@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/builtins/-/builtins-0.0.7.tgz#355219cd6cf18dbe7c01cc7fd2dce765cfdc549a" +builtins@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + bytes@2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.2.0.tgz#fd35464a403f6f9117c2de3609ecff9cae000588" @@ -388,6 +331,16 @@ bytes@2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" +caller-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" + dependencies: + callsites "^0.2.0" + +callsites@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" + camelcase-keys@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" @@ -407,16 +360,14 @@ camelcase@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" +camelcase@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + capture-stack-trace@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" -cardinal@0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-0.4.0.tgz#7d10aafb20837bde043c45e43a0c8c28cdaae45e" - dependencies: - redeyed "~0.4.0" - caseless@~0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" @@ -425,14 +376,6 @@ caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" -caseless@~0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.6.0.tgz#8167c1ab8397fb5bb95f96d28e5a81c50f247ac4" - -caseless@~0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.8.0.tgz#5bca2881d41437f54b2407ebe34888c7b9ad4f7d" - center-align@^0.1.1: version "0.1.3" resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" @@ -448,33 +391,7 @@ chai@^3.5.0: deep-eql "^0.1.3" type-detect "^1.0.0" -chainsaw@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz#5eab50b28afe58074d0d58291388828b5e5fbc98" - dependencies: - traverse ">=0.3.0 <0.4" - -chalk@0.5.0, chalk@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.5.0.tgz#375dfccbc21c0a60a8b61bc5b78f3dc2a55c212f" - dependencies: - ansi-styles "^1.1.0" - escape-string-regexp "^1.0.0" - has-ansi "^0.1.0" - strip-ansi "^0.3.0" - supports-color "^0.2.0" - -chalk@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.5.1.tgz#663b3a648b68b55d04690d49167aa837858f2174" - dependencies: - ansi-styles "^1.1.0" - escape-string-regexp "^1.0.0" - has-ansi "^0.1.0" - strip-ansi "^0.3.0" - supports-color "^0.2.0" - -chalk@^1.0.0, chalk@^1.1.1, chalk@~1.1.1: +chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3, chalk@~1.1.1: version "1.1.3" resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" dependencies: @@ -492,9 +409,17 @@ chalk@~0.4.0: has-color "~0.1.0" strip-ansi "~0.1.0" -chmodr@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/chmodr/-/chmodr-0.1.0.tgz#e09215a1d51542db2a2576969765bcf6125583eb" +chownr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" + +cint@^8.2.1: + version "8.2.1" + resolved "https://registry.yarnpkg.com/cint/-/cint-8.2.1.tgz#70386b1b48e2773d0d63166a55aff94ef4456a12" + +circular-json@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" clean-css@~4.0.3: version "4.0.9" @@ -502,14 +427,9 @@ clean-css@~4.0.3: dependencies: source-map "0.5.x" -cli-color@~0.3.2: - version "0.3.3" - resolved "https://registry.yarnpkg.com/cli-color/-/cli-color-0.3.3.tgz#12d5bdd158ff8a0b0db401198913c03df069f6f5" - dependencies: - d "~0.1.1" - es5-ext "~0.10.6" - memoizee "~0.3.8" - timers-ext "0.1" +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" cli-cursor@^1.0.1: version "1.0.2" @@ -517,6 +437,12 @@ cli-cursor@^1.0.1: dependencies: restore-cursor "^1.0.1" +cli-table@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" + dependencies: + colors "1.0.3" + cli-width@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" @@ -558,6 +484,26 @@ cliui@^3.2.0: strip-ansi "^3.0.1" wrap-ansi "^2.0.0" +clone-deep@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.3.0.tgz#348c61ae9cdbe0edfe053d91ff4cc521d790ede8" + dependencies: + for-own "^1.0.0" + is-plain-object "^2.0.1" + kind-of "^3.2.2" + shallow-clone "^0.1.2" + +clone@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" + +cmd-shim@~2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-2.0.2.tgz#6fcbda99483a8fd15d7d30a196ca69d688a2efdb" + dependencies: + graceful-fs "^4.1.2" + mkdirp "~0.5.0" + co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -570,27 +516,28 @@ coffee-script@~1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/coffee-script/-/coffee-script-1.10.0.tgz#12938bcf9be1948fa006f92e0c4c9e81705108c0" -colors@~0.6.0-1: - version "0.6.2" - resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" +colors@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" -colors@~1.1.2: +colors@^1.1.2, colors@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" +columnify@~1.5.4: + version "1.5.4" + resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" + dependencies: + strip-ansi "^3.0.0" + wcwidth "^1.0.0" + combined-stream@^1.0.5, combined-stream@~1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" dependencies: delayed-stream "~1.0.0" -combined-stream@~0.0.4, combined-stream@~0.0.5: - version "0.0.7" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-0.0.7.tgz#0137e657baa5a7541c57ac37ac5fc07d73b4dc1f" - dependencies: - delayed-stream "0.0.5" - -commander@2.9.0, commander@^2.9.0: +commander@^2.9.0: version "2.9.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" dependencies: @@ -600,15 +547,7 @@ concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" -concat-stream@1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.0.tgz#53f7d43c51c5e43f81c8fdd03321c631be68d611" - dependencies: - inherits "~2.0.1" - readable-stream "~2.0.0" - typedarray "~0.0.5" - -concat-stream@^1.4.1: +concat-stream@^1.4.1, concat-stream@^1.5.2: version "1.6.0" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" dependencies: @@ -616,26 +555,13 @@ concat-stream@^1.4.1: readable-stream "^2.2.2" typedarray "^0.0.6" -config-chain@~1.1.8: +config-chain@~1.1.11: version "1.1.11" resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" dependencies: ini "^1.3.4" proto-list "~1.2.1" -configstore@^0.3.0, configstore@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/configstore/-/configstore-0.3.2.tgz#25e4c16c3768abf75c5a65bc61761f495055b459" - dependencies: - graceful-fs "^3.0.1" - js-yaml "^3.1.0" - mkdirp "^0.5.0" - object-assign "^2.0.0" - osenv "^0.1.0" - user-home "^1.0.0" - uuid "^2.0.1" - xdg-basedir "^1.0.0" - configstore@^1.0.0, configstore@^1.2.0: version "1.4.0" resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" @@ -663,6 +589,17 @@ configstore@^2.0.0: write-file-atomic "^1.1.2" xdg-basedir "^2.0.0" +configstore@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.0.tgz#45df907073e26dfa1cf4b2d52f5b60545eaa11d1" + dependencies: + dot-prop "^4.1.0" + graceful-fs "^4.1.2" + make-dir "^1.0.0" + unique-string "^1.0.0" + write-file-atomic "^2.0.0" + xdg-basedir "^3.0.0" + console-browserify@1.1.x: version "1.1.0" resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" @@ -673,48 +610,64 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + content-type@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" +core-assert@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" + dependencies: + buf-compare "^1.0.0" + is-error "^2.2.0" + +core-js@^2.0.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" + core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" -create-error-class@^3.0.1: +create-error-class@^3.0.0, create-error-class@^3.0.1: version "3.0.2" resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" dependencies: capture-stack-trace "^1.0.0" +cross-spawn-async@^2.1.1: + version "2.2.5" + resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" + dependencies: + lru-cache "^4.0.0" + which "^1.2.8" + cross-spawn@^0.2.3: version "0.2.9" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-0.2.9.tgz#bd67f96c07efb6303b7fe94c1e979f88478e0a39" dependencies: lru-cache "^2.5.0" -cross-spawn@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" +cross-spawn@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" dependencies: lru-cache "^4.0.1" which "^1.2.9" -cryptiles@0.2.x: - version "0.2.2" - resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-0.2.2.tgz#ed91ff1f17ad13d3748288594f8a48a0d26f325c" - dependencies: - boom "0.4.x" - cryptiles@2.x.x: version "2.0.5" resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" dependencies: boom "2.x.x" -ctype@0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/ctype/-/ctype-0.5.3.tgz#82c18c2461f74114ef16c135224ad0b9144ca12f" +crypto-random-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" currently-unhandled@^0.4.1: version "0.4.1" @@ -728,12 +681,6 @@ d@1: dependencies: es5-ext "^0.10.9" -d@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" - dependencies: - es5-ext "~0.10.2" - dargs@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" @@ -757,31 +704,31 @@ dateformat@~1.0.12: get-stdin "^4.0.1" meow "^3.3.0" -debug@0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39" +debug@^2.1.1, debug@^2.6.8: + version "2.6.8" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" + dependencies: + ms "2.0.0" -debug@2.2.0, debug@^2.2.0, debug@~2.2.0: +debug@^2.2.0, debug@~2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" dependencies: ms "0.7.1" +debuglog@*, debuglog@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" + decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" -decompress-zip@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/decompress-zip/-/decompress-zip-0.0.8.tgz#4a265b22c7b209d7b24fa66f2b2dfbced59044f3" +deep-assign@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-1.0.0.tgz#b092743be8427dc621ea0067cdec7e70dd19f37b" dependencies: - binary "~0.3.0" - graceful-fs "~3.0.0" - mkpath "~0.1.0" - nopt "~2.2.0" - q "~1.0.0" - readable-stream "~1.1.8" - touch "0.0.2" + is-obj "^1.0.0" deep-eql@^0.1.3: version "0.1.3" @@ -789,14 +736,30 @@ deep-eql@^0.1.3: dependencies: type-detect "0.1.1" -deep-extend@~0.2.5: - version "0.2.11" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.2.11.tgz#7a16ba69729132340506170494bc83f7076fe08f" +deep-extend@^0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" deep-extend@~0.4.0: version "0.4.1" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +deep-strict-equal@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz#4a078147a8ab57f6a0d4f5547243cd22f44eb4e4" + dependencies: + core-assert "^0.2.0" + +defaults@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + dependencies: + clone "^1.0.2" + define-properties@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" @@ -808,9 +771,17 @@ defined@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" -delayed-stream@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-0.0.5.tgz#d4b1f43a93e8296dfe02694f4680bc37a313c73f" +del@^2.0.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" + dependencies: + globby "^5.0.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + rimraf "^2.2.8" delayed-stream@~1.0.0: version "1.0.0" @@ -824,6 +795,10 @@ depd@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" +detect-indent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" + detective@~4.3.1: version "4.3.2" resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" @@ -831,9 +806,26 @@ detective@~4.3.1: acorn "^3.1.0" defined "^1.0.0" -diff@1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" +dezalgo@^1.0.0, dezalgo@^1.0.1, dezalgo@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" + dependencies: + asap "^2.0.0" + wrappy "1" + +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" dom-serializer@0: version "0.1.0" @@ -869,12 +861,22 @@ dot-prop@^3.0.0: dependencies: is-obj "^1.0.0" +dot-prop@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" + dependencies: + is-obj "^1.0.0" + duplexer2@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" dependencies: readable-stream "^2.0.2" +duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + duplexify@^3.2.0: version "3.5.0" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" @@ -884,19 +886,16 @@ duplexify@^3.2.0: readable-stream "^2.0.0" stream-shift "^1.0.0" -each-async@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/each-async/-/each-async-1.1.1.tgz#dee5229bdf0ab6ba2012a395e1b869abf8813473" - dependencies: - onetime "^1.0.0" - set-immediate-shim "^1.0.0" - ecc-jsbn@~0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" dependencies: jsbn "~0.1.0" +editor@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/editor/-/editor-1.0.0.tgz#60c7f87bd62bcc6a894fa8ccd6afb7823a24f742" + ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" @@ -907,12 +906,22 @@ encoding@^0.1.11: dependencies: iconv-lite "~0.4.13" -end-of-stream@1.0.0, end-of-stream@^1.0.0, end-of-stream@~1.0.0: +end-of-stream@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" dependencies: once "~1.3.0" +ends-with@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/ends-with/-/ends-with-0.2.0.tgz#2f9da98d57a50cfda4571ce4339000500f4e6b8a" + +enhance-visitors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/enhance-visitors/-/enhance-visitors-1.0.0.tgz#aa945d05da465672a1ebd38fee2ed3da8518e95a" + dependencies: + lodash "^4.13.1" + entities@1.0: version "1.0.0" resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" @@ -927,14 +936,14 @@ error-ex@^1.2.0: dependencies: is-arrayish "^0.2.1" -es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.11, es5-ext@~0.10.14, es5-ext@~0.10.2, es5-ext@~0.10.5, es5-ext@~0.10.6: +es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: version "0.10.14" resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.14.tgz#625bc9ab9cac0f6fb9dc271525823d1800b3d360" dependencies: es6-iterator "2" es6-symbol "~3.1" -es6-iterator@2: +es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" dependencies: @@ -942,112 +951,314 @@ es6-iterator@2: es5-ext "^0.10.14" es6-symbol "^3.1" -es6-iterator@~0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-0.1.3.tgz#d6f58b8c4fc413c249b4baa19768f8e4d7c8944e" +es6-map@^0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" dependencies: - d "~0.1.1" - es5-ext "~0.10.5" - es6-symbol "~2.0.1" + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-set "~0.1.5" + es6-symbol "~3.1.1" + event-emitter "~0.3.5" es6-promise@^3.0.2, es6-promise@^3.1.2: version "3.3.1" resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" -es6-promise@~4.0.3: - version "4.0.5" - resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.0.5.tgz#7882f30adde5b240ccfa7f7d78c548330951ae42" +es6-set@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-symbol "3.1.1" + event-emitter "~0.3.5" -es6-symbol@^3.1, es6-symbol@~3.1: +es6-symbol@3.1.1, es6-symbol@^3.0.2, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" dependencies: d "1" es5-ext "~0.10.14" -es6-symbol@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-2.0.1.tgz#761b5c67cfd4f1d18afb234f691d678682cb3bf3" - dependencies: - d "~0.1.1" - es5-ext "~0.10.5" - -es6-weak-map@~0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-0.1.4.tgz#706cef9e99aa236ba7766c239c8b9e286ea7d228" +es6-weak-map@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" dependencies: - d "~0.1.1" - es5-ext "~0.10.6" - es6-iterator "~0.1.3" - es6-symbol "~2.0.1" + d "1" + es5-ext "^0.10.14" + es6-iterator "^2.0.1" + es6-symbol "^3.1.1" -escape-string-regexp@1.0.5, escape-string-regexp@^1.0.0, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" +escope@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" + dependencies: + es6-map "^0.1.3" + es6-weak-map "^2.0.1" + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-config-xo@^0.18.0: + version "0.18.2" + resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.18.2.tgz#0a157120875619929e735ffd6b185c41e8a187af" + +eslint-formatter-pretty@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-1.1.0.tgz#ab4d06da02fed8c13ae9f0dc540a433ef7ed6f5e" + dependencies: + ansi-escapes "^1.4.0" + chalk "^1.1.3" + log-symbols "^1.0.2" + plur "^2.1.2" + string-width "^2.0.0" + +eslint-import-resolver-node@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" + dependencies: + debug "^2.6.8" + resolve "^1.2.0" + +eslint-module-utils@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" + dependencies: + debug "^2.6.8" + pkg-dir "^1.0.0" + +eslint-plugin-ava@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-ava/-/eslint-plugin-ava-4.2.1.tgz#7cdb5e81bc779f4833d4720a6093e5f4a6ca1913" + dependencies: + arrify "^1.0.1" + deep-strict-equal "^0.2.0" + enhance-visitors "^1.0.0" + espree "^3.1.3" + espurify "^1.5.0" + import-modules "^1.1.0" + multimatch "^2.1.0" + pkg-up "^2.0.0" + +eslint-plugin-import@^2.0.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f" + dependencies: + builtin-modules "^1.1.1" + contains-path "^0.1.0" + debug "^2.6.8" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.1" + eslint-module-utils "^2.1.1" + has "^1.0.1" + lodash.cond "^4.3.0" + minimatch "^3.0.3" + read-pkg-up "^2.0.0" + +eslint-plugin-no-use-extend-native@^0.3.2: + version "0.3.12" + resolved "https://registry.yarnpkg.com/eslint-plugin-no-use-extend-native/-/eslint-plugin-no-use-extend-native-0.3.12.tgz#3ad9a00c2df23b5d7f7f6be91550985a4ab701ea" + dependencies: + is-get-set-prop "^1.0.0" + is-js-type "^2.0.0" + is-obj-prop "^1.0.0" + is-proto-prop "^1.0.0" + +eslint-plugin-promise@^3.4.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" + +eslint-plugin-unicorn@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-2.1.2.tgz#99dffe9f4773b04bc39356a7febd64dd700274bc" + dependencies: + import-modules "^1.1.0" + lodash.camelcase "^4.1.1" + lodash.kebabcase "^4.0.1" + lodash.snakecase "^4.0.1" + lodash.upperfirst "^4.2.0" + +eslint@^3.18.0: + version "3.19.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" + dependencies: + babel-code-frame "^6.16.0" + chalk "^1.1.3" + concat-stream "^1.5.2" + debug "^2.1.1" + doctrine "^2.0.0" + escope "^3.6.0" + espree "^3.4.0" + esquery "^1.0.0" + estraverse "^4.2.0" + esutils "^2.0.2" + file-entry-cache "^2.0.0" + glob "^7.0.3" + globals "^9.14.0" + ignore "^3.2.0" + imurmurhash "^0.1.4" + inquirer "^0.12.0" + is-my-json-valid "^2.10.0" + is-resolvable "^1.0.0" + js-yaml "^3.5.1" + json-stable-stringify "^1.0.0" + levn "^0.3.0" + lodash "^4.0.0" + mkdirp "^0.5.0" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.1" + pluralize "^1.2.1" + progress "^1.1.8" + require-uncached "^1.0.2" + shelljs "^0.7.5" + strip-bom "^3.0.0" + strip-json-comments "~2.0.1" + table "^3.7.8" + text-table "~0.2.0" + user-home "^2.0.0" + +espree@^3.1.3, espree@^3.4.0: + version "3.4.3" + resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" + dependencies: + acorn "^5.0.1" + acorn-jsx "^3.0.0" + esprima@^2.6.0: version "2.7.3" resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" -esprima@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" +esprima@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" + +espurify@^1.5.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" + dependencies: + core-js "^2.0.0" + +esquery@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" + dependencies: + estraverse "^4.1.0" + object-assign "^4.0.1" + +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" -event-emitter@~0.3.4: +event-emitter@~0.3.5: version "0.3.5" resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" dependencies: d "1" es5-ext "~0.10.14" -eventemitter2@^0.4.9, eventemitter2@~0.4.13: +eventemitter2@~0.4.13: version "0.4.14" resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab" -exit-hook@^1.0.0: - version "1.1.1" +execa@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3" + dependencies: + cross-spawn-async "^2.1.1" + is-stream "^1.1.0" + npm-run-path "^1.0.0" + object-assign "^4.0.1" + path-key "^1.0.0" + strip-eof "^1.0.0" + +execa@^0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" + dependencies: + cross-spawn "^4.0.0" + get-stream "^2.2.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +exit-hook@^1.0.0: + version "1.1.1" resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" exit@0.1.2, exit@0.1.x, exit@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" +ext-list@^2.0.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/ext-list/-/ext-list-2.2.2.tgz#0b98e64ed82f5acf0f2931babf69212ef52ddd37" + dependencies: + mime-db "^1.28.0" + +ext-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ext-name/-/ext-name-3.0.0.tgz#07e4418737cb1f513c32c6ea48d8b8c8e0471abb" + dependencies: + ends-with "^0.2.0" + ext-list "^2.0.0" + meow "^3.1.0" + sort-keys-length "^1.0.0" + extend@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" -extract-zip@~1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.5.0.tgz#92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4" - dependencies: - concat-stream "1.5.0" - debug "0.7.4" - mkdirp "0.5.0" - yauzl "2.4.1" - extsprintf@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" +fast-diff@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.1.tgz#0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b" + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + faye-websocket@~0.10.0: version "0.10.0" resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" dependencies: websocket-driver ">=0.5.1" -fd-slicer@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" - dependencies: - pend "~1.2.0" - -figures@^1.0.1, figures@^1.3.2, figures@^1.3.5: +figures@^1.0.1, figures@^1.3.5: version "1.7.0" resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" dependencies: escape-string-regexp "^1.0.5" object-assign "^4.1.0" +file-entry-cache@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" + dependencies: + flat-cache "^1.2.1" + object-assign "^4.0.1" + file-sync-cmp@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz#a5e7a8ffbfa493b43b923bbd4ca89a53b63b612b" @@ -1060,46 +1271,63 @@ filled-array@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" -find-up@^1.0.0: +find-up@1.1.2, find-up@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" dependencies: path-exists "^2.0.0" pinkie-promise "^2.0.0" +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + dependencies: + locate-path "^2.0.0" + findup-sync@~0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" dependencies: glob "~5.0.0" +flat-cache@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" + dependencies: + circular-json "^0.3.1" + del "^2.0.2" + graceful-fs "^4.1.2" + write "^0.2.1" + +for-in@^0.1.3: + version "0.1.8" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" + +for-in@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + +for-own@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" + dependencies: + for-in "^1.0.1" + foreach@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" -forever-agent@~0.5.0: - version "0.5.2" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.5.2.tgz#6d0e09c4921f94a27f63d3b49c5feff1ea4c5130" - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" -form-data@~0.1.0: - version "0.1.4" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-0.1.4.tgz#91abd788aba9702b1aabfa8bc01031a2ac9e3b12" - dependencies: - async "~0.9.0" - combined-stream "~0.0.4" - mime "~1.2.11" - -form-data@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-0.2.0.tgz#26f8bc26da6440e299cbdcfb69035c4f77a6e466" +form-data@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25" dependencies: - async "~0.9.0" - combined-stream "~0.0.4" - mime-types "~2.0.3" + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.11" form-data@~2.1.1: version "2.1.2" @@ -1109,19 +1337,35 @@ form-data@~2.1.1: combined-stream "^1.0.5" mime-types "^2.1.12" -fs-extra@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" +fs-extra@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" dependencies: graceful-fs "^4.1.2" jsonfile "^2.1.0" - klaw "^1.0.0" + +fs-vacuum@~1.2.9: + version "1.2.10" + resolved "https://registry.yarnpkg.com/fs-vacuum/-/fs-vacuum-1.2.10.tgz#b7629bec07a4031a2548fdf99f5ecf1cc8b31e36" + dependencies: + graceful-fs "^4.1.2" + path-is-inside "^1.0.1" + rimraf "^2.5.2" + +fs-write-stream-atomic@~1.0.8: + version "1.0.10" + resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + dependencies: + graceful-fs "^4.1.2" + iferr "^0.1.5" + imurmurhash "^0.1.4" + readable-stream "1 || 2" fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" -fstream-ignore@~1.0.1: +fstream-ignore@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" dependencies: @@ -1129,7 +1373,14 @@ fstream-ignore@~1.0.1: inherits "2" minimatch "^3.0.0" -fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.2: +fstream-npm@~1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/fstream-npm/-/fstream-npm-1.2.1.tgz#08c4a452f789dcbac4c89a4563c902b2c862fd5b" + dependencies: + fstream-ignore "^1.0.0" + inherits "2" + +fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: version "1.0.11" resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" dependencies: @@ -1138,10 +1389,24 @@ fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.2: mkdirp ">=0.5 0" rimraf "2" -function-bind@^1.1.0: +function-bind@^1.0.2, function-bind@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" +gauge@~2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-color "^0.1.7" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + gauge@~2.7.1: version "2.7.3" resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" @@ -1175,10 +1440,29 @@ get-caller-file@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" +get-set-props@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-set-props/-/get-set-props-0.1.0.tgz#998475c178445686d0b32246da5df8dbcfbe8ea3" + get-stdin@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" +get-stdin@^5.0.0, get-stdin@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" + +get-stream@^2.2.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" + dependencies: + object-assign "^4.0.1" + pinkie-promise "^2.0.0" + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + getobject@~0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/getobject/-/getobject-0.1.0.tgz#047a449789fa160d018f5486ed91320b6ec7885c" @@ -1195,17 +1479,6 @@ gettext-parser@1.1.0: dependencies: encoding "^0.1.11" -glob@7.0.5: - version "7.0.5" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.2" - once "^1.3.0" - path-is-absolute "^1.0.0" - glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@~7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" @@ -1228,15 +1501,6 @@ glob@^7.0.5, glob@~7.0.0: once "^1.3.0" path-is-absolute "^1.0.0" -glob@~4.0.2: - version "4.0.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-4.0.6.tgz#695c50bdd4e2fb5c5d370b091f388d3707e291a7" - dependencies: - graceful-fs "^3.0.2" - inherits "2" - minimatch "^1.0.0" - once "^1.3.0" - glob@~5.0.0: version "5.0.15" resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" @@ -1247,6 +1511,42 @@ glob@~5.0.0: once "^1.3.0" path-is-absolute "^1.0.0" +glob@~7.1.0: + version "7.1.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^9.14.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globby@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + globule@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/globule/-/globule-1.1.0.tgz#c49352e4dc183d85893ee825385eb994bb6df45f" @@ -1255,12 +1555,6 @@ globule@^1.0.0: lodash "~4.16.4" minimatch "~3.0.2" -got@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/got/-/got-0.3.0.tgz#888ec66ca4bc735ab089dbe959496d0f79485493" - dependencies: - object-assign "^0.3.0" - got@^3.2.0: version "3.3.1" resolved "https://registry.yarnpkg.com/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" @@ -1296,32 +1590,30 @@ got@^5.0.0: unzip-response "^1.0.2" url-parse-lax "^1.0.0" -graceful-fs@^3.0.1, graceful-fs@^3.0.2, graceful-fs@~3.0.0, graceful-fs@~3.0.1: - version "3.0.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" +got@^6.7.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" dependencies: - natives "^1.1.0" + create-error-class "^3.0.0" + duplexer3 "^0.1.4" + get-stream "^3.0.0" + is-redirect "^1.0.0" + is-retry-allowed "^1.0.0" + is-stream "^1.0.0" + lowercase-keys "^1.0.0" + safe-buffer "^5.0.1" + timed-out "^4.0.0" + unzip-response "^2.0.1" + url-parse-lax "^1.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@~4.1.9: version "4.1.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" -graceful-fs@~1.1: - version "1.1.14" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.1.14.tgz#07078db5f6377f6321fceaaedf497de124dc9465" - -graceful-fs@~2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-2.0.3.tgz#7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0" - "graceful-readlink@>= 1.0.0": version "1.0.1" resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" -growl@1.9.2: - version "1.9.2" - resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" - grunt-bower-concat@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/grunt-bower-concat/-/grunt-bower-concat-1.0.0.tgz#f430c7b718704c6815215c6ca94d2fd5dd4a7b5b" @@ -1333,16 +1625,17 @@ grunt-bower-concat@^1.0.0: lodash "~4.3.0" underscore.string "~3.2.3" -grunt-bower-task@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/grunt-bower-task/-/grunt-bower-task-0.4.0.tgz#daea0a55682a79a8c79db895b79be6f3ecb65817" +grunt-bower-task@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/grunt-bower-task/-/grunt-bower-task-0.5.0.tgz#c3c16983fabf18e412e26dfdd2114db465174584" dependencies: - async "~0.1.22" - bower "~1.3.0" - colors "~0.6.0-1" + async "^2.3.0" + bower "^1.7.9" + bower-json "^0.8.1" + colors "^1.1.2" + fs-extra "^2.1.2" lodash "~0.10.0" - rimraf "~2.0.2" - wrench "~1.4.3" + rimraf "^2.6.1" grunt-cli@^1.2.0, grunt-cli@~1.2.0: version "1.2.0" @@ -1353,9 +1646,9 @@ grunt-cli@^1.2.0, grunt-cli@~1.2.0: nopt "~3.0.6" resolve "~1.1.0" -grunt-contrib-clean@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/grunt-contrib-clean/-/grunt-contrib-clean-1.0.0.tgz#6b2ed94117e2c7ffe32ee04578c96fe4625a9b6d" +grunt-contrib-clean@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/grunt-contrib-clean/-/grunt-contrib-clean-1.1.0.tgz#564abf2d0378a983a15b9e3f30ee75b738c40638" dependencies: async "^1.5.2" rimraf "^2.5.1" @@ -1375,7 +1668,7 @@ grunt-contrib-cssmin@^2.0.0: clean-css "~4.0.3" maxmin "^1.1.0" -grunt-contrib-jshint@^1.0.0: +grunt-contrib-jshint@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/grunt-contrib-jshint/-/grunt-contrib-jshint-1.1.0.tgz#369d909b2593c40e8be79940b21340850c7939ac" dependencies: @@ -1383,12 +1676,6 @@ grunt-contrib-jshint@^1.0.0: hooker "^0.2.3" jshint "~2.9.4" -grunt-contrib-qunit@^1.2.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/grunt-contrib-qunit/-/grunt-contrib-qunit-1.3.0.tgz#9dac628cfd4ec815998633db73b52bdb3ddbc99e" - dependencies: - grunt-lib-phantomjs "^1.0.0" - grunt-contrib-sass@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/grunt-contrib-sass/-/grunt-contrib-sass-1.0.0.tgz#806838251cbc0e1a94d64d515cdd34cf674d701b" @@ -1399,14 +1686,14 @@ grunt-contrib-sass@^1.0.0: dargs "^4.0.0" which "^1.0.5" -grunt-contrib-uglify@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/grunt-contrib-uglify/-/grunt-contrib-uglify-2.2.0.tgz#9e67c2469b4774daa3345840511d51fc4fb34f19" +grunt-contrib-uglify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/grunt-contrib-uglify/-/grunt-contrib-uglify-2.3.0.tgz#b3d0260ebdd6cefa12ff2f8e9e1e259f7de4216f" dependencies: chalk "^1.0.0" maxmin "^1.1.0" object.assign "^4.0.4" - uglify-js "~2.8.3" + uglify-js "~2.8.21" uri-path "^1.0.0" grunt-contrib-watch@^1.0.0: @@ -1455,38 +1742,12 @@ grunt-legacy-util@~1.0.0: underscore.string "~3.2.3" which "~1.2.1" -grunt-lib-phantomjs@^1.0.0, grunt-lib-phantomjs@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/grunt-lib-phantomjs/-/grunt-lib-phantomjs-1.1.0.tgz#9e9edcdd9fd2dd40e0c181c94371d572aa5eead2" - dependencies: - eventemitter2 "^0.4.9" - phantomjs-prebuilt "^2.1.3" - rimraf "^2.5.2" - semver "^5.1.0" - temporary "^0.0.8" - -grunt-mocha@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/grunt-mocha/-/grunt-mocha-1.0.4.tgz#ee261dc66a03002e0caa42cb7fd41d16b2956abd" - dependencies: - grunt-lib-phantomjs "^1.0.2" - lodash "^3.9.0" - mocha ">=2.5.3" - -grunt-po2json@^0.3.0: +"grunt-po2json@git+https://github.com/rockykitamura/grunt-po2json.git": version "0.3.0" - resolved "https://registry.yarnpkg.com/grunt-po2json/-/grunt-po2json-0.3.0.tgz#cb8859384ad4cc5a244c77cc026f38eac6b284c3" + resolved "git+https://github.com/rockykitamura/grunt-po2json.git#84ff43ab2405911d430c183f808ee63533789e70" dependencies: po2json "*" -grunt-sass@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/grunt-sass/-/grunt-sass-2.0.0.tgz#9074cf9d7b4592e20f7788caa727b8f9aa06b60a" - dependencies: - each-async "^1.0.0" - node-sass "^4.0.0" - object-assign "^4.0.1" - grunt@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/grunt/-/grunt-1.0.1.tgz#e8778764e944b18f32bb0f10b9078475c9dfb56b" @@ -1515,14 +1776,6 @@ gzip-size@^1.0.0: browserify-zlib "^0.1.4" concat-stream "^1.4.1" -handlebars@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-2.0.0.tgz#6e9d7f8514a3467fa5e9f82cc158ecfc1d5ac76f" - dependencies: - optimist "~0.3" - optionalDependencies: - uglify-js "~2.3" - har-schema@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" @@ -1543,52 +1796,36 @@ har-validator@~4.2.1: ajv "^4.9.1" har-schema "^1.0.5" -has-ansi@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-0.1.0.tgz#84f265aae8c0e6a88a12d7022894b7568894c62e" - dependencies: - ansi-regex "^0.2.0" - has-ansi@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" dependencies: ansi-regex "^2.0.0" -has-color@~0.1.0: +has-color@^0.1.7, has-color@~0.1.0: version "0.1.7" resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" -has-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" +has-flag@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" -has-unicode@^2.0.0: +has-unicode@^2.0.0, has-unicode@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" +has@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + hasbin@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/hasbin/-/hasbin-1.2.3.tgz#78c5926893c80215c2b568ae1fd3fcab7a2696b0" dependencies: async "~1.5" -hasha@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/hasha/-/hasha-2.2.0.tgz#78d7cbfc1e6d66303fe79837365984517b2f6ee1" - dependencies: - is-stream "^1.0.1" - pinkie-promise "^2.0.0" - -hawk@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/hawk/-/hawk-1.1.1.tgz#87cd491f9b46e4e2aeaca335416766885d2d1ed9" - dependencies: - boom "0.4.x" - cryptiles "0.2.x" - hoek "0.9.x" - sntp "0.2.x" - hawk@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" @@ -1598,10 +1835,6 @@ hawk@~3.1.3: hoek "2.x.x" sntp "1.x.x" -hoek@0.9.x: - version "0.9.1" - resolved "https://registry.yarnpkg.com/hoek/-/hoek-0.9.1.tgz#3d322462badf07716ea7eb85baf88079cddce505" - hoek@2.x.x: version "2.16.3" resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" @@ -1614,6 +1847,14 @@ hosted-git-info@^2.1.4: version "2.2.0" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5" +hosted-git-info@^2.1.5, hosted-git-info@^2.4.2: + version "2.5.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" + +hosted-git-info@~2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" + htmlparser2@3.8.x: version "3.8.3" resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068" @@ -1631,14 +1872,6 @@ http-errors@~1.3.1: inherits "~2.0.1" statuses "1" -http-signature@~0.10.0: - version "0.10.1" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-0.10.1.tgz#4fbdac132559aa8323121e540779c0a012b27e66" - dependencies: - asn1 "0.1.11" - assert-plus "^0.1.5" - ctype "0.5.3" - http-signature@~1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" @@ -1655,14 +1888,26 @@ iconv-lite@~0.4.13: version "0.4.15" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" -imurmurhash@^0.1.4: +iferr@^0.1.5, iferr@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + +ignore@^3.2.0, ignore@^3.2.6: + version "3.3.3" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" + +import-lazy@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + +import-modules@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/import-modules/-/import-modules-1.1.0.tgz#748db79c5cc42bb9701efab424f894e72600e9dc" + +imurmurhash@*, imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" -in-publish@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" - indent-string@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" @@ -1673,33 +1918,33 @@ infinity-agent@^2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" -inflight@^1.0.4: +inflight@^1.0.4, inflight@~1.0.5: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" dependencies: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" -ini@1.x.x, ini@^1.2.0, ini@^1.3.4, ini@~1.3.0: +ini@1.x.x, ini@^1.3.4, ini@~1.3.0, ini@~1.3.4: version "1.3.4" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" -inquirer@0.7.1: - version "0.7.1" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.7.1.tgz#b8acf140165bd581862ed1198fb6d26430091fac" +init-package-json@~1.9.4: + version "1.9.6" + resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-1.9.6.tgz#789fc2b74466a4952b9ea77c0575bc78ebd60a61" dependencies: - chalk "^0.5.0" - cli-color "~0.3.2" - figures "^1.3.2" - lodash "~2.4.1" - mute-stream "0.0.4" - readline2 "~0.1.0" - rx "^2.2.27" - through "~2.3.4" + glob "^7.1.1" + npm-package-arg "^4.0.0 || ^5.0.0" + promzard "^0.3.0" + read "~1.0.1" + read-package-json "1 || 2" + semver "2.x || 3.x || 4 || 5" + validate-npm-package-license "^3.0.1" + validate-npm-package-name "^3.0.0" inquirer@1.0.3: version "1.0.3" @@ -1719,45 +1964,45 @@ inquirer@1.0.3: strip-ansi "^3.0.0" through "^2.3.6" -inquirer@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.6.0.tgz#614d7bb3e48f9e6a8028e94a0c38f23ef29823d3" +inquirer@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" dependencies: - chalk "^0.5.0" - cli-color "~0.3.2" - lodash "~2.4.1" - mute-stream "0.0.4" - readline2 "~0.1.0" - rx "^2.2.27" - through "~2.3.4" + ansi-escapes "^1.1.0" + ansi-regex "^2.0.0" + chalk "^1.0.0" + cli-cursor "^1.0.1" + cli-width "^2.0.0" + figures "^1.3.5" + lodash "^4.3.0" + readline2 "^1.0.1" + run-async "^0.1.0" + rx-lite "^3.1.2" + string-width "^1.0.1" + strip-ansi "^3.0.0" + through "^2.3.6" -insight@0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/insight/-/insight-0.4.3.tgz#76d653c5c0d8048b03cdba6385a6948f74614af0" - dependencies: - async "^0.9.0" - chalk "^0.5.1" - configstore "^0.3.1" - inquirer "^0.6.0" - lodash.debounce "^2.4.1" - object-assign "^1.0.0" - os-name "^1.0.0" - request "^2.40.0" - tough-cookie "^0.12.1" - -intersect@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/intersect/-/intersect-0.0.3.tgz#c1a4a5e5eac6ede4af7504cc07e0ada7bc9f4920" +interpret@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" + +intersect@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/intersect/-/intersect-1.0.1.tgz#332650e10854d8c0ac58c192bdc27a8bf7e7a30c" invert-kv@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" +irregular-plurals@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.3.0.tgz#7af06931bdf74be33dcf585a13e06fccc16caecf" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" -is-buffer@^1.0.2: +is-buffer@^1.0.2, is-buffer@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" @@ -1767,6 +2012,14 @@ is-builtin-module@^1.0.0: dependencies: builtin-modules "^1.0.0" +is-error@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" + +is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + is-finite@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" @@ -1779,7 +2032,24 @@ is-fullwidth-code-point@^1.0.0: dependencies: number-is-nan "^1.0.0" -is-my-json-valid@^2.12.4: +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + +is-get-set-prop@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-get-set-prop/-/is-get-set-prop-1.0.0.tgz#2731877e4d78a6a69edcce6bb9d68b0779e76312" + dependencies: + get-set-props "^0.1.0" + lowercase-keys "^1.0.0" + +is-js-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-js-type/-/is-js-type-2.0.0.tgz#73617006d659b4eb4729bba747d28782df0f7e22" + dependencies: + js-types "^1.0.0" + +is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: version "2.16.0" resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" dependencies: @@ -1792,10 +2062,43 @@ is-npm@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" +is-obj-prop@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-obj-prop/-/is-obj-prop-1.0.0.tgz#b34de79c450b8d7c73ab2cdf67dc875adb85f80e" + dependencies: + lowercase-keys "^1.0.0" + obj-props "^1.0.0" + is-obj@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + +is-path-in-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" + dependencies: + path-is-inside "^1.0.1" + +is-plain-obj@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + +is-plain-object@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.3.tgz#c15bf3e4b66b62d72efaf2925848663ecbc619b6" + dependencies: + isobject "^3.0.0" + is-promise@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" @@ -1804,19 +2107,28 @@ is-property@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" +is-proto-prop@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-proto-prop/-/is-proto-prop-1.0.0.tgz#b3951f95c089924fb5d4fcda6542ab3e83e2b220" + dependencies: + lowercase-keys "^1.0.0" + proto-props "^0.2.0" + is-redirect@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" +is-resolvable@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" + dependencies: + tryit "^1.0.1" + is-retry-allowed@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" -is-root@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-root/-/is-root-1.0.0.tgz#07b6c233bc394cd9d02ba15c966bd6660d6342d5" - -is-stream@^1.0.0, is-stream@^1.0.1: +is-stream@^1.0.0, is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" @@ -1832,7 +2144,7 @@ isarray@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" -isarray@~1.0.0: +isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -1840,17 +2152,44 @@ isexe@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + +isobject@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" +jju@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jju/-/jju-1.3.0.tgz#dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa" + jodid25519@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" dependencies: jsbn "~0.1.0" -js-yaml@^3.1.0, js-yaml@^3.5.3, js-yaml@~3.5.2: +js-tokens@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + +js-types@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/js-types/-/js-types-1.0.0.tgz#d242e6494ed572ad3c92809fc8bed7f7687cbf03" + +js-yaml@^3.5.1: + version "3.9.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.0.tgz#4ffbbf25c2ac963b8299dc74da7e3740de1c18ce" + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@^3.5.3, js-yaml@~3.5.2: version "3.5.5" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.5.5.tgz#0377c38017cabc7322b0d1fbcd25a491641f2fbe" dependencies: @@ -1874,24 +2213,26 @@ jshint@~2.9.4: shelljs "0.3.x" strip-json-comments "1.0.x" +json-parse-helpfulerror@^1.0.2, json-parse-helpfulerror@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz#13f14ce02eed4e981297b64eb9e3b932e2dd13dc" + dependencies: + jju "^1.1.0" + json-schema@0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" -json-stable-stringify@^1.0.1: +json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" dependencies: jsonify "~0.0.0" -json-stringify-safe@~5.0.0, json-stringify-safe@~5.0.1: +json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" -json3@3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" - jsonfile@^2.1.0: version "2.4.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" @@ -1915,13 +2256,11 @@ jsprim@^1.2.2: json-schema "0.2.3" verror "1.3.6" -junk@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/junk/-/junk-1.0.3.tgz#87be63488649cbdca6f53ab39bec9ccd2347f592" - -kew@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/kew/-/kew-0.7.0.tgz#79d93d2d33363d6fdd2970b335d9141ad591d79b" +kind-of@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" + dependencies: + is-buffer "^1.0.2" kind-of@^3.0.2: version "3.1.0" @@ -1929,17 +2268,11 @@ kind-of@^3.0.2: dependencies: is-buffer "^1.0.2" -klaw@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" - optionalDependencies: - graceful-fs "^4.1.9" - -latest-version@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-0.2.0.tgz#adaf898d5f22380d3f9c45386efdff0a1b5b7501" +kind-of@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" dependencies: - package-json "^0.2.0" + is-buffer "^1.1.5" latest-version@^1.0.0: version "1.0.1" @@ -1953,6 +2286,16 @@ latest-version@^2.0.0: dependencies: package-json "^2.0.0" +latest-version@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" + dependencies: + package-json "^4.0.0" + +lazy-cache@^0.2.3: + version "0.2.7" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" + lazy-cache@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" @@ -1963,11 +2306,18 @@ lcid@^1.0.0: dependencies: invert-kv "^1.0.0" +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + livereload-js@^2.2.0: version "2.2.2" resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.2.2.tgz#6c87257e648ab475bc24ea257457edcc1f8d0bc2" -load-grunt-tasks@^3.4.1: +load-grunt-tasks@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/load-grunt-tasks/-/load-grunt-tasks-3.5.2.tgz#0728561180fd20ff8a6927505852fc58aaea0c88" dependencies: @@ -1986,64 +2336,78 @@ load-json-file@^1.0.0: pinkie-promise "^2.0.0" strip-bom "^2.0.0" -lockfile@~1.0.0: +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +lockfile@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/lockfile/-/lockfile-1.0.3.tgz#2638fc39a0331e9cac1a04b71799931c9c50df79" -lodash._baseassign@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" +lodash._baseindexof@*: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" + +lodash._baseuniq@~4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz#0ebb44e456814af7905c6212fa2c9b2d51b841e8" dependencies: - lodash._basecopy "^3.0.0" - lodash.keys "^3.0.0" + lodash._createset "~4.0.0" + lodash._root "~3.0.0" -lodash._basecopy@^3.0.0: +lodash._bindcallback@*: version "3.0.1" - resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" + resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" -lodash._basecreate@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" +lodash._cacheindexof@*: + version "3.0.2" + resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" -lodash._getnative@^3.0.0: - version "3.9.1" - resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" +lodash._createcache@*: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" + dependencies: + lodash._getnative "^3.0.0" -lodash._isiterateecall@^3.0.0: - version "3.0.9" - resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" +lodash._createset@~4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/lodash._createset/-/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26" -lodash._isnative@~2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/lodash._isnative/-/lodash._isnative-2.4.1.tgz#3ea6404b784a7be836c7b57580e1cdf79b14832c" +lodash._getnative@*, lodash._getnative@^3.0.0: + version "3.9.1" + resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" -lodash._objecttypes@~2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz#7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11" +lodash._root@~3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" -lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.2.0: +lodash.assign@^4.0.3, lodash.assign@^4.0.6: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" -lodash.clonedeep@^4.3.0, lodash.clonedeep@^4.3.1, lodash.clonedeep@^4.3.2: +lodash.camelcase@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + +lodash.clonedeep@^4.3.0, lodash.clonedeep@^4.3.1, lodash.clonedeep@~4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" -lodash.create@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" - dependencies: - lodash._baseassign "^3.0.0" - lodash._basecreate "^3.0.0" - lodash._isiterateecall "^3.0.0" - -lodash.debounce@^2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-2.4.1.tgz#d8cead246ec4b926e8b85678fc396bfeba8cc6fc" - dependencies: - lodash.isfunction "~2.4.1" - lodash.isobject "~2.4.1" - lodash.now "~2.4.1" +lodash.cond@^4.3.0: + version "4.5.2" + resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" lodash.defaults@^4.0.1: version "4.2.0" @@ -2053,47 +2417,47 @@ lodash.defaultsdeep@^4.3.1: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.0.tgz#bec1024f85b1bd96cbea405b23c14ad6443a6f81" -lodash.isarguments@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" +lodash.isequal@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" -lodash.isarray@^3.0.0: - version "3.0.4" - resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" +lodash.kebabcase@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" -lodash.isfunction@~2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-2.4.1.tgz#2cfd575c73e498ab57e319b77fa02adef13a94d1" +lodash.mergewith@^4.3.1: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" -lodash.isobject@~2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-2.4.1.tgz#5a2e47fe69953f1ee631a7eba1fe64d2d06558f5" - dependencies: - lodash._objecttypes "~2.4.1" +lodash.restparam@*: + version "3.6.1" + resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" -lodash.keys@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" - dependencies: - lodash._getnative "^3.0.0" - lodash.isarguments "^3.0.0" - lodash.isarray "^3.0.0" +lodash.snakecase@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" -lodash.mergewith@^4.3.1, lodash.mergewith@^4.6.0: +lodash.union@~4.6.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" + resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" -lodash.now@~2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/lodash.now/-/lodash.now-2.4.1.tgz#6872156500525185faf96785bb7fe7fe15b562c6" - dependencies: - lodash._isnative "~2.4.1" +lodash.uniq@~4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + +lodash.upperfirst@^4.2.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" + +lodash.without@~4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.without/-/lodash.without-4.4.0.tgz#3cd4574a00b67bae373a94b748772640507b7aac" lodash@3.7.x: version "3.7.0" resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.7.0.tgz#3678bd8ab995057c07ade836ed2ef087da811d45" -lodash@^3.10.1, lodash@^3.9.0, lodash@~3.10.1: +lodash@^3.10.1, lodash@~3.10.1: version "3.10.1" resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" @@ -2101,18 +2465,24 @@ lodash@^4.0.0, lodash@^4.3.0, lodash@~4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.3.0.tgz#efd9c4a6ec53f3b05412429915c3e4824e4d25a4" +lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.2.0: + version "4.17.4" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" + lodash@~0.10.0: version "0.10.0" resolved "https://registry.yarnpkg.com/lodash/-/lodash-0.10.0.tgz#5254bbc2c46c827f535a27d631fd4f2bff374ce7" -lodash@~2.4.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-2.4.2.tgz#fadd834b9683073da179b3eae6d9c0d15053f73e" - lodash@~4.16.4: version "4.16.6" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + dependencies: + chalk "^1.0.0" + longest@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" @@ -2128,7 +2498,7 @@ lowercase-keys@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" -lru-cache@2, lru-cache@^2.5.0, lru-cache@~2.5.0: +lru-cache@^2.5.0: version "2.5.2" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.5.2.tgz#1fddad938aae1263ce138680be1b3f591c0ab41c" @@ -2139,15 +2509,11 @@ lru-cache@^4.0.0, lru-cache@^4.0.1: pseudomap "^1.0.1" yallist "^2.0.0" -lru-cache@~2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.3.1.tgz#b3adf6b3d856e954e2c390e6cef22081245a53d6" - -lru-queue@0.1: - version "0.1.0" - resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" +make-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" dependencies: - es5-ext "~0.10.2" + pify "^2.3.0" map-obj@^1.0.0, map-obj@^1.0.1: version "1.0.1" @@ -2166,19 +2532,7 @@ media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" -memoizee@~0.3.8: - version "0.3.10" - resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.3.10.tgz#4eca0d8aed39ec9d017f4c5c2f2f6432f42e5c8f" - dependencies: - d "~0.1.1" - es5-ext "~0.10.11" - es6-weak-map "~0.1.4" - event-emitter "~0.3.4" - lru-queue "0.1" - next-tick "~0.2.2" - timers-ext "0.1" - -meow@^3.1.0, meow@^3.3.0, meow@^3.7.0: +meow@^3.1.0, meow@^3.3.0, meow@^3.4.2: version "3.7.0" resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" dependencies: @@ -2193,34 +2547,30 @@ meow@^3.1.0, meow@^3.3.0, meow@^3.7.0: redent "^1.0.0" trim-newlines "^1.0.0" -mime-db@~1.12.0: - version "1.12.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.12.0.tgz#3d0c63180f458eb10d325aaa37d7c58ae312e9d7" +mime-db@^1.28.0: + version "1.28.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.28.0.tgz#fedd349be06d2865b7fc57d837c6de4f17d7ac3c" mime-db@~1.26.0: version "1.26.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" +mime-db@~1.27.0: + version "1.27.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" + +mime-types@^2.1.11: + version "2.1.15" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" + dependencies: + mime-db "~1.27.0" + mime-types@^2.1.12, mime-types@~2.1.13, mime-types@~2.1.7: version "2.1.14" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" dependencies: mime-db "~1.26.0" -mime-types@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-1.0.2.tgz#995ae1392ab8affcbfcb2641dd054e943c0d5dce" - -mime-types@~2.0.3: - version "2.0.14" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.0.14.tgz#310e159db23e077f8bb22b748dabfa4957140aa6" - dependencies: - mime-db "~1.12.0" - -mime@~1.2.11: - version "1.2.11" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" - "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@~3.0.0, minimatch@~3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" @@ -2233,14 +2583,13 @@ minimatch@3.0.2: dependencies: brace-expansion "^1.0.0" -minimatch@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-1.0.0.tgz#e0dd2120b49e1b724ce8d714c520822a9438576d" +minimatch@^3.0.3, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" dependencies: - lru-cache "2" - sigmund "~1.0.0" + brace-expansion "^1.1.7" -minimist@0.0.8, minimist@~0.0.1: +minimist@0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" @@ -2248,51 +2597,28 @@ minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" -mkdirp@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" +mixin-object@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" dependencies: - minimist "0.0.8" + for-in "^0.1.3" + is-extendable "^0.1.1" -mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: +"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" dependencies: minimist "0.0.8" -mkdirp@~0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.5.tgz#de3e5f8961c88c787ee1368df849ac4413eca8d7" - -mkpath@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/mkpath/-/mkpath-0.1.0.tgz#7554a6f8d871834cc97b5462b122c4c124d6de91" - -mocha@>=2.5.3, mocha@^3.0.2: - version "3.2.0" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" - dependencies: - browser-stdout "1.3.0" - commander "2.9.0" - debug "2.2.0" - diff "1.4.0" - escape-string-regexp "1.0.5" - glob "7.0.5" - growl "1.9.2" - json3 "3.3.2" - lodash.create "3.1.1" - mkdirp "0.5.1" - supports-color "3.1.2" - -mout@~0.9.0: - version "0.9.1" - resolved "https://registry.yarnpkg.com/mout/-/mout-0.9.1.tgz#84f0f3fd6acc7317f63de2affdcc0cee009b0477" - ms@0.7.1: version "0.7.1" resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" -multimatch@^2.0.0: +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + +multimatch@^2.0.0, multimatch@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" dependencies: @@ -2301,21 +2627,17 @@ multimatch@^2.0.0: arrify "^1.0.0" minimatch "^3.0.0" -mute-stream@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.4.tgz#a9219960a6d5d5d046597aee51252c6655f7177e" +mute-stream@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" mute-stream@0.0.6, mute-stream@~0.0.4: version "0.0.6" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" -nan@^2.3.2: - version "2.5.1" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" - -natives@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.0.tgz#e9ff841418a6b2ec7a495e939984f78f163e6e31" +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" nconf@^0.7.2: version "0.7.2" @@ -2331,17 +2653,16 @@ nested-error-stacks@^1.0.0: dependencies: inherits "~2.0.1" -next-tick@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" - -next-tick@~0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-0.2.2.tgz#75da4a927ee5887e39065880065b7336413b310d" +node-alias@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/node-alias/-/node-alias-1.0.4.tgz#1f1b916b56b9ea241c0135f97ced6940f556f292" + dependencies: + chalk "^1.1.1" + lodash "^4.2.0" -node-gyp@^3.3.1: - version "3.6.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.0.tgz#7474f63a3a0501161dda0b6341f022f14c423fa6" +node-gyp@~3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.4.0.tgz#dda558393b3ecbbe24c9e6b8703c71194c63fa36" dependencies: fstream "^1.0.0" glob "^7.0.3" @@ -2349,44 +2670,22 @@ node-gyp@^3.3.1: minimatch "^3.0.2" mkdirp "^0.5.0" nopt "2 || 3" - npmlog "0 || 1 || 2 || 3 || 4" + npmlog "0 || 1 || 2 || 3" osenv "0" + path-array "^1.0.0" request "2" rimraf "2" - semver "~5.3.0" + semver "2.x || 3.x || 4 || 5" tar "^2.0.0" which "1" -node-sass@^4.0.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.0.tgz#532e37bad0ce587348c831535dbc98ea4289508b" - dependencies: - async-foreach "^0.1.3" - chalk "^1.1.1" - cross-spawn "^3.0.0" - gaze "^1.0.0" - get-stdin "^4.0.1" - glob "^7.0.3" - in-publish "^2.0.0" - lodash.assign "^4.2.0" - lodash.clonedeep "^4.3.2" - lodash.mergewith "^4.6.0" - meow "^3.7.0" - mkdirp "^0.5.1" - nan "^2.3.2" - node-gyp "^3.3.1" - npmlog "^4.0.0" - request "^2.61.0" - sass-graph "^2.1.1" - stdout-stream "^1.4.0" - node-status-codes@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" -node-uuid@~1.4.0: - version "1.4.7" - resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" +node-uuid@~1.4.7: + version "1.4.8" + resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" nomnom@1.8.1: version "1.8.1" @@ -2395,23 +2694,24 @@ nomnom@1.8.1: chalk "~0.4.0" underscore "~1.6.0" -"nopt@2 || 3", nopt@~3.0.0, nopt@~3.0.1, nopt@~3.0.6: +"nopt@2 || 3", nopt@~3.0.6: version "3.0.6" resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" dependencies: abbrev "1" -nopt@~1.0.10: - version "1.0.10" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" - dependencies: - abbrev "1" +normalize-git-url@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/normalize-git-url/-/normalize-git-url-3.0.2.tgz#8e5f14be0bdaedb73e07200310aa416c27350fc4" -nopt@~2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-2.2.1.tgz#2aa09b7d1768487b3b89a9c5aa52335bff0baea7" +normalize-package-data@^2.0.0, "normalize-package-data@~1.0.1 || ^2.0.0": + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" dependencies: - abbrev "1" + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: version "2.3.6" @@ -2422,21 +2722,190 @@ normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -npmconf@^2.0.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/npmconf/-/npmconf-2.1.2.tgz#66606a4a736f1e77a059aa071a79c94ab781853a" +normalize-package-data@~2.3.5: + version "2.3.8" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" dependencies: - config-chain "~1.1.8" - inherits "~2.0.0" - ini "^1.2.0" - mkdirp "^0.5.0" - nopt "~3.0.1" - once "~1.3.0" - osenv "^0.1.0" - semver "2 || 3 || 4" - uid-number "0.0.5" + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +npm-cache-filename@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/npm-cache-filename/-/npm-cache-filename-1.0.2.tgz#ded306c5b0bfc870a9e9faf823bc5f283e05ae11" -"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0: +npm-check-updates@^2.10.5: + version "2.12.1" + resolved "https://registry.yarnpkg.com/npm-check-updates/-/npm-check-updates-2.12.1.tgz#9a41006f5186e8a59da7fd2b466fee9e896d865d" + dependencies: + bluebird "^3.4.3" + chalk "^1.1.3" + cint "^8.2.1" + cli-table "^0.3.1" + commander "^2.9.0" + fast-diff "^1.0.1" + find-up "1.1.2" + get-stdin "^5.0.1" + json-parse-helpfulerror "^1.0.3" + lodash "^4.15.0" + node-alias "^1.0.4" + npm "^3.10.6" + npmi "^2.0.1" + require-dir "^0.3.2" + semver "^5.3.0" + semver-utils "^1.1.1" + snyk "^1.25.1" + spawn-please "^0.3.0" + update-notifier "^2.2.0" + +npm-install-checks@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-3.0.0.tgz#d4aecdfd51a53e3723b7b2f93b2ee28e307bc0d7" + dependencies: + semver "^2.3.0 || 3.x || 4 || 5" + +"npm-package-arg@^3.0.0 || ^4.0.0", npm-package-arg@^4.1.1, npm-package-arg@~4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-4.2.1.tgz#593303fdea85f7c422775f17f9eb7670f680e3ec" + dependencies: + hosted-git-info "^2.1.5" + semver "^5.1.0" + +"npm-package-arg@^4.0.0 || ^5.0.0": + version "5.1.2" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-5.1.2.tgz#fb18d17bb61e60900d6312619919bd753755ab37" + dependencies: + hosted-git-info "^2.4.2" + osenv "^0.1.4" + semver "^5.1.0" + validate-npm-package-name "^3.0.0" + +npm-registry-client@~7.2.1: + version "7.2.1" + resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-7.2.1.tgz#c792266b088cc313f8525e7e35248626c723db75" + dependencies: + concat-stream "^1.5.2" + graceful-fs "^4.1.6" + normalize-package-data "~1.0.1 || ^2.0.0" + npm-package-arg "^3.0.0 || ^4.0.0" + once "^1.3.3" + request "^2.74.0" + retry "^0.10.0" + semver "2 >=2.2.1 || 3.x || 4 || 5" + slide "^1.1.3" + optionalDependencies: + npmlog "~2.0.0 || ~3.1.0" + +npm-run-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" + dependencies: + path-key "^1.0.0" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + dependencies: + path-key "^2.0.0" + +npm-user-validate@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/npm-user-validate/-/npm-user-validate-0.1.5.tgz#52465d50c2d20294a57125b996baedbf56c5004b" + +npm@^3, npm@^3.10.6: + version "3.10.10" + resolved "https://registry.yarnpkg.com/npm/-/npm-3.10.10.tgz#5b1d577e4c8869d6c8603bc89e9cd1637303e46e" + dependencies: + abbrev "~1.0.9" + ansicolors "~0.3.2" + ansistyles "~0.1.3" + aproba "~1.0.4" + archy "~1.0.0" + asap "~2.0.5" + chownr "~1.0.1" + cmd-shim "~2.0.2" + columnify "~1.5.4" + config-chain "~1.1.11" + dezalgo "~1.0.3" + editor "~1.0.0" + fs-vacuum "~1.2.9" + fs-write-stream-atomic "~1.0.8" + fstream "~1.0.10" + fstream-npm "~1.2.0" + glob "~7.1.0" + graceful-fs "~4.1.9" + has-unicode "~2.0.1" + hosted-git-info "~2.1.5" + iferr "~0.1.5" + inflight "~1.0.5" + inherits "~2.0.3" + ini "~1.3.4" + init-package-json "~1.9.4" + lockfile "~1.0.2" + lodash._baseuniq "~4.6.0" + lodash.clonedeep "~4.5.0" + lodash.union "~4.6.0" + lodash.uniq "~4.5.0" + lodash.without "~4.4.0" + mkdirp "~0.5.1" + node-gyp "~3.4.0" + nopt "~3.0.6" + normalize-git-url "~3.0.2" + normalize-package-data "~2.3.5" + npm-cache-filename "~1.0.2" + npm-install-checks "~3.0.0" + npm-package-arg "~4.2.0" + npm-registry-client "~7.2.1" + npm-user-validate "~0.1.5" + npmlog "~4.0.0" + once "~1.4.0" + opener "~1.4.2" + osenv "~0.1.3" + path-is-inside "~1.0.2" + read "~1.0.7" + read-cmd-shim "~1.0.1" + read-installed "~4.0.3" + read-package-json "~2.0.4" + read-package-tree "~5.1.5" + readable-stream "~2.1.5" + realize-package-specifier "~3.0.3" + request "~2.75.0" + retry "~0.10.0" + rimraf "~2.5.4" + semver "~5.3.0" + sha "~2.0.1" + slide "~1.1.6" + sorted-object "~2.0.1" + strip-ansi "~3.0.1" + tar "~2.2.1" + text-table "~0.2.0" + uid-number "0.0.6" + umask "~1.1.0" + unique-filename "~1.1.0" + unpipe "~1.0.0" + validate-npm-package-name "~2.2.2" + which "~1.2.11" + wrappy "~1.0.2" + write-file-atomic "~1.2.0" + +npmi@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/npmi/-/npmi-2.0.1.tgz#32607657e1bd47ca857ab4e9d98f0a0cff96bcea" + dependencies: + npm "^3" + semver "^4.1.0" + +"npmlog@0 || 1 || 2 || 3", "npmlog@~2.0.0 || ~3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-3.1.2.tgz#2d46fa874337af9498a2f12bb43d8d0be4a36873" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.6.0" + set-blocking "~2.0.0" + +npmlog@~4.0.0: version "4.0.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" dependencies: @@ -2449,29 +2918,13 @@ number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" -oauth-sign@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.4.0.tgz#f22956f31ea7151a821e5f2fb32c113cad8b9f69" - -oauth-sign@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.5.0.tgz#d767f5169325620eab2e087ef0c472e773db6461" - oauth-sign@~0.8.1: version "0.8.2" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" -object-assign@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-0.3.1.tgz#060e2a2a27d7c0d77ec77b78f11aa47fd88008d2" - -object-assign@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-1.0.0.tgz#e65dc8766d3b47b4b8307465c8311da030b070a6" - -object-assign@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa" +obj-props@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/obj-props/-/obj-props-1.1.0.tgz#626313faa442befd4a44e9a02c3cb6bde937b511" object-assign@^3.0.0: version "3.0.0" @@ -2499,16 +2952,12 @@ on-finished@~2.3.0: dependencies: ee-first "1.1.1" -once@^1.3.0: +once@^1.3.0, once@^1.3.3, once@~1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" dependencies: wrappy "1" -once@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.2.0.tgz#de1905c636af874a8fba862d9aabddd1f920461c" - once@~1.3.0: version "1.3.3" resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" @@ -2523,22 +2972,20 @@ open@^0.0.5: version "0.0.5" resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc" -opn@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/opn/-/opn-1.0.2.tgz#b909643346d00a1abc977a8b96f3ce3c53d5cf5f" - -optimist@~0.3, optimist@~0.3.5: - version "0.3.7" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9" - dependencies: - wordwrap "~0.0.2" +opener@~1.4.2: + version "1.4.3" + resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" -optimist@~0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" +optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" dependencies: - minimist "~0.0.1" - wordwrap "~0.0.2" + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" os-homedir@^1.0.0: version "1.0.2" @@ -2550,7 +2997,7 @@ os-locale@^1.4.0: dependencies: lcid "^1.0.0" -os-name@^1.0.0, os-name@^1.0.3: +os-name@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/os-name/-/os-name-1.0.3.tgz#1b379f64835af7c5a7f498b357cb95215c159edf" dependencies: @@ -2561,13 +3008,16 @@ os-tmpdir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" -osenv@0, osenv@0.1.0, osenv@^0.1.0: +osenv@0, osenv@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.0.tgz#61668121eec584955030b9f470b1d2309504bfcb" -osenv@0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.0.3.tgz#cd6ad8ddb290915ad9e22765576025d411f29cb6" +osenv@^0.1.4, osenv@~0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" osx-release@^1.0.0: version "1.1.0" @@ -2575,18 +3025,19 @@ osx-release@^1.0.0: dependencies: minimist "^1.1.0" -p-throttler@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/p-throttler/-/p-throttler-0.1.0.tgz#1b16907942c333e6f1ddeabcb3479204b8c417c4" - dependencies: - q "~0.9.2" +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" -package-json@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/package-json/-/package-json-0.2.0.tgz#0316e177b8eb149985d34f706b4a5543b274bec5" +p-limit@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" dependencies: - got "^0.3.0" - registry-url "^0.1.0" + p-limit "^1.1.0" package-json@^1.0.0: version "1.2.0" @@ -2604,9 +3055,14 @@ package-json@^2.0.0: registry-url "^3.0.3" semver "^5.1.0" -"package@>= 1.0.0 < 1.2.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/package/-/package-1.0.1.tgz#d25a1f99e2506dcb27d6704b83dca8a312e4edcc" +package-json@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" + dependencies: + got "^6.7.1" + registry-auth-token "^3.0.1" + registry-url "^3.0.3" + semver "^5.1.0" pako@~0.2.0: version "0.2.9" @@ -2622,16 +3078,42 @@ parseurl@~1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" +path-array@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-array/-/path-array-1.0.1.tgz#7e2f0f35f07a2015122b868b7eac0eb2c4fec271" + dependencies: + array-index "^1.0.0" + path-exists@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" dependencies: pinkie-promise "^2.0.0" +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + path-is-absolute@^1.0.0, path-is-absolute@~1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" +path-is-inside@^1.0.1, path-is-inside@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + +path-key@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" + +path-key@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + +path-parse@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" + path-type@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" @@ -2640,29 +3122,17 @@ path-type@^1.0.0: pify "^2.0.0" pinkie-promise "^2.0.0" -pend@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + dependencies: + pify "^2.0.0" performance-now@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" -phantomjs-prebuilt@^2.1.3: - version "2.1.14" - resolved "https://registry.yarnpkg.com/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.14.tgz#d53d311fcfb7d1d08ddb24014558f1188c516da0" - dependencies: - es6-promise "~4.0.3" - extract-zip "~1.5.0" - fs-extra "~1.0.0" - hasha "~2.2.0" - kew "~0.7.0" - progress "~1.1.8" - request "~2.79.0" - request-progress "~2.0.1" - which "~1.2.10" - -pify@^2.0.0: +pify@^2.0.0, pify@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -2676,12 +3146,41 @@ pinkie@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" +pkg-conf@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" + dependencies: + find-up "^2.0.0" + load-json-file "^2.0.0" + +pkg-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + dependencies: + find-up "^1.0.0" + pkg-up@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" dependencies: find-up "^1.0.0" +pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" + dependencies: + find-up "^2.1.0" + +plur@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" + dependencies: + irregular-plurals "^1.0.0" + +pluralize@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" + po2json@*: version "0.4.5" resolved "https://registry.yarnpkg.com/po2json/-/po2json-0.4.5.tgz#47bb2952da32d58a1be2f256a598eebc0b745118" @@ -2689,6 +3188,10 @@ po2json@*: gettext-parser "1.1.0" nomnom "1.8.1" +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + prepend-http@^1.0.0, prepend-http@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" @@ -2704,7 +3207,7 @@ process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" -progress@~1.1.8: +progress@^1.1.8: version "1.1.8" resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" @@ -2714,62 +3217,43 @@ progress@~1.1.8: dependencies: asap "~2.0.3" -promptly@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/promptly/-/promptly-0.2.0.tgz#73ef200fa8329d5d3a8df41798950b8646ca46d9" +promzard@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee" dependencies: - read "~1.0.4" + read "1" proto-list@~1.2.1: version "1.2.4" resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" +proto-props@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/proto-props/-/proto-props-0.2.1.tgz#5e01dc2675a0de9abfa76e799dfa334d6f483f4b" + pseudomap@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" -pump@^0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/pump/-/pump-0.3.5.tgz#ae5ff8c1f93ed87adc6530a97565b126f585454b" - dependencies: - end-of-stream "~1.0.0" - once "~1.2.0" - punycode@1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" -punycode@>=0.2.0, punycode@^1.4.1: +punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" -q@~0.9.2: - version "0.9.7" - resolved "https://registry.yarnpkg.com/q/-/q-0.9.7.tgz#4de2e6cb3b29088c9e4cbc03bf9d42fb96ce2f75" - -q@~1.0.0, q@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/q/-/q-1.0.1.tgz#11872aeedee89268110b10a718448ffb10112a14" - qs@5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/qs/-/qs-5.2.0.tgz#a9f31142af468cb72b25b30136ba2456834916be" -qs@~1.2.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-1.2.2.tgz#19b57ff24dc2a99ce1f8bdf6afcda59f8ef61f88" - -qs@~2.3.1: - version "2.3.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" - qs@~5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/qs/-/qs-5.1.0.tgz#4d932e5c7ea411cca76a312d39a606200fd50cd9" -qs@~6.3.0: - version "6.3.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" +qs@~6.2.0: + version "6.2.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" qs@~6.4.0: version "6.4.0" @@ -2803,6 +3287,45 @@ read-all-stream@^3.0.0: pinkie-promise "^2.0.0" readable-stream "^2.0.0" +read-cmd-shim@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz#2d5d157786a37c055d22077c32c53f8329e91c7b" + dependencies: + graceful-fs "^4.1.2" + +read-installed@~4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/read-installed/-/read-installed-4.0.3.tgz#ff9b8b67f187d1e4c29b9feb31f6b223acd19067" + dependencies: + debuglog "^1.0.1" + read-package-json "^2.0.0" + readdir-scoped-modules "^1.0.0" + semver "2 || 3 || 4 || 5" + slide "~1.1.3" + util-extend "^1.0.1" + optionalDependencies: + graceful-fs "^4.1.2" + +"read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@~2.0.4: + version "2.0.10" + resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.0.10.tgz#dc0229f6dde6b4b705b39e25b2d970ebe95685ae" + dependencies: + glob "^7.1.1" + json-parse-helpfulerror "^1.0.2" + normalize-package-data "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.2" + +read-package-tree@~5.1.5: + version "5.1.6" + resolved "https://registry.yarnpkg.com/read-package-tree/-/read-package-tree-5.1.6.tgz#4f03e83d0486856fb60d97c94882841c2a7b1b7a" + dependencies: + debuglog "^1.0.1" + dezalgo "^1.0.0" + once "^1.3.0" + read-package-json "^2.0.0" + readdir-scoped-modules "^1.0.0" + read-pkg-up@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" @@ -2810,6 +3333,13 @@ read-pkg-up@^1.0.1: find-up "^1.0.0" read-pkg "^1.0.0" +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + read-pkg@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" @@ -2818,13 +3348,33 @@ read-pkg@^1.0.0: normalize-package-data "^2.3.2" path-type "^1.0.0" -read@~1.0.4: +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +read@1, read@~1.0.1, read@~1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" dependencies: mute-stream "~0.0.4" -readable-stream@1.1, readable-stream@^1.0.27-1, readable-stream@~1.1.8: +"readable-stream@1 || 2": + version "2.3.3" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + safe-buffer "~5.1.1" + string_decoder "~1.0.3" + util-deprecate "~1.0.1" + +readable-stream@1.1: version "1.1.13" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e" dependencies: @@ -2833,7 +3383,7 @@ readable-stream@1.1, readable-stream@^1.0.27-1, readable-stream@~1.1.8: isarray "0.0.1" string_decoder "~0.10.x" -readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.2.2: +readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.2.2: version "2.2.6" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" dependencies: @@ -2845,32 +3395,58 @@ readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2. string_decoder "~0.10.x" util-deprecate "~1.0.1" -readable-stream@~1.0.26: - version "1.0.34" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" +readable-stream@~2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" dependencies: core-util-is "~1.0.0" inherits "~2.0.1" - isarray "0.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" string_decoder "~0.10.x" + util-deprecate "~1.0.1" -readable-stream@~2.0.0: - version "2.0.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" +readable-stream@~2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" + dependencies: + buffer-shims "^1.0.0" + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readdir-scoped-modules@*, readdir-scoped-modules@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz#9fafa37d286be5d92cbaebdee030dc9b5f406747" + dependencies: + debuglog "^1.0.1" + dezalgo "^1.0.0" + graceful-fs "^4.1.2" + once "^1.3.0" + +readline2@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + mute-stream "0.0.5" + +realize-package-specifier@~3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/realize-package-specifier/-/realize-package-specifier-3.0.3.tgz#d0def882952b8de3f67eba5e91199661271f41f4" dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - string_decoder "~0.10.x" - util-deprecate "~1.0.1" + dezalgo "^1.0.1" + npm-package-arg "^4.1.1" -readline2@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/readline2/-/readline2-0.1.1.tgz#99443ba6e83b830ef3051bfd7dc241a82728d568" +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" dependencies: - mute-stream "0.0.4" - strip-ansi "^2.0.1" + resolve "^1.1.6" redent@^1.0.0: version "1.0.0" @@ -2879,24 +3455,12 @@ redent@^1.0.0: indent-string "^2.1.0" strip-indent "^1.0.1" -redeyed@~0.4.0: - version "0.4.4" - resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-0.4.4.tgz#37e990a6f2b21b2a11c2e6a48fd4135698cba97f" - dependencies: - esprima "~1.0.4" - registry-auth-token@^3.0.1: version "3.1.0" resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.0.tgz#997c08256e0c7999837b90e944db39d8a790276b" dependencies: rc "^1.1.6" -registry-url@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-0.1.1.tgz#1739427b81b110b302482a1c7cd727ffcc82d5be" - dependencies: - npmconf "^2.0.1" - registry-url@^3.0.0, registry-url@^3.0.3: version "3.1.0" resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" @@ -2919,25 +3483,7 @@ repeating@^2.0.0: dependencies: is-finite "^1.0.0" -request-progress@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-0.3.0.tgz#bdf2062bfc197c5d492500d44cb3aff7865b492e" - dependencies: - throttleit "~0.0.2" - -request-progress@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-2.0.1.tgz#5d36bb57961c673aa5b788dbc8141fdf23b44e08" - dependencies: - throttleit "^1.0.0" - -request-replay@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/request-replay/-/request-replay-0.2.0.tgz#9b693a5d118b39f5c596ead5ed91a26444057f60" - dependencies: - retry "~0.6.0" - -request@2, request@^2.40.0, request@^2.61.0, request@^2.74.0: +request@2, request@^2.74.0: version "2.81.0" resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" dependencies: @@ -2964,59 +3510,18 @@ request@2, request@^2.40.0, request@^2.61.0, request@^2.74.0: tunnel-agent "^0.6.0" uuid "^3.0.0" -request@~2.42.0: - version "2.42.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.42.0.tgz#572bd0148938564040ac7ab148b96423a063304a" - dependencies: - bl "~0.9.0" - caseless "~0.6.0" - forever-agent "~0.5.0" - json-stringify-safe "~5.0.0" - mime-types "~1.0.1" - node-uuid "~1.4.0" - qs "~1.2.0" - tunnel-agent "~0.4.0" - optionalDependencies: - aws-sign2 "~0.5.0" - form-data "~0.1.0" - hawk "1.1.1" - http-signature "~0.10.0" - oauth-sign "~0.4.0" - stringstream "~0.0.4" - tough-cookie ">=0.12.0" - -request@~2.51.0: - version "2.51.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.51.0.tgz#35d00bbecc012e55f907b1bd9e0dbd577bfef26e" - dependencies: - aws-sign2 "~0.5.0" - bl "~0.9.0" - caseless "~0.8.0" - combined-stream "~0.0.5" - forever-agent "~0.5.0" - form-data "~0.2.0" - hawk "1.1.1" - http-signature "~0.10.0" - json-stringify-safe "~5.0.0" - mime-types "~1.0.1" - node-uuid "~1.4.0" - oauth-sign "~0.5.0" - qs "~2.3.1" - stringstream "~0.0.4" - tough-cookie ">=0.12.0" - tunnel-agent "~0.4.0" - -request@~2.79.0: - version "2.79.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" +request@~2.75.0: + version "2.75.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93" dependencies: aws-sign2 "~0.6.0" aws4 "^1.2.1" + bl "~1.1.2" caseless "~0.11.0" combined-stream "~1.0.5" extend "~3.0.0" forever-agent "~0.6.1" - form-data "~2.1.1" + form-data "~2.0.0" har-validator "~2.0.6" hawk "~3.1.3" http-signature "~1.1.0" @@ -3024,12 +3529,16 @@ request@~2.79.0: isstream "~0.1.2" json-stringify-safe "~5.0.1" mime-types "~2.1.7" + node-uuid "~1.4.7" oauth-sign "~0.8.1" - qs "~6.3.0" + qs "~6.2.0" stringstream "~0.0.4" tough-cookie "~2.3.0" tunnel-agent "~0.4.1" - uuid "^3.0.0" + +require-dir@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/require-dir/-/require-dir-0.3.2.tgz#c1d5c75e9fbffde9f2e6b33e383db4f594b5a6a9" require-directory@^2.1.1: version "2.1.1" @@ -3039,6 +3548,23 @@ require-main-filename@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" +require-uncached@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" + dependencies: + caller-path "^0.1.0" + resolve-from "^1.0.0" + +resolve-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" + dependencies: + resolve-from "^2.0.0" + +resolve-from@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" + resolve-from@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" @@ -3049,6 +3575,12 @@ resolve-pkg@^0.1.0: dependencies: resolve-from "^2.0.0" +resolve@^1.1.6, resolve@^1.2.0: + version "1.3.3" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" + dependencies: + path-parse "^1.0.5" + resolve@~1.1.0: version "1.1.7" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" @@ -3060,9 +3592,9 @@ restore-cursor@^1.0.1: exit-hook "^1.0.0" onetime "^1.0.0" -retry@0.6.0, retry@~0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.6.0.tgz#1c010713279a6fd1e8def28af0c3ff1871caa537" +retry@^0.10.0, retry@~0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" right-align@^0.1.1: version "0.1.3" @@ -3070,31 +3602,37 @@ right-align@^0.1.1: dependencies: align-text "^0.1.1" -rimraf@2, rimraf@^2.5.1, rimraf@^2.5.2: +rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.2, rimraf@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" dependencies: glob "^7.0.5" -rimraf@~2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.0.3.tgz#f50a2965e7144e9afd998982f15df706730f56a9" - optionalDependencies: - graceful-fs "~1.1" - -rimraf@~2.2.0, rimraf@~2.2.8: +rimraf@~2.2.8: version "2.2.8" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" +rimraf@~2.5.4: + version "2.5.4" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" + dependencies: + glob "^7.0.5" + +run-async@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" + dependencies: + once "^1.3.0" + run-async@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" dependencies: is-promise "^2.1.0" -rx@^2.2.27: - version "2.5.3" - resolved "https://registry.yarnpkg.com/rx/-/rx-2.5.3.tgz#21adc7d80f02002af50dae97fd9dbf248755f566" +rx-lite@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" rx@^4.1.0: version "4.1.0" @@ -3104,19 +3642,9 @@ safe-buffer@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" -sass-graph@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.1.2.tgz#965104be23e8103cb7e5f710df65935b317da57b" - dependencies: - glob "^7.0.0" - lodash "^4.0.0" - yargs "^4.7.1" - -semver-diff@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-0.1.0.tgz#4f6057ca3eba23cc484b51f64aaf88b131a3855d" - dependencies: - semver "^2.2.1" +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" semver-diff@^2.0.0: version "2.1.0" @@ -3124,53 +3652,66 @@ semver-diff@^2.0.0: dependencies: semver "^5.0.3" -"semver@2 || 3 || 4", semver@^2.2.1, semver@~2.3.0: - version "2.3.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-2.3.2.tgz#b9848f25d6cf36333073ec9ef8856d42f1233e52" +semver-utils@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/semver-utils/-/semver-utils-1.1.1.tgz#27d92fec34d27cfa42707d3b40d025ae9855f2df" -"semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@~5.3.0: +"semver@2 >=2.2.1 || 3.x || 4 || 5", "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", "semver@^2.3.0 || 3.x || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@~5.3.0: version "5.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" +semver@^4.1.0: + version "4.3.6" + resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" + set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" -set-immediate-shim@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" +sha@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/sha/-/sha-2.0.1.tgz#6030822fbd2c9823949f8f72ed6411ee5cf25aae" + dependencies: + graceful-fs "^4.1.2" + readable-stream "^2.0.2" -shell-quote@~1.4.1: - version "1.4.3" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.4.3.tgz#952c44e0b1ed9013ef53958179cc643e8777466b" +shallow-clone@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" dependencies: - array-filter "~0.0.0" - array-map "~0.0.0" - array-reduce "~0.0.0" - jsonify "~0.0.0" + is-extendable "^0.1.1" + kind-of "^2.0.1" + lazy-cache "^0.2.3" + mixin-object "^2.0.1" shelljs@0.3.x: version "0.3.0" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.3.0.tgz#3596e6307a781544f591f37da618360f31db57b1" -sigmund@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" +shelljs@^0.7.5: + version "0.7.8" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" signal-exit@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" -slide@^1.1.5: +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + +slide@^1.1.3, slide@^1.1.5, slide@~1.1.3, slide@~1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" -sntp@0.2.x: - version "0.2.4" - resolved "https://registry.yarnpkg.com/sntp/-/sntp-0.2.4.tgz#fb885f18b0f3aad189f824862536bceeec750900" - dependencies: - hoek "0.9.x" - sntp@1.x.x: version "1.0.9" resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" @@ -3185,7 +3726,20 @@ snyk-config@1.0.1: nconf "^0.7.2" path-is-absolute "^1.0.0" -snyk-module@1.7.0, snyk-module@^1.6.0: +snyk-gradle-plugin@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/snyk-gradle-plugin/-/snyk-gradle-plugin-1.0.2.tgz#364550d5f388673400296d3ab31df358c678bb9e" + dependencies: + clone-deep "^0.3.0" + +snyk-module@1.8.1, snyk-module@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/snyk-module/-/snyk-module-1.8.1.tgz#31d5080fb1c0dfd6fa8567dd34a523fd02bf1fca" + dependencies: + debug "^2.2.0" + hosted-git-info "^2.1.4" + +snyk-module@^1.6.0: version "1.7.0" resolved "https://registry.yarnpkg.com/snyk-module/-/snyk-module-1.7.0.tgz#07c6ca8556d281de6f9e2368c04ecb6dd1f2631a" dependencies: @@ -3193,20 +3747,28 @@ snyk-module@1.7.0, snyk-module@^1.6.0: hosted-git-info "^2.1.4" validate-npm-package-name "^2.2.2" -snyk-policy@1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/snyk-policy/-/snyk-policy-1.7.0.tgz#2151c751ab1edc040fc6b94a872aa989db492324" +snyk-mvn-plugin@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/snyk-mvn-plugin/-/snyk-mvn-plugin-1.0.0.tgz#99ae297b7ae40fa8df78a39fa13816dc513c2d10" + +snyk-policy@1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/snyk-policy/-/snyk-policy-1.7.1.tgz#e413b6bd4af6050c5e5f445287909e4e98a09b22" dependencies: debug "^2.2.0" es6-promise "^3.1.2" js-yaml "^3.5.3" lodash.clonedeep "^4.3.1" semver "^5.1.0" - snyk-module "^1.6.0" + snyk-module "^1.8.1" snyk-resolve "^1.0.0" snyk-try-require "^1.1.1" then-fs "^2.0.0" +snyk-python-plugin@1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/snyk-python-plugin/-/snyk-python-plugin-1.2.2.tgz#296948cba5ac80d2ce178a5cb7ecfcff88fdf263" + snyk-recursive-readdir@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/snyk-recursive-readdir/-/snyk-recursive-readdir-2.0.0.tgz#5cb59e94698169e0205a60e7d6a506d0b4d52ff3" @@ -3239,6 +3801,10 @@ snyk-resolve@1.0.0, snyk-resolve@^1.0.0: debug "^2.2.0" then-fs "^2.0.0" +snyk-sbt-plugin@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/snyk-sbt-plugin/-/snyk-sbt-plugin-1.0.2.tgz#ce2aa9a3b08af6680d5ee8a007ecb6ae55fb72d1" + snyk-tree@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/snyk-tree/-/snyk-tree-1.0.0.tgz#0fb73176dbf32e782f19100294160448f9111cc8" @@ -3255,9 +3821,9 @@ snyk-try-require@^1.1.1, snyk-try-require@^1.2.0: lru-cache "^4.0.0" then-fs "^2.0.0" -snyk@^1.25.2: - version "1.25.2" - resolved "https://registry.yarnpkg.com/snyk/-/snyk-1.25.2.tgz#6fb9801029255fb7e7d91fe1d43889eeea6ca01a" +snyk@^1.25.1, snyk@^1.28.1: + version "1.36.2" + resolved "https://registry.yarnpkg.com/snyk/-/snyk-1.36.2.tgz#88be72a8da75a02e920f2be7f5830402b5e0eb41" dependencies: abbrev "^1.0.7" ansi-escapes "^1.3.0" @@ -3272,11 +3838,15 @@ snyk@^1.25.2: request "^2.74.0" semver "^5.1.0" snyk-config "1.0.1" - snyk-module "1.7.0" - snyk-policy "1.7.0" + snyk-gradle-plugin "1.0.2" + snyk-module "1.8.1" + snyk-mvn-plugin "1.0.0" + snyk-policy "1.7.1" + snyk-python-plugin "1.2.2" snyk-recursive-readdir "^2.0.0" snyk-resolve "1.0.0" snyk-resolve-deps "1.7.0" + snyk-sbt-plugin "1.0.2" snyk-tree "^1.0.0" snyk-try-require "^1.2.0" tempfile "^1.1.1" @@ -3286,15 +3856,29 @@ snyk@^1.25.2: url "^0.11.0" uuid "^3.0.1" +sort-keys-length@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sort-keys-length/-/sort-keys-length-1.0.1.tgz#9cb6f4f4e9e48155a6aa0671edd336ff1479a188" + dependencies: + sort-keys "^1.0.0" + +sort-keys@^1.0.0, sort-keys@^1.1.1, sort-keys@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + dependencies: + is-plain-obj "^1.0.0" + +sorted-object@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/sorted-object/-/sorted-object-2.0.1.tgz#7d631f4bd3a798a24af1dffcfbfe83337a5df5fc" + source-map@0.5.x, source-map@~0.5.1: version "0.5.6" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" -source-map@~0.1.7: - version "0.1.43" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" - dependencies: - amdefine ">=0.0.4" +spawn-please@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/spawn-please/-/spawn-please-0.3.0.tgz#db338ec4cff63abc69f1d0e08cee9eb8bebd9d11" spdx-correct@~1.0.0: version "1.0.2" @@ -3333,22 +3917,10 @@ statuses@1: version "1.3.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" -stdout-stream@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b" - dependencies: - readable-stream "^2.0.1" - stream-shift@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" -string-length@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-0.1.2.tgz#ab04bb33867ee74beed7fb89bb7f089d392780f2" - dependencies: - strip-ansi "^0.2.1" - string-length@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" @@ -3363,42 +3935,39 @@ string-width@^1.0.1: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" +string-width@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.0.tgz#030664561fc146c9423ec7d978fe2457437fe6d0" + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + string_decoder@~0.10.x: version "0.10.31" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" -stringify-object@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-1.0.1.tgz#86d35e7dbfbce9aa45637d7ecdd7847e159db8a2" +string_decoder@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" + dependencies: + safe-buffer "~5.1.0" stringstream@~0.0.4: version "0.0.5" resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" -strip-ansi@^0.2.1: - version "0.2.2" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.2.2.tgz#854d290c981525fc8c397a910b025ae2d54ffc08" - dependencies: - ansi-regex "^0.1.0" - -strip-ansi@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.3.0.tgz#25f48ea22ca79187f3174a4db8759347bb126220" - dependencies: - ansi-regex "^0.2.1" - -strip-ansi@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-2.0.1.tgz#df62c1aa94ed2f114e1d0f21fd1d50482b79a60e" - dependencies: - ansi-regex "^1.0.0" - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: +strip-ansi@^3.0.0, strip-ansi@^3.0.1, strip-ansi@~3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" dependencies: ansi-regex "^2.0.0" +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + dependencies: + ansi-regex "^3.0.0" + strip-ansi@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" @@ -3409,6 +3978,14 @@ strip-bom@^2.0.0: dependencies: is-utf8 "^0.2.0" +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + strip-indent@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" @@ -3423,38 +4000,22 @@ strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" -supports-color@3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" - dependencies: - has-flag "^1.0.0" - -supports-color@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" - supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" -tar-fs@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-0.5.2.tgz#0f59424be7eeee45232316e302f66d3f6ea6db3e" - dependencies: - mkdirp "^0.5.0" - pump "^0.3.5" - tar-stream "^0.4.6" - -tar-stream@^0.4.6: - version "0.4.7" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-0.4.7.tgz#1f1d2ce9ebc7b42765243ca0e8f1b7bfda0aadcd" +table@^3.7.8: + version "3.8.3" + resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" dependencies: - bl "^0.9.0" - end-of-stream "^1.0.0" - readable-stream "^1.0.27-1" - xtend "^4.0.0" + ajv "^4.7.0" + ajv-keywords "^1.0.0" + chalk "^1.1.1" + lodash "^4.0.0" + slice-ansi "0.0.4" + string-width "^2.0.0" -tar@^2.0.0: +tar@^2.0.0, tar@~2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" dependencies: @@ -3469,11 +4030,19 @@ tempfile@^1.1.1: os-tmpdir "^1.0.0" uuid "^2.0.1" -temporary@^0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/temporary/-/temporary-0.0.8.tgz#a18a981d28ba8ca36027fb3c30538c3ecb740ac0" +term-size@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca" dependencies: - package ">= 1.0.0 < 1.2.0" + execa "^0.4.0" + +text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + +the-argv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/the-argv/-/the-argv-1.0.0.tgz#0084705005730dd84db755253c931ae398db9522" then-fs@^2.0.0: version "2.0.0" @@ -3481,15 +4050,7 @@ then-fs@^2.0.0: dependencies: promise ">=3.2 <8" -throttleit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" - -throttleit@~0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" - -through@^2.3.6, through@~2.3.4: +through@^2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" @@ -3501,12 +4062,9 @@ timed-out@^3.0.0: version "3.1.3" resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" -timers-ext@0.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.1.tgz#d6422f1ebd67772355f46c93f25e3933992c8b08" - dependencies: - es5-ext "~0.10.14" - next-tick "1" +timed-out@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" tiny-lr@^0.2.1: version "0.2.1" @@ -3519,43 +4077,27 @@ tiny-lr@^0.2.1: parseurl "~1.3.0" qs "~5.1.0" -tmp@0.0.23: - version "0.0.23" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.23.tgz#de874aa5e974a85f0a32cdfdbd74663cb3bd9c74" - -touch@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/touch/-/touch-0.0.2.tgz#a65a777795e5cbbe1299499bdc42281ffb21b5f4" - dependencies: - nopt "~1.0.10" - -tough-cookie@>=0.12.0, tough-cookie@~2.3.0: +tough-cookie@~2.3.0: version "2.3.2" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" dependencies: punycode "^1.4.1" -tough-cookie@^0.12.1: - version "0.12.1" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-0.12.1.tgz#8220c7e21abd5b13d96804254bd5a81ebf2c7d62" - dependencies: - punycode ">=0.2.0" - -"traverse@>=0.3.0 <0.4": - version "0.3.9" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz#717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9" - trim-newlines@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" +tryit@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" + tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" dependencies: safe-buffer "^5.0.1" -tunnel-agent@~0.4.0, tunnel-agent@~0.4.1: +tunnel-agent@~0.4.1: version "0.4.3" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" @@ -3563,6 +4105,12 @@ tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" + type-detect@0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" @@ -3578,33 +4126,30 @@ type-is@~1.6.10: media-typer "0.3.0" mime-types "~2.1.13" -typedarray@^0.0.6, typedarray@~0.0.5: +typedarray@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" -uglify-js@~2.3: - version "2.3.6" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.3.6.tgz#fa0984770b428b7a9b2a8058f46355d14fef211a" - dependencies: - async "~0.2.6" - optimist "~0.3.5" - source-map "~0.1.7" - -uglify-js@~2.8.3: - version "2.8.12" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.12.tgz#8a50f5d482243650b7108f6080aa3a6afe2a6c55" +uglify-js@~2.8.21: + version "2.8.29" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" dependencies: source-map "~0.5.1" - uglify-to-browserify "~1.0.0" yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" uglify-to-browserify@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" -uid-number@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.5.tgz#5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e" +uid-number@0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + +umask@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/umask/-/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d" undefsafe@0.0.3: version "0.0.3" @@ -3618,7 +4163,25 @@ underscore@~1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8" -unpipe@1.0.0: +unique-filename@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.0.tgz#d05f2fe4032560871f30e93cbe735eea201514f3" + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.0.tgz#db6676e7c7cc0629878ff196097c78855ae9f4ab" + dependencies: + imurmurhash "^0.1.4" + +unique-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + dependencies: + crypto-random-string "^1.0.0" + +unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" @@ -3626,15 +4189,9 @@ unzip-response@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" -update-notifier@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-0.2.0.tgz#a010c928adcf02090b8e0ce7fef6fb0a7cacc34a" - dependencies: - chalk "^0.5.0" - configstore "^0.3.0" - latest-version "^0.2.0" - semver-diff "^0.1.0" - string-length "^0.1.2" +unzip-response@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" update-notifier@^0.5.0: version "0.5.0" @@ -3659,6 +4216,19 @@ update-notifier@^0.6.0: latest-version "^2.0.0" semver-diff "^2.0.0" +update-notifier@^2.1.0, update-notifier@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.2.0.tgz#1b5837cf90c0736d88627732b661c138f86de72f" + dependencies: + boxen "^1.0.0" + chalk "^1.0.0" + configstore "^3.0.0" + import-lazy "^2.1.0" + is-npm "^1.0.0" + latest-version "^3.0.0" + semver-diff "^2.0.0" + xdg-basedir "^3.0.0" + uri-path@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/uri-path/-/uri-path-1.0.0.tgz#9747f018358933c31de0fccfd82d138e67262e32" @@ -3676,14 +4246,20 @@ url@^0.11.0: punycode "1.3.2" querystring "0.2.0" -user-home@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" +user-home@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" + dependencies: + os-homedir "^1.0.0" util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" +util-extend@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" + uuid@^2.0.1: version "2.0.3" resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" @@ -3692,25 +4268,37 @@ uuid@^3.0.0, uuid@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" -validate-npm-package-license@^3.0.1: +validate-npm-package-license@*, validate-npm-package-license@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" dependencies: spdx-correct "~1.0.0" spdx-expression-parse "~1.0.0" -validate-npm-package-name@^2.2.2: +validate-npm-package-name@^2.2.2, validate-npm-package-name@~2.2.2: version "2.2.2" resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-2.2.2.tgz#f65695b22f7324442019a3c7fa39a6e7fd299085" dependencies: builtins "0.0.7" +validate-npm-package-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + dependencies: + builtins "^1.0.3" + verror@1.3.6: version "1.3.6" resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" dependencies: extsprintf "1.0.2" +wcwidth@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + dependencies: + defaults "^1.0.3" + websocket-driver@>=0.5.1: version "0.6.5" resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" @@ -3725,15 +4313,17 @@ which-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" -which@1, which@^1.0.5, which@^1.2.9, which@~1.2.1, which@~1.2.10: +which@1, which@^1.0.5, which@^1.2.9, which@~1.2.1: version "1.2.12" resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" dependencies: isexe "^1.1.1" -which@~1.0.5: - version "1.0.9" - resolved "https://registry.yarnpkg.com/which/-/which-1.0.9.tgz#460c1da0f810103d0321a9b633af9e575e64486f" +which@^1.2.8, which@~1.2.11: + version "1.2.14" + resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" + dependencies: + isexe "^2.0.0" wide-align@^1.1.0: version "1.1.0" @@ -3769,9 +4359,9 @@ wordwrap@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" -wordwrap@~0.0.2: - version "0.0.3" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" wrap-ansi@^2.0.0: version "2.1.0" @@ -3780,14 +4370,10 @@ wrap-ansi@^2.0.0: string-width "^1.0.1" strip-ansi "^3.0.1" -wrappy@1: +wrappy@1, wrappy@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" -wrench@~1.4.3: - version "1.4.4" - resolved "https://registry.yarnpkg.com/wrench/-/wrench-1.4.4.tgz#7f523efdb71b0100e77dce834c06523cbe3d54e0" - write-file-atomic@^1.1.2: version "1.3.1" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" @@ -3796,11 +4382,45 @@ write-file-atomic@^1.1.2: imurmurhash "^0.1.4" slide "^1.1.5" -xdg-basedir@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-1.0.1.tgz#14ff8f63a4fdbcb05d5b6eea22b36f3033b9f04e" +write-file-atomic@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + slide "^1.1.5" + +write-file-atomic@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab" + dependencies: + graceful-fs "^4.1.2" + imurmurhash "^0.1.4" + slide "^1.1.5" + +write-json-file@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.2.0.tgz#51862506bbb3b619eefab7859f1fd6c6d0530876" + dependencies: + detect-indent "^5.0.0" + graceful-fs "^4.1.2" + make-dir "^1.0.0" + pify "^2.0.0" + sort-keys "^1.1.1" + write-file-atomic "^2.0.0" + +write-pkg@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" + dependencies: + sort-keys "^1.1.2" + write-json-file "^2.0.0" + +write@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" dependencies: - user-home "^1.0.0" + mkdirp "^0.5.1" xdg-basedir@^2.0.0: version "2.0.0" @@ -3808,6 +4428,52 @@ xdg-basedir@^2.0.0: dependencies: os-homedir "^1.0.0" +xdg-basedir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + +xo-init@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/xo-init/-/xo-init-0.5.0.tgz#8e28dec79676cc5e042fde5fd8f710e2646b0e36" + dependencies: + arrify "^1.0.0" + execa "^0.5.0" + minimist "^1.1.3" + path-exists "^3.0.0" + read-pkg-up "^2.0.0" + the-argv "^1.0.0" + write-pkg "^2.0.0" + +xo@^0.18.2: + version "0.18.2" + resolved "https://registry.yarnpkg.com/xo/-/xo-0.18.2.tgz#92a42eb02a4fb149dfea5518021914f5aac84ff0" + dependencies: + arrify "^1.0.0" + debug "^2.2.0" + deep-assign "^1.0.0" + eslint "^3.18.0" + eslint-config-xo "^0.18.0" + eslint-formatter-pretty "^1.0.0" + eslint-plugin-ava "^4.2.0" + eslint-plugin-import "^2.0.0" + eslint-plugin-no-use-extend-native "^0.3.2" + eslint-plugin-promise "^3.4.0" + eslint-plugin-unicorn "^2.1.0" + get-stdin "^5.0.0" + globby "^6.0.0" + has-flag "^2.0.0" + ignore "^3.2.6" + lodash.isequal "^4.4.0" + meow "^3.4.2" + multimatch "^2.1.0" + path-exists "^3.0.0" + pkg-conf "^2.0.0" + resolve-cwd "^1.0.0" + resolve-from "^2.0.0" + slash "^1.0.0" + update-notifier "^2.1.0" + xo-init "^0.5.0" + xtend@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" @@ -3827,7 +4493,7 @@ yargs-parser@^2.4.1: camelcase "^3.0.0" lodash.assign "^4.0.6" -yargs@^4.3.2, yargs@^4.7.1: +yargs@^4.3.2: version "4.8.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" dependencies: @@ -3863,9 +4529,3 @@ yargs@~3.15.0: cliui "^2.1.0" decamelize "^1.0.0" window-size "^0.1.1" - -yauzl@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" - dependencies: - fd-slicer "~1.0.1"