├── .gitignore ├── README.md ├── bower.json ├── dist ├── jquery.dcd.doubletaptogo.js └── jquery.dcd.doubletaptogo.min.js ├── gulpfile.js ├── package.json ├── src ├── index.html ├── js │ └── jquery.dcd.doubletaptogo.js ├── raw.html └── scss │ └── main.scss └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | src/lib 4 | src/scss/*.css 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | jquery-doubletaptogo 2 | ============ 3 | 4 | Brings drop-down navigation tapping for touch devices. Built as jQuery Plugin. 5 | 6 | 7 | [![Join the chat at https://gitter.im/dachcom-digital/jquery-doubletaptogo](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/dachcom-digital/jquery-doubletaptogo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 8 | [![npm](https://img.shields.io/npm/v/jquery-doubletaptogo.svg)](https://www.npmjs.com/package/jquery-doubletaptogo) 9 | [![npm](https://img.shields.io/bower/v/jquery-doubletaptogo.svg)](https://www.npmjs.com/package/jquery-doubletaptogo) 10 | 11 | Dependencies 12 | ============ 13 | - jQuery: http://jquery.com/ 14 | 15 | Installation 16 | ============ 17 | 18 | ```html 19 | 20 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | ``` 45 | 46 | Options 47 | ============ 48 | 49 | - **automatic**: If set to true, tries to find out automatically which elements need doubletap and sets selector class on it. Set to false, if you have a more complex structure and set the selector class manually on the elements or specify a complex selector chain. `[Default: true]` 50 | - **selectorClass**: Defines the selector class on which doubletap binds. `[Default: 'doubletap']` 51 | - **selectorChain**: Defines the selector chain on which doubletap binds. `[Default: 'li:has(ul)']` 52 | 53 | Changelog 54 | ============ 55 | 3.0.0 Refactor to jQuery Plugin 56 | ----------------- 57 | * removed dependency for jQuery Widget Factory 58 | * Bugfixes 59 | 60 | 2.0.1 Bugfixes 61 | ----------------- 62 | * added selector chain 63 | * Bugfix for selector class in event listeners 64 | * Bugfix for event listeners iOS / Android 65 | 66 | 2.0.0 Refactoring 67 | ----------------- 68 | * added automatic mode 69 | * added selector for binding 70 | * removed levels option 71 | 72 | 1.0.0 Initial Release 73 | --------------------- 74 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-doubletaptogo", 3 | "version": "3.0.2", 4 | "main": [ 5 | "dist/jquery.dcd.doubletaptogo.min.js" 6 | ], 7 | "dependencies": { 8 | "jquery": ">=3.1.1" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /dist/jquery.dcd.doubletaptogo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Original Plugin by Osvaldas Valutis, www.osvaldas.info 3 | http://osvaldas.info/drop-down-navigation-responsive-and-touch-friendly 4 | Available for use under the MIT License 5 | */ 6 | /** 7 | * jquery-doubleTapToGo plugin 8 | * Copyright 2017 DACHCOM.DIGITAL AG 9 | * @author Marco Rieser 10 | * @author Volker Andres 11 | * @author Stefan Hagspiel 12 | * @version 3.0.2 13 | * @see https://github.com/dachcom-digital/jquery-doubletaptogo 14 | */ 15 | (function ($, window, document, undefined) { 16 | 'use strict'; 17 | var pluginName = 'doubleTapToGo', 18 | defaults = { 19 | automatic: true, 20 | selectorClass: 'doubletap', 21 | selectorChain: 'li:has(ul)' 22 | }; 23 | 24 | function DoubleTapToGo (element, options) { 25 | this.element = element; 26 | this.settings = $.extend({}, defaults, options); 27 | this._defaults = defaults; 28 | this._name = pluginName; 29 | this.init(); 30 | } 31 | 32 | $.extend(DoubleTapToGo.prototype, { 33 | preventClick: false, 34 | currentTap: $(), 35 | init: function () { 36 | $(this.element) 37 | .on('touchstart', '.' + this.settings.selectorClass, this._tap.bind(this)) 38 | .on('click', '.' + this.settings.selectorClass, this._click.bind(this)) 39 | .on('remove', this._destroy.bind(this)); 40 | 41 | this._addSelectors(); 42 | }, 43 | 44 | _addSelectors: function () { 45 | if (this.settings.automatic !== true) { 46 | return; 47 | } 48 | $(this.element) 49 | .find(this.settings.selectorChain) 50 | .addClass(this.settings.selectorClass); 51 | }, 52 | 53 | _click: function (event) { 54 | if (this.preventClick) { 55 | event.preventDefault(); 56 | } else { 57 | this.currentTap = $(); 58 | } 59 | }, 60 | 61 | _tap: function (event) { 62 | var $target = $(event.target).closest('li'); 63 | if (!$target.hasClass(this.settings.selectorClass)) { 64 | this.preventClick = false; 65 | return; 66 | } 67 | if ($target.get(0) === this.currentTap.get(0)) { 68 | this.preventClick = false; 69 | return; 70 | } 71 | this.preventClick = true; 72 | this.currentTap = $target; 73 | event.stopPropagation(); 74 | }, 75 | 76 | _destroy: function () { 77 | $(this.element).off(); 78 | }, 79 | 80 | reset: function () { 81 | this.currentTap = $(); 82 | } 83 | }); 84 | 85 | $.fn[pluginName] = function (options) { 86 | var args = arguments, 87 | returns; 88 | if (options === undefined || typeof options === 'object') { 89 | return this.each(function () { 90 | if (!$.data(this, pluginName)) { 91 | $.data(this, pluginName, new DoubleTapToGo(this, options)); 92 | } 93 | }); 94 | } else if (typeof options === 'string' && options[0] !== '_' && options !== 'init') { 95 | this.each(function () { 96 | var instance = $.data(this, pluginName), 97 | methodName = (options === 'destroy' ? '_destroy' : options); 98 | if (instance instanceof DoubleTapToGo && typeof instance[methodName] === 'function') { 99 | returns = instance[methodName].apply(instance, Array.prototype.slice.call(args, 1)); 100 | } 101 | if (options === 'destroy') { 102 | $.data(this, pluginName, null); 103 | } 104 | }); 105 | return returns !== undefined ? returns : this; 106 | } 107 | }; 108 | })(jQuery, window, document); 109 | -------------------------------------------------------------------------------- /dist/jquery.dcd.doubletaptogo.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | Original Plugin by Osvaldas Valutis, www.osvaldas.info 3 | http://osvaldas.info/drop-down-navigation-responsive-and-touch-friendly 4 | Available for use under the MIT License 5 | */ 6 | /** 7 | * jquery-doubleTapToGo plugin 8 | * Copyright 2017 DACHCOM.DIGITAL AG 9 | * @author Marco Rieser 10 | * @author Volker Andres 11 | * @author Stefan Hagspiel 12 | * @version 3.0.2 13 | * @see https://github.com/dachcom-digital/jquery-doubletaptogo 14 | */ 15 | !function(t,e,s,i){"use strict";function n(e,s){this.element=e,this.settings=t.extend({},a,s),this._defaults=a,this._name=o,this.init()}var o="doubleTapToGo",a={automatic:!0,selectorClass:"doubletap",selectorChain:"li:has(ul)"};t.extend(n.prototype,{preventClick:!1,currentTap:t(),init:function(){t(this.element).on("touchstart","."+this.settings.selectorClass,this._tap.bind(this)).on("click","."+this.settings.selectorClass,this._click.bind(this)).on("remove",this._destroy.bind(this)),this._addSelectors()},_addSelectors:function(){this.settings.automatic===!0&&t(this.element).find(this.settings.selectorChain).addClass(this.settings.selectorClass)},_click:function(e){this.preventClick?e.preventDefault():this.currentTap=t()},_tap:function(e){var s=t(e.target).closest("li");return s.hasClass(this.settings.selectorClass)?s.get(0)===this.currentTap.get(0)?void(this.preventClick=!1):(this.preventClick=!0,this.currentTap=s,void e.stopPropagation()):void(this.preventClick=!1)},_destroy:function(){t(this.element).off()},reset:function(){this.currentTap=t()}}),t.fn[o]=function(e){var s,a=arguments;return e===i||"object"==typeof e?this.each(function(){t.data(this,o)||t.data(this,o,new n(this,e))}):"string"==typeof e&&"_"!==e[0]&&"init"!==e?(this.each(function(){var i=t.data(this,o),r="destroy"===e?"_destroy":e;i instanceof n&&"function"==typeof i[r]&&(s=i[r].apply(i,Array.prototype.slice.call(a,1))),"destroy"===e&&t.data(this,o,null)}),s!==i?s:this):void 0}}(jQuery,window,document); -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | /*eslint-env node*/ 2 | 'use strict'; 3 | 4 | var gulp = require('gulp'), 5 | sass = require('gulp-sass'), 6 | rename = require('gulp-rename'), 7 | prefixer = require('gulp-autoprefixer'), 8 | uglify = require('gulp-uglify'), 9 | browserSync = require('browser-sync').create(), 10 | 11 | input = { 12 | sass: [ 13 | 'src/**/*.scss' 14 | ] 15 | }; 16 | 17 | gulp.task('default', ['watch']); 18 | 19 | gulp.task('build', function () { 20 | gulp.src('src/js/jquery.dcd.doubletaptogo.js') 21 | .pipe(uglify({ 22 | preserveComments: 'license' 23 | })) 24 | .pipe(rename({ 25 | suffix: '.min' 26 | })) 27 | .pipe(gulp.dest('dist')); 28 | 29 | gulp.src('src/js/jquery.dcd.doubletaptogo.js').pipe(gulp.dest('dist')); 30 | }); 31 | 32 | gulp.task('css', function () { 33 | gulp.src(input.sass) 34 | .pipe(sass({outputStyle: 'compressed'})) 35 | .pipe(prefixer('last 2 version')) 36 | .pipe(gulp.dest(function (file) { 37 | return file.base; 38 | })); 39 | }); 40 | 41 | gulp.task('watch', ['prepare', 'serve'], function () { 42 | gulp.watch(input.sass, ['css']); 43 | }); 44 | 45 | gulp.task('serve', function () { 46 | browserSync.init( 47 | { 48 | notify: false, 49 | logLevel: 'info', 50 | logConnections: false, 51 | logFileChanges: false, 52 | injectChanges: true, 53 | files: ['./**/*.{html,htm,css,js}'], 54 | watchOptions: { 55 | ignored: 'node_modules' 56 | }, 57 | server: { 58 | baseDir: './src/' 59 | } 60 | } 61 | ); 62 | }); 63 | 64 | gulp.task('prepare', ['css'], function () { 65 | gulp.src('node_modules/jquery/dist/jquery.min.js') 66 | .pipe(gulp.dest('src/lib/')); 67 | }); 68 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-doubletaptogo", 3 | "version": "3.0.2", 4 | "main": "dist/jquery.dcd.doubletaptogo.min.js", 5 | "repository": "git@github.com:dachcom-digital/jquery-doubletaptogo.git", 6 | "author": "Marco Rieser ", 7 | "devDependencies": { 8 | "browser-sync": "^2.18.5", 9 | "gulp": "^3.8.10", 10 | "gulp-autoprefixer": "^3.1.1", 11 | "gulp-rename": "^1.2.2", 12 | "gulp-sass": "^3.1.0", 13 | "gulp-uglify": "^2.0.0", 14 | "jquery": "^3.1.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | jQuery DoubleTapToGo Demo 8 | 9 | 10 | 11 | 12 | 57 | 58 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /src/js/jquery.dcd.doubletaptogo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Original Plugin by Osvaldas Valutis, www.osvaldas.info 3 | http://osvaldas.info/drop-down-navigation-responsive-and-touch-friendly 4 | Available for use under the MIT License 5 | */ 6 | /** 7 | * jquery-doubleTapToGo plugin 8 | * Copyright 2017 DACHCOM.DIGITAL AG 9 | * @author Marco Rieser 10 | * @author Volker Andres 11 | * @author Stefan Hagspiel 12 | * @version 3.0.2 13 | * @see https://github.com/dachcom-digital/jquery-doubletaptogo 14 | */ 15 | (function ($, window, document, undefined) { 16 | 'use strict'; 17 | var pluginName = 'doubleTapToGo', 18 | defaults = { 19 | automatic: true, 20 | selectorClass: 'doubletap', 21 | selectorChain: 'li:has(ul)' 22 | }; 23 | 24 | function DoubleTapToGo (element, options) { 25 | this.element = element; 26 | this.settings = $.extend({}, defaults, options); 27 | this._defaults = defaults; 28 | this._name = pluginName; 29 | this.init(); 30 | } 31 | 32 | $.extend(DoubleTapToGo.prototype, { 33 | preventClick: false, 34 | currentTap: $(), 35 | init: function () { 36 | $(this.element) 37 | .on('touchstart', '.' + this.settings.selectorClass, this._tap.bind(this)) 38 | .on('click', '.' + this.settings.selectorClass, this._click.bind(this)) 39 | .on('remove', this._destroy.bind(this)); 40 | 41 | this._addSelectors(); 42 | }, 43 | 44 | _addSelectors: function () { 45 | if (this.settings.automatic !== true) { 46 | return; 47 | } 48 | $(this.element) 49 | .find(this.settings.selectorChain) 50 | .addClass(this.settings.selectorClass); 51 | }, 52 | 53 | _click: function (event) { 54 | if (this.preventClick) { 55 | event.preventDefault(); 56 | } else { 57 | this.currentTap = $(); 58 | } 59 | }, 60 | 61 | _tap: function (event) { 62 | var $target = $(event.target).closest('li'); 63 | if (!$target.hasClass(this.settings.selectorClass)) { 64 | this.preventClick = false; 65 | return; 66 | } 67 | if ($target.get(0) === this.currentTap.get(0)) { 68 | this.preventClick = false; 69 | return; 70 | } 71 | this.preventClick = true; 72 | this.currentTap = $target; 73 | event.stopPropagation(); 74 | }, 75 | 76 | _destroy: function () { 77 | $(this.element).off(); 78 | }, 79 | 80 | reset: function () { 81 | this.currentTap = $(); 82 | } 83 | }); 84 | 85 | $.fn[pluginName] = function (options) { 86 | var args = arguments, 87 | returns; 88 | if (options === undefined || typeof options === 'object') { 89 | return this.each(function () { 90 | if (!$.data(this, pluginName)) { 91 | $.data(this, pluginName, new DoubleTapToGo(this, options)); 92 | } 93 | }); 94 | } else if (typeof options === 'string' && options[0] !== '_' && options !== 'init') { 95 | this.each(function () { 96 | var instance = $.data(this, pluginName), 97 | methodName = (options === 'destroy' ? '_destroy' : options); 98 | if (instance instanceof DoubleTapToGo && typeof instance[methodName] === 'function') { 99 | returns = instance[methodName].apply(instance, Array.prototype.slice.call(args, 1)); 100 | } 101 | if (options === 'destroy') { 102 | $.data(this, pluginName, null); 103 | } 104 | }); 105 | return returns !== undefined ? returns : this; 106 | } 107 | }; 108 | })(jQuery, window, document); 109 | -------------------------------------------------------------------------------- /src/raw.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | jQuery DoubleTapToGo Demo 8 | 9 | 10 | 11 |

