├── .babelrc ├── .codeclimate.yml ├── .eslintrc.js ├── .gitignore ├── .pxlintrc.js ├── README.md ├── bin └── cli.js ├── lib ├── pxlint.js ├── pxlint_test.js ├── screenshot.js └── screenshot_test.js ├── package.json ├── src ├── pxlint.js ├── pxlint_test.js └── screenshot.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"], 3 | "plugins": ["transform-runtime", "add-module-exports"] 4 | } 5 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | version: "2" 2 | checks: 3 | method-lines: 4 | enabled: true 5 | config: 6 | threshold: 50 7 | method-count: 8 | enabled: false 9 | method-complexity: 10 | enabled: true 11 | config: 12 | threshold: 10 13 | file-lines: 14 | enabled: true 15 | config: 16 | threshold: 350 17 | exclude_patterns: 18 | - "config/" 19 | - "db/" 20 | - "dist/" 21 | - "lib/" 22 | - "example/" 23 | - "features/" 24 | - "**/node_modules/" 25 | - "script/" 26 | - "**/spec/" 27 | - "**/test/" 28 | - "**/tests/" 29 | - "**/vendor/" 30 | - "**/*.d.ts" 31 | - "**/.*.js" 32 | - "**/webpack.config.js" 33 | 34 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "extends": "eslint-config-75team", 3 | rules: { 4 | 'semi-style': ["error", "first"], 5 | // 禁止一个文件中在忽略空行和注释之后行数超过1500行 6 | 'max-lines': ['error', { 7 | max: 1500, 8 | skipBlankLines: true, 9 | skipComments: true 10 | }], 11 | 'no-loop-func': 'off', 12 | 'guard-for-in': 'off', 13 | 'no-multi-assign': 'warn', 14 | 'max-params': ['warn', 10], 15 | 'prefer-const': ['error', {destructuring: 'all'}], 16 | // 因为我们可能模块内定义一个 decorate,这个 decorate 有可能和变量同名 17 | 'no-shadow': 'warn', 18 | // 因为函数签名中可能声明未使用的变量 19 | 'no-unused-vars': ['error', {args: "none"}], 20 | 'prefer-destructuring': 'off', 21 | 'object-curly-newline': 'off', 22 | // 'no-restricted-syntax': [ 23 | // 'error', 24 | // 'ForInStatement', 25 | // 'LabeledStatement', 26 | // 'WithStatement', 27 | // ] 28 | }, 29 | } 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage/ 15 | .nyc_output/ 16 | 17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 18 | .grunt 19 | 20 | # node-waf configuration 21 | .lock-wscript 22 | 23 | # Dependency directory 24 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 25 | node_modules/ 26 | 27 | # IDE config 28 | .idea 29 | 30 | # output 31 | output/ 32 | output.tar.gz 33 | 34 | app/ 35 | 36 | runtime/ 37 | 38 | frames/ 39 | ffmpeg.sh 40 | 41 | .DS_Store 42 | 43 | sftp-config.json 44 | package-lock.json 45 | 46 | .vscode 47 | jsconfig.json 48 | esconfig.json 49 | 50 | temp/*.js 51 | .jedi-tests 52 | 53 | temp_output -------------------------------------------------------------------------------- /.pxlintrc.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | 3 | module.exports = { 4 | host: "", // 服务器host 可为空 5 | port: "", // 端口号 可为空 6 | tests: [ 7 | { 8 | viewport: [1920, 1080], 9 | design: path.resolve(__dirname, './test/1920x1080.baidu.png'), 10 | } 11 | ], 12 | path: path.resolve(__dirname, './test'), // 最终diff图存储的路径 13 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pxLint 2 | 3 | 检查页面效果与设计稿是否相符合 4 | 5 | ## 配置 .pxlintrc.js 6 | 7 | ```js 8 | module.exports = { 9 | protocol: 'http', // 协议,默认http 10 | host: '', // 主机名,必填 11 | port: '', // 端口号 12 | output_diff_image: true, // 是否输出差异图片,默认true 13 | output_score: true, // 是否输出分数,默认true 14 | temp_output_dir: path.resolve(__dirname, '../temp_output'), // 默认临时文件输出目录 15 | } 16 | ``` 17 | ## 使用方法 18 | 19 | ### nodejs 20 | 1. 使用pxlintrc.js进行项目配置时 21 | 22 | ```javascript 23 | import PxLint from 'pxlint' 24 | // 默认会使用 .pxlintrc.js中的配置 25 | const pxlint = new PxLint() 26 | 27 | // 执行检测 28 | pxlint.run([ 29 | { 30 | path: '/', // 测试网页url,不包括origin 31 | viewport: [800, 600], // 视口大小 32 | design: 'design.png', // 设计稿的路径,可为本地路径、url 33 | }, 34 | // 更多lint内容... 35 | ]).then((result) => { 36 | /* 37 | result 数据接口 38 | [ 39 | { 40 | path: '/', 41 | viewport: [ 800, 600 ], 42 | design: 'design.png', 43 | score: 0.39450209490402416, 44 | diff: 'diff.png', 45 | similar: false 46 | }, 47 | ... 48 | ] 49 | */ 50 | // do something 51 | }) 52 | ``` 53 | 54 | 2. 在js中书写配置时 55 | 56 | ```javascript 57 | import PxLint from 'pxlint' 58 | 59 | const config = { 60 | protocol: 'http', // 协议,默认http 61 | host: '', // 主机名,必填 62 | port: '', // 端口号 63 | output_diff_image: true, // 是否输出差异图片,默认true 64 | output_score: true, // 是否输出分数,默认true 65 | temp_output_dir: path.resolve(__dirname, '../temp_output'), // 默认临时文件输出目录 66 | } 67 | 68 | // 传入config 69 | const pxlint = new PxLint(config) 70 | 71 | pxlint.run([ 72 | { 73 | path: '/', // 测试网页url,不包括origin 74 | viewport: [800, 600], // 视口大小 75 | design: 'design.png', // 设计稿的路径,可为本地路径、url 76 | }, 77 | // 更多lint内容... 78 | ]).then((result) => { 79 | // do something 80 | }) 81 | ``` 82 | 83 | ## 输出 84 | ``` 85 | [ 86 | { 87 | path: '/', 88 | viewport: [ 800, 600 ], 89 | design: 'design.png', 90 | score: 0.39450209490402416, 91 | diff: 'diff.png', 92 | similar: false 93 | }, 94 | ... 95 | ] 96 | ``` -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- 1 | console.log(111); -------------------------------------------------------------------------------- /lib/pxlint.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _slicedToArray2 = require('babel-runtime/helpers/slicedToArray'); 8 | 9 | var _slicedToArray3 = _interopRequireDefault(_slicedToArray2); 10 | 11 | var _stringify = require('babel-runtime/core-js/json/stringify'); 12 | 13 | var _stringify2 = _interopRequireDefault(_stringify); 14 | 15 | var _regenerator = require('babel-runtime/regenerator'); 16 | 17 | var _regenerator2 = _interopRequireDefault(_regenerator); 18 | 19 | var _asyncToGenerator2 = require('babel-runtime/helpers/asyncToGenerator'); 20 | 21 | var _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2); 22 | 23 | var _promise = require('babel-runtime/core-js/promise'); 24 | 25 | var _promise2 = _interopRequireDefault(_promise); 26 | 27 | var _assign = require('babel-runtime/core-js/object/assign'); 28 | 29 | var _assign2 = _interopRequireDefault(_assign); 30 | 31 | var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck'); 32 | 33 | var _classCallCheck3 = _interopRequireDefault(_classCallCheck2); 34 | 35 | var _createClass2 = require('babel-runtime/helpers/createClass'); 36 | 37 | var _createClass3 = _interopRequireDefault(_createClass2); 38 | 39 | var _fs = require('fs'); 40 | 41 | var _fs2 = _interopRequireDefault(_fs); 42 | 43 | var _hammingDistance = require('hamming-distance'); 44 | 45 | var _hammingDistance2 = _interopRequireDefault(_hammingDistance); 46 | 47 | var _imghash = require('imghash'); 48 | 49 | var _imghash2 = _interopRequireDefault(_imghash); 50 | 51 | var _blueimpMd = require('blueimp-md5'); 52 | 53 | var _blueimpMd2 = _interopRequireDefault(_blueimpMd); 54 | 55 | var _path = require('path'); 56 | 57 | var _path2 = _interopRequireDefault(_path); 58 | 59 | var _pngjs = require('pngjs'); 60 | 61 | var _pngjs2 = _interopRequireDefault(_pngjs); 62 | 63 | var _pixelmatch = require('pixelmatch'); 64 | 65 | var _pixelmatch2 = _interopRequireDefault(_pixelmatch); 66 | 67 | var _request = require('request'); 68 | 69 | var _request2 = _interopRequireDefault(_request); 70 | 71 | var _screenshot = require('./screenshot.js'); 72 | 73 | var _screenshot2 = _interopRequireDefault(_screenshot); 74 | 75 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 76 | 77 | var exec = require('child_process').exec; 78 | 79 | var Pixlint = function () { 80 | function Pixlint(config) { 81 | (0, _classCallCheck3.default)(this, Pixlint); 82 | 83 | this.defaultConfig = { 84 | protocol: 'http', // 协议 85 | host: '', // 主机名 86 | port: '', // 端口号 87 | output_diff_image: true, // 是否输出差异图片 88 | output_score: true, // 是否输出分数 89 | temp_output_dir: _path2.default.resolve(__dirname, '../temp_output') // 临时文件输出目录 90 | }; 91 | if (config === undefined) { 92 | this.fileConfig = this.searchFileConfig(); 93 | this.config = (0, _assign2.default)({}, this.defaultConfig, this.fileConfig); 94 | } else { 95 | this.config = (0, _assign2.default)({}, this.defaultConfig, config); 96 | } 97 | this.validateConfig(); 98 | } 99 | /** 100 | * output diffImage and score the similarity 101 | * @param {*} img_online 线上图片path 102 | * @param {*} img_design 设计稿path 103 | * @param {*} lintItem lint项 104 | * @param {*} temp_output_dir 临时文件存放目录 105 | * @param {*} output_diff_image 是否输出diff图 106 | * @param {*} output_diff_image 临时md5值 107 | */ 108 | 109 | 110 | (0, _createClass3.default)(Pixlint, [{ 111 | key: 'diffAndScoreImage', 112 | value: function diffAndScoreImage(img_online, img_design, lintItem, temp_output_dir, output_diff_image, tempHashPath) { 113 | return new _promise2.default(function (res, rej) { 114 | var ret = {}; 115 | var PNG = _pngjs2.default.PNG; 116 | var img_online_png = _fs2.default.createReadStream(img_online).pipe(new PNG()).on('parsed', doneReading); 117 | var img_design_png = _fs2.default.createReadStream(img_design).pipe(new PNG()).on('parsed', doneReading); 118 | var filesRead = 0; 119 | function doneReading() { 120 | if (++filesRead < 2) return; 121 | var diff = new PNG({ 122 | width: img_online_png.width, 123 | height: img_online_png.height 124 | }); 125 | var result = (0, _pixelmatch2.default)(img_online_png.data, img_design_png.data, diff.data, img_online_png.width, img_online_png.height, { threshold: 0.1 }); 126 | ret.score = 1 - result / (img_online_png.width * img_online_png.height); 127 | if (output_diff_image) { 128 | var diffPath = temp_output_dir + '/' + tempHashPath + '_' + lintItem.viewport[0] + 'x' + lintItem.viewport[1] + '.diff.png'; 129 | diff.pack().pipe(_fs2.default.createWriteStream(diffPath)); 130 | ret.diff = diffPath; 131 | } 132 | res(ret); 133 | } 134 | }); 135 | } 136 | /** 137 | * 判断是否为图片链接 138 | * @param {*} imgPath 139 | */ 140 | 141 | }, { 142 | key: 'isUrl', 143 | value: function isUrl(imgPath) { 144 | // 只支持png 145 | var reg = /^http[s]?:\/\/[\d|\w|.|/]+.png$/g; 146 | return reg.test(imgPath); 147 | } 148 | /** 149 | * use dhash and hamming distance to judge if one image is similar to another 150 | * @param {*} img_online 151 | * @param {*} img_design 152 | */ 153 | 154 | }, { 155 | key: 'checkSimilar', 156 | value: function () { 157 | var _ref = (0, _asyncToGenerator3.default)( /*#__PURE__*/_regenerator2.default.mark(function _callee(img_online, img_design) { 158 | var img_online_hash, img_design_hash, results, distance; 159 | return _regenerator2.default.wrap(function _callee$(_context) { 160 | while (1) { 161 | switch (_context.prev = _context.next) { 162 | case 0: 163 | img_online_hash = _imghash2.default.hash(img_online, 8, 'binary'); 164 | img_design_hash = _imghash2.default.hash(img_design, 8, 'binary'); 165 | _context.next = 4; 166 | return _promise2.default.all([img_online_hash, img_design_hash]); 167 | 168 | case 4: 169 | results = _context.sent; 170 | distance = (0, _hammingDistance2.default)(results[0], results[1]); 171 | 172 | if (!(distance <= 5)) { 173 | _context.next = 8; 174 | break; 175 | } 176 | 177 | return _context.abrupt('return', true); 178 | 179 | case 8: 180 | return _context.abrupt('return', false); 181 | 182 | case 9: 183 | case 'end': 184 | return _context.stop(); 185 | } 186 | } 187 | }, _callee, this); 188 | })); 189 | 190 | function checkSimilar(_x, _x2) { 191 | return _ref.apply(this, arguments); 192 | } 193 | 194 | return checkSimilar; 195 | }() 196 | /** 197 | * 执行pxlint 198 | * @param {Array} lintList 需要lint的内容 199 | */ 200 | 201 | }, { 202 | key: 'run', 203 | value: function run(lintList) { 204 | var _this = this; 205 | 206 | if (!lintList || lintList.length === 0) { 207 | throw new Error('lintList is empty'); 208 | } 209 | 210 | // 根据lintList、当前时间、随机值生成hash值,设计稿、截屏文件存入该文件夹下,lint完便于清除 211 | var tempHashPath = (0, _blueimpMd2.default)((0, _stringify2.default)(lintList) + Date.now() + Math.random()); 212 | var subTempDir = this.config.temp_output_dir + '/' + tempHashPath; 213 | // 判断 temp_output_dir目录下tempHashPath是否存在,不存在则创建 214 | try { 215 | _fs2.default.accessSync(subTempDir); 216 | } catch (e) { 217 | _fs2.default.mkdirSync(subTempDir); 218 | } 219 | 220 | var origin = this.config.protocol + '://' + this.config.host; 221 | if (this.config.port) { 222 | origin += ':' + this.config.port; 223 | } 224 | return _promise2.default.all(lintList.map(function () { 225 | var _ref2 = (0, _asyncToGenerator3.default)( /*#__PURE__*/_regenerator2.default.mark(function _callee2(lintItem) { 226 | var result, lintItemUrl, imgOnline, imgDesign, imgDesignPath, _ref3, _ref4, _ref4$, score, diff, similar; 227 | 228 | return _regenerator2.default.wrap(function _callee2$(_context2) { 229 | while (1) { 230 | switch (_context2.prev = _context2.next) { 231 | case 0: 232 | result = (0, _assign2.default)({}, lintItem); 233 | lintItemUrl = '' + origin + lintItem.path; 234 | // lintItemUrl 在线截图 235 | 236 | _context2.next = 4; 237 | return (0, _screenshot2.default)(lintItemUrl, lintItem.viewport, subTempDir); 238 | 239 | case 4: 240 | imgOnline = _context2.sent; 241 | imgDesign = ''; 242 | // 如果设计稿为url,则下载到本地 243 | 244 | if (!_this.isUrl(lintItem.design)) { 245 | _context2.next = 13; 246 | break; 247 | } 248 | 249 | imgDesignPath = _this.config.temp_output_dir + '/' + tempHashPath + '/' + lintItem.viewport[0] + 'x' + lintItem.viewport[1] + '.design.png'; 250 | _context2.next = 10; 251 | return new _promise2.default(function (resolve, reject) { 252 | (0, _request2.default)(lintItem.design).pipe(_fs2.default.createWriteStream(imgDesignPath)).on('close', function () { 253 | resolve(); 254 | }); 255 | }); 256 | 257 | case 10: 258 | imgDesign = imgDesignPath; 259 | _context2.next = 14; 260 | break; 261 | 262 | case 13: 263 | imgDesign = lintItem.design; 264 | 265 | case 14: 266 | _context2.next = 16; 267 | return _promise2.default.all([_this.diffAndScoreImage(imgOnline, imgDesign, lintItem, _this.config.temp_output_dir, _this.config.output_diff_image, tempHashPath), _this.checkSimilar(imgOnline, imgDesign)]); 268 | 269 | case 16: 270 | _ref3 = _context2.sent; 271 | _ref4 = (0, _slicedToArray3.default)(_ref3, 2); 272 | _ref4$ = _ref4[0]; 273 | score = _ref4$.score; 274 | diff = _ref4$.diff; 275 | similar = _ref4[1]; 276 | 277 | if (_this.config.output_score) { 278 | result.score = score; 279 | } 280 | if (_this.config.output_diff_image) { 281 | result.diff = diff; 282 | } 283 | result.similar = similar; 284 | return _context2.abrupt('return', result); 285 | 286 | case 26: 287 | case 'end': 288 | return _context2.stop(); 289 | } 290 | } 291 | }, _callee2, _this); 292 | })); 293 | 294 | return function (_x3) { 295 | return _ref2.apply(this, arguments); 296 | }; 297 | }())).then(function (rets) { 298 | // 清空临时 subTempDir 299 | exec('rm -rf ' + subTempDir, function (err, out) { 300 | if (err) { 301 | throw err; 302 | } 303 | }); 304 | return rets; 305 | }); 306 | } 307 | /** 308 | * 从当前目录开始 查找.pxlintrc.js文件 309 | */ 310 | 311 | }, { 312 | key: 'searchFileConfig', 313 | value: function searchFileConfig() { 314 | var dir = __dirname; 315 | // Mac/Linux only 316 | while (dir !== '/') { 317 | try { 318 | return require(_path2.default.join(dir, '.pxlintrc.js')); 319 | } catch (e) { 320 | dir = _path2.default.join(dir, '../'); 321 | } 322 | } 323 | throw new Error('Config not found!'); 324 | } 325 | 326 | /** 327 | * 检测配置是否合格 328 | */ 329 | 330 | }, { 331 | key: 'validateConfig', 332 | value: function validateConfig() { 333 | if (!this.config.protocol) { 334 | throw new Error('config error: protocol can not be empty'); 335 | } 336 | if (!this.config.host) { 337 | throw new Error('config error: host can not be empty'); 338 | } 339 | // 判断 temp_output_dir目录是否存在,不存在则创建 340 | try { 341 | _fs2.default.accessSync(this.config.temp_output_dir); 342 | } catch (e) { 343 | _fs2.default.mkdirSync(this.config.temp_output_dir); 344 | } 345 | } 346 | }]); 347 | return Pixlint; 348 | }(); 349 | 350 | exports.default = Pixlint; 351 | module.exports = exports['default']; -------------------------------------------------------------------------------- /lib/pxlint_test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _pxlint = require('./pxlint.js'); 4 | 5 | var _pxlint2 = _interopRequireDefault(_pxlint); 6 | 7 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 8 | 9 | var config = { 10 | host: 'dc.360.cn', // 服务器host 可为空 11 | port: '' // 端口号 可为空 12 | }; 13 | 14 | var pxlint = new _pxlint2.default(config); 15 | 16 | pxlint.run([{ 17 | path: '/', 18 | viewport: [800, 600], // 视口大小 19 | design: 'http://p4.qhimg.com/t01b5c6b67f6d480e1b.png' // 设计稿的路径 20 | }, { 21 | path: '/', 22 | viewport: [1920, 1080], 23 | design: 'http://p4.qhimg.com/t01b5c6b67f6d480e1b.png' 24 | }]).then(function (data) { 25 | console.log(data); 26 | }).catch(function (e) { 27 | console.log('error', e); 28 | }); -------------------------------------------------------------------------------- /lib/screenshot.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _regenerator = require('babel-runtime/regenerator'); 8 | 9 | var _regenerator2 = _interopRequireDefault(_regenerator); 10 | 11 | var _slicedToArray2 = require('babel-runtime/helpers/slicedToArray'); 12 | 13 | var _slicedToArray3 = _interopRequireDefault(_slicedToArray2); 14 | 15 | var _asyncToGenerator2 = require('babel-runtime/helpers/asyncToGenerator'); 16 | 17 | var _asyncToGenerator3 = _interopRequireDefault(_asyncToGenerator2); 18 | 19 | var _puppeteer = require('puppeteer'); 20 | 21 | var _puppeteer2 = _interopRequireDefault(_puppeteer); 22 | 23 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 24 | 25 | /** 26 | * 27 | * @param {待截图的URL} url 28 | * @param {配置信息: [{viewport(尺寸), path(储存截图地址)}]} configs 29 | */ 30 | exports.default = function () { 31 | var _ref = (0, _asyncToGenerator3.default)( /*#__PURE__*/_regenerator2.default.mark(function _callee(url, viewport, path) { 32 | var browser, _viewport, width, height, page; 33 | 34 | return _regenerator2.default.wrap(function _callee$(_context) { 35 | while (1) { 36 | switch (_context.prev = _context.next) { 37 | case 0: 38 | if (viewport instanceof Array && viewport.length === 2 && typeof viewport[0] === 'number' && typeof viewport[1] === 'number') { 39 | _context.next = 2; 40 | break; 41 | } 42 | 43 | throw new Error('[format] viewport need [number, number]'); 44 | 45 | case 2: 46 | _context.next = 4; 47 | return _puppeteer2.default.launch(); 48 | 49 | case 4: 50 | browser = _context.sent; 51 | _viewport = (0, _slicedToArray3.default)(viewport, 2), width = _viewport[0], height = _viewport[1]; 52 | _context.next = 8; 53 | return browser.newPage(); 54 | 55 | case 8: 56 | page = _context.sent; 57 | 58 | page.setViewport({ width: width, height: height }); 59 | _context.next = 12; 60 | return page.goto(url); 61 | 62 | case 12: 63 | _context.next = 14; 64 | return page.screenshot({ 65 | path: path + '/' + width + 'x' + height + '.screenshot.png', 66 | fullPage: true 67 | }); 68 | 69 | case 14: 70 | _context.next = 16; 71 | return page.close(); 72 | 73 | case 16: 74 | _context.next = 18; 75 | return browser.close(); 76 | 77 | case 18: 78 | return _context.abrupt('return', path + '/' + width + 'x' + height + '.screenshot.png'); 79 | 80 | case 19: 81 | case 'end': 82 | return _context.stop(); 83 | } 84 | } 85 | }, _callee, this); 86 | })); 87 | 88 | function screenshot(_x, _x2, _x3) { 89 | return _ref.apply(this, arguments); 90 | } 91 | 92 | return screenshot; 93 | }(); 94 | 95 | module.exports = exports['default']; -------------------------------------------------------------------------------- /lib/screenshot_test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _pxlint = require('./pxlint.js'); 4 | 5 | var _pxlint2 = _interopRequireDefault(_pxlint); 6 | 7 | var _path = require('path'); 8 | 9 | var _path2 = _interopRequireDefault(_path); 10 | 11 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 12 | 13 | var configs = { 14 | host: '', // 服务器host 可为空 15 | port: '', // 端口号 可为空 16 | tests: [{ 17 | viewport: [1920, 1080], 18 | design: _path2.default.resolve(__dirname, '../test/1920x1080.baidu.png') 19 | }], 20 | path: _path2.default.resolve(__dirname, '../test') // 最终diff图存储的路径 21 | }; 22 | 23 | (0, _pxlint2.default)('://baidu.com', configs).then(function (result) { 24 | console.log(111, result); 25 | }); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pxlint", 3 | "version": "0.1.0", 4 | "description": "检查页面效果与设计稿是否相符合", 5 | "main": "lib/pxlint.js", 6 | "bin": { 7 | "pxlint": "bin/cli.js" 8 | }, 9 | "scripts": { 10 | "test": "ava", 11 | "compile": "babel src -d lib --watch", 12 | "prepublishOnly": "babel src -d lib", 13 | "lint": "eslint src/**/*.js --fix" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "git+https://github.com/75team/pxlint.git" 18 | }, 19 | "author": "", 20 | "license": "MIT", 21 | "bugs": { 22 | "url": "https://github.com/75team/pxlint/issues" 23 | }, 24 | "homepage": "https://github.com/75team/pxlint#readme", 25 | "dependencies": { 26 | "blueimp-md5": "^2.10.0", 27 | "colors": "^1.2.1", 28 | "hamming-distance": "^1.0.0", 29 | "imghash": "^0.0.3", 30 | "pixelmatch": "^4.0.2", 31 | "puppeteer": "^1.1.1", 32 | "request": "^2.85.0" 33 | }, 34 | "devDependencies": { 35 | "babel-cli": "^6.26.0", 36 | "babel-core": "^6.26.0", 37 | "babel-eslint": "^8.2.2", 38 | "babel-plugin-add-module-exports": "^0.2.1", 39 | "babel-plugin-transform-runtime": "^6.23.0", 40 | "babel-preset-env": "^1.6.1", 41 | "eslint": "^4.18.1", 42 | "eslint-config-75team": "^1.0.22", 43 | "eslint-plugin-html": "^4.0.2", 44 | "eslint-plugin-import": "^2.10.0", 45 | "eslint-plugin-vue": "^4.4.0", 46 | "pngjs": "^3.3.2" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /src/pxlint.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs' 2 | import hamming from 'hamming-distance' 3 | import imghash from 'imghash' 4 | import md5 from 'blueimp-md5' 5 | import path from 'path' 6 | import pngjs from 'pngjs' 7 | import pixelmatch from 'pixelmatch' 8 | import request from 'request' 9 | import screenshot from './screenshot.js' 10 | 11 | const exec = require('child_process').exec 12 | 13 | export default class Pixlint { 14 | constructor(config) { 15 | this.defaultConfig = { 16 | protocol: 'http', // 协议 17 | host: '', // 主机名 18 | port: '', // 端口号 19 | output_diff_image: true, // 是否输出差异图片 20 | output_score: true, // 是否输出分数 21 | temp_output_dir: path.resolve(__dirname, '../temp_output'), // 临时文件输出目录 22 | } 23 | if(config === undefined) { 24 | this.fileConfig = this.searchFileConfig() 25 | this.config = Object.assign({}, this.defaultConfig, this.fileConfig) 26 | } else { 27 | this.config = Object.assign({}, this.defaultConfig, config) 28 | } 29 | this.validateConfig() 30 | } 31 | /** 32 | * output diffImage and score the similarity 33 | * @param {*} img_online 线上图片path 34 | * @param {*} img_design 设计稿path 35 | * @param {*} lintItem lint项 36 | * @param {*} temp_output_dir 临时文件存放目录 37 | * @param {*} output_diff_image 是否输出diff图 38 | * @param {*} output_diff_image 临时md5值 39 | */ 40 | diffAndScoreImage( 41 | img_online, 42 | img_design, 43 | lintItem, 44 | temp_output_dir, 45 | output_diff_image, 46 | tempHashPath 47 | ) { 48 | return new Promise((res, rej) => { 49 | const ret = {} 50 | const PNG = pngjs.PNG 51 | const img_online_png = fs 52 | .createReadStream(img_online) 53 | .pipe(new PNG()) 54 | .on('parsed', doneReading) 55 | const img_design_png = fs 56 | .createReadStream(img_design) 57 | .pipe(new PNG()) 58 | .on('parsed', doneReading) 59 | let filesRead = 0 60 | function doneReading() { 61 | if(++filesRead < 2) return 62 | const diff = new PNG({ 63 | width: img_online_png.width, 64 | height: img_online_png.height, 65 | }) 66 | const result = pixelmatch( 67 | img_online_png.data, 68 | img_design_png.data, 69 | diff.data, 70 | img_online_png.width, 71 | img_online_png.height, 72 | {threshold: 0.1} 73 | ) 74 | ret.score = 1 - result / (img_online_png.width * img_online_png.height) 75 | if(output_diff_image) { 76 | const diffPath = `${temp_output_dir}/${tempHashPath}_${lintItem.viewport[0]}x${ 77 | lintItem.viewport[1] 78 | }.diff.png` 79 | diff 80 | .pack() 81 | .pipe(fs.createWriteStream(diffPath)) 82 | ret.diff = diffPath 83 | } 84 | res(ret) 85 | } 86 | }) 87 | } 88 | /** 89 | * 判断是否为图片链接 90 | * @param {*} imgPath 91 | */ 92 | isUrl(imgPath) { 93 | // 只支持png 94 | const reg = /^http[s]?:\/\/[\d|\w|.|/]+.png$/g 95 | return reg.test(imgPath) 96 | } 97 | /** 98 | * use dhash and hamming distance to judge if one image is similar to another 99 | * @param {*} img_online 100 | * @param {*} img_design 101 | */ 102 | async checkSimilar(img_online, img_design) { 103 | const img_online_hash = imghash.hash(img_online, 8, 'binary') 104 | const img_design_hash = imghash.hash(img_design, 8, 'binary') 105 | const results = await Promise.all([img_online_hash, img_design_hash]) 106 | const distance = hamming(results[0], results[1]) 107 | if(distance <= 5) { 108 | return true 109 | } 110 | return false 111 | } 112 | /** 113 | * 执行pxlint 114 | * @param {Array} lintList 需要lint的内容 115 | */ 116 | run(lintList) { 117 | if(!lintList || lintList.length === 0) { 118 | throw new Error('lintList is empty') 119 | } 120 | 121 | // 根据lintList、当前时间、随机值生成hash值,设计稿、截屏文件存入该文件夹下,lint完便于清除 122 | const tempHashPath = md5(JSON.stringify(lintList) + Date.now() + Math.random()) 123 | const subTempDir = `${this.config.temp_output_dir}/${tempHashPath}` 124 | // 判断 temp_output_dir目录下tempHashPath是否存在,不存在则创建 125 | try { 126 | fs.accessSync(subTempDir) 127 | } catch (e) { 128 | fs.mkdirSync(subTempDir) 129 | } 130 | 131 | let origin = `${this.config.protocol}://${this.config.host}` 132 | if(this.config.port) { 133 | origin += `:${this.config.port}` 134 | } 135 | return Promise.all(lintList.map(async (lintItem) => { 136 | const result = Object.assign({}, lintItem) 137 | const lintItemUrl = `${origin}${lintItem.path}` 138 | // lintItemUrl 在线截图 139 | const imgOnline = await screenshot( 140 | lintItemUrl, 141 | lintItem.viewport, 142 | subTempDir 143 | ) 144 | let imgDesign = '' 145 | // 如果设计稿为url,则下载到本地 146 | if(this.isUrl(lintItem.design)) { 147 | const imgDesignPath = `${ 148 | this.config.temp_output_dir 149 | }/${tempHashPath}/${lintItem.viewport[0]}x${ 150 | lintItem.viewport[1] 151 | }.design.png` 152 | await new Promise((resolve, reject) => { 153 | request(lintItem.design) 154 | .pipe(fs.createWriteStream(imgDesignPath)) 155 | .on('close', () => { 156 | resolve() 157 | }) 158 | }) 159 | imgDesign = imgDesignPath 160 | } else { 161 | imgDesign = lintItem.design 162 | } 163 | const [{score, diff}, similar] = await Promise.all([ 164 | this.diffAndScoreImage( 165 | imgOnline, 166 | imgDesign, 167 | lintItem, 168 | this.config.temp_output_dir, 169 | this.config.output_diff_image, 170 | tempHashPath 171 | ), 172 | this.checkSimilar(imgOnline, imgDesign), 173 | ]) 174 | if(this.config.output_score) { 175 | result.score = score 176 | } 177 | if(this.config.output_diff_image) { 178 | result.diff = diff 179 | } 180 | result.similar = similar 181 | return result 182 | })).then((rets) => { 183 | // 清空临时 subTempDir 184 | exec(`rm -rf ${subTempDir}`, (err, out) => { 185 | if(err) { 186 | throw err 187 | } 188 | }) 189 | return rets 190 | }) 191 | } 192 | /** 193 | * 从当前目录开始 查找.pxlintrc.js文件 194 | */ 195 | searchFileConfig() { 196 | let dir = __dirname 197 | // Mac/Linux only 198 | while(dir !== '/') { 199 | try { 200 | return require(path.join(dir, '.pxlintrc.js')) 201 | } catch (e) { 202 | dir = path.join(dir, '../') 203 | } 204 | } 205 | throw new Error('Config not found!') 206 | } 207 | 208 | /** 209 | * 检测配置是否合格 210 | */ 211 | validateConfig() { 212 | if(!this.config.protocol) { 213 | throw new Error('config error: protocol can not be empty') 214 | } 215 | if(!this.config.host) { 216 | throw new Error('config error: host can not be empty') 217 | } 218 | // 判断 temp_output_dir目录是否存在,不存在则创建 219 | try { 220 | fs.accessSync(this.config.temp_output_dir) 221 | } catch (e) { 222 | fs.mkdirSync(this.config.temp_output_dir) 223 | } 224 | } 225 | } 226 | -------------------------------------------------------------------------------- /src/pxlint_test.js: -------------------------------------------------------------------------------- 1 | import PxLint from './pxlint.js' 2 | const config = { 3 | host: 'dc.360.cn', // 服务器host 可为空 4 | port: '', // 端口号 可为空 5 | } 6 | 7 | const pxlint = new PxLint(config) 8 | 9 | 10 | pxlint.run([ 11 | { 12 | path: '/', 13 | viewport: [800, 600], // 视口大小 14 | design: 'http://p4.qhimg.com/t01b5c6b67f6d480e1b.png', // 设计稿的路径 15 | }, 16 | { 17 | path: '/', 18 | viewport: [1920, 1080], 19 | design: 'http://p4.qhimg.com/t01b5c6b67f6d480e1b.png', 20 | }, 21 | ]).then((data) => { 22 | console.log(data) 23 | }).catch((e) => { 24 | console.log('error', e) 25 | }) 26 | -------------------------------------------------------------------------------- /src/screenshot.js: -------------------------------------------------------------------------------- 1 | import puppeteer from 'puppeteer' 2 | /** 3 | * 4 | * @param {待截图的URL} url 5 | * @param {配置信息: [{viewport(尺寸), path(储存截图地址)}]} configs 6 | */ 7 | export default async function screenshot(url, viewport, path) { 8 | // 要求viewport必须为长度2的数组,数组元素必须为数字 9 | if(!(viewport instanceof Array && viewport.length === 2 && typeof viewport[0] === 'number' && typeof viewport[1] === 'number')) { 10 | throw new Error('[format] viewport need [number, number]') 11 | } 12 | // validate params 13 | 14 | const browser = await puppeteer.launch() 15 | const [width, height] = viewport 16 | const page = await browser.newPage() 17 | page.setViewport({width, height}) 18 | await page.goto(url) 19 | await page.screenshot({ 20 | path: `${path}/${width}x${height}.screenshot.png`, 21 | fullPage: true, 22 | }) 23 | await page.close() 24 | await browser.close() 25 | return `${path}/${width}x${height}.screenshot.png` 26 | } 27 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.40", "@babel/code-frame@^7.0.0-beta.40": 6 | version "7.0.0-beta.40" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.40.tgz#37e2b0cf7c56026b4b21d3927cadf81adec32ac6" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.40" 10 | 11 | "@babel/generator@7.0.0-beta.40": 12 | version "7.0.0-beta.40" 13 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.40.tgz#ab61f9556f4f71dbd1138949c795bb9a21e302ea" 14 | dependencies: 15 | "@babel/types" "7.0.0-beta.40" 16 | jsesc "^2.5.1" 17 | lodash "^4.2.0" 18 | source-map "^0.5.0" 19 | trim-right "^1.0.1" 20 | 21 | "@babel/helper-function-name@7.0.0-beta.40": 22 | version "7.0.0-beta.40" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.40.tgz#9d033341ab16517f40d43a73f2d81fc431ccd7b6" 24 | dependencies: 25 | "@babel/helper-get-function-arity" "7.0.0-beta.40" 26 | "@babel/template" "7.0.0-beta.40" 27 | "@babel/types" "7.0.0-beta.40" 28 | 29 | "@babel/helper-get-function-arity@7.0.0-beta.40": 30 | version "7.0.0-beta.40" 31 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.40.tgz#ac0419cf067b0ec16453e1274f03878195791c6e" 32 | dependencies: 33 | "@babel/types" "7.0.0-beta.40" 34 | 35 | "@babel/highlight@7.0.0-beta.40": 36 | version "7.0.0-beta.40" 37 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.40.tgz#b43d67d76bf46e1d10d227f68cddcd263786b255" 38 | dependencies: 39 | chalk "^2.0.0" 40 | esutils "^2.0.2" 41 | js-tokens "^3.0.0" 42 | 43 | "@babel/template@7.0.0-beta.40": 44 | version "7.0.0-beta.40" 45 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.40.tgz#034988c6424eb5c3268fe6a608626de1f4410fc8" 46 | dependencies: 47 | "@babel/code-frame" "7.0.0-beta.40" 48 | "@babel/types" "7.0.0-beta.40" 49 | babylon "7.0.0-beta.40" 50 | lodash "^4.2.0" 51 | 52 | "@babel/traverse@^7.0.0-beta.40": 53 | version "7.0.0-beta.40" 54 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.40.tgz#d140e449b2e093ef9fe1a2eecc28421ffb4e521e" 55 | dependencies: 56 | "@babel/code-frame" "7.0.0-beta.40" 57 | "@babel/generator" "7.0.0-beta.40" 58 | "@babel/helper-function-name" "7.0.0-beta.40" 59 | "@babel/types" "7.0.0-beta.40" 60 | babylon "7.0.0-beta.40" 61 | debug "^3.0.1" 62 | globals "^11.1.0" 63 | invariant "^2.2.0" 64 | lodash "^4.2.0" 65 | 66 | "@babel/types@7.0.0-beta.40", "@babel/types@^7.0.0-beta.40": 67 | version "7.0.0-beta.40" 68 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.40.tgz#25c3d7aae14126abe05fcb098c65a66b6d6b8c14" 69 | dependencies: 70 | esutils "^2.0.2" 71 | lodash "^4.2.0" 72 | to-fast-properties "^2.0.0" 73 | 74 | abbrev@1: 75 | version "1.1.1" 76 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 77 | 78 | acorn-jsx@^3.0.0: 79 | version "3.0.1" 80 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 81 | dependencies: 82 | acorn "^3.0.4" 83 | 84 | acorn@^3.0.4: 85 | version "3.3.0" 86 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 87 | 88 | acorn@^5.5.0: 89 | version "5.5.3" 90 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" 91 | 92 | agent-base@^4.1.0: 93 | version "4.2.0" 94 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.0.tgz#9838b5c3392b962bad031e6a4c5e1024abec45ce" 95 | dependencies: 96 | es6-promisify "^5.0.0" 97 | 98 | ajv-keywords@^2.1.0: 99 | version "2.1.1" 100 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 101 | 102 | ajv@^4.9.1: 103 | version "4.11.8" 104 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 105 | dependencies: 106 | co "^4.6.0" 107 | json-stable-stringify "^1.0.1" 108 | 109 | ajv@^5.2.3, ajv@^5.3.0: 110 | version "5.5.2" 111 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 112 | dependencies: 113 | co "^4.6.0" 114 | fast-deep-equal "^1.0.0" 115 | fast-json-stable-stringify "^2.0.0" 116 | json-schema-traverse "^0.3.0" 117 | 118 | ansi-escapes@^3.0.0: 119 | version "3.0.0" 120 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 121 | 122 | ansi-regex@^2.0.0: 123 | version "2.1.1" 124 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 125 | 126 | ansi-regex@^3.0.0: 127 | version "3.0.0" 128 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 129 | 130 | ansi-styles@^2.2.1: 131 | version "2.2.1" 132 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 133 | 134 | ansi-styles@^3.2.1: 135 | version "3.2.1" 136 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 137 | dependencies: 138 | color-convert "^1.9.0" 139 | 140 | anymatch@^1.3.0: 141 | version "1.3.2" 142 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 143 | dependencies: 144 | micromatch "^2.1.5" 145 | normalize-path "^2.0.0" 146 | 147 | aproba@^1.0.3: 148 | version "1.2.0" 149 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 150 | 151 | are-we-there-yet@~1.1.2: 152 | version "1.1.4" 153 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 154 | dependencies: 155 | delegates "^1.0.0" 156 | readable-stream "^2.0.6" 157 | 158 | argparse@^1.0.7: 159 | version "1.0.10" 160 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 161 | dependencies: 162 | sprintf-js "~1.0.2" 163 | 164 | arr-diff@^2.0.0: 165 | version "2.0.0" 166 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 167 | dependencies: 168 | arr-flatten "^1.0.1" 169 | 170 | arr-flatten@^1.0.1: 171 | version "1.1.0" 172 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 173 | 174 | array-find-index@^1.0.1: 175 | version "1.0.2" 176 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 177 | 178 | array-union@^1.0.1: 179 | version "1.0.2" 180 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 181 | dependencies: 182 | array-uniq "^1.0.1" 183 | 184 | array-uniq@^1.0.1: 185 | version "1.0.3" 186 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 187 | 188 | array-unique@^0.2.1: 189 | version "0.2.1" 190 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 191 | 192 | arrify@^1.0.0: 193 | version "1.0.1" 194 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 195 | 196 | asn1@~0.2.3: 197 | version "0.2.3" 198 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 199 | 200 | assert-plus@1.0.0, assert-plus@^1.0.0: 201 | version "1.0.0" 202 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 203 | 204 | assert-plus@^0.2.0: 205 | version "0.2.0" 206 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 207 | 208 | async-each@^1.0.0: 209 | version "1.0.1" 210 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 211 | 212 | async-limiter@~1.0.0: 213 | version "1.0.0" 214 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 215 | 216 | asynckit@^0.4.0: 217 | version "0.4.0" 218 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 219 | 220 | aws-sign2@~0.6.0: 221 | version "0.6.0" 222 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 223 | 224 | aws4@^1.2.1: 225 | version "1.6.0" 226 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 227 | 228 | babel-cli@^6.26.0: 229 | version "6.26.0" 230 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 231 | dependencies: 232 | babel-core "^6.26.0" 233 | babel-polyfill "^6.26.0" 234 | babel-register "^6.26.0" 235 | babel-runtime "^6.26.0" 236 | commander "^2.11.0" 237 | convert-source-map "^1.5.0" 238 | fs-readdir-recursive "^1.0.0" 239 | glob "^7.1.2" 240 | lodash "^4.17.4" 241 | output-file-sync "^1.1.2" 242 | path-is-absolute "^1.0.1" 243 | slash "^1.0.0" 244 | source-map "^0.5.6" 245 | v8flags "^2.1.1" 246 | optionalDependencies: 247 | chokidar "^1.6.1" 248 | 249 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 250 | version "6.26.0" 251 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 252 | dependencies: 253 | chalk "^1.1.3" 254 | esutils "^2.0.2" 255 | js-tokens "^3.0.2" 256 | 257 | babel-core@^6.26.0: 258 | version "6.26.0" 259 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 260 | dependencies: 261 | babel-code-frame "^6.26.0" 262 | babel-generator "^6.26.0" 263 | babel-helpers "^6.24.1" 264 | babel-messages "^6.23.0" 265 | babel-register "^6.26.0" 266 | babel-runtime "^6.26.0" 267 | babel-template "^6.26.0" 268 | babel-traverse "^6.26.0" 269 | babel-types "^6.26.0" 270 | babylon "^6.18.0" 271 | convert-source-map "^1.5.0" 272 | debug "^2.6.8" 273 | json5 "^0.5.1" 274 | lodash "^4.17.4" 275 | minimatch "^3.0.4" 276 | path-is-absolute "^1.0.1" 277 | private "^0.1.7" 278 | slash "^1.0.0" 279 | source-map "^0.5.6" 280 | 281 | babel-eslint@^8.0.1, babel-eslint@^8.2.2: 282 | version "8.2.2" 283 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.2.tgz#1102273354c6f0b29b4ea28a65f97d122296b68b" 284 | dependencies: 285 | "@babel/code-frame" "^7.0.0-beta.40" 286 | "@babel/traverse" "^7.0.0-beta.40" 287 | "@babel/types" "^7.0.0-beta.40" 288 | babylon "^7.0.0-beta.40" 289 | eslint-scope "~3.7.1" 290 | eslint-visitor-keys "^1.0.0" 291 | 292 | babel-generator@^6.26.0: 293 | version "6.26.1" 294 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 295 | dependencies: 296 | babel-messages "^6.23.0" 297 | babel-runtime "^6.26.0" 298 | babel-types "^6.26.0" 299 | detect-indent "^4.0.0" 300 | jsesc "^1.3.0" 301 | lodash "^4.17.4" 302 | source-map "^0.5.7" 303 | trim-right "^1.0.1" 304 | 305 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 308 | dependencies: 309 | babel-helper-explode-assignable-expression "^6.24.1" 310 | babel-runtime "^6.22.0" 311 | babel-types "^6.24.1" 312 | 313 | babel-helper-call-delegate@^6.24.1: 314 | version "6.24.1" 315 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 316 | dependencies: 317 | babel-helper-hoist-variables "^6.24.1" 318 | babel-runtime "^6.22.0" 319 | babel-traverse "^6.24.1" 320 | babel-types "^6.24.1" 321 | 322 | babel-helper-define-map@^6.24.1: 323 | version "6.26.0" 324 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 325 | dependencies: 326 | babel-helper-function-name "^6.24.1" 327 | babel-runtime "^6.26.0" 328 | babel-types "^6.26.0" 329 | lodash "^4.17.4" 330 | 331 | babel-helper-explode-assignable-expression@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | babel-traverse "^6.24.1" 337 | babel-types "^6.24.1" 338 | 339 | babel-helper-function-name@^6.24.1: 340 | version "6.24.1" 341 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 342 | dependencies: 343 | babel-helper-get-function-arity "^6.24.1" 344 | babel-runtime "^6.22.0" 345 | babel-template "^6.24.1" 346 | babel-traverse "^6.24.1" 347 | babel-types "^6.24.1" 348 | 349 | babel-helper-get-function-arity@^6.24.1: 350 | version "6.24.1" 351 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 352 | dependencies: 353 | babel-runtime "^6.22.0" 354 | babel-types "^6.24.1" 355 | 356 | babel-helper-hoist-variables@^6.24.1: 357 | version "6.24.1" 358 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 359 | dependencies: 360 | babel-runtime "^6.22.0" 361 | babel-types "^6.24.1" 362 | 363 | babel-helper-optimise-call-expression@^6.24.1: 364 | version "6.24.1" 365 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 366 | dependencies: 367 | babel-runtime "^6.22.0" 368 | babel-types "^6.24.1" 369 | 370 | babel-helper-regex@^6.24.1: 371 | version "6.26.0" 372 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 373 | dependencies: 374 | babel-runtime "^6.26.0" 375 | babel-types "^6.26.0" 376 | lodash "^4.17.4" 377 | 378 | babel-helper-remap-async-to-generator@^6.24.1: 379 | version "6.24.1" 380 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 381 | dependencies: 382 | babel-helper-function-name "^6.24.1" 383 | babel-runtime "^6.22.0" 384 | babel-template "^6.24.1" 385 | babel-traverse "^6.24.1" 386 | babel-types "^6.24.1" 387 | 388 | babel-helper-replace-supers@^6.24.1: 389 | version "6.24.1" 390 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 391 | dependencies: 392 | babel-helper-optimise-call-expression "^6.24.1" 393 | babel-messages "^6.23.0" 394 | babel-runtime "^6.22.0" 395 | babel-template "^6.24.1" 396 | babel-traverse "^6.24.1" 397 | babel-types "^6.24.1" 398 | 399 | babel-helpers@^6.24.1: 400 | version "6.24.1" 401 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 402 | dependencies: 403 | babel-runtime "^6.22.0" 404 | babel-template "^6.24.1" 405 | 406 | babel-messages@^6.23.0: 407 | version "6.23.0" 408 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 409 | dependencies: 410 | babel-runtime "^6.22.0" 411 | 412 | babel-plugin-check-es2015-constants@^6.22.0: 413 | version "6.22.0" 414 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 415 | dependencies: 416 | babel-runtime "^6.22.0" 417 | 418 | babel-plugin-syntax-async-functions@^6.8.0: 419 | version "6.13.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 421 | 422 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 423 | version "6.13.0" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 425 | 426 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 427 | version "6.22.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 429 | 430 | babel-plugin-transform-async-to-generator@^6.22.0: 431 | version "6.24.1" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 433 | dependencies: 434 | babel-helper-remap-async-to-generator "^6.24.1" 435 | babel-plugin-syntax-async-functions "^6.8.0" 436 | babel-runtime "^6.22.0" 437 | 438 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 439 | version "6.22.0" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 441 | dependencies: 442 | babel-runtime "^6.22.0" 443 | 444 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 445 | version "6.22.0" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 447 | dependencies: 448 | babel-runtime "^6.22.0" 449 | 450 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 451 | version "6.26.0" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 453 | dependencies: 454 | babel-runtime "^6.26.0" 455 | babel-template "^6.26.0" 456 | babel-traverse "^6.26.0" 457 | babel-types "^6.26.0" 458 | lodash "^4.17.4" 459 | 460 | babel-plugin-transform-es2015-classes@^6.23.0: 461 | version "6.24.1" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 463 | dependencies: 464 | babel-helper-define-map "^6.24.1" 465 | babel-helper-function-name "^6.24.1" 466 | babel-helper-optimise-call-expression "^6.24.1" 467 | babel-helper-replace-supers "^6.24.1" 468 | babel-messages "^6.23.0" 469 | babel-runtime "^6.22.0" 470 | babel-template "^6.24.1" 471 | babel-traverse "^6.24.1" 472 | babel-types "^6.24.1" 473 | 474 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 477 | dependencies: 478 | babel-runtime "^6.22.0" 479 | babel-template "^6.24.1" 480 | 481 | babel-plugin-transform-es2015-destructuring@^6.23.0: 482 | version "6.23.0" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 484 | dependencies: 485 | babel-runtime "^6.22.0" 486 | 487 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 488 | version "6.24.1" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 490 | dependencies: 491 | babel-runtime "^6.22.0" 492 | babel-types "^6.24.1" 493 | 494 | babel-plugin-transform-es2015-for-of@^6.23.0: 495 | version "6.23.0" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 497 | dependencies: 498 | babel-runtime "^6.22.0" 499 | 500 | babel-plugin-transform-es2015-function-name@^6.22.0: 501 | version "6.24.1" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 503 | dependencies: 504 | babel-helper-function-name "^6.24.1" 505 | babel-runtime "^6.22.0" 506 | babel-types "^6.24.1" 507 | 508 | babel-plugin-transform-es2015-literals@^6.22.0: 509 | version "6.22.0" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 511 | dependencies: 512 | babel-runtime "^6.22.0" 513 | 514 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 517 | dependencies: 518 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 519 | babel-runtime "^6.22.0" 520 | babel-template "^6.24.1" 521 | 522 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 523 | version "6.26.0" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 525 | dependencies: 526 | babel-plugin-transform-strict-mode "^6.24.1" 527 | babel-runtime "^6.26.0" 528 | babel-template "^6.26.0" 529 | babel-types "^6.26.0" 530 | 531 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 532 | version "6.24.1" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 534 | dependencies: 535 | babel-helper-hoist-variables "^6.24.1" 536 | babel-runtime "^6.22.0" 537 | babel-template "^6.24.1" 538 | 539 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 540 | version "6.24.1" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 542 | dependencies: 543 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 544 | babel-runtime "^6.22.0" 545 | babel-template "^6.24.1" 546 | 547 | babel-plugin-transform-es2015-object-super@^6.22.0: 548 | version "6.24.1" 549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 550 | dependencies: 551 | babel-helper-replace-supers "^6.24.1" 552 | babel-runtime "^6.22.0" 553 | 554 | babel-plugin-transform-es2015-parameters@^6.23.0: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 557 | dependencies: 558 | babel-helper-call-delegate "^6.24.1" 559 | babel-helper-get-function-arity "^6.24.1" 560 | babel-runtime "^6.22.0" 561 | babel-template "^6.24.1" 562 | babel-traverse "^6.24.1" 563 | babel-types "^6.24.1" 564 | 565 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 566 | version "6.24.1" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 568 | dependencies: 569 | babel-runtime "^6.22.0" 570 | babel-types "^6.24.1" 571 | 572 | babel-plugin-transform-es2015-spread@^6.22.0: 573 | version "6.22.0" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 575 | dependencies: 576 | babel-runtime "^6.22.0" 577 | 578 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 579 | version "6.24.1" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 581 | dependencies: 582 | babel-helper-regex "^6.24.1" 583 | babel-runtime "^6.22.0" 584 | babel-types "^6.24.1" 585 | 586 | babel-plugin-transform-es2015-template-literals@^6.22.0: 587 | version "6.22.0" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 589 | dependencies: 590 | babel-runtime "^6.22.0" 591 | 592 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 593 | version "6.23.0" 594 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 595 | dependencies: 596 | babel-runtime "^6.22.0" 597 | 598 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 599 | version "6.24.1" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 601 | dependencies: 602 | babel-helper-regex "^6.24.1" 603 | babel-runtime "^6.22.0" 604 | regexpu-core "^2.0.0" 605 | 606 | babel-plugin-transform-exponentiation-operator@^6.22.0: 607 | version "6.24.1" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 609 | dependencies: 610 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 611 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 612 | babel-runtime "^6.22.0" 613 | 614 | babel-plugin-transform-regenerator@^6.22.0: 615 | version "6.26.0" 616 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 617 | dependencies: 618 | regenerator-transform "^0.10.0" 619 | 620 | babel-plugin-transform-runtime@^6.23.0: 621 | version "6.23.0" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" 623 | dependencies: 624 | babel-runtime "^6.22.0" 625 | 626 | babel-plugin-transform-strict-mode@^6.24.1: 627 | version "6.24.1" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 629 | dependencies: 630 | babel-runtime "^6.22.0" 631 | babel-types "^6.24.1" 632 | 633 | babel-polyfill@^6.26.0: 634 | version "6.26.0" 635 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 636 | dependencies: 637 | babel-runtime "^6.26.0" 638 | core-js "^2.5.0" 639 | regenerator-runtime "^0.10.5" 640 | 641 | babel-preset-env@^1.6.1: 642 | version "1.6.1" 643 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 644 | dependencies: 645 | babel-plugin-check-es2015-constants "^6.22.0" 646 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 647 | babel-plugin-transform-async-to-generator "^6.22.0" 648 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 649 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 650 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 651 | babel-plugin-transform-es2015-classes "^6.23.0" 652 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 653 | babel-plugin-transform-es2015-destructuring "^6.23.0" 654 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 655 | babel-plugin-transform-es2015-for-of "^6.23.0" 656 | babel-plugin-transform-es2015-function-name "^6.22.0" 657 | babel-plugin-transform-es2015-literals "^6.22.0" 658 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 659 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 660 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 661 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 662 | babel-plugin-transform-es2015-object-super "^6.22.0" 663 | babel-plugin-transform-es2015-parameters "^6.23.0" 664 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 665 | babel-plugin-transform-es2015-spread "^6.22.0" 666 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 667 | babel-plugin-transform-es2015-template-literals "^6.22.0" 668 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 669 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 670 | babel-plugin-transform-exponentiation-operator "^6.22.0" 671 | babel-plugin-transform-regenerator "^6.22.0" 672 | browserslist "^2.1.2" 673 | invariant "^2.2.2" 674 | semver "^5.3.0" 675 | 676 | babel-register@^6.26.0: 677 | version "6.26.0" 678 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 679 | dependencies: 680 | babel-core "^6.26.0" 681 | babel-runtime "^6.26.0" 682 | core-js "^2.5.0" 683 | home-or-tmp "^2.0.0" 684 | lodash "^4.17.4" 685 | mkdirp "^0.5.1" 686 | source-map-support "^0.4.15" 687 | 688 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 689 | version "6.26.0" 690 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 691 | dependencies: 692 | core-js "^2.4.0" 693 | regenerator-runtime "^0.11.0" 694 | 695 | babel-template@^6.24.1, babel-template@^6.26.0: 696 | version "6.26.0" 697 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 698 | dependencies: 699 | babel-runtime "^6.26.0" 700 | babel-traverse "^6.26.0" 701 | babel-types "^6.26.0" 702 | babylon "^6.18.0" 703 | lodash "^4.17.4" 704 | 705 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 706 | version "6.26.0" 707 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 708 | dependencies: 709 | babel-code-frame "^6.26.0" 710 | babel-messages "^6.23.0" 711 | babel-runtime "^6.26.0" 712 | babel-types "^6.26.0" 713 | babylon "^6.18.0" 714 | debug "^2.6.8" 715 | globals "^9.18.0" 716 | invariant "^2.2.2" 717 | lodash "^4.17.4" 718 | 719 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 720 | version "6.26.0" 721 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 722 | dependencies: 723 | babel-runtime "^6.26.0" 724 | esutils "^2.0.2" 725 | lodash "^4.17.4" 726 | to-fast-properties "^1.0.3" 727 | 728 | babylon@7.0.0-beta.40, babylon@^7.0.0-beta.40: 729 | version "7.0.0-beta.40" 730 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.40.tgz#91fc8cd56d5eb98b28e6fde41045f2957779940a" 731 | 732 | babylon@^6.18.0: 733 | version "6.18.0" 734 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 735 | 736 | balanced-match@^1.0.0: 737 | version "1.0.0" 738 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 739 | 740 | bcrypt-pbkdf@^1.0.0: 741 | version "1.0.1" 742 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 743 | dependencies: 744 | tweetnacl "^0.14.3" 745 | 746 | binary-extensions@^1.0.0: 747 | version "1.11.0" 748 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 749 | 750 | block-stream@*: 751 | version "0.0.9" 752 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 753 | dependencies: 754 | inherits "~2.0.0" 755 | 756 | blockhash@^0.2.0: 757 | version "0.2.0" 758 | resolved "https://registry.yarnpkg.com/blockhash/-/blockhash-0.2.0.tgz#7c979ae5017fd252e819fbe761b096703942ccf7" 759 | 760 | bmp-js@0.0.3: 761 | version "0.0.3" 762 | resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.0.3.tgz#64113e9c7cf1202b376ed607bf30626ebe57b18a" 763 | 764 | boom@2.x.x: 765 | version "2.10.1" 766 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 767 | dependencies: 768 | hoek "2.x.x" 769 | 770 | brace-expansion@^1.1.7: 771 | version "1.1.11" 772 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 773 | dependencies: 774 | balanced-match "^1.0.0" 775 | concat-map "0.0.1" 776 | 777 | braces@^1.8.2: 778 | version "1.8.5" 779 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 780 | dependencies: 781 | expand-range "^1.8.1" 782 | preserve "^0.2.0" 783 | repeat-element "^1.1.2" 784 | 785 | browserslist@^2.1.2: 786 | version "2.11.3" 787 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" 788 | dependencies: 789 | caniuse-lite "^1.0.30000792" 790 | electron-to-chromium "^1.3.30" 791 | 792 | builtin-modules@^1.0.0: 793 | version "1.1.1" 794 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 795 | 796 | caller-path@^0.1.0: 797 | version "0.1.0" 798 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 799 | dependencies: 800 | callsites "^0.2.0" 801 | 802 | callsites@^0.2.0: 803 | version "0.2.0" 804 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 805 | 806 | camelcase-keys@^2.0.0: 807 | version "2.1.0" 808 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 809 | dependencies: 810 | camelcase "^2.0.0" 811 | map-obj "^1.0.0" 812 | 813 | camelcase@^2.0.0: 814 | version "2.1.1" 815 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 816 | 817 | caniuse-lite@^1.0.30000792: 818 | version "1.0.30000814" 819 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000814.tgz#73eb6925ac2e54d495218f1ea0007da3940e488b" 820 | 821 | caseless@~0.12.0: 822 | version "0.12.0" 823 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 824 | 825 | chalk@^1.1.3: 826 | version "1.1.3" 827 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 828 | dependencies: 829 | ansi-styles "^2.2.1" 830 | escape-string-regexp "^1.0.2" 831 | has-ansi "^2.0.0" 832 | strip-ansi "^3.0.0" 833 | supports-color "^2.0.0" 834 | 835 | chalk@^2.0.0, chalk@^2.1.0: 836 | version "2.3.2" 837 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" 838 | dependencies: 839 | ansi-styles "^3.2.1" 840 | escape-string-regexp "^1.0.5" 841 | supports-color "^5.3.0" 842 | 843 | chardet@^0.4.0: 844 | version "0.4.2" 845 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 846 | 847 | chokidar@^1.6.1: 848 | version "1.7.0" 849 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 850 | dependencies: 851 | anymatch "^1.3.0" 852 | async-each "^1.0.0" 853 | glob-parent "^2.0.0" 854 | inherits "^2.0.1" 855 | is-binary-path "^1.0.0" 856 | is-glob "^2.0.0" 857 | path-is-absolute "^1.0.0" 858 | readdirp "^2.0.0" 859 | optionalDependencies: 860 | fsevents "^1.0.0" 861 | 862 | circular-json@^0.3.1: 863 | version "0.3.3" 864 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 865 | 866 | cli-cursor@^2.1.0: 867 | version "2.1.0" 868 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 869 | dependencies: 870 | restore-cursor "^2.0.0" 871 | 872 | cli-width@^2.0.0: 873 | version "2.2.0" 874 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 875 | 876 | co@^4.6.0: 877 | version "4.6.0" 878 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 879 | 880 | code-point-at@^1.0.0: 881 | version "1.1.0" 882 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 883 | 884 | color-convert@^1.9.0: 885 | version "1.9.1" 886 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 887 | dependencies: 888 | color-name "^1.1.1" 889 | 890 | color-name@^1.1.1: 891 | version "1.1.3" 892 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 893 | 894 | colors@^1.2.1: 895 | version "1.2.1" 896 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.2.1.tgz#f4a3d302976aaf042356ba1ade3b1a2c62d9d794" 897 | 898 | combined-stream@^1.0.5, combined-stream@~1.0.5: 899 | version "1.0.6" 900 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 901 | dependencies: 902 | delayed-stream "~1.0.0" 903 | 904 | commander@^2.11.0: 905 | version "2.15.0" 906 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.0.tgz#ad2a23a1c3b036e392469b8012cec6b33b4c1322" 907 | 908 | concat-map@0.0.1: 909 | version "0.0.1" 910 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 911 | 912 | concat-stream@1.6.0: 913 | version "1.6.0" 914 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 915 | dependencies: 916 | inherits "^2.0.3" 917 | readable-stream "^2.2.2" 918 | typedarray "^0.0.6" 919 | 920 | concat-stream@^1.6.0: 921 | version "1.6.1" 922 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.1.tgz#261b8f518301f1d834e36342b9fea095d2620a26" 923 | dependencies: 924 | inherits "^2.0.3" 925 | readable-stream "^2.2.2" 926 | typedarray "^0.0.6" 927 | 928 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 929 | version "1.1.0" 930 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 931 | 932 | convert-source-map@^1.5.0: 933 | version "1.5.1" 934 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 935 | 936 | core-js@^2.4.0, core-js@^2.5.0: 937 | version "2.5.3" 938 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 939 | 940 | core-util-is@1.0.2, core-util-is@~1.0.0: 941 | version "1.0.2" 942 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 943 | 944 | cross-spawn@^5.1.0: 945 | version "5.1.0" 946 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 947 | dependencies: 948 | lru-cache "^4.0.1" 949 | shebang-command "^1.2.0" 950 | which "^1.2.9" 951 | 952 | cryptiles@2.x.x: 953 | version "2.0.5" 954 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 955 | dependencies: 956 | boom "2.x.x" 957 | 958 | currently-unhandled@^0.4.1: 959 | version "0.4.1" 960 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 961 | dependencies: 962 | array-find-index "^1.0.1" 963 | 964 | dashdash@^1.12.0: 965 | version "1.14.1" 966 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 967 | dependencies: 968 | assert-plus "^1.0.0" 969 | 970 | debug@2.6.9, debug@^2.2.0, debug@^2.6.8: 971 | version "2.6.9" 972 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 973 | dependencies: 974 | ms "2.0.0" 975 | 976 | debug@^3.0.1, debug@^3.1.0: 977 | version "3.1.0" 978 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 979 | dependencies: 980 | ms "2.0.0" 981 | 982 | decamelize@^1.1.2: 983 | version "1.2.0" 984 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 985 | 986 | deep-extend@~0.4.0: 987 | version "0.4.2" 988 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 989 | 990 | deep-is@~0.1.3: 991 | version "0.1.3" 992 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 993 | 994 | del@^2.0.2: 995 | version "2.2.2" 996 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 997 | dependencies: 998 | globby "^5.0.0" 999 | is-path-cwd "^1.0.0" 1000 | is-path-in-cwd "^1.0.0" 1001 | object-assign "^4.0.1" 1002 | pify "^2.0.0" 1003 | pinkie-promise "^2.0.0" 1004 | rimraf "^2.2.8" 1005 | 1006 | delayed-stream@~1.0.0: 1007 | version "1.0.0" 1008 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1009 | 1010 | delegates@^1.0.0: 1011 | version "1.0.0" 1012 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1013 | 1014 | detect-indent@^4.0.0: 1015 | version "4.0.0" 1016 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1017 | dependencies: 1018 | repeating "^2.0.0" 1019 | 1020 | detect-libc@^1.0.2: 1021 | version "1.0.3" 1022 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1023 | 1024 | doctrine@^2.1.0: 1025 | version "2.1.0" 1026 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1027 | dependencies: 1028 | esutils "^2.0.2" 1029 | 1030 | ecc-jsbn@~0.1.1: 1031 | version "0.1.1" 1032 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1033 | dependencies: 1034 | jsbn "~0.1.0" 1035 | 1036 | electron-to-chromium@^1.3.30: 1037 | version "1.3.37" 1038 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.37.tgz#4a92734e0044c8cf0b1553be57eae21a4c6e5fab" 1039 | 1040 | error-ex@^1.2.0: 1041 | version "1.3.1" 1042 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1043 | dependencies: 1044 | is-arrayish "^0.2.1" 1045 | 1046 | es6-promise@^4.0.3: 1047 | version "4.2.4" 1048 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.4.tgz#dc4221c2b16518760bd8c39a52d8f356fc00ed29" 1049 | 1050 | es6-promisify@^5.0.0: 1051 | version "5.0.0" 1052 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 1053 | dependencies: 1054 | es6-promise "^4.0.3" 1055 | 1056 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1057 | version "1.0.5" 1058 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1059 | 1060 | eslint-config-75team@^1.0.22: 1061 | version "1.0.22" 1062 | resolved "https://registry.yarnpkg.com/eslint-config-75team/-/eslint-config-75team-1.0.22.tgz#bf2a9fbbd56830ceda4401b0ff96785a5444eafb" 1063 | dependencies: 1064 | babel-eslint "^8.0.1" 1065 | eslint-config-airbnb-base "^12.1.0" 1066 | 1067 | eslint-config-airbnb-base@^12.1.0: 1068 | version "12.1.0" 1069 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944" 1070 | dependencies: 1071 | eslint-restricted-globals "^0.1.1" 1072 | 1073 | eslint-restricted-globals@^0.1.1: 1074 | version "0.1.1" 1075 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1076 | 1077 | eslint-scope@^3.7.1, eslint-scope@~3.7.1: 1078 | version "3.7.1" 1079 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1080 | dependencies: 1081 | esrecurse "^4.1.0" 1082 | estraverse "^4.1.1" 1083 | 1084 | eslint-visitor-keys@^1.0.0: 1085 | version "1.0.0" 1086 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1087 | 1088 | eslint@^4.18.1: 1089 | version "4.18.2" 1090 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.2.tgz#0f81267ad1012e7d2051e186a9004cc2267b8d45" 1091 | dependencies: 1092 | ajv "^5.3.0" 1093 | babel-code-frame "^6.22.0" 1094 | chalk "^2.1.0" 1095 | concat-stream "^1.6.0" 1096 | cross-spawn "^5.1.0" 1097 | debug "^3.1.0" 1098 | doctrine "^2.1.0" 1099 | eslint-scope "^3.7.1" 1100 | eslint-visitor-keys "^1.0.0" 1101 | espree "^3.5.2" 1102 | esquery "^1.0.0" 1103 | esutils "^2.0.2" 1104 | file-entry-cache "^2.0.0" 1105 | functional-red-black-tree "^1.0.1" 1106 | glob "^7.1.2" 1107 | globals "^11.0.1" 1108 | ignore "^3.3.3" 1109 | imurmurhash "^0.1.4" 1110 | inquirer "^3.0.6" 1111 | is-resolvable "^1.0.0" 1112 | js-yaml "^3.9.1" 1113 | json-stable-stringify-without-jsonify "^1.0.1" 1114 | levn "^0.3.0" 1115 | lodash "^4.17.4" 1116 | minimatch "^3.0.2" 1117 | mkdirp "^0.5.1" 1118 | natural-compare "^1.4.0" 1119 | optionator "^0.8.2" 1120 | path-is-inside "^1.0.2" 1121 | pluralize "^7.0.0" 1122 | progress "^2.0.0" 1123 | require-uncached "^1.0.3" 1124 | semver "^5.3.0" 1125 | strip-ansi "^4.0.0" 1126 | strip-json-comments "~2.0.1" 1127 | table "4.0.2" 1128 | text-table "~0.2.0" 1129 | 1130 | espree@^3.5.2: 1131 | version "3.5.4" 1132 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 1133 | dependencies: 1134 | acorn "^5.5.0" 1135 | acorn-jsx "^3.0.0" 1136 | 1137 | esprima@^4.0.0: 1138 | version "4.0.0" 1139 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1140 | 1141 | esquery@^1.0.0: 1142 | version "1.0.0" 1143 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1144 | dependencies: 1145 | estraverse "^4.0.0" 1146 | 1147 | esrecurse@^4.1.0: 1148 | version "4.2.1" 1149 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1150 | dependencies: 1151 | estraverse "^4.1.0" 1152 | 1153 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1154 | version "4.2.0" 1155 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1156 | 1157 | esutils@^2.0.2: 1158 | version "2.0.2" 1159 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1160 | 1161 | expand-brackets@^0.1.4: 1162 | version "0.1.5" 1163 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1164 | dependencies: 1165 | is-posix-bracket "^0.1.0" 1166 | 1167 | expand-range@^1.8.1: 1168 | version "1.8.2" 1169 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1170 | dependencies: 1171 | fill-range "^2.1.0" 1172 | 1173 | extend@~3.0.0: 1174 | version "3.0.1" 1175 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1176 | 1177 | external-editor@^2.0.4: 1178 | version "2.1.0" 1179 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1180 | dependencies: 1181 | chardet "^0.4.0" 1182 | iconv-lite "^0.4.17" 1183 | tmp "^0.0.33" 1184 | 1185 | extglob@^0.3.1: 1186 | version "0.3.2" 1187 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1188 | dependencies: 1189 | is-extglob "^1.0.0" 1190 | 1191 | extract-zip@^1.6.5: 1192 | version "1.6.6" 1193 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.6.tgz#1290ede8d20d0872b429fd3f351ca128ec5ef85c" 1194 | dependencies: 1195 | concat-stream "1.6.0" 1196 | debug "2.6.9" 1197 | mkdirp "0.5.0" 1198 | yauzl "2.4.1" 1199 | 1200 | extsprintf@1.3.0: 1201 | version "1.3.0" 1202 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1203 | 1204 | extsprintf@^1.2.0: 1205 | version "1.4.0" 1206 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1207 | 1208 | fast-deep-equal@^1.0.0: 1209 | version "1.1.0" 1210 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1211 | 1212 | fast-json-stable-stringify@^2.0.0: 1213 | version "2.0.0" 1214 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1215 | 1216 | fast-levenshtein@~2.0.4: 1217 | version "2.0.6" 1218 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1219 | 1220 | fd-slicer@~1.0.1: 1221 | version "1.0.1" 1222 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 1223 | dependencies: 1224 | pend "~1.2.0" 1225 | 1226 | figures@^2.0.0: 1227 | version "2.0.0" 1228 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1229 | dependencies: 1230 | escape-string-regexp "^1.0.5" 1231 | 1232 | file-entry-cache@^2.0.0: 1233 | version "2.0.0" 1234 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1235 | dependencies: 1236 | flat-cache "^1.2.1" 1237 | object-assign "^4.0.1" 1238 | 1239 | file-type@^3.0.0: 1240 | version "3.9.0" 1241 | resolved "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" 1242 | 1243 | filename-regex@^2.0.0: 1244 | version "2.0.1" 1245 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1246 | 1247 | fill-range@^2.1.0: 1248 | version "2.2.3" 1249 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1250 | dependencies: 1251 | is-number "^2.1.0" 1252 | isobject "^2.0.0" 1253 | randomatic "^1.1.3" 1254 | repeat-element "^1.1.2" 1255 | repeat-string "^1.5.2" 1256 | 1257 | find-up@^1.0.0: 1258 | version "1.1.2" 1259 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1260 | dependencies: 1261 | path-exists "^2.0.0" 1262 | pinkie-promise "^2.0.0" 1263 | 1264 | flat-cache@^1.2.1: 1265 | version "1.3.0" 1266 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1267 | dependencies: 1268 | circular-json "^0.3.1" 1269 | del "^2.0.2" 1270 | graceful-fs "^4.1.2" 1271 | write "^0.2.1" 1272 | 1273 | for-in@^1.0.1: 1274 | version "1.0.2" 1275 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1276 | 1277 | for-own@^0.1.4: 1278 | version "0.1.5" 1279 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1280 | dependencies: 1281 | for-in "^1.0.1" 1282 | 1283 | forever-agent@~0.6.1: 1284 | version "0.6.1" 1285 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1286 | 1287 | form-data@~2.1.1: 1288 | version "2.1.4" 1289 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1290 | dependencies: 1291 | asynckit "^0.4.0" 1292 | combined-stream "^1.0.5" 1293 | mime-types "^2.1.12" 1294 | 1295 | fs-readdir-recursive@^1.0.0: 1296 | version "1.1.0" 1297 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1298 | 1299 | fs.realpath@^1.0.0: 1300 | version "1.0.0" 1301 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1302 | 1303 | fsevents@^1.0.0: 1304 | version "1.1.3" 1305 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1306 | dependencies: 1307 | nan "^2.3.0" 1308 | node-pre-gyp "^0.6.39" 1309 | 1310 | fstream-ignore@^1.0.5: 1311 | version "1.0.5" 1312 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1313 | dependencies: 1314 | fstream "^1.0.0" 1315 | inherits "2" 1316 | minimatch "^3.0.0" 1317 | 1318 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1319 | version "1.0.11" 1320 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1321 | dependencies: 1322 | graceful-fs "^4.1.2" 1323 | inherits "~2.0.0" 1324 | mkdirp ">=0.5 0" 1325 | rimraf "2" 1326 | 1327 | functional-red-black-tree@^1.0.1: 1328 | version "1.0.1" 1329 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1330 | 1331 | gauge@~2.7.3: 1332 | version "2.7.4" 1333 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1334 | dependencies: 1335 | aproba "^1.0.3" 1336 | console-control-strings "^1.0.0" 1337 | has-unicode "^2.0.0" 1338 | object-assign "^4.1.0" 1339 | signal-exit "^3.0.0" 1340 | string-width "^1.0.1" 1341 | strip-ansi "^3.0.1" 1342 | wide-align "^1.1.0" 1343 | 1344 | get-stdin@^4.0.1: 1345 | version "4.0.1" 1346 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1347 | 1348 | getpass@^0.1.1: 1349 | version "0.1.7" 1350 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1351 | dependencies: 1352 | assert-plus "^1.0.0" 1353 | 1354 | glob-base@^0.3.0: 1355 | version "0.3.0" 1356 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1357 | dependencies: 1358 | glob-parent "^2.0.0" 1359 | is-glob "^2.0.0" 1360 | 1361 | glob-parent@^2.0.0: 1362 | version "2.0.0" 1363 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1364 | dependencies: 1365 | is-glob "^2.0.0" 1366 | 1367 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1368 | version "7.1.2" 1369 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1370 | dependencies: 1371 | fs.realpath "^1.0.0" 1372 | inflight "^1.0.4" 1373 | inherits "2" 1374 | minimatch "^3.0.4" 1375 | once "^1.3.0" 1376 | path-is-absolute "^1.0.0" 1377 | 1378 | globals@^11.0.1, globals@^11.1.0: 1379 | version "11.3.0" 1380 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0" 1381 | 1382 | globals@^9.18.0: 1383 | version "9.18.0" 1384 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1385 | 1386 | globby@^5.0.0: 1387 | version "5.0.0" 1388 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1389 | dependencies: 1390 | array-union "^1.0.1" 1391 | arrify "^1.0.0" 1392 | glob "^7.0.3" 1393 | object-assign "^4.0.1" 1394 | pify "^2.0.0" 1395 | pinkie-promise "^2.0.0" 1396 | 1397 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1398 | version "4.1.11" 1399 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1400 | 1401 | hamming-distance@^1.0.0: 1402 | version "1.0.0" 1403 | resolved "https://registry.yarnpkg.com/hamming-distance/-/hamming-distance-1.0.0.tgz#39bfa46c61f39e87421e4035a1be4f725dd7b931" 1404 | 1405 | har-schema@^1.0.5: 1406 | version "1.0.5" 1407 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1408 | 1409 | har-validator@~4.2.1: 1410 | version "4.2.1" 1411 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1412 | dependencies: 1413 | ajv "^4.9.1" 1414 | har-schema "^1.0.5" 1415 | 1416 | has-ansi@^2.0.0: 1417 | version "2.0.0" 1418 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1419 | dependencies: 1420 | ansi-regex "^2.0.0" 1421 | 1422 | has-flag@^3.0.0: 1423 | version "3.0.0" 1424 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1425 | 1426 | has-unicode@^2.0.0: 1427 | version "2.0.1" 1428 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1429 | 1430 | hawk@3.1.3, hawk@~3.1.3: 1431 | version "3.1.3" 1432 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1433 | dependencies: 1434 | boom "2.x.x" 1435 | cryptiles "2.x.x" 1436 | hoek "2.x.x" 1437 | sntp "1.x.x" 1438 | 1439 | hoek@2.x.x: 1440 | version "2.16.3" 1441 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1442 | 1443 | home-or-tmp@^2.0.0: 1444 | version "2.0.0" 1445 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1446 | dependencies: 1447 | os-homedir "^1.0.0" 1448 | os-tmpdir "^1.0.1" 1449 | 1450 | hosted-git-info@^2.1.4: 1451 | version "2.6.0" 1452 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 1453 | 1454 | http-signature@~1.1.0: 1455 | version "1.1.1" 1456 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1457 | dependencies: 1458 | assert-plus "^0.2.0" 1459 | jsprim "^1.2.2" 1460 | sshpk "^1.7.0" 1461 | 1462 | https-proxy-agent@^2.1.0: 1463 | version "2.2.0" 1464 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.0.tgz#7fbba856be8cd677986f42ebd3664f6317257887" 1465 | dependencies: 1466 | agent-base "^4.1.0" 1467 | debug "^3.1.0" 1468 | 1469 | iconv-lite@^0.4.17: 1470 | version "0.4.19" 1471 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1472 | 1473 | ignore@^3.3.3: 1474 | version "3.3.7" 1475 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1476 | 1477 | image-type@^2.1.0: 1478 | version "2.1.0" 1479 | resolved "https://registry.yarnpkg.com/image-type/-/image-type-2.1.0.tgz#976f2388176447dca0d23317c275ba4875a35d02" 1480 | dependencies: 1481 | file-type "^3.0.0" 1482 | meow "^3.3.0" 1483 | 1484 | imghash@^0.0.3: 1485 | version "0.0.3" 1486 | resolved "https://registry.yarnpkg.com/imghash/-/imghash-0.0.3.tgz#e4c33949e4f6990684194bd3a7ef89acb887e5d5" 1487 | dependencies: 1488 | blockhash "^0.2.0" 1489 | bmp-js "0.0.3" 1490 | image-type "^2.1.0" 1491 | jpeg-js "^0.1.1" 1492 | png-js "^0.1.1" 1493 | 1494 | imurmurhash@^0.1.4: 1495 | version "0.1.4" 1496 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1497 | 1498 | indent-string@^2.1.0: 1499 | version "2.1.0" 1500 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1501 | dependencies: 1502 | repeating "^2.0.0" 1503 | 1504 | inflight@^1.0.4: 1505 | version "1.0.6" 1506 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1507 | dependencies: 1508 | once "^1.3.0" 1509 | wrappy "1" 1510 | 1511 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1512 | version "2.0.3" 1513 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1514 | 1515 | ini@~1.3.0: 1516 | version "1.3.5" 1517 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1518 | 1519 | inquirer@^3.0.6: 1520 | version "3.3.0" 1521 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1522 | dependencies: 1523 | ansi-escapes "^3.0.0" 1524 | chalk "^2.0.0" 1525 | cli-cursor "^2.1.0" 1526 | cli-width "^2.0.0" 1527 | external-editor "^2.0.4" 1528 | figures "^2.0.0" 1529 | lodash "^4.3.0" 1530 | mute-stream "0.0.7" 1531 | run-async "^2.2.0" 1532 | rx-lite "^4.0.8" 1533 | rx-lite-aggregates "^4.0.8" 1534 | string-width "^2.1.0" 1535 | strip-ansi "^4.0.0" 1536 | through "^2.3.6" 1537 | 1538 | invariant@^2.2.0, invariant@^2.2.2: 1539 | version "2.2.4" 1540 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1541 | dependencies: 1542 | loose-envify "^1.0.0" 1543 | 1544 | is-arrayish@^0.2.1: 1545 | version "0.2.1" 1546 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1547 | 1548 | is-binary-path@^1.0.0: 1549 | version "1.0.1" 1550 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1551 | dependencies: 1552 | binary-extensions "^1.0.0" 1553 | 1554 | is-buffer@^1.1.5: 1555 | version "1.1.6" 1556 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1557 | 1558 | is-builtin-module@^1.0.0: 1559 | version "1.0.0" 1560 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1561 | dependencies: 1562 | builtin-modules "^1.0.0" 1563 | 1564 | is-dotfile@^1.0.0: 1565 | version "1.0.3" 1566 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1567 | 1568 | is-equal-shallow@^0.1.3: 1569 | version "0.1.3" 1570 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1571 | dependencies: 1572 | is-primitive "^2.0.0" 1573 | 1574 | is-extendable@^0.1.1: 1575 | version "0.1.1" 1576 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1577 | 1578 | is-extglob@^1.0.0: 1579 | version "1.0.0" 1580 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1581 | 1582 | is-finite@^1.0.0: 1583 | version "1.0.2" 1584 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1585 | dependencies: 1586 | number-is-nan "^1.0.0" 1587 | 1588 | is-fullwidth-code-point@^1.0.0: 1589 | version "1.0.0" 1590 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1591 | dependencies: 1592 | number-is-nan "^1.0.0" 1593 | 1594 | is-fullwidth-code-point@^2.0.0: 1595 | version "2.0.0" 1596 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1597 | 1598 | is-glob@^2.0.0, is-glob@^2.0.1: 1599 | version "2.0.1" 1600 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1601 | dependencies: 1602 | is-extglob "^1.0.0" 1603 | 1604 | is-number@^2.1.0: 1605 | version "2.1.0" 1606 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1607 | dependencies: 1608 | kind-of "^3.0.2" 1609 | 1610 | is-number@^3.0.0: 1611 | version "3.0.0" 1612 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1613 | dependencies: 1614 | kind-of "^3.0.2" 1615 | 1616 | is-path-cwd@^1.0.0: 1617 | version "1.0.0" 1618 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1619 | 1620 | is-path-in-cwd@^1.0.0: 1621 | version "1.0.0" 1622 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1623 | dependencies: 1624 | is-path-inside "^1.0.0" 1625 | 1626 | is-path-inside@^1.0.0: 1627 | version "1.0.1" 1628 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1629 | dependencies: 1630 | path-is-inside "^1.0.1" 1631 | 1632 | is-posix-bracket@^0.1.0: 1633 | version "0.1.1" 1634 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1635 | 1636 | is-primitive@^2.0.0: 1637 | version "2.0.0" 1638 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1639 | 1640 | is-promise@^2.1.0: 1641 | version "2.1.0" 1642 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1643 | 1644 | is-resolvable@^1.0.0: 1645 | version "1.1.0" 1646 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 1647 | 1648 | is-typedarray@~1.0.0: 1649 | version "1.0.0" 1650 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1651 | 1652 | is-utf8@^0.2.0: 1653 | version "0.2.1" 1654 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1655 | 1656 | isarray@1.0.0, isarray@~1.0.0: 1657 | version "1.0.0" 1658 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1659 | 1660 | isexe@^2.0.0: 1661 | version "2.0.0" 1662 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1663 | 1664 | isobject@^2.0.0: 1665 | version "2.1.0" 1666 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1667 | dependencies: 1668 | isarray "1.0.0" 1669 | 1670 | isstream@~0.1.2: 1671 | version "0.1.2" 1672 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1673 | 1674 | jpeg-js@^0.1.1: 1675 | version "0.1.2" 1676 | resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.1.2.tgz#135b992c0575c985cfa0f494a3227ed238583ece" 1677 | 1678 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1679 | version "3.0.2" 1680 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1681 | 1682 | js-yaml@^3.9.1: 1683 | version "3.11.0" 1684 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 1685 | dependencies: 1686 | argparse "^1.0.7" 1687 | esprima "^4.0.0" 1688 | 1689 | jsbn@~0.1.0: 1690 | version "0.1.1" 1691 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1692 | 1693 | jsesc@^1.3.0: 1694 | version "1.3.0" 1695 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1696 | 1697 | jsesc@^2.5.1: 1698 | version "2.5.1" 1699 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" 1700 | 1701 | jsesc@~0.5.0: 1702 | version "0.5.0" 1703 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1704 | 1705 | json-schema-traverse@^0.3.0: 1706 | version "0.3.1" 1707 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1708 | 1709 | json-schema@0.2.3: 1710 | version "0.2.3" 1711 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1712 | 1713 | json-stable-stringify-without-jsonify@^1.0.1: 1714 | version "1.0.1" 1715 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1716 | 1717 | json-stable-stringify@^1.0.1: 1718 | version "1.0.1" 1719 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1720 | dependencies: 1721 | jsonify "~0.0.0" 1722 | 1723 | json-stringify-safe@~5.0.1: 1724 | version "5.0.1" 1725 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1726 | 1727 | json5@^0.5.1: 1728 | version "0.5.1" 1729 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1730 | 1731 | jsonify@~0.0.0: 1732 | version "0.0.0" 1733 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1734 | 1735 | jsprim@^1.2.2: 1736 | version "1.4.1" 1737 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1738 | dependencies: 1739 | assert-plus "1.0.0" 1740 | extsprintf "1.3.0" 1741 | json-schema "0.2.3" 1742 | verror "1.10.0" 1743 | 1744 | kind-of@^3.0.2: 1745 | version "3.2.2" 1746 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1747 | dependencies: 1748 | is-buffer "^1.1.5" 1749 | 1750 | kind-of@^4.0.0: 1751 | version "4.0.0" 1752 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1753 | dependencies: 1754 | is-buffer "^1.1.5" 1755 | 1756 | levn@^0.3.0, levn@~0.3.0: 1757 | version "0.3.0" 1758 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1759 | dependencies: 1760 | prelude-ls "~1.1.2" 1761 | type-check "~0.3.2" 1762 | 1763 | load-json-file@^1.0.0: 1764 | version "1.1.0" 1765 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1766 | dependencies: 1767 | graceful-fs "^4.1.2" 1768 | parse-json "^2.2.0" 1769 | pify "^2.0.0" 1770 | pinkie-promise "^2.0.0" 1771 | strip-bom "^2.0.0" 1772 | 1773 | lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 1774 | version "4.17.5" 1775 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 1776 | 1777 | loose-envify@^1.0.0: 1778 | version "1.3.1" 1779 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1780 | dependencies: 1781 | js-tokens "^3.0.0" 1782 | 1783 | loud-rejection@^1.0.0: 1784 | version "1.6.0" 1785 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1786 | dependencies: 1787 | currently-unhandled "^0.4.1" 1788 | signal-exit "^3.0.0" 1789 | 1790 | lru-cache@^4.0.1: 1791 | version "4.1.2" 1792 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 1793 | dependencies: 1794 | pseudomap "^1.0.2" 1795 | yallist "^2.1.2" 1796 | 1797 | map-obj@^1.0.0, map-obj@^1.0.1: 1798 | version "1.0.1" 1799 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1800 | 1801 | meow@^3.3.0: 1802 | version "3.7.0" 1803 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1804 | dependencies: 1805 | camelcase-keys "^2.0.0" 1806 | decamelize "^1.1.2" 1807 | loud-rejection "^1.0.0" 1808 | map-obj "^1.0.1" 1809 | minimist "^1.1.3" 1810 | normalize-package-data "^2.3.4" 1811 | object-assign "^4.0.1" 1812 | read-pkg-up "^1.0.1" 1813 | redent "^1.0.0" 1814 | trim-newlines "^1.0.0" 1815 | 1816 | micromatch@^2.1.5: 1817 | version "2.3.11" 1818 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1819 | dependencies: 1820 | arr-diff "^2.0.0" 1821 | array-unique "^0.2.1" 1822 | braces "^1.8.2" 1823 | expand-brackets "^0.1.4" 1824 | extglob "^0.3.1" 1825 | filename-regex "^2.0.0" 1826 | is-extglob "^1.0.0" 1827 | is-glob "^2.0.1" 1828 | kind-of "^3.0.2" 1829 | normalize-path "^2.0.1" 1830 | object.omit "^2.0.0" 1831 | parse-glob "^3.0.4" 1832 | regex-cache "^0.4.2" 1833 | 1834 | mime-db@~1.33.0: 1835 | version "1.33.0" 1836 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 1837 | 1838 | mime-types@^2.1.12, mime-types@~2.1.7: 1839 | version "2.1.18" 1840 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 1841 | dependencies: 1842 | mime-db "~1.33.0" 1843 | 1844 | mime@^1.3.4: 1845 | version "1.6.0" 1846 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 1847 | 1848 | mimic-fn@^1.0.0: 1849 | version "1.2.0" 1850 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1851 | 1852 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1853 | version "3.0.4" 1854 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1855 | dependencies: 1856 | brace-expansion "^1.1.7" 1857 | 1858 | minimist@0.0.8: 1859 | version "0.0.8" 1860 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1861 | 1862 | minimist@^1.1.3, minimist@^1.2.0: 1863 | version "1.2.0" 1864 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1865 | 1866 | mkdirp@0.5.0: 1867 | version "0.5.0" 1868 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" 1869 | dependencies: 1870 | minimist "0.0.8" 1871 | 1872 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1873 | version "0.5.1" 1874 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1875 | dependencies: 1876 | minimist "0.0.8" 1877 | 1878 | ms@2.0.0: 1879 | version "2.0.0" 1880 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1881 | 1882 | mute-stream@0.0.7: 1883 | version "0.0.7" 1884 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1885 | 1886 | nan@^2.3.0: 1887 | version "2.9.2" 1888 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.9.2.tgz#f564d75f5f8f36a6d9456cca7a6c4fe488ab7866" 1889 | 1890 | natural-compare@^1.4.0: 1891 | version "1.4.0" 1892 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1893 | 1894 | node-pre-gyp@^0.6.39: 1895 | version "0.6.39" 1896 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1897 | dependencies: 1898 | detect-libc "^1.0.2" 1899 | hawk "3.1.3" 1900 | mkdirp "^0.5.1" 1901 | nopt "^4.0.1" 1902 | npmlog "^4.0.2" 1903 | rc "^1.1.7" 1904 | request "2.81.0" 1905 | rimraf "^2.6.1" 1906 | semver "^5.3.0" 1907 | tar "^2.2.1" 1908 | tar-pack "^3.4.0" 1909 | 1910 | nopt@^4.0.1: 1911 | version "4.0.1" 1912 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1913 | dependencies: 1914 | abbrev "1" 1915 | osenv "^0.1.4" 1916 | 1917 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1918 | version "2.4.0" 1919 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1920 | dependencies: 1921 | hosted-git-info "^2.1.4" 1922 | is-builtin-module "^1.0.0" 1923 | semver "2 || 3 || 4 || 5" 1924 | validate-npm-package-license "^3.0.1" 1925 | 1926 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1927 | version "2.1.1" 1928 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1929 | dependencies: 1930 | remove-trailing-separator "^1.0.1" 1931 | 1932 | npmlog@^4.0.2: 1933 | version "4.1.2" 1934 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1935 | dependencies: 1936 | are-we-there-yet "~1.1.2" 1937 | console-control-strings "~1.1.0" 1938 | gauge "~2.7.3" 1939 | set-blocking "~2.0.0" 1940 | 1941 | number-is-nan@^1.0.0: 1942 | version "1.0.1" 1943 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1944 | 1945 | oauth-sign@~0.8.1: 1946 | version "0.8.2" 1947 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1948 | 1949 | object-assign@^4.0.1, object-assign@^4.1.0: 1950 | version "4.1.1" 1951 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1952 | 1953 | object.omit@^2.0.0: 1954 | version "2.0.1" 1955 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1956 | dependencies: 1957 | for-own "^0.1.4" 1958 | is-extendable "^0.1.1" 1959 | 1960 | once@^1.3.0, once@^1.3.3: 1961 | version "1.4.0" 1962 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1963 | dependencies: 1964 | wrappy "1" 1965 | 1966 | onetime@^2.0.0: 1967 | version "2.0.1" 1968 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1969 | dependencies: 1970 | mimic-fn "^1.0.0" 1971 | 1972 | optionator@^0.8.2: 1973 | version "0.8.2" 1974 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1975 | dependencies: 1976 | deep-is "~0.1.3" 1977 | fast-levenshtein "~2.0.4" 1978 | levn "~0.3.0" 1979 | prelude-ls "~1.1.2" 1980 | type-check "~0.3.2" 1981 | wordwrap "~1.0.0" 1982 | 1983 | os-homedir@^1.0.0: 1984 | version "1.0.2" 1985 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1986 | 1987 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 1988 | version "1.0.2" 1989 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1990 | 1991 | osenv@^0.1.4: 1992 | version "0.1.5" 1993 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1994 | dependencies: 1995 | os-homedir "^1.0.0" 1996 | os-tmpdir "^1.0.0" 1997 | 1998 | output-file-sync@^1.1.2: 1999 | version "1.1.2" 2000 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2001 | dependencies: 2002 | graceful-fs "^4.1.4" 2003 | mkdirp "^0.5.1" 2004 | object-assign "^4.1.0" 2005 | 2006 | parse-glob@^3.0.4: 2007 | version "3.0.4" 2008 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2009 | dependencies: 2010 | glob-base "^0.3.0" 2011 | is-dotfile "^1.0.0" 2012 | is-extglob "^1.0.0" 2013 | is-glob "^2.0.0" 2014 | 2015 | parse-json@^2.2.0: 2016 | version "2.2.0" 2017 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2018 | dependencies: 2019 | error-ex "^1.2.0" 2020 | 2021 | path-exists@^2.0.0: 2022 | version "2.1.0" 2023 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2024 | dependencies: 2025 | pinkie-promise "^2.0.0" 2026 | 2027 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2028 | version "1.0.1" 2029 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2030 | 2031 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2032 | version "1.0.2" 2033 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2034 | 2035 | path-type@^1.0.0: 2036 | version "1.1.0" 2037 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2038 | dependencies: 2039 | graceful-fs "^4.1.2" 2040 | pify "^2.0.0" 2041 | pinkie-promise "^2.0.0" 2042 | 2043 | pend@~1.2.0: 2044 | version "1.2.0" 2045 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 2046 | 2047 | performance-now@^0.2.0: 2048 | version "0.2.0" 2049 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2050 | 2051 | pify@^2.0.0: 2052 | version "2.3.0" 2053 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2054 | 2055 | pinkie-promise@^2.0.0: 2056 | version "2.0.1" 2057 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2058 | dependencies: 2059 | pinkie "^2.0.0" 2060 | 2061 | pinkie@^2.0.0: 2062 | version "2.0.4" 2063 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2064 | 2065 | pixelmatch@^4.0.2: 2066 | version "4.0.2" 2067 | resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" 2068 | dependencies: 2069 | pngjs "^3.0.0" 2070 | 2071 | pluralize@^7.0.0: 2072 | version "7.0.0" 2073 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2074 | 2075 | png-js@^0.1.1: 2076 | version "0.1.1" 2077 | resolved "https://registry.yarnpkg.com/png-js/-/png-js-0.1.1.tgz#1cc7c212303acabe74263ec3ac78009580242d93" 2078 | 2079 | pngjs@^3.0.0, pngjs@^3.3.2: 2080 | version "3.3.2" 2081 | resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.3.2.tgz#097c3c2a75feb223eadddea6bc9f0050cf830bc3" 2082 | 2083 | prelude-ls@~1.1.2: 2084 | version "1.1.2" 2085 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2086 | 2087 | preserve@^0.2.0: 2088 | version "0.2.0" 2089 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2090 | 2091 | private@^0.1.6, private@^0.1.7: 2092 | version "0.1.8" 2093 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2094 | 2095 | process-nextick-args@~2.0.0: 2096 | version "2.0.0" 2097 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2098 | 2099 | progress@^2.0.0: 2100 | version "2.0.0" 2101 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2102 | 2103 | proxy-from-env@^1.0.0: 2104 | version "1.0.0" 2105 | resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" 2106 | 2107 | pseudomap@^1.0.2: 2108 | version "1.0.2" 2109 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2110 | 2111 | punycode@^1.4.1: 2112 | version "1.4.1" 2113 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2114 | 2115 | puppeteer@^1.1.1: 2116 | version "1.1.1" 2117 | resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-1.1.1.tgz#adbf25e49f5ef03443c10ab8e09a954ca0c7bfee" 2118 | dependencies: 2119 | debug "^2.6.8" 2120 | extract-zip "^1.6.5" 2121 | https-proxy-agent "^2.1.0" 2122 | mime "^1.3.4" 2123 | progress "^2.0.0" 2124 | proxy-from-env "^1.0.0" 2125 | rimraf "^2.6.1" 2126 | ws "^3.0.0" 2127 | 2128 | qs@~6.4.0: 2129 | version "6.4.0" 2130 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2131 | 2132 | randomatic@^1.1.3: 2133 | version "1.1.7" 2134 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2135 | dependencies: 2136 | is-number "^3.0.0" 2137 | kind-of "^4.0.0" 2138 | 2139 | rc@^1.1.7: 2140 | version "1.2.6" 2141 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" 2142 | dependencies: 2143 | deep-extend "~0.4.0" 2144 | ini "~1.3.0" 2145 | minimist "^1.2.0" 2146 | strip-json-comments "~2.0.1" 2147 | 2148 | read-pkg-up@^1.0.1: 2149 | version "1.0.1" 2150 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2151 | dependencies: 2152 | find-up "^1.0.0" 2153 | read-pkg "^1.0.0" 2154 | 2155 | read-pkg@^1.0.0: 2156 | version "1.1.0" 2157 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2158 | dependencies: 2159 | load-json-file "^1.0.0" 2160 | normalize-package-data "^2.3.2" 2161 | path-type "^1.0.0" 2162 | 2163 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2164 | version "2.3.5" 2165 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" 2166 | dependencies: 2167 | core-util-is "~1.0.0" 2168 | inherits "~2.0.3" 2169 | isarray "~1.0.0" 2170 | process-nextick-args "~2.0.0" 2171 | safe-buffer "~5.1.1" 2172 | string_decoder "~1.0.3" 2173 | util-deprecate "~1.0.1" 2174 | 2175 | readdirp@^2.0.0: 2176 | version "2.1.0" 2177 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2178 | dependencies: 2179 | graceful-fs "^4.1.2" 2180 | minimatch "^3.0.2" 2181 | readable-stream "^2.0.2" 2182 | set-immediate-shim "^1.0.1" 2183 | 2184 | redent@^1.0.0: 2185 | version "1.0.0" 2186 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2187 | dependencies: 2188 | indent-string "^2.1.0" 2189 | strip-indent "^1.0.1" 2190 | 2191 | regenerate@^1.2.1: 2192 | version "1.3.3" 2193 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2194 | 2195 | regenerator-runtime@^0.10.5: 2196 | version "0.10.5" 2197 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2198 | 2199 | regenerator-runtime@^0.11.0: 2200 | version "0.11.1" 2201 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2202 | 2203 | regenerator-transform@^0.10.0: 2204 | version "0.10.1" 2205 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2206 | dependencies: 2207 | babel-runtime "^6.18.0" 2208 | babel-types "^6.19.0" 2209 | private "^0.1.6" 2210 | 2211 | regex-cache@^0.4.2: 2212 | version "0.4.4" 2213 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2214 | dependencies: 2215 | is-equal-shallow "^0.1.3" 2216 | 2217 | regexpu-core@^2.0.0: 2218 | version "2.0.0" 2219 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2220 | dependencies: 2221 | regenerate "^1.2.1" 2222 | regjsgen "^0.2.0" 2223 | regjsparser "^0.1.4" 2224 | 2225 | regjsgen@^0.2.0: 2226 | version "0.2.0" 2227 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2228 | 2229 | regjsparser@^0.1.4: 2230 | version "0.1.5" 2231 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2232 | dependencies: 2233 | jsesc "~0.5.0" 2234 | 2235 | remove-trailing-separator@^1.0.1: 2236 | version "1.1.0" 2237 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2238 | 2239 | repeat-element@^1.1.2: 2240 | version "1.1.2" 2241 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2242 | 2243 | repeat-string@^1.5.2: 2244 | version "1.6.1" 2245 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2246 | 2247 | repeating@^2.0.0: 2248 | version "2.0.1" 2249 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2250 | dependencies: 2251 | is-finite "^1.0.0" 2252 | 2253 | request@2.81.0: 2254 | version "2.81.0" 2255 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2256 | dependencies: 2257 | aws-sign2 "~0.6.0" 2258 | aws4 "^1.2.1" 2259 | caseless "~0.12.0" 2260 | combined-stream "~1.0.5" 2261 | extend "~3.0.0" 2262 | forever-agent "~0.6.1" 2263 | form-data "~2.1.1" 2264 | har-validator "~4.2.1" 2265 | hawk "~3.1.3" 2266 | http-signature "~1.1.0" 2267 | is-typedarray "~1.0.0" 2268 | isstream "~0.1.2" 2269 | json-stringify-safe "~5.0.1" 2270 | mime-types "~2.1.7" 2271 | oauth-sign "~0.8.1" 2272 | performance-now "^0.2.0" 2273 | qs "~6.4.0" 2274 | safe-buffer "^5.0.1" 2275 | stringstream "~0.0.4" 2276 | tough-cookie "~2.3.0" 2277 | tunnel-agent "^0.6.0" 2278 | uuid "^3.0.0" 2279 | 2280 | require-uncached@^1.0.3: 2281 | version "1.0.3" 2282 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2283 | dependencies: 2284 | caller-path "^0.1.0" 2285 | resolve-from "^1.0.0" 2286 | 2287 | resolve-from@^1.0.0: 2288 | version "1.0.1" 2289 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2290 | 2291 | restore-cursor@^2.0.0: 2292 | version "2.0.0" 2293 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2294 | dependencies: 2295 | onetime "^2.0.0" 2296 | signal-exit "^3.0.2" 2297 | 2298 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2299 | version "2.6.2" 2300 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2301 | dependencies: 2302 | glob "^7.0.5" 2303 | 2304 | run-async@^2.2.0: 2305 | version "2.3.0" 2306 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2307 | dependencies: 2308 | is-promise "^2.1.0" 2309 | 2310 | rx-lite-aggregates@^4.0.8: 2311 | version "4.0.8" 2312 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2313 | dependencies: 2314 | rx-lite "*" 2315 | 2316 | rx-lite@*, rx-lite@^4.0.8: 2317 | version "4.0.8" 2318 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2319 | 2320 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2321 | version "5.1.1" 2322 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2323 | 2324 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2325 | version "5.5.0" 2326 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2327 | 2328 | set-blocking@~2.0.0: 2329 | version "2.0.0" 2330 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2331 | 2332 | set-immediate-shim@^1.0.1: 2333 | version "1.0.1" 2334 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2335 | 2336 | shebang-command@^1.2.0: 2337 | version "1.2.0" 2338 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2339 | dependencies: 2340 | shebang-regex "^1.0.0" 2341 | 2342 | shebang-regex@^1.0.0: 2343 | version "1.0.0" 2344 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2345 | 2346 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2347 | version "3.0.2" 2348 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2349 | 2350 | slash@^1.0.0: 2351 | version "1.0.0" 2352 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2353 | 2354 | slice-ansi@1.0.0: 2355 | version "1.0.0" 2356 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2357 | dependencies: 2358 | is-fullwidth-code-point "^2.0.0" 2359 | 2360 | sntp@1.x.x: 2361 | version "1.0.9" 2362 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2363 | dependencies: 2364 | hoek "2.x.x" 2365 | 2366 | source-map-support@^0.4.15: 2367 | version "0.4.18" 2368 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2369 | dependencies: 2370 | source-map "^0.5.6" 2371 | 2372 | source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7: 2373 | version "0.5.7" 2374 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2375 | 2376 | spdx-correct@^3.0.0: 2377 | version "3.0.0" 2378 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 2379 | dependencies: 2380 | spdx-expression-parse "^3.0.0" 2381 | spdx-license-ids "^3.0.0" 2382 | 2383 | spdx-exceptions@^2.1.0: 2384 | version "2.1.0" 2385 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 2386 | 2387 | spdx-expression-parse@^3.0.0: 2388 | version "3.0.0" 2389 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2390 | dependencies: 2391 | spdx-exceptions "^2.1.0" 2392 | spdx-license-ids "^3.0.0" 2393 | 2394 | spdx-license-ids@^3.0.0: 2395 | version "3.0.0" 2396 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 2397 | 2398 | sprintf-js@~1.0.2: 2399 | version "1.0.3" 2400 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2401 | 2402 | sshpk@^1.7.0: 2403 | version "1.14.1" 2404 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 2405 | dependencies: 2406 | asn1 "~0.2.3" 2407 | assert-plus "^1.0.0" 2408 | dashdash "^1.12.0" 2409 | getpass "^0.1.1" 2410 | optionalDependencies: 2411 | bcrypt-pbkdf "^1.0.0" 2412 | ecc-jsbn "~0.1.1" 2413 | jsbn "~0.1.0" 2414 | tweetnacl "~0.14.0" 2415 | 2416 | string-width@^1.0.1, string-width@^1.0.2: 2417 | version "1.0.2" 2418 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2419 | dependencies: 2420 | code-point-at "^1.0.0" 2421 | is-fullwidth-code-point "^1.0.0" 2422 | strip-ansi "^3.0.0" 2423 | 2424 | string-width@^2.1.0, string-width@^2.1.1: 2425 | version "2.1.1" 2426 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2427 | dependencies: 2428 | is-fullwidth-code-point "^2.0.0" 2429 | strip-ansi "^4.0.0" 2430 | 2431 | string_decoder@~1.0.3: 2432 | version "1.0.3" 2433 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2434 | dependencies: 2435 | safe-buffer "~5.1.0" 2436 | 2437 | stringstream@~0.0.4: 2438 | version "0.0.5" 2439 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2440 | 2441 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2442 | version "3.0.1" 2443 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2444 | dependencies: 2445 | ansi-regex "^2.0.0" 2446 | 2447 | strip-ansi@^4.0.0: 2448 | version "4.0.0" 2449 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2450 | dependencies: 2451 | ansi-regex "^3.0.0" 2452 | 2453 | strip-bom@^2.0.0: 2454 | version "2.0.0" 2455 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2456 | dependencies: 2457 | is-utf8 "^0.2.0" 2458 | 2459 | strip-indent@^1.0.1: 2460 | version "1.0.1" 2461 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2462 | dependencies: 2463 | get-stdin "^4.0.1" 2464 | 2465 | strip-json-comments@~2.0.1: 2466 | version "2.0.1" 2467 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2468 | 2469 | supports-color@^2.0.0: 2470 | version "2.0.0" 2471 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2472 | 2473 | supports-color@^5.3.0: 2474 | version "5.3.0" 2475 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" 2476 | dependencies: 2477 | has-flag "^3.0.0" 2478 | 2479 | table@4.0.2: 2480 | version "4.0.2" 2481 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 2482 | dependencies: 2483 | ajv "^5.2.3" 2484 | ajv-keywords "^2.1.0" 2485 | chalk "^2.1.0" 2486 | lodash "^4.17.4" 2487 | slice-ansi "1.0.0" 2488 | string-width "^2.1.1" 2489 | 2490 | tar-pack@^3.4.0: 2491 | version "3.4.1" 2492 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2493 | dependencies: 2494 | debug "^2.2.0" 2495 | fstream "^1.0.10" 2496 | fstream-ignore "^1.0.5" 2497 | once "^1.3.3" 2498 | readable-stream "^2.1.4" 2499 | rimraf "^2.5.1" 2500 | tar "^2.2.1" 2501 | uid-number "^0.0.6" 2502 | 2503 | tar@^2.2.1: 2504 | version "2.2.1" 2505 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2506 | dependencies: 2507 | block-stream "*" 2508 | fstream "^1.0.2" 2509 | inherits "2" 2510 | 2511 | text-table@~0.2.0: 2512 | version "0.2.0" 2513 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2514 | 2515 | through@^2.3.6: 2516 | version "2.3.8" 2517 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2518 | 2519 | tmp@^0.0.33: 2520 | version "0.0.33" 2521 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2522 | dependencies: 2523 | os-tmpdir "~1.0.2" 2524 | 2525 | to-fast-properties@^1.0.3: 2526 | version "1.0.3" 2527 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2528 | 2529 | to-fast-properties@^2.0.0: 2530 | version "2.0.0" 2531 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2532 | 2533 | tough-cookie@~2.3.0: 2534 | version "2.3.4" 2535 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 2536 | dependencies: 2537 | punycode "^1.4.1" 2538 | 2539 | trim-newlines@^1.0.0: 2540 | version "1.0.0" 2541 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2542 | 2543 | trim-right@^1.0.1: 2544 | version "1.0.1" 2545 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2546 | 2547 | tunnel-agent@^0.6.0: 2548 | version "0.6.0" 2549 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2550 | dependencies: 2551 | safe-buffer "^5.0.1" 2552 | 2553 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2554 | version "0.14.5" 2555 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2556 | 2557 | type-check@~0.3.2: 2558 | version "0.3.2" 2559 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2560 | dependencies: 2561 | prelude-ls "~1.1.2" 2562 | 2563 | typedarray@^0.0.6: 2564 | version "0.0.6" 2565 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2566 | 2567 | uid-number@^0.0.6: 2568 | version "0.0.6" 2569 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2570 | 2571 | ultron@~1.1.0: 2572 | version "1.1.1" 2573 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" 2574 | 2575 | user-home@^1.1.1: 2576 | version "1.1.1" 2577 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2578 | 2579 | util-deprecate@~1.0.1: 2580 | version "1.0.2" 2581 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2582 | 2583 | uuid@^3.0.0: 2584 | version "3.2.1" 2585 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 2586 | 2587 | v8flags@^2.1.1: 2588 | version "2.1.1" 2589 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2590 | dependencies: 2591 | user-home "^1.1.1" 2592 | 2593 | validate-npm-package-license@^3.0.1: 2594 | version "3.0.3" 2595 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 2596 | dependencies: 2597 | spdx-correct "^3.0.0" 2598 | spdx-expression-parse "^3.0.0" 2599 | 2600 | verror@1.10.0: 2601 | version "1.10.0" 2602 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2603 | dependencies: 2604 | assert-plus "^1.0.0" 2605 | core-util-is "1.0.2" 2606 | extsprintf "^1.2.0" 2607 | 2608 | which@^1.2.9: 2609 | version "1.3.0" 2610 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2611 | dependencies: 2612 | isexe "^2.0.0" 2613 | 2614 | wide-align@^1.1.0: 2615 | version "1.1.2" 2616 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2617 | dependencies: 2618 | string-width "^1.0.2" 2619 | 2620 | wordwrap@~1.0.0: 2621 | version "1.0.0" 2622 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2623 | 2624 | wrappy@1: 2625 | version "1.0.2" 2626 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2627 | 2628 | write@^0.2.1: 2629 | version "0.2.1" 2630 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2631 | dependencies: 2632 | mkdirp "^0.5.1" 2633 | 2634 | ws@^3.0.0: 2635 | version "3.3.3" 2636 | resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" 2637 | dependencies: 2638 | async-limiter "~1.0.0" 2639 | safe-buffer "~5.1.0" 2640 | ultron "~1.1.0" 2641 | 2642 | yallist@^2.1.2: 2643 | version "2.1.2" 2644 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2645 | 2646 | yauzl@2.4.1: 2647 | version "2.4.1" 2648 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" 2649 | dependencies: 2650 | fd-slicer "~1.0.1" 2651 | --------------------------------------------------------------------------------