├── .editorconfig ├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── package.json ├── test ├── fixtures │ ├── importedBy │ │ ├── child.scss │ │ ├── parent.scss │ │ └── parent2.scss │ ├── nested │ │ ├── a.scss │ │ ├── b.scss │ │ ├── c.scss │ │ └── d.scss │ └── single │ │ └── index.scss └── main.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | # Unix-style newlines with a newline ending every file 5 | [*] 6 | end_of_line = lf 7 | insert_final_newline = true 8 | indent_style = space 9 | indent_size = 2 10 | charset = utf-8 11 | trim_trailing_whitespace = true 12 | 13 | [*.md] 14 | indent_style = space 15 | indent_size = 2 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "7" 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # gulp-sass-inheritance 2 | 3 | [![npm](https://img.shields.io/npm/v/gulp-sass-inheritance.svg)](https://www.npmjs.com/package/gulp-sass-inheritance) 4 | [![npm](https://img.shields.io/npm/dm/gulp-sass-inheritance.svg)](https://www.npmjs.com/package/gulp-sass-inheritance) 5 | ![travis](https://api.travis-ci.org/berstend/gulp-sass-inheritance.svg?branch=master) 6 | [![Greenkeeper badge](https://badges.greenkeeper.io/berstend/gulp-sass-inheritance.svg)](https://greenkeeper.io/) 7 | ![deps](https://david-dm.org/berstend/gulp-sass-inheritance.svg) 8 | 9 | 10 | > Rebuild a sass/scss file with other files that have imported this file 11 | 12 | * Based on [gulp-jade-inheritance](https://github.com/juanfran/gulp-jade-inheritance) 13 | * Uses [sass-graph](https://github.com/xzyfer/sass-graph) for the heavy lifting 14 | 15 | Useful when working on a larger project: Styles can be (re-)built incrementally on a per-need basis. 16 | 17 | 18 | ## Changelog 19 | 20 | 21 | #### v1.1.0 (2017-05-13) 22 | 23 | * **The file initially emitted is now being passed through as well** 24 | * **Support for nested imports** - Thanks [@safareli](https://github.com/safareli)! Fixes [#3](https://github.com/berstend/gulp-sass-inheritance/issues/3) [#5](https://github.com/berstend/gulp-sass-inheritance/issues/5) 25 | * Added [tests](./test) & solid coverage 26 | * Updated dependencies 27 | 28 | 29 | ###### Previous: v0.5.1 (2015-04-09) 30 | 31 | 32 | 33 | ## Install 34 | 35 | ```bash 36 | # Using npm 37 | npm install gulp-sass-inheritance --save 38 | 39 | # Using yarn 40 | yarn add gulp-sass-inheritance 41 | ``` 42 | 43 | 44 | 45 | 46 | ## Usage 47 | 48 | You can use `gulp-sass-inheritance` with `gulp-changed` to only process the files that have changed but also recompile files that import the one that changed. 49 | 50 | ```js 51 | 'use strict'; 52 | var gulp = require('gulp'); 53 | var sassInheritance = require('gulp-sass-inheritance'); 54 | var sass = require('gulp-sass'); 55 | var cached = require('gulp-cached'); 56 | var gulpif = require('gulp-if'); 57 | var filter = require('gulp-filter'); 58 | 59 | gulp.task('sass', function() { 60 | return gulp.src('src/styles/**/*.scss') 61 | 62 | //filter out unchanged scss files, only works when watching 63 | .pipe(gulpif(global.isWatching, cached('sass'))) 64 | 65 | //find files that depend on the files that have changed 66 | .pipe(sassInheritance({dir: 'src/styles/'})) 67 | 68 | //filter out internal imports (folders and files starting with "_" ) 69 | .pipe(filter(function (file) { 70 | return !/\/_/.test(file.path) || !/^_/.test(file.relative); 71 | })) 72 | 73 | //process scss files 74 | .pipe(sass()) 75 | 76 | //save all the files 77 | .pipe(gulp.dest('dist')); 78 | }); 79 | gulp.task('setWatch', function() { 80 | global.isWatching = true; 81 | }); 82 | gulp.task('watch', ['setWatch', 'sass'], function() { 83 | //your watch functions... 84 | }); 85 | ``` 86 | 87 | 88 | ## Contributing :tada: 89 | ```bash 90 | # Install dependencies 91 | yarn 92 | 93 | # Run tests 94 | yarn test 95 | ``` 96 | 97 | 98 | 99 | ## License 100 | 101 | MIT 102 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var es = require('event-stream'); 4 | var _ = require('lodash'); 5 | var fs = require('fs'); 6 | var gutil = require('gulp-util'); 7 | var sassGraph = require('sass-graph'); 8 | var PLUGIN_NAME = 'gulp-sass-inheritance'; 9 | 10 | var stream; 11 | 12 | function gulpSassInheritance(options) { 13 | options = options || {}; 14 | if (typeof options.dir !== 'string') { 15 | throw new Error('gulp-sass-inheritance: Missing dir in options'); 16 | } 17 | 18 | var files = []; 19 | 20 | function writeStream(currentFile) { 21 | if (currentFile && currentFile.contents.length) { 22 | files.push(currentFile); 23 | } 24 | } 25 | 26 | function recureOnImports(acc,graph,filePath){ 27 | var fullpaths = graph.index[filePath].importedBy 28 | return fullpaths.reduce(function(acc,thePath){ 29 | return acc.concat(thePath, graph.index[thePath].importedBy.reduce(function(acc, aPath){ 30 | return acc.concat(aPath, recureOnImports([], graph, aPath)) 31 | },[])) 32 | },acc) 33 | } 34 | 35 | function endStream() { 36 | var stream = this; 37 | if (files.length) { 38 | var allPaths = _.map(files, 'path'); 39 | var graph = sassGraph.parseDir(options.dir, options); 40 | var newFiles = files; 41 | _.forEach(files, function(file) { 42 | if (graph.index && graph.index[file.path]) { 43 | var fullpaths = recureOnImports([],graph, file.path); 44 | 45 | fullpaths.forEach(function (path) { 46 | if (!_.includes(allPaths, path)) { 47 | allPaths.push(path); 48 | newFiles.push(new gutil.File({ 49 | cwd: file.cwd, 50 | base: file.base, 51 | path: path, 52 | stat: fs.statSync(path), 53 | contents: fs.readFileSync(path) 54 | })); 55 | } 56 | }); 57 | 58 | if (options.debug) { 59 | console.log('File', file.path); 60 | console.log(' - importedBy', fullpaths); 61 | } 62 | } 63 | 64 | }); 65 | es.readArray(files) 66 | .pipe(es.through( 67 | function (f) { 68 | stream.emit('data', f); 69 | }, 70 | function () { 71 | stream.emit('end'); 72 | } 73 | )); 74 | } else { 75 | stream.emit('end'); 76 | } 77 | } 78 | 79 | stream = es.through(writeStream, endStream); 80 | 81 | return stream; 82 | } 83 | 84 | module.exports = gulpSassInheritance; 85 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gulp-sass-inheritance", 3 | "version": "1.1.2", 4 | "description": "Rebuild only changed sass/scss files and all it's dependencies", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "mocha" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git@github.com:berstend/gulp-sass-inheritance.git" 12 | }, 13 | "keywords": [ 14 | "gulpplugin", 15 | "sass", 16 | "sass-inheritance", 17 | "sass-graph", 18 | "gulp-sass-graph", 19 | "sass-dependencies", 20 | "gulp-cached" 21 | ], 22 | "author": "berstend & Juanfran Alcántara", 23 | "license": "MIT", 24 | "bugs": { 25 | "url": "https://github.com/berstend/gulp-sass-inheritance/issues" 26 | }, 27 | "homepage": "https://github.com/berstend/gulp-sass-inheritance", 28 | "dependencies": { 29 | "event-stream": "3.3.4", 30 | "gulp-util": "^3.0.8", 31 | "lodash": "^4.17.4", 32 | "sass-graph": "^2.2.3", 33 | "through2": "^2.0.3", 34 | "vinyl-fs": "^3.0.0" 35 | }, 36 | "devDependencies": { 37 | "chai": "^4.0.1", 38 | "gulp": "^3.9.1", 39 | "mocha": "^4.0.0", 40 | "stream-assert": "^2.0.3" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /test/fixtures/importedBy/child.scss: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | // Illusion is needed to disguise the emptiness within. 4 | -------------------------------------------------------------------------------- /test/fixtures/importedBy/parent.scss: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | @import 'child' 4 | -------------------------------------------------------------------------------- /test/fixtures/importedBy/parent2.scss: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | @import 'child' 4 | -------------------------------------------------------------------------------- /test/fixtures/nested/a.scss: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | @import 'b' 4 | -------------------------------------------------------------------------------- /test/fixtures/nested/b.scss: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | @import 'c' 4 | -------------------------------------------------------------------------------- /test/fixtures/nested/c.scss: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | @import 'd' 4 | -------------------------------------------------------------------------------- /test/fixtures/nested/d.scss: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | // Illusion is needed to disguise the emptiness within. 4 | -------------------------------------------------------------------------------- /test/fixtures/single/index.scss: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | // Illusion is needed to disguise the emptiness within. 4 | -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- 1 | var sassInheritance = require('../index'); 2 | 3 | var path = require('path'); 4 | var chai = require('chai'); 5 | var expect = chai.expect; 6 | var assert = require('stream-assert'); 7 | var gulp = require('gulp'); 8 | 9 | var assertBasename = function(basename) { 10 | return function(newFile) { expect(path.basename(newFile.path)).to.equal(basename) } 11 | } 12 | 13 | describe('gulp-sass-inheritance', function(done) { 14 | 15 | describe('options', function() { 16 | it('should throw without dir', function () { 17 | expect(function(){ 18 | sassInheritance({ dir: undefined }) 19 | }).to.throw("gulp-sass-inheritance: Missing dir in options") 20 | }); 21 | }); 22 | 23 | describe('single', function() { 24 | var testFolder = 'test/fixtures/single' 25 | it('should return a single file with no imports', function(done) { 26 | gulp.src([testFolder + '/index.scss']) 27 | .pipe(sassInheritance({ dir: testFolder })) 28 | .pipe(assert.length(1)) 29 | .pipe(assert.first(assertBasename("index.scss"))) 30 | .pipe(assert.end(done)); 31 | }) 32 | }); 33 | 34 | describe('importedBy', function() { 35 | var testFolder = 'test/fixtures/importedBy' 36 | it('should return all parents importing a file', function(done) { 37 | gulp.src([testFolder + '/child.scss']) 38 | .pipe(sassInheritance({ dir: testFolder })) 39 | .pipe(assert.length(3)) 40 | .pipe(assert.first(assertBasename("child.scss"))) 41 | .pipe(assert.second(assertBasename("parent.scss"))) 42 | .pipe(assert.nth(2, assertBasename("parent2.scss"))) 43 | .pipe(assert.end(done)); 44 | }); 45 | }); 46 | 47 | describe('nested', function() { 48 | var testFolder = 'test/fixtures/nested' 49 | it('should return all nested parents', function(done) { 50 | gulp.src([testFolder + '/d.scss']) 51 | .pipe(sassInheritance({ dir: testFolder })) 52 | .pipe(assert.length(4)) 53 | .pipe(assert.nth(0, assertBasename("d.scss"))) 54 | .pipe(assert.nth(1, assertBasename("c.scss"))) 55 | .pipe(assert.nth(2, assertBasename("b.scss"))) 56 | .pipe(assert.nth(3, assertBasename("a.scss"))) 57 | .pipe(assert.end(done)); 58 | }); 59 | }); 60 | 61 | }); 62 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | amdefine@>=0.0.4: 6 | version "1.0.1" 7 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-styles@^2.2.1: 14 | version "2.2.1" 15 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 16 | 17 | archy@^1.0.0: 18 | version "1.0.0" 19 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 20 | 21 | arr-diff@^2.0.0: 22 | version "2.0.0" 23 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 24 | dependencies: 25 | arr-flatten "^1.0.1" 26 | 27 | arr-flatten@^1.0.1: 28 | version "1.0.3" 29 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 30 | 31 | array-differ@^1.0.0: 32 | version "1.0.0" 33 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 34 | 35 | array-uniq@^1.0.2: 36 | version "1.0.3" 37 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 38 | 39 | array-unique@^0.2.1: 40 | version "0.2.1" 41 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 42 | 43 | assertion-error@^1.0.1: 44 | version "1.0.2" 45 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 46 | 47 | balanced-match@^0.4.1: 48 | version "0.4.2" 49 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 50 | 51 | beeper@^1.0.0: 52 | version "1.1.1" 53 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 54 | 55 | brace-expansion@^1.0.0, brace-expansion@^1.1.7: 56 | version "1.1.7" 57 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 58 | dependencies: 59 | balanced-match "^0.4.1" 60 | concat-map "0.0.1" 61 | 62 | braces@^1.8.2: 63 | version "1.8.5" 64 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 65 | dependencies: 66 | expand-range "^1.8.1" 67 | preserve "^0.2.0" 68 | repeat-element "^1.1.2" 69 | 70 | browser-stdout@1.3.0: 71 | version "1.3.0" 72 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 73 | 74 | buffer-shims@~1.0.0: 75 | version "1.0.0" 76 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 77 | 78 | builtin-modules@^1.0.0: 79 | version "1.1.1" 80 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 81 | 82 | camelcase@^3.0.0: 83 | version "3.0.0" 84 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 85 | 86 | chai@^3.5.0: 87 | version "3.5.0" 88 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 89 | dependencies: 90 | assertion-error "^1.0.1" 91 | deep-eql "^0.1.3" 92 | type-detect "^1.0.0" 93 | 94 | chalk@^1.0.0, chalk@^1.1.1: 95 | version "1.1.3" 96 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 97 | dependencies: 98 | ansi-styles "^2.2.1" 99 | escape-string-regexp "^1.0.2" 100 | has-ansi "^2.0.0" 101 | strip-ansi "^3.0.0" 102 | supports-color "^2.0.0" 103 | 104 | cliui@^3.2.0: 105 | version "3.2.0" 106 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 107 | dependencies: 108 | string-width "^1.0.1" 109 | strip-ansi "^3.0.1" 110 | wrap-ansi "^2.0.0" 111 | 112 | clone-stats@^0.0.1: 113 | version "0.0.1" 114 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 115 | 116 | clone@^0.2.0: 117 | version "0.2.0" 118 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 119 | 120 | clone@^1.0.0, clone@^1.0.2: 121 | version "1.0.2" 122 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 123 | 124 | code-point-at@^1.0.0: 125 | version "1.1.0" 126 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 127 | 128 | commander@2.9.0: 129 | version "2.9.0" 130 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 131 | dependencies: 132 | graceful-readlink ">= 1.0.0" 133 | 134 | concat-map@0.0.1: 135 | version "0.0.1" 136 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 137 | 138 | convert-source-map@^1.1.1: 139 | version "1.5.0" 140 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 141 | 142 | core-util-is@~1.0.0: 143 | version "1.0.2" 144 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 145 | 146 | dateformat@^2.0.0: 147 | version "2.0.0" 148 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 149 | 150 | debug@2.6.0: 151 | version "2.6.0" 152 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 153 | dependencies: 154 | ms "0.7.2" 155 | 156 | decamelize@^1.1.1: 157 | version "1.2.0" 158 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 159 | 160 | deep-eql@^0.1.3: 161 | version "0.1.3" 162 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 163 | dependencies: 164 | type-detect "0.1.1" 165 | 166 | defaults@^1.0.0: 167 | version "1.0.3" 168 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 169 | dependencies: 170 | clone "^1.0.2" 171 | 172 | deprecated@^0.0.1: 173 | version "0.0.1" 174 | resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" 175 | 176 | detect-file@^0.1.0: 177 | version "0.1.0" 178 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 179 | dependencies: 180 | fs-exists-sync "^0.1.0" 181 | 182 | diff@3.2.0: 183 | version "3.2.0" 184 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 185 | 186 | duplexer2@0.0.2: 187 | version "0.0.2" 188 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 189 | dependencies: 190 | readable-stream "~1.1.9" 191 | 192 | duplexer@~0.1.1: 193 | version "0.1.1" 194 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 195 | 196 | duplexify@^3.2.0: 197 | version "3.5.0" 198 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 199 | dependencies: 200 | end-of-stream "1.0.0" 201 | inherits "^2.0.1" 202 | readable-stream "^2.0.0" 203 | stream-shift "^1.0.0" 204 | 205 | end-of-stream@1.0.0: 206 | version "1.0.0" 207 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 208 | dependencies: 209 | once "~1.3.0" 210 | 211 | end-of-stream@~0.1.5: 212 | version "0.1.5" 213 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" 214 | dependencies: 215 | once "~1.3.0" 216 | 217 | error-ex@^1.2.0: 218 | version "1.3.1" 219 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 220 | dependencies: 221 | is-arrayish "^0.2.1" 222 | 223 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 224 | version "1.0.5" 225 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 226 | 227 | event-stream@^3.3.4: 228 | version "3.3.4" 229 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 230 | dependencies: 231 | duplexer "~0.1.1" 232 | from "~0" 233 | map-stream "~0.1.0" 234 | pause-stream "0.0.11" 235 | split "0.3" 236 | stream-combiner "~0.0.4" 237 | through "~2.3.1" 238 | 239 | expand-brackets@^0.1.4: 240 | version "0.1.5" 241 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 242 | dependencies: 243 | is-posix-bracket "^0.1.0" 244 | 245 | expand-range@^1.8.1: 246 | version "1.8.2" 247 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 248 | dependencies: 249 | fill-range "^2.1.0" 250 | 251 | expand-tilde@^1.2.1, expand-tilde@^1.2.2: 252 | version "1.2.2" 253 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 254 | dependencies: 255 | os-homedir "^1.0.1" 256 | 257 | extend-shallow@^2.0.1: 258 | version "2.0.1" 259 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 260 | dependencies: 261 | is-extendable "^0.1.0" 262 | 263 | extend@^3.0.0: 264 | version "3.0.1" 265 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 266 | 267 | extglob@^0.3.1: 268 | version "0.3.2" 269 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 270 | dependencies: 271 | is-extglob "^1.0.0" 272 | 273 | fancy-log@^1.1.0: 274 | version "1.3.0" 275 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 276 | dependencies: 277 | chalk "^1.1.1" 278 | time-stamp "^1.0.0" 279 | 280 | filename-regex@^2.0.0: 281 | version "2.0.1" 282 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 283 | 284 | fill-range@^2.1.0: 285 | version "2.2.3" 286 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 287 | dependencies: 288 | is-number "^2.1.0" 289 | isobject "^2.0.0" 290 | randomatic "^1.1.3" 291 | repeat-element "^1.1.2" 292 | repeat-string "^1.5.2" 293 | 294 | find-index@^0.1.1: 295 | version "0.1.1" 296 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 297 | 298 | find-up@^1.0.0: 299 | version "1.1.2" 300 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 301 | dependencies: 302 | path-exists "^2.0.0" 303 | pinkie-promise "^2.0.0" 304 | 305 | findup-sync@^0.4.2: 306 | version "0.4.3" 307 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12" 308 | dependencies: 309 | detect-file "^0.1.0" 310 | is-glob "^2.0.1" 311 | micromatch "^2.3.7" 312 | resolve-dir "^0.1.0" 313 | 314 | fined@^1.0.1: 315 | version "1.0.2" 316 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.0.2.tgz#5b28424b760d7598960b7ef8480dff8ad3660e97" 317 | dependencies: 318 | expand-tilde "^1.2.1" 319 | lodash.assignwith "^4.0.7" 320 | lodash.isempty "^4.2.1" 321 | lodash.isplainobject "^4.0.4" 322 | lodash.isstring "^4.0.1" 323 | lodash.pick "^4.2.1" 324 | parse-filepath "^1.0.1" 325 | 326 | first-chunk-stream@^1.0.0: 327 | version "1.0.0" 328 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 329 | 330 | flagged-respawn@^0.3.2: 331 | version "0.3.2" 332 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-0.3.2.tgz#ff191eddcd7088a675b2610fffc976be9b8074b5" 333 | 334 | for-in@^1.0.1: 335 | version "1.0.2" 336 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 337 | 338 | for-own@^0.1.4: 339 | version "0.1.5" 340 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 341 | dependencies: 342 | for-in "^1.0.1" 343 | 344 | from@~0: 345 | version "0.1.7" 346 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 347 | 348 | fs-exists-sync@^0.1.0: 349 | version "0.1.0" 350 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 351 | 352 | fs.realpath@^1.0.0: 353 | version "1.0.0" 354 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 355 | 356 | gaze@^0.5.1: 357 | version "0.5.2" 358 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" 359 | dependencies: 360 | globule "~0.1.0" 361 | 362 | get-caller-file@^1.0.1: 363 | version "1.0.2" 364 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 365 | 366 | glob-base@^0.3.0: 367 | version "0.3.0" 368 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 369 | dependencies: 370 | glob-parent "^2.0.0" 371 | is-glob "^2.0.0" 372 | 373 | glob-parent@^2.0.0: 374 | version "2.0.0" 375 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 376 | dependencies: 377 | is-glob "^2.0.0" 378 | 379 | glob-parent@^3.0.0: 380 | version "3.1.0" 381 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 382 | dependencies: 383 | is-glob "^3.1.0" 384 | path-dirname "^1.0.0" 385 | 386 | glob-stream@^3.1.5: 387 | version "3.1.18" 388 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" 389 | dependencies: 390 | glob "^4.3.1" 391 | glob2base "^0.0.12" 392 | minimatch "^2.0.1" 393 | ordered-read-streams "^0.1.0" 394 | through2 "^0.6.1" 395 | unique-stream "^1.0.0" 396 | 397 | glob-stream@^5.3.2: 398 | version "5.3.5" 399 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" 400 | dependencies: 401 | extend "^3.0.0" 402 | glob "^5.0.3" 403 | glob-parent "^3.0.0" 404 | micromatch "^2.3.7" 405 | ordered-read-streams "^0.3.0" 406 | through2 "^0.6.0" 407 | to-absolute-glob "^0.1.1" 408 | unique-stream "^2.0.2" 409 | 410 | glob-watcher@^0.0.6: 411 | version "0.0.6" 412 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" 413 | dependencies: 414 | gaze "^0.5.1" 415 | 416 | glob2base@^0.0.12: 417 | version "0.0.12" 418 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 419 | dependencies: 420 | find-index "^0.1.1" 421 | 422 | glob@7.1.1, glob@^7.0.0: 423 | version "7.1.1" 424 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 425 | dependencies: 426 | fs.realpath "^1.0.0" 427 | inflight "^1.0.4" 428 | inherits "2" 429 | minimatch "^3.0.2" 430 | once "^1.3.0" 431 | path-is-absolute "^1.0.0" 432 | 433 | glob@^4.3.1: 434 | version "4.5.3" 435 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" 436 | dependencies: 437 | inflight "^1.0.4" 438 | inherits "2" 439 | minimatch "^2.0.1" 440 | once "^1.3.0" 441 | 442 | glob@^5.0.3: 443 | version "5.0.15" 444 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 445 | dependencies: 446 | inflight "^1.0.4" 447 | inherits "2" 448 | minimatch "2 || 3" 449 | once "^1.3.0" 450 | path-is-absolute "^1.0.0" 451 | 452 | glob@~3.1.21: 453 | version "3.1.21" 454 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" 455 | dependencies: 456 | graceful-fs "~1.2.0" 457 | inherits "1" 458 | minimatch "~0.2.11" 459 | 460 | global-modules@^0.2.3: 461 | version "0.2.3" 462 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 463 | dependencies: 464 | global-prefix "^0.1.4" 465 | is-windows "^0.2.0" 466 | 467 | global-prefix@^0.1.4: 468 | version "0.1.5" 469 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 470 | dependencies: 471 | homedir-polyfill "^1.0.0" 472 | ini "^1.3.4" 473 | is-windows "^0.2.0" 474 | which "^1.2.12" 475 | 476 | globule@~0.1.0: 477 | version "0.1.0" 478 | resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" 479 | dependencies: 480 | glob "~3.1.21" 481 | lodash "~1.0.1" 482 | minimatch "~0.2.11" 483 | 484 | glogg@^1.0.0: 485 | version "1.0.0" 486 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 487 | dependencies: 488 | sparkles "^1.0.0" 489 | 490 | graceful-fs@^3.0.0: 491 | version "3.0.11" 492 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" 493 | dependencies: 494 | natives "^1.1.0" 495 | 496 | graceful-fs@^4.0.0, graceful-fs@^4.1.2: 497 | version "4.1.11" 498 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 499 | 500 | graceful-fs@~1.2.0: 501 | version "1.2.3" 502 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 503 | 504 | "graceful-readlink@>= 1.0.0": 505 | version "1.0.1" 506 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 507 | 508 | growl@1.9.2: 509 | version "1.9.2" 510 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 511 | 512 | gulp-sourcemaps@1.6.0: 513 | version "1.6.0" 514 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" 515 | dependencies: 516 | convert-source-map "^1.1.1" 517 | graceful-fs "^4.1.2" 518 | strip-bom "^2.0.0" 519 | through2 "^2.0.0" 520 | vinyl "^1.0.0" 521 | 522 | gulp-util@^3.0.0, gulp-util@^3.0.8: 523 | version "3.0.8" 524 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 525 | dependencies: 526 | array-differ "^1.0.0" 527 | array-uniq "^1.0.2" 528 | beeper "^1.0.0" 529 | chalk "^1.0.0" 530 | dateformat "^2.0.0" 531 | fancy-log "^1.1.0" 532 | gulplog "^1.0.0" 533 | has-gulplog "^0.1.0" 534 | lodash._reescape "^3.0.0" 535 | lodash._reevaluate "^3.0.0" 536 | lodash._reinterpolate "^3.0.0" 537 | lodash.template "^3.0.0" 538 | minimist "^1.1.0" 539 | multipipe "^0.1.2" 540 | object-assign "^3.0.0" 541 | replace-ext "0.0.1" 542 | through2 "^2.0.0" 543 | vinyl "^0.5.0" 544 | 545 | gulp@^3.9.1: 546 | version "3.9.1" 547 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4" 548 | dependencies: 549 | archy "^1.0.0" 550 | chalk "^1.0.0" 551 | deprecated "^0.0.1" 552 | gulp-util "^3.0.0" 553 | interpret "^1.0.0" 554 | liftoff "^2.1.0" 555 | minimist "^1.1.0" 556 | orchestrator "^0.3.0" 557 | pretty-hrtime "^1.0.0" 558 | semver "^4.1.0" 559 | tildify "^1.0.0" 560 | v8flags "^2.0.2" 561 | vinyl-fs "^0.3.0" 562 | 563 | gulplog@^1.0.0: 564 | version "1.0.0" 565 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 566 | dependencies: 567 | glogg "^1.0.0" 568 | 569 | has-ansi@^2.0.0: 570 | version "2.0.0" 571 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 572 | dependencies: 573 | ansi-regex "^2.0.0" 574 | 575 | has-flag@^1.0.0: 576 | version "1.0.0" 577 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 578 | 579 | has-gulplog@^0.1.0: 580 | version "0.1.0" 581 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 582 | dependencies: 583 | sparkles "^1.0.0" 584 | 585 | homedir-polyfill@^1.0.0: 586 | version "1.0.1" 587 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 588 | dependencies: 589 | parse-passwd "^1.0.0" 590 | 591 | hosted-git-info@^2.1.4: 592 | version "2.4.2" 593 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 594 | 595 | inflight@^1.0.4: 596 | version "1.0.6" 597 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 598 | dependencies: 599 | once "^1.3.0" 600 | wrappy "1" 601 | 602 | inherits@1: 603 | version "1.0.2" 604 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" 605 | 606 | inherits@2, inherits@^2.0.1, inherits@~2.0.1: 607 | version "2.0.3" 608 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 609 | 610 | ini@^1.3.4: 611 | version "1.3.4" 612 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 613 | 614 | interpret@^1.0.0: 615 | version "1.0.3" 616 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 617 | 618 | invert-kv@^1.0.0: 619 | version "1.0.0" 620 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 621 | 622 | is-absolute@^0.2.3: 623 | version "0.2.6" 624 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" 625 | dependencies: 626 | is-relative "^0.2.1" 627 | is-windows "^0.2.0" 628 | 629 | is-arrayish@^0.2.1: 630 | version "0.2.1" 631 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 632 | 633 | is-buffer@^1.1.5: 634 | version "1.1.5" 635 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 636 | 637 | is-builtin-module@^1.0.0: 638 | version "1.0.0" 639 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 640 | dependencies: 641 | builtin-modules "^1.0.0" 642 | 643 | is-dotfile@^1.0.0: 644 | version "1.0.2" 645 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 646 | 647 | is-equal-shallow@^0.1.3: 648 | version "0.1.3" 649 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 650 | dependencies: 651 | is-primitive "^2.0.0" 652 | 653 | is-extendable@^0.1.0, is-extendable@^0.1.1: 654 | version "0.1.1" 655 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 656 | 657 | is-extglob@^1.0.0: 658 | version "1.0.0" 659 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 660 | 661 | is-extglob@^2.1.0: 662 | version "2.1.1" 663 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 664 | 665 | is-fullwidth-code-point@^1.0.0: 666 | version "1.0.0" 667 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 668 | dependencies: 669 | number-is-nan "^1.0.0" 670 | 671 | is-glob@^2.0.0, is-glob@^2.0.1: 672 | version "2.0.1" 673 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 674 | dependencies: 675 | is-extglob "^1.0.0" 676 | 677 | is-glob@^3.1.0: 678 | version "3.1.0" 679 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 680 | dependencies: 681 | is-extglob "^2.1.0" 682 | 683 | is-number@^2.0.2, is-number@^2.1.0: 684 | version "2.1.0" 685 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 686 | dependencies: 687 | kind-of "^3.0.2" 688 | 689 | is-posix-bracket@^0.1.0: 690 | version "0.1.1" 691 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 692 | 693 | is-primitive@^2.0.0: 694 | version "2.0.0" 695 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 696 | 697 | is-relative@^0.2.1: 698 | version "0.2.1" 699 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 700 | dependencies: 701 | is-unc-path "^0.1.1" 702 | 703 | is-stream@^1.0.1: 704 | version "1.1.0" 705 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 706 | 707 | is-unc-path@^0.1.1: 708 | version "0.1.2" 709 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" 710 | dependencies: 711 | unc-path-regex "^0.1.0" 712 | 713 | is-utf8@^0.2.0: 714 | version "0.2.1" 715 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 716 | 717 | is-valid-glob@^0.3.0: 718 | version "0.3.0" 719 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" 720 | 721 | is-windows@^0.2.0: 722 | version "0.2.0" 723 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 724 | 725 | isarray@0.0.1: 726 | version "0.0.1" 727 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 728 | 729 | isarray@1.0.0, isarray@~1.0.0: 730 | version "1.0.0" 731 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 732 | 733 | isexe@^2.0.0: 734 | version "2.0.0" 735 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 736 | 737 | isobject@^2.0.0: 738 | version "2.1.0" 739 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 740 | dependencies: 741 | isarray "1.0.0" 742 | 743 | js-base64@^2.1.8: 744 | version "2.1.9" 745 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 746 | 747 | json-stable-stringify@^1.0.0: 748 | version "1.0.1" 749 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 750 | dependencies: 751 | jsonify "~0.0.0" 752 | 753 | json3@3.3.2: 754 | version "3.3.2" 755 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 756 | 757 | jsonify@~0.0.0: 758 | version "0.0.0" 759 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 760 | 761 | kind-of@^3.0.2: 762 | version "3.2.0" 763 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 764 | dependencies: 765 | is-buffer "^1.1.5" 766 | 767 | lazystream@^1.0.0: 768 | version "1.0.0" 769 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 770 | dependencies: 771 | readable-stream "^2.0.5" 772 | 773 | lcid@^1.0.0: 774 | version "1.0.0" 775 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 776 | dependencies: 777 | invert-kv "^1.0.0" 778 | 779 | liftoff@^2.1.0: 780 | version "2.3.0" 781 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385" 782 | dependencies: 783 | extend "^3.0.0" 784 | findup-sync "^0.4.2" 785 | fined "^1.0.1" 786 | flagged-respawn "^0.3.2" 787 | lodash.isplainobject "^4.0.4" 788 | lodash.isstring "^4.0.1" 789 | lodash.mapvalues "^4.4.0" 790 | rechoir "^0.6.2" 791 | resolve "^1.1.7" 792 | 793 | load-json-file@^1.0.0: 794 | version "1.1.0" 795 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 796 | dependencies: 797 | graceful-fs "^4.1.2" 798 | parse-json "^2.2.0" 799 | pify "^2.0.0" 800 | pinkie-promise "^2.0.0" 801 | strip-bom "^2.0.0" 802 | 803 | lodash._baseassign@^3.0.0: 804 | version "3.2.0" 805 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 806 | dependencies: 807 | lodash._basecopy "^3.0.0" 808 | lodash.keys "^3.0.0" 809 | 810 | lodash._basecopy@^3.0.0: 811 | version "3.0.1" 812 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 813 | 814 | lodash._basecreate@^3.0.0: 815 | version "3.0.3" 816 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 817 | 818 | lodash._basetostring@^3.0.0: 819 | version "3.0.1" 820 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 821 | 822 | lodash._basevalues@^3.0.0: 823 | version "3.0.0" 824 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 825 | 826 | lodash._getnative@^3.0.0: 827 | version "3.9.1" 828 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 829 | 830 | lodash._isiterateecall@^3.0.0: 831 | version "3.0.9" 832 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 833 | 834 | lodash._reescape@^3.0.0: 835 | version "3.0.0" 836 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 837 | 838 | lodash._reevaluate@^3.0.0: 839 | version "3.0.0" 840 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 841 | 842 | lodash._reinterpolate@^3.0.0: 843 | version "3.0.0" 844 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 845 | 846 | lodash._root@^3.0.0: 847 | version "3.0.1" 848 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 849 | 850 | lodash.assignwith@^4.0.7: 851 | version "4.2.0" 852 | resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb" 853 | 854 | lodash.create@3.1.1: 855 | version "3.1.1" 856 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 857 | dependencies: 858 | lodash._baseassign "^3.0.0" 859 | lodash._basecreate "^3.0.0" 860 | lodash._isiterateecall "^3.0.0" 861 | 862 | lodash.escape@^3.0.0: 863 | version "3.2.0" 864 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 865 | dependencies: 866 | lodash._root "^3.0.0" 867 | 868 | lodash.isarguments@^3.0.0: 869 | version "3.1.0" 870 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 871 | 872 | lodash.isarray@^3.0.0: 873 | version "3.0.4" 874 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 875 | 876 | lodash.isempty@^4.2.1: 877 | version "4.4.0" 878 | resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e" 879 | 880 | lodash.isequal@^4.0.0: 881 | version "4.5.0" 882 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 883 | 884 | lodash.isplainobject@^4.0.4: 885 | version "4.0.6" 886 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 887 | 888 | lodash.isstring@^4.0.1: 889 | version "4.0.1" 890 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 891 | 892 | lodash.keys@^3.0.0: 893 | version "3.1.2" 894 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 895 | dependencies: 896 | lodash._getnative "^3.0.0" 897 | lodash.isarguments "^3.0.0" 898 | lodash.isarray "^3.0.0" 899 | 900 | lodash.mapvalues@^4.4.0: 901 | version "4.6.0" 902 | resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" 903 | 904 | lodash.pick@^4.2.1: 905 | version "4.4.0" 906 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 907 | 908 | lodash.restparam@^3.0.0: 909 | version "3.6.1" 910 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 911 | 912 | lodash.template@^3.0.0: 913 | version "3.6.2" 914 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 915 | dependencies: 916 | lodash._basecopy "^3.0.0" 917 | lodash._basetostring "^3.0.0" 918 | lodash._basevalues "^3.0.0" 919 | lodash._isiterateecall "^3.0.0" 920 | lodash._reinterpolate "^3.0.0" 921 | lodash.escape "^3.0.0" 922 | lodash.keys "^3.0.0" 923 | lodash.restparam "^3.0.0" 924 | lodash.templatesettings "^3.0.0" 925 | 926 | lodash.templatesettings@^3.0.0: 927 | version "3.1.1" 928 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 929 | dependencies: 930 | lodash._reinterpolate "^3.0.0" 931 | lodash.escape "^3.0.0" 932 | 933 | lodash@^4.0.0, lodash@^4.17.4: 934 | version "4.17.4" 935 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 936 | 937 | lodash@~1.0.1: 938 | version "1.0.2" 939 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" 940 | 941 | lru-cache@2: 942 | version "2.7.3" 943 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 944 | 945 | map-cache@^0.2.0: 946 | version "0.2.2" 947 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 948 | 949 | map-stream@~0.1.0: 950 | version "0.1.0" 951 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 952 | 953 | merge-stream@^1.0.0: 954 | version "1.0.1" 955 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 956 | dependencies: 957 | readable-stream "^2.0.1" 958 | 959 | micromatch@^2.3.7: 960 | version "2.3.11" 961 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 962 | dependencies: 963 | arr-diff "^2.0.0" 964 | array-unique "^0.2.1" 965 | braces "^1.8.2" 966 | expand-brackets "^0.1.4" 967 | extglob "^0.3.1" 968 | filename-regex "^2.0.0" 969 | is-extglob "^1.0.0" 970 | is-glob "^2.0.1" 971 | kind-of "^3.0.2" 972 | normalize-path "^2.0.1" 973 | object.omit "^2.0.0" 974 | parse-glob "^3.0.4" 975 | regex-cache "^0.4.2" 976 | 977 | "minimatch@2 || 3", minimatch@^3.0.2: 978 | version "3.0.4" 979 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 980 | dependencies: 981 | brace-expansion "^1.1.7" 982 | 983 | minimatch@^2.0.1: 984 | version "2.0.10" 985 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 986 | dependencies: 987 | brace-expansion "^1.0.0" 988 | 989 | minimatch@~0.2.11: 990 | version "0.2.14" 991 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" 992 | dependencies: 993 | lru-cache "2" 994 | sigmund "~1.0.0" 995 | 996 | minimist@0.0.8: 997 | version "0.0.8" 998 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 999 | 1000 | minimist@^1.1.0: 1001 | version "1.2.0" 1002 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1003 | 1004 | mkdirp@0.5.1, mkdirp@^0.5.0: 1005 | version "0.5.1" 1006 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1007 | dependencies: 1008 | minimist "0.0.8" 1009 | 1010 | mocha@^3.3.0: 1011 | version "3.3.0" 1012 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.3.0.tgz#d29b7428d3f52c82e2e65df1ecb7064e1aabbfb5" 1013 | dependencies: 1014 | browser-stdout "1.3.0" 1015 | commander "2.9.0" 1016 | debug "2.6.0" 1017 | diff "3.2.0" 1018 | escape-string-regexp "1.0.5" 1019 | glob "7.1.1" 1020 | growl "1.9.2" 1021 | json3 "3.3.2" 1022 | lodash.create "3.1.1" 1023 | mkdirp "0.5.1" 1024 | supports-color "3.1.2" 1025 | 1026 | ms@0.7.2: 1027 | version "0.7.2" 1028 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1029 | 1030 | multipipe@^0.1.2: 1031 | version "0.1.2" 1032 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 1033 | dependencies: 1034 | duplexer2 "0.0.2" 1035 | 1036 | natives@^1.1.0: 1037 | version "1.1.0" 1038 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.0.tgz#e9ff841418a6b2ec7a495e939984f78f163e6e31" 1039 | 1040 | normalize-package-data@^2.3.2: 1041 | version "2.3.8" 1042 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 1043 | dependencies: 1044 | hosted-git-info "^2.1.4" 1045 | is-builtin-module "^1.0.0" 1046 | semver "2 || 3 || 4 || 5" 1047 | validate-npm-package-license "^3.0.1" 1048 | 1049 | normalize-path@^2.0.1: 1050 | version "2.1.1" 1051 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1052 | dependencies: 1053 | remove-trailing-separator "^1.0.1" 1054 | 1055 | number-is-nan@^1.0.0: 1056 | version "1.0.1" 1057 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1058 | 1059 | object-assign@^3.0.0: 1060 | version "3.0.0" 1061 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1062 | 1063 | object-assign@^4.0.0: 1064 | version "4.1.1" 1065 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1066 | 1067 | object.omit@^2.0.0: 1068 | version "2.0.1" 1069 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1070 | dependencies: 1071 | for-own "^0.1.4" 1072 | is-extendable "^0.1.1" 1073 | 1074 | once@^1.3.0: 1075 | version "1.4.0" 1076 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1077 | dependencies: 1078 | wrappy "1" 1079 | 1080 | once@~1.3.0: 1081 | version "1.3.3" 1082 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1083 | dependencies: 1084 | wrappy "1" 1085 | 1086 | orchestrator@^0.3.0: 1087 | version "0.3.8" 1088 | resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e" 1089 | dependencies: 1090 | end-of-stream "~0.1.5" 1091 | sequencify "~0.0.7" 1092 | stream-consume "~0.1.0" 1093 | 1094 | ordered-read-streams@^0.1.0: 1095 | version "0.1.0" 1096 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" 1097 | 1098 | ordered-read-streams@^0.3.0: 1099 | version "0.3.0" 1100 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" 1101 | dependencies: 1102 | is-stream "^1.0.1" 1103 | readable-stream "^2.0.1" 1104 | 1105 | os-homedir@^1.0.0, os-homedir@^1.0.1: 1106 | version "1.0.2" 1107 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1108 | 1109 | os-locale@^1.4.0: 1110 | version "1.4.0" 1111 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1112 | dependencies: 1113 | lcid "^1.0.0" 1114 | 1115 | parse-filepath@^1.0.1: 1116 | version "1.0.1" 1117 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73" 1118 | dependencies: 1119 | is-absolute "^0.2.3" 1120 | map-cache "^0.2.0" 1121 | path-root "^0.1.1" 1122 | 1123 | parse-glob@^3.0.4: 1124 | version "3.0.4" 1125 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1126 | dependencies: 1127 | glob-base "^0.3.0" 1128 | is-dotfile "^1.0.0" 1129 | is-extglob "^1.0.0" 1130 | is-glob "^2.0.0" 1131 | 1132 | parse-json@^2.2.0: 1133 | version "2.2.0" 1134 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1135 | dependencies: 1136 | error-ex "^1.2.0" 1137 | 1138 | parse-passwd@^1.0.0: 1139 | version "1.0.0" 1140 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 1141 | 1142 | path-dirname@^1.0.0: 1143 | version "1.0.2" 1144 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 1145 | 1146 | path-exists@^2.0.0: 1147 | version "2.1.0" 1148 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1149 | dependencies: 1150 | pinkie-promise "^2.0.0" 1151 | 1152 | path-is-absolute@^1.0.0: 1153 | version "1.0.1" 1154 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1155 | 1156 | path-parse@^1.0.5: 1157 | version "1.0.5" 1158 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1159 | 1160 | path-root-regex@^0.1.0: 1161 | version "0.1.2" 1162 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 1163 | 1164 | path-root@^0.1.1: 1165 | version "0.1.1" 1166 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 1167 | dependencies: 1168 | path-root-regex "^0.1.0" 1169 | 1170 | path-type@^1.0.0: 1171 | version "1.1.0" 1172 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1173 | dependencies: 1174 | graceful-fs "^4.1.2" 1175 | pify "^2.0.0" 1176 | pinkie-promise "^2.0.0" 1177 | 1178 | pause-stream@0.0.11: 1179 | version "0.0.11" 1180 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1181 | dependencies: 1182 | through "~2.3" 1183 | 1184 | pify@^2.0.0: 1185 | version "2.3.0" 1186 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1187 | 1188 | pinkie-promise@^2.0.0: 1189 | version "2.0.1" 1190 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1191 | dependencies: 1192 | pinkie "^2.0.0" 1193 | 1194 | pinkie@^2.0.0: 1195 | version "2.0.4" 1196 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1197 | 1198 | preserve@^0.2.0: 1199 | version "0.2.0" 1200 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1201 | 1202 | pretty-hrtime@^1.0.0: 1203 | version "1.0.3" 1204 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 1205 | 1206 | process-nextick-args@~1.0.6: 1207 | version "1.0.7" 1208 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1209 | 1210 | randomatic@^1.1.3: 1211 | version "1.1.6" 1212 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1213 | dependencies: 1214 | is-number "^2.0.2" 1215 | kind-of "^3.0.2" 1216 | 1217 | read-pkg-up@^1.0.1: 1218 | version "1.0.1" 1219 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1220 | dependencies: 1221 | find-up "^1.0.0" 1222 | read-pkg "^1.0.0" 1223 | 1224 | read-pkg@^1.0.0: 1225 | version "1.1.0" 1226 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1227 | dependencies: 1228 | load-json-file "^1.0.0" 1229 | normalize-package-data "^2.3.2" 1230 | path-type "^1.0.0" 1231 | 1232 | "readable-stream@>=1.0.33-1 <1.1.0-0": 1233 | version "1.0.34" 1234 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 1235 | dependencies: 1236 | core-util-is "~1.0.0" 1237 | inherits "~2.0.1" 1238 | isarray "0.0.1" 1239 | string_decoder "~0.10.x" 1240 | 1241 | readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.1.5: 1242 | version "2.2.9" 1243 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 1244 | dependencies: 1245 | buffer-shims "~1.0.0" 1246 | core-util-is "~1.0.0" 1247 | inherits "~2.0.1" 1248 | isarray "~1.0.0" 1249 | process-nextick-args "~1.0.6" 1250 | string_decoder "~1.0.0" 1251 | util-deprecate "~1.0.1" 1252 | 1253 | readable-stream@~1.1.9: 1254 | version "1.1.14" 1255 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 1256 | dependencies: 1257 | core-util-is "~1.0.0" 1258 | inherits "~2.0.1" 1259 | isarray "0.0.1" 1260 | string_decoder "~0.10.x" 1261 | 1262 | rechoir@^0.6.2: 1263 | version "0.6.2" 1264 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1265 | dependencies: 1266 | resolve "^1.1.6" 1267 | 1268 | regex-cache@^0.4.2: 1269 | version "0.4.3" 1270 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1271 | dependencies: 1272 | is-equal-shallow "^0.1.3" 1273 | is-primitive "^2.0.0" 1274 | 1275 | remove-trailing-separator@^1.0.1: 1276 | version "1.0.1" 1277 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 1278 | 1279 | repeat-element@^1.1.2: 1280 | version "1.1.2" 1281 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1282 | 1283 | repeat-string@^1.5.2: 1284 | version "1.6.1" 1285 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1286 | 1287 | replace-ext@0.0.1: 1288 | version "0.0.1" 1289 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 1290 | 1291 | require-directory@^2.1.1: 1292 | version "2.1.1" 1293 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1294 | 1295 | require-main-filename@^1.0.1: 1296 | version "1.0.1" 1297 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1298 | 1299 | resolve-dir@^0.1.0: 1300 | version "0.1.1" 1301 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 1302 | dependencies: 1303 | expand-tilde "^1.2.2" 1304 | global-modules "^0.2.3" 1305 | 1306 | resolve@^1.1.6, resolve@^1.1.7: 1307 | version "1.3.3" 1308 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 1309 | dependencies: 1310 | path-parse "^1.0.5" 1311 | 1312 | sass-graph@^2.2.3: 1313 | version "2.2.3" 1314 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.3.tgz#2ba9f170f6cafed5b51665abe13cf319c9269c31" 1315 | dependencies: 1316 | glob "^7.0.0" 1317 | lodash "^4.0.0" 1318 | scss-tokenizer "^0.2.3" 1319 | yargs "^6.6.0" 1320 | 1321 | scss-tokenizer@^0.2.3: 1322 | version "0.2.3" 1323 | resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" 1324 | dependencies: 1325 | js-base64 "^2.1.8" 1326 | source-map "^0.4.2" 1327 | 1328 | "semver@2 || 3 || 4 || 5", semver@^4.1.0: 1329 | version "4.3.6" 1330 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 1331 | 1332 | sequencify@~0.0.7: 1333 | version "0.0.7" 1334 | resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" 1335 | 1336 | set-blocking@^2.0.0: 1337 | version "2.0.0" 1338 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1339 | 1340 | sigmund@~1.0.0: 1341 | version "1.0.1" 1342 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 1343 | 1344 | source-map@^0.4.2: 1345 | version "0.4.4" 1346 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1347 | dependencies: 1348 | amdefine ">=0.0.4" 1349 | 1350 | sparkles@^1.0.0: 1351 | version "1.0.0" 1352 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 1353 | 1354 | spdx-correct@~1.0.0: 1355 | version "1.0.2" 1356 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1357 | dependencies: 1358 | spdx-license-ids "^1.0.2" 1359 | 1360 | spdx-expression-parse@~1.0.0: 1361 | version "1.0.4" 1362 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1363 | 1364 | spdx-license-ids@^1.0.2: 1365 | version "1.2.2" 1366 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1367 | 1368 | split@0.3: 1369 | version "0.3.3" 1370 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 1371 | dependencies: 1372 | through "2" 1373 | 1374 | stream-assert@^2.0.3: 1375 | version "2.0.3" 1376 | resolved "https://registry.yarnpkg.com/stream-assert/-/stream-assert-2.0.3.tgz#1ba8a34b67dea06b00ee39261ca6041437233e32" 1377 | dependencies: 1378 | through2 "^0.6.1" 1379 | 1380 | stream-combiner@~0.0.4: 1381 | version "0.0.4" 1382 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 1383 | dependencies: 1384 | duplexer "~0.1.1" 1385 | 1386 | stream-consume@~0.1.0: 1387 | version "0.1.0" 1388 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 1389 | 1390 | stream-shift@^1.0.0: 1391 | version "1.0.0" 1392 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 1393 | 1394 | string-width@^1.0.1, string-width@^1.0.2: 1395 | version "1.0.2" 1396 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1397 | dependencies: 1398 | code-point-at "^1.0.0" 1399 | is-fullwidth-code-point "^1.0.0" 1400 | strip-ansi "^3.0.0" 1401 | 1402 | string_decoder@~0.10.x: 1403 | version "0.10.31" 1404 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1405 | 1406 | string_decoder@~1.0.0: 1407 | version "1.0.0" 1408 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 1409 | dependencies: 1410 | buffer-shims "~1.0.0" 1411 | 1412 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1413 | version "3.0.1" 1414 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1415 | dependencies: 1416 | ansi-regex "^2.0.0" 1417 | 1418 | strip-bom-stream@^1.0.0: 1419 | version "1.0.0" 1420 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" 1421 | dependencies: 1422 | first-chunk-stream "^1.0.0" 1423 | strip-bom "^2.0.0" 1424 | 1425 | strip-bom@^1.0.0: 1426 | version "1.0.0" 1427 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" 1428 | dependencies: 1429 | first-chunk-stream "^1.0.0" 1430 | is-utf8 "^0.2.0" 1431 | 1432 | strip-bom@^2.0.0: 1433 | version "2.0.0" 1434 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1435 | dependencies: 1436 | is-utf8 "^0.2.0" 1437 | 1438 | supports-color@3.1.2: 1439 | version "3.1.2" 1440 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 1441 | dependencies: 1442 | has-flag "^1.0.0" 1443 | 1444 | supports-color@^2.0.0: 1445 | version "2.0.0" 1446 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1447 | 1448 | through2-filter@^2.0.0: 1449 | version "2.0.0" 1450 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" 1451 | dependencies: 1452 | through2 "~2.0.0" 1453 | xtend "~4.0.0" 1454 | 1455 | through2@^0.6.0, through2@^0.6.1: 1456 | version "0.6.5" 1457 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 1458 | dependencies: 1459 | readable-stream ">=1.0.33-1 <1.1.0-0" 1460 | xtend ">=4.0.0 <4.1.0-0" 1461 | 1462 | through2@^2.0.0, through2@^2.0.3, through2@~2.0.0: 1463 | version "2.0.3" 1464 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 1465 | dependencies: 1466 | readable-stream "^2.1.5" 1467 | xtend "~4.0.1" 1468 | 1469 | through@2, through@~2.3, through@~2.3.1: 1470 | version "2.3.8" 1471 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1472 | 1473 | tildify@^1.0.0: 1474 | version "1.2.0" 1475 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" 1476 | dependencies: 1477 | os-homedir "^1.0.0" 1478 | 1479 | time-stamp@^1.0.0: 1480 | version "1.0.1" 1481 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" 1482 | 1483 | to-absolute-glob@^0.1.1: 1484 | version "0.1.1" 1485 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" 1486 | dependencies: 1487 | extend-shallow "^2.0.1" 1488 | 1489 | type-detect@0.1.1: 1490 | version "0.1.1" 1491 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 1492 | 1493 | type-detect@^1.0.0: 1494 | version "1.0.0" 1495 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 1496 | 1497 | unc-path-regex@^0.1.0: 1498 | version "0.1.2" 1499 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 1500 | 1501 | unique-stream@^1.0.0: 1502 | version "1.0.0" 1503 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" 1504 | 1505 | unique-stream@^2.0.2: 1506 | version "2.2.1" 1507 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" 1508 | dependencies: 1509 | json-stable-stringify "^1.0.0" 1510 | through2-filter "^2.0.0" 1511 | 1512 | user-home@^1.1.1: 1513 | version "1.1.1" 1514 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1515 | 1516 | util-deprecate@~1.0.1: 1517 | version "1.0.2" 1518 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1519 | 1520 | v8flags@^2.0.2: 1521 | version "2.1.1" 1522 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1523 | dependencies: 1524 | user-home "^1.1.1" 1525 | 1526 | vali-date@^1.0.0: 1527 | version "1.0.0" 1528 | resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" 1529 | 1530 | validate-npm-package-license@^3.0.1: 1531 | version "3.0.1" 1532 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1533 | dependencies: 1534 | spdx-correct "~1.0.0" 1535 | spdx-expression-parse "~1.0.0" 1536 | 1537 | vinyl-fs@^0.3.0: 1538 | version "0.3.14" 1539 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" 1540 | dependencies: 1541 | defaults "^1.0.0" 1542 | glob-stream "^3.1.5" 1543 | glob-watcher "^0.0.6" 1544 | graceful-fs "^3.0.0" 1545 | mkdirp "^0.5.0" 1546 | strip-bom "^1.0.0" 1547 | through2 "^0.6.1" 1548 | vinyl "^0.4.0" 1549 | 1550 | vinyl-fs@^2.4.4: 1551 | version "2.4.4" 1552 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" 1553 | dependencies: 1554 | duplexify "^3.2.0" 1555 | glob-stream "^5.3.2" 1556 | graceful-fs "^4.0.0" 1557 | gulp-sourcemaps "1.6.0" 1558 | is-valid-glob "^0.3.0" 1559 | lazystream "^1.0.0" 1560 | lodash.isequal "^4.0.0" 1561 | merge-stream "^1.0.0" 1562 | mkdirp "^0.5.0" 1563 | object-assign "^4.0.0" 1564 | readable-stream "^2.0.4" 1565 | strip-bom "^2.0.0" 1566 | strip-bom-stream "^1.0.0" 1567 | through2 "^2.0.0" 1568 | through2-filter "^2.0.0" 1569 | vali-date "^1.0.0" 1570 | vinyl "^1.0.0" 1571 | 1572 | vinyl@^0.4.0: 1573 | version "0.4.6" 1574 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 1575 | dependencies: 1576 | clone "^0.2.0" 1577 | clone-stats "^0.0.1" 1578 | 1579 | vinyl@^0.5.0: 1580 | version "0.5.3" 1581 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 1582 | dependencies: 1583 | clone "^1.0.0" 1584 | clone-stats "^0.0.1" 1585 | replace-ext "0.0.1" 1586 | 1587 | vinyl@^1.0.0: 1588 | version "1.2.0" 1589 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" 1590 | dependencies: 1591 | clone "^1.0.0" 1592 | clone-stats "^0.0.1" 1593 | replace-ext "0.0.1" 1594 | 1595 | which-module@^1.0.0: 1596 | version "1.0.0" 1597 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 1598 | 1599 | which@^1.2.12: 1600 | version "1.2.14" 1601 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 1602 | dependencies: 1603 | isexe "^2.0.0" 1604 | 1605 | wrap-ansi@^2.0.0: 1606 | version "2.1.0" 1607 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1608 | dependencies: 1609 | string-width "^1.0.1" 1610 | strip-ansi "^3.0.1" 1611 | 1612 | wrappy@1: 1613 | version "1.0.2" 1614 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1615 | 1616 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.0, xtend@~4.0.1: 1617 | version "4.0.1" 1618 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1619 | 1620 | y18n@^3.2.1: 1621 | version "3.2.1" 1622 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1623 | 1624 | yargs-parser@^4.2.0: 1625 | version "4.2.1" 1626 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 1627 | dependencies: 1628 | camelcase "^3.0.0" 1629 | 1630 | yargs@^6.6.0: 1631 | version "6.6.0" 1632 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 1633 | dependencies: 1634 | camelcase "^3.0.0" 1635 | cliui "^3.2.0" 1636 | decamelize "^1.1.1" 1637 | get-caller-file "^1.0.1" 1638 | os-locale "^1.4.0" 1639 | read-pkg-up "^1.0.1" 1640 | require-directory "^2.1.1" 1641 | require-main-filename "^1.0.1" 1642 | set-blocking "^2.0.0" 1643 | string-width "^1.0.2" 1644 | which-module "^1.0.0" 1645 | y18n "^3.2.1" 1646 | yargs-parser "^4.2.0" 1647 | --------------------------------------------------------------------------------