Automatic

12 | 51 | 52 |

Manual

53 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /src/scss/main.scss: -------------------------------------------------------------------------------- 1 | // Resets 2 | * { 3 | &, 4 | &:before, 5 | &:after { 6 | box-sizing: border-box; 7 | } 8 | } 9 | 10 | html { 11 | font-family: sans-serif; 12 | line-height: 1.15; 13 | -ms-text-size-adjust: 100%; 14 | -webkit-text-size-adjust: 100%; 15 | } 16 | 17 | body { 18 | margin: 0; 19 | font-size: 16px; 20 | } 21 | 22 | h1 { 23 | font-size: 2em; 24 | margin: 0.67em 0; 25 | } 26 | 27 | a { 28 | background-color: transparent; 29 | -webkit-text-decoration-skip: objects; 30 | text-decoration: none; 31 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 32 | 33 | &:active, 34 | &:hover { 35 | outline-width: 0; 36 | } 37 | } 38 | 39 | ul { 40 | margin: 0; 41 | padding: 0; 42 | list-style-type: none; 43 | } 44 | 45 | .clearfix { 46 | &:before, 47 | &:after { 48 | content: " "; 49 | display: table; 50 | } 51 | &:after { 52 | clear: both; 53 | } 54 | } 55 | 56 | // Styles 57 | $blue: #2c3e50; 58 | $white: #fff; 59 | .nav-wrap { 60 | background: $blue; 61 | margin-bottom: 150px; 62 | } 63 | 64 | .title { 65 | float: right; 66 | line-height: 59px; 67 | color: $white; 68 | margin-right: 10px; 69 | } 70 | 71 | nav { 72 | float: left; 73 | 74 | > ul { 75 | max-width: 1164px; 76 | padding: 0 10px; 77 | > li { 78 | float: left; 79 | position: relative; 80 | 81 | > span, 82 | > a, 83 | > a:link, 84 | > a:visited { 85 | display: block; 86 | line-height: 1.2; 87 | padding: 20px; 88 | color: $white; 89 | } 90 | 91 | &:hover > a, 92 | &:hover > span, 93 | > a:hover, 94 | > span:hover, 95 | > a:active, 96 | > a:focus { 97 | background: transparentize($white, 0.9); 98 | } 99 | 100 | &.hassub { 101 | > span, 102 | > a { 103 | padding-right: 35px; 104 | } 105 | &:after { 106 | content: ''; 107 | color: $white; 108 | position: absolute; 109 | top: 50%; 110 | right: 10px; 111 | transform: translate(0, -50%); 112 | width: 0; 113 | height: 0; 114 | border-left: 6px solid transparent; 115 | border-right: 6px solid transparent; 116 | border-top: 6px solid $white; 117 | } 118 | } 119 | 120 | &:hover { 121 | > ul { 122 | display: block; 123 | } 124 | } 125 | > ul { 126 | position: absolute; 127 | top: 100%; 128 | left: 0; 129 | background: #fff; 130 | display: none; 131 | border: solid $blue; 132 | border-width: 0 1px 1px 1px; 133 | width: 150px; 134 | padding: 10px 0; 135 | 136 | span, 137 | a, 138 | a:link, 139 | a:visited { 140 | display: block; 141 | line-height: 21px; 142 | padding: 10px 20px; 143 | color: $blue; 144 | } 145 | 146 | > li:hover > a, 147 | > li:hover > span, 148 | span:hover, 149 | a:hover, 150 | a:active, 151 | a:focus { 152 | background: transparentize($blue, 0.9); 153 | } 154 | 155 | li.hassub { 156 | position: relative; 157 | &:after { 158 | content: ''; 159 | color: $white; 160 | position: absolute; 161 | top: 50%; 162 | right: 7px; 163 | transform: translate(0, -50%); 164 | width: 0; 165 | height: 0; 166 | border-bottom: 5px solid transparent; 167 | border-left: 5px solid $blue; 168 | border-top: 5px solid transparent; 169 | } 170 | ul { 171 | position: absolute; 172 | left: 100%; 173 | top: -11px; 174 | background: #fff; 175 | display: none; 176 | border: 1px solid $blue; 177 | width: 150px; 178 | padding: 10px 0; 179 | } 180 | &:hover ul { 181 | display: block; 182 | } 183 | } 184 | } 185 | } 186 | } 187 | } 188 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | accepts@1.3.3, accepts@~1.3.3: 10 | version "1.3.3" 11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 12 | dependencies: 13 | mime-types "~2.1.11" 14 | negotiator "0.6.1" 15 | 16 | acorn-jsx@^3.0.1: 17 | version "3.0.1" 18 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 19 | dependencies: 20 | acorn "^3.0.4" 21 | 22 | acorn-object-spread@^1.0.0: 23 | version "1.0.0" 24 | resolved "https://registry.yarnpkg.com/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz#48ead0f4a8eb16995a17a0db9ffc6acaada4ba68" 25 | dependencies: 26 | acorn "^3.1.0" 27 | 28 | acorn@^3.0.4, acorn@^3.1.0: 29 | version "3.3.0" 30 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 31 | 32 | after@0.8.1: 33 | version "0.8.1" 34 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.1.tgz#ab5d4fb883f596816d3515f8f791c0af486dd627" 35 | 36 | align-text@^0.1.1, align-text@^0.1.3: 37 | version "0.1.4" 38 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 39 | dependencies: 40 | kind-of "^3.0.2" 41 | longest "^1.0.1" 42 | repeat-string "^1.5.2" 43 | 44 | ansi-regex@^2.0.0: 45 | version "2.1.1" 46 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 47 | 48 | ansi-styles@^2.2.1: 49 | version "2.2.1" 50 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 51 | 52 | anymatch@^1.3.0: 53 | version "1.3.0" 54 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 55 | dependencies: 56 | arrify "^1.0.0" 57 | micromatch "^2.1.5" 58 | 59 | aproba@^1.0.3: 60 | version "1.0.4" 61 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 62 | 63 | archy@^1.0.0: 64 | version "1.0.0" 65 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 66 | 67 | are-we-there-yet@~1.1.2: 68 | version "1.1.2" 69 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 70 | dependencies: 71 | delegates "^1.0.0" 72 | readable-stream "^2.0.0 || ^1.1.13" 73 | 74 | arr-diff@^2.0.0: 75 | version "2.0.0" 76 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 77 | dependencies: 78 | arr-flatten "^1.0.1" 79 | 80 | arr-flatten@^1.0.1: 81 | version "1.0.1" 82 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 83 | 84 | array-differ@^1.0.0: 85 | version "1.0.0" 86 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 87 | 88 | array-find-index@^1.0.1: 89 | version "1.0.2" 90 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 91 | 92 | array-uniq@^1.0.2: 93 | version "1.0.3" 94 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 95 | 96 | array-unique@^0.2.1: 97 | version "0.2.1" 98 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 99 | 100 | arraybuffer.slice@0.0.6: 101 | version "0.0.6" 102 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca" 103 | 104 | arrify@^1.0.0: 105 | version "1.0.1" 106 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 107 | 108 | asn1@~0.2.3: 109 | version "0.2.3" 110 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 111 | 112 | assert-plus@^0.2.0: 113 | version "0.2.0" 114 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 115 | 116 | assert-plus@^1.0.0: 117 | version "1.0.0" 118 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 119 | 120 | async-each-series@0.1.1: 121 | version "0.1.1" 122 | resolved "https://registry.yarnpkg.com/async-each-series/-/async-each-series-0.1.1.tgz#7617c1917401fd8ca4a28aadce3dbae98afeb432" 123 | 124 | async-each@^1.0.0: 125 | version "1.0.1" 126 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 127 | 128 | async-foreach@^0.1.3: 129 | version "0.1.3" 130 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" 131 | 132 | async@1.5.2: 133 | version "1.5.2" 134 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 135 | 136 | async@~0.2.6: 137 | version "0.2.10" 138 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 139 | 140 | asynckit@^0.4.0: 141 | version "0.4.0" 142 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 143 | 144 | autoprefixer@^6.0.0: 145 | version "6.6.1" 146 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.6.1.tgz#11a4077abb4b313253ec2f6e1adb91ad84253519" 147 | dependencies: 148 | browserslist "~1.5.1" 149 | caniuse-db "^1.0.30000604" 150 | normalize-range "^0.1.2" 151 | num2fraction "^1.2.2" 152 | postcss "^5.2.8" 153 | postcss-value-parser "^3.2.3" 154 | 155 | aws-sign2@~0.6.0: 156 | version "0.6.0" 157 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 158 | 159 | aws4@^1.2.1: 160 | version "1.5.0" 161 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 162 | 163 | backo2@1.0.2: 164 | version "1.0.2" 165 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 166 | 167 | balanced-match@^0.4.1: 168 | version "0.4.2" 169 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 170 | 171 | base64-arraybuffer@0.1.5: 172 | version "0.1.5" 173 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 174 | 175 | base64id@0.1.0: 176 | version "0.1.0" 177 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-0.1.0.tgz#02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f" 178 | 179 | batch@0.5.3: 180 | version "0.5.3" 181 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 182 | 183 | bcrypt-pbkdf@^1.0.0: 184 | version "1.0.0" 185 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 186 | dependencies: 187 | tweetnacl "^0.14.3" 188 | 189 | beeper@^1.0.0: 190 | version "1.1.1" 191 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 192 | 193 | better-assert@~1.0.0: 194 | version "1.0.2" 195 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 196 | dependencies: 197 | callsite "1.0.0" 198 | 199 | binary-extensions@^1.0.0: 200 | version "1.8.0" 201 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 202 | 203 | blob@0.0.4: 204 | version "0.0.4" 205 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 206 | 207 | block-stream@*: 208 | version "0.0.9" 209 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 210 | dependencies: 211 | inherits "~2.0.0" 212 | 213 | boom@2.x.x: 214 | version "2.10.1" 215 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 216 | dependencies: 217 | hoek "2.x.x" 218 | 219 | brace-expansion@^1.0.0: 220 | version "1.1.6" 221 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 222 | dependencies: 223 | balanced-match "^0.4.1" 224 | concat-map "0.0.1" 225 | 226 | braces@^1.8.2: 227 | version "1.8.5" 228 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 229 | dependencies: 230 | expand-range "^1.8.1" 231 | preserve "^0.2.0" 232 | repeat-element "^1.1.2" 233 | 234 | browser-sync-client@2.4.4: 235 | version "2.4.4" 236 | resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.4.4.tgz#e2a6c27f770e0ad0ffed76964dfb6a971fcf55eb" 237 | dependencies: 238 | etag "^1.7.0" 239 | fresh "^0.3.0" 240 | 241 | browser-sync-ui@0.6.2: 242 | version "0.6.2" 243 | resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-0.6.2.tgz#9e7994004d463e55a024bdd149583b11ad8f87f3" 244 | dependencies: 245 | async-each-series "0.1.1" 246 | connect-history-api-fallback "^1.1.0" 247 | immutable "^3.7.6" 248 | server-destroy "1.0.1" 249 | stream-throttle "^0.1.3" 250 | weinre "^2.0.0-pre-I0Z7U9OV" 251 | 252 | browser-sync@^2.18.5: 253 | version "2.18.6" 254 | resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.18.6.tgz#7b303ea8905eaa20629e6c5d3e820c32ad96bb24" 255 | dependencies: 256 | browser-sync-client "2.4.4" 257 | browser-sync-ui "0.6.2" 258 | bs-recipes "1.3.4" 259 | chokidar "1.6.1" 260 | connect "3.5.0" 261 | dev-ip "^1.0.1" 262 | easy-extender "2.3.2" 263 | eazy-logger "3.0.2" 264 | emitter-steward "^1.0.0" 265 | fs-extra "1.0.0" 266 | http-proxy "1.15.2" 267 | immutable "3.8.1" 268 | localtunnel "1.8.2" 269 | micromatch "2.3.11" 270 | opn "4.0.2" 271 | portscanner "2.1.1" 272 | qs "6.2.1" 273 | resp-modifier "6.0.2" 274 | rx "4.1.0" 275 | serve-index "1.8.0" 276 | serve-static "1.11.1" 277 | server-destroy "1.0.1" 278 | socket.io "1.6.0" 279 | socket.io-client "1.6.0" 280 | ua-parser-js "0.7.12" 281 | yargs "6.4.0" 282 | 283 | browserslist@~1.5.1: 284 | version "1.5.2" 285 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.5.2.tgz#1c82fde0ee8693e6d15c49b7bff209dc06298c56" 286 | dependencies: 287 | caniuse-db "^1.0.30000604" 288 | 289 | bs-recipes@1.3.4: 290 | version "1.3.4" 291 | resolved "https://registry.yarnpkg.com/bs-recipes/-/bs-recipes-1.3.4.tgz#0d2d4d48a718c8c044769fdc4f89592dc8b69585" 292 | 293 | buble@^0.12.0: 294 | version "0.12.5" 295 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.12.5.tgz#c66ffe92f9f4a3c65d3256079b711e2bd0bc5013" 296 | dependencies: 297 | acorn "^3.1.0" 298 | acorn-jsx "^3.0.1" 299 | acorn-object-spread "^1.0.0" 300 | chalk "^1.1.3" 301 | magic-string "^0.14.0" 302 | minimist "^1.2.0" 303 | os-homedir "^1.0.1" 304 | 305 | bubleify@^0.5.1: 306 | version "0.5.1" 307 | resolved "https://registry.yarnpkg.com/bubleify/-/bubleify-0.5.1.tgz#f65c47cee31b80cad8b9e747bbe187d7fe51e927" 308 | dependencies: 309 | buble "^0.12.0" 310 | object-assign "^4.0.1" 311 | 312 | buffer-shims@^1.0.0: 313 | version "1.0.0" 314 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 315 | 316 | builtin-modules@^1.0.0: 317 | version "1.1.1" 318 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 319 | 320 | callsite@1.0.0: 321 | version "1.0.0" 322 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 323 | 324 | camelcase-keys@^2.0.0: 325 | version "2.1.0" 326 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 327 | dependencies: 328 | camelcase "^2.0.0" 329 | map-obj "^1.0.0" 330 | 331 | camelcase@^1.0.2, camelcase@^1.2.1: 332 | version "1.2.1" 333 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 334 | 335 | camelcase@^2.0.0: 336 | version "2.1.1" 337 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 338 | 339 | camelcase@^3.0.0: 340 | version "3.0.0" 341 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 342 | 343 | caniuse-db@^1.0.30000604: 344 | version "1.0.30000613" 345 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000613.tgz#639133b7a5380c1416f9701d23d54d093dd68299" 346 | 347 | caseless@~0.11.0: 348 | version "0.11.0" 349 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 350 | 351 | center-align@^0.1.1: 352 | version "0.1.3" 353 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 354 | dependencies: 355 | align-text "^0.1.3" 356 | lazy-cache "^1.0.3" 357 | 358 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 359 | version "1.1.3" 360 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 361 | dependencies: 362 | ansi-styles "^2.2.1" 363 | escape-string-regexp "^1.0.2" 364 | has-ansi "^2.0.0" 365 | strip-ansi "^3.0.0" 366 | supports-color "^2.0.0" 367 | 368 | chokidar@1.6.1: 369 | version "1.6.1" 370 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 371 | dependencies: 372 | anymatch "^1.3.0" 373 | async-each "^1.0.0" 374 | glob-parent "^2.0.0" 375 | inherits "^2.0.1" 376 | is-binary-path "^1.0.0" 377 | is-glob "^2.0.0" 378 | path-is-absolute "^1.0.0" 379 | readdirp "^2.0.0" 380 | optionalDependencies: 381 | fsevents "^1.0.0" 382 | 383 | cliui@^2.1.0: 384 | version "2.1.0" 385 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 386 | dependencies: 387 | center-align "^0.1.1" 388 | right-align "^0.1.1" 389 | wordwrap "0.0.2" 390 | 391 | cliui@^3.0.3, cliui@^3.2.0: 392 | version "3.2.0" 393 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 394 | dependencies: 395 | string-width "^1.0.1" 396 | strip-ansi "^3.0.1" 397 | wrap-ansi "^2.0.0" 398 | 399 | clone-stats@^0.0.1: 400 | version "0.0.1" 401 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 402 | 403 | clone@^0.2.0: 404 | version "0.2.0" 405 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 406 | 407 | clone@^1.0.0, clone@^1.0.2: 408 | version "1.0.2" 409 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 410 | 411 | code-point-at@^1.0.0: 412 | version "1.1.0" 413 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 414 | 415 | combined-stream@^1.0.5, combined-stream@~1.0.5: 416 | version "1.0.5" 417 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 418 | dependencies: 419 | delayed-stream "~1.0.0" 420 | 421 | commander@^2.2.0, commander@^2.9.0: 422 | version "2.9.0" 423 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 424 | dependencies: 425 | graceful-readlink ">= 1.0.0" 426 | 427 | component-bind@1.0.0: 428 | version "1.0.0" 429 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 430 | 431 | component-emitter@1.1.2: 432 | version "1.1.2" 433 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3" 434 | 435 | component-emitter@1.2.1: 436 | version "1.2.1" 437 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 438 | 439 | component-inherit@0.0.3: 440 | version "0.0.3" 441 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 442 | 443 | concat-map@0.0.1: 444 | version "0.0.1" 445 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 446 | 447 | connect-history-api-fallback@^1.1.0: 448 | version "1.3.0" 449 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" 450 | 451 | connect@1.x: 452 | version "1.9.2" 453 | resolved "https://registry.yarnpkg.com/connect/-/connect-1.9.2.tgz#42880a22e9438ae59a8add74e437f58ae8e52807" 454 | dependencies: 455 | formidable "1.0.x" 456 | mime ">= 0.0.1" 457 | qs ">= 0.4.0" 458 | 459 | connect@3.5.0: 460 | version "3.5.0" 461 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.5.0.tgz#b357525a0b4c1f50599cd983e1d9efeea9677198" 462 | dependencies: 463 | debug "~2.2.0" 464 | finalhandler "0.5.0" 465 | parseurl "~1.3.1" 466 | utils-merge "1.0.0" 467 | 468 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 469 | version "1.1.0" 470 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 471 | 472 | cookie@0.3.1: 473 | version "0.3.1" 474 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 475 | 476 | core-util-is@~1.0.0: 477 | version "1.0.2" 478 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 479 | 480 | cross-spawn@^3.0.0: 481 | version "3.0.1" 482 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" 483 | dependencies: 484 | lru-cache "^4.0.1" 485 | which "^1.2.9" 486 | 487 | cryptiles@2.x.x: 488 | version "2.0.5" 489 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 490 | dependencies: 491 | boom "2.x.x" 492 | 493 | currently-unhandled@^0.4.1: 494 | version "0.4.1" 495 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 496 | dependencies: 497 | array-find-index "^1.0.1" 498 | 499 | dashdash@^1.12.0: 500 | version "1.14.1" 501 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 502 | dependencies: 503 | assert-plus "^1.0.0" 504 | 505 | dateformat@^2.0.0: 506 | version "2.0.0" 507 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 508 | 509 | debug@2.2.0, debug@^2.2.0, debug@~2.2.0: 510 | version "2.2.0" 511 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 512 | dependencies: 513 | ms "0.7.1" 514 | 515 | debug@2.3.3: 516 | version "2.3.3" 517 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" 518 | dependencies: 519 | ms "0.7.2" 520 | 521 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 522 | version "1.2.0" 523 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 524 | 525 | deep-extend@~0.4.0: 526 | version "0.4.1" 527 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 528 | 529 | defaults@^1.0.0: 530 | version "1.0.3" 531 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 532 | dependencies: 533 | clone "^1.0.2" 534 | 535 | delayed-stream@~1.0.0: 536 | version "1.0.0" 537 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 538 | 539 | delegates@^1.0.0: 540 | version "1.0.0" 541 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 542 | 543 | depd@~1.1.0: 544 | version "1.1.0" 545 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 546 | 547 | deprecated@^0.0.1: 548 | version "0.0.1" 549 | resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" 550 | 551 | destroy@~1.0.4: 552 | version "1.0.4" 553 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 554 | 555 | detect-file@^0.1.0: 556 | version "0.1.0" 557 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 558 | dependencies: 559 | fs-exists-sync "^0.1.0" 560 | 561 | dev-ip@^1.0.1: 562 | version "1.0.1" 563 | resolved "https://registry.yarnpkg.com/dev-ip/-/dev-ip-1.0.1.tgz#a76a3ed1855be7a012bb8ac16cb80f3c00dc28f0" 564 | 565 | duplexer2@0.0.2: 566 | version "0.0.2" 567 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 568 | dependencies: 569 | readable-stream "~1.1.9" 570 | 571 | easy-extender@2.3.2: 572 | version "2.3.2" 573 | resolved "https://registry.yarnpkg.com/easy-extender/-/easy-extender-2.3.2.tgz#3d3248febe2b159607316d8f9cf491c16648221d" 574 | dependencies: 575 | lodash "^3.10.1" 576 | 577 | eazy-logger@3.0.2: 578 | version "3.0.2" 579 | resolved "https://registry.yarnpkg.com/eazy-logger/-/eazy-logger-3.0.2.tgz#a325aa5e53d13a2225889b2ac4113b2b9636f4fc" 580 | dependencies: 581 | tfunk "^3.0.1" 582 | 583 | ecc-jsbn@~0.1.1: 584 | version "0.1.1" 585 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 586 | dependencies: 587 | jsbn "~0.1.0" 588 | 589 | ee-first@1.1.1: 590 | version "1.1.1" 591 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 592 | 593 | emitter-steward@^1.0.0: 594 | version "1.0.0" 595 | resolved "https://registry.yarnpkg.com/emitter-steward/-/emitter-steward-1.0.0.tgz#f3411ade9758a7565df848b2da0cbbd1b46cbd64" 596 | 597 | encodeurl@~1.0.1: 598 | version "1.0.1" 599 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 600 | 601 | end-of-stream@~0.1.5: 602 | version "0.1.5" 603 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" 604 | dependencies: 605 | once "~1.3.0" 606 | 607 | engine.io-client@1.8.0: 608 | version "1.8.0" 609 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.0.tgz#7b730e4127414087596d9be3c88d2bc5fdb6cf5c" 610 | dependencies: 611 | component-emitter "1.2.1" 612 | component-inherit "0.0.3" 613 | debug "2.3.3" 614 | engine.io-parser "1.3.1" 615 | has-cors "1.1.0" 616 | indexof "0.0.1" 617 | parsejson "0.0.3" 618 | parseqs "0.0.5" 619 | parseuri "0.0.5" 620 | ws "1.1.1" 621 | xmlhttprequest-ssl "1.5.3" 622 | yeast "0.1.2" 623 | 624 | engine.io-parser@1.3.1: 625 | version "1.3.1" 626 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.1.tgz#9554f1ae33107d6fbd170ca5466d2f833f6a07cf" 627 | dependencies: 628 | after "0.8.1" 629 | arraybuffer.slice "0.0.6" 630 | base64-arraybuffer "0.1.5" 631 | blob "0.0.4" 632 | has-binary "0.1.6" 633 | wtf-8 "1.0.0" 634 | 635 | engine.io@1.8.0: 636 | version "1.8.0" 637 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.0.tgz#3eeb5f264cb75dbbec1baaea26d61f5a4eace2aa" 638 | dependencies: 639 | accepts "1.3.3" 640 | base64id "0.1.0" 641 | cookie "0.3.1" 642 | debug "2.3.3" 643 | engine.io-parser "1.3.1" 644 | ws "1.1.1" 645 | 646 | error-ex@^1.2.0: 647 | version "1.3.0" 648 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 649 | dependencies: 650 | is-arrayish "^0.2.1" 651 | 652 | escape-html@~1.0.3: 653 | version "1.0.3" 654 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 655 | 656 | escape-string-regexp@^1.0.2: 657 | version "1.0.5" 658 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 659 | 660 | etag@^1.7.0, etag@~1.7.0: 661 | version "1.7.0" 662 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 663 | 664 | eventemitter3@1.x.x: 665 | version "1.2.0" 666 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 667 | 668 | expand-brackets@^0.1.4: 669 | version "0.1.5" 670 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 671 | dependencies: 672 | is-posix-bracket "^0.1.0" 673 | 674 | expand-range@^1.8.1: 675 | version "1.8.2" 676 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 677 | dependencies: 678 | fill-range "^2.1.0" 679 | 680 | expand-tilde@^1.2.1, expand-tilde@^1.2.2: 681 | version "1.2.2" 682 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 683 | dependencies: 684 | os-homedir "^1.0.1" 685 | 686 | express@2.5.x: 687 | version "2.5.11" 688 | resolved "https://registry.yarnpkg.com/express/-/express-2.5.11.tgz#4ce8ea1f3635e69e49f0ebb497b6a4b0a51ce6f0" 689 | dependencies: 690 | connect "1.x" 691 | mime "1.2.4" 692 | mkdirp "0.3.0" 693 | qs "0.4.x" 694 | 695 | extend@^3.0.0, extend@~3.0.0: 696 | version "3.0.0" 697 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 698 | 699 | extglob@^0.3.1: 700 | version "0.3.2" 701 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 702 | dependencies: 703 | is-extglob "^1.0.0" 704 | 705 | extsprintf@1.0.2: 706 | version "1.0.2" 707 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 708 | 709 | fancy-log@^1.1.0: 710 | version "1.3.0" 711 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 712 | dependencies: 713 | chalk "^1.1.1" 714 | time-stamp "^1.0.0" 715 | 716 | filename-regex@^2.0.0: 717 | version "2.0.0" 718 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 719 | 720 | fill-range@^2.1.0: 721 | version "2.2.3" 722 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 723 | dependencies: 724 | is-number "^2.1.0" 725 | isobject "^2.0.0" 726 | randomatic "^1.1.3" 727 | repeat-element "^1.1.2" 728 | repeat-string "^1.5.2" 729 | 730 | finalhandler@0.5.0: 731 | version "0.5.0" 732 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" 733 | dependencies: 734 | debug "~2.2.0" 735 | escape-html "~1.0.3" 736 | on-finished "~2.3.0" 737 | statuses "~1.3.0" 738 | unpipe "~1.0.0" 739 | 740 | find-index@^0.1.1: 741 | version "0.1.1" 742 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 743 | 744 | find-up@^1.0.0: 745 | version "1.1.2" 746 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 747 | dependencies: 748 | path-exists "^2.0.0" 749 | pinkie-promise "^2.0.0" 750 | 751 | findup-sync@^0.4.2: 752 | version "0.4.3" 753 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12" 754 | dependencies: 755 | detect-file "^0.1.0" 756 | is-glob "^2.0.1" 757 | micromatch "^2.3.7" 758 | resolve-dir "^0.1.0" 759 | 760 | fined@^1.0.1: 761 | version "1.0.2" 762 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.0.2.tgz#5b28424b760d7598960b7ef8480dff8ad3660e97" 763 | dependencies: 764 | expand-tilde "^1.2.1" 765 | lodash.assignwith "^4.0.7" 766 | lodash.isempty "^4.2.1" 767 | lodash.isplainobject "^4.0.4" 768 | lodash.isstring "^4.0.1" 769 | lodash.pick "^4.2.1" 770 | parse-filepath "^1.0.1" 771 | 772 | first-chunk-stream@^1.0.0: 773 | version "1.0.0" 774 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 775 | 776 | flagged-respawn@^0.3.2: 777 | version "0.3.2" 778 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-0.3.2.tgz#ff191eddcd7088a675b2610fffc976be9b8074b5" 779 | 780 | for-in@^0.1.5: 781 | version "0.1.6" 782 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 783 | 784 | for-own@^0.1.4: 785 | version "0.1.4" 786 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 787 | dependencies: 788 | for-in "^0.1.5" 789 | 790 | forever-agent@~0.6.1: 791 | version "0.6.1" 792 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 793 | 794 | form-data@~2.1.1: 795 | version "2.1.2" 796 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 797 | dependencies: 798 | asynckit "^0.4.0" 799 | combined-stream "^1.0.5" 800 | mime-types "^2.1.12" 801 | 802 | formidable@1.0.x: 803 | version "1.0.17" 804 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz#ef5491490f9433b705faa77249c99029ae348559" 805 | 806 | fresh@0.3.0, fresh@^0.3.0: 807 | version "0.3.0" 808 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 809 | 810 | fs-exists-sync@^0.1.0: 811 | version "0.1.0" 812 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 813 | 814 | fs-extra@1.0.0: 815 | version "1.0.0" 816 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 817 | dependencies: 818 | graceful-fs "^4.1.2" 819 | jsonfile "^2.1.0" 820 | klaw "^1.0.0" 821 | 822 | fs.realpath@^1.0.0: 823 | version "1.0.0" 824 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 825 | 826 | fsevents@^1.0.0: 827 | version "1.0.17" 828 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 829 | dependencies: 830 | nan "^2.3.0" 831 | node-pre-gyp "^0.6.29" 832 | 833 | fstream-ignore@~1.0.5: 834 | version "1.0.5" 835 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 836 | dependencies: 837 | fstream "^1.0.0" 838 | inherits "2" 839 | minimatch "^3.0.0" 840 | 841 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 842 | version "1.0.10" 843 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 844 | dependencies: 845 | graceful-fs "^4.1.2" 846 | inherits "~2.0.0" 847 | mkdirp ">=0.5 0" 848 | rimraf "2" 849 | 850 | gauge@~2.7.1: 851 | version "2.7.2" 852 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" 853 | dependencies: 854 | aproba "^1.0.3" 855 | console-control-strings "^1.0.0" 856 | has-unicode "^2.0.0" 857 | object-assign "^4.1.0" 858 | signal-exit "^3.0.0" 859 | string-width "^1.0.1" 860 | strip-ansi "^3.0.1" 861 | supports-color "^0.2.0" 862 | wide-align "^1.1.0" 863 | 864 | gaze@^0.5.1: 865 | version "0.5.2" 866 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" 867 | dependencies: 868 | globule "~0.1.0" 869 | 870 | gaze@^1.0.0: 871 | version "1.1.2" 872 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" 873 | dependencies: 874 | globule "^1.0.0" 875 | 876 | generate-function@^2.0.0: 877 | version "2.0.0" 878 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 879 | 880 | generate-object-property@^1.1.0: 881 | version "1.2.0" 882 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 883 | dependencies: 884 | is-property "^1.0.0" 885 | 886 | get-caller-file@^1.0.1: 887 | version "1.0.2" 888 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 889 | 890 | get-stdin@^4.0.1: 891 | version "4.0.1" 892 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 893 | 894 | getpass@^0.1.1: 895 | version "0.1.6" 896 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 897 | dependencies: 898 | assert-plus "^1.0.0" 899 | 900 | glob-base@^0.3.0: 901 | version "0.3.0" 902 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 903 | dependencies: 904 | glob-parent "^2.0.0" 905 | is-glob "^2.0.0" 906 | 907 | glob-parent@^2.0.0: 908 | version "2.0.0" 909 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 910 | dependencies: 911 | is-glob "^2.0.0" 912 | 913 | glob-stream@^3.1.5: 914 | version "3.1.18" 915 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" 916 | dependencies: 917 | glob "^4.3.1" 918 | glob2base "^0.0.12" 919 | minimatch "^2.0.1" 920 | ordered-read-streams "^0.1.0" 921 | through2 "^0.6.1" 922 | unique-stream "^1.0.0" 923 | 924 | glob-watcher@^0.0.6: 925 | version "0.0.6" 926 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" 927 | dependencies: 928 | gaze "^0.5.1" 929 | 930 | glob2base@^0.0.12: 931 | version "0.0.12" 932 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 933 | dependencies: 934 | find-index "^0.1.1" 935 | 936 | glob@^4.3.1: 937 | version "4.5.3" 938 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" 939 | dependencies: 940 | inflight "^1.0.4" 941 | inherits "2" 942 | minimatch "^2.0.1" 943 | once "^1.3.0" 944 | 945 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1: 946 | version "7.1.1" 947 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 948 | dependencies: 949 | fs.realpath "^1.0.0" 950 | inflight "^1.0.4" 951 | inherits "2" 952 | minimatch "^3.0.2" 953 | once "^1.3.0" 954 | path-is-absolute "^1.0.0" 955 | 956 | glob@~3.1.21: 957 | version "3.1.21" 958 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" 959 | dependencies: 960 | graceful-fs "~1.2.0" 961 | inherits "1" 962 | minimatch "~0.2.11" 963 | 964 | global-modules@^0.2.3: 965 | version "0.2.3" 966 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 967 | dependencies: 968 | global-prefix "^0.1.4" 969 | is-windows "^0.2.0" 970 | 971 | global-prefix@^0.1.4: 972 | version "0.1.5" 973 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 974 | dependencies: 975 | homedir-polyfill "^1.0.0" 976 | ini "^1.3.4" 977 | is-windows "^0.2.0" 978 | which "^1.2.12" 979 | 980 | globule@^1.0.0: 981 | version "1.1.0" 982 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.1.0.tgz#c49352e4dc183d85893ee825385eb994bb6df45f" 983 | dependencies: 984 | glob "~7.1.1" 985 | lodash "~4.16.4" 986 | minimatch "~3.0.2" 987 | 988 | globule@~0.1.0: 989 | version "0.1.0" 990 | resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" 991 | dependencies: 992 | glob "~3.1.21" 993 | lodash "~1.0.1" 994 | minimatch "~0.2.11" 995 | 996 | glogg@^1.0.0: 997 | version "1.0.0" 998 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 999 | dependencies: 1000 | sparkles "^1.0.0" 1001 | 1002 | graceful-fs@^3.0.0: 1003 | version "3.0.11" 1004 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" 1005 | dependencies: 1006 | natives "^1.1.0" 1007 | 1008 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1009 | version "4.1.11" 1010 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1011 | 1012 | graceful-fs@~1.2.0: 1013 | version "1.2.3" 1014 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 1015 | 1016 | "graceful-readlink@>= 1.0.0": 1017 | version "1.0.1" 1018 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1019 | 1020 | gulp-autoprefixer@^3.1.1: 1021 | version "3.1.1" 1022 | resolved "https://registry.yarnpkg.com/gulp-autoprefixer/-/gulp-autoprefixer-3.1.1.tgz#75230051cd0d171343d783b7e9b5d1120eeef9b0" 1023 | dependencies: 1024 | autoprefixer "^6.0.0" 1025 | gulp-util "^3.0.0" 1026 | postcss "^5.0.4" 1027 | through2 "^2.0.0" 1028 | vinyl-sourcemaps-apply "^0.2.0" 1029 | 1030 | gulp-rename@^1.2.2: 1031 | version "1.2.2" 1032 | resolved "https://registry.yarnpkg.com/gulp-rename/-/gulp-rename-1.2.2.tgz#3ad4428763f05e2764dec1c67d868db275687817" 1033 | 1034 | gulp-sass@^3.1.0: 1035 | version "3.1.0" 1036 | resolved "https://registry.yarnpkg.com/gulp-sass/-/gulp-sass-3.1.0.tgz#53dc4b68a1f5ddfe4424ab4c247655269a8b74b7" 1037 | dependencies: 1038 | gulp-util "^3.0" 1039 | lodash.clonedeep "^4.3.2" 1040 | node-sass "^4.2.0" 1041 | through2 "^2.0.0" 1042 | vinyl-sourcemaps-apply "^0.2.0" 1043 | 1044 | gulp-uglify@^2.0.0: 1045 | version "2.0.0" 1046 | resolved "https://registry.yarnpkg.com/gulp-uglify/-/gulp-uglify-2.0.0.tgz#cbe4aae4fe0b6bdd760335bc46f200fff699c4af" 1047 | dependencies: 1048 | gulplog "^1.0.0" 1049 | has-gulplog "^0.1.0" 1050 | lodash "^4.13.1" 1051 | make-error-cause "^1.1.1" 1052 | through2 "^2.0.0" 1053 | uglify-js "2.7.0" 1054 | uglify-save-license "^0.4.1" 1055 | vinyl-sourcemaps-apply "^0.2.0" 1056 | 1057 | gulp-util@^3.0, gulp-util@^3.0.0: 1058 | version "3.0.8" 1059 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 1060 | dependencies: 1061 | array-differ "^1.0.0" 1062 | array-uniq "^1.0.2" 1063 | beeper "^1.0.0" 1064 | chalk "^1.0.0" 1065 | dateformat "^2.0.0" 1066 | fancy-log "^1.1.0" 1067 | gulplog "^1.0.0" 1068 | has-gulplog "^0.1.0" 1069 | lodash._reescape "^3.0.0" 1070 | lodash._reevaluate "^3.0.0" 1071 | lodash._reinterpolate "^3.0.0" 1072 | lodash.template "^3.0.0" 1073 | minimist "^1.1.0" 1074 | multipipe "^0.1.2" 1075 | object-assign "^3.0.0" 1076 | replace-ext "0.0.1" 1077 | through2 "^2.0.0" 1078 | vinyl "^0.5.0" 1079 | 1080 | gulp@^3.8.10: 1081 | version "3.9.1" 1082 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4" 1083 | dependencies: 1084 | archy "^1.0.0" 1085 | chalk "^1.0.0" 1086 | deprecated "^0.0.1" 1087 | gulp-util "^3.0.0" 1088 | interpret "^1.0.0" 1089 | liftoff "^2.1.0" 1090 | minimist "^1.1.0" 1091 | orchestrator "^0.3.0" 1092 | pretty-hrtime "^1.0.0" 1093 | semver "^4.1.0" 1094 | tildify "^1.0.0" 1095 | v8flags "^2.0.2" 1096 | vinyl-fs "^0.3.0" 1097 | 1098 | gulplog@^1.0.0: 1099 | version "1.0.0" 1100 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1101 | dependencies: 1102 | glogg "^1.0.0" 1103 | 1104 | har-validator@~2.0.6: 1105 | version "2.0.6" 1106 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1107 | dependencies: 1108 | chalk "^1.1.1" 1109 | commander "^2.9.0" 1110 | is-my-json-valid "^2.12.4" 1111 | pinkie-promise "^2.0.0" 1112 | 1113 | has-ansi@^2.0.0: 1114 | version "2.0.0" 1115 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1116 | dependencies: 1117 | ansi-regex "^2.0.0" 1118 | 1119 | has-binary@0.1.6: 1120 | version "0.1.6" 1121 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.6.tgz#25326f39cfa4f616ad8787894e3af2cfbc7b6e10" 1122 | dependencies: 1123 | isarray "0.0.1" 1124 | 1125 | has-binary@0.1.7: 1126 | version "0.1.7" 1127 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c" 1128 | dependencies: 1129 | isarray "0.0.1" 1130 | 1131 | has-cors@1.1.0: 1132 | version "1.1.0" 1133 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 1134 | 1135 | has-flag@^1.0.0: 1136 | version "1.0.0" 1137 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1138 | 1139 | has-gulplog@^0.1.0: 1140 | version "0.1.0" 1141 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 1142 | dependencies: 1143 | sparkles "^1.0.0" 1144 | 1145 | has-unicode@^2.0.0: 1146 | version "2.0.1" 1147 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1148 | 1149 | hawk@~3.1.3: 1150 | version "3.1.3" 1151 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1152 | dependencies: 1153 | boom "2.x.x" 1154 | cryptiles "2.x.x" 1155 | hoek "2.x.x" 1156 | sntp "1.x.x" 1157 | 1158 | hoek@2.x.x: 1159 | version "2.16.3" 1160 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1161 | 1162 | homedir-polyfill@^1.0.0: 1163 | version "1.0.1" 1164 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1165 | dependencies: 1166 | parse-passwd "^1.0.0" 1167 | 1168 | hosted-git-info@^2.1.4: 1169 | version "2.1.5" 1170 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1171 | 1172 | http-errors@~1.5.0: 1173 | version "1.5.1" 1174 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1175 | dependencies: 1176 | inherits "2.0.3" 1177 | setprototypeof "1.0.2" 1178 | statuses ">= 1.3.1 < 2" 1179 | 1180 | http-proxy@1.15.2: 1181 | version "1.15.2" 1182 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.15.2.tgz#642fdcaffe52d3448d2bda3b0079e9409064da31" 1183 | dependencies: 1184 | eventemitter3 "1.x.x" 1185 | requires-port "1.x.x" 1186 | 1187 | http-signature@~1.1.0: 1188 | version "1.1.1" 1189 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1190 | dependencies: 1191 | assert-plus "^0.2.0" 1192 | jsprim "^1.2.2" 1193 | sshpk "^1.7.0" 1194 | 1195 | immutable@3.8.1, immutable@^3.7.6: 1196 | version "3.8.1" 1197 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2" 1198 | 1199 | in-publish@^2.0.0: 1200 | version "2.0.0" 1201 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" 1202 | 1203 | indent-string@^2.1.0: 1204 | version "2.1.0" 1205 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1206 | dependencies: 1207 | repeating "^2.0.0" 1208 | 1209 | indexof@0.0.1: 1210 | version "0.0.1" 1211 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1212 | 1213 | inflight@^1.0.4: 1214 | version "1.0.6" 1215 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1216 | dependencies: 1217 | once "^1.3.0" 1218 | wrappy "1" 1219 | 1220 | inherits@1: 1221 | version "1.0.2" 1222 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" 1223 | 1224 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1225 | version "2.0.3" 1226 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1227 | 1228 | ini@^1.3.4, ini@~1.3.0: 1229 | version "1.3.4" 1230 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1231 | 1232 | interpret@^1.0.0: 1233 | version "1.0.1" 1234 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1235 | 1236 | invert-kv@^1.0.0: 1237 | version "1.0.0" 1238 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1239 | 1240 | is-absolute@^0.2.3: 1241 | version "0.2.6" 1242 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" 1243 | dependencies: 1244 | is-relative "^0.2.1" 1245 | is-windows "^0.2.0" 1246 | 1247 | is-arrayish@^0.2.1: 1248 | version "0.2.1" 1249 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1250 | 1251 | is-binary-path@^1.0.0: 1252 | version "1.0.1" 1253 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1254 | dependencies: 1255 | binary-extensions "^1.0.0" 1256 | 1257 | is-buffer@^1.0.2: 1258 | version "1.1.4" 1259 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1260 | 1261 | is-builtin-module@^1.0.0: 1262 | version "1.0.0" 1263 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1264 | dependencies: 1265 | builtin-modules "^1.0.0" 1266 | 1267 | is-dotfile@^1.0.0: 1268 | version "1.0.2" 1269 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1270 | 1271 | is-equal-shallow@^0.1.3: 1272 | version "0.1.3" 1273 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1274 | dependencies: 1275 | is-primitive "^2.0.0" 1276 | 1277 | is-extendable@^0.1.1: 1278 | version "0.1.1" 1279 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1280 | 1281 | is-extglob@^1.0.0: 1282 | version "1.0.0" 1283 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1284 | 1285 | is-finite@^1.0.0: 1286 | version "1.0.2" 1287 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1288 | dependencies: 1289 | number-is-nan "^1.0.0" 1290 | 1291 | is-fullwidth-code-point@^1.0.0: 1292 | version "1.0.0" 1293 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1294 | dependencies: 1295 | number-is-nan "^1.0.0" 1296 | 1297 | is-glob@^2.0.0, is-glob@^2.0.1: 1298 | version "2.0.1" 1299 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1300 | dependencies: 1301 | is-extglob "^1.0.0" 1302 | 1303 | is-my-json-valid@^2.12.4: 1304 | version "2.15.0" 1305 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1306 | dependencies: 1307 | generate-function "^2.0.0" 1308 | generate-object-property "^1.1.0" 1309 | jsonpointer "^4.0.0" 1310 | xtend "^4.0.0" 1311 | 1312 | is-number-like@^1.0.3: 1313 | version "1.0.7" 1314 | resolved "https://registry.yarnpkg.com/is-number-like/-/is-number-like-1.0.7.tgz#a38d6b0fd2cd4282449128859eed86c03fd23552" 1315 | dependencies: 1316 | bubleify "^0.5.1" 1317 | lodash.isfinite "^3.3.2" 1318 | 1319 | is-number@^2.0.2, is-number@^2.1.0: 1320 | version "2.1.0" 1321 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1322 | dependencies: 1323 | kind-of "^3.0.2" 1324 | 1325 | is-posix-bracket@^0.1.0: 1326 | version "0.1.1" 1327 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1328 | 1329 | is-primitive@^2.0.0: 1330 | version "2.0.0" 1331 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1332 | 1333 | is-property@^1.0.0: 1334 | version "1.0.2" 1335 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1336 | 1337 | is-relative@^0.2.1: 1338 | version "0.2.1" 1339 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 1340 | dependencies: 1341 | is-unc-path "^0.1.1" 1342 | 1343 | is-typedarray@~1.0.0: 1344 | version "1.0.0" 1345 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1346 | 1347 | is-unc-path@^0.1.1: 1348 | version "0.1.2" 1349 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" 1350 | dependencies: 1351 | unc-path-regex "^0.1.0" 1352 | 1353 | is-utf8@^0.2.0: 1354 | version "0.2.1" 1355 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1356 | 1357 | is-windows@^0.2.0: 1358 | version "0.2.0" 1359 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 1360 | 1361 | isarray@0.0.1: 1362 | version "0.0.1" 1363 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1364 | 1365 | isarray@1.0.0, isarray@~1.0.0: 1366 | version "1.0.0" 1367 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1368 | 1369 | isexe@^1.1.1: 1370 | version "1.1.2" 1371 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 1372 | 1373 | isobject@^2.0.0: 1374 | version "2.1.0" 1375 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1376 | dependencies: 1377 | isarray "1.0.0" 1378 | 1379 | isstream@~0.1.2: 1380 | version "0.1.2" 1381 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1382 | 1383 | jodid25519@^1.0.0: 1384 | version "1.0.2" 1385 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1386 | dependencies: 1387 | jsbn "~0.1.0" 1388 | 1389 | jquery@^3.1.1: 1390 | version "3.1.1" 1391 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.1.1.tgz#347c1c21c7e004115e0a4da32cece041fad3c8a3" 1392 | 1393 | js-base64@^2.1.9: 1394 | version "2.1.9" 1395 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 1396 | 1397 | jsbn@~0.1.0: 1398 | version "0.1.0" 1399 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1400 | 1401 | json-schema@0.2.3: 1402 | version "0.2.3" 1403 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1404 | 1405 | json-stringify-safe@~5.0.1: 1406 | version "5.0.1" 1407 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1408 | 1409 | json3@3.3.2: 1410 | version "3.3.2" 1411 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1412 | 1413 | jsonfile@^2.1.0: 1414 | version "2.4.0" 1415 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1416 | optionalDependencies: 1417 | graceful-fs "^4.1.6" 1418 | 1419 | jsonpointer@^4.0.0: 1420 | version "4.0.1" 1421 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1422 | 1423 | jsprim@^1.2.2: 1424 | version "1.3.1" 1425 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1426 | dependencies: 1427 | extsprintf "1.0.2" 1428 | json-schema "0.2.3" 1429 | verror "1.3.6" 1430 | 1431 | kind-of@^3.0.2: 1432 | version "3.1.0" 1433 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1434 | dependencies: 1435 | is-buffer "^1.0.2" 1436 | 1437 | klaw@^1.0.0: 1438 | version "1.3.1" 1439 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1440 | optionalDependencies: 1441 | graceful-fs "^4.1.9" 1442 | 1443 | lazy-cache@^1.0.3: 1444 | version "1.0.4" 1445 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1446 | 1447 | lcid@^1.0.0: 1448 | version "1.0.0" 1449 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1450 | dependencies: 1451 | invert-kv "^1.0.0" 1452 | 1453 | liftoff@^2.1.0: 1454 | version "2.3.0" 1455 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385" 1456 | dependencies: 1457 | extend "^3.0.0" 1458 | findup-sync "^0.4.2" 1459 | fined "^1.0.1" 1460 | flagged-respawn "^0.3.2" 1461 | lodash.isplainobject "^4.0.4" 1462 | lodash.isstring "^4.0.1" 1463 | lodash.mapvalues "^4.4.0" 1464 | rechoir "^0.6.2" 1465 | resolve "^1.1.7" 1466 | 1467 | limiter@^1.0.5: 1468 | version "1.1.0" 1469 | resolved "https://registry.yarnpkg.com/limiter/-/limiter-1.1.0.tgz#6e2bd12ca3fcdaa11f224e2e53c896df3f08d913" 1470 | 1471 | load-json-file@^1.0.0: 1472 | version "1.1.0" 1473 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1474 | dependencies: 1475 | graceful-fs "^4.1.2" 1476 | parse-json "^2.2.0" 1477 | pify "^2.0.0" 1478 | pinkie-promise "^2.0.0" 1479 | strip-bom "^2.0.0" 1480 | 1481 | localtunnel@1.8.2: 1482 | version "1.8.2" 1483 | resolved "https://registry.yarnpkg.com/localtunnel/-/localtunnel-1.8.2.tgz#913051e8328b51f75ad8a22ad1f5c5b8c599a359" 1484 | dependencies: 1485 | debug "2.2.0" 1486 | openurl "1.1.0" 1487 | request "2.78.0" 1488 | yargs "3.29.0" 1489 | 1490 | lodash._basecopy@^3.0.0: 1491 | version "3.0.1" 1492 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1493 | 1494 | lodash._basetostring@^3.0.0: 1495 | version "3.0.1" 1496 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1497 | 1498 | lodash._basevalues@^3.0.0: 1499 | version "3.0.0" 1500 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1501 | 1502 | lodash._getnative@^3.0.0: 1503 | version "3.9.1" 1504 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1505 | 1506 | lodash._isiterateecall@^3.0.0: 1507 | version "3.0.9" 1508 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1509 | 1510 | lodash._reescape@^3.0.0: 1511 | version "3.0.0" 1512 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1513 | 1514 | lodash._reevaluate@^3.0.0: 1515 | version "3.0.0" 1516 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1517 | 1518 | lodash._reinterpolate@^3.0.0: 1519 | version "3.0.0" 1520 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1521 | 1522 | lodash._root@^3.0.0: 1523 | version "3.0.1" 1524 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1525 | 1526 | lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.2.0: 1527 | version "4.2.0" 1528 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1529 | 1530 | lodash.assignwith@^4.0.7: 1531 | version "4.2.0" 1532 | resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb" 1533 | 1534 | lodash.clonedeep@^4.3.2: 1535 | version "4.5.0" 1536 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1537 | 1538 | lodash.escape@^3.0.0: 1539 | version "3.2.0" 1540 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 1541 | dependencies: 1542 | lodash._root "^3.0.0" 1543 | 1544 | lodash.isarguments@^3.0.0: 1545 | version "3.1.0" 1546 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1547 | 1548 | lodash.isarray@^3.0.0: 1549 | version "3.0.4" 1550 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1551 | 1552 | lodash.isempty@^4.2.1: 1553 | version "4.4.0" 1554 | resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e" 1555 | 1556 | lodash.isfinite@^3.3.2: 1557 | version "3.3.2" 1558 | resolved "https://registry.yarnpkg.com/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz#fb89b65a9a80281833f0b7478b3a5104f898ebb3" 1559 | 1560 | lodash.isplainobject@^4.0.4: 1561 | version "4.0.6" 1562 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 1563 | 1564 | lodash.isstring@^4.0.1: 1565 | version "4.0.1" 1566 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 1567 | 1568 | lodash.keys@^3.0.0: 1569 | version "3.1.2" 1570 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1571 | dependencies: 1572 | lodash._getnative "^3.0.0" 1573 | lodash.isarguments "^3.0.0" 1574 | lodash.isarray "^3.0.0" 1575 | 1576 | lodash.mapvalues@^4.4.0: 1577 | version "4.6.0" 1578 | resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" 1579 | 1580 | lodash.mergewith@^4.6.0: 1581 | version "4.6.0" 1582 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" 1583 | 1584 | lodash.pick@^4.2.1: 1585 | version "4.4.0" 1586 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 1587 | 1588 | lodash.restparam@^3.0.0: 1589 | version "3.6.1" 1590 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1591 | 1592 | lodash.template@^3.0.0: 1593 | version "3.6.2" 1594 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1595 | dependencies: 1596 | lodash._basecopy "^3.0.0" 1597 | lodash._basetostring "^3.0.0" 1598 | lodash._basevalues "^3.0.0" 1599 | lodash._isiterateecall "^3.0.0" 1600 | lodash._reinterpolate "^3.0.0" 1601 | lodash.escape "^3.0.0" 1602 | lodash.keys "^3.0.0" 1603 | lodash.restparam "^3.0.0" 1604 | lodash.templatesettings "^3.0.0" 1605 | 1606 | lodash.templatesettings@^3.0.0: 1607 | version "3.1.1" 1608 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1609 | dependencies: 1610 | lodash._reinterpolate "^3.0.0" 1611 | lodash.escape "^3.0.0" 1612 | 1613 | lodash@^3.10.1: 1614 | version "3.10.1" 1615 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1616 | 1617 | lodash@^4.0.0, lodash@^4.13.1: 1618 | version "4.17.4" 1619 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1620 | 1621 | lodash@~1.0.1: 1622 | version "1.0.2" 1623 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" 1624 | 1625 | lodash@~4.16.4: 1626 | version "4.16.6" 1627 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 1628 | 1629 | longest@^1.0.1: 1630 | version "1.0.1" 1631 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1632 | 1633 | loud-rejection@^1.0.0: 1634 | version "1.6.0" 1635 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1636 | dependencies: 1637 | currently-unhandled "^0.4.1" 1638 | signal-exit "^3.0.0" 1639 | 1640 | lru-cache@2: 1641 | version "2.7.3" 1642 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 1643 | 1644 | lru-cache@^4.0.1: 1645 | version "4.0.2" 1646 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 1647 | dependencies: 1648 | pseudomap "^1.0.1" 1649 | yallist "^2.0.0" 1650 | 1651 | magic-string@^0.14.0: 1652 | version "0.14.0" 1653 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.14.0.tgz#57224aef1701caeed273b17a39a956e72b172462" 1654 | dependencies: 1655 | vlq "^0.2.1" 1656 | 1657 | make-error-cause@^1.1.1: 1658 | version "1.2.2" 1659 | resolved "https://registry.yarnpkg.com/make-error-cause/-/make-error-cause-1.2.2.tgz#df0388fcd0b37816dff0a5fb8108939777dcbc9d" 1660 | dependencies: 1661 | make-error "^1.2.0" 1662 | 1663 | make-error@^1.2.0: 1664 | version "1.2.1" 1665 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.2.1.tgz#9a6dfb4844423b9f145806728d05c6e935670e75" 1666 | 1667 | map-cache@^0.2.0: 1668 | version "0.2.2" 1669 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1670 | 1671 | map-obj@^1.0.0, map-obj@^1.0.1: 1672 | version "1.0.1" 1673 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1674 | 1675 | meow@^3.7.0: 1676 | version "3.7.0" 1677 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1678 | dependencies: 1679 | camelcase-keys "^2.0.0" 1680 | decamelize "^1.1.2" 1681 | loud-rejection "^1.0.0" 1682 | map-obj "^1.0.1" 1683 | minimist "^1.1.3" 1684 | normalize-package-data "^2.3.4" 1685 | object-assign "^4.0.1" 1686 | read-pkg-up "^1.0.1" 1687 | redent "^1.0.0" 1688 | trim-newlines "^1.0.0" 1689 | 1690 | micromatch@2.3.11, micromatch@^2.1.5, micromatch@^2.3.7: 1691 | version "2.3.11" 1692 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1693 | dependencies: 1694 | arr-diff "^2.0.0" 1695 | array-unique "^0.2.1" 1696 | braces "^1.8.2" 1697 | expand-brackets "^0.1.4" 1698 | extglob "^0.3.1" 1699 | filename-regex "^2.0.0" 1700 | is-extglob "^1.0.0" 1701 | is-glob "^2.0.1" 1702 | kind-of "^3.0.2" 1703 | normalize-path "^2.0.1" 1704 | object.omit "^2.0.0" 1705 | parse-glob "^3.0.4" 1706 | regex-cache "^0.4.2" 1707 | 1708 | mime-db@~1.26.0: 1709 | version "1.26.0" 1710 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 1711 | 1712 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.7: 1713 | version "2.1.14" 1714 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 1715 | dependencies: 1716 | mime-db "~1.26.0" 1717 | 1718 | mime@1.2.4: 1719 | version "1.2.4" 1720 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.4.tgz#11b5fdaf29c2509255176b80ad520294f5de92b7" 1721 | 1722 | mime@1.3.4, "mime@>= 0.0.1": 1723 | version "1.3.4" 1724 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 1725 | 1726 | minimatch@^2.0.1: 1727 | version "2.0.10" 1728 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 1729 | dependencies: 1730 | brace-expansion "^1.0.0" 1731 | 1732 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@~3.0.2: 1733 | version "3.0.3" 1734 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1735 | dependencies: 1736 | brace-expansion "^1.0.0" 1737 | 1738 | minimatch@~0.2.11: 1739 | version "0.2.14" 1740 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" 1741 | dependencies: 1742 | lru-cache "2" 1743 | sigmund "~1.0.0" 1744 | 1745 | minimist@0.0.8: 1746 | version "0.0.8" 1747 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1748 | 1749 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 1750 | version "1.2.0" 1751 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1752 | 1753 | mkdirp@0.3.0: 1754 | version "0.3.0" 1755 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 1756 | 1757 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 1758 | version "0.5.1" 1759 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1760 | dependencies: 1761 | minimist "0.0.8" 1762 | 1763 | ms@0.7.1: 1764 | version "0.7.1" 1765 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1766 | 1767 | ms@0.7.2: 1768 | version "0.7.2" 1769 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1770 | 1771 | multipipe@^0.1.2: 1772 | version "0.1.2" 1773 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 1774 | dependencies: 1775 | duplexer2 "0.0.2" 1776 | 1777 | nan@^2.3.0, nan@^2.3.2: 1778 | version "2.5.0" 1779 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.0.tgz#aa8f1e34531d807e9e27755b234b4a6ec0c152a8" 1780 | 1781 | natives@^1.1.0: 1782 | version "1.1.0" 1783 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.0.tgz#e9ff841418a6b2ec7a495e939984f78f163e6e31" 1784 | 1785 | negotiator@0.6.1: 1786 | version "0.6.1" 1787 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1788 | 1789 | node-gyp@^3.3.1: 1790 | version "3.5.0" 1791 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.5.0.tgz#a8fe5e611d079ec16348a3eb960e78e11c85274a" 1792 | dependencies: 1793 | fstream "^1.0.0" 1794 | glob "^7.0.3" 1795 | graceful-fs "^4.1.2" 1796 | minimatch "^3.0.2" 1797 | mkdirp "^0.5.0" 1798 | nopt "2 || 3" 1799 | npmlog "0 || 1 || 2 || 3 || 4" 1800 | osenv "0" 1801 | request "2" 1802 | rimraf "2" 1803 | semver "2.x || 3.x || 4 || 5" 1804 | tar "^2.0.0" 1805 | which "1" 1806 | 1807 | node-pre-gyp@^0.6.29: 1808 | version "0.6.32" 1809 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" 1810 | dependencies: 1811 | mkdirp "~0.5.1" 1812 | nopt "~3.0.6" 1813 | npmlog "^4.0.1" 1814 | rc "~1.1.6" 1815 | request "^2.79.0" 1816 | rimraf "~2.5.4" 1817 | semver "~5.3.0" 1818 | tar "~2.2.1" 1819 | tar-pack "~3.3.0" 1820 | 1821 | node-sass@^4.2.0: 1822 | version "4.3.0" 1823 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.3.0.tgz#d014f64595d77b26af99e9f7a7e74704d9976bda" 1824 | dependencies: 1825 | async-foreach "^0.1.3" 1826 | chalk "^1.1.1" 1827 | cross-spawn "^3.0.0" 1828 | gaze "^1.0.0" 1829 | get-stdin "^4.0.1" 1830 | glob "^7.0.3" 1831 | in-publish "^2.0.0" 1832 | lodash.assign "^4.2.0" 1833 | lodash.clonedeep "^4.3.2" 1834 | lodash.mergewith "^4.6.0" 1835 | meow "^3.7.0" 1836 | mkdirp "^0.5.1" 1837 | nan "^2.3.2" 1838 | node-gyp "^3.3.1" 1839 | npmlog "^4.0.0" 1840 | request "^2.61.0" 1841 | sass-graph "^2.1.1" 1842 | stdout-stream "^1.4.0" 1843 | 1844 | node-uuid@~1.4.7: 1845 | version "1.4.7" 1846 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 1847 | 1848 | "nopt@2 || 3", nopt@3.0.x, nopt@~3.0.6: 1849 | version "3.0.6" 1850 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1851 | dependencies: 1852 | abbrev "1" 1853 | 1854 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1855 | version "2.3.5" 1856 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 1857 | dependencies: 1858 | hosted-git-info "^2.1.4" 1859 | is-builtin-module "^1.0.0" 1860 | semver "2 || 3 || 4 || 5" 1861 | validate-npm-package-license "^3.0.1" 1862 | 1863 | normalize-path@^2.0.1: 1864 | version "2.0.1" 1865 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1866 | 1867 | normalize-range@^0.1.2: 1868 | version "0.1.2" 1869 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1870 | 1871 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.1: 1872 | version "4.0.2" 1873 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1874 | dependencies: 1875 | are-we-there-yet "~1.1.2" 1876 | console-control-strings "~1.1.0" 1877 | gauge "~2.7.1" 1878 | set-blocking "~2.0.0" 1879 | 1880 | num2fraction@^1.2.2: 1881 | version "1.2.2" 1882 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 1883 | 1884 | number-is-nan@^1.0.0: 1885 | version "1.0.1" 1886 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1887 | 1888 | oauth-sign@~0.8.1: 1889 | version "0.8.2" 1890 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1891 | 1892 | object-assign@4.1.0: 1893 | version "4.1.0" 1894 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 1895 | 1896 | object-assign@^3.0.0: 1897 | version "3.0.0" 1898 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1899 | 1900 | object-assign@^4.0.1, object-assign@^4.1.0: 1901 | version "4.1.1" 1902 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1903 | 1904 | object-component@0.0.3: 1905 | version "0.0.3" 1906 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 1907 | 1908 | object-path@^0.9.0: 1909 | version "0.9.2" 1910 | resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.9.2.tgz#0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5" 1911 | 1912 | object.omit@^2.0.0: 1913 | version "2.0.1" 1914 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1915 | dependencies: 1916 | for-own "^0.1.4" 1917 | is-extendable "^0.1.1" 1918 | 1919 | on-finished@~2.3.0: 1920 | version "2.3.0" 1921 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1922 | dependencies: 1923 | ee-first "1.1.1" 1924 | 1925 | once@^1.3.0, once@~1.3.0, once@~1.3.3: 1926 | version "1.3.3" 1927 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1928 | dependencies: 1929 | wrappy "1" 1930 | 1931 | openurl@1.1.0: 1932 | version "1.1.0" 1933 | resolved "https://registry.yarnpkg.com/openurl/-/openurl-1.1.0.tgz#e2f2189d999c04823201f083f0f1a7cd8903187a" 1934 | 1935 | opn@4.0.2: 1936 | version "4.0.2" 1937 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" 1938 | dependencies: 1939 | object-assign "^4.0.1" 1940 | pinkie-promise "^2.0.0" 1941 | 1942 | options@>=0.0.5: 1943 | version "0.0.6" 1944 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 1945 | 1946 | orchestrator@^0.3.0: 1947 | version "0.3.8" 1948 | resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e" 1949 | dependencies: 1950 | end-of-stream "~0.1.5" 1951 | sequencify "~0.0.7" 1952 | stream-consume "~0.1.0" 1953 | 1954 | ordered-read-streams@^0.1.0: 1955 | version "0.1.0" 1956 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" 1957 | 1958 | os-homedir@^1.0.0, os-homedir@^1.0.1: 1959 | version "1.0.2" 1960 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1961 | 1962 | os-locale@^1.4.0: 1963 | version "1.4.0" 1964 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1965 | dependencies: 1966 | lcid "^1.0.0" 1967 | 1968 | os-tmpdir@^1.0.0: 1969 | version "1.0.2" 1970 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1971 | 1972 | osenv@0: 1973 | version "0.1.4" 1974 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1975 | dependencies: 1976 | os-homedir "^1.0.0" 1977 | os-tmpdir "^1.0.0" 1978 | 1979 | parse-filepath@^1.0.1: 1980 | version "1.0.1" 1981 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73" 1982 | dependencies: 1983 | is-absolute "^0.2.3" 1984 | map-cache "^0.2.0" 1985 | path-root "^0.1.1" 1986 | 1987 | parse-glob@^3.0.4: 1988 | version "3.0.4" 1989 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1990 | dependencies: 1991 | glob-base "^0.3.0" 1992 | is-dotfile "^1.0.0" 1993 | is-extglob "^1.0.0" 1994 | is-glob "^2.0.0" 1995 | 1996 | parse-json@^2.2.0: 1997 | version "2.2.0" 1998 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1999 | dependencies: 2000 | error-ex "^1.2.0" 2001 | 2002 | parse-passwd@^1.0.0: 2003 | version "1.0.0" 2004 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2005 | 2006 | parsejson@0.0.3: 2007 | version "0.0.3" 2008 | resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab" 2009 | dependencies: 2010 | better-assert "~1.0.0" 2011 | 2012 | parseqs@0.0.5: 2013 | version "0.0.5" 2014 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 2015 | dependencies: 2016 | better-assert "~1.0.0" 2017 | 2018 | parseuri@0.0.5: 2019 | version "0.0.5" 2020 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 2021 | dependencies: 2022 | better-assert "~1.0.0" 2023 | 2024 | parseurl@~1.3.1: 2025 | version "1.3.1" 2026 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2027 | 2028 | path-exists@^2.0.0: 2029 | version "2.1.0" 2030 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2031 | dependencies: 2032 | pinkie-promise "^2.0.0" 2033 | 2034 | path-is-absolute@^1.0.0: 2035 | version "1.0.1" 2036 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2037 | 2038 | path-root-regex@^0.1.0: 2039 | version "0.1.2" 2040 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 2041 | 2042 | path-root@^0.1.1: 2043 | version "0.1.1" 2044 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 2045 | dependencies: 2046 | path-root-regex "^0.1.0" 2047 | 2048 | path-type@^1.0.0: 2049 | version "1.1.0" 2050 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2051 | dependencies: 2052 | graceful-fs "^4.1.2" 2053 | pify "^2.0.0" 2054 | pinkie-promise "^2.0.0" 2055 | 2056 | pify@^2.0.0: 2057 | version "2.3.0" 2058 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2059 | 2060 | pinkie-promise@^2.0.0: 2061 | version "2.0.1" 2062 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2063 | dependencies: 2064 | pinkie "^2.0.0" 2065 | 2066 | pinkie@^2.0.0: 2067 | version "2.0.4" 2068 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2069 | 2070 | portscanner@2.1.1: 2071 | version "2.1.1" 2072 | resolved "https://registry.yarnpkg.com/portscanner/-/portscanner-2.1.1.tgz#eabb409e4de24950f5a2a516d35ae769343fbb96" 2073 | dependencies: 2074 | async "1.5.2" 2075 | is-number-like "^1.0.3" 2076 | 2077 | postcss-value-parser@^3.2.3: 2078 | version "3.3.0" 2079 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 2080 | 2081 | postcss@^5.0.4, postcss@^5.2.8: 2082 | version "5.2.11" 2083 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.11.tgz#ff29bcd6d2efb98bfe08a022055ec599bbe7b761" 2084 | dependencies: 2085 | chalk "^1.1.3" 2086 | js-base64 "^2.1.9" 2087 | source-map "^0.5.6" 2088 | supports-color "^3.2.3" 2089 | 2090 | preserve@^0.2.0: 2091 | version "0.2.0" 2092 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2093 | 2094 | pretty-hrtime@^1.0.0: 2095 | version "1.0.3" 2096 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2097 | 2098 | process-nextick-args@~1.0.6: 2099 | version "1.0.7" 2100 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2101 | 2102 | pseudomap@^1.0.1: 2103 | version "1.0.2" 2104 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2105 | 2106 | punycode@^1.4.1: 2107 | version "1.4.1" 2108 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2109 | 2110 | qs@0.4.x: 2111 | version "0.4.2" 2112 | resolved "https://registry.yarnpkg.com/qs/-/qs-0.4.2.tgz#3cac4c861e371a8c9c4770ac23cda8de639b8e5f" 2113 | 2114 | qs@6.2.1: 2115 | version "6.2.1" 2116 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 2117 | 2118 | "qs@>= 0.4.0", qs@~6.3.0: 2119 | version "6.3.0" 2120 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2121 | 2122 | randomatic@^1.1.3: 2123 | version "1.1.6" 2124 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2125 | dependencies: 2126 | is-number "^2.0.2" 2127 | kind-of "^3.0.2" 2128 | 2129 | range-parser@~1.2.0: 2130 | version "1.2.0" 2131 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2132 | 2133 | rc@~1.1.6: 2134 | version "1.1.6" 2135 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2136 | dependencies: 2137 | deep-extend "~0.4.0" 2138 | ini "~1.3.0" 2139 | minimist "^1.2.0" 2140 | strip-json-comments "~1.0.4" 2141 | 2142 | read-pkg-up@^1.0.1: 2143 | version "1.0.1" 2144 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2145 | dependencies: 2146 | find-up "^1.0.0" 2147 | read-pkg "^1.0.0" 2148 | 2149 | read-pkg@^1.0.0: 2150 | version "1.1.0" 2151 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2152 | dependencies: 2153 | load-json-file "^1.0.0" 2154 | normalize-package-data "^2.3.2" 2155 | path-type "^1.0.0" 2156 | 2157 | "readable-stream@>=1.0.33-1 <1.1.0-0": 2158 | version "1.0.34" 2159 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2160 | dependencies: 2161 | core-util-is "~1.0.0" 2162 | inherits "~2.0.1" 2163 | isarray "0.0.1" 2164 | string_decoder "~0.10.x" 2165 | 2166 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5: 2167 | version "2.2.2" 2168 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 2169 | dependencies: 2170 | buffer-shims "^1.0.0" 2171 | core-util-is "~1.0.0" 2172 | inherits "~2.0.1" 2173 | isarray "~1.0.0" 2174 | process-nextick-args "~1.0.6" 2175 | string_decoder "~0.10.x" 2176 | util-deprecate "~1.0.1" 2177 | 2178 | readable-stream@~1.1.9: 2179 | version "1.1.14" 2180 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2181 | dependencies: 2182 | core-util-is "~1.0.0" 2183 | inherits "~2.0.1" 2184 | isarray "0.0.1" 2185 | string_decoder "~0.10.x" 2186 | 2187 | readable-stream@~2.1.4: 2188 | version "2.1.5" 2189 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2190 | dependencies: 2191 | buffer-shims "^1.0.0" 2192 | core-util-is "~1.0.0" 2193 | inherits "~2.0.1" 2194 | isarray "~1.0.0" 2195 | process-nextick-args "~1.0.6" 2196 | string_decoder "~0.10.x" 2197 | util-deprecate "~1.0.1" 2198 | 2199 | readdirp@^2.0.0: 2200 | version "2.1.0" 2201 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2202 | dependencies: 2203 | graceful-fs "^4.1.2" 2204 | minimatch "^3.0.2" 2205 | readable-stream "^2.0.2" 2206 | set-immediate-shim "^1.0.1" 2207 | 2208 | rechoir@^0.6.2: 2209 | version "0.6.2" 2210 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2211 | dependencies: 2212 | resolve "^1.1.6" 2213 | 2214 | redent@^1.0.0: 2215 | version "1.0.0" 2216 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2217 | dependencies: 2218 | indent-string "^2.1.0" 2219 | strip-indent "^1.0.1" 2220 | 2221 | regex-cache@^0.4.2: 2222 | version "0.4.3" 2223 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2224 | dependencies: 2225 | is-equal-shallow "^0.1.3" 2226 | is-primitive "^2.0.0" 2227 | 2228 | repeat-element@^1.1.2: 2229 | version "1.1.2" 2230 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2231 | 2232 | repeat-string@^1.5.2: 2233 | version "1.6.1" 2234 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2235 | 2236 | repeating@^2.0.0: 2237 | version "2.0.1" 2238 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2239 | dependencies: 2240 | is-finite "^1.0.0" 2241 | 2242 | replace-ext@0.0.1: 2243 | version "0.0.1" 2244 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 2245 | 2246 | request@2, request@^2.61.0, request@^2.79.0: 2247 | version "2.79.0" 2248 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2249 | dependencies: 2250 | aws-sign2 "~0.6.0" 2251 | aws4 "^1.2.1" 2252 | caseless "~0.11.0" 2253 | combined-stream "~1.0.5" 2254 | extend "~3.0.0" 2255 | forever-agent "~0.6.1" 2256 | form-data "~2.1.1" 2257 | har-validator "~2.0.6" 2258 | hawk "~3.1.3" 2259 | http-signature "~1.1.0" 2260 | is-typedarray "~1.0.0" 2261 | isstream "~0.1.2" 2262 | json-stringify-safe "~5.0.1" 2263 | mime-types "~2.1.7" 2264 | oauth-sign "~0.8.1" 2265 | qs "~6.3.0" 2266 | stringstream "~0.0.4" 2267 | tough-cookie "~2.3.0" 2268 | tunnel-agent "~0.4.1" 2269 | uuid "^3.0.0" 2270 | 2271 | request@2.78.0: 2272 | version "2.78.0" 2273 | resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc" 2274 | dependencies: 2275 | aws-sign2 "~0.6.0" 2276 | aws4 "^1.2.1" 2277 | caseless "~0.11.0" 2278 | combined-stream "~1.0.5" 2279 | extend "~3.0.0" 2280 | forever-agent "~0.6.1" 2281 | form-data "~2.1.1" 2282 | har-validator "~2.0.6" 2283 | hawk "~3.1.3" 2284 | http-signature "~1.1.0" 2285 | is-typedarray "~1.0.0" 2286 | isstream "~0.1.2" 2287 | json-stringify-safe "~5.0.1" 2288 | mime-types "~2.1.7" 2289 | node-uuid "~1.4.7" 2290 | oauth-sign "~0.8.1" 2291 | qs "~6.3.0" 2292 | stringstream "~0.0.4" 2293 | tough-cookie "~2.3.0" 2294 | tunnel-agent "~0.4.1" 2295 | 2296 | require-directory@^2.1.1: 2297 | version "2.1.1" 2298 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2299 | 2300 | require-main-filename@^1.0.1: 2301 | version "1.0.1" 2302 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2303 | 2304 | requires-port@1.x.x: 2305 | version "1.0.0" 2306 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 2307 | 2308 | resolve-dir@^0.1.0: 2309 | version "0.1.1" 2310 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 2311 | dependencies: 2312 | expand-tilde "^1.2.2" 2313 | global-modules "^0.2.3" 2314 | 2315 | resolve@^1.1.6, resolve@^1.1.7: 2316 | version "1.2.0" 2317 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 2318 | 2319 | resp-modifier@6.0.2: 2320 | version "6.0.2" 2321 | resolved "https://registry.yarnpkg.com/resp-modifier/-/resp-modifier-6.0.2.tgz#b124de5c4fbafcba541f48ffa73970f4aa456b4f" 2322 | dependencies: 2323 | debug "^2.2.0" 2324 | minimatch "^3.0.2" 2325 | 2326 | right-align@^0.1.1: 2327 | version "0.1.3" 2328 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2329 | dependencies: 2330 | align-text "^0.1.1" 2331 | 2332 | rimraf@2, rimraf@~2.5.1, rimraf@~2.5.4: 2333 | version "2.5.4" 2334 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2335 | dependencies: 2336 | glob "^7.0.5" 2337 | 2338 | rx@4.1.0: 2339 | version "4.1.0" 2340 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 2341 | 2342 | sass-graph@^2.1.1: 2343 | version "2.1.2" 2344 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.1.2.tgz#965104be23e8103cb7e5f710df65935b317da57b" 2345 | dependencies: 2346 | glob "^7.0.0" 2347 | lodash "^4.0.0" 2348 | yargs "^4.7.1" 2349 | 2350 | "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^4.1.0: 2351 | version "4.3.6" 2352 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 2353 | 2354 | semver@~5.3.0: 2355 | version "5.3.0" 2356 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2357 | 2358 | send@0.14.1: 2359 | version "0.14.1" 2360 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" 2361 | dependencies: 2362 | debug "~2.2.0" 2363 | depd "~1.1.0" 2364 | destroy "~1.0.4" 2365 | encodeurl "~1.0.1" 2366 | escape-html "~1.0.3" 2367 | etag "~1.7.0" 2368 | fresh "0.3.0" 2369 | http-errors "~1.5.0" 2370 | mime "1.3.4" 2371 | ms "0.7.1" 2372 | on-finished "~2.3.0" 2373 | range-parser "~1.2.0" 2374 | statuses "~1.3.0" 2375 | 2376 | sequencify@~0.0.7: 2377 | version "0.0.7" 2378 | resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" 2379 | 2380 | serve-index@1.8.0: 2381 | version "1.8.0" 2382 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" 2383 | dependencies: 2384 | accepts "~1.3.3" 2385 | batch "0.5.3" 2386 | debug "~2.2.0" 2387 | escape-html "~1.0.3" 2388 | http-errors "~1.5.0" 2389 | mime-types "~2.1.11" 2390 | parseurl "~1.3.1" 2391 | 2392 | serve-static@1.11.1: 2393 | version "1.11.1" 2394 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805" 2395 | dependencies: 2396 | encodeurl "~1.0.1" 2397 | escape-html "~1.0.3" 2398 | parseurl "~1.3.1" 2399 | send "0.14.1" 2400 | 2401 | server-destroy@1.0.1: 2402 | version "1.0.1" 2403 | resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd" 2404 | 2405 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2406 | version "2.0.0" 2407 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2408 | 2409 | set-immediate-shim@^1.0.1: 2410 | version "1.0.1" 2411 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2412 | 2413 | setprototypeof@1.0.2: 2414 | version "1.0.2" 2415 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 2416 | 2417 | sigmund@~1.0.0: 2418 | version "1.0.1" 2419 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 2420 | 2421 | signal-exit@^3.0.0: 2422 | version "3.0.2" 2423 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2424 | 2425 | sntp@1.x.x: 2426 | version "1.0.9" 2427 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2428 | dependencies: 2429 | hoek "2.x.x" 2430 | 2431 | socket.io-adapter@0.5.0: 2432 | version "0.5.0" 2433 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b" 2434 | dependencies: 2435 | debug "2.3.3" 2436 | socket.io-parser "2.3.1" 2437 | 2438 | socket.io-client@1.6.0: 2439 | version "1.6.0" 2440 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.6.0.tgz#5b668f4f771304dfeed179064708386fa6717853" 2441 | dependencies: 2442 | backo2 "1.0.2" 2443 | component-bind "1.0.0" 2444 | component-emitter "1.2.1" 2445 | debug "2.3.3" 2446 | engine.io-client "1.8.0" 2447 | has-binary "0.1.7" 2448 | indexof "0.0.1" 2449 | object-component "0.0.3" 2450 | parseuri "0.0.5" 2451 | socket.io-parser "2.3.1" 2452 | to-array "0.1.4" 2453 | 2454 | socket.io-parser@2.3.1: 2455 | version "2.3.1" 2456 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0" 2457 | dependencies: 2458 | component-emitter "1.1.2" 2459 | debug "2.2.0" 2460 | isarray "0.0.1" 2461 | json3 "3.3.2" 2462 | 2463 | socket.io@1.6.0: 2464 | version "1.6.0" 2465 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.6.0.tgz#3e40d932637e6bd923981b25caf7c53e83b6e2e1" 2466 | dependencies: 2467 | debug "2.3.3" 2468 | engine.io "1.8.0" 2469 | has-binary "0.1.7" 2470 | object-assign "4.1.0" 2471 | socket.io-adapter "0.5.0" 2472 | socket.io-client "1.6.0" 2473 | socket.io-parser "2.3.1" 2474 | 2475 | source-map@^0.5.1, source-map@^0.5.6, source-map@~0.5.1: 2476 | version "0.5.6" 2477 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2478 | 2479 | sparkles@^1.0.0: 2480 | version "1.0.0" 2481 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 2482 | 2483 | spdx-correct@~1.0.0: 2484 | version "1.0.2" 2485 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2486 | dependencies: 2487 | spdx-license-ids "^1.0.2" 2488 | 2489 | spdx-expression-parse@~1.0.0: 2490 | version "1.0.4" 2491 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2492 | 2493 | spdx-license-ids@^1.0.2: 2494 | version "1.2.2" 2495 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2496 | 2497 | sshpk@^1.7.0: 2498 | version "1.10.2" 2499 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 2500 | dependencies: 2501 | asn1 "~0.2.3" 2502 | assert-plus "^1.0.0" 2503 | dashdash "^1.12.0" 2504 | getpass "^0.1.1" 2505 | optionalDependencies: 2506 | bcrypt-pbkdf "^1.0.0" 2507 | ecc-jsbn "~0.1.1" 2508 | jodid25519 "^1.0.0" 2509 | jsbn "~0.1.0" 2510 | tweetnacl "~0.14.0" 2511 | 2512 | "statuses@>= 1.3.1 < 2", statuses@~1.3.0: 2513 | version "1.3.1" 2514 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2515 | 2516 | stdout-stream@^1.4.0: 2517 | version "1.4.0" 2518 | resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b" 2519 | dependencies: 2520 | readable-stream "^2.0.1" 2521 | 2522 | stream-consume@~0.1.0: 2523 | version "0.1.0" 2524 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 2525 | 2526 | stream-throttle@^0.1.3: 2527 | version "0.1.3" 2528 | resolved "https://registry.yarnpkg.com/stream-throttle/-/stream-throttle-0.1.3.tgz#add57c8d7cc73a81630d31cd55d3961cfafba9c3" 2529 | dependencies: 2530 | commander "^2.2.0" 2531 | limiter "^1.0.5" 2532 | 2533 | string-width@^1.0.1, string-width@^1.0.2: 2534 | version "1.0.2" 2535 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2536 | dependencies: 2537 | code-point-at "^1.0.0" 2538 | is-fullwidth-code-point "^1.0.0" 2539 | strip-ansi "^3.0.0" 2540 | 2541 | string_decoder@~0.10.x: 2542 | version "0.10.31" 2543 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2544 | 2545 | stringstream@~0.0.4: 2546 | version "0.0.5" 2547 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2548 | 2549 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2550 | version "3.0.1" 2551 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2552 | dependencies: 2553 | ansi-regex "^2.0.0" 2554 | 2555 | strip-bom@^1.0.0: 2556 | version "1.0.0" 2557 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" 2558 | dependencies: 2559 | first-chunk-stream "^1.0.0" 2560 | is-utf8 "^0.2.0" 2561 | 2562 | strip-bom@^2.0.0: 2563 | version "2.0.0" 2564 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2565 | dependencies: 2566 | is-utf8 "^0.2.0" 2567 | 2568 | strip-indent@^1.0.1: 2569 | version "1.0.1" 2570 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2571 | dependencies: 2572 | get-stdin "^4.0.1" 2573 | 2574 | strip-json-comments@~1.0.4: 2575 | version "1.0.4" 2576 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2577 | 2578 | supports-color@^0.2.0: 2579 | version "0.2.0" 2580 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 2581 | 2582 | supports-color@^2.0.0: 2583 | version "2.0.0" 2584 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2585 | 2586 | supports-color@^3.2.3: 2587 | version "3.2.3" 2588 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2589 | dependencies: 2590 | has-flag "^1.0.0" 2591 | 2592 | tar-pack@~3.3.0: 2593 | version "3.3.0" 2594 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 2595 | dependencies: 2596 | debug "~2.2.0" 2597 | fstream "~1.0.10" 2598 | fstream-ignore "~1.0.5" 2599 | once "~1.3.3" 2600 | readable-stream "~2.1.4" 2601 | rimraf "~2.5.1" 2602 | tar "~2.2.1" 2603 | uid-number "~0.0.6" 2604 | 2605 | tar@^2.0.0, tar@~2.2.1: 2606 | version "2.2.1" 2607 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2608 | dependencies: 2609 | block-stream "*" 2610 | fstream "^1.0.2" 2611 | inherits "2" 2612 | 2613 | tfunk@^3.0.1: 2614 | version "3.1.0" 2615 | resolved "https://registry.yarnpkg.com/tfunk/-/tfunk-3.1.0.tgz#38e4414fc64977d87afdaa72facb6d29f82f7b5b" 2616 | dependencies: 2617 | chalk "^1.1.1" 2618 | object-path "^0.9.0" 2619 | 2620 | through2@^0.6.1: 2621 | version "0.6.5" 2622 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 2623 | dependencies: 2624 | readable-stream ">=1.0.33-1 <1.1.0-0" 2625 | xtend ">=4.0.0 <4.1.0-0" 2626 | 2627 | through2@^2.0.0: 2628 | version "2.0.3" 2629 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2630 | dependencies: 2631 | readable-stream "^2.1.5" 2632 | xtend "~4.0.1" 2633 | 2634 | tildify@^1.0.0: 2635 | version "1.2.0" 2636 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" 2637 | dependencies: 2638 | os-homedir "^1.0.0" 2639 | 2640 | time-stamp@^1.0.0: 2641 | version "1.0.1" 2642 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" 2643 | 2644 | to-array@0.1.4: 2645 | version "0.1.4" 2646 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 2647 | 2648 | tough-cookie@~2.3.0: 2649 | version "2.3.2" 2650 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2651 | dependencies: 2652 | punycode "^1.4.1" 2653 | 2654 | trim-newlines@^1.0.0: 2655 | version "1.0.0" 2656 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2657 | 2658 | tunnel-agent@~0.4.1: 2659 | version "0.4.3" 2660 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2661 | 2662 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2663 | version "0.14.5" 2664 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2665 | 2666 | ua-parser-js@0.7.12: 2667 | version "0.7.12" 2668 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 2669 | 2670 | uglify-js@2.7.0: 2671 | version "2.7.0" 2672 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.0.tgz#f021e38ba2ca740860f5bd5c695c2a817345f0ec" 2673 | dependencies: 2674 | async "~0.2.6" 2675 | source-map "~0.5.1" 2676 | uglify-to-browserify "~1.0.0" 2677 | yargs "~3.10.0" 2678 | 2679 | uglify-save-license@^0.4.1: 2680 | version "0.4.1" 2681 | resolved "https://registry.yarnpkg.com/uglify-save-license/-/uglify-save-license-0.4.1.tgz#95726c17cc6fd171c3617e3bf4d8d82aa8c4cce1" 2682 | 2683 | uglify-to-browserify@~1.0.0: 2684 | version "1.0.2" 2685 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2686 | 2687 | uid-number@~0.0.6: 2688 | version "0.0.6" 2689 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2690 | 2691 | ultron@1.0.x: 2692 | version "1.0.2" 2693 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 2694 | 2695 | unc-path-regex@^0.1.0: 2696 | version "0.1.2" 2697 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 2698 | 2699 | underscore@1.7.x: 2700 | version "1.7.0" 2701 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" 2702 | 2703 | unique-stream@^1.0.0: 2704 | version "1.0.0" 2705 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" 2706 | 2707 | unpipe@~1.0.0: 2708 | version "1.0.0" 2709 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2710 | 2711 | user-home@^1.1.1: 2712 | version "1.1.1" 2713 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2714 | 2715 | util-deprecate@~1.0.1: 2716 | version "1.0.2" 2717 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2718 | 2719 | utils-merge@1.0.0: 2720 | version "1.0.0" 2721 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 2722 | 2723 | uuid@^3.0.0: 2724 | version "3.0.1" 2725 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2726 | 2727 | v8flags@^2.0.2: 2728 | version "2.0.11" 2729 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 2730 | dependencies: 2731 | user-home "^1.1.1" 2732 | 2733 | validate-npm-package-license@^3.0.1: 2734 | version "3.0.1" 2735 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2736 | dependencies: 2737 | spdx-correct "~1.0.0" 2738 | spdx-expression-parse "~1.0.0" 2739 | 2740 | verror@1.3.6: 2741 | version "1.3.6" 2742 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2743 | dependencies: 2744 | extsprintf "1.0.2" 2745 | 2746 | vinyl-fs@^0.3.0: 2747 | version "0.3.14" 2748 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" 2749 | dependencies: 2750 | defaults "^1.0.0" 2751 | glob-stream "^3.1.5" 2752 | glob-watcher "^0.0.6" 2753 | graceful-fs "^3.0.0" 2754 | mkdirp "^0.5.0" 2755 | strip-bom "^1.0.0" 2756 | through2 "^0.6.1" 2757 | vinyl "^0.4.0" 2758 | 2759 | vinyl-sourcemaps-apply@^0.2.0: 2760 | version "0.2.1" 2761 | resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" 2762 | dependencies: 2763 | source-map "^0.5.1" 2764 | 2765 | vinyl@^0.4.0: 2766 | version "0.4.6" 2767 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 2768 | dependencies: 2769 | clone "^0.2.0" 2770 | clone-stats "^0.0.1" 2771 | 2772 | vinyl@^0.5.0: 2773 | version "0.5.3" 2774 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 2775 | dependencies: 2776 | clone "^1.0.0" 2777 | clone-stats "^0.0.1" 2778 | replace-ext "0.0.1" 2779 | 2780 | vlq@^0.2.1: 2781 | version "0.2.1" 2782 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.1.tgz#14439d711891e682535467f8587c5630e4222a6c" 2783 | 2784 | weinre@^2.0.0-pre-I0Z7U9OV: 2785 | version "2.0.0-pre-I0Z7U9OV" 2786 | resolved "https://registry.yarnpkg.com/weinre/-/weinre-2.0.0-pre-I0Z7U9OV.tgz#fef8aa223921f7b40bbbbd4c3ed4302f6fd0a813" 2787 | dependencies: 2788 | express "2.5.x" 2789 | nopt "3.0.x" 2790 | underscore "1.7.x" 2791 | 2792 | which-module@^1.0.0: 2793 | version "1.0.0" 2794 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2795 | 2796 | which@1, which@^1.2.12, which@^1.2.9: 2797 | version "1.2.12" 2798 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 2799 | dependencies: 2800 | isexe "^1.1.1" 2801 | 2802 | wide-align@^1.1.0: 2803 | version "1.1.0" 2804 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2805 | dependencies: 2806 | string-width "^1.0.1" 2807 | 2808 | window-size@0.1.0: 2809 | version "0.1.0" 2810 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2811 | 2812 | window-size@^0.1.2: 2813 | version "0.1.4" 2814 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 2815 | 2816 | window-size@^0.2.0: 2817 | version "0.2.0" 2818 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 2819 | 2820 | wordwrap@0.0.2: 2821 | version "0.0.2" 2822 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2823 | 2824 | wrap-ansi@^2.0.0: 2825 | version "2.1.0" 2826 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2827 | dependencies: 2828 | string-width "^1.0.1" 2829 | strip-ansi "^3.0.1" 2830 | 2831 | wrappy@1: 2832 | version "1.0.2" 2833 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2834 | 2835 | ws@1.1.1: 2836 | version "1.1.1" 2837 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.1.tgz#082ddb6c641e85d4bb451f03d52f06eabdb1f018" 2838 | dependencies: 2839 | options ">=0.0.5" 2840 | ultron "1.0.x" 2841 | 2842 | wtf-8@1.0.0: 2843 | version "1.0.0" 2844 | resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a" 2845 | 2846 | xmlhttprequest-ssl@1.5.3: 2847 | version "1.5.3" 2848 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d" 2849 | 2850 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.1: 2851 | version "4.0.1" 2852 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2853 | 2854 | y18n@^3.2.0, y18n@^3.2.1: 2855 | version "3.2.1" 2856 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2857 | 2858 | yallist@^2.0.0: 2859 | version "2.0.0" 2860 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" 2861 | 2862 | yargs-parser@^2.4.1: 2863 | version "2.4.1" 2864 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 2865 | dependencies: 2866 | camelcase "^3.0.0" 2867 | lodash.assign "^4.0.6" 2868 | 2869 | yargs-parser@^4.1.0: 2870 | version "4.2.1" 2871 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 2872 | dependencies: 2873 | camelcase "^3.0.0" 2874 | 2875 | yargs@3.29.0: 2876 | version "3.29.0" 2877 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.29.0.tgz#1aab9660eae79d8b8f675bcaeeab6ee34c2cf69c" 2878 | dependencies: 2879 | camelcase "^1.2.1" 2880 | cliui "^3.0.3" 2881 | decamelize "^1.0.0" 2882 | os-locale "^1.4.0" 2883 | window-size "^0.1.2" 2884 | y18n "^3.2.0" 2885 | 2886 | yargs@6.4.0: 2887 | version "6.4.0" 2888 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.4.0.tgz#816e1a866d5598ccf34e5596ddce22d92da490d4" 2889 | dependencies: 2890 | camelcase "^3.0.0" 2891 | cliui "^3.2.0" 2892 | decamelize "^1.1.1" 2893 | get-caller-file "^1.0.1" 2894 | os-locale "^1.4.0" 2895 | read-pkg-up "^1.0.1" 2896 | require-directory "^2.1.1" 2897 | require-main-filename "^1.0.1" 2898 | set-blocking "^2.0.0" 2899 | string-width "^1.0.2" 2900 | which-module "^1.0.0" 2901 | window-size "^0.2.0" 2902 | y18n "^3.2.1" 2903 | yargs-parser "^4.1.0" 2904 | 2905 | yargs@^4.7.1: 2906 | version "4.8.1" 2907 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 2908 | dependencies: 2909 | cliui "^3.2.0" 2910 | decamelize "^1.1.1" 2911 | get-caller-file "^1.0.1" 2912 | lodash.assign "^4.0.3" 2913 | os-locale "^1.4.0" 2914 | read-pkg-up "^1.0.1" 2915 | require-directory "^2.1.1" 2916 | require-main-filename "^1.0.1" 2917 | set-blocking "^2.0.0" 2918 | string-width "^1.0.1" 2919 | which-module "^1.0.0" 2920 | window-size "^0.2.0" 2921 | y18n "^3.2.1" 2922 | yargs-parser "^2.4.1" 2923 | 2924 | yargs@~3.10.0: 2925 | version "3.10.0" 2926 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2927 | dependencies: 2928 | camelcase "^1.0.2" 2929 | cliui "^2.1.0" 2930 | decamelize "^1.0.0" 2931 | window-size "0.1.0" 2932 | 2933 | yeast@0.1.2: 2934 | version "0.1.2" 2935 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 2936 | --------------------------------------------------------------------------------