├── .coveralls.yml ├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── test ├── .csslintrc ├── expected │ ├── checkstyle-xml.xml │ └── text.txt ├── fixtures │ ├── addRule.css │ ├── duplicateProperties.css │ ├── empty.css │ ├── leaktest1.css │ ├── leaktest2.css │ ├── missingPrefixes.css │ ├── usingImportant.css │ └── validCSS.css └── main.js └── yarn.lock /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | insert_final_newline = true 6 | indent_style = space 7 | indent_size = 2 8 | trim_trailing_whitespace = true 9 | 10 | [*.md] 11 | trim_trailing_whitespace = false 12 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "semistandard", 3 | "rules": { 4 | "brace-style": [2, "stroustrup", { "allowSingleLine": true }], 5 | "space-before-function-paren": [2, "never"] 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /*.log 3 | .idea/ 4 | *.iml 5 | 6 | coverage/ 7 | .nyc_output/ 8 | test-output.xml 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - node 5 | - lts/* 6 | script: npm run cover 7 | after_success: cat coverage/lcov.info | node_modules/.bin/coveralls --verbose 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013 Larry Davis 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 | # gulp-csslint [![NPM version][npm-image]][npm-url] [![Build status][travis-image]][travis-url] [![Test coverage][coveralls-image]][coveralls-url] [![Dependency status][david-image]][david-url] 2 | > CSSLint plugin for gulp 3 3 | 4 | ## Usage 5 | 6 | First, install `gulp-csslint` as a development dependency: 7 | 8 | ```shell 9 | npm install --save-dev gulp-csslint 10 | ``` 11 | 12 | Then, add it to your `gulpfile.js`: 13 | 14 | ```js 15 | var csslint = require('gulp-csslint'); 16 | 17 | gulp.task('css', function() { 18 | gulp.src('client/css/*.css') 19 | .pipe(csslint()) 20 | .pipe(csslint.formatter()); 21 | }); 22 | ``` 23 | 24 | ## API 25 | 26 | ### csslint(ruleConfiguration) 27 | 28 | #### ruleConfiguration 29 | Type: `Object` 30 | 31 | If you pass `lookup: false`, the local .csslintrc is not looked up automatically. 32 | 33 | You can pass rule configuration as an object. See the [list of rules by ID on the CSSLint wiki](https://github.com/stubbornella/csslint/wiki/Rules-by-ID) for valid rule IDs. 34 | 35 | Any properties passed will be in _addition_ to (or overwriting) the ones in .csslintrc (unless `lookup: false` is passed). 36 | 37 | ```js 38 | gulp.src('client/css/*.css') 39 | .pipe(csslint({ 40 | 'shorthand': false 41 | })) 42 | .pipe(csslint.formatter()); 43 | ``` 44 | 45 | ### csslint(csslintrc) 46 | 47 | #### csslintrc 48 | Type: `String` 49 | 50 | You can also pass the path to your csslintrc file instead of a rule configuration object. 51 | 52 | ```js 53 | gulp.src('client/css/*.css') 54 | .pipe(csslint('csslintrc.json')) 55 | .pipe(csslint.formatter()); 56 | ``` 57 | 58 | ## Results 59 | 60 | Adds the following properties to the file object: 61 | 62 | ```js 63 | file.csslint.success = true; // or false 64 | file.csslint.report = {}; // The report from CSSLint after linting the file 65 | ``` 66 | 67 | ## Using formatters 68 | 69 | Several formatters come built-in to CSSLint. To use one of these formatters, pass the name to `csslint.formatter`. 70 | 71 | For a list of all formatters supported by `csslint`, see the [csslint wiki](https://github.com/CSSLint/csslint/wiki/Command-line-interface#--format). 72 | 73 | ```js 74 | gulp.task('lint', function() { 75 | gulp.src('lib/*.css') 76 | .pipe(csslint()) 77 | .pipe(csslint.formatter('junit-xml')); 78 | ``` 79 | 80 | ### Custom formatters 81 | 82 | Custom formatters can be provided by first adding a valid CSSLint-formatter, such as `csslint-stylish`, then using it: 83 | 84 | ```js 85 | var csslint = require('gulp-csslint'); 86 | 87 | csslint.addFormatter('csslint-stylish'); 88 | 89 | gulp.task('lint', function() { 90 | gulp.src('lib/*.css') 91 | .pipe(csslint()) 92 | .pipe(csslint.formatter('stylish')) 93 | }); 94 | ``` 95 | 96 | You can provide the formatter by requiring it directly as well: 97 | 98 | ```js 99 | var csslint = require('gulp-csslint'); 100 | 101 | gulp.task('lint', function() { 102 | gulp.src('lib/*.css') 103 | .pipe(csslint()) 104 | .pipe(csslint.formatter(require('csslint-stylish'))) 105 | }); 106 | ``` 107 | 108 | You can also provide an object with the following contract to implement your own formatter: 109 | 110 | ```js 111 | { 112 | id: 'string', // Name passed to csslint.formatter 113 | startFormat: function() {}, // Called before parsing any files, should return a string 114 | startFormat: function() {}, // Called after parsing all files, should return a string 115 | formatResult: function (results, filename, options) {} // Called with a results-object per file linted. Optionally called with a filename, and options passed to csslint.formatter(*formatter*, *options*) 116 | } 117 | ``` 118 | 119 | You can also provide a function, which is called for each file linted with the same arguments as `formatResults`. 120 | 121 | ### Formatter options 122 | You can also pass options to the built-in formatter, by passing a second option to `formatter`. 123 | 124 | ```js 125 | gulp.task('lint', function() { 126 | gulp.src('lib/*.css') 127 | .pipe(csslint()) 128 | .pipe(csslint.formatter('junit-xml', options)); 129 | }); 130 | ``` 131 | 132 | See the documentation for the formatters regarding what options they support. 133 | 134 | This plugin supports one option outside of that, called `logger`, allowing you to specify how to log out the report. 135 | Default is using `process.stdout.write`, but you can use e.g. `console.log`, or `gutil.log`. 136 | 137 | ```js 138 | gulp.task('lint', function() { 139 | gulp.src('lib/*.css') 140 | .pipe(csslint()) 141 | .pipe(csslint.formatter('junit-xml', {logger: console.log.bind(console)})); 142 | }); 143 | ``` 144 | 145 | ```js 146 | gulp.task('lint', function() { 147 | gulp.src('lib/*.css') 148 | .pipe(csslint()) 149 | .pipe(csslint.formatter('junit-xml', {logger: gutil.log.bind(null, 'gulp-csslint:')})); 150 | }); 151 | ``` 152 | 153 | `logger` is called once for the starting format of the formatter, then once for each file containing violations, then 154 | lastly once for the ending format. Instead of writing to `stdout`, you can write to file using this option. 155 | 156 | ```js 157 | gulp.task('lint', function(cb) { 158 | var fs = require('fs'); 159 | var output = ''; 160 | 161 | gulp.src('lib/*.css') 162 | .pipe(csslint()) 163 | .pipe(csslint.formatter('junit-xml', {logger: function(str) { output += str; }})) 164 | .on('end', function(err) { 165 | if (err) return cb(err); 166 | 167 | fs.writeFile('some/path/junit.xml', output, cb); 168 | }); 169 | }); 170 | ``` 171 | 172 | This functionality is only available when not using a custom formatting function. 173 | 174 | ## Custom rules 175 | 176 | Use the `csslint.addRule(rule)` method to define custom rules that run in addition to the rules defined in the csslintrc file. See [Working with Rules](https://github.com/CSSLint/csslint/wiki/Working-with-Rules) for details. 177 | 178 | ```js 179 | var csslint = require('gulp-csslint'); 180 | 181 | csslint.addRule({ 182 | // rule information 183 | }); 184 | 185 | gulp.task('lint', function() { 186 | gulp.src('lib/*.css') 187 | .pipe(csslint()) 188 | .pipe(csslint.formatter()) 189 | }); 190 | ``` 191 | 192 | ## Fail on errors 193 | 194 | Pipe the file stream to `csslint.failFormatter()` to fail on errors. 195 | 196 | ```js 197 | var csslint = require('gulp-csslint'); 198 | 199 | gulp.task('lint', function() { 200 | gulp.src('lib/*.css') 201 | .pipe(csslint()) 202 | .pipe(csslint.formatter()) // Display errors 203 | .pipe(csslint.formatter('fail')); // Fail on error (or csslint.failFormatter()) 204 | }); 205 | ``` 206 | 207 | 208 | [travis-url]: http://travis-ci.org/lazd/gulp-csslint 209 | [travis-image]: https://img.shields.io/travis/lazd/gulp-csslint.svg 210 | [npm-url]: https://npmjs.org/package/gulp-csslint 211 | [npm-image]: https://img.shields.io/npm/v/gulp-csslint.svg 212 | [david-url]: https://david-dm.org/lazd/gulp-csslint 213 | [david-image]: https://img.shields.io/david/lazd/gulp-csslint.svg 214 | [coveralls-url]: https://coveralls.io/r/lazd/gulp-csslint 215 | [coveralls-image]: https://img.shields.io/coveralls/lazd/gulp-csslint.svg 216 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var PluginError = require('plugin-error'); 4 | var through = require('through2'); 5 | var csslint = require('csslint').CSSLint; 6 | var RcLoader = require('rcloader'); 7 | 8 | function validateFormatter(formatter) { 9 | if (typeof formatter !== 'object' || !formatter.id || !formatter.startFormat || !formatter.endFormat || !formatter.endFormat || !formatter.formatResults) { 10 | throw new Error('Invalid formatter: formatters need to be objects, and contain "id", "name", "startFormat", "endFormat" and "formatResults"'); 11 | } 12 | } 13 | 14 | var cssLintPlugin = function(options) { 15 | options = options || {}; 16 | var rcLoader = new RcLoader('.csslintrc', options, { loader: 'async' }); 17 | return through.obj(function(file, enc, cb) { 18 | if (file.isNull()) return cb(null, file); // pass along 19 | if (file.isStream()) return cb(new PluginError('gulp-csslint: Streaming not supported'), file); 20 | 21 | var ruleset = {}; 22 | // Build a list of all available rules 23 | csslint.getRules().forEach(function(rule) { 24 | ruleset[rule.id] = 1; 25 | }); 26 | 27 | var content = file.contents.toString(enc); 28 | 29 | if (!content) return cb(null, file); // pass along 30 | 31 | rcLoader.for(file.path, function(err, opts) { 32 | if (err) return cb(err); 33 | 34 | for (var rule in opts) { 35 | if (!opts[rule]) { 36 | // Remove rules that are turned off 37 | delete ruleset[rule]; 38 | } 39 | else { 40 | ruleset[rule] = opts[rule]; 41 | } 42 | } 43 | 44 | var report = csslint.verify(content, ruleset); 45 | 46 | // send status down-stream 47 | file.csslint = { report: report, success: !report.messages.length }; 48 | 49 | cb(null, file); 50 | }); 51 | }); 52 | }; 53 | 54 | cssLintPlugin.formatter = function(customFormatter, options) { 55 | var formatter = csslint.getFormatter('text'); 56 | var builtInFormatter = true; 57 | var output; 58 | 59 | options = options || {}; 60 | 61 | var logger = options.logger || process.stdout.write.bind(process.stdout); 62 | if (customFormatter) { 63 | if (typeof customFormatter === 'function') { 64 | formatter = customFormatter; 65 | builtInFormatter = false; 66 | } 67 | else if (typeof customFormatter === 'string') { 68 | if (customFormatter === 'fail') { 69 | return cssLintPlugin.failFormatter(); 70 | } 71 | 72 | formatter = csslint.getFormatter(customFormatter); 73 | 74 | if (typeof formatter === 'undefined') { 75 | throw new Error('Invalid reporter: ' + customFormatter); 76 | } 77 | } 78 | else if (typeof customFormatter === 'object') { 79 | validateFormatter(customFormatter); 80 | formatter = customFormatter; 81 | } 82 | else { 83 | throw new Error('Invalid custom formatter passed, please pass `null` or `undefined` if you want to pass options while using default formatter.'); 84 | } 85 | } 86 | 87 | if (builtInFormatter) { 88 | output = [formatter.startFormat()]; 89 | } 90 | 91 | return through.obj( 92 | function(file, enc, cb) { 93 | // Only report if CSSLint was ran and errors were found 94 | if (file.csslint && !file.csslint.success) { 95 | if (builtInFormatter) { 96 | output.push(formatter.formatResults(file.csslint.report, file.path, options)); 97 | } 98 | else { 99 | formatter(file.csslint.report, file.path, options); 100 | } 101 | } 102 | 103 | return cb(null, file); 104 | }, 105 | function(cb) { 106 | if (builtInFormatter) { 107 | output.push(formatter.endFormat()); 108 | 109 | output 110 | .filter(function(str) { 111 | return str; 112 | }) 113 | .forEach(logger); 114 | } 115 | 116 | return cb(); 117 | } 118 | ).resume(); // Force flow-mode https://nodejs.org/docs/latest/api/stream.html#stream_event_end 119 | }; 120 | 121 | cssLintPlugin.addRule = function(rule) { 122 | if (typeof rule !== 'object') { 123 | throw new Error('Invalid rule: rules need to be objects.'); 124 | } 125 | csslint.addRule(rule); 126 | }; 127 | 128 | cssLintPlugin.addFormatter = function(formatter) { 129 | formatter = typeof formatter === 'string' ? require(formatter) : formatter; 130 | validateFormatter(formatter); 131 | 132 | csslint.addFormatter(formatter); 133 | }; 134 | 135 | cssLintPlugin.failFormatter = function() { 136 | return through.obj(function(file, enc, cb) { 137 | // Nothing to report or no errors 138 | if (!file.csslint || file.csslint.success) { 139 | return cb(null, file); 140 | } 141 | 142 | return cb(new PluginError('gulp-csslint', 'CSSLint failed for ' + file.relative), file); 143 | }); 144 | }; 145 | 146 | module.exports = cssLintPlugin; 147 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gulp-csslint", 3 | "version": "1.0.1", 4 | "description": "CSSLint plugin for gulp", 5 | "main": "index.js", 6 | "files": [ 7 | "index.js" 8 | ], 9 | "dependencies": { 10 | "csslint": "^1.0.2", 11 | "fancy-log": "^1.3.2", 12 | "plugin-error": "^1.0.1", 13 | "rcloader": "^0.2.1", 14 | "through2": "^2.0.1", 15 | "vinyl": "^2.1.0" 16 | }, 17 | "devDependencies": { 18 | "coveralls": "^2.11.12", 19 | "csslint-stylish": "0.0.4", 20 | "eslint": "^3.2.2", 21 | "eslint-config-semistandard": "^7.0.0-beta.0", 22 | "eslint-config-standard": "^6.0.0-beta.2", 23 | "eslint-plugin-promise": "^2.0.1", 24 | "eslint-plugin-standard": "^2.0.0", 25 | "mocha": "^3.0.2", 26 | "node-version-check": "^2.1.0", 27 | "nyc": "^7.1.0", 28 | "rimraf": "^2.5.4", 29 | "should": "^11.0.0", 30 | "sinon": "^1.17.5" 31 | }, 32 | "scripts": { 33 | "clean": "rimraf coverage/ .nyc_output/", 34 | "cover": "nyc mocha", 35 | "postcover": "nyc report --reporter lcov", 36 | "lint": "node-version-gte-4 && eslint index.js test/main.js || node-version-lt-4", 37 | "precover": "npm run lint && npm run clean", 38 | "pretest": "npm run lint", 39 | "test": "mocha" 40 | }, 41 | "repository": { 42 | "type": "git", 43 | "url": "git://github.com/lazd/gulp-csslint.git" 44 | }, 45 | "keywords": [ 46 | "csslint", 47 | "gulpplugin" 48 | ], 49 | "author": "Larry Davis ", 50 | "license": "MIT", 51 | "bugs": { 52 | "url": "https://github.com/lazd/gulp-csslint/issues" 53 | }, 54 | "engines": { 55 | "node": ">=0.10" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /test/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "vendor-prefix": false 3 | } 4 | -------------------------------------------------------------------------------- /test/expected/checkstyle-xml.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/expected/text.txt: -------------------------------------------------------------------------------- 1 | csslint: There are 2 problems in test/fixtures/usingImportant.css. 2 | 3 | usingImportant.css 4 | 1: warning at line 2, col 1 5 | Bad naming: .mybox 6 | .mybox { 7 | 8 | usingImportant.css 9 | 2: warning at line 3, col 3 10 | Use of !important 11 | border: 1px solid black !important; 12 | -------------------------------------------------------------------------------- /test/fixtures/addRule.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/duplicateProperties.css: -------------------------------------------------------------------------------- 1 | /* properties with the same value */ 2 | .mybox { 3 | border: 1px solid black; 4 | border: 1px solid black; 5 | } 6 | 7 | /* properties separated by another property */ 8 | .mybox { 9 | border: 1px solid black; 10 | color: green; 11 | border: 1px solid red; 12 | } 13 | -------------------------------------------------------------------------------- /test/fixtures/empty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-csslint/c895cee6cce55a654bd901a1b8369be616fa5b48/test/fixtures/empty.css -------------------------------------------------------------------------------- /test/fixtures/leaktest1.css: -------------------------------------------------------------------------------- 1 | /*csslint duplicate-properties:false,order-alphabetical:false*/ 2 | .no-leak-1{ 3 | height: 42px; 4 | width: 20px; 5 | height: 21px; 6 | } 7 | -------------------------------------------------------------------------------- /test/fixtures/leaktest2.css: -------------------------------------------------------------------------------- 1 | /*csslint order-alphabetical:false*/ 2 | .no-leak-2{ 3 | height: 42px; 4 | width: 20px; 5 | height: 21px; 6 | } 7 | -------------------------------------------------------------------------------- /test/fixtures/missingPrefixes.css: -------------------------------------------------------------------------------- 1 | /* Missing -webkit */ 2 | .mybox { 3 | -moz-border-radius: 5px; 4 | } 5 | -------------------------------------------------------------------------------- /test/fixtures/usingImportant.css: -------------------------------------------------------------------------------- 1 | /* properties using important */ 2 | .mybox { 3 | border: 1px solid black !important; 4 | } 5 | -------------------------------------------------------------------------------- /test/fixtures/validCSS.css: -------------------------------------------------------------------------------- 1 | .is-foo { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- 1 | /* eslint-env mocha */ 2 | 3 | var cssLintPlugin = require('../'); 4 | var cssLint = require('csslint').CSSLint; 5 | var should = require('should'); 6 | var fancyLog = require('fancy-log'); 7 | var Vinyl = require('vinyl'); 8 | var fs = require('fs'); 9 | var path = require('path'); 10 | var sinon = require('sinon'); 11 | 12 | var getFile = function(filePath) { 13 | filePath = 'test/' + filePath; 14 | return new Vinyl({ 15 | path: filePath, 16 | cwd: 'test/', 17 | base: path.dirname(filePath), 18 | contents: fs.readFileSync(filePath) 19 | }); 20 | }; 21 | 22 | var getContents = function(filePath) { 23 | filePath = 'test/' + filePath; 24 | return fs.readFileSync(filePath, 'utf8').trim(); 25 | }; 26 | 27 | describe('gulp-csslint', function() { 28 | describe('cssLintPlugin()', function() { 29 | it('should pass file through', function(done) { 30 | var a = 0; 31 | 32 | var file = getFile('fixtures/validCSS.css'); 33 | 34 | var stream = cssLintPlugin(); 35 | stream.on('data', function(newFile) { 36 | should.exist(newFile); 37 | should.exist(newFile.path); 38 | should.exist(newFile.relative); 39 | should.exist(newFile.contents); 40 | newFile.path.should.equal('test/fixtures/validCSS.css'); 41 | newFile.relative.should.equal('validCSS.css'); 42 | ++a; 43 | }); 44 | 45 | stream.once('end', function() { 46 | a.should.equal(1); 47 | done(); 48 | }); 49 | 50 | stream.write(file); 51 | stream.end(); 52 | }); 53 | 54 | it('should send success status', function(done) { 55 | var a = 0; 56 | 57 | var file = getFile('fixtures/validCSS.css'); 58 | 59 | var stream = cssLintPlugin(); 60 | stream.on('data', function(newFile) { 61 | ++a; 62 | should.exist(newFile.csslint.success); 63 | newFile.csslint.success.should.equal(true); 64 | should.not.exist(newFile.csslint.results); 65 | should.not.exist(newFile.csslint.opt); 66 | }); 67 | stream.once('end', function() { 68 | a.should.equal(1); 69 | done(); 70 | }); 71 | 72 | stream.write(file); 73 | stream.end(); 74 | }); 75 | 76 | it('should send failure status', function(done) { 77 | var a = 0; 78 | 79 | var file = getFile('fixtures/duplicateProperties.css'); 80 | 81 | var stream = cssLintPlugin(); 82 | stream.on('data', function(newFile) { 83 | ++a; 84 | should.exist(newFile.csslint.success); 85 | newFile.csslint.success.should.equal(false); 86 | should.exist(newFile.csslint.report); 87 | }); 88 | stream.once('end', function() { 89 | a.should.equal(1); 90 | done(); 91 | }); 92 | 93 | stream.write(file); 94 | stream.end(); 95 | }); 96 | 97 | it('should lint two files', function(done) { 98 | var a = 0; 99 | 100 | var file1 = getFile('fixtures/duplicateProperties.css'); 101 | var file2 = getFile('fixtures/missingPrefixes.css'); 102 | 103 | var stream = cssLintPlugin(); 104 | stream.on('data', function() { 105 | ++a; 106 | }); 107 | 108 | stream.once('end', function() { 109 | a.should.equal(2); 110 | done(); 111 | }); 112 | 113 | stream.write(file1); 114 | stream.write(file2); 115 | stream.end(); 116 | }); 117 | 118 | it('should not leak options across files', function(done) { 119 | var failedFiles = 0; 120 | var file1 = getFile('fixtures/leaktest1.css'); 121 | var file2 = getFile('fixtures/leaktest2.css'); 122 | var stream = cssLintPlugin({}); 123 | 124 | stream.on('data', function(newFile) { 125 | should.exist(newFile.csslint.success); 126 | if (!newFile.csslint.success) { 127 | failedFiles++; 128 | } 129 | }); 130 | 131 | stream.once('end', function() { 132 | failedFiles.should.equal(1); 133 | done(); 134 | }); 135 | 136 | stream.write(file1); 137 | stream.write(file2); 138 | stream.end(); 139 | }); 140 | 141 | it('should support options', function(done) { 142 | var a = 0; 143 | 144 | var file = getFile('fixtures/usingImportant.css'); 145 | 146 | var stream = cssLintPlugin({ 147 | important: false 148 | }); 149 | stream.on('data', function(newFile) { 150 | ++a; 151 | should.exist(newFile.csslint.success); 152 | newFile.csslint.success.should.equal(true); 153 | should.not.exist(newFile.csslint.results); 154 | should.not.exist(newFile.csslint.opt); 155 | }); 156 | stream.once('end', function() { 157 | a.should.equal(1); 158 | done(); 159 | }); 160 | 161 | stream.write(file); 162 | stream.end(); 163 | }); 164 | 165 | it('should support csslintrc', function(done) { 166 | var a = 0; 167 | 168 | var file = getFile('fixtures/missingPrefixes.css'); 169 | 170 | var stream = cssLintPlugin('test/.csslintrc'); 171 | stream.on('data', function(newFile) { 172 | ++a; 173 | should.exist(newFile.csslint.success); 174 | newFile.csslint.success.should.equal(true); 175 | should.not.exist(newFile.csslint.results); 176 | should.not.exist(newFile.csslint.opt); 177 | }); 178 | stream.once('end', function() { 179 | a.should.equal(1); 180 | done(); 181 | }); 182 | 183 | stream.write(file); 184 | stream.end(); 185 | }); 186 | 187 | it('should find csslintrc automatically', function(done) { 188 | var a = 0; 189 | 190 | var file = getFile('fixtures/missingPrefixes.css'); 191 | 192 | var stream = cssLintPlugin(); 193 | stream.on('data', function(newFile) { 194 | ++a; 195 | should.exist(newFile.csslint.success); 196 | newFile.csslint.success.should.equal(true); 197 | should.not.exist(newFile.csslint.results); 198 | should.not.exist(newFile.csslint.opt); 199 | }); 200 | stream.once('end', function() { 201 | a.should.equal(1); 202 | done(); 203 | }); 204 | 205 | stream.write(file); 206 | stream.end(); 207 | }); 208 | 209 | it('should report added rule linting', function(done) { 210 | var a = 0; 211 | 212 | var file = getFile('fixtures/addRule.css'); 213 | cssLintPlugin.addRule({ 214 | id: 'oocss', 215 | name: 'OOCSS', 216 | desc: 'Class names must follow pattern', 217 | browsers: 'All', 218 | 219 | // initialization 220 | init: function(parser, formatter) { 221 | 'use strict'; 222 | var rule = this; 223 | parser.addListener('startrule', function(event) { 224 | var line = event.line; 225 | var col = event.col; 226 | 227 | for (var i = 0, len = event.selectors.length; i < len; i++) { 228 | var selectors = event.selectors[i].text.split(/(?=\.)/); 229 | for (var s = 0, l = selectors.length; s < l; s++) { 230 | var selector = selectors[s].trim(); 231 | if (selector.charAt(0) !== '.') { 232 | return; 233 | } 234 | if (!selector.match(/^\.(_)?(o|c|u|is|has|js|qa)-[a-z0-9]+$/)) { 235 | formatter.warn('Bad naming: ' + selector, line, col, rule); 236 | } 237 | } 238 | } 239 | }); 240 | } 241 | }); 242 | 243 | var stream = cssLintPlugin(); 244 | stream.on('data', function(newFile) { 245 | ++a; 246 | should.exist(newFile.csslint.success); 247 | newFile.csslint.success.should.equal(false); 248 | should.exist(newFile.csslint.report); 249 | }); 250 | stream.once('end', function() { 251 | a.should.equal(1); 252 | done(); 253 | }); 254 | 255 | stream.write(file); 256 | stream.end(); 257 | }); 258 | 259 | it('should not fail on empty files', function(done) { 260 | var a = 0; 261 | 262 | var file = getFile('fixtures/empty.css'); 263 | 264 | var stream = cssLintPlugin(); 265 | 266 | stream.on('data', function(newFile) { 267 | ++a; 268 | should.not.exist(newFile.csslint); 269 | }); 270 | stream.once('end', function() { 271 | a.should.equal(1); 272 | done(); 273 | }); 274 | 275 | stream.write(file); 276 | stream.end(); 277 | }); 278 | 279 | it('should default to text formatter', function(done) { 280 | var a = 0; 281 | 282 | var file = getFile('fixtures/usingImportant.css'); 283 | var expected = getContents('expected/text.txt').trim(); 284 | var callback = sinon.spy(); 285 | 286 | var lintStream = cssLintPlugin(); 287 | var formatterStream = cssLintPlugin.formatter(null, {logger: callback}); 288 | 289 | formatterStream.on('data', function() { 290 | ++a; 291 | }); 292 | lintStream.on('data', function(file) { 293 | formatterStream.write(file); 294 | }); 295 | lintStream.once('end', function() { 296 | formatterStream.end(); 297 | }); 298 | 299 | formatterStream.once('end', function() { 300 | a.should.equal(1); 301 | sinon.assert.calledOnce(callback); 302 | callback.firstCall.args[0].trim().should.equal(expected); 303 | 304 | done(); 305 | }); 306 | 307 | lintStream.write(file); 308 | lintStream.end(); 309 | }); 310 | }); 311 | 312 | describe('csslintPlugin.failFormatter()', function() { 313 | it('should do nothing on valid code', function(done) { 314 | var a = 0; 315 | 316 | var file = getFile('fixtures/validCSS.css'); 317 | 318 | var lintStream = cssLintPlugin(); 319 | var formatterStream = cssLintPlugin.formatter('fail'); 320 | 321 | formatterStream.on('data', function() { 322 | ++a; 323 | }); 324 | lintStream.on('data', function(file) { 325 | formatterStream.write(file); 326 | }); 327 | lintStream.once('end', function() { 328 | formatterStream.end(); 329 | }); 330 | 331 | formatterStream.once('end', function() { 332 | a.should.equal(1); 333 | 334 | done(); 335 | }); 336 | 337 | lintStream.write(file); 338 | lintStream.end(); 339 | }); 340 | 341 | it('should throw on invalid code', function(done) { 342 | var file = getFile('fixtures/usingImportant.css'); 343 | 344 | var lintStream = cssLintPlugin(); 345 | var formatterStream = cssLintPlugin.formatter('fail'); 346 | 347 | formatterStream.on('error', function(e) { 348 | e.message.should.equal('CSSLint failed for usingImportant.css'); 349 | done(); 350 | }); 351 | lintStream.on('data', function(file) { 352 | formatterStream.write(file); 353 | }); 354 | lintStream.once('end', function() { 355 | formatterStream.end(); 356 | }); 357 | 358 | lintStream.write(file); 359 | lintStream.end(); 360 | }); 361 | }); 362 | 363 | describe('cssLintPlugin.formatter()', function() { 364 | it('should support built-in CSSLint formatters', function(done) { 365 | var a = 0; 366 | 367 | var file = getFile('fixtures/usingImportant.css'); 368 | var expected = getContents('expected/checkstyle-xml.xml'); 369 | var callback = sinon.spy(); 370 | 371 | var lintStream = cssLintPlugin(); 372 | var formatterStream = cssLintPlugin.formatter('checkstyle-xml', {logger: callback}); 373 | 374 | formatterStream.on('data', function() { 375 | ++a; 376 | }); 377 | lintStream.on('data', function(file) { 378 | formatterStream.write(file); 379 | }); 380 | lintStream.once('end', function() { 381 | formatterStream.end(); 382 | }); 383 | 384 | formatterStream.once('end', function() { 385 | a.should.equal(1); 386 | sinon.assert.calledThrice(callback); 387 | callback.firstCall.args[0].should.equal(''); 388 | callback.secondCall.args[0].should.equal(expected); 389 | callback.thirdCall.args[0].should.equal(''); 390 | 391 | done(); 392 | }); 393 | 394 | lintStream.write(file); 395 | lintStream.end(); 396 | }); 397 | 398 | it('should write report to disk', function(done) { 399 | var a = 0; 400 | var output = ''; 401 | 402 | var file = getFile('fixtures/usingImportant.css'); 403 | var expected = getContents('expected/checkstyle-xml.xml'); 404 | 405 | var lintStream = cssLintPlugin(); 406 | var formatterStream = cssLintPlugin.formatter('checkstyle-xml', { 407 | logger: function(str) { 408 | output += str; 409 | } 410 | }); 411 | 412 | sinon.stub(fancyLog, 'info'); 413 | 414 | formatterStream.on('data', function() { 415 | ++a; 416 | }); 417 | lintStream.on('data', function(file) { 418 | formatterStream.write(file); 419 | }); 420 | lintStream.once('end', function() { 421 | formatterStream.end(); 422 | }); 423 | 424 | formatterStream.once('end', function() { 425 | fs.writeFile('test-output.xml', output, function() { 426 | a.should.equal(1); 427 | sinon.assert.notCalled(fancyLog.info); 428 | 429 | fancyLog.info.restore(); 430 | 431 | fs.readFile('test-output.xml', function(err, content) { 432 | (err === null).should.be.true; 433 | 434 | var toString = content.toString(); 435 | 436 | toString.should.equal('' + expected + ''); 437 | done(); 438 | }); 439 | }); 440 | }); 441 | 442 | lintStream.write(file); 443 | lintStream.end(); 444 | }); 445 | 446 | it('should not print empty output by built-in CSSLint formatters', function(done) { 447 | var a = 0; 448 | 449 | var file = getFile('fixtures/validCSS.css'); 450 | var callback = sinon.spy(); 451 | 452 | var lintStream = cssLintPlugin(); 453 | var formatterStream = cssLintPlugin.formatter('text', {logger: callback}); 454 | 455 | formatterStream.on('data', function() { 456 | ++a; 457 | }); 458 | lintStream.on('data', function(newFile) { 459 | should.exist(newFile.csslint.success); 460 | newFile.csslint.success.should.equal(true); 461 | formatterStream.write(newFile); 462 | }); 463 | lintStream.once('end', function() { 464 | formatterStream.end(); 465 | }); 466 | 467 | formatterStream.once('end', function() { 468 | sinon.assert.notCalled(callback); 469 | a.should.equal(1); 470 | 471 | done(); 472 | }); 473 | 474 | lintStream.write(file); 475 | lintStream.end(); 476 | }); 477 | 478 | it('should allow function as reporter', function(done) { 479 | var a = 0; 480 | 481 | var file = getFile('fixtures/usingImportant.css'); 482 | 483 | var lintStream = cssLintPlugin(); 484 | var formatterStream = cssLintPlugin.formatter(function(results, filename, options) { 485 | ++a; 486 | }); 487 | 488 | lintStream.on('data', function(file) { 489 | formatterStream.write(file); 490 | }); 491 | lintStream.once('end', function() { 492 | formatterStream.end(); 493 | }); 494 | 495 | formatterStream.once('end', function() { 496 | a.should.equal(1); 497 | 498 | done(); 499 | }); 500 | 501 | lintStream.write(file); 502 | lintStream.end(); 503 | }); 504 | 505 | it('should have a fail reporter', function() { 506 | cssLintPlugin.formatter('fail').should.be.an.Object(); 507 | }); 508 | 509 | it('should accept object fulfilling the contract', function() { 510 | cssLintPlugin.formatter(require('csslint-stylish')).should.be.an.Object(); 511 | }); 512 | 513 | it('should throw on invalid formatter', function(done) { 514 | try { 515 | cssLintPlugin.formatter({ somehing: 'really random' }); 516 | } 517 | catch (e) { 518 | e.message.should.equal('Invalid formatter: formatters need to be objects, and contain "id", "name", "startFormat", "endFormat" and "formatResults"'); 519 | done(); 520 | } 521 | }); 522 | 523 | it('should throw on missing formatter', function(done) { 524 | try { 525 | cssLintPlugin.formatter('something-weird'); 526 | } 527 | catch (e) { 528 | e.message.should.equal('Invalid reporter: something-weird'); 529 | done(); 530 | } 531 | }); 532 | 533 | it('should throw on unknown parameter', function(done) { 534 | try { 535 | cssLintPlugin.formatter(true); 536 | } 537 | catch (e) { 538 | e.message.should.equal('Invalid custom formatter passed, please pass `null` or `undefined` if you want to pass options while using default formatter.'); 539 | done(); 540 | } 541 | }); 542 | }); 543 | 544 | describe('cssLintPlugin.addFormatter()', function() { 545 | afterEach(function() { 546 | delete require.cache[require.resolve('../')]; 547 | delete require.cache[require.resolve('csslint')]; 548 | 549 | cssLint = require('csslint').CSSLint; 550 | cssLintPlugin = require('../'); 551 | }); 552 | 553 | it('should be able to add custom formatters by passing strings', function() { 554 | cssLint.hasFormat('stylish').should.equal(false); 555 | cssLintPlugin.addFormatter('csslint-stylish'); 556 | cssLint.hasFormat('stylish').should.equal(true); 557 | }); 558 | 559 | it('should be able to add custom formatters by passing objects', function() { 560 | cssLint.hasFormat('stylish').should.equal(false); 561 | cssLintPlugin.addFormatter(require('csslint-stylish')); 562 | cssLint.hasFormat('stylish').should.equal(true); 563 | }); 564 | }); 565 | }); 566 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | acorn-jsx@^3.0.0: 6 | version "3.0.1" 7 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 8 | dependencies: 9 | acorn "^3.0.4" 10 | 11 | acorn@^3.0.4: 12 | version "3.3.0" 13 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 14 | 15 | acorn@^5.2.1: 16 | version "5.4.1" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102" 18 | 19 | ajv-keywords@^1.0.0: 20 | version "1.5.1" 21 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 22 | 23 | ajv@^4.7.0: 24 | version "4.11.8" 25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 26 | dependencies: 27 | co "^4.6.0" 28 | json-stable-stringify "^1.0.1" 29 | 30 | align-text@^0.1.1, align-text@^0.1.3: 31 | version "0.1.4" 32 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 33 | dependencies: 34 | kind-of "^3.0.2" 35 | longest "^1.0.1" 36 | repeat-string "^1.5.2" 37 | 38 | amdefine@>=0.0.4: 39 | version "1.0.1" 40 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 41 | 42 | ansi-colors@^1.0.1: 43 | version "1.0.1" 44 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.0.1.tgz#e94c6c306005af8b482240241e2f3dea4b855ff3" 45 | dependencies: 46 | ansi-wrap "^0.1.0" 47 | 48 | ansi-escapes@^1.1.0: 49 | version "1.4.0" 50 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 51 | 52 | ansi-gray@^0.1.1: 53 | version "0.1.1" 54 | resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" 55 | dependencies: 56 | ansi-wrap "0.1.0" 57 | 58 | ansi-regex@^2.0.0: 59 | version "2.1.1" 60 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 61 | 62 | ansi-regex@^3.0.0: 63 | version "3.0.0" 64 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 65 | 66 | ansi-styles@^2.2.1: 67 | version "2.2.1" 68 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 69 | 70 | ansi-wrap@0.1.0, ansi-wrap@^0.1.0: 71 | version "0.1.0" 72 | resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" 73 | 74 | append-transform@^0.4.0: 75 | version "0.4.0" 76 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 77 | dependencies: 78 | default-require-extensions "^1.0.0" 79 | 80 | argparse@^1.0.7: 81 | version "1.0.9" 82 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 83 | dependencies: 84 | sprintf-js "~1.0.2" 85 | 86 | arr-diff@^2.0.0: 87 | version "2.0.0" 88 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 89 | dependencies: 90 | arr-flatten "^1.0.1" 91 | 92 | arr-diff@^4.0.0: 93 | version "4.0.0" 94 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 95 | 96 | arr-flatten@^1.0.1: 97 | version "1.1.0" 98 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 99 | 100 | arr-union@^3.1.0: 101 | version "3.1.0" 102 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 103 | 104 | array-union@^1.0.1: 105 | version "1.0.2" 106 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 107 | dependencies: 108 | array-uniq "^1.0.1" 109 | 110 | array-uniq@^1.0.1: 111 | version "1.0.3" 112 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 113 | 114 | array-unique@^0.2.1: 115 | version "0.2.1" 116 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 117 | 118 | arrify@^1.0.0, arrify@^1.0.1: 119 | version "1.0.1" 120 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 121 | 122 | asn1@~0.2.3: 123 | version "0.2.3" 124 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 125 | 126 | assert-plus@1.0.0, assert-plus@^1.0.0: 127 | version "1.0.0" 128 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 129 | 130 | assert-plus@^0.2.0: 131 | version "0.2.0" 132 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 133 | 134 | assign-symbols@^1.0.0: 135 | version "1.0.0" 136 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 137 | 138 | async@^1.4.0: 139 | version "1.5.2" 140 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 141 | 142 | asynckit@^0.4.0: 143 | version "0.4.0" 144 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 145 | 146 | aws-sign2@~0.6.0: 147 | version "0.6.0" 148 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 149 | 150 | aws4@^1.2.1: 151 | version "1.6.0" 152 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 153 | 154 | babel-code-frame@^6.16.0, babel-code-frame@^6.26.0: 155 | version "6.26.0" 156 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 157 | dependencies: 158 | chalk "^1.1.3" 159 | esutils "^2.0.2" 160 | js-tokens "^3.0.2" 161 | 162 | babel-generator@^6.18.0: 163 | version "6.26.0" 164 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 165 | dependencies: 166 | babel-messages "^6.23.0" 167 | babel-runtime "^6.26.0" 168 | babel-types "^6.26.0" 169 | detect-indent "^4.0.0" 170 | jsesc "^1.3.0" 171 | lodash "^4.17.4" 172 | source-map "^0.5.6" 173 | trim-right "^1.0.1" 174 | 175 | babel-messages@^6.23.0: 176 | version "6.23.0" 177 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 178 | dependencies: 179 | babel-runtime "^6.22.0" 180 | 181 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 182 | version "6.26.0" 183 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 184 | dependencies: 185 | core-js "^2.4.0" 186 | regenerator-runtime "^0.11.0" 187 | 188 | babel-template@^6.16.0: 189 | version "6.26.0" 190 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 191 | dependencies: 192 | babel-runtime "^6.26.0" 193 | babel-traverse "^6.26.0" 194 | babel-types "^6.26.0" 195 | babylon "^6.18.0" 196 | lodash "^4.17.4" 197 | 198 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 199 | version "6.26.0" 200 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 201 | dependencies: 202 | babel-code-frame "^6.26.0" 203 | babel-messages "^6.23.0" 204 | babel-runtime "^6.26.0" 205 | babel-types "^6.26.0" 206 | babylon "^6.18.0" 207 | debug "^2.6.8" 208 | globals "^9.18.0" 209 | invariant "^2.2.2" 210 | lodash "^4.17.4" 211 | 212 | babel-types@^6.18.0, babel-types@^6.26.0: 213 | version "6.26.0" 214 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 215 | dependencies: 216 | babel-runtime "^6.26.0" 217 | esutils "^2.0.2" 218 | lodash "^4.17.4" 219 | to-fast-properties "^1.0.3" 220 | 221 | babylon@^6.18.0: 222 | version "6.18.0" 223 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 224 | 225 | balanced-match@^1.0.0: 226 | version "1.0.0" 227 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 228 | 229 | bcrypt-pbkdf@^1.0.0: 230 | version "1.0.1" 231 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 232 | dependencies: 233 | tweetnacl "^0.14.3" 234 | 235 | boom@2.x.x: 236 | version "2.10.1" 237 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 238 | dependencies: 239 | hoek "2.x.x" 240 | 241 | brace-expansion@^1.1.7: 242 | version "1.1.8" 243 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 244 | dependencies: 245 | balanced-match "^1.0.0" 246 | concat-map "0.0.1" 247 | 248 | braces@^1.8.2: 249 | version "1.8.5" 250 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 251 | dependencies: 252 | expand-range "^1.8.1" 253 | preserve "^0.2.0" 254 | repeat-element "^1.1.2" 255 | 256 | browser-stdout@1.3.0: 257 | version "1.3.0" 258 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 259 | 260 | builtin-modules@^1.0.0: 261 | version "1.1.1" 262 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 263 | 264 | caching-transform@^1.0.0: 265 | version "1.0.1" 266 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 267 | dependencies: 268 | md5-hex "^1.2.0" 269 | mkdirp "^0.5.1" 270 | write-file-atomic "^1.1.4" 271 | 272 | caller-path@^0.1.0: 273 | version "0.1.0" 274 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 275 | dependencies: 276 | callsites "^0.2.0" 277 | 278 | callsites@^0.2.0: 279 | version "0.2.0" 280 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 281 | 282 | camelcase@^1.0.2: 283 | version "1.2.1" 284 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 285 | 286 | camelcase@^3.0.0: 287 | version "3.0.0" 288 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 289 | 290 | caseless@~0.11.0: 291 | version "0.11.0" 292 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 293 | 294 | center-align@^0.1.1: 295 | version "0.1.3" 296 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 297 | dependencies: 298 | align-text "^0.1.3" 299 | lazy-cache "^1.0.3" 300 | 301 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 302 | version "1.1.3" 303 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 304 | dependencies: 305 | ansi-styles "^2.2.1" 306 | escape-string-regexp "^1.0.2" 307 | has-ansi "^2.0.0" 308 | strip-ansi "^3.0.0" 309 | supports-color "^2.0.0" 310 | 311 | circular-json@^0.3.1: 312 | version "0.3.3" 313 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 314 | 315 | cli-cursor@^1.0.1: 316 | version "1.0.2" 317 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 318 | dependencies: 319 | restore-cursor "^1.0.1" 320 | 321 | cli-width@^2.0.0: 322 | version "2.2.0" 323 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 324 | 325 | cliui@^2.1.0: 326 | version "2.1.0" 327 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 328 | dependencies: 329 | center-align "^0.1.1" 330 | right-align "^0.1.1" 331 | wordwrap "0.0.2" 332 | 333 | cliui@^3.2.0: 334 | version "3.2.0" 335 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 336 | dependencies: 337 | string-width "^1.0.1" 338 | strip-ansi "^3.0.1" 339 | wrap-ansi "^2.0.0" 340 | 341 | clone-buffer@^1.0.0: 342 | version "1.0.0" 343 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 344 | 345 | clone-stats@^1.0.0: 346 | version "1.0.0" 347 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 348 | 349 | clone@^2.1.1, clone@~2.1.0: 350 | version "2.1.1" 351 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" 352 | 353 | cloneable-readable@^1.0.0: 354 | version "1.0.0" 355 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.0.0.tgz#a6290d413f217a61232f95e458ff38418cfb0117" 356 | dependencies: 357 | inherits "^2.0.1" 358 | process-nextick-args "^1.0.6" 359 | through2 "^2.0.1" 360 | 361 | co@^4.6.0: 362 | version "4.6.0" 363 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 364 | 365 | code-point-at@^1.0.0: 366 | version "1.1.0" 367 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 368 | 369 | color-support@^1.1.3: 370 | version "1.1.3" 371 | resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 372 | 373 | combined-stream@^1.0.5, combined-stream@~1.0.5: 374 | version "1.0.5" 375 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 376 | dependencies: 377 | delayed-stream "~1.0.0" 378 | 379 | commander@2.9.0: 380 | version "2.9.0" 381 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 382 | dependencies: 383 | graceful-readlink ">= 1.0.0" 384 | 385 | commander@^2.9.0: 386 | version "2.13.0" 387 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 388 | 389 | commondir@^1.0.1: 390 | version "1.0.1" 391 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 392 | 393 | concat-map@0.0.1: 394 | version "0.0.1" 395 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 396 | 397 | concat-stream@^1.5.2: 398 | version "1.6.0" 399 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 400 | dependencies: 401 | inherits "^2.0.3" 402 | readable-stream "^2.2.2" 403 | typedarray "^0.0.6" 404 | 405 | convert-source-map@^1.3.0: 406 | version "1.5.1" 407 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 408 | 409 | core-js@^2.4.0: 410 | version "2.5.3" 411 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 412 | 413 | core-util-is@1.0.2, core-util-is@~1.0.0: 414 | version "1.0.2" 415 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 416 | 417 | coveralls@^2.11.12: 418 | version "2.13.3" 419 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.3.tgz#9ad7c2ae527417f361e8b626483f48ee92dd2bc7" 420 | dependencies: 421 | js-yaml "3.6.1" 422 | lcov-parse "0.0.10" 423 | log-driver "1.2.5" 424 | minimist "1.2.0" 425 | request "2.79.0" 426 | 427 | cross-spawn@^4: 428 | version "4.0.2" 429 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 430 | dependencies: 431 | lru-cache "^4.0.1" 432 | which "^1.2.9" 433 | 434 | cryptiles@2.x.x: 435 | version "2.0.5" 436 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 437 | dependencies: 438 | boom "2.x.x" 439 | 440 | csslint-stylish@0.0.4: 441 | version "0.0.4" 442 | resolved "https://registry.yarnpkg.com/csslint-stylish/-/csslint-stylish-0.0.4.tgz#ea986c2ea4e5e602aef2c8491e0d778a187d27c5" 443 | dependencies: 444 | chalk "^1.0.0" 445 | log-symbols "^1.0.0" 446 | pluralize "^1.0.0" 447 | text-table "^0.2.0" 448 | 449 | csslint@^1.0.2: 450 | version "1.0.5" 451 | resolved "https://registry.yarnpkg.com/csslint/-/csslint-1.0.5.tgz#19cc3eda322160fd3f7232af1cb2a360e898a2e9" 452 | dependencies: 453 | clone "~2.1.0" 454 | parserlib "~1.1.1" 455 | 456 | d@1: 457 | version "1.0.0" 458 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 459 | dependencies: 460 | es5-ext "^0.10.9" 461 | 462 | dashdash@^1.12.0: 463 | version "1.14.1" 464 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 465 | dependencies: 466 | assert-plus "^1.0.0" 467 | 468 | debug@2.6.8: 469 | version "2.6.8" 470 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 471 | dependencies: 472 | ms "2.0.0" 473 | 474 | debug@^2.1.1, debug@^2.6.8: 475 | version "2.6.9" 476 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 477 | dependencies: 478 | ms "2.0.0" 479 | 480 | debug@^3.1.0: 481 | version "3.1.0" 482 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 483 | dependencies: 484 | ms "2.0.0" 485 | 486 | decamelize@^1.0.0, decamelize@^1.1.1: 487 | version "1.2.0" 488 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 489 | 490 | deep-is@~0.1.3: 491 | version "0.1.3" 492 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 493 | 494 | default-require-extensions@^1.0.0: 495 | version "1.0.0" 496 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 497 | dependencies: 498 | strip-bom "^2.0.0" 499 | 500 | del@^2.0.2: 501 | version "2.2.2" 502 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 503 | dependencies: 504 | globby "^5.0.0" 505 | is-path-cwd "^1.0.0" 506 | is-path-in-cwd "^1.0.0" 507 | object-assign "^4.0.1" 508 | pify "^2.0.0" 509 | pinkie-promise "^2.0.0" 510 | rimraf "^2.2.8" 511 | 512 | delayed-stream@~1.0.0: 513 | version "1.0.0" 514 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 515 | 516 | detect-indent@^4.0.0: 517 | version "4.0.0" 518 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 519 | dependencies: 520 | repeating "^2.0.0" 521 | 522 | diff@3.2.0: 523 | version "3.2.0" 524 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 525 | 526 | doctrine@^2.0.0: 527 | version "2.1.0" 528 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 529 | dependencies: 530 | esutils "^2.0.2" 531 | 532 | ecc-jsbn@~0.1.1: 533 | version "0.1.1" 534 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 535 | dependencies: 536 | jsbn "~0.1.0" 537 | 538 | error-ex@^1.2.0: 539 | version "1.3.1" 540 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 541 | dependencies: 542 | is-arrayish "^0.2.1" 543 | 544 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 545 | version "0.10.38" 546 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.38.tgz#fa7d40d65bbc9bb8a67e1d3f9cc656a00530eed3" 547 | dependencies: 548 | es6-iterator "~2.0.3" 549 | es6-symbol "~3.1.1" 550 | 551 | es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: 552 | version "2.0.3" 553 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 554 | dependencies: 555 | d "1" 556 | es5-ext "^0.10.35" 557 | es6-symbol "^3.1.1" 558 | 559 | es6-map@^0.1.3: 560 | version "0.1.5" 561 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 562 | dependencies: 563 | d "1" 564 | es5-ext "~0.10.14" 565 | es6-iterator "~2.0.1" 566 | es6-set "~0.1.5" 567 | es6-symbol "~3.1.1" 568 | event-emitter "~0.3.5" 569 | 570 | es6-set@~0.1.5: 571 | version "0.1.5" 572 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 573 | dependencies: 574 | d "1" 575 | es5-ext "~0.10.14" 576 | es6-iterator "~2.0.1" 577 | es6-symbol "3.1.1" 578 | event-emitter "~0.3.5" 579 | 580 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 581 | version "3.1.1" 582 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 583 | dependencies: 584 | d "1" 585 | es5-ext "~0.10.14" 586 | 587 | es6-weak-map@^2.0.1: 588 | version "2.0.2" 589 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 590 | dependencies: 591 | d "1" 592 | es5-ext "^0.10.14" 593 | es6-iterator "^2.0.1" 594 | es6-symbol "^3.1.1" 595 | 596 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 597 | version "1.0.5" 598 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 599 | 600 | escope@^3.6.0: 601 | version "3.6.0" 602 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 603 | dependencies: 604 | es6-map "^0.1.3" 605 | es6-weak-map "^2.0.1" 606 | esrecurse "^4.1.0" 607 | estraverse "^4.1.1" 608 | 609 | eslint-config-semistandard@^7.0.0-beta.0: 610 | version "7.0.0" 611 | resolved "https://registry.yarnpkg.com/eslint-config-semistandard/-/eslint-config-semistandard-7.0.0.tgz#f803493f56a5172f7f59c35ae648360b41f2ff71" 612 | 613 | eslint-config-standard@^6.0.0-beta.2: 614 | version "6.2.1" 615 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-6.2.1.tgz#d3a68aafc7191639e7ee441e7348739026354292" 616 | 617 | eslint-plugin-promise@^2.0.1: 618 | version "2.0.1" 619 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-2.0.1.tgz#a9759cefa5e38ab11bb2ef65a04ef042309aa0a4" 620 | 621 | eslint-plugin-standard@^2.0.0: 622 | version "2.3.1" 623 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-2.3.1.tgz#6765bd2a6d9ecdc7bdf1b145ae4bb30e2b7b86f8" 624 | 625 | eslint@^3.2.2: 626 | version "3.19.0" 627 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 628 | dependencies: 629 | babel-code-frame "^6.16.0" 630 | chalk "^1.1.3" 631 | concat-stream "^1.5.2" 632 | debug "^2.1.1" 633 | doctrine "^2.0.0" 634 | escope "^3.6.0" 635 | espree "^3.4.0" 636 | esquery "^1.0.0" 637 | estraverse "^4.2.0" 638 | esutils "^2.0.2" 639 | file-entry-cache "^2.0.0" 640 | glob "^7.0.3" 641 | globals "^9.14.0" 642 | ignore "^3.2.0" 643 | imurmurhash "^0.1.4" 644 | inquirer "^0.12.0" 645 | is-my-json-valid "^2.10.0" 646 | is-resolvable "^1.0.0" 647 | js-yaml "^3.5.1" 648 | json-stable-stringify "^1.0.0" 649 | levn "^0.3.0" 650 | lodash "^4.0.0" 651 | mkdirp "^0.5.0" 652 | natural-compare "^1.4.0" 653 | optionator "^0.8.2" 654 | path-is-inside "^1.0.1" 655 | pluralize "^1.2.1" 656 | progress "^1.1.8" 657 | require-uncached "^1.0.2" 658 | shelljs "^0.7.5" 659 | strip-bom "^3.0.0" 660 | strip-json-comments "~2.0.1" 661 | table "^3.7.8" 662 | text-table "~0.2.0" 663 | user-home "^2.0.0" 664 | 665 | espree@^3.4.0: 666 | version "3.5.2" 667 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca" 668 | dependencies: 669 | acorn "^5.2.1" 670 | acorn-jsx "^3.0.0" 671 | 672 | esprima@^2.6.0: 673 | version "2.7.3" 674 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 675 | 676 | esprima@^4.0.0: 677 | version "4.0.0" 678 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 679 | 680 | esquery@^1.0.0: 681 | version "1.0.0" 682 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 683 | dependencies: 684 | estraverse "^4.0.0" 685 | 686 | esrecurse@^4.1.0: 687 | version "4.2.0" 688 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 689 | dependencies: 690 | estraverse "^4.1.0" 691 | object-assign "^4.0.1" 692 | 693 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 694 | version "4.2.0" 695 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 696 | 697 | esutils@^2.0.2: 698 | version "2.0.2" 699 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 700 | 701 | event-emitter@~0.3.5: 702 | version "0.3.5" 703 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 704 | dependencies: 705 | d "1" 706 | es5-ext "~0.10.14" 707 | 708 | exit-hook@^1.0.0: 709 | version "1.1.1" 710 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 711 | 712 | expand-brackets@^0.1.4: 713 | version "0.1.5" 714 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 715 | dependencies: 716 | is-posix-bracket "^0.1.0" 717 | 718 | expand-range@^1.8.1: 719 | version "1.8.2" 720 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 721 | dependencies: 722 | fill-range "^2.1.0" 723 | 724 | extend-shallow@^3.0.2: 725 | version "3.0.2" 726 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 727 | dependencies: 728 | assign-symbols "^1.0.0" 729 | is-extendable "^1.0.1" 730 | 731 | extend@~3.0.0: 732 | version "3.0.1" 733 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 734 | 735 | extglob@^0.3.1: 736 | version "0.3.2" 737 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 738 | dependencies: 739 | is-extglob "^1.0.0" 740 | 741 | extsprintf@1.3.0: 742 | version "1.3.0" 743 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 744 | 745 | extsprintf@^1.2.0: 746 | version "1.4.0" 747 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 748 | 749 | fancy-log@^1.3.2: 750 | version "1.3.2" 751 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.2.tgz#f41125e3d84f2e7d89a43d06d958c8f78be16be1" 752 | dependencies: 753 | ansi-gray "^0.1.1" 754 | color-support "^1.1.3" 755 | time-stamp "^1.0.0" 756 | 757 | fast-levenshtein@~2.0.4: 758 | version "2.0.6" 759 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 760 | 761 | figures@^1.3.5: 762 | version "1.7.0" 763 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 764 | dependencies: 765 | escape-string-regexp "^1.0.5" 766 | object-assign "^4.1.0" 767 | 768 | file-entry-cache@^2.0.0: 769 | version "2.0.0" 770 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 771 | dependencies: 772 | flat-cache "^1.2.1" 773 | object-assign "^4.0.1" 774 | 775 | filename-regex@^2.0.0: 776 | version "2.0.1" 777 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 778 | 779 | fill-range@^2.1.0: 780 | version "2.2.3" 781 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 782 | dependencies: 783 | is-number "^2.1.0" 784 | isobject "^2.0.0" 785 | randomatic "^1.1.3" 786 | repeat-element "^1.1.2" 787 | repeat-string "^1.5.2" 788 | 789 | find-cache-dir@^0.1.1: 790 | version "0.1.1" 791 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 792 | dependencies: 793 | commondir "^1.0.1" 794 | mkdirp "^0.5.1" 795 | pkg-dir "^1.0.0" 796 | 797 | find-up@^1.0.0, find-up@^1.1.2: 798 | version "1.1.2" 799 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 800 | dependencies: 801 | path-exists "^2.0.0" 802 | pinkie-promise "^2.0.0" 803 | 804 | flat-cache@^1.2.1: 805 | version "1.3.0" 806 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 807 | dependencies: 808 | circular-json "^0.3.1" 809 | del "^2.0.2" 810 | graceful-fs "^4.1.2" 811 | write "^0.2.1" 812 | 813 | for-in@^1.0.1: 814 | version "1.0.2" 815 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 816 | 817 | for-own@^0.1.4: 818 | version "0.1.5" 819 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 820 | dependencies: 821 | for-in "^1.0.1" 822 | 823 | foreground-child@^1.5.3, foreground-child@^1.5.6: 824 | version "1.5.6" 825 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 826 | dependencies: 827 | cross-spawn "^4" 828 | signal-exit "^3.0.0" 829 | 830 | forever-agent@~0.6.1: 831 | version "0.6.1" 832 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 833 | 834 | form-data@~2.1.1: 835 | version "2.1.4" 836 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 837 | dependencies: 838 | asynckit "^0.4.0" 839 | combined-stream "^1.0.5" 840 | mime-types "^2.1.12" 841 | 842 | formatio@1.1.1: 843 | version "1.1.1" 844 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.1.1.tgz#5ed3ccd636551097383465d996199100e86161e9" 845 | dependencies: 846 | samsam "~1.1" 847 | 848 | fs.realpath@^1.0.0: 849 | version "1.0.0" 850 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 851 | 852 | generate-function@^2.0.0: 853 | version "2.0.0" 854 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 855 | 856 | generate-object-property@^1.1.0: 857 | version "1.2.0" 858 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 859 | dependencies: 860 | is-property "^1.0.0" 861 | 862 | get-caller-file@^1.0.1: 863 | version "1.0.2" 864 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 865 | 866 | getpass@^0.1.1: 867 | version "0.1.7" 868 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 869 | dependencies: 870 | assert-plus "^1.0.0" 871 | 872 | glob-base@^0.3.0: 873 | version "0.3.0" 874 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 875 | dependencies: 876 | glob-parent "^2.0.0" 877 | is-glob "^2.0.0" 878 | 879 | glob-parent@^2.0.0: 880 | version "2.0.0" 881 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 882 | dependencies: 883 | is-glob "^2.0.0" 884 | 885 | glob@7.1.1: 886 | version "7.1.1" 887 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 888 | dependencies: 889 | fs.realpath "^1.0.0" 890 | inflight "^1.0.4" 891 | inherits "2" 892 | minimatch "^3.0.2" 893 | once "^1.3.0" 894 | path-is-absolute "^1.0.0" 895 | 896 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 897 | version "7.1.2" 898 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 899 | dependencies: 900 | fs.realpath "^1.0.0" 901 | inflight "^1.0.4" 902 | inherits "2" 903 | minimatch "^3.0.4" 904 | once "^1.3.0" 905 | path-is-absolute "^1.0.0" 906 | 907 | globals@^9.14.0, globals@^9.18.0: 908 | version "9.18.0" 909 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 910 | 911 | globby@^5.0.0: 912 | version "5.0.0" 913 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 914 | dependencies: 915 | array-union "^1.0.1" 916 | arrify "^1.0.0" 917 | glob "^7.0.3" 918 | object-assign "^4.0.1" 919 | pify "^2.0.0" 920 | pinkie-promise "^2.0.0" 921 | 922 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 923 | version "4.1.11" 924 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 925 | 926 | "graceful-readlink@>= 1.0.0": 927 | version "1.0.1" 928 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 929 | 930 | growl@1.9.2: 931 | version "1.9.2" 932 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 933 | 934 | handlebars@^4.0.3: 935 | version "4.0.11" 936 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 937 | dependencies: 938 | async "^1.4.0" 939 | optimist "^0.6.1" 940 | source-map "^0.4.4" 941 | optionalDependencies: 942 | uglify-js "^2.6" 943 | 944 | har-validator@~2.0.6: 945 | version "2.0.6" 946 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 947 | dependencies: 948 | chalk "^1.1.1" 949 | commander "^2.9.0" 950 | is-my-json-valid "^2.12.4" 951 | pinkie-promise "^2.0.0" 952 | 953 | has-ansi@^2.0.0: 954 | version "2.0.0" 955 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 956 | dependencies: 957 | ansi-regex "^2.0.0" 958 | 959 | has-flag@^1.0.0: 960 | version "1.0.0" 961 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 962 | 963 | hawk@~3.1.3: 964 | version "3.1.3" 965 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 966 | dependencies: 967 | boom "2.x.x" 968 | cryptiles "2.x.x" 969 | hoek "2.x.x" 970 | sntp "1.x.x" 971 | 972 | he@1.1.1: 973 | version "1.1.1" 974 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 975 | 976 | hoek@2.x.x: 977 | version "2.16.3" 978 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 979 | 980 | hosted-git-info@^2.1.4: 981 | version "2.5.0" 982 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 983 | 984 | http-signature@~1.1.0: 985 | version "1.1.1" 986 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 987 | dependencies: 988 | assert-plus "^0.2.0" 989 | jsprim "^1.2.2" 990 | sshpk "^1.7.0" 991 | 992 | ignore@^3.2.0: 993 | version "3.3.7" 994 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 995 | 996 | imurmurhash@^0.1.4: 997 | version "0.1.4" 998 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 999 | 1000 | inflight@^1.0.4: 1001 | version "1.0.6" 1002 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1003 | dependencies: 1004 | once "^1.3.0" 1005 | wrappy "1" 1006 | 1007 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 1008 | version "2.0.3" 1009 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1010 | 1011 | inherits@2.0.1: 1012 | version "2.0.1" 1013 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1014 | 1015 | inquirer@^0.12.0: 1016 | version "0.12.0" 1017 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1018 | dependencies: 1019 | ansi-escapes "^1.1.0" 1020 | ansi-regex "^2.0.0" 1021 | chalk "^1.0.0" 1022 | cli-cursor "^1.0.1" 1023 | cli-width "^2.0.0" 1024 | figures "^1.3.5" 1025 | lodash "^4.3.0" 1026 | readline2 "^1.0.1" 1027 | run-async "^0.1.0" 1028 | rx-lite "^3.1.2" 1029 | string-width "^1.0.1" 1030 | strip-ansi "^3.0.0" 1031 | through "^2.3.6" 1032 | 1033 | interpret@^1.0.0: 1034 | version "1.1.0" 1035 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1036 | 1037 | invariant@^2.2.2: 1038 | version "2.2.2" 1039 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1040 | dependencies: 1041 | loose-envify "^1.0.0" 1042 | 1043 | invert-kv@^1.0.0: 1044 | version "1.0.0" 1045 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1046 | 1047 | is-arrayish@^0.2.1: 1048 | version "0.2.1" 1049 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1050 | 1051 | is-buffer@^1.1.5: 1052 | version "1.1.6" 1053 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1054 | 1055 | is-builtin-module@^1.0.0: 1056 | version "1.0.0" 1057 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1058 | dependencies: 1059 | builtin-modules "^1.0.0" 1060 | 1061 | is-dotfile@^1.0.0: 1062 | version "1.0.3" 1063 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1064 | 1065 | is-equal-shallow@^0.1.3: 1066 | version "0.1.3" 1067 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1068 | dependencies: 1069 | is-primitive "^2.0.0" 1070 | 1071 | is-extendable@^0.1.1: 1072 | version "0.1.1" 1073 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1074 | 1075 | is-extendable@^1.0.1: 1076 | version "1.0.1" 1077 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1078 | dependencies: 1079 | is-plain-object "^2.0.4" 1080 | 1081 | is-extglob@^1.0.0: 1082 | version "1.0.0" 1083 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1084 | 1085 | is-finite@^1.0.0: 1086 | version "1.0.2" 1087 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1088 | dependencies: 1089 | number-is-nan "^1.0.0" 1090 | 1091 | is-fullwidth-code-point@^1.0.0: 1092 | version "1.0.0" 1093 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1094 | dependencies: 1095 | number-is-nan "^1.0.0" 1096 | 1097 | is-fullwidth-code-point@^2.0.0: 1098 | version "2.0.0" 1099 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1100 | 1101 | is-glob@^2.0.0, is-glob@^2.0.1: 1102 | version "2.0.1" 1103 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1104 | dependencies: 1105 | is-extglob "^1.0.0" 1106 | 1107 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1108 | version "2.17.1" 1109 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz#3da98914a70a22f0a8563ef1511a246c6fc55471" 1110 | dependencies: 1111 | generate-function "^2.0.0" 1112 | generate-object-property "^1.1.0" 1113 | jsonpointer "^4.0.0" 1114 | xtend "^4.0.0" 1115 | 1116 | is-number@^2.1.0: 1117 | version "2.1.0" 1118 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1119 | dependencies: 1120 | kind-of "^3.0.2" 1121 | 1122 | is-number@^3.0.0: 1123 | version "3.0.0" 1124 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1125 | dependencies: 1126 | kind-of "^3.0.2" 1127 | 1128 | is-path-cwd@^1.0.0: 1129 | version "1.0.0" 1130 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1131 | 1132 | is-path-in-cwd@^1.0.0: 1133 | version "1.0.0" 1134 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1135 | dependencies: 1136 | is-path-inside "^1.0.0" 1137 | 1138 | is-path-inside@^1.0.0: 1139 | version "1.0.1" 1140 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1141 | dependencies: 1142 | path-is-inside "^1.0.1" 1143 | 1144 | is-plain-object@^2.0.4: 1145 | version "2.0.4" 1146 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1147 | dependencies: 1148 | isobject "^3.0.1" 1149 | 1150 | is-posix-bracket@^0.1.0: 1151 | version "0.1.1" 1152 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1153 | 1154 | is-primitive@^2.0.0: 1155 | version "2.0.0" 1156 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1157 | 1158 | is-property@^1.0.0: 1159 | version "1.0.2" 1160 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1161 | 1162 | is-resolvable@^1.0.0: 1163 | version "1.1.0" 1164 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 1165 | 1166 | is-typedarray@~1.0.0: 1167 | version "1.0.0" 1168 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1169 | 1170 | is-utf8@^0.2.0: 1171 | version "0.2.1" 1172 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1173 | 1174 | isarray@1.0.0, isarray@~1.0.0: 1175 | version "1.0.0" 1176 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1177 | 1178 | isexe@^2.0.0: 1179 | version "2.0.0" 1180 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1181 | 1182 | isobject@^2.0.0: 1183 | version "2.1.0" 1184 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1185 | dependencies: 1186 | isarray "1.0.0" 1187 | 1188 | isobject@^3.0.1: 1189 | version "3.0.1" 1190 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1191 | 1192 | isstream@~0.1.2: 1193 | version "0.1.2" 1194 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1195 | 1196 | istanbul-lib-coverage@^1.0.0-alpha.4, istanbul-lib-coverage@^1.1.1: 1197 | version "1.1.1" 1198 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1199 | 1200 | istanbul-lib-hook@^1.0.0-alpha.4: 1201 | version "1.1.0" 1202 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 1203 | dependencies: 1204 | append-transform "^0.4.0" 1205 | 1206 | istanbul-lib-instrument@^1.1.0-alpha.3: 1207 | version "1.9.1" 1208 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 1209 | dependencies: 1210 | babel-generator "^6.18.0" 1211 | babel-template "^6.16.0" 1212 | babel-traverse "^6.18.0" 1213 | babel-types "^6.18.0" 1214 | babylon "^6.18.0" 1215 | istanbul-lib-coverage "^1.1.1" 1216 | semver "^5.3.0" 1217 | 1218 | istanbul-lib-report@^1.0.0-alpha.3: 1219 | version "1.1.2" 1220 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 1221 | dependencies: 1222 | istanbul-lib-coverage "^1.1.1" 1223 | mkdirp "^0.5.1" 1224 | path-parse "^1.0.5" 1225 | supports-color "^3.1.2" 1226 | 1227 | istanbul-lib-source-maps@^1.0.0-alpha.10: 1228 | version "1.2.2" 1229 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 1230 | dependencies: 1231 | debug "^3.1.0" 1232 | istanbul-lib-coverage "^1.1.1" 1233 | mkdirp "^0.5.1" 1234 | rimraf "^2.6.1" 1235 | source-map "^0.5.3" 1236 | 1237 | istanbul-reports@^1.0.0-alpha.8: 1238 | version "1.1.3" 1239 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 1240 | dependencies: 1241 | handlebars "^4.0.3" 1242 | 1243 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1244 | version "3.0.2" 1245 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1246 | 1247 | js-yaml@3.6.1: 1248 | version "3.6.1" 1249 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1250 | dependencies: 1251 | argparse "^1.0.7" 1252 | esprima "^2.6.0" 1253 | 1254 | js-yaml@^3.5.1: 1255 | version "3.10.0" 1256 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1257 | dependencies: 1258 | argparse "^1.0.7" 1259 | esprima "^4.0.0" 1260 | 1261 | jsbn@~0.1.0: 1262 | version "0.1.1" 1263 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1264 | 1265 | jsesc@^1.3.0: 1266 | version "1.3.0" 1267 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1268 | 1269 | json-schema@0.2.3: 1270 | version "0.2.3" 1271 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1272 | 1273 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1274 | version "1.0.1" 1275 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1276 | dependencies: 1277 | jsonify "~0.0.0" 1278 | 1279 | json-stringify-safe@~5.0.1: 1280 | version "5.0.1" 1281 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1282 | 1283 | json3@3.3.2: 1284 | version "3.3.2" 1285 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1286 | 1287 | jsonify@~0.0.0: 1288 | version "0.0.0" 1289 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1290 | 1291 | jsonpointer@^4.0.0: 1292 | version "4.0.1" 1293 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1294 | 1295 | jsprim@^1.2.2: 1296 | version "1.4.1" 1297 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1298 | dependencies: 1299 | assert-plus "1.0.0" 1300 | extsprintf "1.3.0" 1301 | json-schema "0.2.3" 1302 | verror "1.10.0" 1303 | 1304 | kind-of@^3.0.2: 1305 | version "3.2.2" 1306 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1307 | dependencies: 1308 | is-buffer "^1.1.5" 1309 | 1310 | kind-of@^4.0.0: 1311 | version "4.0.0" 1312 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1313 | dependencies: 1314 | is-buffer "^1.1.5" 1315 | 1316 | lazy-cache@^1.0.3: 1317 | version "1.0.4" 1318 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1319 | 1320 | lcid@^1.0.0: 1321 | version "1.0.0" 1322 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1323 | dependencies: 1324 | invert-kv "^1.0.0" 1325 | 1326 | lcov-parse@0.0.10: 1327 | version "0.0.10" 1328 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 1329 | 1330 | levn@^0.3.0, levn@~0.3.0: 1331 | version "0.3.0" 1332 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1333 | dependencies: 1334 | prelude-ls "~1.1.2" 1335 | type-check "~0.3.2" 1336 | 1337 | load-json-file@^1.0.0: 1338 | version "1.1.0" 1339 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1340 | dependencies: 1341 | graceful-fs "^4.1.2" 1342 | parse-json "^2.2.0" 1343 | pify "^2.0.0" 1344 | pinkie-promise "^2.0.0" 1345 | strip-bom "^2.0.0" 1346 | 1347 | lodash._baseassign@^3.0.0: 1348 | version "3.2.0" 1349 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1350 | dependencies: 1351 | lodash._basecopy "^3.0.0" 1352 | lodash.keys "^3.0.0" 1353 | 1354 | lodash._basecopy@^3.0.0: 1355 | version "3.0.1" 1356 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1357 | 1358 | lodash._basecreate@^3.0.0: 1359 | version "3.0.3" 1360 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1361 | 1362 | lodash._getnative@^3.0.0: 1363 | version "3.9.1" 1364 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1365 | 1366 | lodash._isiterateecall@^3.0.0: 1367 | version "3.0.9" 1368 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1369 | 1370 | lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.0.9, lodash.assign@^4.2.0: 1371 | version "4.2.0" 1372 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1373 | 1374 | lodash.clonedeep@^4.3.2: 1375 | version "4.5.0" 1376 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1377 | 1378 | lodash.create@3.1.1: 1379 | version "3.1.1" 1380 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1381 | dependencies: 1382 | lodash._baseassign "^3.0.0" 1383 | lodash._basecreate "^3.0.0" 1384 | lodash._isiterateecall "^3.0.0" 1385 | 1386 | lodash.isarguments@^3.0.0: 1387 | version "3.1.0" 1388 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1389 | 1390 | lodash.isarray@^3.0.0: 1391 | version "3.0.4" 1392 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1393 | 1394 | lodash.isobject@^3.0.2: 1395 | version "3.0.2" 1396 | resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d" 1397 | 1398 | lodash.keys@^3.0.0: 1399 | version "3.1.2" 1400 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1401 | dependencies: 1402 | lodash._getnative "^3.0.0" 1403 | lodash.isarguments "^3.0.0" 1404 | lodash.isarray "^3.0.0" 1405 | 1406 | lodash.merge@^4.6.0: 1407 | version "4.6.0" 1408 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 1409 | 1410 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.3.0: 1411 | version "4.17.4" 1412 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1413 | 1414 | log-driver@1.2.5: 1415 | version "1.2.5" 1416 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 1417 | 1418 | log-symbols@^1.0.0: 1419 | version "1.0.2" 1420 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1421 | dependencies: 1422 | chalk "^1.0.0" 1423 | 1424 | lolex@1.3.2: 1425 | version "1.3.2" 1426 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.3.2.tgz#7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31" 1427 | 1428 | longest@^1.0.1: 1429 | version "1.0.1" 1430 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1431 | 1432 | loose-envify@^1.0.0: 1433 | version "1.3.1" 1434 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1435 | dependencies: 1436 | js-tokens "^3.0.0" 1437 | 1438 | lru-cache@^4.0.1: 1439 | version "4.1.1" 1440 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1441 | dependencies: 1442 | pseudomap "^1.0.2" 1443 | yallist "^2.1.2" 1444 | 1445 | md5-hex@^1.2.0: 1446 | version "1.3.0" 1447 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1448 | dependencies: 1449 | md5-o-matic "^0.1.1" 1450 | 1451 | md5-o-matic@^0.1.1: 1452 | version "0.1.1" 1453 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1454 | 1455 | micromatch@^2.3.11, micromatch@^2.3.8: 1456 | version "2.3.11" 1457 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1458 | dependencies: 1459 | arr-diff "^2.0.0" 1460 | array-unique "^0.2.1" 1461 | braces "^1.8.2" 1462 | expand-brackets "^0.1.4" 1463 | extglob "^0.3.1" 1464 | filename-regex "^2.0.0" 1465 | is-extglob "^1.0.0" 1466 | is-glob "^2.0.1" 1467 | kind-of "^3.0.2" 1468 | normalize-path "^2.0.1" 1469 | object.omit "^2.0.0" 1470 | parse-glob "^3.0.4" 1471 | regex-cache "^0.4.2" 1472 | 1473 | mime-db@~1.30.0: 1474 | version "1.30.0" 1475 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1476 | 1477 | mime-types@^2.1.12, mime-types@~2.1.7: 1478 | version "2.1.17" 1479 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1480 | dependencies: 1481 | mime-db "~1.30.0" 1482 | 1483 | minimatch@^3.0.2, minimatch@^3.0.4: 1484 | version "3.0.4" 1485 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1486 | dependencies: 1487 | brace-expansion "^1.1.7" 1488 | 1489 | minimist@0.0.8: 1490 | version "0.0.8" 1491 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1492 | 1493 | minimist@1.2.0: 1494 | version "1.2.0" 1495 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1496 | 1497 | minimist@~0.0.1: 1498 | version "0.0.10" 1499 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1500 | 1501 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: 1502 | version "0.5.1" 1503 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1504 | dependencies: 1505 | minimist "0.0.8" 1506 | 1507 | mocha@^3.0.2: 1508 | version "3.5.3" 1509 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.5.3.tgz#1e0480fe36d2da5858d1eb6acc38418b26eaa20d" 1510 | dependencies: 1511 | browser-stdout "1.3.0" 1512 | commander "2.9.0" 1513 | debug "2.6.8" 1514 | diff "3.2.0" 1515 | escape-string-regexp "1.0.5" 1516 | glob "7.1.1" 1517 | growl "1.9.2" 1518 | he "1.1.1" 1519 | json3 "3.3.2" 1520 | lodash.create "3.1.1" 1521 | mkdirp "0.5.1" 1522 | supports-color "3.1.2" 1523 | 1524 | ms@2.0.0: 1525 | version "2.0.0" 1526 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1527 | 1528 | mute-stream@0.0.5: 1529 | version "0.0.5" 1530 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1531 | 1532 | natural-compare@^1.4.0: 1533 | version "1.4.0" 1534 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1535 | 1536 | node-version-check@^2.1.0: 1537 | version "2.2.0" 1538 | resolved "https://registry.yarnpkg.com/node-version-check/-/node-version-check-2.2.0.tgz#929ce106555d0f427f8e7f0ffecedb7cab79624b" 1539 | dependencies: 1540 | semver "^5.3.0" 1541 | 1542 | normalize-package-data@^2.3.2: 1543 | version "2.4.0" 1544 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1545 | dependencies: 1546 | hosted-git-info "^2.1.4" 1547 | is-builtin-module "^1.0.0" 1548 | semver "2 || 3 || 4 || 5" 1549 | validate-npm-package-license "^3.0.1" 1550 | 1551 | normalize-path@^2.0.1: 1552 | version "2.1.1" 1553 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1554 | dependencies: 1555 | remove-trailing-separator "^1.0.1" 1556 | 1557 | number-is-nan@^1.0.0: 1558 | version "1.0.1" 1559 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1560 | 1561 | nyc@^7.1.0: 1562 | version "7.1.0" 1563 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-7.1.0.tgz#8e14971f3a15d1abbec7ac610ef54cb889e9ffb4" 1564 | dependencies: 1565 | arrify "^1.0.1" 1566 | caching-transform "^1.0.0" 1567 | convert-source-map "^1.3.0" 1568 | default-require-extensions "^1.0.0" 1569 | find-cache-dir "^0.1.1" 1570 | find-up "^1.1.2" 1571 | foreground-child "^1.5.3" 1572 | glob "^7.0.3" 1573 | istanbul-lib-coverage "^1.0.0-alpha.4" 1574 | istanbul-lib-hook "^1.0.0-alpha.4" 1575 | istanbul-lib-instrument "^1.1.0-alpha.3" 1576 | istanbul-lib-report "^1.0.0-alpha.3" 1577 | istanbul-lib-source-maps "^1.0.0-alpha.10" 1578 | istanbul-reports "^1.0.0-alpha.8" 1579 | md5-hex "^1.2.0" 1580 | micromatch "^2.3.11" 1581 | mkdirp "^0.5.0" 1582 | pkg-up "^1.0.0" 1583 | resolve-from "^2.0.0" 1584 | rimraf "^2.5.4" 1585 | signal-exit "^3.0.0" 1586 | spawn-wrap "^1.2.4" 1587 | test-exclude "^1.1.0" 1588 | yargs "^4.8.1" 1589 | yargs-parser "^2.4.1" 1590 | 1591 | oauth-sign@~0.8.1: 1592 | version "0.8.2" 1593 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1594 | 1595 | object-assign@^4.0.1, object-assign@^4.1.0: 1596 | version "4.1.1" 1597 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1598 | 1599 | object.omit@^2.0.0: 1600 | version "2.0.1" 1601 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1602 | dependencies: 1603 | for-own "^0.1.4" 1604 | is-extendable "^0.1.1" 1605 | 1606 | once@^1.3.0: 1607 | version "1.4.0" 1608 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1609 | dependencies: 1610 | wrappy "1" 1611 | 1612 | onetime@^1.0.0: 1613 | version "1.1.0" 1614 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1615 | 1616 | optimist@^0.6.1: 1617 | version "0.6.1" 1618 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1619 | dependencies: 1620 | minimist "~0.0.1" 1621 | wordwrap "~0.0.2" 1622 | 1623 | optionator@^0.8.2: 1624 | version "0.8.2" 1625 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1626 | dependencies: 1627 | deep-is "~0.1.3" 1628 | fast-levenshtein "~2.0.4" 1629 | levn "~0.3.0" 1630 | prelude-ls "~1.1.2" 1631 | type-check "~0.3.2" 1632 | wordwrap "~1.0.0" 1633 | 1634 | os-homedir@^1.0.0, os-homedir@^1.0.1: 1635 | version "1.0.2" 1636 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1637 | 1638 | os-locale@^1.4.0: 1639 | version "1.4.0" 1640 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1641 | dependencies: 1642 | lcid "^1.0.0" 1643 | 1644 | parse-glob@^3.0.4: 1645 | version "3.0.4" 1646 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1647 | dependencies: 1648 | glob-base "^0.3.0" 1649 | is-dotfile "^1.0.0" 1650 | is-extglob "^1.0.0" 1651 | is-glob "^2.0.0" 1652 | 1653 | parse-json@^2.2.0: 1654 | version "2.2.0" 1655 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1656 | dependencies: 1657 | error-ex "^1.2.0" 1658 | 1659 | parserlib@~1.1.1: 1660 | version "1.1.1" 1661 | resolved "https://registry.yarnpkg.com/parserlib/-/parserlib-1.1.1.tgz#a64cfa724062434fdfc351c9a4ec2d92b94c06f4" 1662 | 1663 | path-exists@^2.0.0: 1664 | version "2.1.0" 1665 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1666 | dependencies: 1667 | pinkie-promise "^2.0.0" 1668 | 1669 | path-is-absolute@^1.0.0: 1670 | version "1.0.1" 1671 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1672 | 1673 | path-is-inside@^1.0.1: 1674 | version "1.0.2" 1675 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1676 | 1677 | path-parse@^1.0.5: 1678 | version "1.0.5" 1679 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1680 | 1681 | path-type@^1.0.0: 1682 | version "1.1.0" 1683 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1684 | dependencies: 1685 | graceful-fs "^4.1.2" 1686 | pify "^2.0.0" 1687 | pinkie-promise "^2.0.0" 1688 | 1689 | pify@^2.0.0: 1690 | version "2.3.0" 1691 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1692 | 1693 | pinkie-promise@^2.0.0: 1694 | version "2.0.1" 1695 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1696 | dependencies: 1697 | pinkie "^2.0.0" 1698 | 1699 | pinkie@^2.0.0: 1700 | version "2.0.4" 1701 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1702 | 1703 | pkg-dir@^1.0.0: 1704 | version "1.0.0" 1705 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1706 | dependencies: 1707 | find-up "^1.0.0" 1708 | 1709 | pkg-up@^1.0.0: 1710 | version "1.0.0" 1711 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 1712 | dependencies: 1713 | find-up "^1.0.0" 1714 | 1715 | plugin-error@^1.0.1: 1716 | version "1.0.1" 1717 | resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-1.0.1.tgz#77016bd8919d0ac377fdcdd0322328953ca5781c" 1718 | dependencies: 1719 | ansi-colors "^1.0.1" 1720 | arr-diff "^4.0.0" 1721 | arr-union "^3.1.0" 1722 | extend-shallow "^3.0.2" 1723 | 1724 | pluralize@^1.0.0, pluralize@^1.2.1: 1725 | version "1.2.1" 1726 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1727 | 1728 | prelude-ls@~1.1.2: 1729 | version "1.1.2" 1730 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1731 | 1732 | preserve@^0.2.0: 1733 | version "0.2.0" 1734 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1735 | 1736 | process-nextick-args@^1.0.6, process-nextick-args@~1.0.6: 1737 | version "1.0.7" 1738 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1739 | 1740 | progress@^1.1.8: 1741 | version "1.1.8" 1742 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 1743 | 1744 | pseudomap@^1.0.2: 1745 | version "1.0.2" 1746 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1747 | 1748 | punycode@^1.4.1: 1749 | version "1.4.1" 1750 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1751 | 1752 | qs@~6.3.0: 1753 | version "6.3.2" 1754 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 1755 | 1756 | randomatic@^1.1.3: 1757 | version "1.1.7" 1758 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1759 | dependencies: 1760 | is-number "^3.0.0" 1761 | kind-of "^4.0.0" 1762 | 1763 | rcfinder@^0.1.6: 1764 | version "0.1.9" 1765 | resolved "https://registry.yarnpkg.com/rcfinder/-/rcfinder-0.1.9.tgz#f3e80f387ddf9ae80ae30a4100329642eae81115" 1766 | dependencies: 1767 | lodash.clonedeep "^4.3.2" 1768 | 1769 | rcloader@^0.2.1: 1770 | version "0.2.2" 1771 | resolved "https://registry.yarnpkg.com/rcloader/-/rcloader-0.2.2.tgz#58d2298b462d0b9bfd2133d2a1ec74fbd705c717" 1772 | dependencies: 1773 | lodash.assign "^4.2.0" 1774 | lodash.isobject "^3.0.2" 1775 | lodash.merge "^4.6.0" 1776 | rcfinder "^0.1.6" 1777 | 1778 | read-pkg-up@^1.0.1: 1779 | version "1.0.1" 1780 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1781 | dependencies: 1782 | find-up "^1.0.0" 1783 | read-pkg "^1.0.0" 1784 | 1785 | read-pkg@^1.0.0: 1786 | version "1.1.0" 1787 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1788 | dependencies: 1789 | load-json-file "^1.0.0" 1790 | normalize-package-data "^2.3.2" 1791 | path-type "^1.0.0" 1792 | 1793 | readable-stream@^2.1.5, readable-stream@^2.2.2: 1794 | version "2.3.3" 1795 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1796 | dependencies: 1797 | core-util-is "~1.0.0" 1798 | inherits "~2.0.3" 1799 | isarray "~1.0.0" 1800 | process-nextick-args "~1.0.6" 1801 | safe-buffer "~5.1.1" 1802 | string_decoder "~1.0.3" 1803 | util-deprecate "~1.0.1" 1804 | 1805 | readline2@^1.0.1: 1806 | version "1.0.1" 1807 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 1808 | dependencies: 1809 | code-point-at "^1.0.0" 1810 | is-fullwidth-code-point "^1.0.0" 1811 | mute-stream "0.0.5" 1812 | 1813 | rechoir@^0.6.2: 1814 | version "0.6.2" 1815 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1816 | dependencies: 1817 | resolve "^1.1.6" 1818 | 1819 | regenerator-runtime@^0.11.0: 1820 | version "0.11.1" 1821 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1822 | 1823 | regex-cache@^0.4.2: 1824 | version "0.4.4" 1825 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1826 | dependencies: 1827 | is-equal-shallow "^0.1.3" 1828 | 1829 | remove-trailing-separator@^1.0.1: 1830 | version "1.1.0" 1831 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1832 | 1833 | repeat-element@^1.1.2: 1834 | version "1.1.2" 1835 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1836 | 1837 | repeat-string@^1.5.2: 1838 | version "1.6.1" 1839 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1840 | 1841 | repeating@^2.0.0: 1842 | version "2.0.1" 1843 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1844 | dependencies: 1845 | is-finite "^1.0.0" 1846 | 1847 | replace-ext@^1.0.0: 1848 | version "1.0.0" 1849 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 1850 | 1851 | request@2.79.0: 1852 | version "2.79.0" 1853 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1854 | dependencies: 1855 | aws-sign2 "~0.6.0" 1856 | aws4 "^1.2.1" 1857 | caseless "~0.11.0" 1858 | combined-stream "~1.0.5" 1859 | extend "~3.0.0" 1860 | forever-agent "~0.6.1" 1861 | form-data "~2.1.1" 1862 | har-validator "~2.0.6" 1863 | hawk "~3.1.3" 1864 | http-signature "~1.1.0" 1865 | is-typedarray "~1.0.0" 1866 | isstream "~0.1.2" 1867 | json-stringify-safe "~5.0.1" 1868 | mime-types "~2.1.7" 1869 | oauth-sign "~0.8.1" 1870 | qs "~6.3.0" 1871 | stringstream "~0.0.4" 1872 | tough-cookie "~2.3.0" 1873 | tunnel-agent "~0.4.1" 1874 | uuid "^3.0.0" 1875 | 1876 | require-directory@^2.1.1: 1877 | version "2.1.1" 1878 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1879 | 1880 | require-main-filename@^1.0.1: 1881 | version "1.0.1" 1882 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1883 | 1884 | require-uncached@^1.0.2: 1885 | version "1.0.3" 1886 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 1887 | dependencies: 1888 | caller-path "^0.1.0" 1889 | resolve-from "^1.0.0" 1890 | 1891 | resolve-from@^1.0.0: 1892 | version "1.0.1" 1893 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1894 | 1895 | resolve-from@^2.0.0: 1896 | version "2.0.0" 1897 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 1898 | 1899 | resolve@^1.1.6: 1900 | version "1.5.0" 1901 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 1902 | dependencies: 1903 | path-parse "^1.0.5" 1904 | 1905 | restore-cursor@^1.0.1: 1906 | version "1.0.1" 1907 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 1908 | dependencies: 1909 | exit-hook "^1.0.0" 1910 | onetime "^1.0.0" 1911 | 1912 | right-align@^0.1.1: 1913 | version "0.1.3" 1914 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1915 | dependencies: 1916 | align-text "^0.1.1" 1917 | 1918 | rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: 1919 | version "2.6.2" 1920 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1921 | dependencies: 1922 | glob "^7.0.5" 1923 | 1924 | run-async@^0.1.0: 1925 | version "0.1.0" 1926 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 1927 | dependencies: 1928 | once "^1.3.0" 1929 | 1930 | rx-lite@^3.1.2: 1931 | version "3.1.2" 1932 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 1933 | 1934 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1935 | version "5.1.1" 1936 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1937 | 1938 | samsam@1.1.2: 1939 | version "1.1.2" 1940 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.2.tgz#bec11fdc83a9fda063401210e40176c3024d1567" 1941 | 1942 | samsam@~1.1: 1943 | version "1.1.3" 1944 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.3.tgz#9f5087419b4d091f232571e7fa52e90b0f552621" 1945 | 1946 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 1947 | version "5.5.0" 1948 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1949 | 1950 | set-blocking@^2.0.0: 1951 | version "2.0.0" 1952 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1953 | 1954 | shelljs@^0.7.5: 1955 | version "0.7.8" 1956 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 1957 | dependencies: 1958 | glob "^7.0.0" 1959 | interpret "^1.0.0" 1960 | rechoir "^0.6.2" 1961 | 1962 | should-equal@^1.0.0: 1963 | version "1.0.1" 1964 | resolved "https://registry.yarnpkg.com/should-equal/-/should-equal-1.0.1.tgz#0b6e9516f2601a9fb0bb2dcc369afa1c7e200af7" 1965 | dependencies: 1966 | should-type "^1.0.0" 1967 | 1968 | should-format@^3.0.2: 1969 | version "3.0.3" 1970 | resolved "https://registry.yarnpkg.com/should-format/-/should-format-3.0.3.tgz#9bfc8f74fa39205c53d38c34d717303e277124f1" 1971 | dependencies: 1972 | should-type "^1.3.0" 1973 | should-type-adaptors "^1.0.1" 1974 | 1975 | should-type-adaptors@^1.0.1: 1976 | version "1.1.0" 1977 | resolved "https://registry.yarnpkg.com/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz#401e7f33b5533033944d5cd8bf2b65027792e27a" 1978 | dependencies: 1979 | should-type "^1.3.0" 1980 | should-util "^1.0.0" 1981 | 1982 | should-type@^1.0.0, should-type@^1.3.0, should-type@^1.4.0: 1983 | version "1.4.0" 1984 | resolved "https://registry.yarnpkg.com/should-type/-/should-type-1.4.0.tgz#0756d8ce846dfd09843a6947719dfa0d4cff5cf3" 1985 | 1986 | should-util@^1.0.0: 1987 | version "1.0.0" 1988 | resolved "https://registry.yarnpkg.com/should-util/-/should-util-1.0.0.tgz#c98cda374aa6b190df8ba87c9889c2b4db620063" 1989 | 1990 | should@^11.0.0: 1991 | version "11.2.1" 1992 | resolved "https://registry.yarnpkg.com/should/-/should-11.2.1.tgz#90f55145552d01cfc200666e4e818a1c9670eda2" 1993 | dependencies: 1994 | should-equal "^1.0.0" 1995 | should-format "^3.0.2" 1996 | should-type "^1.4.0" 1997 | should-type-adaptors "^1.0.1" 1998 | should-util "^1.0.0" 1999 | 2000 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2001 | version "3.0.2" 2002 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2003 | 2004 | sinon@^1.17.5: 2005 | version "1.17.7" 2006 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-1.17.7.tgz#4542a4f49ba0c45c05eb2e9dd9d203e2b8efe0bf" 2007 | dependencies: 2008 | formatio "1.1.1" 2009 | lolex "1.3.2" 2010 | samsam "1.1.2" 2011 | util ">=0.10.3 <1" 2012 | 2013 | slice-ansi@0.0.4: 2014 | version "0.0.4" 2015 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2016 | 2017 | slide@^1.1.5: 2018 | version "1.1.6" 2019 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2020 | 2021 | sntp@1.x.x: 2022 | version "1.0.9" 2023 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2024 | dependencies: 2025 | hoek "2.x.x" 2026 | 2027 | source-map@^0.4.4: 2028 | version "0.4.4" 2029 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2030 | dependencies: 2031 | amdefine ">=0.0.4" 2032 | 2033 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2034 | version "0.5.7" 2035 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2036 | 2037 | spawn-wrap@^1.2.4: 2038 | version "1.4.2" 2039 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.4.2.tgz#cff58e73a8224617b6561abdc32586ea0c82248c" 2040 | dependencies: 2041 | foreground-child "^1.5.6" 2042 | mkdirp "^0.5.0" 2043 | os-homedir "^1.0.1" 2044 | rimraf "^2.6.2" 2045 | signal-exit "^3.0.2" 2046 | which "^1.3.0" 2047 | 2048 | spdx-correct@~1.0.0: 2049 | version "1.0.2" 2050 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2051 | dependencies: 2052 | spdx-license-ids "^1.0.2" 2053 | 2054 | spdx-expression-parse@~1.0.0: 2055 | version "1.0.4" 2056 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2057 | 2058 | spdx-license-ids@^1.0.2: 2059 | version "1.2.2" 2060 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2061 | 2062 | sprintf-js@~1.0.2: 2063 | version "1.0.3" 2064 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2065 | 2066 | sshpk@^1.7.0: 2067 | version "1.13.1" 2068 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2069 | dependencies: 2070 | asn1 "~0.2.3" 2071 | assert-plus "^1.0.0" 2072 | dashdash "^1.12.0" 2073 | getpass "^0.1.1" 2074 | optionalDependencies: 2075 | bcrypt-pbkdf "^1.0.0" 2076 | ecc-jsbn "~0.1.1" 2077 | jsbn "~0.1.0" 2078 | tweetnacl "~0.14.0" 2079 | 2080 | string-width@^1.0.1: 2081 | version "1.0.2" 2082 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2083 | dependencies: 2084 | code-point-at "^1.0.0" 2085 | is-fullwidth-code-point "^1.0.0" 2086 | strip-ansi "^3.0.0" 2087 | 2088 | string-width@^2.0.0: 2089 | version "2.1.1" 2090 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2091 | dependencies: 2092 | is-fullwidth-code-point "^2.0.0" 2093 | strip-ansi "^4.0.0" 2094 | 2095 | string_decoder@~1.0.3: 2096 | version "1.0.3" 2097 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2098 | dependencies: 2099 | safe-buffer "~5.1.0" 2100 | 2101 | stringstream@~0.0.4: 2102 | version "0.0.5" 2103 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2104 | 2105 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2106 | version "3.0.1" 2107 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2108 | dependencies: 2109 | ansi-regex "^2.0.0" 2110 | 2111 | strip-ansi@^4.0.0: 2112 | version "4.0.0" 2113 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2114 | dependencies: 2115 | ansi-regex "^3.0.0" 2116 | 2117 | strip-bom@^2.0.0: 2118 | version "2.0.0" 2119 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2120 | dependencies: 2121 | is-utf8 "^0.2.0" 2122 | 2123 | strip-bom@^3.0.0: 2124 | version "3.0.0" 2125 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2126 | 2127 | strip-json-comments@~2.0.1: 2128 | version "2.0.1" 2129 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2130 | 2131 | supports-color@3.1.2: 2132 | version "3.1.2" 2133 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2134 | dependencies: 2135 | has-flag "^1.0.0" 2136 | 2137 | supports-color@^2.0.0: 2138 | version "2.0.0" 2139 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2140 | 2141 | supports-color@^3.1.2: 2142 | version "3.2.3" 2143 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2144 | dependencies: 2145 | has-flag "^1.0.0" 2146 | 2147 | table@^3.7.8: 2148 | version "3.8.3" 2149 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2150 | dependencies: 2151 | ajv "^4.7.0" 2152 | ajv-keywords "^1.0.0" 2153 | chalk "^1.1.1" 2154 | lodash "^4.0.0" 2155 | slice-ansi "0.0.4" 2156 | string-width "^2.0.0" 2157 | 2158 | test-exclude@^1.1.0: 2159 | version "1.1.0" 2160 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-1.1.0.tgz#f5ddd718927b12fd02f270a0aa939ceb6eea4151" 2161 | dependencies: 2162 | arrify "^1.0.1" 2163 | lodash.assign "^4.0.9" 2164 | micromatch "^2.3.8" 2165 | read-pkg-up "^1.0.1" 2166 | require-main-filename "^1.0.1" 2167 | 2168 | text-table@^0.2.0, text-table@~0.2.0: 2169 | version "0.2.0" 2170 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2171 | 2172 | through2@^2.0.1: 2173 | version "2.0.3" 2174 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2175 | dependencies: 2176 | readable-stream "^2.1.5" 2177 | xtend "~4.0.1" 2178 | 2179 | through@^2.3.6: 2180 | version "2.3.8" 2181 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2182 | 2183 | time-stamp@^1.0.0: 2184 | version "1.1.0" 2185 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 2186 | 2187 | to-fast-properties@^1.0.3: 2188 | version "1.0.3" 2189 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2190 | 2191 | tough-cookie@~2.3.0: 2192 | version "2.3.3" 2193 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2194 | dependencies: 2195 | punycode "^1.4.1" 2196 | 2197 | trim-right@^1.0.1: 2198 | version "1.0.1" 2199 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2200 | 2201 | tunnel-agent@~0.4.1: 2202 | version "0.4.3" 2203 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2204 | 2205 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2206 | version "0.14.5" 2207 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2208 | 2209 | type-check@~0.3.2: 2210 | version "0.3.2" 2211 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2212 | dependencies: 2213 | prelude-ls "~1.1.2" 2214 | 2215 | typedarray@^0.0.6: 2216 | version "0.0.6" 2217 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2218 | 2219 | uglify-js@^2.6: 2220 | version "2.8.29" 2221 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2222 | dependencies: 2223 | source-map "~0.5.1" 2224 | yargs "~3.10.0" 2225 | optionalDependencies: 2226 | uglify-to-browserify "~1.0.0" 2227 | 2228 | uglify-to-browserify@~1.0.0: 2229 | version "1.0.2" 2230 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2231 | 2232 | user-home@^2.0.0: 2233 | version "2.0.0" 2234 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2235 | dependencies: 2236 | os-homedir "^1.0.0" 2237 | 2238 | util-deprecate@~1.0.1: 2239 | version "1.0.2" 2240 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2241 | 2242 | "util@>=0.10.3 <1": 2243 | version "0.10.3" 2244 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2245 | dependencies: 2246 | inherits "2.0.1" 2247 | 2248 | uuid@^3.0.0: 2249 | version "3.2.1" 2250 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 2251 | 2252 | validate-npm-package-license@^3.0.1: 2253 | version "3.0.1" 2254 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2255 | dependencies: 2256 | spdx-correct "~1.0.0" 2257 | spdx-expression-parse "~1.0.0" 2258 | 2259 | verror@1.10.0: 2260 | version "1.10.0" 2261 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2262 | dependencies: 2263 | assert-plus "^1.0.0" 2264 | core-util-is "1.0.2" 2265 | extsprintf "^1.2.0" 2266 | 2267 | vinyl@^2.1.0: 2268 | version "2.1.0" 2269 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.1.0.tgz#021f9c2cf951d6b939943c89eb5ee5add4fd924c" 2270 | dependencies: 2271 | clone "^2.1.1" 2272 | clone-buffer "^1.0.0" 2273 | clone-stats "^1.0.0" 2274 | cloneable-readable "^1.0.0" 2275 | remove-trailing-separator "^1.0.1" 2276 | replace-ext "^1.0.0" 2277 | 2278 | which-module@^1.0.0: 2279 | version "1.0.0" 2280 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2281 | 2282 | which@^1.2.9, which@^1.3.0: 2283 | version "1.3.0" 2284 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2285 | dependencies: 2286 | isexe "^2.0.0" 2287 | 2288 | window-size@0.1.0: 2289 | version "0.1.0" 2290 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2291 | 2292 | window-size@^0.2.0: 2293 | version "0.2.0" 2294 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 2295 | 2296 | wordwrap@0.0.2: 2297 | version "0.0.2" 2298 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2299 | 2300 | wordwrap@~0.0.2: 2301 | version "0.0.3" 2302 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2303 | 2304 | wordwrap@~1.0.0: 2305 | version "1.0.0" 2306 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2307 | 2308 | wrap-ansi@^2.0.0: 2309 | version "2.1.0" 2310 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2311 | dependencies: 2312 | string-width "^1.0.1" 2313 | strip-ansi "^3.0.1" 2314 | 2315 | wrappy@1: 2316 | version "1.0.2" 2317 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2318 | 2319 | write-file-atomic@^1.1.4: 2320 | version "1.3.4" 2321 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 2322 | dependencies: 2323 | graceful-fs "^4.1.11" 2324 | imurmurhash "^0.1.4" 2325 | slide "^1.1.5" 2326 | 2327 | write@^0.2.1: 2328 | version "0.2.1" 2329 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2330 | dependencies: 2331 | mkdirp "^0.5.1" 2332 | 2333 | xtend@^4.0.0, xtend@~4.0.1: 2334 | version "4.0.1" 2335 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2336 | 2337 | y18n@^3.2.1: 2338 | version "3.2.1" 2339 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2340 | 2341 | yallist@^2.1.2: 2342 | version "2.1.2" 2343 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2344 | 2345 | yargs-parser@^2.4.1: 2346 | version "2.4.1" 2347 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 2348 | dependencies: 2349 | camelcase "^3.0.0" 2350 | lodash.assign "^4.0.6" 2351 | 2352 | yargs@^4.8.1: 2353 | version "4.8.1" 2354 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 2355 | dependencies: 2356 | cliui "^3.2.0" 2357 | decamelize "^1.1.1" 2358 | get-caller-file "^1.0.1" 2359 | lodash.assign "^4.0.3" 2360 | os-locale "^1.4.0" 2361 | read-pkg-up "^1.0.1" 2362 | require-directory "^2.1.1" 2363 | require-main-filename "^1.0.1" 2364 | set-blocking "^2.0.0" 2365 | string-width "^1.0.1" 2366 | which-module "^1.0.0" 2367 | window-size "^0.2.0" 2368 | y18n "^3.2.1" 2369 | yargs-parser "^2.4.1" 2370 | 2371 | yargs@~3.10.0: 2372 | version "3.10.0" 2373 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2374 | dependencies: 2375 | camelcase "^1.0.2" 2376 | cliui "^2.1.0" 2377 | decamelize "^1.0.0" 2378 | window-size "0.1.0" 2379 | --------------------------------------------------------------------------------