├── .gitignore ├── .npmignore ├── .travis.yml ├── ChangeLog.md ├── LICENSE ├── README.md ├── gulpfile.js ├── index.js ├── package.json ├── test └── test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | 3 | node_modules/ 4 | 5 | test/ 6 | .travis.yml 7 | 8 | gulpfile.js 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - iojs 5 | - "0.12" 6 | - "0.10" 7 | - "4.0" 8 | - "4.1" 9 | -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- 1 | # 2.0.0 2 | 3 | - Update postcss and color dependencies 4 | 5 | # 1.0.3 6 | 7 | - Just code refactoring 8 | 9 | # 1.0.2 10 | 11 | - Added: rgba(rgb(), a) syntax 12 | 13 | # 1.0.1 14 | 15 | - Fixed: Remove extra plugin.postcss hack #11 16 | 17 | # 1.0.0 18 | 19 | - Postcss 5.0 20 | 21 | # 0.1.2 22 | 23 | - Updated: dependencies 24 | 25 | # 0.1.1 26 | 27 | - Fixed: converting rgba in gradients 28 | 29 | # 0.1.0 30 | 31 | - Bumped minor version 32 | 33 | # 0.0.9 34 | 35 | - Updated: used plugin guidelines 36 | 37 | # 0.0.8 38 | 39 | - Added: rgba(#rgb, a) syntax 40 | 41 | # 0.0.7 42 | 43 | - Fixed: proper white(1) and black(1) (was rgba(..., 0.1)) 44 | 45 | # 0.0.6 46 | 47 | - Fixed: Fixed processing of comma-separated values 48 | 49 | # 0.0.5 50 | 51 | - Updated: postcss 4.1 52 | - Fixed: #rgb.a in brackets (for ex: radial-gradient(white(0.05), white(0))) 53 | - Changed: black() and white() can be passed without argument 54 | 55 | # 0.0.4 56 | 57 | - Changed: black() and white() accepts 0 in argument 58 | 59 | # 0.0.3 60 | 61 | - Changed: plugin now transforms color in series 62 | 63 | # 0.0.2 64 | 65 | - Fixed: long values transformation 66 | 67 | # 0.0.1 68 | 69 | - Changed: hex syntax from `#rgb a` to `#rgb.a` 70 | 71 | # 0.0.0 72 | 73 | Initial release 74 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright 2015 Ivan Vlasenko 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PostCSS Color Alpha [![Build Status](https://travis-ci.org/avanes/postcss-color-alpha.svg)](https://travis-ci.org/avanes/postcss-color-alpha) [![NPM version](https://badge.fury.io/js/postcss-color-alpha.svg)](https://www.npmjs.org/package/postcss-color-alpha) 2 | 3 | [PostCSS] plugin to transform color from `#rgb.a` to `rgba()`. 4 | 5 | [PostCSS]: https://github.com/postcss/postcss 6 | 7 | ```css 8 | /* Input examples */ 9 | .foo { color: black(.1) } 10 | .bar { color: white(0.2); } 11 | .baz { color: #0fc.3; } 12 | .woo { color: #00ffcc.45; } 13 | .hoo { border-color: #000 #000.5 white white(0.5); } 14 | .boo { text-shadow: 1px 1px 1px #0fc.1, 3px 3px 5px rgba(#fff, .5); } 15 | ``` 16 | 17 | ```css 18 | /* Output examples */ 19 | .foo { color: rgba(0, 0, 0, 0.1); } 20 | .bar { color: rgba(255, 255, 255, 0.2); } 21 | .baz { color: rgba(0, 255, 204, 0.3); } 22 | .woo { color: rgba(0, 255, 204, 0.45); } 23 | .hoo { border-color: #000 rgba(0, 0, 0, 0.5) white rgba(255, 255, 255, 0.5); } 24 | .boo { text-shadow: 1px 1px 1px rgba(0, 255, 204, 0.1), 3px 3px 5px rgba(255, 255, 255, 0.5); } 25 | ``` 26 | 27 | ## Install 28 | 29 | ```sh 30 | $ npm install postcss-color-alpha 31 | ``` 32 | 33 | ## Usage 34 | 35 | ```js 36 | postcss([ require('postcss-color-alpha') ]) 37 | ``` 38 | 39 | See [PostCSS] docs for examples for your environment. 40 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'); 2 | var watch = require('gulp-watch'); 3 | 4 | gulp.task('lint', function () { 5 | var jshint = require('gulp-jshint'); 6 | return gulp.src(['index.js', 'test/*.js', 'gulpfile.js']) 7 | .pipe(jshint()) 8 | .pipe(jshint.reporter('jshint-stylish')) 9 | .pipe(jshint.reporter('fail')); 10 | }); 11 | 12 | gulp.task('test', function () { 13 | var mocha = require('gulp-mocha'); 14 | return gulp.src('test/*.js', { read: false }).pipe(mocha()); 15 | }); 16 | 17 | gulp.task('watch', function() { 18 | gulp.watch('**/*.js', ['default']); 19 | }); 20 | 21 | gulp.task('default', ['lint', 'test']); 22 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | var postcss = require("postcss"), 2 | color = require("color"), 3 | messageHelpers = require("postcss-message-helpers"), 4 | list = postcss.list; 5 | 6 | var HEX_A_RE = /#([0-9a-f]{3}|[0-9a-f]{6})(\.\d+)\b/i, 7 | BW_RE = /(black|white)\((0?\.?\d+)?\)/i, 8 | BW_RE_2 = /^(black|white)\((0?\.?\d+)?\)/i, 9 | RGBA_RE = /rgba\(#([0-9a-f]{3}|[0-9a-f]{6}),\ ?(0?\.?\d+)\)/i, 10 | RGBA_RGB_RE = /rgba\((rgb\([0-9]{1,3},\ ?[0-9]{1,3},\ ?[0-9]{1,3}\)),\ ?(0?\.?\d+)\)/i, 11 | BRACKETS_RE = /\((..*)\)/; 12 | 13 | module.exports = postcss.plugin('postcss-color-alpha', function (opts) { 14 | return function (css, result) { 15 | // Transform CSS AST here 16 | css.walkDecls(function transformDecl(decl) { 17 | if ( !decl.value || !( 18 | decl.value.match(HEX_A_RE) || 19 | decl.value.match(BW_RE) || 20 | decl.value.match(RGBA_RE) || 21 | decl.value.match(RGBA_RGB_RE) 22 | ) 23 | ) { 24 | return; 25 | } 26 | 27 | decl.value = messageHelpers.try(function () { 28 | return converter(decl.value); 29 | }); 30 | }); 31 | }; 32 | }); 33 | 34 | var converter = function (string) { 35 | return transformRgbRgbAlpha( 36 | transformRgbAlpha( 37 | transformHexAlpha( 38 | transformBlackWhiteAlpha(string) 39 | ) 40 | ) 41 | ); 42 | }; 43 | 44 | var parser = function(string, matcher, matcher2, callback) { 45 | var convertedCommaParts = []; 46 | var commaParts = list.comma(string); 47 | 48 | for (var i = 0; i < commaParts.length; i++) { 49 | var convertedParts = []; 50 | var parts = list.space(commaParts[i]); 51 | for (var j = 0; j < parts.length; j++) { 52 | var part = parts[j]; 53 | 54 | var matches = matcher2.exec(part); 55 | if ( !matches ) { 56 | convertedParts.push(checkInnerBrackets(part)); 57 | continue; 58 | } 59 | 60 | convertedParts.push(callback(matches)); 61 | 62 | } 63 | convertedCommaParts.push(convertedParts.join(' ').trim()); 64 | } 65 | return convertedCommaParts.join(', '); 66 | }; 67 | 68 | var transformRgbRgbAlpha = function(string) { 69 | return parser(string, RGBA_RGB_RE, RGBA_RGB_RE, function(matches){ 70 | return color(matches[1]).alpha(matches[2]).toString(); 71 | }); 72 | }; 73 | 74 | var transformRgbAlpha = function(string) { 75 | return parser(string, RGBA_RE, RGBA_RE, function(matches) { 76 | return color('#'+matches[1]) 77 | .alpha(parseAlpha(matches[2])) 78 | .toString(); 79 | }); 80 | }; 81 | 82 | var transformHexAlpha = function(string) { 83 | return parser(string, HEX_A_RE, HEX_A_RE, function(matches) { 84 | var rgbHex = matches[1]; 85 | if ( matches[1] === "black" ) 86 | rgbHex = "000"; 87 | else if ( matches[1] === "white" ) 88 | rgbHex = "FFF"; 89 | 90 | var alpha = matches[2]; 91 | if ( typeof alpha === 'undefined' ) 92 | alpha = '.0'; 93 | alpha = parseAlpha(alpha); 94 | 95 | return color('#' + rgbHex) 96 | .alpha(alpha) 97 | .toString(); 98 | }); 99 | }; 100 | 101 | var transformBlackWhiteAlpha = function(string) { 102 | return parser(string, BW_RE, BW_RE_2, function(matches) { 103 | var alpha, rgbHex; 104 | 105 | alpha = matches[2]; 106 | if ( typeof alpha === 'undefined' ) 107 | alpha = '.0'; 108 | alpha = parseAlpha(alpha); 109 | 110 | if ( matches[1] === "black" ) 111 | rgbHex = "000"; 112 | else if ( matches[1] === "white" ) 113 | rgbHex = "FFF"; 114 | return '#' + rgbHex + alpha; 115 | }); 116 | }; 117 | 118 | var checkInnerBrackets = function(string) { 119 | var convertedParts = []; 120 | var matches = BRACKETS_RE.exec(string); 121 | if ( !matches ) 122 | return string; 123 | var parts = list.comma(matches[1]); 124 | for (var i = 0; i < parts.length; i++) { 125 | var part = parts[i]; 126 | convertedParts.push(converter(part)); 127 | } 128 | return string.substr(0, matches.index) + '(' + convertedParts.join(', ') + ')'; 129 | }; 130 | 131 | var parseAlpha = function(alpha) { 132 | if ( alpha.indexOf('.') === -1 && alpha !== '1') 133 | alpha = '.' + alpha; 134 | if ( alpha === '1' ) 135 | alpha = ''; 136 | if ( alpha[0] === '0' ) 137 | alpha = alpha.substr(1); 138 | return alpha; 139 | }; 140 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-color-alpha", 3 | "version": "2.0.0", 4 | "description": "PostCSS plugin to transform color from '#rgb.a' to rgba()", 5 | "keywords": [ 6 | "postcss", 7 | "css", 8 | "postcss-plugin", 9 | "color", 10 | "alpha" 11 | ], 12 | "author": "Ivan Vlasenko ", 13 | "license": "MIT", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/avanes/postcss-color-alpha.git" 17 | }, 18 | "dependencies": { 19 | "color": "^1.0.3", 20 | "postcss": "^6.0.1", 21 | "postcss-message-helpers": "^2.0.0" 22 | }, 23 | "devDependencies": { 24 | "chai": "3.3.0", 25 | "gulp": "3.9.0", 26 | "gulp-jshint": "1.11.2", 27 | "gulp-mocha": "2.1.3", 28 | "gulp-watch": "^4.3.5", 29 | "jshint-stylish": "2.0.1", 30 | "mocha": "2.3.3" 31 | }, 32 | "scripts": { 33 | "test": "gulp" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | var postcss = require('postcss'); 2 | var expect = require('chai').expect; 3 | 4 | var plugin = require('../'); 5 | 6 | var test = function (input, output, opts) { 7 | expect(postcss([plugin(opts)]).process(input).css).to.eql(output); 8 | }; 9 | 10 | describe('postcss-color-alpha', function () { 11 | it('converts black() to rgba', function () { 12 | test('a{ color: black(0) }', 'a{ color: rgba(0, 0, 0, 0) }'); 13 | }); 14 | 15 | it('converts white() to rgba', function () { 16 | test('a{ color: black(.3) }', 'a{ color: rgba(0, 0, 0, 0.3) }'); 17 | test('a{ color: white(.2) }', 'a{ color: rgba(255, 255, 255, 0.2) }'); 18 | test('a{ color: black(0) }', 'a{ color: rgba(0, 0, 0, 0) }'); 19 | test('a{ color: white(0) }', 'a{ color: rgba(255, 255, 255, 0) }'); 20 | test('a{ color: black(1) }', 'a{ color: #000 }'); 21 | test('a{ color: white(1) }', 'a{ color: #FFF }'); 22 | }); 23 | 24 | it('converts white() without arguments to rgba', function () { 25 | test('a{ color: white() }', 'a{ color: rgba(255, 255, 255, 0) }'); 26 | }); 27 | 28 | it('converts `#rgb.a` to rgba', function () { 29 | test('a{ color: #0fc.3 }', 'a{ color: rgba(0, 255, 204, 0.3) }'); 30 | }); 31 | 32 | it('converts `#rrggbb.a` to rgba', function () { 33 | test('a{ color: #00ffcc.45 }', 'a{ color: rgba(0, 255, 204, 0.45) }'); 34 | }); 35 | 36 | it('converts `#rgb.a` to rgba in long prop values', function () { 37 | test('div{ border: solid 1px #0fc.45 }', 'div{ border: solid 1px rgba(0, 255, 204, 0.45) }'); 38 | }); 39 | 40 | it('converts black() or white() to rgba in long prop values', function () { 41 | test('div{ border: solid 1px black(0.9) }', 'div{ border: solid 1px rgba(0, 0, 0, 0.9) }'); 42 | }); 43 | 44 | it('converts `#rgb.a` to rgba in series', function () { 45 | test('div{ border-color: #0fc.1 #000.2 #fff.3 #ccc.4 }', 'div{ border-color: rgba(0, 255, 204, 0.1) rgba(0, 0, 0, 0.2) rgba(255, 255, 255, 0.3) rgba(204, 204, 204, 0.4) }'); 46 | }); 47 | 48 | it('converts mixed colors to rgba', function () { 49 | test('div{ border-color: #0fc #000.2 white(.3) black }', 'div{ border-color: #0fc rgba(0, 0, 0, 0.2) rgba(255, 255, 255, 0.3) black }'); 50 | }); 51 | 52 | it('converts #rgb.a in gradients', function() { 53 | test('div{ background: #004400 radial-gradient(#fff.05, #fff.0) }', 'div{ background: #004400 radial-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)) }'); 54 | }); 55 | 56 | it('converts white() in gradients', function() { 57 | test('div{ background: #004400 radial-gradient(white(0.05), white(0)) }', 'div{ background: #004400 radial-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)) }'); 58 | }); 59 | 60 | it('converts comma-separated values', function() { 61 | test('.bg { text-shadow: 1px 1px 1px #0fc.1, 3px 3px 5px #fff.05;}', '.bg { text-shadow: 1px 1px 1px rgba(0, 255, 204, 0.1), 3px 3px 5px rgba(255, 255, 255, 0.05);}'); 62 | }); 63 | 64 | it('convertas rgba(#rgb, a) to rgba(r, g, b, a)', function() { 65 | test('a{ color: rgba(#000, .6) }', 'a{ color: rgba(0, 0, 0, 0.6) }'); 66 | test('b{ border-color: rgba(#000, .6) rgba(#fff, 0.1) #333 #666 }', 'b{ border-color: rgba(0, 0, 0, 0.6) rgba(255, 255, 255, 0.1) #333 #666 }'); 67 | test('.bg { text-shadow: 1px 1px 1px rgba(#0fc, .1), 3px 3px 5px rgba(#fff, .05);}', '.bg { text-shadow: 1px 1px 1px rgba(0, 255, 204, 0.1), 3px 3px 5px rgba(255, 255, 255, 0.05);}'); 68 | }); 69 | 70 | it('converts rgba(#rgb, 0) in gradients', function() { 71 | test( 72 | 'background-image: linear-gradient(to bottom, rgba(#fff, .6) 0%, rgba(#fff, 0), 100%);', 73 | 'background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0), 100%);' 74 | ); 75 | }); 76 | 77 | it('converts rgba(rgb(), a)', function() { 78 | test( 79 | 'a { color: rgba(rgb(204, 0, 255), 0.4); }', 80 | 'a { color: rgba(204, 0, 255, 0.4); }' 81 | ); 82 | }); 83 | }); 84 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | ajv@^4.9.1: 10 | version "4.11.8" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ansi-regex@^2.0.0: 17 | version "2.1.1" 18 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 19 | 20 | ansi-styles@^2.2.1: 21 | version "2.2.1" 22 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 23 | 24 | anymatch@^1.3.0: 25 | version "1.3.0" 26 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 27 | dependencies: 28 | arrify "^1.0.0" 29 | micromatch "^2.1.5" 30 | 31 | aproba@^1.0.3: 32 | version "1.1.2" 33 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 34 | 35 | archy@^1.0.0: 36 | version "1.0.0" 37 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 38 | 39 | are-we-there-yet@~1.1.2: 40 | version "1.1.4" 41 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 42 | dependencies: 43 | delegates "^1.0.0" 44 | readable-stream "^2.0.6" 45 | 46 | arr-diff@^2.0.0: 47 | version "2.0.0" 48 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 49 | dependencies: 50 | arr-flatten "^1.0.1" 51 | 52 | arr-flatten@^1.0.1: 53 | version "1.0.3" 54 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 55 | 56 | array-differ@^1.0.0: 57 | version "1.0.0" 58 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 59 | 60 | array-uniq@^1.0.2: 61 | version "1.0.3" 62 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 63 | 64 | array-unique@^0.2.1: 65 | version "0.2.1" 66 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 67 | 68 | arrify@^1.0.0: 69 | version "1.0.1" 70 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 71 | 72 | asn1@~0.2.3: 73 | version "0.2.3" 74 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 75 | 76 | assert-plus@1.0.0, assert-plus@^1.0.0: 77 | version "1.0.0" 78 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 79 | 80 | assert-plus@^0.2.0: 81 | version "0.2.0" 82 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 83 | 84 | assertion-error@^1.0.1: 85 | version "1.0.2" 86 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 87 | 88 | async-each@^1.0.0: 89 | version "1.0.1" 90 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 91 | 92 | asynckit@^0.4.0: 93 | version "0.4.0" 94 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 95 | 96 | aws-sign2@~0.6.0: 97 | version "0.6.0" 98 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 99 | 100 | aws4@^1.2.1: 101 | version "1.6.0" 102 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 103 | 104 | balanced-match@^0.4.1: 105 | version "0.4.2" 106 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 107 | 108 | bcrypt-pbkdf@^1.0.0: 109 | version "1.0.1" 110 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 111 | dependencies: 112 | tweetnacl "^0.14.3" 113 | 114 | beeper@^1.0.0: 115 | version "1.1.1" 116 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 117 | 118 | binary-extensions@^1.0.0: 119 | version "1.8.0" 120 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 121 | 122 | block-stream@*: 123 | version "0.0.9" 124 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 125 | dependencies: 126 | inherits "~2.0.0" 127 | 128 | boom@2.x.x: 129 | version "2.10.1" 130 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 131 | dependencies: 132 | hoek "2.x.x" 133 | 134 | brace-expansion@^1.0.0, brace-expansion@^1.1.7: 135 | version "1.1.7" 136 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 137 | dependencies: 138 | balanced-match "^0.4.1" 139 | concat-map "0.0.1" 140 | 141 | braces@^1.8.2: 142 | version "1.8.5" 143 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 144 | dependencies: 145 | expand-range "^1.8.1" 146 | preserve "^0.2.0" 147 | repeat-element "^1.1.2" 148 | 149 | caseless@~0.12.0: 150 | version "0.12.0" 151 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 152 | 153 | chai@3.3.0: 154 | version "3.3.0" 155 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.3.0.tgz#ffc291674da551e589077d6627384acabca2e02c" 156 | dependencies: 157 | assertion-error "^1.0.1" 158 | deep-eql "^0.1.3" 159 | type-detect "^1.0.0" 160 | 161 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 162 | version "1.1.3" 163 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 164 | dependencies: 165 | ansi-styles "^2.2.1" 166 | escape-string-regexp "^1.0.2" 167 | has-ansi "^2.0.0" 168 | strip-ansi "^3.0.0" 169 | supports-color "^2.0.0" 170 | 171 | chokidar@^1.6.1: 172 | version "1.7.0" 173 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 174 | dependencies: 175 | anymatch "^1.3.0" 176 | async-each "^1.0.0" 177 | glob-parent "^2.0.0" 178 | inherits "^2.0.1" 179 | is-binary-path "^1.0.0" 180 | is-glob "^2.0.0" 181 | path-is-absolute "^1.0.0" 182 | readdirp "^2.0.0" 183 | optionalDependencies: 184 | fsevents "^1.0.0" 185 | 186 | cli@~1.0.0: 187 | version "1.0.1" 188 | resolved "https://registry.yarnpkg.com/cli/-/cli-1.0.1.tgz#22817534f24bfa4950c34d532d48ecbc621b8c14" 189 | dependencies: 190 | exit "0.1.2" 191 | glob "^7.1.1" 192 | 193 | clone-stats@^0.0.1: 194 | version "0.0.1" 195 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 196 | 197 | clone@^0.2.0: 198 | version "0.2.0" 199 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 200 | 201 | clone@^1.0.0, clone@^1.0.2: 202 | version "1.0.2" 203 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 204 | 205 | co@^4.6.0: 206 | version "4.6.0" 207 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 208 | 209 | code-point-at@^1.0.0: 210 | version "1.1.0" 211 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 212 | 213 | color-convert@^1.8.2: 214 | version "1.9.0" 215 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 216 | dependencies: 217 | color-name "^1.1.1" 218 | 219 | color-name@^1.0.0, color-name@^1.1.1: 220 | version "1.1.2" 221 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 222 | 223 | color-string@^1.4.0: 224 | version "1.5.2" 225 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.2.tgz#26e45814bc3c9a7cbd6751648a41434514a773a9" 226 | dependencies: 227 | color-name "^1.0.0" 228 | simple-swizzle "^0.2.2" 229 | 230 | color@^1.0.3: 231 | version "1.0.3" 232 | resolved "https://registry.yarnpkg.com/color/-/color-1.0.3.tgz#e48e832d85f14ef694fb468811c2d5cfe729b55d" 233 | dependencies: 234 | color-convert "^1.8.2" 235 | color-string "^1.4.0" 236 | 237 | combined-stream@^1.0.5, combined-stream@~1.0.5: 238 | version "1.0.5" 239 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 240 | dependencies: 241 | delayed-stream "~1.0.0" 242 | 243 | commander@0.6.1: 244 | version "0.6.1" 245 | resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" 246 | 247 | commander@2.3.0: 248 | version "2.3.0" 249 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" 250 | 251 | concat-map@0.0.1: 252 | version "0.0.1" 253 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 254 | 255 | console-browserify@1.1.x: 256 | version "1.1.0" 257 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 258 | dependencies: 259 | date-now "^0.1.4" 260 | 261 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 262 | version "1.1.0" 263 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 264 | 265 | core-util-is@~1.0.0: 266 | version "1.0.2" 267 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 268 | 269 | cryptiles@2.x.x: 270 | version "2.0.5" 271 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 272 | dependencies: 273 | boom "2.x.x" 274 | 275 | dashdash@^1.12.0: 276 | version "1.14.1" 277 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 278 | dependencies: 279 | assert-plus "^1.0.0" 280 | 281 | date-now@^0.1.4: 282 | version "0.1.4" 283 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 284 | 285 | dateformat@^2.0.0: 286 | version "2.0.0" 287 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 288 | 289 | debug@2.0.0: 290 | version "2.0.0" 291 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.0.0.tgz#89bd9df6732b51256bc6705342bba02ed12131ef" 292 | dependencies: 293 | ms "0.6.2" 294 | 295 | debug@^2.2.0: 296 | version "2.6.8" 297 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 298 | dependencies: 299 | ms "2.0.0" 300 | 301 | deep-eql@^0.1.3: 302 | version "0.1.3" 303 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 304 | dependencies: 305 | type-detect "0.1.1" 306 | 307 | deep-extend@~0.4.0: 308 | version "0.4.2" 309 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 310 | 311 | defaults@^1.0.0: 312 | version "1.0.3" 313 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 314 | dependencies: 315 | clone "^1.0.2" 316 | 317 | delayed-stream@~1.0.0: 318 | version "1.0.0" 319 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 320 | 321 | delegates@^1.0.0: 322 | version "1.0.0" 323 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 324 | 325 | deprecated@^0.0.1: 326 | version "0.0.1" 327 | resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" 328 | 329 | detect-file@^0.1.0: 330 | version "0.1.0" 331 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 332 | dependencies: 333 | fs-exists-sync "^0.1.0" 334 | 335 | diff@1.4.0: 336 | version "1.4.0" 337 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 338 | 339 | dom-serializer@0: 340 | version "0.1.0" 341 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 342 | dependencies: 343 | domelementtype "~1.1.1" 344 | entities "~1.1.1" 345 | 346 | domelementtype@1: 347 | version "1.3.0" 348 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 349 | 350 | domelementtype@~1.1.1: 351 | version "1.1.3" 352 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 353 | 354 | domhandler@2.3: 355 | version "2.3.0" 356 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" 357 | dependencies: 358 | domelementtype "1" 359 | 360 | domutils@1.5: 361 | version "1.5.1" 362 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 363 | dependencies: 364 | dom-serializer "0" 365 | domelementtype "1" 366 | 367 | duplexer2@0.0.2: 368 | version "0.0.2" 369 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 370 | dependencies: 371 | readable-stream "~1.1.9" 372 | 373 | ecc-jsbn@~0.1.1: 374 | version "0.1.1" 375 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 376 | dependencies: 377 | jsbn "~0.1.0" 378 | 379 | end-of-stream@~0.1.5: 380 | version "0.1.5" 381 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" 382 | dependencies: 383 | once "~1.3.0" 384 | 385 | entities@1.0: 386 | version "1.0.0" 387 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" 388 | 389 | entities@~1.1.1: 390 | version "1.1.1" 391 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 392 | 393 | escape-string-regexp@1.0.2, escape-string-regexp@^1.0.2: 394 | version "1.0.2" 395 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" 396 | 397 | exit@0.1.2, exit@0.1.x: 398 | version "0.1.2" 399 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 400 | 401 | expand-brackets@^0.1.4: 402 | version "0.1.5" 403 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 404 | dependencies: 405 | is-posix-bracket "^0.1.0" 406 | 407 | expand-range@^1.8.1: 408 | version "1.8.2" 409 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 410 | dependencies: 411 | fill-range "^2.1.0" 412 | 413 | expand-tilde@^1.2.1, expand-tilde@^1.2.2: 414 | version "1.2.2" 415 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 416 | dependencies: 417 | os-homedir "^1.0.1" 418 | 419 | extend@^3.0.0, extend@~3.0.0: 420 | version "3.0.1" 421 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 422 | 423 | extglob@^0.3.1: 424 | version "0.3.2" 425 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 426 | dependencies: 427 | is-extglob "^1.0.0" 428 | 429 | extsprintf@1.0.2: 430 | version "1.0.2" 431 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 432 | 433 | fancy-log@^1.1.0: 434 | version "1.3.0" 435 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 436 | dependencies: 437 | chalk "^1.1.1" 438 | time-stamp "^1.0.0" 439 | 440 | filename-regex@^2.0.0: 441 | version "2.0.1" 442 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 443 | 444 | fill-range@^2.1.0: 445 | version "2.2.3" 446 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 447 | dependencies: 448 | is-number "^2.1.0" 449 | isobject "^2.0.0" 450 | randomatic "^1.1.3" 451 | repeat-element "^1.1.2" 452 | repeat-string "^1.5.2" 453 | 454 | find-index@^0.1.1: 455 | version "0.1.1" 456 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 457 | 458 | findup-sync@^0.4.2: 459 | version "0.4.3" 460 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12" 461 | dependencies: 462 | detect-file "^0.1.0" 463 | is-glob "^2.0.1" 464 | micromatch "^2.3.7" 465 | resolve-dir "^0.1.0" 466 | 467 | fined@^1.0.1: 468 | version "1.0.2" 469 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.0.2.tgz#5b28424b760d7598960b7ef8480dff8ad3660e97" 470 | dependencies: 471 | expand-tilde "^1.2.1" 472 | lodash.assignwith "^4.0.7" 473 | lodash.isempty "^4.2.1" 474 | lodash.isplainobject "^4.0.4" 475 | lodash.isstring "^4.0.1" 476 | lodash.pick "^4.2.1" 477 | parse-filepath "^1.0.1" 478 | 479 | first-chunk-stream@^1.0.0: 480 | version "1.0.0" 481 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 482 | 483 | first-chunk-stream@^2.0.0: 484 | version "2.0.0" 485 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70" 486 | dependencies: 487 | readable-stream "^2.0.2" 488 | 489 | flagged-respawn@^0.3.2: 490 | version "0.3.2" 491 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-0.3.2.tgz#ff191eddcd7088a675b2610fffc976be9b8074b5" 492 | 493 | for-in@^1.0.1: 494 | version "1.0.2" 495 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 496 | 497 | for-own@^0.1.4: 498 | version "0.1.5" 499 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 500 | dependencies: 501 | for-in "^1.0.1" 502 | 503 | forever-agent@~0.6.1: 504 | version "0.6.1" 505 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 506 | 507 | form-data@~2.1.1: 508 | version "2.1.4" 509 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 510 | dependencies: 511 | asynckit "^0.4.0" 512 | combined-stream "^1.0.5" 513 | mime-types "^2.1.12" 514 | 515 | fs-exists-sync@^0.1.0: 516 | version "0.1.0" 517 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 518 | 519 | fs.realpath@^1.0.0: 520 | version "1.0.0" 521 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 522 | 523 | fsevents@^1.0.0: 524 | version "1.1.1" 525 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 526 | dependencies: 527 | nan "^2.3.0" 528 | node-pre-gyp "^0.6.29" 529 | 530 | fstream-ignore@^1.0.5: 531 | version "1.0.5" 532 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 533 | dependencies: 534 | fstream "^1.0.0" 535 | inherits "2" 536 | minimatch "^3.0.0" 537 | 538 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 539 | version "1.0.11" 540 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 541 | dependencies: 542 | graceful-fs "^4.1.2" 543 | inherits "~2.0.0" 544 | mkdirp ">=0.5 0" 545 | rimraf "2" 546 | 547 | gauge@~2.7.3: 548 | version "2.7.4" 549 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 550 | dependencies: 551 | aproba "^1.0.3" 552 | console-control-strings "^1.0.0" 553 | has-unicode "^2.0.0" 554 | object-assign "^4.1.0" 555 | signal-exit "^3.0.0" 556 | string-width "^1.0.1" 557 | strip-ansi "^3.0.1" 558 | wide-align "^1.1.0" 559 | 560 | gaze@^0.5.1: 561 | version "0.5.2" 562 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" 563 | dependencies: 564 | globule "~0.1.0" 565 | 566 | getpass@^0.1.1: 567 | version "0.1.7" 568 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 569 | dependencies: 570 | assert-plus "^1.0.0" 571 | 572 | glob-base@^0.3.0: 573 | version "0.3.0" 574 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 575 | dependencies: 576 | glob-parent "^2.0.0" 577 | is-glob "^2.0.0" 578 | 579 | glob-parent@^2.0.0: 580 | version "2.0.0" 581 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 582 | dependencies: 583 | is-glob "^2.0.0" 584 | 585 | glob-parent@^3.0.1: 586 | version "3.1.0" 587 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 588 | dependencies: 589 | is-glob "^3.1.0" 590 | path-dirname "^1.0.0" 591 | 592 | glob-stream@^3.1.5: 593 | version "3.1.18" 594 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" 595 | dependencies: 596 | glob "^4.3.1" 597 | glob2base "^0.0.12" 598 | minimatch "^2.0.1" 599 | ordered-read-streams "^0.1.0" 600 | through2 "^0.6.1" 601 | unique-stream "^1.0.0" 602 | 603 | glob-watcher@^0.0.6: 604 | version "0.0.6" 605 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" 606 | dependencies: 607 | gaze "^0.5.1" 608 | 609 | glob2base@^0.0.12: 610 | version "0.0.12" 611 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 612 | dependencies: 613 | find-index "^0.1.1" 614 | 615 | glob@3.2.3: 616 | version "3.2.3" 617 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.3.tgz#e313eeb249c7affaa5c475286b0e115b59839467" 618 | dependencies: 619 | graceful-fs "~2.0.0" 620 | inherits "2" 621 | minimatch "~0.2.11" 622 | 623 | glob@^4.3.1: 624 | version "4.5.3" 625 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" 626 | dependencies: 627 | inflight "^1.0.4" 628 | inherits "2" 629 | minimatch "^2.0.1" 630 | once "^1.3.0" 631 | 632 | glob@^7.0.5, glob@^7.1.1: 633 | version "7.1.2" 634 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 635 | dependencies: 636 | fs.realpath "^1.0.0" 637 | inflight "^1.0.4" 638 | inherits "2" 639 | minimatch "^3.0.4" 640 | once "^1.3.0" 641 | path-is-absolute "^1.0.0" 642 | 643 | glob@~3.1.21: 644 | version "3.1.21" 645 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" 646 | dependencies: 647 | graceful-fs "~1.2.0" 648 | inherits "1" 649 | minimatch "~0.2.11" 650 | 651 | global-modules@^0.2.3: 652 | version "0.2.3" 653 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 654 | dependencies: 655 | global-prefix "^0.1.4" 656 | is-windows "^0.2.0" 657 | 658 | global-prefix@^0.1.4: 659 | version "0.1.5" 660 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 661 | dependencies: 662 | homedir-polyfill "^1.0.0" 663 | ini "^1.3.4" 664 | is-windows "^0.2.0" 665 | which "^1.2.12" 666 | 667 | globule@~0.1.0: 668 | version "0.1.0" 669 | resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" 670 | dependencies: 671 | glob "~3.1.21" 672 | lodash "~1.0.1" 673 | minimatch "~0.2.11" 674 | 675 | glogg@^1.0.0: 676 | version "1.0.0" 677 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 678 | dependencies: 679 | sparkles "^1.0.0" 680 | 681 | graceful-fs@^3.0.0: 682 | version "3.0.11" 683 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" 684 | dependencies: 685 | natives "^1.1.0" 686 | 687 | graceful-fs@^4.1.2: 688 | version "4.1.11" 689 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 690 | 691 | graceful-fs@~1.2.0: 692 | version "1.2.3" 693 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 694 | 695 | graceful-fs@~2.0.0: 696 | version "2.0.3" 697 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-2.0.3.tgz#7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0" 698 | 699 | growl@1.8.1: 700 | version "1.8.1" 701 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.8.1.tgz#4b2dec8d907e93db336624dcec0183502f8c9428" 702 | 703 | gulp-jshint@1.11.2: 704 | version "1.11.2" 705 | resolved "https://registry.yarnpkg.com/gulp-jshint/-/gulp-jshint-1.11.2.tgz#d430d00de42ce6e7ba0df30418c9d1d3153822b5" 706 | dependencies: 707 | gulp-util "^3.0.0" 708 | jshint "^2.7.0" 709 | lodash "^3.0.1" 710 | minimatch "^2.0.1" 711 | rcloader "0.1.2" 712 | through2 "~0.6.1" 713 | 714 | gulp-mocha@2.1.3: 715 | version "2.1.3" 716 | resolved "https://registry.yarnpkg.com/gulp-mocha/-/gulp-mocha-2.1.3.tgz#e906f2515ead1b273277003f60d584aceb94f362" 717 | dependencies: 718 | gulp-util "^3.0.0" 719 | mocha "^2.0.1" 720 | plur "^1.0.0" 721 | resolve-from "^1.0.0" 722 | temp "^0.8.3" 723 | through "^2.3.4" 724 | 725 | gulp-util@^3.0.0, gulp-util@^3.0.7: 726 | version "3.0.8" 727 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 728 | dependencies: 729 | array-differ "^1.0.0" 730 | array-uniq "^1.0.2" 731 | beeper "^1.0.0" 732 | chalk "^1.0.0" 733 | dateformat "^2.0.0" 734 | fancy-log "^1.1.0" 735 | gulplog "^1.0.0" 736 | has-gulplog "^0.1.0" 737 | lodash._reescape "^3.0.0" 738 | lodash._reevaluate "^3.0.0" 739 | lodash._reinterpolate "^3.0.0" 740 | lodash.template "^3.0.0" 741 | minimist "^1.1.0" 742 | multipipe "^0.1.2" 743 | object-assign "^3.0.0" 744 | replace-ext "0.0.1" 745 | through2 "^2.0.0" 746 | vinyl "^0.5.0" 747 | 748 | gulp-watch@^4.3.5: 749 | version "4.3.11" 750 | resolved "https://registry.yarnpkg.com/gulp-watch/-/gulp-watch-4.3.11.tgz#162fc563de9fc770e91f9a7ce3955513a9a118c0" 751 | dependencies: 752 | anymatch "^1.3.0" 753 | chokidar "^1.6.1" 754 | glob-parent "^3.0.1" 755 | gulp-util "^3.0.7" 756 | object-assign "^4.1.0" 757 | path-is-absolute "^1.0.1" 758 | readable-stream "^2.2.2" 759 | slash "^1.0.0" 760 | vinyl "^1.2.0" 761 | vinyl-file "^2.0.0" 762 | 763 | gulp@3.9.0: 764 | version "3.9.0" 765 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.0.tgz#cf1fba4cb558bb8c6ae6c9613f583ae2620d214a" 766 | dependencies: 767 | archy "^1.0.0" 768 | chalk "^1.0.0" 769 | deprecated "^0.0.1" 770 | gulp-util "^3.0.0" 771 | interpret "^0.6.2" 772 | liftoff "^2.1.0" 773 | minimist "^1.1.0" 774 | orchestrator "^0.3.0" 775 | pretty-hrtime "^1.0.0" 776 | semver "^4.1.0" 777 | tildify "^1.0.0" 778 | v8flags "^2.0.2" 779 | vinyl-fs "^0.3.0" 780 | 781 | gulplog@^1.0.0: 782 | version "1.0.0" 783 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 784 | dependencies: 785 | glogg "^1.0.0" 786 | 787 | har-schema@^1.0.5: 788 | version "1.0.5" 789 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 790 | 791 | har-validator@~4.2.1: 792 | version "4.2.1" 793 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 794 | dependencies: 795 | ajv "^4.9.1" 796 | har-schema "^1.0.5" 797 | 798 | has-ansi@^2.0.0: 799 | version "2.0.0" 800 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 801 | dependencies: 802 | ansi-regex "^2.0.0" 803 | 804 | has-flag@^1.0.0: 805 | version "1.0.0" 806 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 807 | 808 | has-gulplog@^0.1.0: 809 | version "0.1.0" 810 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 811 | dependencies: 812 | sparkles "^1.0.0" 813 | 814 | has-unicode@^2.0.0: 815 | version "2.0.1" 816 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 817 | 818 | hawk@~3.1.3: 819 | version "3.1.3" 820 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 821 | dependencies: 822 | boom "2.x.x" 823 | cryptiles "2.x.x" 824 | hoek "2.x.x" 825 | sntp "1.x.x" 826 | 827 | hoek@2.x.x: 828 | version "2.16.3" 829 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 830 | 831 | homedir-polyfill@^1.0.0: 832 | version "1.0.1" 833 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 834 | dependencies: 835 | parse-passwd "^1.0.0" 836 | 837 | htmlparser2@3.8.x: 838 | version "3.8.3" 839 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068" 840 | dependencies: 841 | domelementtype "1" 842 | domhandler "2.3" 843 | domutils "1.5" 844 | entities "1.0" 845 | readable-stream "1.1" 846 | 847 | http-signature@~1.1.0: 848 | version "1.1.1" 849 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 850 | dependencies: 851 | assert-plus "^0.2.0" 852 | jsprim "^1.2.2" 853 | sshpk "^1.7.0" 854 | 855 | inflight@^1.0.4: 856 | version "1.0.6" 857 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 858 | dependencies: 859 | once "^1.3.0" 860 | wrappy "1" 861 | 862 | inherits@1: 863 | version "1.0.2" 864 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" 865 | 866 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 867 | version "2.0.3" 868 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 869 | 870 | ini@^1.3.4, ini@~1.3.0: 871 | version "1.3.4" 872 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 873 | 874 | interpret@^0.6.2: 875 | version "0.6.6" 876 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" 877 | 878 | is-absolute@^0.2.3: 879 | version "0.2.6" 880 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" 881 | dependencies: 882 | is-relative "^0.2.1" 883 | is-windows "^0.2.0" 884 | 885 | is-arrayish@^0.3.1: 886 | version "0.3.1" 887 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.1.tgz#c2dfc386abaa0c3e33c48db3fe87059e69065efd" 888 | 889 | is-binary-path@^1.0.0: 890 | version "1.0.1" 891 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 892 | dependencies: 893 | binary-extensions "^1.0.0" 894 | 895 | is-buffer@^1.1.5: 896 | version "1.1.5" 897 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 898 | 899 | is-dotfile@^1.0.0: 900 | version "1.0.3" 901 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 902 | 903 | is-equal-shallow@^0.1.3: 904 | version "0.1.3" 905 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 906 | dependencies: 907 | is-primitive "^2.0.0" 908 | 909 | is-extendable@^0.1.1: 910 | version "0.1.1" 911 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 912 | 913 | is-extglob@^1.0.0: 914 | version "1.0.0" 915 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 916 | 917 | is-extglob@^2.1.0: 918 | version "2.1.1" 919 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 920 | 921 | is-fullwidth-code-point@^1.0.0: 922 | version "1.0.0" 923 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 924 | dependencies: 925 | number-is-nan "^1.0.0" 926 | 927 | is-glob@^2.0.0, is-glob@^2.0.1: 928 | version "2.0.1" 929 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 930 | dependencies: 931 | is-extglob "^1.0.0" 932 | 933 | is-glob@^3.1.0: 934 | version "3.1.0" 935 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 936 | dependencies: 937 | is-extglob "^2.1.0" 938 | 939 | is-number@^2.0.2, is-number@^2.1.0: 940 | version "2.1.0" 941 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 942 | dependencies: 943 | kind-of "^3.0.2" 944 | 945 | is-posix-bracket@^0.1.0: 946 | version "0.1.1" 947 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 948 | 949 | is-primitive@^2.0.0: 950 | version "2.0.0" 951 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 952 | 953 | is-relative@^0.2.1: 954 | version "0.2.1" 955 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 956 | dependencies: 957 | is-unc-path "^0.1.1" 958 | 959 | is-typedarray@~1.0.0: 960 | version "1.0.0" 961 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 962 | 963 | is-unc-path@^0.1.1: 964 | version "0.1.2" 965 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" 966 | dependencies: 967 | unc-path-regex "^0.1.0" 968 | 969 | is-utf8@^0.2.0: 970 | version "0.2.1" 971 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 972 | 973 | is-windows@^0.2.0: 974 | version "0.2.0" 975 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 976 | 977 | isarray@0.0.1: 978 | version "0.0.1" 979 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 980 | 981 | isarray@1.0.0, isarray@~1.0.0: 982 | version "1.0.0" 983 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 984 | 985 | isexe@^2.0.0: 986 | version "2.0.0" 987 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 988 | 989 | isobject@^2.0.0: 990 | version "2.1.0" 991 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 992 | dependencies: 993 | isarray "1.0.0" 994 | 995 | isstream@~0.1.2: 996 | version "0.1.2" 997 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 998 | 999 | jade@0.26.3: 1000 | version "0.26.3" 1001 | resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" 1002 | dependencies: 1003 | commander "0.6.1" 1004 | mkdirp "0.3.0" 1005 | 1006 | jodid25519@^1.0.0: 1007 | version "1.0.2" 1008 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1009 | dependencies: 1010 | jsbn "~0.1.0" 1011 | 1012 | jsbn@~0.1.0: 1013 | version "0.1.1" 1014 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1015 | 1016 | jshint-stylish@2.0.1: 1017 | version "2.0.1" 1018 | resolved "https://registry.yarnpkg.com/jshint-stylish/-/jshint-stylish-2.0.1.tgz#845bf38386e55551ff9f840cc7725f7a88b5b2d4" 1019 | dependencies: 1020 | chalk "^1.0.0" 1021 | log-symbols "^1.0.0" 1022 | plur "^1.0.0" 1023 | string-length "^1.0.0" 1024 | text-table "^0.2.0" 1025 | 1026 | jshint@^2.7.0: 1027 | version "2.9.4" 1028 | resolved "https://registry.yarnpkg.com/jshint/-/jshint-2.9.4.tgz#5e3ba97848d5290273db514aee47fe24cf592934" 1029 | dependencies: 1030 | cli "~1.0.0" 1031 | console-browserify "1.1.x" 1032 | exit "0.1.x" 1033 | htmlparser2 "3.8.x" 1034 | lodash "3.7.x" 1035 | minimatch "~3.0.2" 1036 | shelljs "0.3.x" 1037 | strip-json-comments "1.0.x" 1038 | 1039 | json-schema@0.2.3: 1040 | version "0.2.3" 1041 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1042 | 1043 | json-stable-stringify@^1.0.1: 1044 | version "1.0.1" 1045 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1046 | dependencies: 1047 | jsonify "~0.0.0" 1048 | 1049 | json-stringify-safe@~5.0.1: 1050 | version "5.0.1" 1051 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1052 | 1053 | jsonify@~0.0.0: 1054 | version "0.0.0" 1055 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1056 | 1057 | jsprim@^1.2.2: 1058 | version "1.4.0" 1059 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1060 | dependencies: 1061 | assert-plus "1.0.0" 1062 | extsprintf "1.0.2" 1063 | json-schema "0.2.3" 1064 | verror "1.3.6" 1065 | 1066 | kind-of@^3.0.2: 1067 | version "3.2.2" 1068 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1069 | dependencies: 1070 | is-buffer "^1.1.5" 1071 | 1072 | liftoff@^2.1.0: 1073 | version "2.3.0" 1074 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385" 1075 | dependencies: 1076 | extend "^3.0.0" 1077 | findup-sync "^0.4.2" 1078 | fined "^1.0.1" 1079 | flagged-respawn "^0.3.2" 1080 | lodash.isplainobject "^4.0.4" 1081 | lodash.isstring "^4.0.1" 1082 | lodash.mapvalues "^4.4.0" 1083 | rechoir "^0.6.2" 1084 | resolve "^1.1.7" 1085 | 1086 | lodash._basecopy@^3.0.0: 1087 | version "3.0.1" 1088 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1089 | 1090 | lodash._basetostring@^3.0.0: 1091 | version "3.0.1" 1092 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1093 | 1094 | lodash._basevalues@^3.0.0: 1095 | version "3.0.0" 1096 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1097 | 1098 | lodash._getnative@^3.0.0: 1099 | version "3.9.1" 1100 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1101 | 1102 | lodash._isiterateecall@^3.0.0: 1103 | version "3.0.9" 1104 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1105 | 1106 | lodash._reescape@^3.0.0: 1107 | version "3.0.0" 1108 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1109 | 1110 | lodash._reevaluate@^3.0.0: 1111 | version "3.0.0" 1112 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1113 | 1114 | lodash._reinterpolate@^3.0.0: 1115 | version "3.0.0" 1116 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1117 | 1118 | lodash._root@^3.0.0: 1119 | version "3.0.1" 1120 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1121 | 1122 | lodash.assignwith@^4.0.7: 1123 | version "4.2.0" 1124 | resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb" 1125 | 1126 | lodash.clonedeep@^4.3.2: 1127 | version "4.5.0" 1128 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1129 | 1130 | lodash.escape@^3.0.0: 1131 | version "3.2.0" 1132 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 1133 | dependencies: 1134 | lodash._root "^3.0.0" 1135 | 1136 | lodash.isarguments@^3.0.0: 1137 | version "3.1.0" 1138 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1139 | 1140 | lodash.isarray@^3.0.0: 1141 | version "3.0.4" 1142 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1143 | 1144 | lodash.isempty@^4.2.1: 1145 | version "4.4.0" 1146 | resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e" 1147 | 1148 | lodash.isplainobject@^4.0.4: 1149 | version "4.0.6" 1150 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 1151 | 1152 | lodash.isstring@^4.0.1: 1153 | version "4.0.1" 1154 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 1155 | 1156 | lodash.keys@^3.0.0: 1157 | version "3.1.2" 1158 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1159 | dependencies: 1160 | lodash._getnative "^3.0.0" 1161 | lodash.isarguments "^3.0.0" 1162 | lodash.isarray "^3.0.0" 1163 | 1164 | lodash.mapvalues@^4.4.0: 1165 | version "4.6.0" 1166 | resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" 1167 | 1168 | lodash.pick@^4.2.1: 1169 | version "4.4.0" 1170 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 1171 | 1172 | lodash.restparam@^3.0.0: 1173 | version "3.6.1" 1174 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1175 | 1176 | lodash.template@^3.0.0: 1177 | version "3.6.2" 1178 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1179 | dependencies: 1180 | lodash._basecopy "^3.0.0" 1181 | lodash._basetostring "^3.0.0" 1182 | lodash._basevalues "^3.0.0" 1183 | lodash._isiterateecall "^3.0.0" 1184 | lodash._reinterpolate "^3.0.0" 1185 | lodash.escape "^3.0.0" 1186 | lodash.keys "^3.0.0" 1187 | lodash.restparam "^3.0.0" 1188 | lodash.templatesettings "^3.0.0" 1189 | 1190 | lodash.templatesettings@^3.0.0: 1191 | version "3.1.1" 1192 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1193 | dependencies: 1194 | lodash._reinterpolate "^3.0.0" 1195 | lodash.escape "^3.0.0" 1196 | 1197 | lodash@3.7.x: 1198 | version "3.7.0" 1199 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.7.0.tgz#3678bd8ab995057c07ade836ed2ef087da811d45" 1200 | 1201 | lodash@^3.0.1: 1202 | version "3.10.1" 1203 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1204 | 1205 | lodash@~1.0.1: 1206 | version "1.0.2" 1207 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" 1208 | 1209 | lodash@~2.4.1: 1210 | version "2.4.2" 1211 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-2.4.2.tgz#fadd834b9683073da179b3eae6d9c0d15053f73e" 1212 | 1213 | log-symbols@^1.0.0: 1214 | version "1.0.2" 1215 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1216 | dependencies: 1217 | chalk "^1.0.0" 1218 | 1219 | lru-cache@2: 1220 | version "2.7.3" 1221 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 1222 | 1223 | map-cache@^0.2.0: 1224 | version "0.2.2" 1225 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1226 | 1227 | micromatch@^2.1.5, micromatch@^2.3.7: 1228 | version "2.3.11" 1229 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1230 | dependencies: 1231 | arr-diff "^2.0.0" 1232 | array-unique "^0.2.1" 1233 | braces "^1.8.2" 1234 | expand-brackets "^0.1.4" 1235 | extglob "^0.3.1" 1236 | filename-regex "^2.0.0" 1237 | is-extglob "^1.0.0" 1238 | is-glob "^2.0.1" 1239 | kind-of "^3.0.2" 1240 | normalize-path "^2.0.1" 1241 | object.omit "^2.0.0" 1242 | parse-glob "^3.0.4" 1243 | regex-cache "^0.4.2" 1244 | 1245 | mime-db@~1.27.0: 1246 | version "1.27.0" 1247 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1248 | 1249 | mime-types@^2.1.12, mime-types@~2.1.7: 1250 | version "2.1.15" 1251 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1252 | dependencies: 1253 | mime-db "~1.27.0" 1254 | 1255 | minimatch@^2.0.1: 1256 | version "2.0.10" 1257 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 1258 | dependencies: 1259 | brace-expansion "^1.0.0" 1260 | 1261 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2: 1262 | version "3.0.4" 1263 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1264 | dependencies: 1265 | brace-expansion "^1.1.7" 1266 | 1267 | minimatch@~0.2.11: 1268 | version "0.2.14" 1269 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" 1270 | dependencies: 1271 | lru-cache "2" 1272 | sigmund "~1.0.0" 1273 | 1274 | minimist@0.0.8: 1275 | version "0.0.8" 1276 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1277 | 1278 | minimist@^1.1.0, minimist@^1.2.0: 1279 | version "1.2.0" 1280 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1281 | 1282 | mkdirp@0.3.0: 1283 | version "0.3.0" 1284 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 1285 | 1286 | mkdirp@0.5.0, mkdirp@^0.5.0: 1287 | version "0.5.0" 1288 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" 1289 | dependencies: 1290 | minimist "0.0.8" 1291 | 1292 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1293 | version "0.5.1" 1294 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1295 | dependencies: 1296 | minimist "0.0.8" 1297 | 1298 | mocha@2.3.3, mocha@^2.0.1: 1299 | version "2.3.3" 1300 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.3.3.tgz#96488c49bfd71d86a518cb941e291a83f48d8856" 1301 | dependencies: 1302 | commander "2.3.0" 1303 | debug "2.0.0" 1304 | diff "1.4.0" 1305 | escape-string-regexp "1.0.2" 1306 | glob "3.2.3" 1307 | growl "1.8.1" 1308 | jade "0.26.3" 1309 | mkdirp "0.5.0" 1310 | supports-color "1.2.0" 1311 | 1312 | ms@0.6.2: 1313 | version "0.6.2" 1314 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.6.2.tgz#d89c2124c6fdc1353d65a8b77bf1aac4b193708c" 1315 | 1316 | ms@2.0.0: 1317 | version "2.0.0" 1318 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1319 | 1320 | multipipe@^0.1.2: 1321 | version "0.1.2" 1322 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 1323 | dependencies: 1324 | duplexer2 "0.0.2" 1325 | 1326 | nan@^2.3.0: 1327 | version "2.6.2" 1328 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 1329 | 1330 | natives@^1.1.0: 1331 | version "1.1.0" 1332 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.0.tgz#e9ff841418a6b2ec7a495e939984f78f163e6e31" 1333 | 1334 | node-pre-gyp@^0.6.29: 1335 | version "0.6.36" 1336 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1337 | dependencies: 1338 | mkdirp "^0.5.1" 1339 | nopt "^4.0.1" 1340 | npmlog "^4.0.2" 1341 | rc "^1.1.7" 1342 | request "^2.81.0" 1343 | rimraf "^2.6.1" 1344 | semver "^5.3.0" 1345 | tar "^2.2.1" 1346 | tar-pack "^3.4.0" 1347 | 1348 | nopt@^4.0.1: 1349 | version "4.0.1" 1350 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1351 | dependencies: 1352 | abbrev "1" 1353 | osenv "^0.1.4" 1354 | 1355 | normalize-path@^2.0.1: 1356 | version "2.1.1" 1357 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1358 | dependencies: 1359 | remove-trailing-separator "^1.0.1" 1360 | 1361 | npmlog@^4.0.2: 1362 | version "4.1.0" 1363 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 1364 | dependencies: 1365 | are-we-there-yet "~1.1.2" 1366 | console-control-strings "~1.1.0" 1367 | gauge "~2.7.3" 1368 | set-blocking "~2.0.0" 1369 | 1370 | number-is-nan@^1.0.0: 1371 | version "1.0.1" 1372 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1373 | 1374 | oauth-sign@~0.8.1: 1375 | version "0.8.2" 1376 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1377 | 1378 | object-assign@^3.0.0: 1379 | version "3.0.0" 1380 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1381 | 1382 | object-assign@^4.1.0: 1383 | version "4.1.1" 1384 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1385 | 1386 | object.omit@^2.0.0: 1387 | version "2.0.1" 1388 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1389 | dependencies: 1390 | for-own "^0.1.4" 1391 | is-extendable "^0.1.1" 1392 | 1393 | once@^1.3.0, once@^1.3.3, once@~1.3.0: 1394 | version "1.3.3" 1395 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1396 | dependencies: 1397 | wrappy "1" 1398 | 1399 | orchestrator@^0.3.0: 1400 | version "0.3.8" 1401 | resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e" 1402 | dependencies: 1403 | end-of-stream "~0.1.5" 1404 | sequencify "~0.0.7" 1405 | stream-consume "~0.1.0" 1406 | 1407 | ordered-read-streams@^0.1.0: 1408 | version "0.1.0" 1409 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" 1410 | 1411 | os-homedir@^1.0.0, os-homedir@^1.0.1: 1412 | version "1.0.2" 1413 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1414 | 1415 | os-tmpdir@^1.0.0: 1416 | version "1.0.2" 1417 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1418 | 1419 | osenv@^0.1.4: 1420 | version "0.1.4" 1421 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1422 | dependencies: 1423 | os-homedir "^1.0.0" 1424 | os-tmpdir "^1.0.0" 1425 | 1426 | parse-filepath@^1.0.1: 1427 | version "1.0.1" 1428 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73" 1429 | dependencies: 1430 | is-absolute "^0.2.3" 1431 | map-cache "^0.2.0" 1432 | path-root "^0.1.1" 1433 | 1434 | parse-glob@^3.0.4: 1435 | version "3.0.4" 1436 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1437 | dependencies: 1438 | glob-base "^0.3.0" 1439 | is-dotfile "^1.0.0" 1440 | is-extglob "^1.0.0" 1441 | is-glob "^2.0.0" 1442 | 1443 | parse-passwd@^1.0.0: 1444 | version "1.0.0" 1445 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 1446 | 1447 | path-dirname@^1.0.0: 1448 | version "1.0.2" 1449 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 1450 | 1451 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1452 | version "1.0.1" 1453 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1454 | 1455 | path-parse@^1.0.5: 1456 | version "1.0.5" 1457 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1458 | 1459 | path-root-regex@^0.1.0: 1460 | version "0.1.2" 1461 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 1462 | 1463 | path-root@^0.1.1: 1464 | version "0.1.1" 1465 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 1466 | dependencies: 1467 | path-root-regex "^0.1.0" 1468 | 1469 | performance-now@^0.2.0: 1470 | version "0.2.0" 1471 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1472 | 1473 | pify@^2.3.0: 1474 | version "2.3.0" 1475 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1476 | 1477 | pinkie-promise@^2.0.0: 1478 | version "2.0.1" 1479 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1480 | dependencies: 1481 | pinkie "^2.0.0" 1482 | 1483 | pinkie@^2.0.0: 1484 | version "2.0.4" 1485 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1486 | 1487 | plur@^1.0.0: 1488 | version "1.0.0" 1489 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 1490 | 1491 | postcss-message-helpers@^2.0.0: 1492 | version "2.0.0" 1493 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 1494 | 1495 | postcss@^6.0.1: 1496 | version "6.0.1" 1497 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2" 1498 | dependencies: 1499 | chalk "^1.1.3" 1500 | source-map "^0.5.6" 1501 | supports-color "^3.2.3" 1502 | 1503 | preserve@^0.2.0: 1504 | version "0.2.0" 1505 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1506 | 1507 | pretty-hrtime@^1.0.0: 1508 | version "1.0.3" 1509 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 1510 | 1511 | process-nextick-args@~1.0.6: 1512 | version "1.0.7" 1513 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1514 | 1515 | punycode@^1.4.1: 1516 | version "1.4.1" 1517 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1518 | 1519 | qs@~6.4.0: 1520 | version "6.4.0" 1521 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1522 | 1523 | randomatic@^1.1.3: 1524 | version "1.1.6" 1525 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1526 | dependencies: 1527 | is-number "^2.0.2" 1528 | kind-of "^3.0.2" 1529 | 1530 | rc@^1.1.7: 1531 | version "1.2.1" 1532 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 1533 | dependencies: 1534 | deep-extend "~0.4.0" 1535 | ini "~1.3.0" 1536 | minimist "^1.2.0" 1537 | strip-json-comments "~2.0.1" 1538 | 1539 | rcfinder@~0.1.6: 1540 | version "0.1.9" 1541 | resolved "https://registry.yarnpkg.com/rcfinder/-/rcfinder-0.1.9.tgz#f3e80f387ddf9ae80ae30a4100329642eae81115" 1542 | dependencies: 1543 | lodash.clonedeep "^4.3.2" 1544 | 1545 | rcloader@0.1.2: 1546 | version "0.1.2" 1547 | resolved "https://registry.yarnpkg.com/rcloader/-/rcloader-0.1.2.tgz#a0963a6437d09ef8cb92d932d2dad497b0d1736c" 1548 | dependencies: 1549 | lodash "~2.4.1" 1550 | rcfinder "~0.1.6" 1551 | 1552 | readable-stream@1.1, readable-stream@~1.1.9: 1553 | version "1.1.13" 1554 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e" 1555 | dependencies: 1556 | core-util-is "~1.0.0" 1557 | inherits "~2.0.1" 1558 | isarray "0.0.1" 1559 | string_decoder "~0.10.x" 1560 | 1561 | "readable-stream@>=1.0.33-1 <1.1.0-0": 1562 | version "1.0.34" 1563 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 1564 | dependencies: 1565 | core-util-is "~1.0.0" 1566 | inherits "~2.0.1" 1567 | isarray "0.0.1" 1568 | string_decoder "~0.10.x" 1569 | 1570 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 1571 | version "2.2.11" 1572 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.11.tgz#0796b31f8d7688007ff0b93a8088d34aa17c0f72" 1573 | dependencies: 1574 | core-util-is "~1.0.0" 1575 | inherits "~2.0.1" 1576 | isarray "~1.0.0" 1577 | process-nextick-args "~1.0.6" 1578 | safe-buffer "~5.0.1" 1579 | string_decoder "~1.0.0" 1580 | util-deprecate "~1.0.1" 1581 | 1582 | readdirp@^2.0.0: 1583 | version "2.1.0" 1584 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1585 | dependencies: 1586 | graceful-fs "^4.1.2" 1587 | minimatch "^3.0.2" 1588 | readable-stream "^2.0.2" 1589 | set-immediate-shim "^1.0.1" 1590 | 1591 | rechoir@^0.6.2: 1592 | version "0.6.2" 1593 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1594 | dependencies: 1595 | resolve "^1.1.6" 1596 | 1597 | regex-cache@^0.4.2: 1598 | version "0.4.3" 1599 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1600 | dependencies: 1601 | is-equal-shallow "^0.1.3" 1602 | is-primitive "^2.0.0" 1603 | 1604 | remove-trailing-separator@^1.0.1: 1605 | version "1.0.1" 1606 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 1607 | 1608 | repeat-element@^1.1.2: 1609 | version "1.1.2" 1610 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1611 | 1612 | repeat-string@^1.5.2: 1613 | version "1.6.1" 1614 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1615 | 1616 | replace-ext@0.0.1: 1617 | version "0.0.1" 1618 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 1619 | 1620 | request@^2.81.0: 1621 | version "2.81.0" 1622 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1623 | dependencies: 1624 | aws-sign2 "~0.6.0" 1625 | aws4 "^1.2.1" 1626 | caseless "~0.12.0" 1627 | combined-stream "~1.0.5" 1628 | extend "~3.0.0" 1629 | forever-agent "~0.6.1" 1630 | form-data "~2.1.1" 1631 | har-validator "~4.2.1" 1632 | hawk "~3.1.3" 1633 | http-signature "~1.1.0" 1634 | is-typedarray "~1.0.0" 1635 | isstream "~0.1.2" 1636 | json-stringify-safe "~5.0.1" 1637 | mime-types "~2.1.7" 1638 | oauth-sign "~0.8.1" 1639 | performance-now "^0.2.0" 1640 | qs "~6.4.0" 1641 | safe-buffer "^5.0.1" 1642 | stringstream "~0.0.4" 1643 | tough-cookie "~2.3.0" 1644 | tunnel-agent "^0.6.0" 1645 | uuid "^3.0.0" 1646 | 1647 | resolve-dir@^0.1.0: 1648 | version "0.1.1" 1649 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 1650 | dependencies: 1651 | expand-tilde "^1.2.2" 1652 | global-modules "^0.2.3" 1653 | 1654 | resolve-from@^1.0.0: 1655 | version "1.0.1" 1656 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1657 | 1658 | resolve@^1.1.6, resolve@^1.1.7: 1659 | version "1.3.3" 1660 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 1661 | dependencies: 1662 | path-parse "^1.0.5" 1663 | 1664 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1665 | version "2.6.1" 1666 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1667 | dependencies: 1668 | glob "^7.0.5" 1669 | 1670 | rimraf@~2.2.6: 1671 | version "2.2.8" 1672 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 1673 | 1674 | safe-buffer@^5.0.1, safe-buffer@~5.0.1: 1675 | version "5.0.1" 1676 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 1677 | 1678 | semver@^4.1.0: 1679 | version "4.3.6" 1680 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 1681 | 1682 | semver@^5.3.0: 1683 | version "5.3.0" 1684 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1685 | 1686 | sequencify@~0.0.7: 1687 | version "0.0.7" 1688 | resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" 1689 | 1690 | set-blocking@~2.0.0: 1691 | version "2.0.0" 1692 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1693 | 1694 | set-immediate-shim@^1.0.1: 1695 | version "1.0.1" 1696 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1697 | 1698 | shelljs@0.3.x: 1699 | version "0.3.0" 1700 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.3.0.tgz#3596e6307a781544f591f37da618360f31db57b1" 1701 | 1702 | sigmund@~1.0.0: 1703 | version "1.0.1" 1704 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 1705 | 1706 | signal-exit@^3.0.0: 1707 | version "3.0.2" 1708 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1709 | 1710 | simple-swizzle@^0.2.2: 1711 | version "0.2.2" 1712 | resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 1713 | dependencies: 1714 | is-arrayish "^0.3.1" 1715 | 1716 | slash@^1.0.0: 1717 | version "1.0.0" 1718 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1719 | 1720 | sntp@1.x.x: 1721 | version "1.0.9" 1722 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1723 | dependencies: 1724 | hoek "2.x.x" 1725 | 1726 | source-map@^0.5.6: 1727 | version "0.5.6" 1728 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1729 | 1730 | sparkles@^1.0.0: 1731 | version "1.0.0" 1732 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 1733 | 1734 | sshpk@^1.7.0: 1735 | version "1.13.0" 1736 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 1737 | dependencies: 1738 | asn1 "~0.2.3" 1739 | assert-plus "^1.0.0" 1740 | dashdash "^1.12.0" 1741 | getpass "^0.1.1" 1742 | optionalDependencies: 1743 | bcrypt-pbkdf "^1.0.0" 1744 | ecc-jsbn "~0.1.1" 1745 | jodid25519 "^1.0.0" 1746 | jsbn "~0.1.0" 1747 | tweetnacl "~0.14.0" 1748 | 1749 | stream-consume@~0.1.0: 1750 | version "0.1.0" 1751 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 1752 | 1753 | string-length@^1.0.0: 1754 | version "1.0.1" 1755 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 1756 | dependencies: 1757 | strip-ansi "^3.0.0" 1758 | 1759 | string-width@^1.0.1, string-width@^1.0.2: 1760 | version "1.0.2" 1761 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1762 | dependencies: 1763 | code-point-at "^1.0.0" 1764 | is-fullwidth-code-point "^1.0.0" 1765 | strip-ansi "^3.0.0" 1766 | 1767 | string_decoder@~0.10.x: 1768 | version "0.10.31" 1769 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1770 | 1771 | string_decoder@~1.0.0: 1772 | version "1.0.2" 1773 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.2.tgz#b29e1f4e1125fa97a10382b8a533737b7491e179" 1774 | dependencies: 1775 | safe-buffer "~5.0.1" 1776 | 1777 | stringstream@~0.0.4: 1778 | version "0.0.5" 1779 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1780 | 1781 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1782 | version "3.0.1" 1783 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1784 | dependencies: 1785 | ansi-regex "^2.0.0" 1786 | 1787 | strip-bom-stream@^2.0.0: 1788 | version "2.0.0" 1789 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz#f87db5ef2613f6968aa545abfe1ec728b6a829ca" 1790 | dependencies: 1791 | first-chunk-stream "^2.0.0" 1792 | strip-bom "^2.0.0" 1793 | 1794 | strip-bom@^1.0.0: 1795 | version "1.0.0" 1796 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" 1797 | dependencies: 1798 | first-chunk-stream "^1.0.0" 1799 | is-utf8 "^0.2.0" 1800 | 1801 | strip-bom@^2.0.0: 1802 | version "2.0.0" 1803 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1804 | dependencies: 1805 | is-utf8 "^0.2.0" 1806 | 1807 | strip-json-comments@1.0.x: 1808 | version "1.0.4" 1809 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 1810 | 1811 | strip-json-comments@~2.0.1: 1812 | version "2.0.1" 1813 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1814 | 1815 | supports-color@1.2.0: 1816 | version "1.2.0" 1817 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" 1818 | 1819 | supports-color@^2.0.0: 1820 | version "2.0.0" 1821 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1822 | 1823 | supports-color@^3.2.3: 1824 | version "3.2.3" 1825 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1826 | dependencies: 1827 | has-flag "^1.0.0" 1828 | 1829 | tar-pack@^3.4.0: 1830 | version "3.4.0" 1831 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 1832 | dependencies: 1833 | debug "^2.2.0" 1834 | fstream "^1.0.10" 1835 | fstream-ignore "^1.0.5" 1836 | once "^1.3.3" 1837 | readable-stream "^2.1.4" 1838 | rimraf "^2.5.1" 1839 | tar "^2.2.1" 1840 | uid-number "^0.0.6" 1841 | 1842 | tar@^2.2.1: 1843 | version "2.2.1" 1844 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1845 | dependencies: 1846 | block-stream "*" 1847 | fstream "^1.0.2" 1848 | inherits "2" 1849 | 1850 | temp@^0.8.3: 1851 | version "0.8.3" 1852 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" 1853 | dependencies: 1854 | os-tmpdir "^1.0.0" 1855 | rimraf "~2.2.6" 1856 | 1857 | text-table@^0.2.0: 1858 | version "0.2.0" 1859 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1860 | 1861 | through2@^0.6.1, through2@~0.6.1: 1862 | version "0.6.5" 1863 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 1864 | dependencies: 1865 | readable-stream ">=1.0.33-1 <1.1.0-0" 1866 | xtend ">=4.0.0 <4.1.0-0" 1867 | 1868 | through2@^2.0.0: 1869 | version "2.0.3" 1870 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 1871 | dependencies: 1872 | readable-stream "^2.1.5" 1873 | xtend "~4.0.1" 1874 | 1875 | through@^2.3.4: 1876 | version "2.3.8" 1877 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1878 | 1879 | tildify@^1.0.0: 1880 | version "1.2.0" 1881 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" 1882 | dependencies: 1883 | os-homedir "^1.0.0" 1884 | 1885 | time-stamp@^1.0.0: 1886 | version "1.1.0" 1887 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 1888 | 1889 | tough-cookie@~2.3.0: 1890 | version "2.3.2" 1891 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1892 | dependencies: 1893 | punycode "^1.4.1" 1894 | 1895 | tunnel-agent@^0.6.0: 1896 | version "0.6.0" 1897 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1898 | dependencies: 1899 | safe-buffer "^5.0.1" 1900 | 1901 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1902 | version "0.14.5" 1903 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1904 | 1905 | type-detect@0.1.1: 1906 | version "0.1.1" 1907 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 1908 | 1909 | type-detect@^1.0.0: 1910 | version "1.0.0" 1911 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 1912 | 1913 | uid-number@^0.0.6: 1914 | version "0.0.6" 1915 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1916 | 1917 | unc-path-regex@^0.1.0: 1918 | version "0.1.2" 1919 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 1920 | 1921 | unique-stream@^1.0.0: 1922 | version "1.0.0" 1923 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" 1924 | 1925 | user-home@^1.1.1: 1926 | version "1.1.1" 1927 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1928 | 1929 | util-deprecate@~1.0.1: 1930 | version "1.0.2" 1931 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1932 | 1933 | uuid@^3.0.0: 1934 | version "3.0.1" 1935 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1936 | 1937 | v8flags@^2.0.2: 1938 | version "2.1.1" 1939 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1940 | dependencies: 1941 | user-home "^1.1.1" 1942 | 1943 | verror@1.3.6: 1944 | version "1.3.6" 1945 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1946 | dependencies: 1947 | extsprintf "1.0.2" 1948 | 1949 | vinyl-file@^2.0.0: 1950 | version "2.0.0" 1951 | resolved "https://registry.yarnpkg.com/vinyl-file/-/vinyl-file-2.0.0.tgz#a7ebf5ffbefda1b7d18d140fcb07b223efb6751a" 1952 | dependencies: 1953 | graceful-fs "^4.1.2" 1954 | pify "^2.3.0" 1955 | pinkie-promise "^2.0.0" 1956 | strip-bom "^2.0.0" 1957 | strip-bom-stream "^2.0.0" 1958 | vinyl "^1.1.0" 1959 | 1960 | vinyl-fs@^0.3.0: 1961 | version "0.3.14" 1962 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" 1963 | dependencies: 1964 | defaults "^1.0.0" 1965 | glob-stream "^3.1.5" 1966 | glob-watcher "^0.0.6" 1967 | graceful-fs "^3.0.0" 1968 | mkdirp "^0.5.0" 1969 | strip-bom "^1.0.0" 1970 | through2 "^0.6.1" 1971 | vinyl "^0.4.0" 1972 | 1973 | vinyl@^0.4.0: 1974 | version "0.4.6" 1975 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 1976 | dependencies: 1977 | clone "^0.2.0" 1978 | clone-stats "^0.0.1" 1979 | 1980 | vinyl@^0.5.0: 1981 | version "0.5.3" 1982 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 1983 | dependencies: 1984 | clone "^1.0.0" 1985 | clone-stats "^0.0.1" 1986 | replace-ext "0.0.1" 1987 | 1988 | vinyl@^1.1.0, vinyl@^1.2.0: 1989 | version "1.2.0" 1990 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" 1991 | dependencies: 1992 | clone "^1.0.0" 1993 | clone-stats "^0.0.1" 1994 | replace-ext "0.0.1" 1995 | 1996 | which@^1.2.12: 1997 | version "1.2.14" 1998 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 1999 | dependencies: 2000 | isexe "^2.0.0" 2001 | 2002 | wide-align@^1.1.0: 2003 | version "1.1.2" 2004 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2005 | dependencies: 2006 | string-width "^1.0.2" 2007 | 2008 | wrappy@1: 2009 | version "1.0.2" 2010 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2011 | 2012 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.1: 2013 | version "4.0.1" 2014 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2015 | --------------------------------------------------------------------------------