├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── index.js ├── package-lock.json ├── package.json ├── test ├── expected │ ├── html │ │ ├── basic-include-output-with-unicode-BOM.html │ │ └── basic-include-output.html │ └── js │ │ ├── basic-include.js │ │ ├── big-dummy-project-file.js │ │ ├── include-path-relative.js │ │ ├── include-path.js │ │ ├── include-trees.js │ │ ├── options-extensions.js │ │ ├── recursive-relative.js │ │ ├── recursive.js │ │ ├── separate-inputs.js │ │ └── whitespace.js ├── fixtures │ ├── html │ │ ├── basic-include-with-unicode-BOM.html │ │ ├── basic-include.html │ │ ├── test-with-unicode-BOM.html │ │ └── test.html │ └── js │ │ ├── basic-include.js │ │ ├── big-dummy-project-file.js │ │ ├── deep_path │ │ ├── b.js │ │ ├── deeper_path │ │ │ └── c.js │ │ └── text.txt │ │ ├── include-fail.js │ │ ├── include-path-relative.js │ │ ├── include-path.js │ │ ├── include-path │ │ ├── a.js │ │ └── deeper │ │ │ └── b.js │ │ ├── include-path2 │ │ ├── another-include-path.js │ │ └── deeper2 │ │ │ └── third-include-path-file.js │ │ ├── include-trees.js │ │ ├── options-extensions.js │ │ ├── recursive-relative.js │ │ ├── recursive.js │ │ ├── recursive │ │ ├── deeper │ │ │ ├── deepest │ │ │ │ └── recursive-three.js │ │ │ ├── recursive-relative-two.js │ │ │ └── recursive-two.js │ │ ├── recursive-one.js │ │ ├── recursive-relative-one.js │ │ └── recursive-relative.js │ │ ├── separate-inputs │ │ ├── a.js │ │ ├── b.js │ │ └── separate-inputs.js │ │ ├── whitespace.js │ │ └── whitespace │ │ └── a.js └── main.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiledal/gulp-include/bc2b43f73078ba22ef78ad87b9a5ad158882d292/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | #### 2.4.1 4 | * Post merge code cleanup by [KenEucker](https://github.com/KenEucker) 5 | * Updated README with Gulp 4 examples 6 | * Added documentation and tests for separateInputs 7 | 8 | #### 2.4.0 9 | * Lots of community fixes graceously assembled and merged by [KenEucker](https://github.com/KenEucker) 10 | * Dependencies update after three years. 11 | * The plugin now supports both gulp 3 and gulp version 4. 12 | * Merged support for separated includes between files, by [PFight](https://github.com/PFight) 13 | 14 | #### 2.3.1 15 | * Isolated include to solve some scoping issues that happens when running multiple includes in parallel. 16 | 17 | #### 2.3.0 18 | * The automatic throwing of errors caused discomfort for some, now simply warns by default, but added the possibility to turn on if necessary 19 | * Added `hardFail` param 20 | * Moved changelog to CHANGELOG.md. Started taking a lot of space in the README 21 | * Added tests for error throwing 22 | 23 | #### 2.2.1 24 | * Now throws an error if glob match is unmet 25 | 26 | #### 2.2.0 27 | * Added `includePaths` option, to allow for controlling where the search is incented. 28 | 29 | #### 2.1.1 30 | * Strip BOMs, by [dhedey](https://github.com/dhedey) 31 | * Improved HTML comment stripping, by [shdwjk](https://github.com/shdwjk) 32 | 33 | #### 2.1.0 34 | * Merged sourcemap support by [vetruvet](https://github.com/vetruvet) 35 | * Merged support for html-comments by [jelmerdemaat](https://github.com/jelmerdemaat) 36 | 37 | #### 2.0.3 38 | * Merged community fix by [shadow1runner](https://github.com/shadow1runner) 39 | 40 | #### 2.0.2 41 | * Updated replace to support specials [Riim](https://github.com/Riim) 42 | 43 | #### 2.0.1 44 | * Fixed an issue with indenting 45 | 46 | #### 2.0.0 47 | * Core rewritten to be slimmer and more comprehensive. 48 | * `require` and `include` no longer work the same. `require` will only include a file that hasn't been included yet. See readme for details. 49 | * Tests have been rewritten based on the old ones, but also to fit the new functionality 50 | * Deprecated `require_tree` and `require_directory` as they serve little purpose. Use globs (`path/to/**/*.xxx`) instead. 51 | 52 | #### 1.1.1 53 | * Merged community fix by [trolev](https://github.com/trolev) 54 | 55 | #### 1.1.0 56 | * Merged feature: Keep leading whitespaces by [maxgalbu](https://github.com/maxgalbu) 57 | 58 | #### 1.0.1 59 | * Fixed issue which caused extensions to be "remembered" if `gulp-include` ran multiple times in a row, resulting in lost includes 60 | 61 | #### 1.0.0 62 | * Merged major refactoring by [scottmas](https://github.com/scottmas) - Many thanks! 63 | * Rewritten core (regex, replacing and file mashing) 64 | * Glob support 65 | * Recursive support 66 | * Respecting indentation of included files 67 | 68 | * Upping version to 1.0.0 - seems fitting after such a large refactor 69 | 70 | #### 0.2.3 71 | * Merged community fixes by [platdesign](https://github.com/platdesign) and [cujojp](https://github.com/cujojp) 72 | 73 | #### 0.2.2 74 | * Updated regex directive to not collide with other requireing plugins, like browserify ([cwacek](https://github.com/cwacek)) 75 | 76 | #### 0.2.1 77 | * Changed replace-method to fix issue when requiring a file that contained special characters ([juanghurtado](https://github.com/juanghurtado)) 78 | 79 | #### 0.2.0 80 | * Added `require_tree`/`include_tree` (Thanks to [juanghurtado](https://github.com/juanghurtado)!) 81 | * Method now takes an `extensions` param for controlling what types of files to include 82 | 83 | #### 0.1.0 84 | * Basic include 85 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # gulp-include [![NPM version][npm-image]][npm-url] ![Travis build][travis-image] 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
Packagegulp-include
DescriptionMakes inclusion of files a breeze. Enables functionality similar to that of snockets / sprockets or other file insertion compilation tools.
Node Version>= 6.0.0
Gulp Version>= 3.0.0
19 | 20 | > Works with gulp 3 and gulp 4 21 | 22 | ## Features 23 | * Concatenate files with full control 24 | * Respects indentation whitespace 25 | * Uses [globs](https://www.npmjs.com/package/glob) for simple path control 26 | * Works recursively (files can include files that can include files, and so on) 27 | 28 | ## Installation 29 | ```shell 30 | npm install gulp-include 31 | ``` 32 | ## Usage 33 | Example `gulpfile.js`: 34 | ```javascript 35 | const gulp = require('gulp') 36 | const include = require('gulp-include') 37 | 38 | exports.scripts = function (done) { 39 | gulp.src('source/js/entry.js') 40 | .pipe(include()) 41 | .on('error', console.log) 42 | .pipe(gulp.dest('dist/js')) 43 | } 44 | 45 | ``` 46 | 47 | ## Include directives 48 | `gulp-include` uses directives similar to `sprockets` or `snockets`. A _directive_ is a comment in your files that `gulp-include` recognizes as a command. 49 | 50 | Example directives: 51 | ```javascript 52 | //=require vendor/jquery.js 53 | //=require vendor/**/*.js 54 | //=include relative/path/to/file.js 55 | //=include ./relative/path/to/file-even-when-includePaths-set.js 56 | ``` 57 | ```css 58 | /*=include relative/path/to/file.css */ 59 | ``` 60 | ```coffee 61 | #=include relative/path/to/file.coffee 62 | ``` 63 | ```html 64 | 65 | ``` 66 | 67 | The contents of the referenced file will replace the file. 68 | 69 | ### `require` vs. `include` 70 | A file that is included with `require` will only be included if it has not been included before. Files included with `include` will _always_ be included. 71 | For instance, let's say you want to include `jquery.js` only once, and before any of your other scripts in the same folder. 72 | ```javascript 73 | //=require vendor/jquery.js 74 | //=require vendor/*.js 75 | ``` 76 | Note: This also works recursively. If for instance, for the example above, if another file in the folder `vendor` is also including `jquery.js` with the `require`-directive it will be ignored. 77 | 78 | ## Options 79 | - `extensions` (optional) 80 | * Takes a `String` or an `Array` of extensions. 81 | eg: `"js"` or `["js", "coffee"]` 82 | * If set, all directives that does not match the extension(s) will be ignored 83 | 84 | 85 | - `includePaths` (optional) 86 | * Takes a `String` or an `Array` of paths. 87 | eg: `__dirname + "/node_modules"` or `[__dirname + "/assets/js", __dirname + "/bower_components"]` 88 | * If set, `gulp-include` will use these folders as base path when searching for files. 89 | * If set, you can still include files relative to the current file by pre-pending includes with `./`. 90 | 91 | 92 | - `hardFail` (optional) 93 | * Boolean, `false` by default 94 | * Set this to `true` if you want `gulp-include` to throw errors if a file does not match 95 | an include directive. 96 | * If set to `false` gulp include will not fail, but display warnings in the console. 97 | 98 | - `separateInputs` (optional) 99 | * Boolean, `false` by default 100 | * Set this to `true` to allow each input file to use `require`-directives independently. 101 | * Useful if you are referencing several paths in `gulp.src` and need them to `require` the same files. 102 | 103 | #### Example options usage: 104 | ```js 105 | gulp.src('src/js/main.js') 106 | .pipe(include({ 107 | extensions: 'js', 108 | hardFail: true, 109 | separateInputs: true, 110 | includePaths: [ 111 | __dirname + '/bower_components', 112 | __dirname + '/src/js' 113 | ] 114 | })) 115 | .pipe(gulp.dest('dist/js')) 116 | ``` 117 | 118 | ## Changelog 119 | For release notes see `CHANGELOG.md`. 120 | 121 | ## Licence 122 | (MIT License) 123 | 124 | Copyright (c) 2014 Hugo Wiledal 125 | 126 | Permission is hereby granted, free of charge, to any person obtaining a copy 127 | of this software and associated documentation files (the "Software"), to deal 128 | in the Software without restriction, including without limitation the rights 129 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 130 | copies of the Software, and to permit persons to whom the Software is 131 | furnished to do so, subject to the following conditions: 132 | 133 | The above copyright notice and this permission notice shall be included in all 134 | copies or substantial portions of the Software. 135 | 136 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 137 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 138 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 139 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 140 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 141 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 142 | SOFTWARE. 143 | 144 | 145 | [travis-image]: https://api.travis-ci.org/wiledal/gulp-include.png?branch=master 146 | 147 | [npm-url]: https://npmjs.org/package/gulp-include 148 | [npm-image]: https://badge.fury.io/js/gulp-include.png 149 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'), 2 | path = require('path'), 3 | es = require('event-stream'), 4 | glob = require('glob'), 5 | PluginError = require('plugin-error'), 6 | colors = require('ansi-colors'), 7 | applySourceMap = require('vinyl-sourcemaps-apply'), 8 | stripBom = require('strip-bom'); 9 | 10 | module.exports = function (params) { 11 | params = params || {}; 12 | 13 | var SourceMapGenerator = require('source-map').SourceMapGenerator; 14 | var SourceMapConsumer = require('source-map').SourceMapConsumer; 15 | 16 | var extensions = null, // The extension to be searched after 17 | globalIncludedFiles = [], // To track what files have been included over all files 18 | includePaths = false, // The paths to be searched 19 | hardFail = false, // Throw error when no match 20 | separateInputs = false; // Process each input file separately when using `require` directive 21 | 22 | // Check for includepaths in the params 23 | if (params.includePaths) { 24 | if (typeof params.includePaths == "string") { 25 | // Arrayify the string 26 | includePaths = [params.includePaths]; 27 | } else if (Array.isArray(params.includePaths)) { 28 | // Set this array to the includepaths 29 | includePaths = params.includePaths; 30 | } 31 | } 32 | 33 | if (params.separateInputs) { 34 | separateInputs = true; 35 | } 36 | 37 | // Toggle error reporting 38 | if (params.hardFail != undefined) { 39 | hardFail = params.hardFail; 40 | } 41 | 42 | if (params.extensions) { 43 | extensions = typeof params.extensions === 'string' ? [params.extensions] : params.extensions; 44 | } 45 | 46 | function include(file, callback) { 47 | var includedFiles = separateInputs ? [] : globalIncludedFiles; 48 | 49 | if (file.isNull()) { 50 | return callback(null, file); 51 | } 52 | 53 | if (file.isStream()) { 54 | throw new PluginError('gulp-include', 'stream not supported'); 55 | } 56 | 57 | if (file.isBuffer()) { 58 | var result = processInclude(String(file.contents), file.path, file.sourceMap, includedFiles); 59 | file.contents = new Buffer(result.content); 60 | 61 | if (file.sourceMap && result.map) { 62 | if (Object.prototype.toString.call(result.map) === '[object String]') { 63 | result.map = JSON.parse(result.map); 64 | } 65 | 66 | // relative-ize the paths in the map 67 | result.map.file = path.relative(file.base, result.map.file); 68 | result.map.sources.forEach(function (source, q) { 69 | result.map.sources[q] = path.relative(file.base, result.map.sources[q]); 70 | }); 71 | 72 | applySourceMap(file, result.map); 73 | } 74 | } 75 | 76 | callback(null, file); 77 | } 78 | 79 | function processInclude(content, filePath, sourceMap, includedFiles) { 80 | var matches = content.match(/^(\s+)?(\/\/|\/\*|\#|\<\!\-\-)(\s+)?=(\s+)?(include|require)(.+$)/mg); 81 | var relativeBasePath = path.dirname(filePath); 82 | 83 | if (!matches) return { 84 | content: content, 85 | map: null 86 | }; 87 | 88 | // Apply sourcemaps 89 | var map = null, 90 | mapSelf, lastMappedLine, currentPos, insertedLines; 91 | if (sourceMap) { 92 | map = new SourceMapGenerator({ 93 | file: unixStylePath(filePath) 94 | }); 95 | lastMappedLine = 1; 96 | currentPos = 0; 97 | insertedLines = 0; 98 | 99 | mapSelf = function (currentLine) { // maps current file between matches and after all matches 100 | var currentOrigLine = currentLine - insertedLines; 101 | 102 | for (var q = (currentLine - lastMappedLine); q > 0; q--) { 103 | map.addMapping({ 104 | generated: { 105 | line: currentLine - q, 106 | column: 0 107 | }, 108 | original: { 109 | line: currentOrigLine - q, 110 | column: 0 111 | }, 112 | source: filePath 113 | }); 114 | } 115 | 116 | lastMappedLine = currentLine; 117 | }; 118 | } 119 | 120 | for (var i = 0; i < matches.length; i++) { 121 | var leadingWhitespaceMatch = matches[i].match(/^\s*/); 122 | var leadingWhitespace = null; 123 | if (leadingWhitespaceMatch) { 124 | leadingWhitespace = leadingWhitespaceMatch[0].replace("\n", ""); 125 | } 126 | 127 | // Remove beginnings, endings and trim. 128 | var includeCommand = matches[i] 129 | .replace(/\s+/g, " ") 130 | .replace(/(\/\/|\/\*|\#|)$/g, "") 132 | .replace(/['"]/g, "") 133 | .trim(); 134 | 135 | var split = includeCommand.split(" "); 136 | 137 | var currentLine; 138 | if (sourceMap) { 139 | // get position of current match and get current line number 140 | currentPos = content.indexOf(matches[i], currentPos); 141 | currentLine = currentPos === -1 ? 0 : content.substr(0, currentPos).match(/^/mg).length; 142 | 143 | // sometimes the line matches the leading \n and sometimes it doesn't. wierd. 144 | // in case it does, increment the current line counter 145 | if (leadingWhitespaceMatch[0][0] == '\n') currentLine++; 146 | 147 | mapSelf(currentLine); 148 | } 149 | 150 | // SEARCHING STARTS HERE 151 | // Split the directive and the path 152 | var includeType = split[0]; 153 | 154 | // Use glob for file searching 155 | var fileMatches = []; 156 | var includePath = ""; 157 | 158 | if (includePaths != false && !isExplicitRelativePath(split[1])) { 159 | // If includepaths are set, search in those folders 160 | for (var y = 0; y < includePaths.length; y++) { 161 | includePath = includePaths[y] + "/" + split[1]; 162 | 163 | var globResults = glob.sync(includePath, { 164 | mark: true 165 | }); 166 | fileMatches = fileMatches.concat(globResults); 167 | } 168 | } else { 169 | // Otherwise search relatively 170 | includePath = relativeBasePath + "/" + removeRelativePathPrefix(split[1]); 171 | var globResults = glob.sync(includePath, { 172 | mark: true 173 | }); 174 | fileMatches = globResults; 175 | } 176 | 177 | if (fileMatches.length < 1) fileNotFoundError(includePath); 178 | 179 | var replaceContent = ''; 180 | for (var y = 0; y < fileMatches.length; y++) { 181 | var globbedFilePath = fileMatches[y]; 182 | 183 | // If directive is of type "require" and file already included, skip to next. 184 | if (includeType == "require" && includedFiles.indexOf(globbedFilePath) > -1) continue; 185 | 186 | // If not in extensions, skip this file 187 | if (!inExtensions(globbedFilePath)) continue; 188 | 189 | // Get file contents and apply recursive include on result 190 | // Unicode byte order marks are stripped from the start of included files 191 | var fileContents = stripBom(fs.readFileSync(globbedFilePath)); 192 | 193 | var result = processInclude(fileContents.toString(), globbedFilePath, sourceMap, includedFiles); 194 | var resultContent = result.content; 195 | 196 | if (sourceMap) { 197 | var lines = resultContent.match(/^/mg).length; //count lines in result 198 | 199 | if (result.map) { // result had a map, merge mappings 200 | if (Object.prototype.toString.call(result.map) === '[object String]') { 201 | result.map = JSON.parse(result.map); 202 | } 203 | 204 | if (result.map.mappings && result.map.mappings.length > 0) { 205 | var resultMap = new SourceMapConsumer(result.map); 206 | resultMap.eachMapping(function (mapping) { 207 | if (!mapping.source) return; 208 | 209 | map.addMapping({ 210 | generated: { 211 | line: mapping.generatedLine + currentLine - 1, 212 | column: mapping.generatedColumn + (leadingWhitespace ? leadingWhitespace.length : 0) 213 | }, 214 | original: { 215 | line: mapping.originalLine, 216 | column: mapping.originalColumn 217 | }, 218 | source: mapping.source, 219 | name: mapping.name 220 | }); 221 | }); 222 | 223 | if (result.map.sourcesContent) { 224 | result.map.sourcesContent.forEach(function (sourceContent, i) { 225 | map.setSourceContent(result.map.sources[i], sourceContent); 226 | }); 227 | } 228 | } 229 | } else { // result was a simple file, map whole file to new location 230 | for (var q = 0; q < lines; q++) { 231 | map.addMapping({ 232 | generated: { 233 | line: currentLine + q, 234 | column: leadingWhitespace ? leadingWhitespace.length : 0 235 | }, 236 | original: { 237 | line: q + 1, 238 | column: 0 239 | }, 240 | source: globbedFilePath 241 | }); 242 | } 243 | 244 | if (sourceMap.sourcesContent) { 245 | map.setSourceContent(globbedFilePath, resultContent); 246 | } 247 | } 248 | 249 | // increment/set map line counters 250 | insertedLines += lines; 251 | currentLine += lines; 252 | lastMappedLine = currentLine; 253 | } 254 | 255 | if (includedFiles.indexOf(globbedFilePath) == -1) includedFiles.push(globbedFilePath); 256 | 257 | // If the last file did not have a line break, and it is not the last file in the matched glob, 258 | // add a line break to the end 259 | if (!resultContent.trim().match(/\n$/) && y != fileMatches.length - 1) { 260 | resultContent += "\n"; 261 | } 262 | 263 | if (leadingWhitespace) resultContent = addLeadingWhitespace(leadingWhitespace, resultContent); 264 | 265 | replaceContent += resultContent; 266 | } 267 | 268 | // REPLACE 269 | if (replaceContent.length) { 270 | // sometimes the line matches the leading \n and sometimes it doesn't. wierd. 271 | // in case it does, preserve that leading \n 272 | if (leadingWhitespaceMatch[0][0] === '\n') { 273 | replaceContent = '\n' + replaceContent; 274 | } 275 | 276 | content = content.replace(matches[i], function () { 277 | return replaceContent 278 | }); 279 | insertedLines--; // adjust because the original line with comment was removed 280 | } 281 | } 282 | 283 | if (sourceMap) { 284 | currentLine = content.match(/^/mg).length + 1; 285 | 286 | mapSelf(currentLine); 287 | } 288 | 289 | return { 290 | content: content, 291 | map: map ? map.toString() : null 292 | }; 293 | } 294 | 295 | function unixStylePath(filePath) { 296 | return filePath.replace(/\\/g, '/'); 297 | } 298 | 299 | function addLeadingWhitespace(whitespace, string) { 300 | return string.split("\n").map(function (line) { 301 | return whitespace + line; 302 | }).join("\n"); 303 | } 304 | 305 | function isExplicitRelativePath(filePath) { 306 | return filePath.indexOf('./') === 0; 307 | } 308 | 309 | function removeRelativePathPrefix(filePath) { 310 | return filePath.replace(/^\.\//, ''); 311 | } 312 | function fileNotFoundError(includePath) { 313 | if (hardFail) { 314 | throw new PluginError('gulp-include', 'No files found matching ' + includePath); 315 | } else { 316 | console.warn( 317 | colors.yellow('WARN: ') + 318 | colors.cyan('gulp-include') + 319 | ' - no files found matching ' + includePath 320 | ); 321 | } 322 | } 323 | 324 | function inExtensions(filePath) { 325 | if (!extensions) return true; 326 | for (var i = 0; i < extensions.length; i++) { 327 | var re = extensions[i] + "$"; 328 | if (filePath.match(re)) return true; 329 | } 330 | return false; 331 | } 332 | 333 | return es.map(include) 334 | }; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gulp-include", 3 | "version": "2.4.1", 4 | "description": "Makes inclusion of files a breeze. Enables functionality similar to that of snockets / sprockets or other file insertion compilation tools.", 5 | "homepage": "http://github.com/wiledal/gulp-include", 6 | "repository": { 7 | "type": "git", 8 | "url": "git://github.com/wiledal/gulp-include.git" 9 | }, 10 | "main": "index.js", 11 | "scripts": { 12 | "test": "mocha" 13 | }, 14 | "keywords": [ 15 | "gulpplugin" 16 | ], 17 | "author": { 18 | "name": "Hugo Wiledal" 19 | }, 20 | "license": "MIT", 21 | "devDependencies": { 22 | "gulp": "^4.0.0", 23 | "gulp-sourcemaps": "^2.6.5", 24 | "mocha": "^6.1.1", 25 | "should": "^13.2.3", 26 | "stream-assert": "^2.0.3" 27 | }, 28 | "dependencies": { 29 | "ansi-colors": "^3.2.4", 30 | "event-stream": "^4.0.1", 31 | "glob": "^7.1.3", 32 | "plugin-error": "^1.0.1", 33 | "source-map": "^0.7.3", 34 | "strip-bom": "^2.0.0", 35 | "vinyl": "^2.2.0", 36 | "vinyl-sourcemaps-apply": "^0.2.1" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /test/expected/html/basic-include-output-with-unicode-BOM.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Test 6 | 7 | 8 |
This is a test
9 | 10 | -------------------------------------------------------------------------------- /test/expected/html/basic-include-output.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Test 6 | 7 | 8 |
This is a test
9 |
This is a test
10 |
This is a test
11 |
This is a test
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/expected/js/basic-include.js: -------------------------------------------------------------------------------- 1 | // basic-include.js 2 | // b.js 3 | // c.js 4 | -------------------------------------------------------------------------------- /test/expected/js/big-dummy-project-file.js: -------------------------------------------------------------------------------- 1 | /* 2 | This is a big dummy project file to test out lots of features of gulp-include 3 | working together in harmony. 4 | */ 5 | 6 | /* 7 | I'm going to be crazy and import some files inline here in a list. 8 | // b.js 9 | // c.js 10 | //=require deep_path/b.js 11 | //=require deep_path/deeper_path/c.js 12 | // b.js 13 | // c.js 14 | //=require deep_path/b.js 15 | //=require deep_path/deeper_path/c.js 16 | // b.js 17 | // c.js 18 | #=require deep_path/b.js 19 | #=require deep_path/deeper_path/c.js 20 | */ 21 | 22 | // This is an inline comment 23 | // Tree inclusion 24 | // b.js 25 | // c.js 26 | -------------------------------------------------------------------------------- /test/expected/js/include-path-relative.js: -------------------------------------------------------------------------------- 1 | // include-path a.js 2 | // another include path file -------------------------------------------------------------------------------- /test/expected/js/include-path.js: -------------------------------------------------------------------------------- 1 | // include-path a.js 2 | // include-path b.js 3 | // another include path file 4 | // third include path file -------------------------------------------------------------------------------- /test/expected/js/include-trees.js: -------------------------------------------------------------------------------- 1 | // include-trees.js 2 | // b.js 3 | // c.js -------------------------------------------------------------------------------- /test/expected/js/options-extensions.js: -------------------------------------------------------------------------------- 1 | // options-extensions.js 2 | //=include deep_path/b.js 3 | /* 4 | Lorem ipsum 5 | /* -------------------------------------------------------------------------------- /test/expected/js/recursive-relative.js: -------------------------------------------------------------------------------- 1 | // Recursive relative inclusion 2 | // include-path a.js 3 | // recursive-relative-one.js 4 | // recursive-relative-two.js 5 | // recursive-three.js 6 | // b.js 7 | // c.js -------------------------------------------------------------------------------- /test/expected/js/recursive.js: -------------------------------------------------------------------------------- 1 | // Recursive inclusion 2 | // recursive-one.js 3 | // b.js 4 | // c.js 5 | // recursive-two.js 6 | // recursive-three.js 7 | 8 | // Above should be b.js and c.js 9 | -------------------------------------------------------------------------------- /test/expected/js/separate-inputs.js: -------------------------------------------------------------------------------- 1 | // this is a.js 2 | // this is b.js -------------------------------------------------------------------------------- /test/expected/js/whitespace.js: -------------------------------------------------------------------------------- 1 | // whitespace.js 2 | // b.js 3 | // c.js 4 | 5 | // 2 spaces over 6 | // 4 spaces over 7 | 8 | // No spaces over 9 | // 8 spaces over 10 | // Should be indented below 11 | // 2 spaces over 12 | // 4 spaces over 13 | 14 | // No spaces over 15 | // 8 spaces over -------------------------------------------------------------------------------- /test/fixtures/html/basic-include-with-unicode-BOM.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Test 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/fixtures/html/basic-include.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Test 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /test/fixtures/html/test-with-unicode-BOM.html: -------------------------------------------------------------------------------- 1 | 
This is a test
-------------------------------------------------------------------------------- /test/fixtures/html/test.html: -------------------------------------------------------------------------------- 1 |
This is a test
-------------------------------------------------------------------------------- /test/fixtures/js/basic-include.js: -------------------------------------------------------------------------------- 1 | // basic-include.js 2 | /*= include deep_path/b.js */ 3 | // = include "deep_path/deeper_path/c.js" 4 | -------------------------------------------------------------------------------- /test/fixtures/js/big-dummy-project-file.js: -------------------------------------------------------------------------------- 1 | /* 2 | This is a big dummy project file to test out lots of features of gulp-include 3 | working together in harmony. 4 | */ 5 | 6 | /* 7 | I'm going to be crazy and import some files inline here in a list. 8 | //=include deep_path/b.js 9 | //=include deep_path/deeper_path/c.js 10 | //=require deep_path/b.js 11 | //=require deep_path/deeper_path/c.js 12 | //=include deep_path/b.js 13 | //=include deep_path/deeper_path/c.js 14 | //=require deep_path/b.js 15 | //=require deep_path/deeper_path/c.js 16 | #=include deep_path/b.js 17 | #=include deep_path/deeper_path/c.js 18 | #=require deep_path/b.js 19 | #=require deep_path/deeper_path/c.js 20 | */ 21 | 22 | // This is an inline comment 23 | // Tree inclusion 24 | //=include deep_path/**/*.js 25 | -------------------------------------------------------------------------------- /test/fixtures/js/deep_path/b.js: -------------------------------------------------------------------------------- 1 | // b.js -------------------------------------------------------------------------------- /test/fixtures/js/deep_path/deeper_path/c.js: -------------------------------------------------------------------------------- 1 | // c.js -------------------------------------------------------------------------------- /test/fixtures/js/deep_path/text.txt: -------------------------------------------------------------------------------- 1 | Lorem ipsum -------------------------------------------------------------------------------- /test/fixtures/js/include-fail.js: -------------------------------------------------------------------------------- 1 | //=include this-path-does-not-exist.js 2 | -------------------------------------------------------------------------------- /test/fixtures/js/include-path-relative.js: -------------------------------------------------------------------------------- 1 | //= include a.js 2 | //= include ./include-path2/another-include-path.js -------------------------------------------------------------------------------- /test/fixtures/js/include-path.js: -------------------------------------------------------------------------------- 1 | //= include a.js 2 | //= include deeper/b.js 3 | //= include another-include-path.js 4 | //= include third-include-path-file.js -------------------------------------------------------------------------------- /test/fixtures/js/include-path/a.js: -------------------------------------------------------------------------------- 1 | // include-path a.js -------------------------------------------------------------------------------- /test/fixtures/js/include-path/deeper/b.js: -------------------------------------------------------------------------------- 1 | // include-path b.js -------------------------------------------------------------------------------- /test/fixtures/js/include-path2/another-include-path.js: -------------------------------------------------------------------------------- 1 | // another include path file -------------------------------------------------------------------------------- /test/fixtures/js/include-path2/deeper2/third-include-path-file.js: -------------------------------------------------------------------------------- 1 | // third include path file -------------------------------------------------------------------------------- /test/fixtures/js/include-trees.js: -------------------------------------------------------------------------------- 1 | // include-trees.js 2 | //=include deep_path/**/*.js -------------------------------------------------------------------------------- /test/fixtures/js/options-extensions.js: -------------------------------------------------------------------------------- 1 | // options-extensions.js 2 | //=include deep_path/b.js 3 | /* 4 | //=include deep_path/text.txt 5 | /* -------------------------------------------------------------------------------- /test/fixtures/js/recursive-relative.js: -------------------------------------------------------------------------------- 1 | // Recursive relative inclusion 2 | //=include a.js 3 | //=include recursive-relative-one.js -------------------------------------------------------------------------------- /test/fixtures/js/recursive.js: -------------------------------------------------------------------------------- 1 | // Recursive inclusion 2 | //=include recursive/recursive-one.js 3 | 4 | // Above should be b.js and c.js 5 | -------------------------------------------------------------------------------- /test/fixtures/js/recursive/deeper/deepest/recursive-three.js: -------------------------------------------------------------------------------- 1 | // recursive-three.js -------------------------------------------------------------------------------- /test/fixtures/js/recursive/deeper/recursive-relative-two.js: -------------------------------------------------------------------------------- 1 | // recursive-relative-two.js 2 | //=include ./deepest/recursive-three.js -------------------------------------------------------------------------------- /test/fixtures/js/recursive/deeper/recursive-two.js: -------------------------------------------------------------------------------- 1 | // recursive-two.js 2 | //=include deepest/recursive-three.js -------------------------------------------------------------------------------- /test/fixtures/js/recursive/recursive-one.js: -------------------------------------------------------------------------------- 1 | // recursive-one.js 2 | //= include ../deep_path/b.js 3 | //= include ../deep_path/deeper_path/c.js 4 | //= include deeper/recursive-two.js -------------------------------------------------------------------------------- /test/fixtures/js/recursive/recursive-relative-one.js: -------------------------------------------------------------------------------- 1 | // recursive-relative-one.js 2 | //= include ./deeper/recursive-relative-two.js 3 | //= include ./../deep_path/b.js 4 | //= include ./../deep_path/deeper_path/c.js -------------------------------------------------------------------------------- /test/fixtures/js/recursive/recursive-relative.js: -------------------------------------------------------------------------------- 1 | // recursive-relative.js 2 | //= include a.js 3 | //= include ./../deep_path/b.js 4 | //= include ./../deep_path/deeper_path/c.js 5 | //= include ./deeper/recursive-relative-two.js -------------------------------------------------------------------------------- /test/fixtures/js/separate-inputs/a.js: -------------------------------------------------------------------------------- 1 | // this is a.js 2 | //=require b.js -------------------------------------------------------------------------------- /test/fixtures/js/separate-inputs/b.js: -------------------------------------------------------------------------------- 1 | // this is b.js -------------------------------------------------------------------------------- /test/fixtures/js/separate-inputs/separate-inputs.js: -------------------------------------------------------------------------------- 1 | //=require a.js -------------------------------------------------------------------------------- /test/fixtures/js/whitespace.js: -------------------------------------------------------------------------------- 1 | // whitespace.js 2 | //= include deep_path/b.js 3 | //= include deep_path/deeper_path/c.js 4 | 5 | //=include whitespace/a.js 6 | // Should be indented below 7 | //=include whitespace/a.js -------------------------------------------------------------------------------- /test/fixtures/js/whitespace/a.js: -------------------------------------------------------------------------------- 1 | // 2 spaces over 2 | // 4 spaces over 3 | 4 | // No spaces over 5 | // 8 spaces over -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- 1 | var should = require("should"), 2 | include = require("../index"), 3 | fs = require("fs"), 4 | vm = require("vm"), 5 | Vinyl = require('vinyl'), 6 | assert = require('stream-assert'), 7 | gulp = require('gulp'), 8 | sourcemaps = require('gulp-sourcemaps'), 9 | path = require("path"); 10 | 11 | 12 | // TEST DESCRIPTIONS 13 | describe("gulp-include", function () { 14 | describe("File including", function () { 15 | it("should replace special comments with file contents", function (done) { 16 | var file = new Vinyl({ 17 | base: "test/fixtures/", 18 | path: "test/fixtures/js/basic-include.js", 19 | contents: fs.readFileSync("test/fixtures/js/basic-include.js") 20 | }); 21 | 22 | testInclude = include(); 23 | testInclude.on("data", function (newFile) { 24 | should.exist(newFile); 25 | should.exist(newFile.contents); 26 | 27 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/basic-include.js"), "utf8")) 28 | done(); 29 | }); 30 | testInclude.write(file); 31 | }); 32 | 33 | it("should keep whitespace when including", function (done) { 34 | var file = new Vinyl({ 35 | base: "test/fixtures/", 36 | path: "test/fixtures/js/whitespace.js", 37 | contents: fs.readFileSync("test/fixtures/js/whitespace.js") 38 | }); 39 | 40 | testInclude = include(); 41 | testInclude.on("data", function (newFile) { 42 | should.exist(newFile); 43 | should.exist(newFile.contents); 44 | 45 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/whitespace.js"), "utf8")) 46 | done(); 47 | }); 48 | testInclude.write(file); 49 | }); 50 | 51 | it("should include complex folder trees", function (done) { 52 | var file = new Vinyl({ 53 | base: "test/fixtures/", 54 | path: "test/fixtures/js/include-trees.js", 55 | contents: fs.readFileSync("test/fixtures/js/include-trees.js") 56 | }); 57 | 58 | testInclude = include(); 59 | testInclude.on("data", function (newFile) { 60 | should.exist(newFile); 61 | should.exist(newFile.contents); 62 | 63 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/include-trees.js"), "utf8")) 64 | done(); 65 | }); 66 | testInclude.write(file); 67 | }); 68 | }) 69 | 70 | it("should not REQUIRE a file twice", function (done) { 71 | var file = new Vinyl({ 72 | base: "test/fixtures/", 73 | path: "test/fixtures/js/big-dummy-project-file.js", 74 | contents: fs.readFileSync("test/fixtures/js/big-dummy-project-file.js") 75 | }); 76 | 77 | testInclude = include(); 78 | testInclude.on("data", function (newFile) { 79 | should.exist(newFile); 80 | should.exist(newFile.contents); 81 | 82 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/big-dummy-project-file.js"), "utf8")) 83 | done(); 84 | }); 85 | testInclude.write(file); 86 | }); 87 | 88 | it("should pull files recursively", function (done) { 89 | var file = new Vinyl({ 90 | base: "test/fixtures/", 91 | path: "test/fixtures/js/recursive.js", 92 | contents: fs.readFileSync("test/fixtures/js/recursive.js") 93 | }); 94 | 95 | testInclude = include(); 96 | testInclude.on("data", function (newFile) { 97 | should.exist(newFile); 98 | should.exist(newFile.contents); 99 | 100 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/recursive.js"), "utf8")) 101 | done(); 102 | }); 103 | testInclude.write(file); 104 | }); 105 | 106 | it("should only include files with the set extensions, if provided", function (done) { 107 | var file = new Vinyl({ 108 | base: "test/fixtures/", 109 | path: "test/fixtures/js/options-extensions.js", 110 | contents: fs.readFileSync("test/fixtures/js/options-extensions.js") 111 | }); 112 | 113 | testInclude = include({ 114 | extensions: ".txt" 115 | }); 116 | testInclude.on("data", function (newFile) { 117 | should.exist(newFile); 118 | should.exist(newFile.contents); 119 | 120 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/options-extensions.js"), "utf8")) 121 | done(); 122 | }); 123 | testInclude.write(file); 124 | }); 125 | 126 | it("should work with html-comments", function (done) { 127 | var file = new Vinyl({ 128 | base: "test/fixtures/", 129 | path: "test/fixtures/html/basic-include.html", 130 | contents: fs.readFileSync("test/fixtures/html/basic-include.html") 131 | }); 132 | 133 | testInclude = include(); 134 | testInclude.on("data", function (newFile) { 135 | should.exist(newFile); 136 | should.exist(newFile.contents); 137 | 138 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/html/basic-include-output.html"), "utf8")) 139 | done(); 140 | }); 141 | testInclude.write(file); 142 | }) 143 | 144 | it('should support source maps', function (done) { 145 | gulp.src('test/fixtures/js/basic-include.js') 146 | .pipe(sourcemaps.init()) 147 | .pipe(include()) 148 | .pipe(assert.length(1)) 149 | .pipe(assert.first(function (d) { 150 | d.sourceMap.sources.should.have.length(3); 151 | d.sourceMap.file.should.eql('basic-include.js'); 152 | d.sourceMap.sources.should.eql(['basic-include.js', 'deep_path/b.js', 'deep_path/deeper_path/c.js']) 153 | })) 154 | .pipe(assert.end(done)); 155 | }); 156 | 157 | it('should strip unicode byte order marks from included files', function (done) { 158 | var file = new Vinyl({ 159 | base: "test/fixtures/", 160 | path: "test/fixtures/html/basic-include-with-unicode-BOM.html", 161 | contents: fs.readFileSync("test/fixtures/html/basic-include-with-unicode-BOM.html") 162 | }); 163 | 164 | testInclude = include(); 165 | testInclude.on("data", function (newFile) { 166 | should.exist(newFile); 167 | should.exist(newFile.contents); 168 | 169 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/html/basic-include-output-with-unicode-BOM.html"), "utf8")) 170 | done(); 171 | }); 172 | 173 | testInclude.write(file); 174 | }) 175 | 176 | it("should include from set includePaths", function (done) { 177 | var file = new Vinyl({ 178 | base: "test/fixtures/", 179 | path: "test/fixtures/js/include-path.js", 180 | contents: fs.readFileSync("test/fixtures/js/include-path.js") 181 | }); 182 | 183 | testInclude = include({ 184 | includePaths: [ 185 | __dirname + "/fixtures/js/include-path", 186 | __dirname + "/fixtures/js/include-path2", 187 | __dirname + "/fixtures/js/include-path2/deeper2", 188 | ] 189 | }); 190 | testInclude.on("data", function (newFile) { 191 | should.exist(newFile); 192 | should.exist(newFile.contents); 193 | 194 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/include-path.js"), "utf8")) 195 | done(); 196 | }); 197 | testInclude.write(file); 198 | }) 199 | 200 | it("should include from explicit relative path when includePaths set", function(done) { 201 | var file = new Vinyl({ 202 | base: "test/fixtures/", 203 | path: "test/fixtures/js/include-path-relative.js", 204 | contents: fs.readFileSync("test/fixtures/js/include-path-relative.js") 205 | }); 206 | 207 | testInclude = include({ 208 | includePaths: [ 209 | __dirname + "/fixtures/js/include-path", 210 | ] 211 | }); 212 | testInclude.on("data", function (newFile) { 213 | should.exist(newFile); 214 | should.exist(newFile.contents); 215 | 216 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/include-path-relative.js"), "utf8")) 217 | done(); 218 | }); 219 | testInclude.write(file); 220 | }) 221 | 222 | it("should include relative paths recursively when includePaths does not include recursively-included paths", function(done) { 223 | var file = new Vinyl({ 224 | base: "test/fixtures/", 225 | path: "test/fixtures/js/recursive-relative.js", 226 | contents: fs.readFileSync("test/fixtures/js/recursive-relative.js") 227 | }); 228 | 229 | testInclude = include({ 230 | includePaths: [ 231 | __dirname + "/fixtures/js/include-path", 232 | __dirname + "/fixtures/js/recursive", 233 | ] 234 | }); 235 | testInclude.on("data", function (newFile) { 236 | should.exist(newFile); 237 | should.exist(newFile.contents); 238 | 239 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/recursive-relative.js"), "utf8")) 240 | done(); 241 | }); 242 | testInclude.write(file); 243 | }) 244 | 245 | it("should throw an error if no match is found with hardFail: true", function (done) { 246 | var file = new Vinyl({ 247 | base: "test/fixtures/", 248 | path: "test/fixtures/js/include-fail.js", 249 | contents: fs.readFileSync("test/fixtures/js/include-fail.js") 250 | }); 251 | 252 | testInclude = include({ 253 | hardFail: true 254 | }); 255 | testInclude.on("error", function (err) { 256 | if (err) done(); 257 | }); 258 | testInclude.write(file); 259 | }) 260 | 261 | it("should not throw an error if no match is found with hardFail: false", function (done) { 262 | var file = new Vinyl({ 263 | base: "test/fixtures/", 264 | path: "test/fixtures/js/include-fail.js", 265 | contents: fs.readFileSync("test/fixtures/js/include-fail.js") 266 | }); 267 | 268 | testInclude = include({ 269 | hardFail: false 270 | }); 271 | testInclude.on("error", function (err) { 272 | done(err); 273 | }); 274 | testInclude.on("data", function (newFile) { 275 | done(); 276 | }); 277 | testInclude.write(file); 278 | }) 279 | 280 | it("should allow `separateInputs: true` to `require` the same file, if in different streams", function (done) { 281 | var file = new Vinyl({ 282 | base: "test/fixtures/", 283 | path: "test/fixtures/js/separate-inputs/separate-inputs.js", 284 | contents: fs.readFileSync("test/fixtures/js/separate-inputs/separate-inputs.js") 285 | }); 286 | var file2 = new Vinyl({ 287 | base: "test/fixtures/", 288 | path: "test/fixtures/js/separate-inputs/separate-inputs.js", 289 | contents: fs.readFileSync("test/fixtures/js/separate-inputs/separate-inputs.js") 290 | }); 291 | 292 | testInclude = include({ 293 | separateInputs: true 294 | }); 295 | var index = 0 296 | testInclude.on("data", function (newFile) { 297 | index++ 298 | should.exist(newFile); 299 | should.exist(newFile.contents); 300 | 301 | String(newFile.contents).should.equal(String(fs.readFileSync("test/expected/js/separate-inputs.js"), "utf8")) 302 | if (index==2) done(); 303 | }); 304 | testInclude.write(file); 305 | testInclude.write(file2); 306 | }) 307 | }) 308 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@gulp-sourcemaps/identity-map@1.X": 6 | version "1.0.2" 7 | resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/identity-map/-/identity-map-1.0.2.tgz#1e6fe5d8027b1f285dc0d31762f566bccd73d5a9" 8 | integrity sha512-ciiioYMLdo16ShmfHBXJBOFm3xPC4AuwO4xeRpFeHz7WK9PYsWCmigagG2XyzZpubK4a3qNKoUBDhbzHfa50LQ== 9 | dependencies: 10 | acorn "^5.0.3" 11 | css "^2.2.1" 12 | normalize-path "^2.1.1" 13 | source-map "^0.6.0" 14 | through2 "^2.0.3" 15 | 16 | "@gulp-sourcemaps/map-sources@1.X": 17 | version "1.0.0" 18 | resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz#890ae7c5d8c877f6d384860215ace9d7ec945bda" 19 | integrity sha1-iQrnxdjId/bThIYCFazp1+yUW9o= 20 | dependencies: 21 | normalize-path "^2.0.1" 22 | through2 "^2.0.3" 23 | 24 | abbrev@1: 25 | version "1.1.1" 26 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 27 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 28 | 29 | acorn@5.X, acorn@^5.0.3: 30 | version "5.7.3" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 32 | integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== 33 | 34 | ansi-colors@3.2.3: 35 | version "3.2.3" 36 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.3.tgz#57d35b8686e851e2cc04c403f1c00203976a1813" 37 | integrity sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== 38 | 39 | ansi-colors@^1.0.1: 40 | version "1.1.0" 41 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" 42 | integrity sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA== 43 | dependencies: 44 | ansi-wrap "^0.1.0" 45 | 46 | ansi-colors@^3.2.4: 47 | version "3.2.4" 48 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" 49 | integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== 50 | 51 | ansi-gray@^0.1.1: 52 | version "0.1.1" 53 | resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" 54 | integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= 55 | dependencies: 56 | ansi-wrap "0.1.0" 57 | 58 | ansi-regex@^2.0.0: 59 | version "2.1.1" 60 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 61 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 62 | 63 | ansi-regex@^3.0.0: 64 | version "3.0.0" 65 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 66 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 67 | 68 | ansi-regex@^4.1.0: 69 | version "4.1.0" 70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 71 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 72 | 73 | ansi-styles@^3.2.1: 74 | version "3.2.1" 75 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 76 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 77 | dependencies: 78 | color-convert "^1.9.0" 79 | 80 | ansi-wrap@0.1.0, ansi-wrap@^0.1.0: 81 | version "0.1.0" 82 | resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" 83 | integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= 84 | 85 | anymatch@^2.0.0: 86 | version "2.0.0" 87 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 88 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 89 | dependencies: 90 | micromatch "^3.1.4" 91 | normalize-path "^2.1.1" 92 | 93 | append-buffer@^1.0.2: 94 | version "1.0.2" 95 | resolved "https://registry.yarnpkg.com/append-buffer/-/append-buffer-1.0.2.tgz#d8220cf466081525efea50614f3de6514dfa58f1" 96 | integrity sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE= 97 | dependencies: 98 | buffer-equal "^1.0.0" 99 | 100 | aproba@^1.0.3: 101 | version "1.2.0" 102 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 103 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 104 | 105 | archy@^1.0.0: 106 | version "1.0.0" 107 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 108 | integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= 109 | 110 | are-we-there-yet@~1.1.2: 111 | version "1.1.5" 112 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 113 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 114 | dependencies: 115 | delegates "^1.0.0" 116 | readable-stream "^2.0.6" 117 | 118 | argparse@^1.0.7: 119 | version "1.0.10" 120 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 121 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 122 | dependencies: 123 | sprintf-js "~1.0.2" 124 | 125 | arr-diff@^4.0.0: 126 | version "4.0.0" 127 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 128 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 129 | 130 | arr-filter@^1.1.1: 131 | version "1.1.2" 132 | resolved "https://registry.yarnpkg.com/arr-filter/-/arr-filter-1.1.2.tgz#43fdddd091e8ef11aa4c45d9cdc18e2dff1711ee" 133 | integrity sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4= 134 | dependencies: 135 | make-iterator "^1.0.0" 136 | 137 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 138 | version "1.1.0" 139 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 140 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 141 | 142 | arr-map@^2.0.0, arr-map@^2.0.2: 143 | version "2.0.2" 144 | resolved "https://registry.yarnpkg.com/arr-map/-/arr-map-2.0.2.tgz#3a77345ffc1cf35e2a91825601f9e58f2e24cac4" 145 | integrity sha1-Onc0X/wc814qkYJWAfnljy4kysQ= 146 | dependencies: 147 | make-iterator "^1.0.0" 148 | 149 | arr-union@^3.1.0: 150 | version "3.1.0" 151 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 152 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 153 | 154 | array-each@^1.0.0, array-each@^1.0.1: 155 | version "1.0.1" 156 | resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" 157 | integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8= 158 | 159 | array-initial@^1.0.0: 160 | version "1.1.0" 161 | resolved "https://registry.yarnpkg.com/array-initial/-/array-initial-1.1.0.tgz#2fa74b26739371c3947bd7a7adc73be334b3d795" 162 | integrity sha1-L6dLJnOTccOUe9enrcc74zSz15U= 163 | dependencies: 164 | array-slice "^1.0.0" 165 | is-number "^4.0.0" 166 | 167 | array-last@^1.1.1: 168 | version "1.3.0" 169 | resolved "https://registry.yarnpkg.com/array-last/-/array-last-1.3.0.tgz#7aa77073fec565ddab2493f5f88185f404a9d336" 170 | integrity sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg== 171 | dependencies: 172 | is-number "^4.0.0" 173 | 174 | array-slice@^1.0.0: 175 | version "1.1.0" 176 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" 177 | integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== 178 | 179 | array-sort@^1.0.0: 180 | version "1.0.0" 181 | resolved "https://registry.yarnpkg.com/array-sort/-/array-sort-1.0.0.tgz#e4c05356453f56f53512a7d1d6123f2c54c0a88a" 182 | integrity sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg== 183 | dependencies: 184 | default-compare "^1.0.0" 185 | get-value "^2.0.6" 186 | kind-of "^5.0.2" 187 | 188 | array-unique@^0.3.2: 189 | version "0.3.2" 190 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 191 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 192 | 193 | assign-symbols@^1.0.0: 194 | version "1.0.0" 195 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 196 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 197 | 198 | async-done@^1.2.0, async-done@^1.2.2: 199 | version "1.3.1" 200 | resolved "https://registry.yarnpkg.com/async-done/-/async-done-1.3.1.tgz#14b7b73667b864c8f02b5b253fc9c6eddb777f3e" 201 | integrity sha512-R1BaUeJ4PMoLNJuk+0tLJgjmEqVsdN118+Z8O+alhnQDQgy0kmD5Mqi0DNEmMx2LM0Ed5yekKu+ZXYvIHceicg== 202 | dependencies: 203 | end-of-stream "^1.1.0" 204 | once "^1.3.2" 205 | process-nextick-args "^1.0.7" 206 | stream-exhaust "^1.0.1" 207 | 208 | async-each@^1.0.1: 209 | version "1.0.2" 210 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.2.tgz#8b8a7ca2a658f927e9f307d6d1a42f4199f0f735" 211 | integrity sha512-6xrbvN0MOBKSJDdonmSSz2OwFSgxRaVtBDes26mj9KIGtDo+g9xosFRSC+i1gQh2oAN/tQ62AI/pGZGQjVOiRg== 212 | 213 | async-settle@^1.0.0: 214 | version "1.0.0" 215 | resolved "https://registry.yarnpkg.com/async-settle/-/async-settle-1.0.0.tgz#1d0a914bb02575bec8a8f3a74e5080f72b2c0c6b" 216 | integrity sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs= 217 | dependencies: 218 | async-done "^1.2.2" 219 | 220 | atob@^2.1.1: 221 | version "2.1.2" 222 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 223 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 224 | 225 | bach@^1.0.0: 226 | version "1.2.0" 227 | resolved "https://registry.yarnpkg.com/bach/-/bach-1.2.0.tgz#4b3ce96bf27134f79a1b414a51c14e34c3bd9880" 228 | integrity sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA= 229 | dependencies: 230 | arr-filter "^1.1.1" 231 | arr-flatten "^1.0.1" 232 | arr-map "^2.0.0" 233 | array-each "^1.0.0" 234 | array-initial "^1.0.0" 235 | array-last "^1.1.1" 236 | async-done "^1.2.2" 237 | async-settle "^1.0.0" 238 | now-and-later "^2.0.0" 239 | 240 | balanced-match@^1.0.0: 241 | version "1.0.0" 242 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 243 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 244 | 245 | base@^0.11.1: 246 | version "0.11.2" 247 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 248 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 249 | dependencies: 250 | cache-base "^1.0.1" 251 | class-utils "^0.3.5" 252 | component-emitter "^1.2.1" 253 | define-property "^1.0.0" 254 | isobject "^3.0.1" 255 | mixin-deep "^1.2.0" 256 | pascalcase "^0.1.1" 257 | 258 | binary-extensions@^1.0.0: 259 | version "1.13.1" 260 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" 261 | integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== 262 | 263 | brace-expansion@^1.1.7: 264 | version "1.1.11" 265 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 266 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 267 | dependencies: 268 | balanced-match "^1.0.0" 269 | concat-map "0.0.1" 270 | 271 | braces@^2.3.1, braces@^2.3.2: 272 | version "2.3.2" 273 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 274 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 275 | dependencies: 276 | arr-flatten "^1.1.0" 277 | array-unique "^0.3.2" 278 | extend-shallow "^2.0.1" 279 | fill-range "^4.0.0" 280 | isobject "^3.0.1" 281 | repeat-element "^1.1.2" 282 | snapdragon "^0.8.1" 283 | snapdragon-node "^2.0.1" 284 | split-string "^3.0.2" 285 | to-regex "^3.0.1" 286 | 287 | browser-stdout@1.3.1: 288 | version "1.3.1" 289 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 290 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== 291 | 292 | buffer-equal@^1.0.0: 293 | version "1.0.0" 294 | resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" 295 | integrity sha1-WWFrSYME1Var1GaWayLu2j7KX74= 296 | 297 | buffer-from@^1.0.0: 298 | version "1.1.1" 299 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 300 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 301 | 302 | cache-base@^1.0.1: 303 | version "1.0.1" 304 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 305 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 306 | dependencies: 307 | collection-visit "^1.0.0" 308 | component-emitter "^1.2.1" 309 | get-value "^2.0.6" 310 | has-value "^1.0.0" 311 | isobject "^3.0.1" 312 | set-value "^2.0.0" 313 | to-object-path "^0.3.0" 314 | union-value "^1.0.0" 315 | unset-value "^1.0.0" 316 | 317 | camelcase@^3.0.0: 318 | version "3.0.0" 319 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 320 | integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= 321 | 322 | camelcase@^5.0.0: 323 | version "5.3.1" 324 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 325 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 326 | 327 | chalk@^2.0.1: 328 | version "2.4.2" 329 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 330 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 331 | dependencies: 332 | ansi-styles "^3.2.1" 333 | escape-string-regexp "^1.0.5" 334 | supports-color "^5.3.0" 335 | 336 | chokidar@^2.0.0: 337 | version "2.1.5" 338 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.5.tgz#0ae8434d962281a5f56c72869e79cb6d9d86ad4d" 339 | integrity sha512-i0TprVWp+Kj4WRPtInjexJ8Q+BqTE909VpH8xVhXrJkoc5QC8VO9TryGOqTr+2hljzc1sC62t22h5tZePodM/A== 340 | dependencies: 341 | anymatch "^2.0.0" 342 | async-each "^1.0.1" 343 | braces "^2.3.2" 344 | glob-parent "^3.1.0" 345 | inherits "^2.0.3" 346 | is-binary-path "^1.0.0" 347 | is-glob "^4.0.0" 348 | normalize-path "^3.0.0" 349 | path-is-absolute "^1.0.0" 350 | readdirp "^2.2.1" 351 | upath "^1.1.1" 352 | optionalDependencies: 353 | fsevents "^1.2.7" 354 | 355 | chownr@^1.1.1: 356 | version "1.1.1" 357 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 358 | integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== 359 | 360 | class-utils@^0.3.5: 361 | version "0.3.6" 362 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 363 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 364 | dependencies: 365 | arr-union "^3.1.0" 366 | define-property "^0.2.5" 367 | isobject "^3.0.0" 368 | static-extend "^0.1.1" 369 | 370 | cliui@^3.2.0: 371 | version "3.2.0" 372 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 373 | integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= 374 | dependencies: 375 | string-width "^1.0.1" 376 | strip-ansi "^3.0.1" 377 | wrap-ansi "^2.0.0" 378 | 379 | cliui@^4.0.0: 380 | version "4.1.0" 381 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 382 | integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== 383 | dependencies: 384 | string-width "^2.1.1" 385 | strip-ansi "^4.0.0" 386 | wrap-ansi "^2.0.0" 387 | 388 | clone-buffer@^1.0.0: 389 | version "1.0.0" 390 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 391 | integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg= 392 | 393 | clone-stats@^1.0.0: 394 | version "1.0.0" 395 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 396 | integrity sha1-s3gt/4u1R04Yuba/D9/ngvh3doA= 397 | 398 | clone@^2.1.1: 399 | version "2.1.2" 400 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" 401 | integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= 402 | 403 | cloneable-readable@^1.0.0: 404 | version "1.1.2" 405 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.2.tgz#d591dee4a8f8bc15da43ce97dceeba13d43e2a65" 406 | integrity sha512-Bq6+4t+lbM8vhTs/Bef5c5AdEMtapp/iFb6+s4/Hh9MVTt8OLKH7ZOOZSCT+Ys7hsHvqv0GuMPJ1lnQJVHvxpg== 407 | dependencies: 408 | inherits "^2.0.1" 409 | process-nextick-args "^2.0.0" 410 | readable-stream "^2.3.5" 411 | 412 | code-point-at@^1.0.0: 413 | version "1.1.0" 414 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 415 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 416 | 417 | collection-map@^1.0.0: 418 | version "1.0.0" 419 | resolved "https://registry.yarnpkg.com/collection-map/-/collection-map-1.0.0.tgz#aea0f06f8d26c780c2b75494385544b2255af18c" 420 | integrity sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw= 421 | dependencies: 422 | arr-map "^2.0.2" 423 | for-own "^1.0.0" 424 | make-iterator "^1.0.0" 425 | 426 | collection-visit@^1.0.0: 427 | version "1.0.0" 428 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 429 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 430 | dependencies: 431 | map-visit "^1.0.0" 432 | object-visit "^1.0.0" 433 | 434 | color-convert@^1.9.0: 435 | version "1.9.3" 436 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 437 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 438 | dependencies: 439 | color-name "1.1.3" 440 | 441 | color-name@1.1.3: 442 | version "1.1.3" 443 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 444 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 445 | 446 | color-support@^1.1.3: 447 | version "1.1.3" 448 | resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 449 | integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== 450 | 451 | component-emitter@^1.2.1: 452 | version "1.2.1" 453 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 454 | integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= 455 | 456 | concat-map@0.0.1: 457 | version "0.0.1" 458 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 459 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 460 | 461 | concat-stream@^1.6.0: 462 | version "1.6.2" 463 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 464 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 465 | dependencies: 466 | buffer-from "^1.0.0" 467 | inherits "^2.0.3" 468 | readable-stream "^2.2.2" 469 | typedarray "^0.0.6" 470 | 471 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 472 | version "1.1.0" 473 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 474 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 475 | 476 | convert-source-map@1.X, convert-source-map@^1.5.0: 477 | version "1.6.0" 478 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 479 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== 480 | dependencies: 481 | safe-buffer "~5.1.1" 482 | 483 | copy-descriptor@^0.1.0: 484 | version "0.1.1" 485 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 486 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 487 | 488 | copy-props@^2.0.1: 489 | version "2.0.4" 490 | resolved "https://registry.yarnpkg.com/copy-props/-/copy-props-2.0.4.tgz#93bb1cadfafd31da5bb8a9d4b41f471ec3a72dfe" 491 | integrity sha512-7cjuUME+p+S3HZlbllgsn2CDwS+5eCCX16qBgNC4jgSTf49qR1VKy/Zhl400m0IQXl/bPGEVqncgUUMjrr4s8A== 492 | dependencies: 493 | each-props "^1.3.0" 494 | is-plain-object "^2.0.1" 495 | 496 | core-util-is@~1.0.0: 497 | version "1.0.2" 498 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 499 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 500 | 501 | cross-spawn@^6.0.0: 502 | version "6.0.5" 503 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 504 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 505 | dependencies: 506 | nice-try "^1.0.4" 507 | path-key "^2.0.1" 508 | semver "^5.5.0" 509 | shebang-command "^1.2.0" 510 | which "^1.2.9" 511 | 512 | css@2.X, css@^2.2.1: 513 | version "2.2.4" 514 | resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929" 515 | integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw== 516 | dependencies: 517 | inherits "^2.0.3" 518 | source-map "^0.6.1" 519 | source-map-resolve "^0.5.2" 520 | urix "^0.1.0" 521 | 522 | d@1: 523 | version "1.0.0" 524 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 525 | integrity sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8= 526 | dependencies: 527 | es5-ext "^0.10.9" 528 | 529 | debug-fabulous@1.X: 530 | version "1.1.0" 531 | resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-1.1.0.tgz#af8a08632465224ef4174a9f06308c3c2a1ebc8e" 532 | integrity sha512-GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg== 533 | dependencies: 534 | debug "3.X" 535 | memoizee "0.4.X" 536 | object-assign "4.X" 537 | 538 | debug@3.2.6, debug@3.X: 539 | version "3.2.6" 540 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 541 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 542 | dependencies: 543 | ms "^2.1.1" 544 | 545 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3: 546 | version "2.6.9" 547 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 548 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 549 | dependencies: 550 | ms "2.0.0" 551 | 552 | decamelize@^1.1.1, decamelize@^1.2.0: 553 | version "1.2.0" 554 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 555 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 556 | 557 | decode-uri-component@^0.2.0: 558 | version "0.2.0" 559 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 560 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 561 | 562 | deep-extend@^0.6.0: 563 | version "0.6.0" 564 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 565 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 566 | 567 | default-compare@^1.0.0: 568 | version "1.0.0" 569 | resolved "https://registry.yarnpkg.com/default-compare/-/default-compare-1.0.0.tgz#cb61131844ad84d84788fb68fd01681ca7781a2f" 570 | integrity sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ== 571 | dependencies: 572 | kind-of "^5.0.2" 573 | 574 | default-resolution@^2.0.0: 575 | version "2.0.0" 576 | resolved "https://registry.yarnpkg.com/default-resolution/-/default-resolution-2.0.0.tgz#bcb82baa72ad79b426a76732f1a81ad6df26d684" 577 | integrity sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ= 578 | 579 | define-properties@^1.1.2: 580 | version "1.1.3" 581 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 582 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 583 | dependencies: 584 | object-keys "^1.0.12" 585 | 586 | define-property@^0.2.5: 587 | version "0.2.5" 588 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 589 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 590 | dependencies: 591 | is-descriptor "^0.1.0" 592 | 593 | define-property@^1.0.0: 594 | version "1.0.0" 595 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 596 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 597 | dependencies: 598 | is-descriptor "^1.0.0" 599 | 600 | define-property@^2.0.2: 601 | version "2.0.2" 602 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 603 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 604 | dependencies: 605 | is-descriptor "^1.0.2" 606 | isobject "^3.0.1" 607 | 608 | delegates@^1.0.0: 609 | version "1.0.0" 610 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 611 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 612 | 613 | detect-file@^1.0.0: 614 | version "1.0.0" 615 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" 616 | integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= 617 | 618 | detect-libc@^1.0.2: 619 | version "1.0.3" 620 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 621 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 622 | 623 | detect-newline@2.X: 624 | version "2.1.0" 625 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 626 | integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= 627 | 628 | diff@3.5.0: 629 | version "3.5.0" 630 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 631 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 632 | 633 | duplexer@^0.1.1, duplexer@~0.1.1: 634 | version "0.1.1" 635 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 636 | integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= 637 | 638 | duplexify@^3.6.0: 639 | version "3.7.1" 640 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" 641 | integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== 642 | dependencies: 643 | end-of-stream "^1.0.0" 644 | inherits "^2.0.1" 645 | readable-stream "^2.0.0" 646 | stream-shift "^1.0.0" 647 | 648 | each-props@^1.3.0: 649 | version "1.3.2" 650 | resolved "https://registry.yarnpkg.com/each-props/-/each-props-1.3.2.tgz#ea45a414d16dd5cfa419b1a81720d5ca06892333" 651 | integrity sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA== 652 | dependencies: 653 | is-plain-object "^2.0.1" 654 | object.defaults "^1.1.0" 655 | 656 | emoji-regex@^7.0.1: 657 | version "7.0.3" 658 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 659 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 660 | 661 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 662 | version "1.4.1" 663 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 664 | integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== 665 | dependencies: 666 | once "^1.4.0" 667 | 668 | error-ex@^1.2.0: 669 | version "1.3.2" 670 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 671 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 672 | dependencies: 673 | is-arrayish "^0.2.1" 674 | 675 | es-abstract@^1.5.1: 676 | version "1.13.0" 677 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" 678 | integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== 679 | dependencies: 680 | es-to-primitive "^1.2.0" 681 | function-bind "^1.1.1" 682 | has "^1.0.3" 683 | is-callable "^1.1.4" 684 | is-regex "^1.0.4" 685 | object-keys "^1.0.12" 686 | 687 | es-to-primitive@^1.2.0: 688 | version "1.2.0" 689 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 690 | integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== 691 | dependencies: 692 | is-callable "^1.1.4" 693 | is-date-object "^1.0.1" 694 | is-symbol "^1.0.2" 695 | 696 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.45, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2, es5-ext@~0.10.46: 697 | version "0.10.49" 698 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.49.tgz#059a239de862c94494fec28f8150c977028c6c5e" 699 | integrity sha512-3NMEhi57E31qdzmYp2jwRArIUsj1HI/RxbQ4bgnSB+AIKIxsAmTiK83bYMifIcpWvEc3P1X30DhUKOqEtF/kvg== 700 | dependencies: 701 | es6-iterator "~2.0.3" 702 | es6-symbol "~3.1.1" 703 | next-tick "^1.0.0" 704 | 705 | es6-iterator@^2.0.1, es6-iterator@~2.0.3: 706 | version "2.0.3" 707 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 708 | integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= 709 | dependencies: 710 | d "1" 711 | es5-ext "^0.10.35" 712 | es6-symbol "^3.1.1" 713 | 714 | es6-symbol@^3.1.1, es6-symbol@~3.1.1: 715 | version "3.1.1" 716 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 717 | integrity sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc= 718 | dependencies: 719 | d "1" 720 | es5-ext "~0.10.14" 721 | 722 | es6-weak-map@^2.0.1, es6-weak-map@^2.0.2: 723 | version "2.0.2" 724 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 725 | integrity sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8= 726 | dependencies: 727 | d "1" 728 | es5-ext "^0.10.14" 729 | es6-iterator "^2.0.1" 730 | es6-symbol "^3.1.1" 731 | 732 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.5: 733 | version "1.0.5" 734 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 735 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 736 | 737 | esprima@^4.0.0: 738 | version "4.0.1" 739 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 740 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 741 | 742 | event-emitter@^0.3.5: 743 | version "0.3.5" 744 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 745 | integrity sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk= 746 | dependencies: 747 | d "1" 748 | es5-ext "~0.10.14" 749 | 750 | event-stream@^4.0.1: 751 | version "4.0.1" 752 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-4.0.1.tgz#4092808ec995d0dd75ea4580c1df6a74db2cde65" 753 | integrity sha512-qACXdu/9VHPBzcyhdOWR5/IahhGMf0roTeZJfzz077GwylcDd90yOHLouhmv7GJ5XzPi6ekaQWd8AvPP2nOvpA== 754 | dependencies: 755 | duplexer "^0.1.1" 756 | from "^0.1.7" 757 | map-stream "0.0.7" 758 | pause-stream "^0.0.11" 759 | split "^1.0.1" 760 | stream-combiner "^0.2.2" 761 | through "^2.3.8" 762 | 763 | execa@^1.0.0: 764 | version "1.0.0" 765 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 766 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 767 | dependencies: 768 | cross-spawn "^6.0.0" 769 | get-stream "^4.0.0" 770 | is-stream "^1.1.0" 771 | npm-run-path "^2.0.0" 772 | p-finally "^1.0.0" 773 | signal-exit "^3.0.0" 774 | strip-eof "^1.0.0" 775 | 776 | expand-brackets@^2.1.4: 777 | version "2.1.4" 778 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 779 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 780 | dependencies: 781 | debug "^2.3.3" 782 | define-property "^0.2.5" 783 | extend-shallow "^2.0.1" 784 | posix-character-classes "^0.1.0" 785 | regex-not "^1.0.0" 786 | snapdragon "^0.8.1" 787 | to-regex "^3.0.1" 788 | 789 | expand-tilde@^2.0.0, expand-tilde@^2.0.2: 790 | version "2.0.2" 791 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 792 | integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= 793 | dependencies: 794 | homedir-polyfill "^1.0.1" 795 | 796 | extend-shallow@^2.0.1: 797 | version "2.0.1" 798 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 799 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 800 | dependencies: 801 | is-extendable "^0.1.0" 802 | 803 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 804 | version "3.0.2" 805 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 806 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 807 | dependencies: 808 | assign-symbols "^1.0.0" 809 | is-extendable "^1.0.1" 810 | 811 | extend@^3.0.0: 812 | version "3.0.2" 813 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 814 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 815 | 816 | extglob@^2.0.4: 817 | version "2.0.4" 818 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 819 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 820 | dependencies: 821 | array-unique "^0.3.2" 822 | define-property "^1.0.0" 823 | expand-brackets "^2.1.4" 824 | extend-shallow "^2.0.1" 825 | fragment-cache "^0.2.1" 826 | regex-not "^1.0.0" 827 | snapdragon "^0.8.1" 828 | to-regex "^3.0.1" 829 | 830 | fancy-log@^1.3.2: 831 | version "1.3.3" 832 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" 833 | integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== 834 | dependencies: 835 | ansi-gray "^0.1.1" 836 | color-support "^1.1.3" 837 | parse-node-version "^1.0.0" 838 | time-stamp "^1.0.0" 839 | 840 | fill-range@^4.0.0: 841 | version "4.0.0" 842 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 843 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 844 | dependencies: 845 | extend-shallow "^2.0.1" 846 | is-number "^3.0.0" 847 | repeat-string "^1.6.1" 848 | to-regex-range "^2.1.0" 849 | 850 | find-up@3.0.0, find-up@^3.0.0: 851 | version "3.0.0" 852 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 853 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 854 | dependencies: 855 | locate-path "^3.0.0" 856 | 857 | find-up@^1.0.0: 858 | version "1.1.2" 859 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 860 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= 861 | dependencies: 862 | path-exists "^2.0.0" 863 | pinkie-promise "^2.0.0" 864 | 865 | findup-sync@^2.0.0: 866 | version "2.0.0" 867 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" 868 | integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw= 869 | dependencies: 870 | detect-file "^1.0.0" 871 | is-glob "^3.1.0" 872 | micromatch "^3.0.4" 873 | resolve-dir "^1.0.1" 874 | 875 | findup-sync@^3.0.0: 876 | version "3.0.0" 877 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" 878 | integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== 879 | dependencies: 880 | detect-file "^1.0.0" 881 | is-glob "^4.0.0" 882 | micromatch "^3.0.4" 883 | resolve-dir "^1.0.1" 884 | 885 | fined@^1.0.1: 886 | version "1.1.1" 887 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.1.1.tgz#95d88ff329123dd1a6950fdfcd321f746271e01f" 888 | integrity sha512-jQp949ZmEbiYHk3gkbdtpJ0G1+kgtLQBNdP5edFP7Fh+WAYceLQz6yO1SBj72Xkg8GVyTB3bBzAYrHJVh5Xd5g== 889 | dependencies: 890 | expand-tilde "^2.0.2" 891 | is-plain-object "^2.0.3" 892 | object.defaults "^1.1.0" 893 | object.pick "^1.2.0" 894 | parse-filepath "^1.0.1" 895 | 896 | flagged-respawn@^1.0.0: 897 | version "1.0.1" 898 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41" 899 | integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q== 900 | 901 | flat@^4.1.0: 902 | version "4.1.0" 903 | resolved "https://registry.yarnpkg.com/flat/-/flat-4.1.0.tgz#090bec8b05e39cba309747f1d588f04dbaf98db2" 904 | integrity sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw== 905 | dependencies: 906 | is-buffer "~2.0.3" 907 | 908 | flush-write-stream@^1.0.2: 909 | version "1.1.1" 910 | resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" 911 | integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== 912 | dependencies: 913 | inherits "^2.0.3" 914 | readable-stream "^2.3.6" 915 | 916 | for-in@^1.0.1, for-in@^1.0.2: 917 | version "1.0.2" 918 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 919 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 920 | 921 | for-own@^1.0.0: 922 | version "1.0.0" 923 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" 924 | integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= 925 | dependencies: 926 | for-in "^1.0.1" 927 | 928 | fragment-cache@^0.2.1: 929 | version "0.2.1" 930 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 931 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 932 | dependencies: 933 | map-cache "^0.2.2" 934 | 935 | from@^0.1.7: 936 | version "0.1.7" 937 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 938 | integrity sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4= 939 | 940 | fs-minipass@^1.2.5: 941 | version "1.2.5" 942 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 943 | integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ== 944 | dependencies: 945 | minipass "^2.2.1" 946 | 947 | fs-mkdirp-stream@^1.0.0: 948 | version "1.0.0" 949 | resolved "https://registry.yarnpkg.com/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz#0b7815fc3201c6a69e14db98ce098c16935259eb" 950 | integrity sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes= 951 | dependencies: 952 | graceful-fs "^4.1.11" 953 | through2 "^2.0.3" 954 | 955 | fs.realpath@^1.0.0: 956 | version "1.0.0" 957 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 958 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 959 | 960 | fsevents@^1.2.7: 961 | version "1.2.7" 962 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4" 963 | integrity sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw== 964 | dependencies: 965 | nan "^2.9.2" 966 | node-pre-gyp "^0.10.0" 967 | 968 | function-bind@^1.1.1: 969 | version "1.1.1" 970 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 971 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 972 | 973 | gauge@~2.7.3: 974 | version "2.7.4" 975 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 976 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 977 | dependencies: 978 | aproba "^1.0.3" 979 | console-control-strings "^1.0.0" 980 | has-unicode "^2.0.0" 981 | object-assign "^4.1.0" 982 | signal-exit "^3.0.0" 983 | string-width "^1.0.1" 984 | strip-ansi "^3.0.1" 985 | wide-align "^1.1.0" 986 | 987 | get-caller-file@^1.0.1: 988 | version "1.0.3" 989 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 990 | integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 991 | 992 | get-caller-file@^2.0.1: 993 | version "2.0.5" 994 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 995 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 996 | 997 | get-stream@^4.0.0: 998 | version "4.1.0" 999 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1000 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 1001 | dependencies: 1002 | pump "^3.0.0" 1003 | 1004 | get-value@^2.0.3, get-value@^2.0.6: 1005 | version "2.0.6" 1006 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1007 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1008 | 1009 | glob-parent@^3.1.0: 1010 | version "3.1.0" 1011 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1012 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= 1013 | dependencies: 1014 | is-glob "^3.1.0" 1015 | path-dirname "^1.0.0" 1016 | 1017 | glob-stream@^6.1.0: 1018 | version "6.1.0" 1019 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz#7045c99413b3eb94888d83ab46d0b404cc7bdde4" 1020 | integrity sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ= 1021 | dependencies: 1022 | extend "^3.0.0" 1023 | glob "^7.1.1" 1024 | glob-parent "^3.1.0" 1025 | is-negated-glob "^1.0.0" 1026 | ordered-read-streams "^1.0.0" 1027 | pumpify "^1.3.5" 1028 | readable-stream "^2.1.5" 1029 | remove-trailing-separator "^1.0.1" 1030 | to-absolute-glob "^2.0.0" 1031 | unique-stream "^2.0.2" 1032 | 1033 | glob-watcher@^5.0.0: 1034 | version "5.0.3" 1035 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-5.0.3.tgz#88a8abf1c4d131eb93928994bc4a593c2e5dd626" 1036 | integrity sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg== 1037 | dependencies: 1038 | anymatch "^2.0.0" 1039 | async-done "^1.2.0" 1040 | chokidar "^2.0.0" 1041 | is-negated-glob "^1.0.0" 1042 | just-debounce "^1.0.0" 1043 | object.defaults "^1.1.0" 1044 | 1045 | glob@7.1.3, glob@^7.1.1, glob@^7.1.3: 1046 | version "7.1.3" 1047 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 1048 | integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== 1049 | dependencies: 1050 | fs.realpath "^1.0.0" 1051 | inflight "^1.0.4" 1052 | inherits "2" 1053 | minimatch "^3.0.4" 1054 | once "^1.3.0" 1055 | path-is-absolute "^1.0.0" 1056 | 1057 | global-modules@^1.0.0: 1058 | version "1.0.0" 1059 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" 1060 | integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== 1061 | dependencies: 1062 | global-prefix "^1.0.1" 1063 | is-windows "^1.0.1" 1064 | resolve-dir "^1.0.0" 1065 | 1066 | global-prefix@^1.0.1: 1067 | version "1.0.2" 1068 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" 1069 | integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= 1070 | dependencies: 1071 | expand-tilde "^2.0.2" 1072 | homedir-polyfill "^1.0.1" 1073 | ini "^1.3.4" 1074 | is-windows "^1.0.1" 1075 | which "^1.2.14" 1076 | 1077 | glogg@^1.0.0: 1078 | version "1.0.2" 1079 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.2.tgz#2d7dd702beda22eb3bffadf880696da6d846313f" 1080 | integrity sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA== 1081 | dependencies: 1082 | sparkles "^1.0.0" 1083 | 1084 | graceful-fs@4.X, graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1085 | version "4.1.15" 1086 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1087 | integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== 1088 | 1089 | growl@1.10.5: 1090 | version "1.10.5" 1091 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 1092 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== 1093 | 1094 | gulp-cli@^2.0.0: 1095 | version "2.1.0" 1096 | resolved "https://registry.yarnpkg.com/gulp-cli/-/gulp-cli-2.1.0.tgz#2705143ae744c9e10d894ca621ce0a3933aa2e89" 1097 | integrity sha512-txzgdFVlEPShBZus6JJyGyKJoBVDq6Do0ZQgIgx5RAsmhNVTDjymmOxpQvo3c20m66FldilS68ZXj2Q9w5dKbA== 1098 | dependencies: 1099 | ansi-colors "^1.0.1" 1100 | archy "^1.0.0" 1101 | array-sort "^1.0.0" 1102 | color-support "^1.1.3" 1103 | concat-stream "^1.6.0" 1104 | copy-props "^2.0.1" 1105 | fancy-log "^1.3.2" 1106 | gulplog "^1.0.0" 1107 | interpret "^1.1.0" 1108 | isobject "^3.0.1" 1109 | liftoff "^3.1.0" 1110 | matchdep "^2.0.0" 1111 | mute-stdout "^1.0.0" 1112 | pretty-hrtime "^1.0.0" 1113 | replace-homedir "^1.0.0" 1114 | semver-greatest-satisfied-range "^1.1.0" 1115 | v8flags "^3.0.1" 1116 | yargs "^7.1.0" 1117 | 1118 | gulp-sourcemaps@^2.6.5: 1119 | version "2.6.5" 1120 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.6.5.tgz#a3f002d87346d2c0f3aec36af7eb873f23de8ae6" 1121 | integrity sha512-SYLBRzPTew8T5Suh2U8jCSDKY+4NARua4aqjj8HOysBh2tSgT9u4jc1FYirAdPx1akUxxDeK++fqw6Jg0LkQRg== 1122 | dependencies: 1123 | "@gulp-sourcemaps/identity-map" "1.X" 1124 | "@gulp-sourcemaps/map-sources" "1.X" 1125 | acorn "5.X" 1126 | convert-source-map "1.X" 1127 | css "2.X" 1128 | debug-fabulous "1.X" 1129 | detect-newline "2.X" 1130 | graceful-fs "4.X" 1131 | source-map "~0.6.0" 1132 | strip-bom-string "1.X" 1133 | through2 "2.X" 1134 | 1135 | gulp@^4.0.0: 1136 | version "4.0.0" 1137 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-4.0.0.tgz#95766c601dade4a77ed3e7b2b6dc03881b596366" 1138 | integrity sha1-lXZsYB2t5Kd+0+eyttwDiBtZY2Y= 1139 | dependencies: 1140 | glob-watcher "^5.0.0" 1141 | gulp-cli "^2.0.0" 1142 | undertaker "^1.0.0" 1143 | vinyl-fs "^3.0.0" 1144 | 1145 | gulplog@^1.0.0: 1146 | version "1.0.0" 1147 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1148 | integrity sha1-4oxNRdBey77YGDY86PnFkmIp/+U= 1149 | dependencies: 1150 | glogg "^1.0.0" 1151 | 1152 | has-flag@^3.0.0: 1153 | version "3.0.0" 1154 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1155 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1156 | 1157 | has-symbols@^1.0.0: 1158 | version "1.0.0" 1159 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1160 | integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= 1161 | 1162 | has-unicode@^2.0.0: 1163 | version "2.0.1" 1164 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1165 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1166 | 1167 | has-value@^0.3.1: 1168 | version "0.3.1" 1169 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1170 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1171 | dependencies: 1172 | get-value "^2.0.3" 1173 | has-values "^0.1.4" 1174 | isobject "^2.0.0" 1175 | 1176 | has-value@^1.0.0: 1177 | version "1.0.0" 1178 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1179 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1180 | dependencies: 1181 | get-value "^2.0.6" 1182 | has-values "^1.0.0" 1183 | isobject "^3.0.0" 1184 | 1185 | has-values@^0.1.4: 1186 | version "0.1.4" 1187 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1188 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1189 | 1190 | has-values@^1.0.0: 1191 | version "1.0.0" 1192 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1193 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1194 | dependencies: 1195 | is-number "^3.0.0" 1196 | kind-of "^4.0.0" 1197 | 1198 | has@^1.0.1, has@^1.0.3: 1199 | version "1.0.3" 1200 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1201 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1202 | dependencies: 1203 | function-bind "^1.1.1" 1204 | 1205 | he@1.2.0: 1206 | version "1.2.0" 1207 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 1208 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 1209 | 1210 | homedir-polyfill@^1.0.1: 1211 | version "1.0.3" 1212 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" 1213 | integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== 1214 | dependencies: 1215 | parse-passwd "^1.0.0" 1216 | 1217 | hosted-git-info@^2.1.4: 1218 | version "2.7.1" 1219 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1220 | integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== 1221 | 1222 | iconv-lite@^0.4.4: 1223 | version "0.4.24" 1224 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1225 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1226 | dependencies: 1227 | safer-buffer ">= 2.1.2 < 3" 1228 | 1229 | ignore-walk@^3.0.1: 1230 | version "3.0.1" 1231 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1232 | integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== 1233 | dependencies: 1234 | minimatch "^3.0.4" 1235 | 1236 | inflight@^1.0.4: 1237 | version "1.0.6" 1238 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1239 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1240 | dependencies: 1241 | once "^1.3.0" 1242 | wrappy "1" 1243 | 1244 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 1245 | version "2.0.3" 1246 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1247 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1248 | 1249 | ini@^1.3.4, ini@~1.3.0: 1250 | version "1.3.5" 1251 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1252 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 1253 | 1254 | interpret@^1.1.0: 1255 | version "1.2.0" 1256 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" 1257 | integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== 1258 | 1259 | invert-kv@^1.0.0: 1260 | version "1.0.0" 1261 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1262 | integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= 1263 | 1264 | invert-kv@^2.0.0: 1265 | version "2.0.0" 1266 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" 1267 | integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== 1268 | 1269 | is-absolute@^1.0.0: 1270 | version "1.0.0" 1271 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" 1272 | integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== 1273 | dependencies: 1274 | is-relative "^1.0.0" 1275 | is-windows "^1.0.1" 1276 | 1277 | is-accessor-descriptor@^0.1.6: 1278 | version "0.1.6" 1279 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1280 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1281 | dependencies: 1282 | kind-of "^3.0.2" 1283 | 1284 | is-accessor-descriptor@^1.0.0: 1285 | version "1.0.0" 1286 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1287 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1288 | dependencies: 1289 | kind-of "^6.0.0" 1290 | 1291 | is-arrayish@^0.2.1: 1292 | version "0.2.1" 1293 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1294 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1295 | 1296 | is-binary-path@^1.0.0: 1297 | version "1.0.1" 1298 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1299 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 1300 | dependencies: 1301 | binary-extensions "^1.0.0" 1302 | 1303 | is-buffer@^1.1.5: 1304 | version "1.1.6" 1305 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1306 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1307 | 1308 | is-buffer@~2.0.3: 1309 | version "2.0.3" 1310 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" 1311 | integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== 1312 | 1313 | is-callable@^1.1.4: 1314 | version "1.1.4" 1315 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1316 | integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== 1317 | 1318 | is-data-descriptor@^0.1.4: 1319 | version "0.1.4" 1320 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1321 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1322 | dependencies: 1323 | kind-of "^3.0.2" 1324 | 1325 | is-data-descriptor@^1.0.0: 1326 | version "1.0.0" 1327 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1328 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1329 | dependencies: 1330 | kind-of "^6.0.0" 1331 | 1332 | is-date-object@^1.0.1: 1333 | version "1.0.1" 1334 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1335 | integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= 1336 | 1337 | is-descriptor@^0.1.0: 1338 | version "0.1.6" 1339 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1340 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 1341 | dependencies: 1342 | is-accessor-descriptor "^0.1.6" 1343 | is-data-descriptor "^0.1.4" 1344 | kind-of "^5.0.0" 1345 | 1346 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1347 | version "1.0.2" 1348 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1349 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 1350 | dependencies: 1351 | is-accessor-descriptor "^1.0.0" 1352 | is-data-descriptor "^1.0.0" 1353 | kind-of "^6.0.2" 1354 | 1355 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1356 | version "0.1.1" 1357 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1358 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1359 | 1360 | is-extendable@^1.0.1: 1361 | version "1.0.1" 1362 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1363 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 1364 | dependencies: 1365 | is-plain-object "^2.0.4" 1366 | 1367 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1368 | version "2.1.1" 1369 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1370 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1371 | 1372 | is-fullwidth-code-point@^1.0.0: 1373 | version "1.0.0" 1374 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1375 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 1376 | dependencies: 1377 | number-is-nan "^1.0.0" 1378 | 1379 | is-fullwidth-code-point@^2.0.0: 1380 | version "2.0.0" 1381 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1382 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1383 | 1384 | is-glob@^3.1.0: 1385 | version "3.1.0" 1386 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1387 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= 1388 | dependencies: 1389 | is-extglob "^2.1.0" 1390 | 1391 | is-glob@^4.0.0: 1392 | version "4.0.1" 1393 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1394 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1395 | dependencies: 1396 | is-extglob "^2.1.1" 1397 | 1398 | is-negated-glob@^1.0.0: 1399 | version "1.0.0" 1400 | resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" 1401 | integrity sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI= 1402 | 1403 | is-number@^3.0.0: 1404 | version "3.0.0" 1405 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1406 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 1407 | dependencies: 1408 | kind-of "^3.0.2" 1409 | 1410 | is-number@^4.0.0: 1411 | version "4.0.0" 1412 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1413 | integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== 1414 | 1415 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1416 | version "2.0.4" 1417 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1418 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1419 | dependencies: 1420 | isobject "^3.0.1" 1421 | 1422 | is-promise@^2.1: 1423 | version "2.1.0" 1424 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1425 | integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 1426 | 1427 | is-regex@^1.0.4: 1428 | version "1.0.4" 1429 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1430 | integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= 1431 | dependencies: 1432 | has "^1.0.1" 1433 | 1434 | is-relative@^1.0.0: 1435 | version "1.0.0" 1436 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" 1437 | integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== 1438 | dependencies: 1439 | is-unc-path "^1.0.0" 1440 | 1441 | is-stream@^1.1.0: 1442 | version "1.1.0" 1443 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1444 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1445 | 1446 | is-symbol@^1.0.2: 1447 | version "1.0.2" 1448 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 1449 | integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== 1450 | dependencies: 1451 | has-symbols "^1.0.0" 1452 | 1453 | is-unc-path@^1.0.0: 1454 | version "1.0.0" 1455 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" 1456 | integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== 1457 | dependencies: 1458 | unc-path-regex "^0.1.2" 1459 | 1460 | is-utf8@^0.2.0, is-utf8@^0.2.1: 1461 | version "0.2.1" 1462 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1463 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= 1464 | 1465 | is-valid-glob@^1.0.0: 1466 | version "1.0.0" 1467 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" 1468 | integrity sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao= 1469 | 1470 | is-windows@^1.0.1, is-windows@^1.0.2: 1471 | version "1.0.2" 1472 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1473 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1474 | 1475 | isarray@0.0.1: 1476 | version "0.0.1" 1477 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1478 | integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 1479 | 1480 | isarray@1.0.0, isarray@~1.0.0: 1481 | version "1.0.0" 1482 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1483 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1484 | 1485 | isexe@^2.0.0: 1486 | version "2.0.0" 1487 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1488 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1489 | 1490 | isobject@^2.0.0: 1491 | version "2.1.0" 1492 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1493 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 1494 | dependencies: 1495 | isarray "1.0.0" 1496 | 1497 | isobject@^3.0.0, isobject@^3.0.1: 1498 | version "3.0.1" 1499 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1500 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 1501 | 1502 | js-yaml@3.13.0: 1503 | version "3.13.0" 1504 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.0.tgz#38ee7178ac0eea2c97ff6d96fff4b18c7d8cf98e" 1505 | integrity sha512-pZZoSxcCYco+DIKBTimr67J6Hy+EYGZDY/HCWC+iAEA9h1ByhMXAIVUXMcMFpOCxQ/xjXmPI2MkDL5HRm5eFrQ== 1506 | dependencies: 1507 | argparse "^1.0.7" 1508 | esprima "^4.0.0" 1509 | 1510 | json-stable-stringify-without-jsonify@^1.0.1: 1511 | version "1.0.1" 1512 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1513 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1514 | 1515 | just-debounce@^1.0.0: 1516 | version "1.0.0" 1517 | resolved "https://registry.yarnpkg.com/just-debounce/-/just-debounce-1.0.0.tgz#87fccfaeffc0b68cd19d55f6722943f929ea35ea" 1518 | integrity sha1-h/zPrv/AtozRnVX2cilD+SnqNeo= 1519 | 1520 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1521 | version "3.2.2" 1522 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1523 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 1524 | dependencies: 1525 | is-buffer "^1.1.5" 1526 | 1527 | kind-of@^4.0.0: 1528 | version "4.0.0" 1529 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1530 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 1531 | dependencies: 1532 | is-buffer "^1.1.5" 1533 | 1534 | kind-of@^5.0.0, kind-of@^5.0.2: 1535 | version "5.1.0" 1536 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1537 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 1538 | 1539 | kind-of@^6.0.0, kind-of@^6.0.2: 1540 | version "6.0.2" 1541 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1542 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== 1543 | 1544 | last-run@^1.1.0: 1545 | version "1.1.1" 1546 | resolved "https://registry.yarnpkg.com/last-run/-/last-run-1.1.1.tgz#45b96942c17b1c79c772198259ba943bebf8ca5b" 1547 | integrity sha1-RblpQsF7HHnHchmCWbqUO+v4yls= 1548 | dependencies: 1549 | default-resolution "^2.0.0" 1550 | es6-weak-map "^2.0.1" 1551 | 1552 | lazystream@^1.0.0: 1553 | version "1.0.0" 1554 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 1555 | integrity sha1-9plf4PggOS9hOWvolGJAe7dxaOQ= 1556 | dependencies: 1557 | readable-stream "^2.0.5" 1558 | 1559 | lcid@^1.0.0: 1560 | version "1.0.0" 1561 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1562 | integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= 1563 | dependencies: 1564 | invert-kv "^1.0.0" 1565 | 1566 | lcid@^2.0.0: 1567 | version "2.0.0" 1568 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" 1569 | integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== 1570 | dependencies: 1571 | invert-kv "^2.0.0" 1572 | 1573 | lead@^1.0.0: 1574 | version "1.0.0" 1575 | resolved "https://registry.yarnpkg.com/lead/-/lead-1.0.0.tgz#6f14f99a37be3a9dd784f5495690e5903466ee42" 1576 | integrity sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI= 1577 | dependencies: 1578 | flush-write-stream "^1.0.2" 1579 | 1580 | liftoff@^3.1.0: 1581 | version "3.1.0" 1582 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-3.1.0.tgz#c9ba6081f908670607ee79062d700df062c52ed3" 1583 | integrity sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog== 1584 | dependencies: 1585 | extend "^3.0.0" 1586 | findup-sync "^3.0.0" 1587 | fined "^1.0.1" 1588 | flagged-respawn "^1.0.0" 1589 | is-plain-object "^2.0.4" 1590 | object.map "^1.0.0" 1591 | rechoir "^0.6.2" 1592 | resolve "^1.1.7" 1593 | 1594 | load-json-file@^1.0.0: 1595 | version "1.1.0" 1596 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1597 | integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= 1598 | dependencies: 1599 | graceful-fs "^4.1.2" 1600 | parse-json "^2.2.0" 1601 | pify "^2.0.0" 1602 | pinkie-promise "^2.0.0" 1603 | strip-bom "^2.0.0" 1604 | 1605 | locate-path@^3.0.0: 1606 | version "3.0.0" 1607 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1608 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 1609 | dependencies: 1610 | p-locate "^3.0.0" 1611 | path-exists "^3.0.0" 1612 | 1613 | lodash@^4.17.11: 1614 | version "4.17.11" 1615 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 1616 | integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== 1617 | 1618 | log-symbols@2.2.0: 1619 | version "2.2.0" 1620 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 1621 | integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== 1622 | dependencies: 1623 | chalk "^2.0.1" 1624 | 1625 | lru-queue@0.1: 1626 | version "0.1.0" 1627 | resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" 1628 | integrity sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM= 1629 | dependencies: 1630 | es5-ext "~0.10.2" 1631 | 1632 | make-iterator@^1.0.0: 1633 | version "1.0.1" 1634 | resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" 1635 | integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw== 1636 | dependencies: 1637 | kind-of "^6.0.2" 1638 | 1639 | map-age-cleaner@^0.1.1: 1640 | version "0.1.3" 1641 | resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" 1642 | integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== 1643 | dependencies: 1644 | p-defer "^1.0.0" 1645 | 1646 | map-cache@^0.2.0, map-cache@^0.2.2: 1647 | version "0.2.2" 1648 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1649 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 1650 | 1651 | map-stream@0.0.7: 1652 | version "0.0.7" 1653 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.0.7.tgz#8a1f07896d82b10926bd3744a2420009f88974a8" 1654 | integrity sha1-ih8HiW2CsQkmvTdEokIACfiJdKg= 1655 | 1656 | map-visit@^1.0.0: 1657 | version "1.0.0" 1658 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1659 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 1660 | dependencies: 1661 | object-visit "^1.0.0" 1662 | 1663 | matchdep@^2.0.0: 1664 | version "2.0.0" 1665 | resolved "https://registry.yarnpkg.com/matchdep/-/matchdep-2.0.0.tgz#c6f34834a0d8dbc3b37c27ee8bbcb27c7775582e" 1666 | integrity sha1-xvNINKDY28OzfCfui7yyfHd1WC4= 1667 | dependencies: 1668 | findup-sync "^2.0.0" 1669 | micromatch "^3.0.4" 1670 | resolve "^1.4.0" 1671 | stack-trace "0.0.10" 1672 | 1673 | mem@^4.0.0: 1674 | version "4.3.0" 1675 | resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" 1676 | integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== 1677 | dependencies: 1678 | map-age-cleaner "^0.1.1" 1679 | mimic-fn "^2.0.0" 1680 | p-is-promise "^2.0.0" 1681 | 1682 | memoizee@0.4.X: 1683 | version "0.4.14" 1684 | resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.14.tgz#07a00f204699f9a95c2d9e77218271c7cd610d57" 1685 | integrity sha512-/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg== 1686 | dependencies: 1687 | d "1" 1688 | es5-ext "^0.10.45" 1689 | es6-weak-map "^2.0.2" 1690 | event-emitter "^0.3.5" 1691 | is-promise "^2.1" 1692 | lru-queue "0.1" 1693 | next-tick "1" 1694 | timers-ext "^0.1.5" 1695 | 1696 | micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: 1697 | version "3.1.10" 1698 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 1699 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 1700 | dependencies: 1701 | arr-diff "^4.0.0" 1702 | array-unique "^0.3.2" 1703 | braces "^2.3.1" 1704 | define-property "^2.0.2" 1705 | extend-shallow "^3.0.2" 1706 | extglob "^2.0.4" 1707 | fragment-cache "^0.2.1" 1708 | kind-of "^6.0.2" 1709 | nanomatch "^1.2.9" 1710 | object.pick "^1.3.0" 1711 | regex-not "^1.0.0" 1712 | snapdragon "^0.8.1" 1713 | to-regex "^3.0.2" 1714 | 1715 | mimic-fn@^2.0.0: 1716 | version "2.1.0" 1717 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1718 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1719 | 1720 | minimatch@3.0.4, minimatch@^3.0.4: 1721 | version "3.0.4" 1722 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1723 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1724 | dependencies: 1725 | brace-expansion "^1.1.7" 1726 | 1727 | minimist@0.0.8: 1728 | version "0.0.8" 1729 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1730 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 1731 | 1732 | minimist@^1.2.0: 1733 | version "1.2.0" 1734 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1735 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 1736 | 1737 | minipass@^2.2.1, minipass@^2.3.4: 1738 | version "2.3.5" 1739 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 1740 | integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== 1741 | dependencies: 1742 | safe-buffer "^5.1.2" 1743 | yallist "^3.0.0" 1744 | 1745 | minizlib@^1.1.1: 1746 | version "1.2.1" 1747 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 1748 | integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== 1749 | dependencies: 1750 | minipass "^2.2.1" 1751 | 1752 | mixin-deep@^1.2.0: 1753 | version "1.3.1" 1754 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 1755 | integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== 1756 | dependencies: 1757 | for-in "^1.0.2" 1758 | is-extendable "^1.0.1" 1759 | 1760 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: 1761 | version "0.5.1" 1762 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1763 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 1764 | dependencies: 1765 | minimist "0.0.8" 1766 | 1767 | mocha@^6.1.1: 1768 | version "6.1.1" 1769 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-6.1.1.tgz#b4f81a9b673649ef72098cb56bfddbfd39da5127" 1770 | integrity sha512-ayfr68s4kyDnCU0hjkTk5Z8J8dqr1iPUuVjmd+dLFgaGKOPlgx1XrOGn5k3H1LlXNnLBb8voZMYMKxchiA4Ujg== 1771 | dependencies: 1772 | ansi-colors "3.2.3" 1773 | browser-stdout "1.3.1" 1774 | debug "3.2.6" 1775 | diff "3.5.0" 1776 | escape-string-regexp "1.0.5" 1777 | find-up "3.0.0" 1778 | glob "7.1.3" 1779 | growl "1.10.5" 1780 | he "1.2.0" 1781 | js-yaml "3.13.0" 1782 | log-symbols "2.2.0" 1783 | minimatch "3.0.4" 1784 | mkdirp "0.5.1" 1785 | ms "2.1.1" 1786 | node-environment-flags "1.0.4" 1787 | object.assign "4.1.0" 1788 | strip-json-comments "2.0.1" 1789 | supports-color "6.0.0" 1790 | which "1.3.1" 1791 | wide-align "1.1.3" 1792 | yargs "13.2.2" 1793 | yargs-parser "13.0.0" 1794 | yargs-unparser "1.5.0" 1795 | 1796 | ms@2.0.0: 1797 | version "2.0.0" 1798 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1799 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1800 | 1801 | ms@2.1.1, ms@^2.1.1: 1802 | version "2.1.1" 1803 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1804 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 1805 | 1806 | mute-stdout@^1.0.0: 1807 | version "1.0.1" 1808 | resolved "https://registry.yarnpkg.com/mute-stdout/-/mute-stdout-1.0.1.tgz#acb0300eb4de23a7ddeec014e3e96044b3472331" 1809 | integrity sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg== 1810 | 1811 | nan@^2.9.2: 1812 | version "2.13.2" 1813 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.13.2.tgz#f51dc7ae66ba7d5d55e1e6d4d8092e802c9aefe7" 1814 | integrity sha512-TghvYc72wlMGMVMluVo9WRJc0mB8KxxF/gZ4YYFy7V2ZQX9l7rgbPg7vjS9mt6U5HXODVFVI2bOduCzwOMv/lw== 1815 | 1816 | nanomatch@^1.2.9: 1817 | version "1.2.13" 1818 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 1819 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 1820 | dependencies: 1821 | arr-diff "^4.0.0" 1822 | array-unique "^0.3.2" 1823 | define-property "^2.0.2" 1824 | extend-shallow "^3.0.2" 1825 | fragment-cache "^0.2.1" 1826 | is-windows "^1.0.2" 1827 | kind-of "^6.0.2" 1828 | object.pick "^1.3.0" 1829 | regex-not "^1.0.0" 1830 | snapdragon "^0.8.1" 1831 | to-regex "^3.0.1" 1832 | 1833 | needle@^2.2.1: 1834 | version "2.2.4" 1835 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" 1836 | integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== 1837 | dependencies: 1838 | debug "^2.1.2" 1839 | iconv-lite "^0.4.4" 1840 | sax "^1.2.4" 1841 | 1842 | next-tick@1, next-tick@^1.0.0: 1843 | version "1.0.0" 1844 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 1845 | integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= 1846 | 1847 | nice-try@^1.0.4: 1848 | version "1.0.5" 1849 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1850 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1851 | 1852 | node-environment-flags@1.0.4: 1853 | version "1.0.4" 1854 | resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.4.tgz#0b784a6551426bfc16d3b2208424dcbc2b2ff038" 1855 | integrity sha512-M9rwCnWVLW7PX+NUWe3ejEdiLYinRpsEre9hMkU/6NS4h+EEulYaDH1gCEZ2gyXsmw+RXYDaV2JkkTNcsPDJ0Q== 1856 | dependencies: 1857 | object.getownpropertydescriptors "^2.0.3" 1858 | 1859 | node-pre-gyp@^0.10.0: 1860 | version "0.10.3" 1861 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 1862 | integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A== 1863 | dependencies: 1864 | detect-libc "^1.0.2" 1865 | mkdirp "^0.5.1" 1866 | needle "^2.2.1" 1867 | nopt "^4.0.1" 1868 | npm-packlist "^1.1.6" 1869 | npmlog "^4.0.2" 1870 | rc "^1.2.7" 1871 | rimraf "^2.6.1" 1872 | semver "^5.3.0" 1873 | tar "^4" 1874 | 1875 | nopt@^4.0.1: 1876 | version "4.0.1" 1877 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1878 | integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= 1879 | dependencies: 1880 | abbrev "1" 1881 | osenv "^0.1.4" 1882 | 1883 | normalize-package-data@^2.3.2: 1884 | version "2.5.0" 1885 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1886 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1887 | dependencies: 1888 | hosted-git-info "^2.1.4" 1889 | resolve "^1.10.0" 1890 | semver "2 || 3 || 4 || 5" 1891 | validate-npm-package-license "^3.0.1" 1892 | 1893 | normalize-path@^2.0.1, normalize-path@^2.1.1: 1894 | version "2.1.1" 1895 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1896 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 1897 | dependencies: 1898 | remove-trailing-separator "^1.0.1" 1899 | 1900 | normalize-path@^3.0.0: 1901 | version "3.0.0" 1902 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1903 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1904 | 1905 | now-and-later@^2.0.0: 1906 | version "2.0.1" 1907 | resolved "https://registry.yarnpkg.com/now-and-later/-/now-and-later-2.0.1.tgz#8e579c8685764a7cc02cb680380e94f43ccb1f7c" 1908 | integrity sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ== 1909 | dependencies: 1910 | once "^1.3.2" 1911 | 1912 | npm-bundled@^1.0.1: 1913 | version "1.0.6" 1914 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" 1915 | integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== 1916 | 1917 | npm-packlist@^1.1.6: 1918 | version "1.4.1" 1919 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc" 1920 | integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw== 1921 | dependencies: 1922 | ignore-walk "^3.0.1" 1923 | npm-bundled "^1.0.1" 1924 | 1925 | npm-run-path@^2.0.0: 1926 | version "2.0.2" 1927 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1928 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 1929 | dependencies: 1930 | path-key "^2.0.0" 1931 | 1932 | npmlog@^4.0.2: 1933 | version "4.1.2" 1934 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1935 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 1936 | dependencies: 1937 | are-we-there-yet "~1.1.2" 1938 | console-control-strings "~1.1.0" 1939 | gauge "~2.7.3" 1940 | set-blocking "~2.0.0" 1941 | 1942 | number-is-nan@^1.0.0: 1943 | version "1.0.1" 1944 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1945 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 1946 | 1947 | object-assign@4.X, object-assign@^4.1.0: 1948 | version "4.1.1" 1949 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1950 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1951 | 1952 | object-copy@^0.1.0: 1953 | version "0.1.0" 1954 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1955 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 1956 | dependencies: 1957 | copy-descriptor "^0.1.0" 1958 | define-property "^0.2.5" 1959 | kind-of "^3.0.3" 1960 | 1961 | object-keys@^1.0.11, object-keys@^1.0.12: 1962 | version "1.1.1" 1963 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1964 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1965 | 1966 | object-visit@^1.0.0: 1967 | version "1.0.1" 1968 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1969 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 1970 | dependencies: 1971 | isobject "^3.0.0" 1972 | 1973 | object.assign@4.1.0, object.assign@^4.0.4: 1974 | version "4.1.0" 1975 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1976 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1977 | dependencies: 1978 | define-properties "^1.1.2" 1979 | function-bind "^1.1.1" 1980 | has-symbols "^1.0.0" 1981 | object-keys "^1.0.11" 1982 | 1983 | object.defaults@^1.0.0, object.defaults@^1.1.0: 1984 | version "1.1.0" 1985 | resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" 1986 | integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8= 1987 | dependencies: 1988 | array-each "^1.0.1" 1989 | array-slice "^1.0.0" 1990 | for-own "^1.0.0" 1991 | isobject "^3.0.0" 1992 | 1993 | object.getownpropertydescriptors@^2.0.3: 1994 | version "2.0.3" 1995 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 1996 | integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= 1997 | dependencies: 1998 | define-properties "^1.1.2" 1999 | es-abstract "^1.5.1" 2000 | 2001 | object.map@^1.0.0: 2002 | version "1.0.1" 2003 | resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" 2004 | integrity sha1-z4Plncj8wK1fQlDh94s7gb2AHTc= 2005 | dependencies: 2006 | for-own "^1.0.0" 2007 | make-iterator "^1.0.0" 2008 | 2009 | object.pick@^1.2.0, object.pick@^1.3.0: 2010 | version "1.3.0" 2011 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2012 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2013 | dependencies: 2014 | isobject "^3.0.1" 2015 | 2016 | object.reduce@^1.0.0: 2017 | version "1.0.1" 2018 | resolved "https://registry.yarnpkg.com/object.reduce/-/object.reduce-1.0.1.tgz#6fe348f2ac7fa0f95ca621226599096825bb03ad" 2019 | integrity sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60= 2020 | dependencies: 2021 | for-own "^1.0.0" 2022 | make-iterator "^1.0.0" 2023 | 2024 | once@^1.3.0, once@^1.3.1, once@^1.3.2, once@^1.4.0: 2025 | version "1.4.0" 2026 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2027 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2028 | dependencies: 2029 | wrappy "1" 2030 | 2031 | ordered-read-streams@^1.0.0: 2032 | version "1.0.1" 2033 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz#77c0cb37c41525d64166d990ffad7ec6a0e1363e" 2034 | integrity sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4= 2035 | dependencies: 2036 | readable-stream "^2.0.1" 2037 | 2038 | os-homedir@^1.0.0: 2039 | version "1.0.2" 2040 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2041 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 2042 | 2043 | os-locale@^1.4.0: 2044 | version "1.4.0" 2045 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2046 | integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= 2047 | dependencies: 2048 | lcid "^1.0.0" 2049 | 2050 | os-locale@^3.0.0, os-locale@^3.1.0: 2051 | version "3.1.0" 2052 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" 2053 | integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== 2054 | dependencies: 2055 | execa "^1.0.0" 2056 | lcid "^2.0.0" 2057 | mem "^4.0.0" 2058 | 2059 | os-tmpdir@^1.0.0: 2060 | version "1.0.2" 2061 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2062 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2063 | 2064 | osenv@^0.1.4: 2065 | version "0.1.5" 2066 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2067 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== 2068 | dependencies: 2069 | os-homedir "^1.0.0" 2070 | os-tmpdir "^1.0.0" 2071 | 2072 | p-defer@^1.0.0: 2073 | version "1.0.0" 2074 | resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" 2075 | integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= 2076 | 2077 | p-finally@^1.0.0: 2078 | version "1.0.0" 2079 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2080 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2081 | 2082 | p-is-promise@^2.0.0: 2083 | version "2.1.0" 2084 | resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" 2085 | integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== 2086 | 2087 | p-limit@^2.0.0: 2088 | version "2.2.0" 2089 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" 2090 | integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== 2091 | dependencies: 2092 | p-try "^2.0.0" 2093 | 2094 | p-locate@^3.0.0: 2095 | version "3.0.0" 2096 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 2097 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 2098 | dependencies: 2099 | p-limit "^2.0.0" 2100 | 2101 | p-try@^2.0.0: 2102 | version "2.2.0" 2103 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2104 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2105 | 2106 | parse-filepath@^1.0.1: 2107 | version "1.0.2" 2108 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" 2109 | integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= 2110 | dependencies: 2111 | is-absolute "^1.0.0" 2112 | map-cache "^0.2.0" 2113 | path-root "^0.1.1" 2114 | 2115 | parse-json@^2.2.0: 2116 | version "2.2.0" 2117 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2118 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 2119 | dependencies: 2120 | error-ex "^1.2.0" 2121 | 2122 | parse-node-version@^1.0.0: 2123 | version "1.0.1" 2124 | resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" 2125 | integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== 2126 | 2127 | parse-passwd@^1.0.0: 2128 | version "1.0.0" 2129 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2130 | integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= 2131 | 2132 | pascalcase@^0.1.1: 2133 | version "0.1.1" 2134 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2135 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2136 | 2137 | path-dirname@^1.0.0: 2138 | version "1.0.2" 2139 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2140 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= 2141 | 2142 | path-exists@^2.0.0: 2143 | version "2.1.0" 2144 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2145 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= 2146 | dependencies: 2147 | pinkie-promise "^2.0.0" 2148 | 2149 | path-exists@^3.0.0: 2150 | version "3.0.0" 2151 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2152 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 2153 | 2154 | path-is-absolute@^1.0.0: 2155 | version "1.0.1" 2156 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2157 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2158 | 2159 | path-key@^2.0.0, path-key@^2.0.1: 2160 | version "2.0.1" 2161 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2162 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2163 | 2164 | path-parse@^1.0.6: 2165 | version "1.0.6" 2166 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2167 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2168 | 2169 | path-root-regex@^0.1.0: 2170 | version "0.1.2" 2171 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 2172 | integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= 2173 | 2174 | path-root@^0.1.1: 2175 | version "0.1.1" 2176 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 2177 | integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= 2178 | dependencies: 2179 | path-root-regex "^0.1.0" 2180 | 2181 | path-type@^1.0.0: 2182 | version "1.1.0" 2183 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2184 | integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= 2185 | dependencies: 2186 | graceful-fs "^4.1.2" 2187 | pify "^2.0.0" 2188 | pinkie-promise "^2.0.0" 2189 | 2190 | pause-stream@^0.0.11: 2191 | version "0.0.11" 2192 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 2193 | integrity sha1-/lo0sMvOErWqaitAPuLnO2AvFEU= 2194 | dependencies: 2195 | through "~2.3" 2196 | 2197 | pify@^2.0.0: 2198 | version "2.3.0" 2199 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2200 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 2201 | 2202 | pinkie-promise@^2.0.0: 2203 | version "2.0.1" 2204 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2205 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 2206 | dependencies: 2207 | pinkie "^2.0.0" 2208 | 2209 | pinkie@^2.0.0: 2210 | version "2.0.4" 2211 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2212 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 2213 | 2214 | plugin-error@^1.0.1: 2215 | version "1.0.1" 2216 | resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-1.0.1.tgz#77016bd8919d0ac377fdcdd0322328953ca5781c" 2217 | integrity sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA== 2218 | dependencies: 2219 | ansi-colors "^1.0.1" 2220 | arr-diff "^4.0.0" 2221 | arr-union "^3.1.0" 2222 | extend-shallow "^3.0.2" 2223 | 2224 | posix-character-classes@^0.1.0: 2225 | version "0.1.1" 2226 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2227 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2228 | 2229 | pretty-hrtime@^1.0.0: 2230 | version "1.0.3" 2231 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2232 | integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= 2233 | 2234 | process-nextick-args@^1.0.7: 2235 | version "1.0.7" 2236 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2237 | integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= 2238 | 2239 | process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: 2240 | version "2.0.0" 2241 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2242 | integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== 2243 | 2244 | pump@^2.0.0: 2245 | version "2.0.1" 2246 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2247 | integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== 2248 | dependencies: 2249 | end-of-stream "^1.1.0" 2250 | once "^1.3.1" 2251 | 2252 | pump@^3.0.0: 2253 | version "3.0.0" 2254 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2255 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2256 | dependencies: 2257 | end-of-stream "^1.1.0" 2258 | once "^1.3.1" 2259 | 2260 | pumpify@^1.3.5: 2261 | version "1.5.1" 2262 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" 2263 | integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== 2264 | dependencies: 2265 | duplexify "^3.6.0" 2266 | inherits "^2.0.3" 2267 | pump "^2.0.0" 2268 | 2269 | rc@^1.2.7: 2270 | version "1.2.8" 2271 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2272 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 2273 | dependencies: 2274 | deep-extend "^0.6.0" 2275 | ini "~1.3.0" 2276 | minimist "^1.2.0" 2277 | strip-json-comments "~2.0.1" 2278 | 2279 | read-pkg-up@^1.0.1: 2280 | version "1.0.1" 2281 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2282 | integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= 2283 | dependencies: 2284 | find-up "^1.0.0" 2285 | read-pkg "^1.0.0" 2286 | 2287 | read-pkg@^1.0.0: 2288 | version "1.1.0" 2289 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2290 | integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= 2291 | dependencies: 2292 | load-json-file "^1.0.0" 2293 | normalize-package-data "^2.3.2" 2294 | path-type "^1.0.0" 2295 | 2296 | "readable-stream@>=1.0.33-1 <1.1.0-0": 2297 | version "1.0.34" 2298 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2299 | integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= 2300 | dependencies: 2301 | core-util-is "~1.0.0" 2302 | inherits "~2.0.1" 2303 | isarray "0.0.1" 2304 | string_decoder "~0.10.x" 2305 | 2306 | readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: 2307 | version "2.3.6" 2308 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2309 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 2310 | dependencies: 2311 | core-util-is "~1.0.0" 2312 | inherits "~2.0.3" 2313 | isarray "~1.0.0" 2314 | process-nextick-args "~2.0.0" 2315 | safe-buffer "~5.1.1" 2316 | string_decoder "~1.1.1" 2317 | util-deprecate "~1.0.1" 2318 | 2319 | readdirp@^2.2.1: 2320 | version "2.2.1" 2321 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2322 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== 2323 | dependencies: 2324 | graceful-fs "^4.1.11" 2325 | micromatch "^3.1.10" 2326 | readable-stream "^2.0.2" 2327 | 2328 | rechoir@^0.6.2: 2329 | version "0.6.2" 2330 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2331 | integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= 2332 | dependencies: 2333 | resolve "^1.1.6" 2334 | 2335 | regex-not@^1.0.0, regex-not@^1.0.2: 2336 | version "1.0.2" 2337 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2338 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 2339 | dependencies: 2340 | extend-shallow "^3.0.2" 2341 | safe-regex "^1.1.0" 2342 | 2343 | remove-bom-buffer@^3.0.0: 2344 | version "3.0.0" 2345 | resolved "https://registry.yarnpkg.com/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz#c2bf1e377520d324f623892e33c10cac2c252b53" 2346 | integrity sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ== 2347 | dependencies: 2348 | is-buffer "^1.1.5" 2349 | is-utf8 "^0.2.1" 2350 | 2351 | remove-bom-stream@^1.2.0: 2352 | version "1.2.0" 2353 | resolved "https://registry.yarnpkg.com/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz#05f1a593f16e42e1fb90ebf59de8e569525f9523" 2354 | integrity sha1-BfGlk/FuQuH7kOv1nejlaVJflSM= 2355 | dependencies: 2356 | remove-bom-buffer "^3.0.0" 2357 | safe-buffer "^5.1.0" 2358 | through2 "^2.0.3" 2359 | 2360 | remove-trailing-separator@^1.0.1, remove-trailing-separator@^1.1.0: 2361 | version "1.1.0" 2362 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2363 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 2364 | 2365 | repeat-element@^1.1.2: 2366 | version "1.1.3" 2367 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2368 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 2369 | 2370 | repeat-string@^1.6.1: 2371 | version "1.6.1" 2372 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2373 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 2374 | 2375 | replace-ext@^1.0.0: 2376 | version "1.0.0" 2377 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 2378 | integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs= 2379 | 2380 | replace-homedir@^1.0.0: 2381 | version "1.0.0" 2382 | resolved "https://registry.yarnpkg.com/replace-homedir/-/replace-homedir-1.0.0.tgz#e87f6d513b928dde808260c12be7fec6ff6e798c" 2383 | integrity sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw= 2384 | dependencies: 2385 | homedir-polyfill "^1.0.1" 2386 | is-absolute "^1.0.0" 2387 | remove-trailing-separator "^1.1.0" 2388 | 2389 | require-directory@^2.1.1: 2390 | version "2.1.1" 2391 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2392 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2393 | 2394 | require-main-filename@^1.0.1: 2395 | version "1.0.1" 2396 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2397 | integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= 2398 | 2399 | require-main-filename@^2.0.0: 2400 | version "2.0.0" 2401 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 2402 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 2403 | 2404 | resolve-dir@^1.0.0, resolve-dir@^1.0.1: 2405 | version "1.0.1" 2406 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" 2407 | integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= 2408 | dependencies: 2409 | expand-tilde "^2.0.0" 2410 | global-modules "^1.0.0" 2411 | 2412 | resolve-options@^1.1.0: 2413 | version "1.1.0" 2414 | resolved "https://registry.yarnpkg.com/resolve-options/-/resolve-options-1.1.0.tgz#32bb9e39c06d67338dc9378c0d6d6074566ad131" 2415 | integrity sha1-MrueOcBtZzONyTeMDW1gdFZq0TE= 2416 | dependencies: 2417 | value-or-function "^3.0.0" 2418 | 2419 | resolve-url@^0.2.1: 2420 | version "0.2.1" 2421 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2422 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 2423 | 2424 | resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.4.0: 2425 | version "1.10.0" 2426 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" 2427 | integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg== 2428 | dependencies: 2429 | path-parse "^1.0.6" 2430 | 2431 | ret@~0.1.10: 2432 | version "0.1.15" 2433 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2434 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 2435 | 2436 | rimraf@^2.6.1: 2437 | version "2.6.3" 2438 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2439 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 2440 | dependencies: 2441 | glob "^7.1.3" 2442 | 2443 | safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2444 | version "5.1.2" 2445 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2446 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2447 | 2448 | safe-regex@^1.1.0: 2449 | version "1.1.0" 2450 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2451 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 2452 | dependencies: 2453 | ret "~0.1.10" 2454 | 2455 | "safer-buffer@>= 2.1.2 < 3": 2456 | version "2.1.2" 2457 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2458 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2459 | 2460 | sax@^1.2.4: 2461 | version "1.2.4" 2462 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2463 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 2464 | 2465 | semver-greatest-satisfied-range@^1.1.0: 2466 | version "1.1.0" 2467 | resolved "https://registry.yarnpkg.com/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz#13e8c2658ab9691cb0cd71093240280d36f77a5b" 2468 | integrity sha1-E+jCZYq5aRywzXEJMkAoDTb3els= 2469 | dependencies: 2470 | sver-compat "^1.5.0" 2471 | 2472 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0: 2473 | version "5.7.0" 2474 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 2475 | integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== 2476 | 2477 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2478 | version "2.0.0" 2479 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2480 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2481 | 2482 | set-value@^0.4.3: 2483 | version "0.4.3" 2484 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2485 | integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= 2486 | dependencies: 2487 | extend-shallow "^2.0.1" 2488 | is-extendable "^0.1.1" 2489 | is-plain-object "^2.0.1" 2490 | to-object-path "^0.3.0" 2491 | 2492 | set-value@^2.0.0: 2493 | version "2.0.0" 2494 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2495 | integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== 2496 | dependencies: 2497 | extend-shallow "^2.0.1" 2498 | is-extendable "^0.1.1" 2499 | is-plain-object "^2.0.3" 2500 | split-string "^3.0.1" 2501 | 2502 | shebang-command@^1.2.0: 2503 | version "1.2.0" 2504 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2505 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2506 | dependencies: 2507 | shebang-regex "^1.0.0" 2508 | 2509 | shebang-regex@^1.0.0: 2510 | version "1.0.0" 2511 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2512 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2513 | 2514 | should-equal@^2.0.0: 2515 | version "2.0.0" 2516 | resolved "https://registry.yarnpkg.com/should-equal/-/should-equal-2.0.0.tgz#6072cf83047360867e68e98b09d71143d04ee0c3" 2517 | integrity sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA== 2518 | dependencies: 2519 | should-type "^1.4.0" 2520 | 2521 | should-format@^3.0.3: 2522 | version "3.0.3" 2523 | resolved "https://registry.yarnpkg.com/should-format/-/should-format-3.0.3.tgz#9bfc8f74fa39205c53d38c34d717303e277124f1" 2524 | integrity sha1-m/yPdPo5IFxT04w01xcwPidxJPE= 2525 | dependencies: 2526 | should-type "^1.3.0" 2527 | should-type-adaptors "^1.0.1" 2528 | 2529 | should-type-adaptors@^1.0.1: 2530 | version "1.1.0" 2531 | resolved "https://registry.yarnpkg.com/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz#401e7f33b5533033944d5cd8bf2b65027792e27a" 2532 | integrity sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA== 2533 | dependencies: 2534 | should-type "^1.3.0" 2535 | should-util "^1.0.0" 2536 | 2537 | should-type@^1.3.0, should-type@^1.4.0: 2538 | version "1.4.0" 2539 | resolved "https://registry.yarnpkg.com/should-type/-/should-type-1.4.0.tgz#0756d8ce846dfd09843a6947719dfa0d4cff5cf3" 2540 | integrity sha1-B1bYzoRt/QmEOmlHcZ36DUz/XPM= 2541 | 2542 | should-util@^1.0.0: 2543 | version "1.0.0" 2544 | resolved "https://registry.yarnpkg.com/should-util/-/should-util-1.0.0.tgz#c98cda374aa6b190df8ba87c9889c2b4db620063" 2545 | integrity sha1-yYzaN0qmsZDfi6h8mInCtNtiAGM= 2546 | 2547 | should@^13.2.3: 2548 | version "13.2.3" 2549 | resolved "https://registry.yarnpkg.com/should/-/should-13.2.3.tgz#96d8e5acf3e97b49d89b51feaa5ae8d07ef58f10" 2550 | integrity sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ== 2551 | dependencies: 2552 | should-equal "^2.0.0" 2553 | should-format "^3.0.3" 2554 | should-type "^1.4.0" 2555 | should-type-adaptors "^1.0.1" 2556 | should-util "^1.0.0" 2557 | 2558 | signal-exit@^3.0.0: 2559 | version "3.0.2" 2560 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2561 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 2562 | 2563 | snapdragon-node@^2.0.1: 2564 | version "2.1.1" 2565 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2566 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 2567 | dependencies: 2568 | define-property "^1.0.0" 2569 | isobject "^3.0.0" 2570 | snapdragon-util "^3.0.1" 2571 | 2572 | snapdragon-util@^3.0.1: 2573 | version "3.0.1" 2574 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2575 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 2576 | dependencies: 2577 | kind-of "^3.2.0" 2578 | 2579 | snapdragon@^0.8.1: 2580 | version "0.8.2" 2581 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2582 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 2583 | dependencies: 2584 | base "^0.11.1" 2585 | debug "^2.2.0" 2586 | define-property "^0.2.5" 2587 | extend-shallow "^2.0.1" 2588 | map-cache "^0.2.2" 2589 | source-map "^0.5.6" 2590 | source-map-resolve "^0.5.0" 2591 | use "^3.1.0" 2592 | 2593 | source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: 2594 | version "0.5.2" 2595 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2596 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== 2597 | dependencies: 2598 | atob "^2.1.1" 2599 | decode-uri-component "^0.2.0" 2600 | resolve-url "^0.2.1" 2601 | source-map-url "^0.4.0" 2602 | urix "^0.1.0" 2603 | 2604 | source-map-url@^0.4.0: 2605 | version "0.4.0" 2606 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2607 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 2608 | 2609 | source-map@^0.5.1, source-map@^0.5.6: 2610 | version "0.5.7" 2611 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2612 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2613 | 2614 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0: 2615 | version "0.6.1" 2616 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2617 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2618 | 2619 | source-map@^0.7.3: 2620 | version "0.7.3" 2621 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 2622 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 2623 | 2624 | sparkles@^1.0.0: 2625 | version "1.0.1" 2626 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.1.tgz#008db65edce6c50eec0c5e228e1945061dd0437c" 2627 | integrity sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw== 2628 | 2629 | spdx-correct@^3.0.0: 2630 | version "3.1.0" 2631 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 2632 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 2633 | dependencies: 2634 | spdx-expression-parse "^3.0.0" 2635 | spdx-license-ids "^3.0.0" 2636 | 2637 | spdx-exceptions@^2.1.0: 2638 | version "2.2.0" 2639 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 2640 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== 2641 | 2642 | spdx-expression-parse@^3.0.0: 2643 | version "3.0.0" 2644 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2645 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 2646 | dependencies: 2647 | spdx-exceptions "^2.1.0" 2648 | spdx-license-ids "^3.0.0" 2649 | 2650 | spdx-license-ids@^3.0.0: 2651 | version "3.0.4" 2652 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" 2653 | integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA== 2654 | 2655 | split-string@^3.0.1, split-string@^3.0.2: 2656 | version "3.1.0" 2657 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2658 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 2659 | dependencies: 2660 | extend-shallow "^3.0.0" 2661 | 2662 | split@^1.0.1: 2663 | version "1.0.1" 2664 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 2665 | integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== 2666 | dependencies: 2667 | through "2" 2668 | 2669 | sprintf-js@~1.0.2: 2670 | version "1.0.3" 2671 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2672 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2673 | 2674 | stack-trace@0.0.10: 2675 | version "0.0.10" 2676 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" 2677 | integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= 2678 | 2679 | static-extend@^0.1.1: 2680 | version "0.1.2" 2681 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2682 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 2683 | dependencies: 2684 | define-property "^0.2.5" 2685 | object-copy "^0.1.0" 2686 | 2687 | stream-assert@^2.0.3: 2688 | version "2.0.3" 2689 | resolved "https://registry.yarnpkg.com/stream-assert/-/stream-assert-2.0.3.tgz#1ba8a34b67dea06b00ee39261ca6041437233e32" 2690 | integrity sha1-G6ijS2feoGsA7jkmHKYEFDcjPjI= 2691 | dependencies: 2692 | through2 "^0.6.1" 2693 | 2694 | stream-combiner@^0.2.2: 2695 | version "0.2.2" 2696 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.2.2.tgz#aec8cbac177b56b6f4fa479ced8c1912cee52858" 2697 | integrity sha1-rsjLrBd7Vrb0+kec7YwZEs7lKFg= 2698 | dependencies: 2699 | duplexer "~0.1.1" 2700 | through "~2.3.4" 2701 | 2702 | stream-exhaust@^1.0.1: 2703 | version "1.0.2" 2704 | resolved "https://registry.yarnpkg.com/stream-exhaust/-/stream-exhaust-1.0.2.tgz#acdac8da59ef2bc1e17a2c0ccf6c320d120e555d" 2705 | integrity sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw== 2706 | 2707 | stream-shift@^1.0.0: 2708 | version "1.0.0" 2709 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2710 | integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= 2711 | 2712 | string-width@^1.0.1, string-width@^1.0.2: 2713 | version "1.0.2" 2714 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2715 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 2716 | dependencies: 2717 | code-point-at "^1.0.0" 2718 | is-fullwidth-code-point "^1.0.0" 2719 | strip-ansi "^3.0.0" 2720 | 2721 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: 2722 | version "2.1.1" 2723 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2724 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 2725 | dependencies: 2726 | is-fullwidth-code-point "^2.0.0" 2727 | strip-ansi "^4.0.0" 2728 | 2729 | string-width@^3.0.0: 2730 | version "3.1.0" 2731 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 2732 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 2733 | dependencies: 2734 | emoji-regex "^7.0.1" 2735 | is-fullwidth-code-point "^2.0.0" 2736 | strip-ansi "^5.1.0" 2737 | 2738 | string_decoder@~0.10.x: 2739 | version "0.10.31" 2740 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2741 | integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= 2742 | 2743 | string_decoder@~1.1.1: 2744 | version "1.1.1" 2745 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2746 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2747 | dependencies: 2748 | safe-buffer "~5.1.0" 2749 | 2750 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2751 | version "3.0.1" 2752 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2753 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 2754 | dependencies: 2755 | ansi-regex "^2.0.0" 2756 | 2757 | strip-ansi@^4.0.0: 2758 | version "4.0.0" 2759 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2760 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 2761 | dependencies: 2762 | ansi-regex "^3.0.0" 2763 | 2764 | strip-ansi@^5.1.0: 2765 | version "5.2.0" 2766 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 2767 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 2768 | dependencies: 2769 | ansi-regex "^4.1.0" 2770 | 2771 | strip-bom-string@1.X: 2772 | version "1.0.0" 2773 | resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" 2774 | integrity sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI= 2775 | 2776 | strip-bom@^2.0.0: 2777 | version "2.0.0" 2778 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2779 | integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= 2780 | dependencies: 2781 | is-utf8 "^0.2.0" 2782 | 2783 | strip-eof@^1.0.0: 2784 | version "1.0.0" 2785 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2786 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 2787 | 2788 | strip-json-comments@2.0.1, strip-json-comments@~2.0.1: 2789 | version "2.0.1" 2790 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2791 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 2792 | 2793 | supports-color@6.0.0: 2794 | version "6.0.0" 2795 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.0.0.tgz#76cfe742cf1f41bb9b1c29ad03068c05b4c0e40a" 2796 | integrity sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== 2797 | dependencies: 2798 | has-flag "^3.0.0" 2799 | 2800 | supports-color@^5.3.0: 2801 | version "5.5.0" 2802 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2803 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2804 | dependencies: 2805 | has-flag "^3.0.0" 2806 | 2807 | sver-compat@^1.5.0: 2808 | version "1.5.0" 2809 | resolved "https://registry.yarnpkg.com/sver-compat/-/sver-compat-1.5.0.tgz#3cf87dfeb4d07b4a3f14827bc186b3fd0c645cd8" 2810 | integrity sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg= 2811 | dependencies: 2812 | es6-iterator "^2.0.1" 2813 | es6-symbol "^3.1.1" 2814 | 2815 | tar@^4: 2816 | version "4.4.8" 2817 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" 2818 | integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== 2819 | dependencies: 2820 | chownr "^1.1.1" 2821 | fs-minipass "^1.2.5" 2822 | minipass "^2.3.4" 2823 | minizlib "^1.1.1" 2824 | mkdirp "^0.5.0" 2825 | safe-buffer "^5.1.2" 2826 | yallist "^3.0.2" 2827 | 2828 | through2-filter@^3.0.0: 2829 | version "3.0.0" 2830 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-3.0.0.tgz#700e786df2367c2c88cd8aa5be4cf9c1e7831254" 2831 | integrity sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA== 2832 | dependencies: 2833 | through2 "~2.0.0" 2834 | xtend "~4.0.0" 2835 | 2836 | through2@2.X, through2@^2.0.0, through2@^2.0.3, through2@~2.0.0: 2837 | version "2.0.5" 2838 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 2839 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 2840 | dependencies: 2841 | readable-stream "~2.3.6" 2842 | xtend "~4.0.1" 2843 | 2844 | through2@^0.6.1: 2845 | version "0.6.5" 2846 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 2847 | integrity sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg= 2848 | dependencies: 2849 | readable-stream ">=1.0.33-1 <1.1.0-0" 2850 | xtend ">=4.0.0 <4.1.0-0" 2851 | 2852 | through@2, through@^2.3.8, through@~2.3, through@~2.3.4: 2853 | version "2.3.8" 2854 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2855 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 2856 | 2857 | time-stamp@^1.0.0: 2858 | version "1.1.0" 2859 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 2860 | integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= 2861 | 2862 | timers-ext@^0.1.5: 2863 | version "0.1.7" 2864 | resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz#6f57ad8578e07a3fb9f91d9387d65647555e25c6" 2865 | integrity sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ== 2866 | dependencies: 2867 | es5-ext "~0.10.46" 2868 | next-tick "1" 2869 | 2870 | to-absolute-glob@^2.0.0: 2871 | version "2.0.2" 2872 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1865f43d9e74b0822db9f145b78cff7d0f7c849b" 2873 | integrity sha1-GGX0PZ50sIItufFFt4z/fQ98hJs= 2874 | dependencies: 2875 | is-absolute "^1.0.0" 2876 | is-negated-glob "^1.0.0" 2877 | 2878 | to-object-path@^0.3.0: 2879 | version "0.3.0" 2880 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2881 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 2882 | dependencies: 2883 | kind-of "^3.0.2" 2884 | 2885 | to-regex-range@^2.1.0: 2886 | version "2.1.1" 2887 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2888 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 2889 | dependencies: 2890 | is-number "^3.0.0" 2891 | repeat-string "^1.6.1" 2892 | 2893 | to-regex@^3.0.1, to-regex@^3.0.2: 2894 | version "3.0.2" 2895 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2896 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 2897 | dependencies: 2898 | define-property "^2.0.2" 2899 | extend-shallow "^3.0.2" 2900 | regex-not "^1.0.2" 2901 | safe-regex "^1.1.0" 2902 | 2903 | to-through@^2.0.0: 2904 | version "2.0.0" 2905 | resolved "https://registry.yarnpkg.com/to-through/-/to-through-2.0.0.tgz#fc92adaba072647bc0b67d6b03664aa195093af6" 2906 | integrity sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY= 2907 | dependencies: 2908 | through2 "^2.0.3" 2909 | 2910 | typedarray@^0.0.6: 2911 | version "0.0.6" 2912 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2913 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 2914 | 2915 | unc-path-regex@^0.1.2: 2916 | version "0.1.2" 2917 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 2918 | integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= 2919 | 2920 | undertaker-registry@^1.0.0: 2921 | version "1.0.1" 2922 | resolved "https://registry.yarnpkg.com/undertaker-registry/-/undertaker-registry-1.0.1.tgz#5e4bda308e4a8a2ae584f9b9a4359a499825cc50" 2923 | integrity sha1-XkvaMI5KiirlhPm5pDWaSZglzFA= 2924 | 2925 | undertaker@^1.0.0: 2926 | version "1.2.1" 2927 | resolved "https://registry.yarnpkg.com/undertaker/-/undertaker-1.2.1.tgz#701662ff8ce358715324dfd492a4f036055dfe4b" 2928 | integrity sha512-71WxIzDkgYk9ZS+spIB8iZXchFhAdEo2YU8xYqBYJ39DIUIqziK78ftm26eecoIY49X0J2MLhG4hr18Yp6/CMA== 2929 | dependencies: 2930 | arr-flatten "^1.0.1" 2931 | arr-map "^2.0.0" 2932 | bach "^1.0.0" 2933 | collection-map "^1.0.0" 2934 | es6-weak-map "^2.0.1" 2935 | last-run "^1.1.0" 2936 | object.defaults "^1.0.0" 2937 | object.reduce "^1.0.0" 2938 | undertaker-registry "^1.0.0" 2939 | 2940 | union-value@^1.0.0: 2941 | version "1.0.0" 2942 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 2943 | integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= 2944 | dependencies: 2945 | arr-union "^3.1.0" 2946 | get-value "^2.0.6" 2947 | is-extendable "^0.1.1" 2948 | set-value "^0.4.3" 2949 | 2950 | unique-stream@^2.0.2: 2951 | version "2.3.1" 2952 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.3.1.tgz#c65d110e9a4adf9a6c5948b28053d9a8d04cbeac" 2953 | integrity sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A== 2954 | dependencies: 2955 | json-stable-stringify-without-jsonify "^1.0.1" 2956 | through2-filter "^3.0.0" 2957 | 2958 | unset-value@^1.0.0: 2959 | version "1.0.0" 2960 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 2961 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 2962 | dependencies: 2963 | has-value "^0.3.1" 2964 | isobject "^3.0.0" 2965 | 2966 | upath@^1.1.1: 2967 | version "1.1.2" 2968 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" 2969 | integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q== 2970 | 2971 | urix@^0.1.0: 2972 | version "0.1.0" 2973 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2974 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 2975 | 2976 | use@^3.1.0: 2977 | version "3.1.1" 2978 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 2979 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 2980 | 2981 | util-deprecate@~1.0.1: 2982 | version "1.0.2" 2983 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2984 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2985 | 2986 | v8flags@^3.0.1: 2987 | version "3.1.2" 2988 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.1.2.tgz#fc5cd0c227428181e6c29b2992e4f8f1da5e0c9f" 2989 | integrity sha512-MtivA7GF24yMPte9Rp/BWGCYQNaUj86zeYxV/x2RRJMKagImbbv3u8iJC57lNhWLPcGLJmHcHmFWkNsplbbLWw== 2990 | dependencies: 2991 | homedir-polyfill "^1.0.1" 2992 | 2993 | validate-npm-package-license@^3.0.1: 2994 | version "3.0.4" 2995 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2996 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 2997 | dependencies: 2998 | spdx-correct "^3.0.0" 2999 | spdx-expression-parse "^3.0.0" 3000 | 3001 | value-or-function@^3.0.0: 3002 | version "3.0.0" 3003 | resolved "https://registry.yarnpkg.com/value-or-function/-/value-or-function-3.0.0.tgz#1c243a50b595c1be54a754bfece8563b9ff8d813" 3004 | integrity sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM= 3005 | 3006 | vinyl-fs@^3.0.0: 3007 | version "3.0.3" 3008 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7" 3009 | integrity sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng== 3010 | dependencies: 3011 | fs-mkdirp-stream "^1.0.0" 3012 | glob-stream "^6.1.0" 3013 | graceful-fs "^4.0.0" 3014 | is-valid-glob "^1.0.0" 3015 | lazystream "^1.0.0" 3016 | lead "^1.0.0" 3017 | object.assign "^4.0.4" 3018 | pumpify "^1.3.5" 3019 | readable-stream "^2.3.3" 3020 | remove-bom-buffer "^3.0.0" 3021 | remove-bom-stream "^1.2.0" 3022 | resolve-options "^1.1.0" 3023 | through2 "^2.0.0" 3024 | to-through "^2.0.0" 3025 | value-or-function "^3.0.0" 3026 | vinyl "^2.0.0" 3027 | vinyl-sourcemap "^1.1.0" 3028 | 3029 | vinyl-sourcemap@^1.1.0: 3030 | version "1.1.0" 3031 | resolved "https://registry.yarnpkg.com/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz#92a800593a38703a8cdb11d8b300ad4be63b3e16" 3032 | integrity sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY= 3033 | dependencies: 3034 | append-buffer "^1.0.2" 3035 | convert-source-map "^1.5.0" 3036 | graceful-fs "^4.1.6" 3037 | normalize-path "^2.1.1" 3038 | now-and-later "^2.0.0" 3039 | remove-bom-buffer "^3.0.0" 3040 | vinyl "^2.0.0" 3041 | 3042 | vinyl-sourcemaps-apply@^0.2.1: 3043 | version "0.2.1" 3044 | resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" 3045 | integrity sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU= 3046 | dependencies: 3047 | source-map "^0.5.1" 3048 | 3049 | vinyl@^2.0.0, vinyl@^2.2.0: 3050 | version "2.2.0" 3051 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86" 3052 | integrity sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg== 3053 | dependencies: 3054 | clone "^2.1.1" 3055 | clone-buffer "^1.0.0" 3056 | clone-stats "^1.0.0" 3057 | cloneable-readable "^1.0.0" 3058 | remove-trailing-separator "^1.0.1" 3059 | replace-ext "^1.0.0" 3060 | 3061 | which-module@^1.0.0: 3062 | version "1.0.0" 3063 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3064 | integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= 3065 | 3066 | which-module@^2.0.0: 3067 | version "2.0.0" 3068 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3069 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 3070 | 3071 | which@1.3.1, which@^1.2.14, which@^1.2.9: 3072 | version "1.3.1" 3073 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3074 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3075 | dependencies: 3076 | isexe "^2.0.0" 3077 | 3078 | wide-align@1.1.3, wide-align@^1.1.0: 3079 | version "1.1.3" 3080 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3081 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 3082 | dependencies: 3083 | string-width "^1.0.2 || 2" 3084 | 3085 | wrap-ansi@^2.0.0: 3086 | version "2.1.0" 3087 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3088 | integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= 3089 | dependencies: 3090 | string-width "^1.0.1" 3091 | strip-ansi "^3.0.1" 3092 | 3093 | wrappy@1: 3094 | version "1.0.2" 3095 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3096 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3097 | 3098 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.0, xtend@~4.0.1: 3099 | version "4.0.1" 3100 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3101 | integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= 3102 | 3103 | y18n@^3.2.1: 3104 | version "3.2.1" 3105 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3106 | integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= 3107 | 3108 | "y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: 3109 | version "4.0.0" 3110 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 3111 | integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 3112 | 3113 | yallist@^3.0.0, yallist@^3.0.2: 3114 | version "3.0.3" 3115 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 3116 | integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== 3117 | 3118 | yargs-parser@13.0.0, yargs-parser@^13.0.0: 3119 | version "13.0.0" 3120 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.0.0.tgz#3fc44f3e76a8bdb1cc3602e860108602e5ccde8b" 3121 | integrity sha512-w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw== 3122 | dependencies: 3123 | camelcase "^5.0.0" 3124 | decamelize "^1.2.0" 3125 | 3126 | yargs-parser@^11.1.1: 3127 | version "11.1.1" 3128 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" 3129 | integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== 3130 | dependencies: 3131 | camelcase "^5.0.0" 3132 | decamelize "^1.2.0" 3133 | 3134 | yargs-parser@^5.0.0: 3135 | version "5.0.0" 3136 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3137 | integrity sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= 3138 | dependencies: 3139 | camelcase "^3.0.0" 3140 | 3141 | yargs-unparser@1.5.0: 3142 | version "1.5.0" 3143 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.5.0.tgz#f2bb2a7e83cbc87bb95c8e572828a06c9add6e0d" 3144 | integrity sha512-HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw== 3145 | dependencies: 3146 | flat "^4.1.0" 3147 | lodash "^4.17.11" 3148 | yargs "^12.0.5" 3149 | 3150 | yargs@13.2.2: 3151 | version "13.2.2" 3152 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.2.tgz#0c101f580ae95cea7f39d927e7770e3fdc97f993" 3153 | integrity sha512-WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA== 3154 | dependencies: 3155 | cliui "^4.0.0" 3156 | find-up "^3.0.0" 3157 | get-caller-file "^2.0.1" 3158 | os-locale "^3.1.0" 3159 | require-directory "^2.1.1" 3160 | require-main-filename "^2.0.0" 3161 | set-blocking "^2.0.0" 3162 | string-width "^3.0.0" 3163 | which-module "^2.0.0" 3164 | y18n "^4.0.0" 3165 | yargs-parser "^13.0.0" 3166 | 3167 | yargs@^12.0.5: 3168 | version "12.0.5" 3169 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" 3170 | integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== 3171 | dependencies: 3172 | cliui "^4.0.0" 3173 | decamelize "^1.2.0" 3174 | find-up "^3.0.0" 3175 | get-caller-file "^1.0.1" 3176 | os-locale "^3.0.0" 3177 | require-directory "^2.1.1" 3178 | require-main-filename "^1.0.1" 3179 | set-blocking "^2.0.0" 3180 | string-width "^2.0.0" 3181 | which-module "^2.0.0" 3182 | y18n "^3.2.1 || ^4.0.0" 3183 | yargs-parser "^11.1.1" 3184 | 3185 | yargs@^7.1.0: 3186 | version "7.1.0" 3187 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3188 | integrity sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= 3189 | dependencies: 3190 | camelcase "^3.0.0" 3191 | cliui "^3.2.0" 3192 | decamelize "^1.1.1" 3193 | get-caller-file "^1.0.1" 3194 | os-locale "^1.4.0" 3195 | read-pkg-up "^1.0.1" 3196 | require-directory "^2.1.1" 3197 | require-main-filename "^1.0.1" 3198 | set-blocking "^2.0.0" 3199 | string-width "^1.0.2" 3200 | which-module "^1.0.0" 3201 | y18n "^3.2.1" 3202 | yargs-parser "^5.0.0" 3203 | --------------------------------------------------------------------------------