├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .mversionrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── __mocks__ ├── child_process.js ├── tmp.js └── whereis.js ├── examples └── hostname.js ├── package.json ├── src ├── Connection.js ├── Connection.test.js ├── ConnectionPool.js ├── ConnectionPool.test.js ├── commands │ ├── cd.js │ ├── cd.test.js │ ├── mkdir.js │ ├── mkdir.test.js │ ├── raw.js │ ├── raw.test.js │ ├── rm.js │ ├── rm.test.js │ ├── rsync.js │ ├── rsync.test.js │ ├── scp.js │ ├── scp.test.js │ ├── ssh.js │ ├── ssh.test.js │ ├── tar.js │ ├── tar.test.js │ ├── util.js │ └── util.test.js ├── index.js ├── remote.js ├── remote.test.js ├── util.js └── util.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "targets": { 5 | "node": "6" 6 | } 7 | }] 8 | ], 9 | "plugins": ["transform-object-rest-spread"] 10 | } 11 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: ['airbnb-base', 'prettier'], 4 | parser: 'babel-eslint', 5 | parserOptions: { 6 | ecmaVersion: 8, 7 | sourceType: 'module', 8 | }, 9 | env: { 10 | jest: true, 11 | }, 12 | rules: { 13 | 'class-methods-use-this': 'off', 14 | 'import/prefer-default-export': 'off', 15 | }, 16 | } 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /.mversionrc: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "precommit": "yarn build && git add -A", 4 | "postcommit": "git push && git push --tags", 5 | "postupdate": "npm publish . && conventional-github-releaser --preset angular" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/lib/*.js 3 | *.test.js 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 6 4 | - 8 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2017 Bergé Greg 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ 2 | # This repository has moved to [Shipit main repository](https://github.com/shipitjs/shipit) 3 | # ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ 4 | 5 | # ssh-pool 6 | [![Build Status](https://travis-ci.org/shipitjs/ssh-pool.svg?branch=master)](https://travis-ci.org/shipitjs/ssh-pool) 7 | [![Dependency Status](https://david-dm.org/shipitjs/ssh-pool.svg?theme=shields.io)](https://david-dm.org/shipitjs/ssh-pool) 8 | [![devDependency Status](https://david-dm.org/shipitjs/ssh-pool/dev-status.svg?theme=shields.io)](https://david-dm.org/shipitjs/ssh-pool#info=devDependencies) 9 | 10 | Run remote commands over a pool of server using SSH. 11 | 12 | ## Install 13 | 14 | ``` 15 | npm install ssh-pool 16 | ``` 17 | 18 | ## Usage 19 | 20 | ```js 21 | var sshPool = require('ssh-pool'); 22 | 23 | var pool = new sshPool.ConnectionPool(['user@server1', 'user@server2']); 24 | 25 | pool.run('hostname') 26 | .then(function (results) { 27 | console.log(results[0].stdout); // 'server1' 28 | console.log(results[1].stdout); // 'server2' 29 | }); 30 | ``` 31 | 32 | ### new Connection(options) 33 | 34 | Create a new connection to run command on a remote server. 35 | 36 | **Arguments:** 37 | 38 | ``` 39 | @param {object} options Options 40 | @param {string|object} options.remote Remote 41 | @param {Stream} [options.stdout] Stdout stream 42 | @param {Stream} [options.stderr] Stderr stream 43 | @param {string} [options.key] SSH key 44 | @param {function} [options.log] Log method 45 | ``` 46 | 47 | The remote can use the shorthand syntax or an object: 48 | 49 | ```js 50 | // Default user will be deploy and ssh default port. 51 | new Connection({remote: 'localhost'}); 52 | 53 | // Default ssh port will be used. 54 | new Connection({remote: 'user@localhost'}); 55 | 56 | // Custom user and custom port. 57 | new Connection({remote: 'user@localhost:22'}); 58 | 59 | // Object syntax. 60 | new Connection({remote: {user: 'user', host: 'localhost', port: 22}}); 61 | ``` 62 | 63 | The log method is used to log output directly: 64 | 65 | ```js 66 | var connection = new Connection({ 67 | remote: 'localhost', 68 | log: console.log.bind(console) 69 | }); 70 | 71 | connection.run('pwd'); 72 | 73 | // Will output: 74 | // Running "pwd" on host "localhost". 75 | // @localhost /my/directory 76 | ``` 77 | 78 | ### connection.run(command, [options], [cb]) 79 | 80 | Run a command on the remote server, you can specify custom `childProcess.exec` options. A callback or a promise can be used. 81 | 82 | **Arguments:** 83 | 84 | ``` 85 | @param {string} command Command 86 | @param {object} [options] Exec options 87 | @param {function} [cb] Callback 88 | @returns {Promise} 89 | ``` 90 | 91 | ```js 92 | connection.run('ls', {env: {NODE_ENV: 'test'}}) 93 | .then(function (result) { 94 | result.stdout; // stdout output 95 | result.stderr; // stderr output 96 | result.child; // child object 97 | }); 98 | ``` 99 | 100 | ### connection.copy(src, dest, [options], [cb]) 101 | 102 | Copy a file or a directory to a remote server, you can specify custom `childProcess.exec` options. A callback or a promise can be used. 103 | 104 | **Arguments:** 105 | 106 | ``` 107 | @param {string} src Source 108 | @param {string} dest Destination 109 | @param {object} [options] Exec Options 110 | @param {function} [cb] Callback 111 | @returns {Promise} 112 | ``` 113 | 114 | ```js 115 | connection.copy('./localfile', '/remote-file', {env: {NODE_ENV: 'test'}}) 116 | .then(function (result) { 117 | result.stdout; // stdout output 118 | result.stderr; // stderr output 119 | result.child; // child object 120 | }); 121 | ``` 122 | 123 | ### new ConnectionPool(connections, [options]) 124 | 125 | Create a new pool of connections and custom options for all connections. 126 | 127 | If you use the short syntax, connections will be automatically created, else you can use previous created connections. 128 | 129 | ```js 130 | // Use shorthand. 131 | var pool = new ConnectionPool(['server1', 'server2']); 132 | 133 | // Use previously created connections. 134 | var connection1 = new Connection({remote: 'server1'}); 135 | var connection2 = new Connection({remote: 'server2'}); 136 | var pool = new ConnectionPool([connection1, connection2]); 137 | ``` 138 | 139 | ### pool.run(command, [options], [cb]) 140 | 141 | Same as `connection.run`, except that the command is executed in parallel on each server of the pool. 142 | 143 | **Arguments:** 144 | 145 | ``` 146 | @param {string} command Command 147 | @param {object} [options] Options 148 | @param {function} [cb] Callback 149 | @returns {Promise} 150 | ``` 151 | 152 | ```js 153 | pool.run('hostname') 154 | .then(function (results) { 155 | // ... 156 | }); 157 | ``` 158 | 159 | ### pool.copy(src, dest, [options], [cb]) 160 | 161 | Same as `connection.copy`, except that the copy is done in parallel on each server of the pool. 162 | 163 | **Options:** 164 | 165 | ``` 166 | @param {object} [options.direction] Direction of copy 167 | ``` 168 | 169 | Also all exec options are supported. 170 | 171 | **Arguments:** 172 | 173 | ``` 174 | @param {string} src Source 175 | @param {string} dest Destination 176 | @param {object} options Options 177 | @param {function} [cb] Callback 178 | @returns {Promise} 179 | ``` 180 | 181 | ```js 182 | pool.copy('./localfile', '/remote-file') 183 | .then(function (results) { 184 | // ... 185 | }); 186 | ``` 187 | 188 | 189 | ## License 190 | 191 | MIT 192 | -------------------------------------------------------------------------------- /__mocks__/child_process.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-underscore-dangle */ 2 | import EventEmitter from 'events' 3 | import { Readable } from 'stream' 4 | 5 | export const exec = jest.fn((command, options, cb) => { 6 | const child = new EventEmitter() 7 | child.stderr = new Readable() 8 | child.stderr._read = jest.fn() 9 | child.stdout = new Readable() 10 | child.stdout._read = jest.fn() 11 | 12 | process.nextTick(() => { 13 | cb(null, Buffer.from('stdout'), Buffer.from('stderr')) 14 | }) 15 | 16 | return child 17 | }) 18 | -------------------------------------------------------------------------------- /__mocks__/tmp.js: -------------------------------------------------------------------------------- 1 | export const tmpName = (options, cb) => cb(null, '/tmp/foo.tar.gz') 2 | -------------------------------------------------------------------------------- /__mocks__/whereis.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-underscore-dangle */ 2 | let paths 3 | 4 | export const __setPaths__ = _paths => { 5 | paths = _paths 6 | } 7 | 8 | export default (name, cb) => { 9 | if (typeof paths[name] !== 'undefined') cb(null, paths[name]) 10 | else cb(new Error(`Could not find ${name} on your system`)) 11 | } 12 | -------------------------------------------------------------------------------- /examples/hostname.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-console */ 2 | import { ConnectionPool } from '../src' 3 | 4 | const pool = new ConnectionPool(['neoziro@localhost', 'neoziro@localhost']) 5 | 6 | pool 7 | .run('hostname', { stdout: process.stdout, stderr: process.stderr }) 8 | .then(() => { 9 | console.log('Success!') 10 | }) 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ssh-pool", 3 | "version": "1.5.0", 4 | "description": "Run remote commands over a pool of server using SSH.", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "rm -rf lib/ && babel --ignore=\"*.test.js\" src -d lib", 8 | "format": "prettier --write --no-semi --single-quote --trailing-comma all \"src/**/*.js\"", 9 | "test": "eslint . && jest --runInBand --coverage && codecov" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/shipitjs/ssh-pool.git" 14 | }, 15 | "author": "Bergé Greg ", 16 | "license": "MIT", 17 | "bugs": { 18 | "url": "https://github.com/shipitjs/ssh-pool/issues" 19 | }, 20 | "homepage": "https://github.com/shipitjs/ssh-pool", 21 | "devDependencies": { 22 | "babel-cli": "^6.24.1", 23 | "babel-eslint": "^7.2.3", 24 | "babel-plugin-transform-object-rest-spread": "^6.23.0", 25 | "babel-preset-env": "^1.6.0", 26 | "codecov": "^2.3.0", 27 | "eslint": "^4.4.1", 28 | "eslint-config-airbnb-base": "^11.3.1", 29 | "eslint-config-prettier": "^2.3.0", 30 | "eslint-plugin-import": "^2.7.0", 31 | "jest": "^20.0.4", 32 | "prettier": "^1.5.3", 33 | "std-mocks": "^1.0.1" 34 | }, 35 | "dependencies": { 36 | "stream-line-wrapper": "^0.1.1", 37 | "tmp": "^0.0.33", 38 | "whereis": "^0.4.0" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/Connection.js: -------------------------------------------------------------------------------- 1 | import { exec } from 'child_process' 2 | import path from 'path' 3 | import LineWrapper from 'stream-line-wrapper' 4 | import { tmpName as asyncTmpName } from 'tmp' 5 | import { formatRsyncCommand, checkRsyncAvailability } from './commands/rsync' 6 | import { formatSshCommand } from './commands/ssh' 7 | import { formatTarCommand } from './commands/tar' 8 | import { formatCdCommand } from './commands/cd' 9 | import { formatMkdirCommand } from './commands/mkdir' 10 | import { formatScpCommand } from './commands/scp' 11 | import { formatRawCommand } from './commands/raw' 12 | import { formatRmCommand } from './commands/rm' 13 | import { joinCommandArgs } from './commands/util' 14 | import { parseRemote, formatRemote } from './remote' 15 | import { series, deprecateV3 } from './util' 16 | 17 | const tmpName = async options => 18 | new Promise((resolve, reject) => 19 | asyncTmpName(options, (err, name) => { 20 | if (err) reject(err) 21 | else resolve(name) 22 | }), 23 | ) 24 | 25 | const defaultRunOptions = { maxBuffer: 1000 * 1024 } 26 | 27 | class Connection { 28 | /** 29 | * Initialize a new `Connection` with `options`. 30 | * 31 | * @param {object} options Options 32 | * @param {string|object} options.remote Remote 33 | * @param {Stream} [options.stdout] Stdout stream 34 | * @param {Stream} [options.stderr] Stderr stream 35 | * @param {string} [options.key] SSH key 36 | * @param {function} [options.log] Log method 37 | * @param {boolean} [options.asUser] Use a custom user to run command 38 | */ 39 | constructor(options = {}) { 40 | this.options = options 41 | this.remote = parseRemote(options.remote) 42 | this.remote.user = this.remote.user || 'deploy' 43 | } 44 | 45 | /** 46 | * Run a command remotely using SSH. 47 | * All exec options are also available. 48 | * 49 | * @see https://nodejs.org/dist/latest-v8.x/docs/api/child_process.html#child_process_child_process_exec_command_options_callback 50 | * @param {string} command Command to run 51 | * @param {object} [options] Options 52 | * @param {boolean} [options.tty] Force a TTY allocation. 53 | * @returns {Promise.} A promise with an object as result: { child, stdout, stderr } 54 | */ 55 | async run(command, { tty: ttyOption, ...cmdOptions } = {}) { 56 | let tty = ttyOption 57 | if (command.startsWith('sudo') && typeof ttyOption === 'undefined') { 58 | deprecateV3('You should set "tty" option explictly when you use "sudo".') 59 | tty = true 60 | } 61 | this.log('Running "%s" on host "%s".', command, this.remote.host) 62 | const cmd = this.buildSSHCommand(command, { tty }) 63 | return this.runLocally(cmd, cmdOptions) 64 | } 65 | 66 | /** 67 | * Run a copy command using either rsync or scp. 68 | * All exec options are also available. 69 | * 70 | * @see https://nodejs.org/dist/latest-v8.x/docs/api/child_process.html#child_process_child_process_exec_command_options_callback 71 | * @deprecated 72 | * @param {string} src Source 73 | * @param {string} dest Destination 74 | * @param {object} [options] Options 75 | * @param {boolean} [options.direction] Specify "remoteToLocal" to copy from "remote". By default it will copy from remote. 76 | * @param {string[]} [options.ignores] Specify a list of files to ignore. 77 | * @param {string[]|string} [options.rsync] Specify a set of rsync arguments. 78 | * @returns {Promise.} A promise with an object as result: { child, stdout, stderr } or { children, stdout, stderr } 79 | */ 80 | async copy(src, dest, { direction, ...options } = {}) { 81 | deprecateV3( 82 | '"copy" method is deprecated, please use "copyToRemote", "copyFromRemote", "scpCopyToRemote" or "scpCopyFromRemote".', 83 | ) 84 | if (direction === 'remoteToLocal') 85 | return this.autoCopyFromRemote(src, dest, options) 86 | 87 | return this.autoCopyToRemote(src, dest, options) 88 | } 89 | 90 | /** 91 | * Run a copy from the local to the remote using rsync. 92 | * All exec options are also available. 93 | * 94 | * @see https://nodejs.org/dist/latest-v8.x/docs/api/child_process.html#child_process_child_process_exec_command_options_callback 95 | * @param {string} src Source 96 | * @param {string} dest Destination 97 | * @param {object} [options] Options 98 | * @param {string[]} [options.ignores] Specify a list of files to ignore. 99 | * @param {string[]|string} [options.rsync] Specify a set of rsync arguments. 100 | * @returns {Promise.} A promise with an object as result: { child, stdout, stderr } 101 | */ 102 | async copyToRemote(src, dest, options) { 103 | const remoteDest = `${formatRemote(this.remote)}:${dest}` 104 | return this.rsyncCopy(src, remoteDest, options) 105 | } 106 | 107 | /** 108 | * Run a copy from the remote to the local using rsync. 109 | * All exec options are also available. 110 | * 111 | * @see https://nodejs.org/dist/latest-v8.x/docs/api/child_process.html#child_process_child_process_exec_command_options_callback 112 | * @param {string} src Source 113 | * @param {string} dest Destination 114 | * @param {object} [options] Options 115 | * @param {string[]} [options.ignores] Specify a list of files to ignore. 116 | * @param {string[]|string} [options.rsync] Specify a set of rsync arguments. 117 | * @returns {Promise.} A promise with an object as result: { child, stdout, stderr } 118 | */ 119 | async copyFromRemote(src, dest, options) { 120 | const remoteSrc = `${formatRemote(this.remote)}:${src}` 121 | return this.rsyncCopy(remoteSrc, dest, options) 122 | } 123 | 124 | /** 125 | * Run a copy from the local to the remote using scp. 126 | * All exec options are also available. 127 | * 128 | * @see https://nodejs.org/dist/latest-v8.x/docs/api/child_process.html#child_process_child_process_exec_command_options_callback 129 | * @param {string} src Source 130 | * @param {string} dest Destination 131 | * @param {object} [options] Options 132 | * @param {string[]} [options.ignores] Specify a list of files to ignore. 133 | * @returns {Promise.} A promise with an object as result: { children, stdout, stderr } 134 | */ 135 | async scpCopyToRemote(src, dest, { ignores, ...cmdOptions } = {}) { 136 | const archive = path.basename(await tmpName({ postfix: '.tar.gz' })) 137 | const srcDir = path.dirname(src) 138 | const remoteDest = `${formatRemote(this.remote)}:${dest}` 139 | 140 | const compress = joinCommandArgs([ 141 | formatCdCommand({ folder: srcDir }), 142 | '&&', 143 | formatTarCommand({ 144 | mode: 'compress', 145 | file: path.basename(src), 146 | archive, 147 | excludes: ignores, 148 | }), 149 | ]) 150 | 151 | const createDestFolder = formatMkdirCommand({ folder: dest }) 152 | 153 | const copy = joinCommandArgs([ 154 | formatCdCommand({ folder: srcDir }), 155 | '&&', 156 | formatScpCommand({ 157 | port: this.remote.port, 158 | key: this.options.key, 159 | src: archive, 160 | dest: remoteDest, 161 | }), 162 | ]) 163 | 164 | const cleanSrc = joinCommandArgs([ 165 | formatCdCommand({ folder: srcDir }), 166 | '&&', 167 | formatRmCommand({ file: archive }), 168 | ]) 169 | 170 | const extract = joinCommandArgs([ 171 | formatCdCommand({ folder: dest }), 172 | '&&', 173 | formatTarCommand({ mode: 'extract', archive }), 174 | ]) 175 | 176 | const cleanDest = joinCommandArgs([ 177 | formatCdCommand({ folder: dest }), 178 | '&&', 179 | formatRmCommand({ file: archive }), 180 | ]) 181 | 182 | return this.aggregate([ 183 | () => this.runLocally(compress, cmdOptions), 184 | () => this.run(createDestFolder, cmdOptions), 185 | () => this.runLocally(copy, cmdOptions), 186 | () => this.runLocally(cleanSrc, cmdOptions), 187 | () => this.run(extract, cmdOptions), 188 | () => this.run(cleanDest, cmdOptions), 189 | ]) 190 | } 191 | 192 | /** 193 | * Run a copy from the remote to the local using scp. 194 | * All exec options are also available. 195 | * 196 | * @see https://nodejs.org/dist/latest-v8.x/docs/api/child_process.html#child_process_child_process_exec_command_options_callback 197 | * @param {string} src Source 198 | * @param {string} dest Destination 199 | * @param {object} [options] Options 200 | * @param {string[]} [options.ignores] Specify a list of files to ignore. 201 | * @returns {Promise.} A promise with an object as result: { children, stdout, stderr } 202 | */ 203 | async scpCopyFromRemote(src, dest, { ignores, ...cmdOptions } = {}) { 204 | const archive = path.basename(await tmpName({ postfix: '.tar.gz' })) 205 | const srcDir = path.dirname(src) 206 | const srcArchive = path.join(srcDir, archive) 207 | const remoteSrcArchive = `${formatRemote(this.remote)}:${srcArchive}` 208 | 209 | const compress = joinCommandArgs([ 210 | formatCdCommand({ folder: srcDir }), 211 | '&&', 212 | formatTarCommand({ 213 | mode: 'compress', 214 | file: path.basename(src), 215 | archive, 216 | excludes: ignores, 217 | }), 218 | ]) 219 | 220 | const createDestFolder = formatMkdirCommand({ folder: dest }) 221 | 222 | const copy = formatScpCommand({ 223 | port: this.remote.port, 224 | key: this.options.key, 225 | src: remoteSrcArchive, 226 | dest, 227 | }) 228 | 229 | const cleanSrc = joinCommandArgs([ 230 | formatCdCommand({ folder: srcDir }), 231 | '&&', 232 | formatRmCommand({ file: archive }), 233 | ]) 234 | 235 | const extract = joinCommandArgs([ 236 | formatCdCommand({ folder: dest }), 237 | '&&', 238 | formatTarCommand({ mode: 'extract', archive }), 239 | ]) 240 | 241 | const cleanDest = joinCommandArgs([ 242 | formatCdCommand({ folder: dest }), 243 | '&&', 244 | formatRmCommand({ file: archive }), 245 | ]) 246 | 247 | return this.aggregate([ 248 | () => this.run(compress, cmdOptions), 249 | () => this.runLocally(createDestFolder, cmdOptions), 250 | () => this.runLocally(copy, cmdOptions), 251 | () => this.run(cleanSrc, cmdOptions), 252 | () => this.runLocally(extract, cmdOptions), 253 | () => this.runLocally(cleanDest, cmdOptions), 254 | ]) 255 | } 256 | 257 | buildSSHCommand(command, options) { 258 | return formatSshCommand({ 259 | port: this.remote.port, 260 | key: this.options.key, 261 | strict: this.options.strict, 262 | tty: this.options.tty, 263 | remote: formatRemote(this.remote), 264 | command: formatRawCommand({ command, asUser: this.options.asUser }), 265 | ...options, 266 | }) 267 | } 268 | 269 | async rsyncCopy(src, dest, { rsync, ignores, ...cmdOptions } = {}) { 270 | this.log('Copy "%s" to "%s" via rsync', src, dest) 271 | 272 | const sshCommand = formatSshCommand({ 273 | port: this.remote.port, 274 | key: this.options.key, 275 | strict: this.options.strict, 276 | tty: this.options.tty, 277 | }) 278 | 279 | const cmd = formatRsyncCommand({ 280 | src, 281 | dest, 282 | remoteShell: sshCommand, 283 | additionalArgs: typeof rsync === 'string' ? [rsync] : rsync, 284 | excludes: ignores, 285 | }) 286 | 287 | return this.runLocally(cmd, cmdOptions) 288 | } 289 | 290 | async autoCopyToRemote(src, dest, options) { 291 | const rsyncAvailable = await checkRsyncAvailability() 292 | const method = rsyncAvailable ? 'copyToRemote' : 'scpCopyToRemote' 293 | return this[method](src, dest, options) 294 | } 295 | 296 | async autoCopyFromRemote(src, dest, options) { 297 | const rsyncAvailable = await checkRsyncAvailability() 298 | const method = rsyncAvailable ? 'copyFromRemote' : 'scpCopyFromRemote' 299 | return this[method](src, dest, options) 300 | } 301 | 302 | async aggregate(tasks) { 303 | const results = await series(tasks) 304 | 305 | return results.reduce( 306 | (aggregate, result) => ({ 307 | stdout: Buffer.concat([aggregate.stdout, result.stdout]), 308 | stderr: Buffer.concat([aggregate.stderr, result.stderr]), 309 | children: [...aggregate.children, result.child], 310 | }), 311 | { 312 | stdout: Buffer.from([]), 313 | stderr: Buffer.from([]), 314 | children: [], 315 | }, 316 | ) 317 | } 318 | 319 | log(...args) { 320 | if (this.options.log) this.options.log(...args) 321 | } 322 | 323 | async runLocally(cmd, { stdout, stderr, ...cmdOptions } = {}) { 324 | const stdoutPipe = this.options.stdout || stdout 325 | const stderrPipe = this.options.stderr || stderr 326 | 327 | return new Promise((resolve, reject) => { 328 | // Exec command. 329 | const child = exec( 330 | cmd, 331 | { ...defaultRunOptions, ...cmdOptions }, 332 | (err, cmdStdout, cmdStderr) => { 333 | if (err) reject(err) 334 | else resolve({ child, stdout: cmdStdout, stderr: cmdStderr }) 335 | }, 336 | ) 337 | 338 | if (stdoutPipe) 339 | child.stdout 340 | .pipe(new LineWrapper({ prefix: `@${this.remote.host} ` })) 341 | .pipe(stdoutPipe) 342 | 343 | if (stderrPipe) 344 | child.stderr 345 | .pipe(new LineWrapper({ prefix: `@${this.remote.host}-err ` })) 346 | .pipe(stderrPipe) 347 | }) 348 | } 349 | } 350 | 351 | export default Connection 352 | -------------------------------------------------------------------------------- /src/Connection.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-extraneous-dependencies */ 2 | import stdMocks from 'std-mocks' 3 | import { exec } from 'child_process' 4 | import { __setPaths__ } from 'whereis' 5 | import Connection from './Connection' 6 | 7 | jest.mock('child_process') 8 | jest.mock('whereis') 9 | jest.mock('tmp') 10 | 11 | describe('Connection', () => { 12 | beforeEach(() => { 13 | __setPaths__({ rsync: '/bin/rsync' }) 14 | }) 15 | 16 | afterEach(() => { 17 | exec.mockClear() 18 | stdMocks.flush() 19 | stdMocks.restore() 20 | }) 21 | 22 | describe('constructor', () => { 23 | it('should accept remote object', () => { 24 | const connection = new Connection({ 25 | remote: { user: 'user', host: 'host' }, 26 | }) 27 | expect(connection.remote.user).toBe('user') 28 | expect(connection.remote.host).toBe('host') 29 | }) 30 | 31 | it('should accept remote string', () => { 32 | const connection = new Connection({ remote: 'user@host' }) 33 | expect(connection.remote.user).toBe('user') 34 | expect(connection.remote.host).toBe('host') 35 | }) 36 | }) 37 | 38 | describe('#run', () => { 39 | let connection 40 | 41 | beforeEach(() => { 42 | connection = new Connection({ remote: 'user@host' }) 43 | }) 44 | 45 | it('should call childProcess.exec', async () => { 46 | await connection.run('my-command -x', { cwd: '/root' }) 47 | 48 | expect(exec).toHaveBeenCalledWith( 49 | 'ssh user@host "my-command -x"', 50 | { 51 | cwd: '/root', 52 | maxBuffer: 1024000, 53 | }, 54 | expect.any(Function), 55 | ) 56 | }) 57 | 58 | it('should escape double quotes', async () => { 59 | await connection.run('echo "ok"', { cwd: '/root' }) 60 | 61 | expect(exec).toHaveBeenCalledWith( 62 | 'ssh user@host "echo \\"ok\\""', 63 | { 64 | cwd: '/root', 65 | maxBuffer: 1024000, 66 | }, 67 | expect.any(Function), 68 | ) 69 | }) 70 | 71 | it('should return result correctly', async () => { 72 | const result = await connection.run('my-command -x', { cwd: '/root' }) 73 | expect(result.stdout.toString()).toBe('stdout') 74 | expect(result.stderr.toString()).toBe('stderr') 75 | }) 76 | 77 | it('should handle sudo', async () => { 78 | await connection.run('sudo my-command -x', { cwd: '/root' }) 79 | 80 | expect(exec).toHaveBeenCalledWith( 81 | 'ssh -tt user@host "sudo my-command -x"', 82 | { 83 | cwd: '/root', 84 | maxBuffer: 1024000, 85 | }, 86 | expect.any(Function), 87 | ) 88 | }) 89 | 90 | it('should handle tty', async () => { 91 | await connection.run('sudo my-command -x', { cwd: '/root', tty: true }) 92 | 93 | expect(exec).toHaveBeenCalledWith( 94 | 'ssh -tt user@host "sudo my-command -x"', 95 | { 96 | cwd: '/root', 97 | maxBuffer: 1024000, 98 | }, 99 | expect.any(Function), 100 | ) 101 | }) 102 | 103 | it('should copy args', async () => { 104 | await connection.run('my-command -x') 105 | await connection.run('my-command2 -x') 106 | 107 | expect(exec).toHaveBeenCalledWith( 108 | 'ssh user@host "my-command -x"', 109 | { maxBuffer: 1024000 }, 110 | expect.any(Function), 111 | ) 112 | expect(exec).toHaveBeenCalledWith( 113 | 'ssh user@host "my-command2 -x"', 114 | { maxBuffer: 1024000 }, 115 | expect.any(Function), 116 | ) 117 | }) 118 | 119 | it('should use key if present', async () => { 120 | connection = new Connection({ 121 | remote: 'user@host', 122 | key: '/path/to/key', 123 | }) 124 | 125 | await connection.run('my-command -x') 126 | expect(exec).toHaveBeenCalledWith( 127 | 'ssh -i /path/to/key user@host "my-command -x"', 128 | { maxBuffer: 1024000 }, 129 | expect.any(Function), 130 | ) 131 | }) 132 | 133 | it('should use port if present', async () => { 134 | connection = new Connection({ remote: 'user@host:12345' }) 135 | await connection.run('my-command -x') 136 | expect(exec).toHaveBeenCalledWith( 137 | 'ssh -p 12345 user@host "my-command -x"', 138 | { maxBuffer: 1024000 }, 139 | expect.any(Function), 140 | ) 141 | }) 142 | 143 | it('should use StrictHostKeyChecking if present', async () => { 144 | connection = new Connection({ 145 | remote: 'user@host', 146 | strict: 'no', 147 | }) 148 | await connection.run('my-command -x') 149 | expect(exec).toHaveBeenCalledWith( 150 | 'ssh -o StrictHostKeyChecking=no user@host "my-command -x"', 151 | { maxBuffer: 1024000 }, 152 | expect.any(Function), 153 | ) 154 | }) 155 | 156 | it('should use port and key if both are present', async () => { 157 | connection = new Connection({ 158 | remote: 'user@host:12345', 159 | key: '/path/to/key', 160 | }) 161 | await connection.run('my-command -x') 162 | expect(exec).toHaveBeenCalledWith( 163 | 'ssh -p 12345 -i /path/to/key user@host "my-command -x"', 164 | { maxBuffer: 1024000 }, 165 | expect.any(Function), 166 | ) 167 | }) 168 | 169 | it.only('should log output', async () => { 170 | const log = jest.fn() 171 | connection = new Connection({ 172 | remote: 'user@host', 173 | log, 174 | stdout: process.stdout, 175 | stderr: process.stderr, 176 | }) 177 | 178 | stdMocks.use() 179 | const result = await connection.run('my-command -x') 180 | result.child.stdout.push('first line\n') 181 | result.child.stdout.push(null) 182 | 183 | result.child.stderr.push('an error\n') 184 | result.child.stderr.push(null) 185 | 186 | const output = stdMocks.flush() 187 | stdMocks.restore() 188 | expect(log).toHaveBeenCalledWith( 189 | 'Running "%s" on host "%s".', 190 | 'my-command -x', 191 | 'host', 192 | ) 193 | 194 | expect(output.stdout[0].toString()).toBe('@host first line\n') 195 | expect(output.stderr[0].toString()).toBe('@host-err an error\n') 196 | }) 197 | }) 198 | 199 | describe('#run asUser', () => { 200 | let connection 201 | 202 | beforeEach(() => { 203 | connection = new Connection({ 204 | remote: 'user@host', 205 | asUser: 'test', 206 | }) 207 | }) 208 | 209 | it('should handle sudo as user correctly', async () => { 210 | await connection.run('my-command -x', { cwd: '/root', tty: true }) 211 | 212 | expect(exec).toHaveBeenCalledWith( 213 | 'ssh -tt user@host "sudo -u test my-command -x"', 214 | { 215 | cwd: '/root', 216 | maxBuffer: 1000 * 1024, 217 | }, 218 | expect.any(Function), 219 | ) 220 | }) 221 | 222 | it('should handle sudo as user without double sudo', () => { 223 | connection.run('sudo my-command -x', { cwd: '/root' }) 224 | 225 | expect(exec).toHaveBeenCalledWith( 226 | 'ssh -tt user@host "sudo -u test my-command -x"', 227 | { 228 | cwd: '/root', 229 | maxBuffer: 1000 * 1024, 230 | }, 231 | expect.any(Function), 232 | ) 233 | }) 234 | }) 235 | 236 | describe('#copy', () => { 237 | let connection 238 | 239 | beforeEach(() => { 240 | connection = new Connection({ remote: 'user@host' }) 241 | }) 242 | 243 | it('should call cmd.spawn', async () => { 244 | await connection.copy('/src/dir', '/dest/dir') 245 | expect(exec).toHaveBeenCalledWith( 246 | 'rsync --archive --compress --rsh "ssh" /src/dir user@host:/dest/dir', 247 | { maxBuffer: 1024000 }, 248 | expect.any(Function), 249 | ) 250 | }) 251 | 252 | it('should accept "ignores" option', async () => { 253 | await connection.copy('/src/dir', '/dest/dir', { ignores: ['a', 'b'] }) 254 | expect(exec).toHaveBeenCalledWith( 255 | 'rsync --archive --compress --exclude "a" --exclude "b" --rsh "ssh" /src/dir user@host:/dest/dir', 256 | { maxBuffer: 1024000 }, 257 | expect.any(Function), 258 | ) 259 | }) 260 | 261 | it('should accept "direction" option', async () => { 262 | await connection.copy('/src/dir', '/dest/dir', { 263 | direction: 'remoteToLocal', 264 | }) 265 | expect(exec).toHaveBeenCalledWith( 266 | 'rsync --archive --compress --rsh "ssh" user@host:/src/dir /dest/dir', 267 | { maxBuffer: 1024000 }, 268 | expect.any(Function), 269 | ) 270 | }) 271 | 272 | it('should accept "rsync" option', async () => { 273 | await connection.copy('/src/dir', '/dest/dir', { 274 | rsync: '--info=progress2', 275 | }) 276 | expect(exec).toHaveBeenCalledWith( 277 | 'rsync --archive --compress --info=progress2 --rsh "ssh" /src/dir user@host:/dest/dir', 278 | { maxBuffer: 1024000 }, 279 | expect.any(Function), 280 | ) 281 | }) 282 | 283 | describe('without rsync available', () => { 284 | beforeEach(() => { 285 | __setPaths__({}) 286 | }) 287 | 288 | it('should use tar+scp', async () => { 289 | const result = await connection.copy('/a/b/c', '/x/y/z') 290 | expect(exec.mock.calls[0]).toEqual([ 291 | 'cd /a/b && tar -czf foo.tar.gz c', 292 | { maxBuffer: 1024000 }, 293 | expect.any(Function), 294 | ]) 295 | expect(exec.mock.calls[1]).toEqual([ 296 | 'ssh user@host "mkdir -p /x/y/z"', 297 | { maxBuffer: 1024000 }, 298 | expect.any(Function), 299 | ]) 300 | expect(exec.mock.calls[2]).toEqual([ 301 | 'cd /a/b && scp foo.tar.gz user@host:/x/y/z', 302 | { maxBuffer: 1024000 }, 303 | expect.any(Function), 304 | ]) 305 | expect(exec.mock.calls[3]).toEqual([ 306 | 'cd /a/b && rm foo.tar.gz', 307 | { maxBuffer: 1024000 }, 308 | expect.any(Function), 309 | ]) 310 | expect(exec.mock.calls[4]).toEqual([ 311 | 'ssh user@host "cd /x/y/z && tar --strip-components=1 -xzf foo.tar.gz"', 312 | { maxBuffer: 1024000 }, 313 | expect.any(Function), 314 | ]) 315 | expect(exec.mock.calls[5]).toEqual([ 316 | 'ssh user@host "cd /x/y/z && rm foo.tar.gz"', 317 | { maxBuffer: 1024000 }, 318 | expect.any(Function), 319 | ]) 320 | expect(result.stdout.toString()).toBe('stdout'.repeat(6)) 321 | expect(result.stderr.toString()).toBe('stderr'.repeat(6)) 322 | expect(result.children.length).toBe(6) 323 | }) 324 | 325 | it('should accept "direction" option when using tar+scp', async () => { 326 | const result = await connection.copy('/a/b/c', '/x/y/z', { 327 | direction: 'remoteToLocal', 328 | }) 329 | expect(exec.mock.calls[0]).toEqual([ 330 | 'ssh user@host "cd /a/b && tar -czf foo.tar.gz c"', 331 | { maxBuffer: 1024000 }, 332 | expect.any(Function), 333 | ]) 334 | expect(exec.mock.calls[1]).toEqual([ 335 | 'mkdir -p /x/y/z', 336 | { maxBuffer: 1024000 }, 337 | expect.any(Function), 338 | ]) 339 | expect(exec.mock.calls[2]).toEqual([ 340 | 'scp user@host:/a/b/foo.tar.gz /x/y/z', 341 | { maxBuffer: 1024000 }, 342 | expect.any(Function), 343 | ]) 344 | expect(exec.mock.calls[3]).toEqual([ 345 | 'ssh user@host "cd /a/b && rm foo.tar.gz"', 346 | { maxBuffer: 1024000 }, 347 | expect.any(Function), 348 | ]) 349 | expect(exec.mock.calls[4]).toEqual([ 350 | 'cd /x/y/z && tar --strip-components=1 -xzf foo.tar.gz', 351 | { maxBuffer: 1024000 }, 352 | expect.any(Function), 353 | ]) 354 | expect(exec.mock.calls[5]).toEqual([ 355 | 'cd /x/y/z && rm foo.tar.gz', 356 | { maxBuffer: 1024000 }, 357 | expect.any(Function), 358 | ]) 359 | expect(result.stdout.toString()).toBe('stdout'.repeat(6)) 360 | expect(result.stderr.toString()).toBe('stderr'.repeat(6)) 361 | expect(result.children.length).toBe(6) 362 | }) 363 | 364 | it('should accept port and key', async () => { 365 | connection = new Connection({ 366 | remote: 'user@host:12345', 367 | key: '/path/to/key', 368 | }) 369 | const result = await connection.copy('/a/b/c', '/x/y/z') 370 | expect(exec.mock.calls[0]).toEqual([ 371 | 'cd /a/b && tar -czf foo.tar.gz c', 372 | { maxBuffer: 1024000 }, 373 | expect.any(Function), 374 | ]) 375 | expect(exec.mock.calls[1]).toEqual([ 376 | 'ssh -p 12345 -i /path/to/key user@host "mkdir -p /x/y/z"', 377 | { maxBuffer: 1024000 }, 378 | expect.any(Function), 379 | ]) 380 | expect(exec.mock.calls[2]).toEqual([ 381 | 'cd /a/b && scp -P 12345 -i /path/to/key foo.tar.gz user@host:/x/y/z', 382 | { maxBuffer: 1024000 }, 383 | expect.any(Function), 384 | ]) 385 | expect(exec.mock.calls[3]).toEqual([ 386 | 'cd /a/b && rm foo.tar.gz', 387 | { maxBuffer: 1024000 }, 388 | expect.any(Function), 389 | ]) 390 | expect(exec.mock.calls[4]).toEqual([ 391 | 'ssh -p 12345 -i /path/to/key user@host "cd /x/y/z && tar --strip-components=1 -xzf foo.tar.gz"', 392 | { maxBuffer: 1024000 }, 393 | expect.any(Function), 394 | ]) 395 | expect(exec.mock.calls[5]).toEqual([ 396 | 'ssh -p 12345 -i /path/to/key user@host "cd /x/y/z && rm foo.tar.gz"', 397 | { maxBuffer: 1024000 }, 398 | expect.any(Function), 399 | ]) 400 | expect(result.stdout.toString()).toBe('stdout'.repeat(6)) 401 | expect(result.stderr.toString()).toBe('stderr'.repeat(6)) 402 | expect(result.children.length).toBe(6) 403 | }) 404 | }) 405 | 406 | it('should use key if present', async () => { 407 | connection = new Connection({ 408 | remote: 'user@host', 409 | key: '/path/to/key', 410 | }) 411 | await connection.copy('/src/dir', '/dest/dir') 412 | expect(exec).toHaveBeenCalledWith( 413 | 'rsync --archive --compress --rsh "ssh -i /path/to/key" /src/dir user@host:/dest/dir', 414 | { maxBuffer: 1024000 }, 415 | expect.any(Function), 416 | ) 417 | }) 418 | 419 | it('should use port if present', async () => { 420 | connection = new Connection({ 421 | remote: 'user@host:12345', 422 | }) 423 | await connection.copy('/src/dir', '/dest/dir') 424 | expect(exec).toHaveBeenCalledWith( 425 | 'rsync --archive --compress --rsh "ssh -p 12345" /src/dir user@host:/dest/dir', 426 | { maxBuffer: 1024000 }, 427 | expect.any(Function), 428 | ) 429 | }) 430 | 431 | it('should use StrictHostKeyChecking if present', async () => { 432 | connection = new Connection({ 433 | remote: 'user@host', 434 | strict: 'yes', 435 | }) 436 | await connection.copy('/src/dir', '/dest/dir') 437 | expect(exec).toHaveBeenCalledWith( 438 | 'rsync --archive --compress --rsh "ssh -o StrictHostKeyChecking=yes" /src/dir user@host:/dest/dir', 439 | { maxBuffer: 1024000 }, 440 | expect.any(Function), 441 | ) 442 | }) 443 | 444 | it('should use port and key if both are present', async () => { 445 | connection = new Connection({ 446 | remote: 'user@host:12345', 447 | key: '/path/to/key', 448 | }) 449 | await connection.copy('/src/dir', '/dest/dir') 450 | expect(exec).toHaveBeenCalledWith( 451 | 'rsync --archive --compress --rsh "ssh -p 12345 -i /path/to/key" /src/dir user@host:/dest/dir', 452 | { maxBuffer: 1024000 }, 453 | expect.any(Function), 454 | ) 455 | }) 456 | 457 | it('should log output', async () => { 458 | const log = jest.fn() 459 | connection = new Connection({ 460 | remote: 'user@host', 461 | log, 462 | stdout: process.stdout, 463 | stderr: process.stderr, 464 | }) 465 | 466 | stdMocks.use() 467 | const result = await connection.copy('/src/dir', '/dest/dir') 468 | result.child.stdout.push('first line\n') 469 | result.child.stdout.push(null) 470 | 471 | result.child.stderr.push('an error\n') 472 | result.child.stderr.push(null) 473 | 474 | const output = stdMocks.flush() 475 | expect(log).toHaveBeenCalledWith( 476 | 'Copy "%s" to "%s" via rsync', 477 | '/src/dir', 478 | 'user@host:/dest/dir', 479 | ) 480 | expect(output.stdout[0].toString()).toBe('@host first line\n') 481 | expect(output.stderr[0].toString()).toBe('@host-err an error\n') 482 | }) 483 | }) 484 | }) 485 | -------------------------------------------------------------------------------- /src/ConnectionPool.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable func-names */ 2 | import Connection from './Connection' 3 | 4 | class ConnectionPool { 5 | /** 6 | * Initialize a new `ConnectionPool` with `connections`. 7 | * All Connection options are also supported. 8 | * 9 | * @param {Connection|string[]} connections Connections 10 | * @param {object} [options] Options 11 | */ 12 | constructor(connections, options) { 13 | this.connections = connections.map(connection => { 14 | if (connection instanceof Connection) return connection 15 | return new Connection({ remote: connection, ...options }) 16 | }) 17 | } 18 | } 19 | 20 | ;[ 21 | 'run', 22 | 'copy', 23 | 'copyToRemote', 24 | 'copyFromRemote', 25 | 'scpCopyToRemote', 26 | 'scpCopyFromRemote', 27 | ].forEach(method => { 28 | ConnectionPool.prototype[method] = function(...args) { 29 | return Promise.all( 30 | this.connections.map(connection => connection[method](...args)), 31 | ) 32 | } 33 | }) 34 | 35 | export default ConnectionPool 36 | -------------------------------------------------------------------------------- /src/ConnectionPool.test.js: -------------------------------------------------------------------------------- 1 | import { __setPaths__ } from 'whereis' 2 | import { exec } from 'child_process' 3 | import Connection from './Connection' 4 | import ConnectionPool from './ConnectionPool' 5 | 6 | jest.mock('whereis') 7 | jest.mock('child_process') 8 | 9 | describe('ConnectionPool', () => { 10 | beforeEach(() => { 11 | __setPaths__({ rsync: '/bin/rsync' }) 12 | }) 13 | 14 | describe('constructor', () => { 15 | it('should be possible to create a new ConnectionPool using shorthand syntax', () => { 16 | const pool = new ConnectionPool(['myserver', 'myserver2']) 17 | expect(pool.connections[0].remote).toEqual({ 18 | user: 'deploy', 19 | host: 'myserver', 20 | }) 21 | 22 | expect(pool.connections[1].remote).toEqual({ 23 | user: 'deploy', 24 | host: 'myserver2', 25 | }) 26 | }) 27 | 28 | it('should be possible to create a new ConnectionPool with long syntax', () => { 29 | const connection1 = new Connection({ remote: 'myserver' }) 30 | const connection2 = new Connection({ remote: 'myserver2' }) 31 | const pool = new ConnectionPool([connection1, connection2]) 32 | expect(pool.connections[0]).toBe(connection1) 33 | expect(pool.connections[1]).toBe(connection2) 34 | }) 35 | }) 36 | 37 | describe('#run', () => { 38 | let connection1 39 | let connection2 40 | let pool 41 | 42 | beforeEach(() => { 43 | connection1 = new Connection({ remote: 'myserver' }) 44 | connection2 = new Connection({ remote: 'myserver2' }) 45 | pool = new ConnectionPool([connection1, connection2]) 46 | }) 47 | 48 | it('should run command on each connection', async () => { 49 | const results = await pool.run('my-command -x', { cwd: '/root' }) 50 | expect(results[0].stdout.toString()).toBe('stdout') 51 | expect(results[1].stdout.toString()).toBe('stdout') 52 | expect(exec).toHaveBeenCalledWith( 53 | 'ssh deploy@myserver "my-command -x"', 54 | { 55 | cwd: '/root', 56 | maxBuffer: 1000 * 1024, 57 | }, 58 | expect.any(Function), 59 | ) 60 | expect(exec).toHaveBeenCalledWith( 61 | 'ssh deploy@myserver2 "my-command -x"', 62 | { 63 | cwd: '/root', 64 | maxBuffer: 1000 * 1024, 65 | }, 66 | expect.any(Function), 67 | ) 68 | }) 69 | }) 70 | 71 | describe('#copy', () => { 72 | let connection1 73 | let connection2 74 | let pool 75 | 76 | beforeEach(() => { 77 | connection1 = new Connection({ remote: 'myserver' }) 78 | connection2 = new Connection({ remote: 'myserver2' }) 79 | pool = new ConnectionPool([connection1, connection2]) 80 | }) 81 | 82 | it('should run command on each connection', async () => { 83 | const results = await pool.copy('/src/dir', '/dest/dir') 84 | expect(results[0].stdout.toString()).toBe('stdout') 85 | expect(results[1].stdout.toString()).toBe('stdout') 86 | 87 | expect(exec).toHaveBeenCalledWith( 88 | 'rsync --archive --compress --rsh "ssh" /src/dir deploy@myserver:/dest/dir', 89 | { maxBuffer: 1024000 }, 90 | expect.any(Function), 91 | ) 92 | 93 | expect(exec).toHaveBeenCalledWith( 94 | 'rsync --archive --compress --rsh "ssh" /src/dir deploy@myserver2:/dest/dir', 95 | { maxBuffer: 1024000 }, 96 | expect.any(Function), 97 | ) 98 | }) 99 | }) 100 | }) 101 | -------------------------------------------------------------------------------- /src/commands/cd.js: -------------------------------------------------------------------------------- 1 | import { joinCommandArgs, requireArgs } from './util' 2 | 3 | export function formatCdCommand({ folder }) { 4 | requireArgs(['folder'], { folder }, 'cd') 5 | const args = ['cd', folder] 6 | return joinCommandArgs(args) 7 | } 8 | -------------------------------------------------------------------------------- /src/commands/cd.test.js: -------------------------------------------------------------------------------- 1 | import { formatCdCommand } from './cd' 2 | 3 | describe('mkdir', () => { 4 | describe('#formatCdCommand', () => { 5 | describe('without "folder"', () => { 6 | it('should throw an error', () => { 7 | expect(() => formatCdCommand({})).toThrow( 8 | '"folder" argument is required in "cd" command', 9 | ) 10 | }) 11 | }) 12 | 13 | it('should format command', () => { 14 | expect(formatCdCommand({ folder: 'xxx' })).toBe('cd xxx') 15 | }) 16 | }) 17 | }) 18 | -------------------------------------------------------------------------------- /src/commands/mkdir.js: -------------------------------------------------------------------------------- 1 | import { joinCommandArgs, requireArgs } from './util' 2 | 3 | export function formatMkdirCommand({ folder }) { 4 | requireArgs(['folder'], { folder }, 'mkdir') 5 | const args = ['mkdir', '-p', folder] 6 | return joinCommandArgs(args) 7 | } 8 | -------------------------------------------------------------------------------- /src/commands/mkdir.test.js: -------------------------------------------------------------------------------- 1 | import { formatMkdirCommand } from './mkdir' 2 | 3 | describe('mkdir', () => { 4 | describe('#formatMkdirCommand', () => { 5 | describe('without "folder"', () => { 6 | it('should throw an error', () => { 7 | expect(() => formatMkdirCommand({})).toThrow( 8 | '"folder" argument is required in "mkdir" command', 9 | ) 10 | }) 11 | }) 12 | 13 | it('should format command', () => { 14 | expect(formatMkdirCommand({ folder: 'xxx' })).toBe('mkdir -p xxx') 15 | }) 16 | }) 17 | }) 18 | -------------------------------------------------------------------------------- /src/commands/raw.js: -------------------------------------------------------------------------------- 1 | import { joinCommandArgs } from './util' 2 | import { deprecateV3 } from '../util' 3 | 4 | const SUDO_REGEXP = /sudo\s/ 5 | 6 | export function formatRawCommand({ asUser, command }) { 7 | let args = [] 8 | if (asUser) args = [...args, 'sudo', '-u', asUser] 9 | // Deprecate 10 | if (asUser && command) { 11 | if (command.match(SUDO_REGEXP)) { 12 | deprecateV3( 13 | 'You should not use "sudo" and "asUser" options together. Please remove "sudo" from command.', 14 | ) 15 | } 16 | args = [...args, command.replace(SUDO_REGEXP, '')] 17 | } else if (command) args = [...args, command] 18 | return joinCommandArgs(args) 19 | } 20 | -------------------------------------------------------------------------------- /src/commands/raw.test.js: -------------------------------------------------------------------------------- 1 | import { formatRawCommand } from './raw' 2 | 3 | describe('raw', () => { 4 | describe('#formatRawCommand', () => { 5 | it('should support command', () => { 6 | expect(formatRawCommand({ command: 'echo "ok"' })).toBe('echo "ok"') 7 | }) 8 | 9 | it('should support asUser', () => { 10 | expect(formatRawCommand({ asUser: 'foo', command: 'echo "ok"' })).toBe( 11 | 'sudo -u foo echo "ok"', 12 | ) 13 | 14 | expect( 15 | formatRawCommand({ asUser: 'foo', command: 'sudo echo "ok"' }), 16 | ).toBe('sudo -u foo echo "ok"') 17 | }) 18 | }) 19 | }) 20 | -------------------------------------------------------------------------------- /src/commands/rm.js: -------------------------------------------------------------------------------- 1 | import { joinCommandArgs, requireArgs } from './util' 2 | 3 | export function formatRmCommand({ file }) { 4 | requireArgs(['file'], { file }, 'rm') 5 | const args = ['rm', file] 6 | return joinCommandArgs(args) 7 | } 8 | -------------------------------------------------------------------------------- /src/commands/rm.test.js: -------------------------------------------------------------------------------- 1 | import { formatRmCommand } from './rm' 2 | 3 | describe('rm', () => { 4 | describe('#formatRmCommand', () => { 5 | describe('without "file"', () => { 6 | it('should throw an error', () => { 7 | expect(() => formatRmCommand({})).toThrow( 8 | '"file" argument is required in "rm" command', 9 | ) 10 | }) 11 | }) 12 | 13 | it('should format command', () => { 14 | expect(formatRmCommand({ file: 'xxx' })).toBe('rm xxx') 15 | }) 16 | }) 17 | }) 18 | -------------------------------------------------------------------------------- /src/commands/rsync.js: -------------------------------------------------------------------------------- 1 | import whereis from 'whereis' 2 | import { wrapCommand, joinCommandArgs, requireArgs } from './util' 3 | 4 | export async function checkRsyncAvailability() { 5 | return new Promise(resolve => whereis('rsync', err => resolve(!err))) 6 | } 7 | 8 | function formatExcludes(excludes) { 9 | return excludes.reduce( 10 | (args, current) => [...args, '--exclude', `"${current}"`], 11 | [], 12 | ) 13 | } 14 | 15 | export function formatRsyncCommand({ 16 | src, 17 | dest, 18 | excludes, 19 | additionalArgs, 20 | remoteShell, 21 | }) { 22 | requireArgs(['src', 'dest'], { src, dest }, 'rsync') 23 | let args = ['rsync', '--archive', '--compress'] 24 | if (additionalArgs) args = [...args, ...additionalArgs] 25 | if (excludes) args = [...args, ...formatExcludes(excludes)] 26 | if (remoteShell) args = [...args, '--rsh', wrapCommand(remoteShell)] 27 | args = [...args, src, dest] 28 | return joinCommandArgs(args) 29 | } 30 | -------------------------------------------------------------------------------- /src/commands/rsync.test.js: -------------------------------------------------------------------------------- 1 | import { formatRsyncCommand } from './rsync' 2 | 3 | describe('rsync', () => { 4 | describe('#formatRsyncCommand', () => { 5 | describe('without "src" or "dest"', () => { 6 | it('should throw an error', () => { 7 | expect(() => formatRsyncCommand({})).toThrow( 8 | '"src" argument is required in "rsync" command', 9 | ) 10 | expect(() => formatRsyncCommand({ dest: 'foo' })).toThrow( 11 | '"src" argument is required in "rsync" command', 12 | ) 13 | expect(() => formatRsyncCommand({ src: 'foo' })).toThrow( 14 | '"dest" argument is required in "rsync" command', 15 | ) 16 | }) 17 | }) 18 | 19 | it('should support src and dest', () => { 20 | expect(formatRsyncCommand({ src: 'file.js', dest: 'foo/' })).toBe( 21 | 'rsync --archive --compress file.js foo/', 22 | ) 23 | }) 24 | 25 | it('should support additionalArgs', () => { 26 | expect( 27 | formatRsyncCommand({ 28 | src: 'file.js', 29 | dest: 'foo/', 30 | additionalArgs: ['--max-size=10'], 31 | }), 32 | ).toBe('rsync --archive --compress --max-size=10 file.js foo/') 33 | }) 34 | 35 | it('should support excludes', () => { 36 | expect( 37 | formatRsyncCommand({ 38 | src: 'file.js', 39 | dest: 'foo/', 40 | excludes: ['foo'], 41 | }), 42 | ).toBe('rsync --archive --compress --exclude "foo" file.js foo/') 43 | }) 44 | 45 | it('should support remoteShell', () => { 46 | expect( 47 | formatRsyncCommand({ 48 | src: 'file.js', 49 | dest: 'foo/', 50 | remoteShell: 'ssh', 51 | }), 52 | ).toBe('rsync --archive --compress --rsh "ssh" file.js foo/') 53 | }) 54 | }) 55 | }) 56 | -------------------------------------------------------------------------------- /src/commands/scp.js: -------------------------------------------------------------------------------- 1 | import { joinCommandArgs, requireArgs } from './util' 2 | 3 | export function formatScpCommand({ port, key, src, dest }) { 4 | requireArgs(['src', 'dest'], { src, dest }, 'scp') 5 | let args = ['scp'] 6 | if (port) args = [...args, '-P', port] 7 | if (key) args = [...args, '-i', key] 8 | args = [...args, src, dest] 9 | return joinCommandArgs(args) 10 | } 11 | -------------------------------------------------------------------------------- /src/commands/scp.test.js: -------------------------------------------------------------------------------- 1 | import { formatScpCommand } from './scp' 2 | 3 | describe('scp', () => { 4 | describe('#formatScpCommand', () => { 5 | describe('without "src" or "dest"', () => { 6 | it('should throw an error', () => { 7 | expect(() => formatScpCommand({})).toThrow( 8 | '"src" argument is required in "scp" command', 9 | ) 10 | expect(() => formatScpCommand({ dest: 'foo' })).toThrow( 11 | '"src" argument is required in "scp" command', 12 | ) 13 | expect(() => formatScpCommand({ src: 'foo' })).toThrow( 14 | '"dest" argument is required in "scp" command', 15 | ) 16 | }) 17 | }) 18 | 19 | it('should support src and dest', () => { 20 | expect(formatScpCommand({ src: 'file.js', dest: 'foo/' })).toBe( 21 | 'scp file.js foo/', 22 | ) 23 | }) 24 | 25 | it('should support port', () => { 26 | expect( 27 | formatScpCommand({ src: 'file.js', dest: 'foo/', port: 3000 }), 28 | ).toBe('scp -P 3000 file.js foo/') 29 | }) 30 | 31 | it('should support key', () => { 32 | expect( 33 | formatScpCommand({ 34 | src: 'file.js', 35 | dest: 'foo/', 36 | key: 'foo', 37 | }), 38 | ).toBe('scp -i foo file.js foo/') 39 | }) 40 | }) 41 | }) 42 | -------------------------------------------------------------------------------- /src/commands/ssh.js: -------------------------------------------------------------------------------- 1 | import { joinCommandArgs, wrapCommand } from './util' 2 | 3 | export function formatSshCommand({ port, key, strict, tty, remote, command }) { 4 | let args = ['ssh'] 5 | if (tty) args = [...args, '-tt'] 6 | if (port) args = [...args, '-p', port] 7 | if (key) args = [...args, '-i', key] 8 | if (strict !== undefined) 9 | args = [...args, '-o', `StrictHostKeyChecking=${strict}`] 10 | if (remote) args = [...args, remote] 11 | if (command) args = [...args, wrapCommand(command)] 12 | return joinCommandArgs(args) 13 | } 14 | -------------------------------------------------------------------------------- /src/commands/ssh.test.js: -------------------------------------------------------------------------------- 1 | import { formatSshCommand } from './ssh' 2 | 3 | describe('ssh', () => { 4 | describe('#formatSshCommand', () => { 5 | it('should support tty', () => { 6 | expect(formatSshCommand({ tty: true })).toBe('ssh -tt') 7 | }) 8 | 9 | it('should support port', () => { 10 | expect(formatSshCommand({ port: 3000 })).toBe('ssh -p 3000') 11 | }) 12 | 13 | it('should support key', () => { 14 | expect(formatSshCommand({ key: 'foo' })).toBe('ssh -i foo') 15 | }) 16 | 17 | it('should support strict', () => { 18 | expect(formatSshCommand({ strict: true })).toBe( 19 | 'ssh -o StrictHostKeyChecking=true', 20 | ) 21 | expect(formatSshCommand({ strict: false })).toBe( 22 | 'ssh -o StrictHostKeyChecking=false', 23 | ) 24 | expect(formatSshCommand({ strict: 'no' })).toBe( 25 | 'ssh -o StrictHostKeyChecking=no', 26 | ) 27 | expect(formatSshCommand({ strict: 'yes' })).toBe( 28 | 'ssh -o StrictHostKeyChecking=yes', 29 | ) 30 | }) 31 | 32 | it('should support remote', () => { 33 | expect( 34 | formatSshCommand({ 35 | remote: 'user@host', 36 | }), 37 | ).toBe('ssh user@host') 38 | }) 39 | 40 | it('should support command', () => { 41 | expect( 42 | formatSshCommand({ 43 | remote: 'user@host', 44 | command: 'echo "ok"', 45 | }), 46 | ).toBe('ssh user@host "echo \\"ok\\""') 47 | }) 48 | }) 49 | }) 50 | -------------------------------------------------------------------------------- /src/commands/tar.js: -------------------------------------------------------------------------------- 1 | import { joinCommandArgs, requireArgs } from './util' 2 | 3 | function formatExcludes(excludes) { 4 | return excludes.reduce( 5 | (args, current) => [...args, '--exclude', `"${current}"`], 6 | [], 7 | ) 8 | } 9 | 10 | export function formatTarCommand({ file, archive, excludes, mode }) { 11 | let args = ['tar'] 12 | switch (mode) { 13 | case 'compress': { 14 | requireArgs(['file', 'archive'], { file, archive }, 'tar') 15 | if (excludes) args = [...args, ...formatExcludes(excludes)] 16 | args = [...args, '-czf', archive, file] 17 | return joinCommandArgs(args) 18 | } 19 | case 'extract': { 20 | requireArgs(['archive'], { file, archive }, 'tar') 21 | args = [...args, '--strip-components=1'] 22 | args = [...args, '-xzf', archive] 23 | return joinCommandArgs(args) 24 | } 25 | default: 26 | throw new Error( 27 | `mode "${mode}" is not valid in "tar" command (valid values: ["extract", "compress"])`, 28 | ) 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/commands/tar.test.js: -------------------------------------------------------------------------------- 1 | import { formatTarCommand } from './tar' 2 | 3 | describe('tar', () => { 4 | describe('#formatTarCommand', () => { 5 | describe('mode: "compress", without "file" or "archive"', () => { 6 | it('should throw an error', () => { 7 | expect(() => formatTarCommand({ mode: 'compress' })).toThrow( 8 | '"file" argument is required in "tar" command', 9 | ) 10 | expect(() => 11 | formatTarCommand({ mode: 'compress', archive: 'foo' }), 12 | ).toThrow('"file" argument is required in "tar" command') 13 | expect(() => 14 | formatTarCommand({ mode: 'compress', file: 'foo' }), 15 | ).toThrow('"archive" argument is required in "tar" command') 16 | }) 17 | }) 18 | 19 | describe('mode: "extract", without "archive"', () => { 20 | it('should throw an error', () => { 21 | expect(() => formatTarCommand({ mode: 'extract' })).toThrow( 22 | '"archive" argument is required in "tar" command', 23 | ) 24 | }) 25 | }) 26 | 27 | describe('without a valid "mode"', () => { 28 | it('should throw an error', () => { 29 | expect(() => formatTarCommand({ file: 'foo', archive: 'foo' })).toThrow( 30 | 'mode "undefined" is not valid in "tar" command (valid values: ["extract", "compress"])', 31 | ) 32 | expect(() => 33 | formatTarCommand({ file: 'foo', archive: 'foo', mode: 'foo' }), 34 | ).toThrow( 35 | 'mode "foo" is not valid in "tar" command (valid values: ["extract", "compress"])', 36 | ) 37 | }) 38 | }) 39 | 40 | it('should support compress mode', () => { 41 | expect( 42 | formatTarCommand({ 43 | file: 'file', 44 | archive: 'file.tar.gz', 45 | mode: 'compress', 46 | }), 47 | ).toBe('tar -czf file.tar.gz file') 48 | }) 49 | 50 | it('should support extract mode', () => { 51 | expect( 52 | formatTarCommand({ 53 | file: 'file', 54 | archive: 'file.tar.gz', 55 | mode: 'extract', 56 | }), 57 | ).toBe('tar --strip-components=1 -xzf file.tar.gz') 58 | }) 59 | 60 | it('should support "excludes"', () => { 61 | expect( 62 | formatTarCommand({ 63 | file: 'file', 64 | archive: 'file.tar.gz', 65 | mode: 'compress', 66 | excludes: ['foo'], 67 | }), 68 | ).toBe('tar --exclude "foo" -czf file.tar.gz file') 69 | }) 70 | }) 71 | }) 72 | -------------------------------------------------------------------------------- /src/commands/util.js: -------------------------------------------------------------------------------- 1 | export function escapeCommand(command) { 2 | return command.replace(/"/g, '\\"') 3 | } 4 | 5 | export function wrapCommand(command) { 6 | return `"${escapeCommand(command)}"` 7 | } 8 | 9 | export function joinCommandArgs(args) { 10 | return args.join(' ') 11 | } 12 | 13 | export function requireArgs(requiredArgs, args, command) { 14 | requiredArgs.forEach(required => { 15 | if (args[required] === undefined) { 16 | throw new Error( 17 | `"${required}" argument is required in "${command}" command`, 18 | ) 19 | } 20 | }) 21 | } 22 | -------------------------------------------------------------------------------- /src/commands/util.test.js: -------------------------------------------------------------------------------- 1 | import { 2 | escapeCommand, 3 | joinCommandArgs, 4 | wrapCommand, 5 | requireArgs, 6 | } from './util' 7 | 8 | describe('util', () => { 9 | describe('#escapeCommand', () => { 10 | it('should escape double quotes', () => { 11 | expect(escapeCommand('echo "ok"')).toBe('echo \\"ok\\"') 12 | }) 13 | }) 14 | 15 | describe('#wrapCommand', () => { 16 | it('should wrap command between double quotes', () => { 17 | expect(wrapCommand('echo "ok"')).toBe('"echo \\"ok\\""') 18 | }) 19 | }) 20 | 21 | describe('#joinCommandArgs', () => { 22 | it('should join command args', () => { 23 | expect(joinCommandArgs(['echo', '"foo"'])).toBe('echo "foo"') 24 | }) 25 | }) 26 | 27 | describe('#requireArgs', () => { 28 | it('should require some args', () => { 29 | expect(() => requireArgs(['foo'], { a: 'b' }, 'custom')).toThrow( 30 | '"foo" argument is required in "custom" command', 31 | ) 32 | }) 33 | }) 34 | }) 35 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default as Connection } from './Connection' 2 | export { default as ConnectionPool } from './ConnectionPool' 3 | -------------------------------------------------------------------------------- /src/remote.js: -------------------------------------------------------------------------------- 1 | import { deprecateV3 } from './util' 2 | 3 | export function parseRemote(remote) { 4 | if (remote && remote.host) return remote 5 | if (typeof remote !== 'string') throw new Error('A remote must be a string') 6 | if (remote === '') throw new Error('A remote cannot be an empty string') 7 | 8 | const matches = remote.match(/(([^@:]+)@)?([^@:]+)(:(.+))?/) 9 | 10 | if (matches) { 11 | const [, , user, host, , port] = matches 12 | const options = { user, host } 13 | if (port) options.port = Number(port) 14 | if (!user) { 15 | deprecateV3( 16 | 'Default user "deploy" is deprecated, please specify it explictly.', 17 | ) 18 | options.user = 'deploy' 19 | } 20 | return options 21 | } 22 | 23 | return { user: 'deploy', host: remote } 24 | } 25 | 26 | export function formatRemote({ user, host }) { 27 | return `${user}@${host}` 28 | } 29 | -------------------------------------------------------------------------------- /src/remote.test.js: -------------------------------------------------------------------------------- 1 | import { parseRemote, formatRemote } from './remote' 2 | 3 | describe('SSH remote', () => { 4 | describe('#parseRemote', () => { 5 | it('should return an error if not a string', () => { 6 | expect(() => { 7 | parseRemote({}) 8 | }).toThrow('A remote must be a string') 9 | }) 10 | 11 | it('should return an error if empty', () => { 12 | expect(() => { 13 | parseRemote('') 14 | }).toThrow('A remote cannot be an empty string') 15 | }) 16 | 17 | it('should return remote if it has an host', () => { 18 | const objRemote = { host: 'foo' } 19 | expect(parseRemote(objRemote)).toBe(objRemote) 20 | }) 21 | 22 | it('should use deploy as default user', () => { 23 | expect(parseRemote('host')).toEqual({ 24 | host: 'host', 25 | user: 'deploy', 26 | }) 27 | }) 28 | 29 | it('should parseRemote remote without port', () => { 30 | expect(parseRemote('user@host')).toEqual({ 31 | user: 'user', 32 | host: 'host', 33 | }) 34 | }) 35 | 36 | it('should parseRemote remote with port', () => { 37 | expect(parseRemote('user@host:300')).toEqual({ 38 | user: 'user', 39 | host: 'host', 40 | port: 300, 41 | }) 42 | }) 43 | }) 44 | 45 | describe('#format', () => { 46 | it('should format remote without port', () => { 47 | expect(formatRemote({ user: 'user', host: 'host' })).toBe('user@host') 48 | }) 49 | 50 | it('should format remote with port', () => { 51 | expect(formatRemote({ user: 'user', host: 'host', port: 3000 })).toBe( 52 | 'user@host', 53 | ) 54 | }) 55 | }) 56 | }) 57 | -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-console */ 2 | export const series = tasks => 3 | new Promise((resolve, reject) => { 4 | const tasksCopy = [...tasks] 5 | const next = results => { 6 | if (tasksCopy.length === 0) { 7 | resolve(results) 8 | return 9 | } 10 | const task = tasksCopy.shift() 11 | task().then(result => next([...results, result])).catch(reject) 12 | } 13 | next([]) 14 | }) 15 | 16 | export function deprecateV3(...args) { 17 | console.warn(...args, 'It will break in v3.0.0.') 18 | } 19 | -------------------------------------------------------------------------------- /src/util.test.js: -------------------------------------------------------------------------------- 1 | import { series } from './util' 2 | 3 | describe('util', () => { 4 | describe('#series', () => { 5 | it('should run tasks in series', async () => { 6 | const results = await series([async () => 'foo', async () => 'bar']) 7 | expect(results).toEqual(['foo', 'bar']) 8 | }) 9 | 10 | it('should handle errors', async () => { 11 | expect.assertions(1) 12 | try { 13 | await series([ 14 | async () => { 15 | throw new Error('bad') 16 | }, 17 | async () => 'bar', 18 | ]) 19 | } catch (error) { 20 | expect(error.message).toBe('bad') 21 | } 22 | }) 23 | }) 24 | }) 25 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@^3.0.4: 26 | version "3.3.0" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 28 | 29 | acorn@^4.0.4: 30 | version "4.0.13" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 32 | 33 | acorn@^5.1.1: 34 | version "5.1.1" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" 36 | 37 | ajv-keywords@^1.0.0: 38 | version "1.5.1" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 40 | 41 | ajv@^4.7.0, ajv@^4.9.1: 42 | version "4.11.8" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | ajv@^5.2.0: 49 | version "5.2.2" 50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" 51 | dependencies: 52 | co "^4.6.0" 53 | fast-deep-equal "^1.0.0" 54 | json-schema-traverse "^0.3.0" 55 | json-stable-stringify "^1.0.1" 56 | 57 | align-text@^0.1.1, align-text@^0.1.3: 58 | version "0.1.4" 59 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 60 | dependencies: 61 | kind-of "^3.0.2" 62 | longest "^1.0.1" 63 | repeat-string "^1.5.2" 64 | 65 | amdefine@>=0.0.4: 66 | version "1.0.1" 67 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 68 | 69 | ansi-escapes@^1.4.0: 70 | version "1.4.0" 71 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 72 | 73 | ansi-escapes@^2.0.0: 74 | version "2.0.0" 75 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 76 | 77 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 78 | version "2.1.1" 79 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 80 | 81 | ansi-regex@^3.0.0: 82 | version "3.0.0" 83 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 84 | 85 | ansi-styles@^2.2.1: 86 | version "2.2.1" 87 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 88 | 89 | ansi-styles@^3.0.0, ansi-styles@^3.1.0: 90 | version "3.2.0" 91 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 92 | dependencies: 93 | color-convert "^1.9.0" 94 | 95 | anymatch@^1.3.0: 96 | version "1.3.2" 97 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 98 | dependencies: 99 | micromatch "^2.1.5" 100 | normalize-path "^2.0.0" 101 | 102 | append-transform@^0.4.0: 103 | version "0.4.0" 104 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 105 | dependencies: 106 | default-require-extensions "^1.0.0" 107 | 108 | aproba@^1.0.3: 109 | version "1.1.2" 110 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 111 | 112 | are-we-there-yet@~1.1.2: 113 | version "1.1.4" 114 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 115 | dependencies: 116 | delegates "^1.0.0" 117 | readable-stream "^2.0.6" 118 | 119 | argparse@^1.0.7: 120 | version "1.0.9" 121 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 122 | dependencies: 123 | sprintf-js "~1.0.2" 124 | 125 | argv@0.0.2: 126 | version "0.0.2" 127 | resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" 128 | 129 | arr-diff@^2.0.0: 130 | version "2.0.0" 131 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 132 | dependencies: 133 | arr-flatten "^1.0.1" 134 | 135 | arr-flatten@^1.0.1: 136 | version "1.1.0" 137 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 138 | 139 | array-equal@^1.0.0: 140 | version "1.0.0" 141 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 142 | 143 | array-union@^1.0.1: 144 | version "1.0.2" 145 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 146 | dependencies: 147 | array-uniq "^1.0.1" 148 | 149 | array-uniq@^1.0.1: 150 | version "1.0.3" 151 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 152 | 153 | array-unique@^0.2.1: 154 | version "0.2.1" 155 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 156 | 157 | arrify@^1.0.0, arrify@^1.0.1: 158 | version "1.0.1" 159 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 160 | 161 | asn1@~0.2.3: 162 | version "0.2.3" 163 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 164 | 165 | assert-plus@1.0.0, assert-plus@^1.0.0: 166 | version "1.0.0" 167 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 168 | 169 | assert-plus@^0.2.0: 170 | version "0.2.0" 171 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 172 | 173 | async-each@^1.0.0: 174 | version "1.0.1" 175 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 176 | 177 | async@^1.4.0: 178 | version "1.5.2" 179 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 180 | 181 | async@^2.1.4: 182 | version "2.5.0" 183 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 184 | dependencies: 185 | lodash "^4.14.0" 186 | 187 | async@~0.2.10: 188 | version "0.2.10" 189 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 190 | 191 | asynckit@^0.4.0: 192 | version "0.4.0" 193 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 194 | 195 | aws-sign2@~0.6.0: 196 | version "0.6.0" 197 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 198 | 199 | aws4@^1.2.1: 200 | version "1.6.0" 201 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 202 | 203 | babel-cli@^6.24.1: 204 | version "6.24.1" 205 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 206 | dependencies: 207 | babel-core "^6.24.1" 208 | babel-polyfill "^6.23.0" 209 | babel-register "^6.24.1" 210 | babel-runtime "^6.22.0" 211 | commander "^2.8.1" 212 | convert-source-map "^1.1.0" 213 | fs-readdir-recursive "^1.0.0" 214 | glob "^7.0.0" 215 | lodash "^4.2.0" 216 | output-file-sync "^1.1.0" 217 | path-is-absolute "^1.0.0" 218 | slash "^1.0.0" 219 | source-map "^0.5.0" 220 | v8flags "^2.0.10" 221 | optionalDependencies: 222 | chokidar "^1.6.1" 223 | 224 | babel-code-frame@^6.22.0: 225 | version "6.22.0" 226 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 227 | dependencies: 228 | chalk "^1.1.0" 229 | esutils "^2.0.2" 230 | js-tokens "^3.0.0" 231 | 232 | babel-core@^6.0.0, babel-core@^6.24.1: 233 | version "6.25.0" 234 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 235 | dependencies: 236 | babel-code-frame "^6.22.0" 237 | babel-generator "^6.25.0" 238 | babel-helpers "^6.24.1" 239 | babel-messages "^6.23.0" 240 | babel-register "^6.24.1" 241 | babel-runtime "^6.22.0" 242 | babel-template "^6.25.0" 243 | babel-traverse "^6.25.0" 244 | babel-types "^6.25.0" 245 | babylon "^6.17.2" 246 | convert-source-map "^1.1.0" 247 | debug "^2.1.1" 248 | json5 "^0.5.0" 249 | lodash "^4.2.0" 250 | minimatch "^3.0.2" 251 | path-is-absolute "^1.0.0" 252 | private "^0.1.6" 253 | slash "^1.0.0" 254 | source-map "^0.5.0" 255 | 256 | babel-eslint@^7.2.3: 257 | version "7.2.3" 258 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 259 | dependencies: 260 | babel-code-frame "^6.22.0" 261 | babel-traverse "^6.23.1" 262 | babel-types "^6.23.0" 263 | babylon "^6.17.0" 264 | 265 | babel-generator@^6.18.0, babel-generator@^6.25.0: 266 | version "6.25.0" 267 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 268 | dependencies: 269 | babel-messages "^6.23.0" 270 | babel-runtime "^6.22.0" 271 | babel-types "^6.25.0" 272 | detect-indent "^4.0.0" 273 | jsesc "^1.3.0" 274 | lodash "^4.2.0" 275 | source-map "^0.5.0" 276 | trim-right "^1.0.1" 277 | 278 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 279 | version "6.24.1" 280 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 281 | dependencies: 282 | babel-helper-explode-assignable-expression "^6.24.1" 283 | babel-runtime "^6.22.0" 284 | babel-types "^6.24.1" 285 | 286 | babel-helper-call-delegate@^6.24.1: 287 | version "6.24.1" 288 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 289 | dependencies: 290 | babel-helper-hoist-variables "^6.24.1" 291 | babel-runtime "^6.22.0" 292 | babel-traverse "^6.24.1" 293 | babel-types "^6.24.1" 294 | 295 | babel-helper-define-map@^6.24.1: 296 | version "6.24.1" 297 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 298 | dependencies: 299 | babel-helper-function-name "^6.24.1" 300 | babel-runtime "^6.22.0" 301 | babel-types "^6.24.1" 302 | lodash "^4.2.0" 303 | 304 | babel-helper-explode-assignable-expression@^6.24.1: 305 | version "6.24.1" 306 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 307 | dependencies: 308 | babel-runtime "^6.22.0" 309 | babel-traverse "^6.24.1" 310 | babel-types "^6.24.1" 311 | 312 | babel-helper-function-name@^6.24.1: 313 | version "6.24.1" 314 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 315 | dependencies: 316 | babel-helper-get-function-arity "^6.24.1" 317 | babel-runtime "^6.22.0" 318 | babel-template "^6.24.1" 319 | babel-traverse "^6.24.1" 320 | babel-types "^6.24.1" 321 | 322 | babel-helper-get-function-arity@^6.24.1: 323 | version "6.24.1" 324 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 325 | dependencies: 326 | babel-runtime "^6.22.0" 327 | babel-types "^6.24.1" 328 | 329 | babel-helper-hoist-variables@^6.24.1: 330 | version "6.24.1" 331 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 332 | dependencies: 333 | babel-runtime "^6.22.0" 334 | babel-types "^6.24.1" 335 | 336 | babel-helper-optimise-call-expression@^6.24.1: 337 | version "6.24.1" 338 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 339 | dependencies: 340 | babel-runtime "^6.22.0" 341 | babel-types "^6.24.1" 342 | 343 | babel-helper-regex@^6.24.1: 344 | version "6.24.1" 345 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 346 | dependencies: 347 | babel-runtime "^6.22.0" 348 | babel-types "^6.24.1" 349 | lodash "^4.2.0" 350 | 351 | babel-helper-remap-async-to-generator@^6.24.1: 352 | version "6.24.1" 353 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 354 | dependencies: 355 | babel-helper-function-name "^6.24.1" 356 | babel-runtime "^6.22.0" 357 | babel-template "^6.24.1" 358 | babel-traverse "^6.24.1" 359 | babel-types "^6.24.1" 360 | 361 | babel-helper-replace-supers@^6.24.1: 362 | version "6.24.1" 363 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 364 | dependencies: 365 | babel-helper-optimise-call-expression "^6.24.1" 366 | babel-messages "^6.23.0" 367 | babel-runtime "^6.22.0" 368 | babel-template "^6.24.1" 369 | babel-traverse "^6.24.1" 370 | babel-types "^6.24.1" 371 | 372 | babel-helpers@^6.24.1: 373 | version "6.24.1" 374 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 375 | dependencies: 376 | babel-runtime "^6.22.0" 377 | babel-template "^6.24.1" 378 | 379 | babel-jest@^20.0.3: 380 | version "20.0.3" 381 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 382 | dependencies: 383 | babel-core "^6.0.0" 384 | babel-plugin-istanbul "^4.0.0" 385 | babel-preset-jest "^20.0.3" 386 | 387 | babel-messages@^6.23.0: 388 | version "6.23.0" 389 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 390 | dependencies: 391 | babel-runtime "^6.22.0" 392 | 393 | babel-plugin-check-es2015-constants@^6.22.0: 394 | version "6.22.0" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 396 | dependencies: 397 | babel-runtime "^6.22.0" 398 | 399 | babel-plugin-istanbul@^4.0.0: 400 | version "4.1.4" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 402 | dependencies: 403 | find-up "^2.1.0" 404 | istanbul-lib-instrument "^1.7.2" 405 | test-exclude "^4.1.1" 406 | 407 | babel-plugin-jest-hoist@^20.0.3: 408 | version "20.0.3" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 410 | 411 | babel-plugin-syntax-async-functions@^6.8.0: 412 | version "6.13.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 414 | 415 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 416 | version "6.13.0" 417 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 418 | 419 | babel-plugin-syntax-object-rest-spread@^6.8.0: 420 | version "6.13.0" 421 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 422 | 423 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 424 | version "6.22.0" 425 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 426 | 427 | babel-plugin-transform-async-to-generator@^6.22.0: 428 | version "6.24.1" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 430 | dependencies: 431 | babel-helper-remap-async-to-generator "^6.24.1" 432 | babel-plugin-syntax-async-functions "^6.8.0" 433 | babel-runtime "^6.22.0" 434 | 435 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 436 | version "6.22.0" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 438 | dependencies: 439 | babel-runtime "^6.22.0" 440 | 441 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 442 | version "6.22.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 444 | dependencies: 445 | babel-runtime "^6.22.0" 446 | 447 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 448 | version "6.24.1" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | babel-template "^6.24.1" 453 | babel-traverse "^6.24.1" 454 | babel-types "^6.24.1" 455 | lodash "^4.2.0" 456 | 457 | babel-plugin-transform-es2015-classes@^6.23.0: 458 | version "6.24.1" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 460 | dependencies: 461 | babel-helper-define-map "^6.24.1" 462 | babel-helper-function-name "^6.24.1" 463 | babel-helper-optimise-call-expression "^6.24.1" 464 | babel-helper-replace-supers "^6.24.1" 465 | babel-messages "^6.23.0" 466 | babel-runtime "^6.22.0" 467 | babel-template "^6.24.1" 468 | babel-traverse "^6.24.1" 469 | babel-types "^6.24.1" 470 | 471 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 472 | version "6.24.1" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 474 | dependencies: 475 | babel-runtime "^6.22.0" 476 | babel-template "^6.24.1" 477 | 478 | babel-plugin-transform-es2015-destructuring@^6.23.0: 479 | version "6.23.0" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 481 | dependencies: 482 | babel-runtime "^6.22.0" 483 | 484 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 485 | version "6.24.1" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 487 | dependencies: 488 | babel-runtime "^6.22.0" 489 | babel-types "^6.24.1" 490 | 491 | babel-plugin-transform-es2015-for-of@^6.23.0: 492 | version "6.23.0" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 494 | dependencies: 495 | babel-runtime "^6.22.0" 496 | 497 | babel-plugin-transform-es2015-function-name@^6.22.0: 498 | version "6.24.1" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 500 | dependencies: 501 | babel-helper-function-name "^6.24.1" 502 | babel-runtime "^6.22.0" 503 | babel-types "^6.24.1" 504 | 505 | babel-plugin-transform-es2015-literals@^6.22.0: 506 | version "6.22.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 508 | dependencies: 509 | babel-runtime "^6.22.0" 510 | 511 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 512 | version "6.24.1" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 514 | dependencies: 515 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 516 | babel-runtime "^6.22.0" 517 | babel-template "^6.24.1" 518 | 519 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 520 | version "6.24.1" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 522 | dependencies: 523 | babel-plugin-transform-strict-mode "^6.24.1" 524 | babel-runtime "^6.22.0" 525 | babel-template "^6.24.1" 526 | babel-types "^6.24.1" 527 | 528 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 529 | version "6.24.1" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 531 | dependencies: 532 | babel-helper-hoist-variables "^6.24.1" 533 | babel-runtime "^6.22.0" 534 | babel-template "^6.24.1" 535 | 536 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 537 | version "6.24.1" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 539 | dependencies: 540 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 541 | babel-runtime "^6.22.0" 542 | babel-template "^6.24.1" 543 | 544 | babel-plugin-transform-es2015-object-super@^6.22.0: 545 | version "6.24.1" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 547 | dependencies: 548 | babel-helper-replace-supers "^6.24.1" 549 | babel-runtime "^6.22.0" 550 | 551 | babel-plugin-transform-es2015-parameters@^6.23.0: 552 | version "6.24.1" 553 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 554 | dependencies: 555 | babel-helper-call-delegate "^6.24.1" 556 | babel-helper-get-function-arity "^6.24.1" 557 | babel-runtime "^6.22.0" 558 | babel-template "^6.24.1" 559 | babel-traverse "^6.24.1" 560 | babel-types "^6.24.1" 561 | 562 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 563 | version "6.24.1" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 565 | dependencies: 566 | babel-runtime "^6.22.0" 567 | babel-types "^6.24.1" 568 | 569 | babel-plugin-transform-es2015-spread@^6.22.0: 570 | version "6.22.0" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 572 | dependencies: 573 | babel-runtime "^6.22.0" 574 | 575 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 576 | version "6.24.1" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 578 | dependencies: 579 | babel-helper-regex "^6.24.1" 580 | babel-runtime "^6.22.0" 581 | babel-types "^6.24.1" 582 | 583 | babel-plugin-transform-es2015-template-literals@^6.22.0: 584 | version "6.22.0" 585 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 586 | dependencies: 587 | babel-runtime "^6.22.0" 588 | 589 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 590 | version "6.23.0" 591 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 592 | dependencies: 593 | babel-runtime "^6.22.0" 594 | 595 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 596 | version "6.24.1" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 598 | dependencies: 599 | babel-helper-regex "^6.24.1" 600 | babel-runtime "^6.22.0" 601 | regexpu-core "^2.0.0" 602 | 603 | babel-plugin-transform-exponentiation-operator@^6.22.0: 604 | version "6.24.1" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 606 | dependencies: 607 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 608 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 609 | babel-runtime "^6.22.0" 610 | 611 | babel-plugin-transform-object-rest-spread@^6.23.0: 612 | version "6.23.0" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 614 | dependencies: 615 | babel-plugin-syntax-object-rest-spread "^6.8.0" 616 | babel-runtime "^6.22.0" 617 | 618 | babel-plugin-transform-regenerator@^6.22.0: 619 | version "6.24.1" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 621 | dependencies: 622 | regenerator-transform "0.9.11" 623 | 624 | babel-plugin-transform-strict-mode@^6.24.1: 625 | version "6.24.1" 626 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 627 | dependencies: 628 | babel-runtime "^6.22.0" 629 | babel-types "^6.24.1" 630 | 631 | babel-polyfill@^6.23.0: 632 | version "6.23.0" 633 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 634 | dependencies: 635 | babel-runtime "^6.22.0" 636 | core-js "^2.4.0" 637 | regenerator-runtime "^0.10.0" 638 | 639 | babel-preset-env@^1.6.0: 640 | version "1.6.0" 641 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.0.tgz#2de1c782a780a0a5d605d199c957596da43c44e4" 642 | dependencies: 643 | babel-plugin-check-es2015-constants "^6.22.0" 644 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 645 | babel-plugin-transform-async-to-generator "^6.22.0" 646 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 647 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 648 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 649 | babel-plugin-transform-es2015-classes "^6.23.0" 650 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 651 | babel-plugin-transform-es2015-destructuring "^6.23.0" 652 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 653 | babel-plugin-transform-es2015-for-of "^6.23.0" 654 | babel-plugin-transform-es2015-function-name "^6.22.0" 655 | babel-plugin-transform-es2015-literals "^6.22.0" 656 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 657 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 658 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 659 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 660 | babel-plugin-transform-es2015-object-super "^6.22.0" 661 | babel-plugin-transform-es2015-parameters "^6.23.0" 662 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 663 | babel-plugin-transform-es2015-spread "^6.22.0" 664 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 665 | babel-plugin-transform-es2015-template-literals "^6.22.0" 666 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 667 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 668 | babel-plugin-transform-exponentiation-operator "^6.22.0" 669 | babel-plugin-transform-regenerator "^6.22.0" 670 | browserslist "^2.1.2" 671 | invariant "^2.2.2" 672 | semver "^5.3.0" 673 | 674 | babel-preset-jest@^20.0.3: 675 | version "20.0.3" 676 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 677 | dependencies: 678 | babel-plugin-jest-hoist "^20.0.3" 679 | 680 | babel-register@^6.24.1: 681 | version "6.24.1" 682 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 683 | dependencies: 684 | babel-core "^6.24.1" 685 | babel-runtime "^6.22.0" 686 | core-js "^2.4.0" 687 | home-or-tmp "^2.0.0" 688 | lodash "^4.2.0" 689 | mkdirp "^0.5.1" 690 | source-map-support "^0.4.2" 691 | 692 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 693 | version "6.25.0" 694 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.25.0.tgz#33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c" 695 | dependencies: 696 | core-js "^2.4.0" 697 | regenerator-runtime "^0.10.0" 698 | 699 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 700 | version "6.25.0" 701 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 702 | dependencies: 703 | babel-runtime "^6.22.0" 704 | babel-traverse "^6.25.0" 705 | babel-types "^6.25.0" 706 | babylon "^6.17.2" 707 | lodash "^4.2.0" 708 | 709 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.25.0: 710 | version "6.25.0" 711 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 712 | dependencies: 713 | babel-code-frame "^6.22.0" 714 | babel-messages "^6.23.0" 715 | babel-runtime "^6.22.0" 716 | babel-types "^6.25.0" 717 | babylon "^6.17.2" 718 | debug "^2.2.0" 719 | globals "^9.0.0" 720 | invariant "^2.2.0" 721 | lodash "^4.2.0" 722 | 723 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0: 724 | version "6.25.0" 725 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 726 | dependencies: 727 | babel-runtime "^6.22.0" 728 | esutils "^2.0.2" 729 | lodash "^4.2.0" 730 | to-fast-properties "^1.0.1" 731 | 732 | babylon@^6.17.0, babylon@^6.17.2, babylon@^6.17.4: 733 | version "6.17.4" 734 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 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.9.0" 748 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.9.0.tgz#66506c16ce6f4d6928a5b3cd6a33ca41e941e37b" 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 | boom@2.x.x: 757 | version "2.10.1" 758 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 759 | dependencies: 760 | hoek "2.x.x" 761 | 762 | brace-expansion@^1.1.7: 763 | version "1.1.8" 764 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 765 | dependencies: 766 | balanced-match "^1.0.0" 767 | concat-map "0.0.1" 768 | 769 | braces@^1.8.2: 770 | version "1.8.5" 771 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 772 | dependencies: 773 | expand-range "^1.8.1" 774 | preserve "^0.2.0" 775 | repeat-element "^1.1.2" 776 | 777 | browser-resolve@^1.11.2: 778 | version "1.11.2" 779 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 780 | dependencies: 781 | resolve "1.1.7" 782 | 783 | browserslist@^2.1.2: 784 | version "2.3.0" 785 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.3.0.tgz#b2aa76415c71643fe2368f6243b43bbbb4211752" 786 | dependencies: 787 | caniuse-lite "^1.0.30000710" 788 | electron-to-chromium "^1.3.17" 789 | 790 | bser@1.0.2: 791 | version "1.0.2" 792 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 793 | dependencies: 794 | node-int64 "^0.4.0" 795 | 796 | bser@^2.0.0: 797 | version "2.0.0" 798 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 799 | dependencies: 800 | node-int64 "^0.4.0" 801 | 802 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 803 | version "1.1.1" 804 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 805 | 806 | caller-path@^0.1.0: 807 | version "0.1.0" 808 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 809 | dependencies: 810 | callsites "^0.2.0" 811 | 812 | callsites@^0.2.0: 813 | version "0.2.0" 814 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 815 | 816 | callsites@^2.0.0: 817 | version "2.0.0" 818 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 819 | 820 | camelcase@^1.0.2: 821 | version "1.2.1" 822 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 823 | 824 | camelcase@^3.0.0: 825 | version "3.0.0" 826 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 827 | 828 | caniuse-lite@^1.0.30000710: 829 | version "1.0.30000710" 830 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000710.tgz#1c249bf7c6a61161c9b10906e3ad9fa5b6761af1" 831 | 832 | caseless@~0.12.0: 833 | version "0.12.0" 834 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 835 | 836 | center-align@^0.1.1: 837 | version "0.1.3" 838 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 839 | dependencies: 840 | align-text "^0.1.3" 841 | lazy-cache "^1.0.3" 842 | 843 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 844 | version "1.1.3" 845 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 846 | dependencies: 847 | ansi-styles "^2.2.1" 848 | escape-string-regexp "^1.0.2" 849 | has-ansi "^2.0.0" 850 | strip-ansi "^3.0.0" 851 | supports-color "^2.0.0" 852 | 853 | chalk@^2.0.0: 854 | version "2.0.1" 855 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.0.1.tgz#dbec49436d2ae15f536114e76d14656cdbc0f44d" 856 | dependencies: 857 | ansi-styles "^3.1.0" 858 | escape-string-regexp "^1.0.5" 859 | supports-color "^4.0.0" 860 | 861 | chokidar@^1.6.1: 862 | version "1.7.0" 863 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 864 | dependencies: 865 | anymatch "^1.3.0" 866 | async-each "^1.0.0" 867 | glob-parent "^2.0.0" 868 | inherits "^2.0.1" 869 | is-binary-path "^1.0.0" 870 | is-glob "^2.0.0" 871 | path-is-absolute "^1.0.0" 872 | readdirp "^2.0.0" 873 | optionalDependencies: 874 | fsevents "^1.0.0" 875 | 876 | ci-info@^1.0.0: 877 | version "1.0.0" 878 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 879 | 880 | circular-json@^0.3.1: 881 | version "0.3.3" 882 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 883 | 884 | cli-cursor@^2.1.0: 885 | version "2.1.0" 886 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 887 | dependencies: 888 | restore-cursor "^2.0.0" 889 | 890 | cli-width@^2.0.0: 891 | version "2.1.0" 892 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 893 | 894 | cliui@^2.1.0: 895 | version "2.1.0" 896 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 897 | dependencies: 898 | center-align "^0.1.1" 899 | right-align "^0.1.1" 900 | wordwrap "0.0.2" 901 | 902 | cliui@^3.2.0: 903 | version "3.2.0" 904 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 905 | dependencies: 906 | string-width "^1.0.1" 907 | strip-ansi "^3.0.1" 908 | wrap-ansi "^2.0.0" 909 | 910 | co@^4.6.0: 911 | version "4.6.0" 912 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 913 | 914 | code-point-at@^1.0.0: 915 | version "1.1.0" 916 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 917 | 918 | codecov@^2.3.0: 919 | version "2.3.0" 920 | resolved "https://registry.yarnpkg.com/codecov/-/codecov-2.3.0.tgz#ad25a2c6e0442d13740d9d4ddbb9a3e2714330f4" 921 | dependencies: 922 | argv "0.0.2" 923 | request "2.81.0" 924 | urlgrey "0.4.4" 925 | 926 | color-convert@^1.9.0: 927 | version "1.9.0" 928 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 929 | dependencies: 930 | color-name "^1.1.1" 931 | 932 | color-name@^1.1.1: 933 | version "1.1.3" 934 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 935 | 936 | combined-stream@^1.0.5, combined-stream@~1.0.5: 937 | version "1.0.5" 938 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 939 | dependencies: 940 | delayed-stream "~1.0.0" 941 | 942 | commander@^2.8.1: 943 | version "2.11.0" 944 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 945 | 946 | concat-map@0.0.1: 947 | version "0.0.1" 948 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 949 | 950 | concat-stream@^1.6.0: 951 | version "1.6.0" 952 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 953 | dependencies: 954 | inherits "^2.0.3" 955 | readable-stream "^2.2.2" 956 | typedarray "^0.0.6" 957 | 958 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 959 | version "1.1.0" 960 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 961 | 962 | contains-path@^0.1.0: 963 | version "0.1.0" 964 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 965 | 966 | content-type-parser@^1.0.1: 967 | version "1.0.1" 968 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 969 | 970 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 971 | version "1.5.0" 972 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 973 | 974 | core-js@^2.4.0: 975 | version "2.4.1" 976 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 977 | 978 | core-util-is@1.0.2, core-util-is@~1.0.0: 979 | version "1.0.2" 980 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 981 | 982 | cross-spawn@^5.1.0: 983 | version "5.1.0" 984 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 985 | dependencies: 986 | lru-cache "^4.0.1" 987 | shebang-command "^1.2.0" 988 | which "^1.2.9" 989 | 990 | cryptiles@2.x.x: 991 | version "2.0.5" 992 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 993 | dependencies: 994 | boom "2.x.x" 995 | 996 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 997 | version "0.3.2" 998 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 999 | 1000 | "cssstyle@>= 0.2.37 < 0.3.0": 1001 | version "0.2.37" 1002 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1003 | dependencies: 1004 | cssom "0.3.x" 1005 | 1006 | dashdash@^1.12.0: 1007 | version "1.14.1" 1008 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1009 | dependencies: 1010 | assert-plus "^1.0.0" 1011 | 1012 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1013 | version "2.6.8" 1014 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1015 | dependencies: 1016 | ms "2.0.0" 1017 | 1018 | decamelize@^1.0.0, decamelize@^1.1.1: 1019 | version "1.2.0" 1020 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1021 | 1022 | deep-extend@~0.4.0: 1023 | version "0.4.2" 1024 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1025 | 1026 | deep-is@~0.1.3: 1027 | version "0.1.3" 1028 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1029 | 1030 | default-require-extensions@^1.0.0: 1031 | version "1.0.0" 1032 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1033 | dependencies: 1034 | strip-bom "^2.0.0" 1035 | 1036 | del@^2.0.2: 1037 | version "2.2.2" 1038 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1039 | dependencies: 1040 | globby "^5.0.0" 1041 | is-path-cwd "^1.0.0" 1042 | is-path-in-cwd "^1.0.0" 1043 | object-assign "^4.0.1" 1044 | pify "^2.0.0" 1045 | pinkie-promise "^2.0.0" 1046 | rimraf "^2.2.8" 1047 | 1048 | delayed-stream@~1.0.0: 1049 | version "1.0.0" 1050 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1051 | 1052 | delegates@^1.0.0: 1053 | version "1.0.0" 1054 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1055 | 1056 | detect-indent@^4.0.0: 1057 | version "4.0.0" 1058 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1059 | dependencies: 1060 | repeating "^2.0.0" 1061 | 1062 | diff@^3.2.0: 1063 | version "3.3.0" 1064 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" 1065 | 1066 | doctrine@1.5.0: 1067 | version "1.5.0" 1068 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1069 | dependencies: 1070 | esutils "^2.0.2" 1071 | isarray "^1.0.0" 1072 | 1073 | doctrine@^2.0.0: 1074 | version "2.0.0" 1075 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1076 | dependencies: 1077 | esutils "^2.0.2" 1078 | isarray "^1.0.0" 1079 | 1080 | ecc-jsbn@~0.1.1: 1081 | version "0.1.1" 1082 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1083 | dependencies: 1084 | jsbn "~0.1.0" 1085 | 1086 | electron-to-chromium@^1.3.17: 1087 | version "1.3.17" 1088 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.17.tgz#41c13457cc7166c5c15e767ae61d86a8cacdee5d" 1089 | 1090 | errno@^0.1.4: 1091 | version "0.1.4" 1092 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1093 | dependencies: 1094 | prr "~0.0.0" 1095 | 1096 | error-ex@^1.2.0: 1097 | version "1.3.1" 1098 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1099 | dependencies: 1100 | is-arrayish "^0.2.1" 1101 | 1102 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1103 | version "1.0.5" 1104 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1105 | 1106 | escodegen@^1.6.1: 1107 | version "1.8.1" 1108 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1109 | dependencies: 1110 | esprima "^2.7.1" 1111 | estraverse "^1.9.1" 1112 | esutils "^2.0.2" 1113 | optionator "^0.8.1" 1114 | optionalDependencies: 1115 | source-map "~0.2.0" 1116 | 1117 | eslint-config-airbnb-base@^11.3.1: 1118 | version "11.3.1" 1119 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.3.1.tgz#c0ab108c9beed503cb999e4c60f4ef98eda0ed30" 1120 | dependencies: 1121 | eslint-restricted-globals "^0.1.1" 1122 | 1123 | eslint-config-prettier@^2.3.0: 1124 | version "2.3.0" 1125 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.3.0.tgz#b75b1eabea0c8b97b34403647ee25db349b9d8a0" 1126 | dependencies: 1127 | get-stdin "^5.0.1" 1128 | 1129 | eslint-import-resolver-node@^0.3.1: 1130 | version "0.3.1" 1131 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 1132 | dependencies: 1133 | debug "^2.6.8" 1134 | resolve "^1.2.0" 1135 | 1136 | eslint-module-utils@^2.1.1: 1137 | version "2.1.1" 1138 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1139 | dependencies: 1140 | debug "^2.6.8" 1141 | pkg-dir "^1.0.0" 1142 | 1143 | eslint-plugin-import@^2.7.0: 1144 | version "2.7.0" 1145 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f" 1146 | dependencies: 1147 | builtin-modules "^1.1.1" 1148 | contains-path "^0.1.0" 1149 | debug "^2.6.8" 1150 | doctrine "1.5.0" 1151 | eslint-import-resolver-node "^0.3.1" 1152 | eslint-module-utils "^2.1.1" 1153 | has "^1.0.1" 1154 | lodash.cond "^4.3.0" 1155 | minimatch "^3.0.3" 1156 | read-pkg-up "^2.0.0" 1157 | 1158 | eslint-restricted-globals@^0.1.1: 1159 | version "0.1.1" 1160 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1161 | 1162 | eslint-scope@^3.7.1: 1163 | version "3.7.1" 1164 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1165 | dependencies: 1166 | esrecurse "^4.1.0" 1167 | estraverse "^4.1.1" 1168 | 1169 | eslint@^4.4.1: 1170 | version "4.4.1" 1171 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.4.1.tgz#99cd7eafcffca2ff99a5c8f5f2a474d6364b4bd3" 1172 | dependencies: 1173 | ajv "^5.2.0" 1174 | babel-code-frame "^6.22.0" 1175 | chalk "^1.1.3" 1176 | concat-stream "^1.6.0" 1177 | cross-spawn "^5.1.0" 1178 | debug "^2.6.8" 1179 | doctrine "^2.0.0" 1180 | eslint-scope "^3.7.1" 1181 | espree "^3.5.0" 1182 | esquery "^1.0.0" 1183 | estraverse "^4.2.0" 1184 | esutils "^2.0.2" 1185 | file-entry-cache "^2.0.0" 1186 | functional-red-black-tree "^1.0.1" 1187 | glob "^7.1.2" 1188 | globals "^9.17.0" 1189 | ignore "^3.3.3" 1190 | imurmurhash "^0.1.4" 1191 | inquirer "^3.0.6" 1192 | is-resolvable "^1.0.0" 1193 | js-yaml "^3.9.1" 1194 | json-stable-stringify "^1.0.1" 1195 | levn "^0.3.0" 1196 | lodash "^4.17.4" 1197 | minimatch "^3.0.2" 1198 | mkdirp "^0.5.1" 1199 | natural-compare "^1.4.0" 1200 | optionator "^0.8.2" 1201 | path-is-inside "^1.0.2" 1202 | pluralize "^4.0.0" 1203 | progress "^2.0.0" 1204 | require-uncached "^1.0.3" 1205 | semver "^5.3.0" 1206 | strip-json-comments "~2.0.1" 1207 | table "^4.0.1" 1208 | text-table "~0.2.0" 1209 | 1210 | espree@^3.5.0: 1211 | version "3.5.0" 1212 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d" 1213 | dependencies: 1214 | acorn "^5.1.1" 1215 | acorn-jsx "^3.0.0" 1216 | 1217 | esprima@^2.7.1: 1218 | version "2.7.3" 1219 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1220 | 1221 | esprima@^4.0.0: 1222 | version "4.0.0" 1223 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1224 | 1225 | esquery@^1.0.0: 1226 | version "1.0.0" 1227 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1228 | dependencies: 1229 | estraverse "^4.0.0" 1230 | 1231 | esrecurse@^4.1.0: 1232 | version "4.2.0" 1233 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1234 | dependencies: 1235 | estraverse "^4.1.0" 1236 | object-assign "^4.0.1" 1237 | 1238 | estraverse@^1.9.1: 1239 | version "1.9.3" 1240 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1241 | 1242 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1243 | version "4.2.0" 1244 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1245 | 1246 | esutils@^2.0.2: 1247 | version "2.0.2" 1248 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1249 | 1250 | exec-sh@^0.2.0: 1251 | version "0.2.0" 1252 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1253 | dependencies: 1254 | merge "^1.1.3" 1255 | 1256 | expand-brackets@^0.1.4: 1257 | version "0.1.5" 1258 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1259 | dependencies: 1260 | is-posix-bracket "^0.1.0" 1261 | 1262 | expand-range@^1.8.1: 1263 | version "1.8.2" 1264 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1265 | dependencies: 1266 | fill-range "^2.1.0" 1267 | 1268 | extend@~3.0.0: 1269 | version "3.0.1" 1270 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1271 | 1272 | external-editor@^2.0.4: 1273 | version "2.0.4" 1274 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1275 | dependencies: 1276 | iconv-lite "^0.4.17" 1277 | jschardet "^1.4.2" 1278 | tmp "^0.0.31" 1279 | 1280 | extglob@^0.3.1: 1281 | version "0.3.2" 1282 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1283 | dependencies: 1284 | is-extglob "^1.0.0" 1285 | 1286 | extsprintf@1.3.0, extsprintf@^1.2.0: 1287 | version "1.3.0" 1288 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1289 | 1290 | fast-deep-equal@^1.0.0: 1291 | version "1.0.0" 1292 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1293 | 1294 | fast-levenshtein@~2.0.4: 1295 | version "2.0.6" 1296 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1297 | 1298 | fb-watchman@^1.8.0: 1299 | version "1.9.2" 1300 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1301 | dependencies: 1302 | bser "1.0.2" 1303 | 1304 | fb-watchman@^2.0.0: 1305 | version "2.0.0" 1306 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1307 | dependencies: 1308 | bser "^2.0.0" 1309 | 1310 | figures@^2.0.0: 1311 | version "2.0.0" 1312 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1313 | dependencies: 1314 | escape-string-regexp "^1.0.5" 1315 | 1316 | file-entry-cache@^2.0.0: 1317 | version "2.0.0" 1318 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1319 | dependencies: 1320 | flat-cache "^1.2.1" 1321 | object-assign "^4.0.1" 1322 | 1323 | filename-regex@^2.0.0: 1324 | version "2.0.1" 1325 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1326 | 1327 | fileset@^2.0.2: 1328 | version "2.0.3" 1329 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1330 | dependencies: 1331 | glob "^7.0.3" 1332 | minimatch "^3.0.3" 1333 | 1334 | fill-range@^2.1.0: 1335 | version "2.2.3" 1336 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1337 | dependencies: 1338 | is-number "^2.1.0" 1339 | isobject "^2.0.0" 1340 | randomatic "^1.1.3" 1341 | repeat-element "^1.1.2" 1342 | repeat-string "^1.5.2" 1343 | 1344 | find-up@^1.0.0: 1345 | version "1.1.2" 1346 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1347 | dependencies: 1348 | path-exists "^2.0.0" 1349 | pinkie-promise "^2.0.0" 1350 | 1351 | find-up@^2.0.0, find-up@^2.1.0: 1352 | version "2.1.0" 1353 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1354 | dependencies: 1355 | locate-path "^2.0.0" 1356 | 1357 | flat-cache@^1.2.1: 1358 | version "1.2.2" 1359 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1360 | dependencies: 1361 | circular-json "^0.3.1" 1362 | del "^2.0.2" 1363 | graceful-fs "^4.1.2" 1364 | write "^0.2.1" 1365 | 1366 | for-in@^1.0.1: 1367 | version "1.0.2" 1368 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1369 | 1370 | for-own@^0.1.4: 1371 | version "0.1.5" 1372 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1373 | dependencies: 1374 | for-in "^1.0.1" 1375 | 1376 | forever-agent@~0.6.1: 1377 | version "0.6.1" 1378 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1379 | 1380 | form-data@~2.1.1: 1381 | version "2.1.4" 1382 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1383 | dependencies: 1384 | asynckit "^0.4.0" 1385 | combined-stream "^1.0.5" 1386 | mime-types "^2.1.12" 1387 | 1388 | fs-readdir-recursive@^1.0.0: 1389 | version "1.0.0" 1390 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1391 | 1392 | fs.realpath@^1.0.0: 1393 | version "1.0.0" 1394 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1395 | 1396 | fsevents@^1.0.0: 1397 | version "1.1.2" 1398 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1399 | dependencies: 1400 | nan "^2.3.0" 1401 | node-pre-gyp "^0.6.36" 1402 | 1403 | fstream-ignore@^1.0.5: 1404 | version "1.0.5" 1405 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1406 | dependencies: 1407 | fstream "^1.0.0" 1408 | inherits "2" 1409 | minimatch "^3.0.0" 1410 | 1411 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1412 | version "1.0.11" 1413 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1414 | dependencies: 1415 | graceful-fs "^4.1.2" 1416 | inherits "~2.0.0" 1417 | mkdirp ">=0.5 0" 1418 | rimraf "2" 1419 | 1420 | function-bind@^1.0.2: 1421 | version "1.1.0" 1422 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1423 | 1424 | functional-red-black-tree@^1.0.1: 1425 | version "1.0.1" 1426 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1427 | 1428 | gauge@~2.7.3: 1429 | version "2.7.4" 1430 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1431 | dependencies: 1432 | aproba "^1.0.3" 1433 | console-control-strings "^1.0.0" 1434 | has-unicode "^2.0.0" 1435 | object-assign "^4.1.0" 1436 | signal-exit "^3.0.0" 1437 | string-width "^1.0.1" 1438 | strip-ansi "^3.0.1" 1439 | wide-align "^1.1.0" 1440 | 1441 | get-caller-file@^1.0.1: 1442 | version "1.0.2" 1443 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1444 | 1445 | get-stdin@^5.0.1: 1446 | version "5.0.1" 1447 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1448 | 1449 | getpass@^0.1.1: 1450 | version "0.1.7" 1451 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1452 | dependencies: 1453 | assert-plus "^1.0.0" 1454 | 1455 | glob-base@^0.3.0: 1456 | version "0.3.0" 1457 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1458 | dependencies: 1459 | glob-parent "^2.0.0" 1460 | is-glob "^2.0.0" 1461 | 1462 | glob-parent@^2.0.0: 1463 | version "2.0.0" 1464 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1465 | dependencies: 1466 | is-glob "^2.0.0" 1467 | 1468 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1469 | version "7.1.2" 1470 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1471 | dependencies: 1472 | fs.realpath "^1.0.0" 1473 | inflight "^1.0.4" 1474 | inherits "2" 1475 | minimatch "^3.0.4" 1476 | once "^1.3.0" 1477 | path-is-absolute "^1.0.0" 1478 | 1479 | globals@^9.0.0, globals@^9.17.0: 1480 | version "9.18.0" 1481 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1482 | 1483 | globby@^5.0.0: 1484 | version "5.0.0" 1485 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1486 | dependencies: 1487 | array-union "^1.0.1" 1488 | arrify "^1.0.0" 1489 | glob "^7.0.3" 1490 | object-assign "^4.0.1" 1491 | pify "^2.0.0" 1492 | pinkie-promise "^2.0.0" 1493 | 1494 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1495 | version "4.1.11" 1496 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1497 | 1498 | growly@^1.3.0: 1499 | version "1.3.0" 1500 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1501 | 1502 | handlebars@^4.0.3: 1503 | version "4.0.10" 1504 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1505 | dependencies: 1506 | async "^1.4.0" 1507 | optimist "^0.6.1" 1508 | source-map "^0.4.4" 1509 | optionalDependencies: 1510 | uglify-js "^2.6" 1511 | 1512 | har-schema@^1.0.5: 1513 | version "1.0.5" 1514 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1515 | 1516 | har-validator@~4.2.1: 1517 | version "4.2.1" 1518 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1519 | dependencies: 1520 | ajv "^4.9.1" 1521 | har-schema "^1.0.5" 1522 | 1523 | has-ansi@^2.0.0: 1524 | version "2.0.0" 1525 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1526 | dependencies: 1527 | ansi-regex "^2.0.0" 1528 | 1529 | has-flag@^1.0.0: 1530 | version "1.0.0" 1531 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1532 | 1533 | has-flag@^2.0.0: 1534 | version "2.0.0" 1535 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1536 | 1537 | has-unicode@^2.0.0: 1538 | version "2.0.1" 1539 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1540 | 1541 | has@^1.0.1: 1542 | version "1.0.1" 1543 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1544 | dependencies: 1545 | function-bind "^1.0.2" 1546 | 1547 | hawk@~3.1.3: 1548 | version "3.1.3" 1549 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1550 | dependencies: 1551 | boom "2.x.x" 1552 | cryptiles "2.x.x" 1553 | hoek "2.x.x" 1554 | sntp "1.x.x" 1555 | 1556 | hoek@2.x.x: 1557 | version "2.16.3" 1558 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1559 | 1560 | home-or-tmp@^2.0.0: 1561 | version "2.0.0" 1562 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1563 | dependencies: 1564 | os-homedir "^1.0.0" 1565 | os-tmpdir "^1.0.1" 1566 | 1567 | hosted-git-info@^2.1.4: 1568 | version "2.5.0" 1569 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1570 | 1571 | html-encoding-sniffer@^1.0.1: 1572 | version "1.0.1" 1573 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1574 | dependencies: 1575 | whatwg-encoding "^1.0.1" 1576 | 1577 | http-signature@~1.1.0: 1578 | version "1.1.1" 1579 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1580 | dependencies: 1581 | assert-plus "^0.2.0" 1582 | jsprim "^1.2.2" 1583 | sshpk "^1.7.0" 1584 | 1585 | iconv-lite@0.4.13: 1586 | version "0.4.13" 1587 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1588 | 1589 | iconv-lite@^0.4.17: 1590 | version "0.4.18" 1591 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1592 | 1593 | ignore@^3.3.3: 1594 | version "3.3.3" 1595 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1596 | 1597 | imurmurhash@^0.1.4: 1598 | version "0.1.4" 1599 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1600 | 1601 | inflight@^1.0.4: 1602 | version "1.0.6" 1603 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1604 | dependencies: 1605 | once "^1.3.0" 1606 | wrappy "1" 1607 | 1608 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1609 | version "2.0.3" 1610 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1611 | 1612 | ini@~1.3.0: 1613 | version "1.3.4" 1614 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1615 | 1616 | inquirer@^3.0.6: 1617 | version "3.2.1" 1618 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.1.tgz#06ceb0f540f45ca548c17d6840959878265fa175" 1619 | dependencies: 1620 | ansi-escapes "^2.0.0" 1621 | chalk "^2.0.0" 1622 | cli-cursor "^2.1.0" 1623 | cli-width "^2.0.0" 1624 | external-editor "^2.0.4" 1625 | figures "^2.0.0" 1626 | lodash "^4.3.0" 1627 | mute-stream "0.0.7" 1628 | run-async "^2.2.0" 1629 | rx-lite "^4.0.8" 1630 | rx-lite-aggregates "^4.0.8" 1631 | string-width "^2.1.0" 1632 | strip-ansi "^4.0.0" 1633 | through "^2.3.6" 1634 | 1635 | invariant@^2.2.0, invariant@^2.2.2: 1636 | version "2.2.2" 1637 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1638 | dependencies: 1639 | loose-envify "^1.0.0" 1640 | 1641 | invert-kv@^1.0.0: 1642 | version "1.0.0" 1643 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1644 | 1645 | is-arrayish@^0.2.1: 1646 | version "0.2.1" 1647 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1648 | 1649 | is-binary-path@^1.0.0: 1650 | version "1.0.1" 1651 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1652 | dependencies: 1653 | binary-extensions "^1.0.0" 1654 | 1655 | is-buffer@^1.1.5: 1656 | version "1.1.5" 1657 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1658 | 1659 | is-builtin-module@^1.0.0: 1660 | version "1.0.0" 1661 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1662 | dependencies: 1663 | builtin-modules "^1.0.0" 1664 | 1665 | is-ci@^1.0.10: 1666 | version "1.0.10" 1667 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1668 | dependencies: 1669 | ci-info "^1.0.0" 1670 | 1671 | is-dotfile@^1.0.0: 1672 | version "1.0.3" 1673 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1674 | 1675 | is-equal-shallow@^0.1.3: 1676 | version "0.1.3" 1677 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1678 | dependencies: 1679 | is-primitive "^2.0.0" 1680 | 1681 | is-extendable@^0.1.1: 1682 | version "0.1.1" 1683 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1684 | 1685 | is-extglob@^1.0.0: 1686 | version "1.0.0" 1687 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1688 | 1689 | is-finite@^1.0.0: 1690 | version "1.0.2" 1691 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1692 | dependencies: 1693 | number-is-nan "^1.0.0" 1694 | 1695 | is-fullwidth-code-point@^1.0.0: 1696 | version "1.0.0" 1697 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1698 | dependencies: 1699 | number-is-nan "^1.0.0" 1700 | 1701 | is-fullwidth-code-point@^2.0.0: 1702 | version "2.0.0" 1703 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1704 | 1705 | is-glob@^2.0.0, is-glob@^2.0.1: 1706 | version "2.0.1" 1707 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1708 | dependencies: 1709 | is-extglob "^1.0.0" 1710 | 1711 | is-number@^2.1.0: 1712 | version "2.1.0" 1713 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1714 | dependencies: 1715 | kind-of "^3.0.2" 1716 | 1717 | is-number@^3.0.0: 1718 | version "3.0.0" 1719 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1720 | dependencies: 1721 | kind-of "^3.0.2" 1722 | 1723 | is-path-cwd@^1.0.0: 1724 | version "1.0.0" 1725 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1726 | 1727 | is-path-in-cwd@^1.0.0: 1728 | version "1.0.0" 1729 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1730 | dependencies: 1731 | is-path-inside "^1.0.0" 1732 | 1733 | is-path-inside@^1.0.0: 1734 | version "1.0.0" 1735 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1736 | dependencies: 1737 | path-is-inside "^1.0.1" 1738 | 1739 | is-posix-bracket@^0.1.0: 1740 | version "0.1.1" 1741 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1742 | 1743 | is-primitive@^2.0.0: 1744 | version "2.0.0" 1745 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1746 | 1747 | is-promise@^2.1.0: 1748 | version "2.1.0" 1749 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1750 | 1751 | is-resolvable@^1.0.0: 1752 | version "1.0.0" 1753 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1754 | dependencies: 1755 | tryit "^1.0.1" 1756 | 1757 | is-typedarray@~1.0.0: 1758 | version "1.0.0" 1759 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1760 | 1761 | is-utf8@^0.2.0: 1762 | version "0.2.1" 1763 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1764 | 1765 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1766 | version "1.0.0" 1767 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1768 | 1769 | isexe@^2.0.0: 1770 | version "2.0.0" 1771 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1772 | 1773 | isobject@^2.0.0: 1774 | version "2.1.0" 1775 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1776 | dependencies: 1777 | isarray "1.0.0" 1778 | 1779 | isstream@~0.1.2: 1780 | version "0.1.2" 1781 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1782 | 1783 | istanbul-api@^1.1.1: 1784 | version "1.1.11" 1785 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.11.tgz#fcc0b461e2b3bda71e305155138238768257d9de" 1786 | dependencies: 1787 | async "^2.1.4" 1788 | fileset "^2.0.2" 1789 | istanbul-lib-coverage "^1.1.1" 1790 | istanbul-lib-hook "^1.0.7" 1791 | istanbul-lib-instrument "^1.7.4" 1792 | istanbul-lib-report "^1.1.1" 1793 | istanbul-lib-source-maps "^1.2.1" 1794 | istanbul-reports "^1.1.1" 1795 | js-yaml "^3.7.0" 1796 | mkdirp "^0.5.1" 1797 | once "^1.4.0" 1798 | 1799 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1800 | version "1.1.1" 1801 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1802 | 1803 | istanbul-lib-hook@^1.0.7: 1804 | version "1.0.7" 1805 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1806 | dependencies: 1807 | append-transform "^0.4.0" 1808 | 1809 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.4: 1810 | version "1.7.4" 1811 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.4.tgz#e9fd920e4767f3d19edc765e2d6b3f5ccbd0eea8" 1812 | dependencies: 1813 | babel-generator "^6.18.0" 1814 | babel-template "^6.16.0" 1815 | babel-traverse "^6.18.0" 1816 | babel-types "^6.18.0" 1817 | babylon "^6.17.4" 1818 | istanbul-lib-coverage "^1.1.1" 1819 | semver "^5.3.0" 1820 | 1821 | istanbul-lib-report@^1.1.1: 1822 | version "1.1.1" 1823 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1824 | dependencies: 1825 | istanbul-lib-coverage "^1.1.1" 1826 | mkdirp "^0.5.1" 1827 | path-parse "^1.0.5" 1828 | supports-color "^3.1.2" 1829 | 1830 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1831 | version "1.2.1" 1832 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1833 | dependencies: 1834 | debug "^2.6.3" 1835 | istanbul-lib-coverage "^1.1.1" 1836 | mkdirp "^0.5.1" 1837 | rimraf "^2.6.1" 1838 | source-map "^0.5.3" 1839 | 1840 | istanbul-reports@^1.1.1: 1841 | version "1.1.1" 1842 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1843 | dependencies: 1844 | handlebars "^4.0.3" 1845 | 1846 | jest-changed-files@^20.0.3: 1847 | version "20.0.3" 1848 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1849 | 1850 | jest-cli@^20.0.4: 1851 | version "20.0.4" 1852 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1853 | dependencies: 1854 | ansi-escapes "^1.4.0" 1855 | callsites "^2.0.0" 1856 | chalk "^1.1.3" 1857 | graceful-fs "^4.1.11" 1858 | is-ci "^1.0.10" 1859 | istanbul-api "^1.1.1" 1860 | istanbul-lib-coverage "^1.0.1" 1861 | istanbul-lib-instrument "^1.4.2" 1862 | istanbul-lib-source-maps "^1.1.0" 1863 | jest-changed-files "^20.0.3" 1864 | jest-config "^20.0.4" 1865 | jest-docblock "^20.0.3" 1866 | jest-environment-jsdom "^20.0.3" 1867 | jest-haste-map "^20.0.4" 1868 | jest-jasmine2 "^20.0.4" 1869 | jest-message-util "^20.0.3" 1870 | jest-regex-util "^20.0.3" 1871 | jest-resolve-dependencies "^20.0.3" 1872 | jest-runtime "^20.0.4" 1873 | jest-snapshot "^20.0.3" 1874 | jest-util "^20.0.3" 1875 | micromatch "^2.3.11" 1876 | node-notifier "^5.0.2" 1877 | pify "^2.3.0" 1878 | slash "^1.0.0" 1879 | string-length "^1.0.1" 1880 | throat "^3.0.0" 1881 | which "^1.2.12" 1882 | worker-farm "^1.3.1" 1883 | yargs "^7.0.2" 1884 | 1885 | jest-config@^20.0.4: 1886 | version "20.0.4" 1887 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1888 | dependencies: 1889 | chalk "^1.1.3" 1890 | glob "^7.1.1" 1891 | jest-environment-jsdom "^20.0.3" 1892 | jest-environment-node "^20.0.3" 1893 | jest-jasmine2 "^20.0.4" 1894 | jest-matcher-utils "^20.0.3" 1895 | jest-regex-util "^20.0.3" 1896 | jest-resolve "^20.0.4" 1897 | jest-validate "^20.0.3" 1898 | pretty-format "^20.0.3" 1899 | 1900 | jest-diff@^20.0.3: 1901 | version "20.0.3" 1902 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1903 | dependencies: 1904 | chalk "^1.1.3" 1905 | diff "^3.2.0" 1906 | jest-matcher-utils "^20.0.3" 1907 | pretty-format "^20.0.3" 1908 | 1909 | jest-docblock@^20.0.3: 1910 | version "20.0.3" 1911 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1912 | 1913 | jest-environment-jsdom@^20.0.3: 1914 | version "20.0.3" 1915 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1916 | dependencies: 1917 | jest-mock "^20.0.3" 1918 | jest-util "^20.0.3" 1919 | jsdom "^9.12.0" 1920 | 1921 | jest-environment-node@^20.0.3: 1922 | version "20.0.3" 1923 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1924 | dependencies: 1925 | jest-mock "^20.0.3" 1926 | jest-util "^20.0.3" 1927 | 1928 | jest-haste-map@^20.0.4: 1929 | version "20.0.5" 1930 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" 1931 | dependencies: 1932 | fb-watchman "^2.0.0" 1933 | graceful-fs "^4.1.11" 1934 | jest-docblock "^20.0.3" 1935 | micromatch "^2.3.11" 1936 | sane "~1.6.0" 1937 | worker-farm "^1.3.1" 1938 | 1939 | jest-jasmine2@^20.0.4: 1940 | version "20.0.4" 1941 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1942 | dependencies: 1943 | chalk "^1.1.3" 1944 | graceful-fs "^4.1.11" 1945 | jest-diff "^20.0.3" 1946 | jest-matcher-utils "^20.0.3" 1947 | jest-matchers "^20.0.3" 1948 | jest-message-util "^20.0.3" 1949 | jest-snapshot "^20.0.3" 1950 | once "^1.4.0" 1951 | p-map "^1.1.1" 1952 | 1953 | jest-matcher-utils@^20.0.3: 1954 | version "20.0.3" 1955 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1956 | dependencies: 1957 | chalk "^1.1.3" 1958 | pretty-format "^20.0.3" 1959 | 1960 | jest-matchers@^20.0.3: 1961 | version "20.0.3" 1962 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1963 | dependencies: 1964 | jest-diff "^20.0.3" 1965 | jest-matcher-utils "^20.0.3" 1966 | jest-message-util "^20.0.3" 1967 | jest-regex-util "^20.0.3" 1968 | 1969 | jest-message-util@^20.0.3: 1970 | version "20.0.3" 1971 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1972 | dependencies: 1973 | chalk "^1.1.3" 1974 | micromatch "^2.3.11" 1975 | slash "^1.0.0" 1976 | 1977 | jest-mock@^20.0.3: 1978 | version "20.0.3" 1979 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1980 | 1981 | jest-regex-util@^20.0.3: 1982 | version "20.0.3" 1983 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1984 | 1985 | jest-resolve-dependencies@^20.0.3: 1986 | version "20.0.3" 1987 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1988 | dependencies: 1989 | jest-regex-util "^20.0.3" 1990 | 1991 | jest-resolve@^20.0.4: 1992 | version "20.0.4" 1993 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1994 | dependencies: 1995 | browser-resolve "^1.11.2" 1996 | is-builtin-module "^1.0.0" 1997 | resolve "^1.3.2" 1998 | 1999 | jest-runtime@^20.0.4: 2000 | version "20.0.4" 2001 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2002 | dependencies: 2003 | babel-core "^6.0.0" 2004 | babel-jest "^20.0.3" 2005 | babel-plugin-istanbul "^4.0.0" 2006 | chalk "^1.1.3" 2007 | convert-source-map "^1.4.0" 2008 | graceful-fs "^4.1.11" 2009 | jest-config "^20.0.4" 2010 | jest-haste-map "^20.0.4" 2011 | jest-regex-util "^20.0.3" 2012 | jest-resolve "^20.0.4" 2013 | jest-util "^20.0.3" 2014 | json-stable-stringify "^1.0.1" 2015 | micromatch "^2.3.11" 2016 | strip-bom "3.0.0" 2017 | yargs "^7.0.2" 2018 | 2019 | jest-snapshot@^20.0.3: 2020 | version "20.0.3" 2021 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2022 | dependencies: 2023 | chalk "^1.1.3" 2024 | jest-diff "^20.0.3" 2025 | jest-matcher-utils "^20.0.3" 2026 | jest-util "^20.0.3" 2027 | natural-compare "^1.4.0" 2028 | pretty-format "^20.0.3" 2029 | 2030 | jest-util@^20.0.3: 2031 | version "20.0.3" 2032 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2033 | dependencies: 2034 | chalk "^1.1.3" 2035 | graceful-fs "^4.1.11" 2036 | jest-message-util "^20.0.3" 2037 | jest-mock "^20.0.3" 2038 | jest-validate "^20.0.3" 2039 | leven "^2.1.0" 2040 | mkdirp "^0.5.1" 2041 | 2042 | jest-validate@^20.0.3: 2043 | version "20.0.3" 2044 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2045 | dependencies: 2046 | chalk "^1.1.3" 2047 | jest-matcher-utils "^20.0.3" 2048 | leven "^2.1.0" 2049 | pretty-format "^20.0.3" 2050 | 2051 | jest@^20.0.4: 2052 | version "20.0.4" 2053 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2054 | dependencies: 2055 | jest-cli "^20.0.4" 2056 | 2057 | js-tokens@^3.0.0: 2058 | version "3.0.2" 2059 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2060 | 2061 | js-yaml@^3.7.0, js-yaml@^3.9.1: 2062 | version "3.9.1" 2063 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 2064 | dependencies: 2065 | argparse "^1.0.7" 2066 | esprima "^4.0.0" 2067 | 2068 | jsbn@~0.1.0: 2069 | version "0.1.1" 2070 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2071 | 2072 | jschardet@^1.4.2: 2073 | version "1.5.0" 2074 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.0.tgz#a61f310306a5a71188e1b1acd08add3cfbb08b1e" 2075 | 2076 | jsdom@^9.12.0: 2077 | version "9.12.0" 2078 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2079 | dependencies: 2080 | abab "^1.0.3" 2081 | acorn "^4.0.4" 2082 | acorn-globals "^3.1.0" 2083 | array-equal "^1.0.0" 2084 | content-type-parser "^1.0.1" 2085 | cssom ">= 0.3.2 < 0.4.0" 2086 | cssstyle ">= 0.2.37 < 0.3.0" 2087 | escodegen "^1.6.1" 2088 | html-encoding-sniffer "^1.0.1" 2089 | nwmatcher ">= 1.3.9 < 2.0.0" 2090 | parse5 "^1.5.1" 2091 | request "^2.79.0" 2092 | sax "^1.2.1" 2093 | symbol-tree "^3.2.1" 2094 | tough-cookie "^2.3.2" 2095 | webidl-conversions "^4.0.0" 2096 | whatwg-encoding "^1.0.1" 2097 | whatwg-url "^4.3.0" 2098 | xml-name-validator "^2.0.1" 2099 | 2100 | jsesc@^1.3.0: 2101 | version "1.3.0" 2102 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2103 | 2104 | jsesc@~0.5.0: 2105 | version "0.5.0" 2106 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2107 | 2108 | json-schema-traverse@^0.3.0: 2109 | version "0.3.1" 2110 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2111 | 2112 | json-schema@0.2.3: 2113 | version "0.2.3" 2114 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2115 | 2116 | json-stable-stringify@^1.0.1: 2117 | version "1.0.1" 2118 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2119 | dependencies: 2120 | jsonify "~0.0.0" 2121 | 2122 | json-stringify-safe@~5.0.1: 2123 | version "5.0.1" 2124 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2125 | 2126 | json5@^0.5.0: 2127 | version "0.5.1" 2128 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2129 | 2130 | jsonify@~0.0.0: 2131 | version "0.0.0" 2132 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2133 | 2134 | jsprim@^1.2.2: 2135 | version "1.4.1" 2136 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2137 | dependencies: 2138 | assert-plus "1.0.0" 2139 | extsprintf "1.3.0" 2140 | json-schema "0.2.3" 2141 | verror "1.10.0" 2142 | 2143 | kind-of@^3.0.2: 2144 | version "3.2.2" 2145 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2146 | dependencies: 2147 | is-buffer "^1.1.5" 2148 | 2149 | kind-of@^4.0.0: 2150 | version "4.0.0" 2151 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2152 | dependencies: 2153 | is-buffer "^1.1.5" 2154 | 2155 | lazy-cache@^1.0.3: 2156 | version "1.0.4" 2157 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2158 | 2159 | lcid@^1.0.0: 2160 | version "1.0.0" 2161 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2162 | dependencies: 2163 | invert-kv "^1.0.0" 2164 | 2165 | leven@^2.1.0: 2166 | version "2.1.0" 2167 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2168 | 2169 | levn@^0.3.0, levn@~0.3.0: 2170 | version "0.3.0" 2171 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2172 | dependencies: 2173 | prelude-ls "~1.1.2" 2174 | type-check "~0.3.2" 2175 | 2176 | load-json-file@^1.0.0: 2177 | version "1.1.0" 2178 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2179 | dependencies: 2180 | graceful-fs "^4.1.2" 2181 | parse-json "^2.2.0" 2182 | pify "^2.0.0" 2183 | pinkie-promise "^2.0.0" 2184 | strip-bom "^2.0.0" 2185 | 2186 | load-json-file@^2.0.0: 2187 | version "2.0.0" 2188 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2189 | dependencies: 2190 | graceful-fs "^4.1.2" 2191 | parse-json "^2.2.0" 2192 | pify "^2.0.0" 2193 | strip-bom "^3.0.0" 2194 | 2195 | locate-path@^2.0.0: 2196 | version "2.0.0" 2197 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2198 | dependencies: 2199 | p-locate "^2.0.0" 2200 | path-exists "^3.0.0" 2201 | 2202 | lodash.cond@^4.3.0: 2203 | version "4.5.2" 2204 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2205 | 2206 | lodash@^4.0.0, lodash@^4.11.1, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2207 | version "4.17.4" 2208 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2209 | 2210 | longest@^1.0.1: 2211 | version "1.0.1" 2212 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2213 | 2214 | loose-envify@^1.0.0: 2215 | version "1.3.1" 2216 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2217 | dependencies: 2218 | js-tokens "^3.0.0" 2219 | 2220 | lru-cache@^4.0.1: 2221 | version "4.1.1" 2222 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2223 | dependencies: 2224 | pseudomap "^1.0.2" 2225 | yallist "^2.1.2" 2226 | 2227 | makeerror@1.0.x: 2228 | version "1.0.11" 2229 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2230 | dependencies: 2231 | tmpl "1.0.x" 2232 | 2233 | merge@^1.1.3: 2234 | version "1.2.0" 2235 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2236 | 2237 | micromatch@^2.1.5, micromatch@^2.3.11: 2238 | version "2.3.11" 2239 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2240 | dependencies: 2241 | arr-diff "^2.0.0" 2242 | array-unique "^0.2.1" 2243 | braces "^1.8.2" 2244 | expand-brackets "^0.1.4" 2245 | extglob "^0.3.1" 2246 | filename-regex "^2.0.0" 2247 | is-extglob "^1.0.0" 2248 | is-glob "^2.0.1" 2249 | kind-of "^3.0.2" 2250 | normalize-path "^2.0.1" 2251 | object.omit "^2.0.0" 2252 | parse-glob "^3.0.4" 2253 | regex-cache "^0.4.2" 2254 | 2255 | mime-db@~1.29.0: 2256 | version "1.29.0" 2257 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 2258 | 2259 | mime-types@^2.1.12, mime-types@~2.1.7: 2260 | version "2.1.16" 2261 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 2262 | dependencies: 2263 | mime-db "~1.29.0" 2264 | 2265 | mimic-fn@^1.0.0: 2266 | version "1.1.0" 2267 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2268 | 2269 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2270 | version "3.0.4" 2271 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2272 | dependencies: 2273 | brace-expansion "^1.1.7" 2274 | 2275 | minimist@0.0.8: 2276 | version "0.0.8" 2277 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2278 | 2279 | minimist@^1.1.1, minimist@^1.2.0: 2280 | version "1.2.0" 2281 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2282 | 2283 | minimist@~0.0.1: 2284 | version "0.0.10" 2285 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2286 | 2287 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2288 | version "0.5.1" 2289 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2290 | dependencies: 2291 | minimist "0.0.8" 2292 | 2293 | ms@2.0.0: 2294 | version "2.0.0" 2295 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2296 | 2297 | mute-stream@0.0.7: 2298 | version "0.0.7" 2299 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2300 | 2301 | nan@^2.3.0: 2302 | version "2.6.2" 2303 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2304 | 2305 | natural-compare@^1.4.0: 2306 | version "1.4.0" 2307 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2308 | 2309 | node-int64@^0.4.0: 2310 | version "0.4.0" 2311 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2312 | 2313 | node-notifier@^5.0.2: 2314 | version "5.1.2" 2315 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2316 | dependencies: 2317 | growly "^1.3.0" 2318 | semver "^5.3.0" 2319 | shellwords "^0.1.0" 2320 | which "^1.2.12" 2321 | 2322 | node-pre-gyp@^0.6.36: 2323 | version "0.6.36" 2324 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2325 | dependencies: 2326 | mkdirp "^0.5.1" 2327 | nopt "^4.0.1" 2328 | npmlog "^4.0.2" 2329 | rc "^1.1.7" 2330 | request "^2.81.0" 2331 | rimraf "^2.6.1" 2332 | semver "^5.3.0" 2333 | tar "^2.2.1" 2334 | tar-pack "^3.4.0" 2335 | 2336 | nopt@^4.0.1: 2337 | version "4.0.1" 2338 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2339 | dependencies: 2340 | abbrev "1" 2341 | osenv "^0.1.4" 2342 | 2343 | normalize-package-data@^2.3.2: 2344 | version "2.4.0" 2345 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2346 | dependencies: 2347 | hosted-git-info "^2.1.4" 2348 | is-builtin-module "^1.0.0" 2349 | semver "2 || 3 || 4 || 5" 2350 | validate-npm-package-license "^3.0.1" 2351 | 2352 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2353 | version "2.1.1" 2354 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2355 | dependencies: 2356 | remove-trailing-separator "^1.0.1" 2357 | 2358 | npmlog@^4.0.2: 2359 | version "4.1.2" 2360 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2361 | dependencies: 2362 | are-we-there-yet "~1.1.2" 2363 | console-control-strings "~1.1.0" 2364 | gauge "~2.7.3" 2365 | set-blocking "~2.0.0" 2366 | 2367 | number-is-nan@^1.0.0: 2368 | version "1.0.1" 2369 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2370 | 2371 | "nwmatcher@>= 1.3.9 < 2.0.0": 2372 | version "1.4.1" 2373 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 2374 | 2375 | oauth-sign@~0.8.1: 2376 | version "0.8.2" 2377 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2378 | 2379 | object-assign@^4.0.1, object-assign@^4.1.0: 2380 | version "4.1.1" 2381 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2382 | 2383 | object.omit@^2.0.0: 2384 | version "2.0.1" 2385 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2386 | dependencies: 2387 | for-own "^0.1.4" 2388 | is-extendable "^0.1.1" 2389 | 2390 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2391 | version "1.4.0" 2392 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2393 | dependencies: 2394 | wrappy "1" 2395 | 2396 | onetime@^2.0.0: 2397 | version "2.0.1" 2398 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2399 | dependencies: 2400 | mimic-fn "^1.0.0" 2401 | 2402 | optimist@^0.6.1: 2403 | version "0.6.1" 2404 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2405 | dependencies: 2406 | minimist "~0.0.1" 2407 | wordwrap "~0.0.2" 2408 | 2409 | optionator@^0.8.1, optionator@^0.8.2: 2410 | version "0.8.2" 2411 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2412 | dependencies: 2413 | deep-is "~0.1.3" 2414 | fast-levenshtein "~2.0.4" 2415 | levn "~0.3.0" 2416 | prelude-ls "~1.1.2" 2417 | type-check "~0.3.2" 2418 | wordwrap "~1.0.0" 2419 | 2420 | os-homedir@^1.0.0: 2421 | version "1.0.2" 2422 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2423 | 2424 | os-locale@^1.4.0: 2425 | version "1.4.0" 2426 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2427 | dependencies: 2428 | lcid "^1.0.0" 2429 | 2430 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: 2431 | version "1.0.2" 2432 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2433 | 2434 | osenv@^0.1.4: 2435 | version "0.1.4" 2436 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2437 | dependencies: 2438 | os-homedir "^1.0.0" 2439 | os-tmpdir "^1.0.0" 2440 | 2441 | output-file-sync@^1.1.0: 2442 | version "1.1.2" 2443 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2444 | dependencies: 2445 | graceful-fs "^4.1.4" 2446 | mkdirp "^0.5.1" 2447 | object-assign "^4.1.0" 2448 | 2449 | p-limit@^1.1.0: 2450 | version "1.1.0" 2451 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2452 | 2453 | p-locate@^2.0.0: 2454 | version "2.0.0" 2455 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2456 | dependencies: 2457 | p-limit "^1.1.0" 2458 | 2459 | p-map@^1.1.1: 2460 | version "1.1.1" 2461 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2462 | 2463 | parse-glob@^3.0.4: 2464 | version "3.0.4" 2465 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2466 | dependencies: 2467 | glob-base "^0.3.0" 2468 | is-dotfile "^1.0.0" 2469 | is-extglob "^1.0.0" 2470 | is-glob "^2.0.0" 2471 | 2472 | parse-json@^2.2.0: 2473 | version "2.2.0" 2474 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2475 | dependencies: 2476 | error-ex "^1.2.0" 2477 | 2478 | parse5@^1.5.1: 2479 | version "1.5.1" 2480 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2481 | 2482 | path-exists@^2.0.0: 2483 | version "2.1.0" 2484 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2485 | dependencies: 2486 | pinkie-promise "^2.0.0" 2487 | 2488 | path-exists@^3.0.0: 2489 | version "3.0.0" 2490 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2491 | 2492 | path-is-absolute@^1.0.0: 2493 | version "1.0.1" 2494 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2495 | 2496 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2497 | version "1.0.2" 2498 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2499 | 2500 | path-parse@^1.0.5: 2501 | version "1.0.5" 2502 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2503 | 2504 | path-type@^1.0.0: 2505 | version "1.1.0" 2506 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2507 | dependencies: 2508 | graceful-fs "^4.1.2" 2509 | pify "^2.0.0" 2510 | pinkie-promise "^2.0.0" 2511 | 2512 | path-type@^2.0.0: 2513 | version "2.0.0" 2514 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2515 | dependencies: 2516 | pify "^2.0.0" 2517 | 2518 | performance-now@^0.2.0: 2519 | version "0.2.0" 2520 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2521 | 2522 | pify@^2.0.0, pify@^2.3.0: 2523 | version "2.3.0" 2524 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2525 | 2526 | pinkie-promise@^2.0.0: 2527 | version "2.0.1" 2528 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2529 | dependencies: 2530 | pinkie "^2.0.0" 2531 | 2532 | pinkie@^2.0.0: 2533 | version "2.0.4" 2534 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2535 | 2536 | pkg-dir@^1.0.0: 2537 | version "1.0.0" 2538 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2539 | dependencies: 2540 | find-up "^1.0.0" 2541 | 2542 | pluralize@^4.0.0: 2543 | version "4.0.0" 2544 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 2545 | 2546 | prelude-ls@~1.1.2: 2547 | version "1.1.2" 2548 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2549 | 2550 | preserve@^0.2.0: 2551 | version "0.2.0" 2552 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2553 | 2554 | prettier@^1.5.3: 2555 | version "1.5.3" 2556 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.5.3.tgz#59dadc683345ec6b88f88b94ed4ae7e1da394bfe" 2557 | 2558 | pretty-format@^20.0.3: 2559 | version "20.0.3" 2560 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2561 | dependencies: 2562 | ansi-regex "^2.1.1" 2563 | ansi-styles "^3.0.0" 2564 | 2565 | private@^0.1.6: 2566 | version "0.1.7" 2567 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2568 | 2569 | process-nextick-args@~1.0.6: 2570 | version "1.0.7" 2571 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2572 | 2573 | progress@^2.0.0: 2574 | version "2.0.0" 2575 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2576 | 2577 | prr@~0.0.0: 2578 | version "0.0.0" 2579 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2580 | 2581 | pseudomap@^1.0.2: 2582 | version "1.0.2" 2583 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2584 | 2585 | punycode@^1.4.1: 2586 | version "1.4.1" 2587 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2588 | 2589 | qs@~6.4.0: 2590 | version "6.4.0" 2591 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2592 | 2593 | randomatic@^1.1.3: 2594 | version "1.1.7" 2595 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2596 | dependencies: 2597 | is-number "^3.0.0" 2598 | kind-of "^4.0.0" 2599 | 2600 | rc@^1.1.7: 2601 | version "1.2.1" 2602 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2603 | dependencies: 2604 | deep-extend "~0.4.0" 2605 | ini "~1.3.0" 2606 | minimist "^1.2.0" 2607 | strip-json-comments "~2.0.1" 2608 | 2609 | read-pkg-up@^1.0.1: 2610 | version "1.0.1" 2611 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2612 | dependencies: 2613 | find-up "^1.0.0" 2614 | read-pkg "^1.0.0" 2615 | 2616 | read-pkg-up@^2.0.0: 2617 | version "2.0.0" 2618 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2619 | dependencies: 2620 | find-up "^2.0.0" 2621 | read-pkg "^2.0.0" 2622 | 2623 | read-pkg@^1.0.0: 2624 | version "1.1.0" 2625 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2626 | dependencies: 2627 | load-json-file "^1.0.0" 2628 | normalize-package-data "^2.3.2" 2629 | path-type "^1.0.0" 2630 | 2631 | read-pkg@^2.0.0: 2632 | version "2.0.0" 2633 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2634 | dependencies: 2635 | load-json-file "^2.0.0" 2636 | normalize-package-data "^2.3.2" 2637 | path-type "^2.0.0" 2638 | 2639 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2640 | version "2.3.3" 2641 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2642 | dependencies: 2643 | core-util-is "~1.0.0" 2644 | inherits "~2.0.3" 2645 | isarray "~1.0.0" 2646 | process-nextick-args "~1.0.6" 2647 | safe-buffer "~5.1.1" 2648 | string_decoder "~1.0.3" 2649 | util-deprecate "~1.0.1" 2650 | 2651 | readdirp@^2.0.0: 2652 | version "2.1.0" 2653 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2654 | dependencies: 2655 | graceful-fs "^4.1.2" 2656 | minimatch "^3.0.2" 2657 | readable-stream "^2.0.2" 2658 | set-immediate-shim "^1.0.1" 2659 | 2660 | regenerate@^1.2.1: 2661 | version "1.3.2" 2662 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2663 | 2664 | regenerator-runtime@^0.10.0: 2665 | version "0.10.5" 2666 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2667 | 2668 | regenerator-transform@0.9.11: 2669 | version "0.9.11" 2670 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2671 | dependencies: 2672 | babel-runtime "^6.18.0" 2673 | babel-types "^6.19.0" 2674 | private "^0.1.6" 2675 | 2676 | regex-cache@^0.4.2: 2677 | version "0.4.3" 2678 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2679 | dependencies: 2680 | is-equal-shallow "^0.1.3" 2681 | is-primitive "^2.0.0" 2682 | 2683 | regexpu-core@^2.0.0: 2684 | version "2.0.0" 2685 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2686 | dependencies: 2687 | regenerate "^1.2.1" 2688 | regjsgen "^0.2.0" 2689 | regjsparser "^0.1.4" 2690 | 2691 | regjsgen@^0.2.0: 2692 | version "0.2.0" 2693 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2694 | 2695 | regjsparser@^0.1.4: 2696 | version "0.1.5" 2697 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2698 | dependencies: 2699 | jsesc "~0.5.0" 2700 | 2701 | remove-trailing-separator@^1.0.1: 2702 | version "1.0.2" 2703 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 2704 | 2705 | repeat-element@^1.1.2: 2706 | version "1.1.2" 2707 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2708 | 2709 | repeat-string@^1.5.2: 2710 | version "1.6.1" 2711 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2712 | 2713 | repeating@^2.0.0: 2714 | version "2.0.1" 2715 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2716 | dependencies: 2717 | is-finite "^1.0.0" 2718 | 2719 | request@2.81.0, request@^2.79.0, request@^2.81.0: 2720 | version "2.81.0" 2721 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2722 | dependencies: 2723 | aws-sign2 "~0.6.0" 2724 | aws4 "^1.2.1" 2725 | caseless "~0.12.0" 2726 | combined-stream "~1.0.5" 2727 | extend "~3.0.0" 2728 | forever-agent "~0.6.1" 2729 | form-data "~2.1.1" 2730 | har-validator "~4.2.1" 2731 | hawk "~3.1.3" 2732 | http-signature "~1.1.0" 2733 | is-typedarray "~1.0.0" 2734 | isstream "~0.1.2" 2735 | json-stringify-safe "~5.0.1" 2736 | mime-types "~2.1.7" 2737 | oauth-sign "~0.8.1" 2738 | performance-now "^0.2.0" 2739 | qs "~6.4.0" 2740 | safe-buffer "^5.0.1" 2741 | stringstream "~0.0.4" 2742 | tough-cookie "~2.3.0" 2743 | tunnel-agent "^0.6.0" 2744 | uuid "^3.0.0" 2745 | 2746 | require-directory@^2.1.1: 2747 | version "2.1.1" 2748 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2749 | 2750 | require-main-filename@^1.0.1: 2751 | version "1.0.1" 2752 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2753 | 2754 | require-uncached@^1.0.3: 2755 | version "1.0.3" 2756 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2757 | dependencies: 2758 | caller-path "^0.1.0" 2759 | resolve-from "^1.0.0" 2760 | 2761 | resolve-from@^1.0.0: 2762 | version "1.0.1" 2763 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2764 | 2765 | resolve@1.1.7: 2766 | version "1.1.7" 2767 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2768 | 2769 | resolve@^1.2.0, resolve@^1.3.2: 2770 | version "1.4.0" 2771 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 2772 | dependencies: 2773 | path-parse "^1.0.5" 2774 | 2775 | restore-cursor@^2.0.0: 2776 | version "2.0.0" 2777 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2778 | dependencies: 2779 | onetime "^2.0.0" 2780 | signal-exit "^3.0.2" 2781 | 2782 | right-align@^0.1.1: 2783 | version "0.1.3" 2784 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2785 | dependencies: 2786 | align-text "^0.1.1" 2787 | 2788 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2789 | version "2.6.1" 2790 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2791 | dependencies: 2792 | glob "^7.0.5" 2793 | 2794 | run-async@^2.2.0: 2795 | version "2.3.0" 2796 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2797 | dependencies: 2798 | is-promise "^2.1.0" 2799 | 2800 | rx-lite-aggregates@^4.0.8: 2801 | version "4.0.8" 2802 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2803 | dependencies: 2804 | rx-lite "*" 2805 | 2806 | rx-lite@*, rx-lite@^4.0.8: 2807 | version "4.0.8" 2808 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2809 | 2810 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2811 | version "5.1.1" 2812 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2813 | 2814 | sane@~1.6.0: 2815 | version "1.6.0" 2816 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2817 | dependencies: 2818 | anymatch "^1.3.0" 2819 | exec-sh "^0.2.0" 2820 | fb-watchman "^1.8.0" 2821 | minimatch "^3.0.2" 2822 | minimist "^1.1.1" 2823 | walker "~1.0.5" 2824 | watch "~0.10.0" 2825 | 2826 | sax@^1.2.1: 2827 | version "1.2.4" 2828 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2829 | 2830 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2831 | version "5.4.1" 2832 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2833 | 2834 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2835 | version "2.0.0" 2836 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2837 | 2838 | set-immediate-shim@^1.0.1: 2839 | version "1.0.1" 2840 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2841 | 2842 | shebang-command@^1.2.0: 2843 | version "1.2.0" 2844 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2845 | dependencies: 2846 | shebang-regex "^1.0.0" 2847 | 2848 | shebang-regex@^1.0.0: 2849 | version "1.0.0" 2850 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2851 | 2852 | shellwords@^0.1.0: 2853 | version "0.1.0" 2854 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2855 | 2856 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2857 | version "3.0.2" 2858 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2859 | 2860 | slash@^1.0.0: 2861 | version "1.0.0" 2862 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2863 | 2864 | slice-ansi@0.0.4: 2865 | version "0.0.4" 2866 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2867 | 2868 | sntp@1.x.x: 2869 | version "1.0.9" 2870 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2871 | dependencies: 2872 | hoek "2.x.x" 2873 | 2874 | source-map-support@^0.4.2: 2875 | version "0.4.15" 2876 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2877 | dependencies: 2878 | source-map "^0.5.6" 2879 | 2880 | source-map@^0.4.4: 2881 | version "0.4.4" 2882 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2883 | dependencies: 2884 | amdefine ">=0.0.4" 2885 | 2886 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2887 | version "0.5.6" 2888 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2889 | 2890 | source-map@~0.2.0: 2891 | version "0.2.0" 2892 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2893 | dependencies: 2894 | amdefine ">=0.0.4" 2895 | 2896 | spdx-correct@~1.0.0: 2897 | version "1.0.2" 2898 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2899 | dependencies: 2900 | spdx-license-ids "^1.0.2" 2901 | 2902 | spdx-expression-parse@~1.0.0: 2903 | version "1.0.4" 2904 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2905 | 2906 | spdx-license-ids@^1.0.2: 2907 | version "1.2.2" 2908 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2909 | 2910 | sprintf-js@~1.0.2: 2911 | version "1.0.3" 2912 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2913 | 2914 | sshpk@^1.7.0: 2915 | version "1.13.1" 2916 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2917 | dependencies: 2918 | asn1 "~0.2.3" 2919 | assert-plus "^1.0.0" 2920 | dashdash "^1.12.0" 2921 | getpass "^0.1.1" 2922 | optionalDependencies: 2923 | bcrypt-pbkdf "^1.0.0" 2924 | ecc-jsbn "~0.1.1" 2925 | jsbn "~0.1.0" 2926 | tweetnacl "~0.14.0" 2927 | 2928 | std-mocks@^1.0.1: 2929 | version "1.0.1" 2930 | resolved "https://registry.yarnpkg.com/std-mocks/-/std-mocks-1.0.1.tgz#d3388876d7beeba3c70fbd8e2bcaf46eb07d79fe" 2931 | dependencies: 2932 | lodash "^4.11.1" 2933 | 2934 | stream-line-wrapper@^0.1.1: 2935 | version "0.1.1" 2936 | resolved "https://registry.yarnpkg.com/stream-line-wrapper/-/stream-line-wrapper-0.1.1.tgz#3e2be1d368c6356f90aeef64786683f3eee3eea7" 2937 | dependencies: 2938 | async "~0.2.10" 2939 | 2940 | string-length@^1.0.1: 2941 | version "1.0.1" 2942 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2943 | dependencies: 2944 | strip-ansi "^3.0.0" 2945 | 2946 | string-width@^1.0.1, string-width@^1.0.2: 2947 | version "1.0.2" 2948 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2949 | dependencies: 2950 | code-point-at "^1.0.0" 2951 | is-fullwidth-code-point "^1.0.0" 2952 | strip-ansi "^3.0.0" 2953 | 2954 | string-width@^2.0.0, string-width@^2.1.0: 2955 | version "2.1.1" 2956 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2957 | dependencies: 2958 | is-fullwidth-code-point "^2.0.0" 2959 | strip-ansi "^4.0.0" 2960 | 2961 | string_decoder@~1.0.3: 2962 | version "1.0.3" 2963 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2964 | dependencies: 2965 | safe-buffer "~5.1.0" 2966 | 2967 | stringstream@~0.0.4: 2968 | version "0.0.5" 2969 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2970 | 2971 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2972 | version "3.0.1" 2973 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2974 | dependencies: 2975 | ansi-regex "^2.0.0" 2976 | 2977 | strip-ansi@^4.0.0: 2978 | version "4.0.0" 2979 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2980 | dependencies: 2981 | ansi-regex "^3.0.0" 2982 | 2983 | strip-bom@3.0.0, strip-bom@^3.0.0: 2984 | version "3.0.0" 2985 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2986 | 2987 | strip-bom@^2.0.0: 2988 | version "2.0.0" 2989 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2990 | dependencies: 2991 | is-utf8 "^0.2.0" 2992 | 2993 | strip-json-comments@~2.0.1: 2994 | version "2.0.1" 2995 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2996 | 2997 | supports-color@^2.0.0: 2998 | version "2.0.0" 2999 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3000 | 3001 | supports-color@^3.1.2: 3002 | version "3.2.3" 3003 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3004 | dependencies: 3005 | has-flag "^1.0.0" 3006 | 3007 | supports-color@^4.0.0: 3008 | version "4.2.1" 3009 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836" 3010 | dependencies: 3011 | has-flag "^2.0.0" 3012 | 3013 | symbol-tree@^3.2.1: 3014 | version "3.2.2" 3015 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3016 | 3017 | table@^4.0.1: 3018 | version "4.0.1" 3019 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 3020 | dependencies: 3021 | ajv "^4.7.0" 3022 | ajv-keywords "^1.0.0" 3023 | chalk "^1.1.1" 3024 | lodash "^4.0.0" 3025 | slice-ansi "0.0.4" 3026 | string-width "^2.0.0" 3027 | 3028 | tar-pack@^3.4.0: 3029 | version "3.4.0" 3030 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3031 | dependencies: 3032 | debug "^2.2.0" 3033 | fstream "^1.0.10" 3034 | fstream-ignore "^1.0.5" 3035 | once "^1.3.3" 3036 | readable-stream "^2.1.4" 3037 | rimraf "^2.5.1" 3038 | tar "^2.2.1" 3039 | uid-number "^0.0.6" 3040 | 3041 | tar@^2.2.1: 3042 | version "2.2.1" 3043 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3044 | dependencies: 3045 | block-stream "*" 3046 | fstream "^1.0.2" 3047 | inherits "2" 3048 | 3049 | test-exclude@^4.1.1: 3050 | version "4.1.1" 3051 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3052 | dependencies: 3053 | arrify "^1.0.1" 3054 | micromatch "^2.3.11" 3055 | object-assign "^4.1.0" 3056 | read-pkg-up "^1.0.1" 3057 | require-main-filename "^1.0.1" 3058 | 3059 | text-table@~0.2.0: 3060 | version "0.2.0" 3061 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3062 | 3063 | throat@^3.0.0: 3064 | version "3.2.0" 3065 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 3066 | 3067 | through@^2.3.6: 3068 | version "2.3.8" 3069 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3070 | 3071 | tmp@^0.0.31: 3072 | version "0.0.31" 3073 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3074 | dependencies: 3075 | os-tmpdir "~1.0.1" 3076 | 3077 | tmp@^0.0.33: 3078 | version "0.0.33" 3079 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3080 | dependencies: 3081 | os-tmpdir "~1.0.2" 3082 | 3083 | tmpl@1.0.x: 3084 | version "1.0.4" 3085 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3086 | 3087 | to-fast-properties@^1.0.1: 3088 | version "1.0.3" 3089 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3090 | 3091 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3092 | version "2.3.2" 3093 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3094 | dependencies: 3095 | punycode "^1.4.1" 3096 | 3097 | tr46@~0.0.3: 3098 | version "0.0.3" 3099 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3100 | 3101 | trim-right@^1.0.1: 3102 | version "1.0.1" 3103 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3104 | 3105 | tryit@^1.0.1: 3106 | version "1.0.3" 3107 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3108 | 3109 | tunnel-agent@^0.6.0: 3110 | version "0.6.0" 3111 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3112 | dependencies: 3113 | safe-buffer "^5.0.1" 3114 | 3115 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3116 | version "0.14.5" 3117 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3118 | 3119 | type-check@~0.3.2: 3120 | version "0.3.2" 3121 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3122 | dependencies: 3123 | prelude-ls "~1.1.2" 3124 | 3125 | typedarray@^0.0.6: 3126 | version "0.0.6" 3127 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3128 | 3129 | uglify-js@^2.6: 3130 | version "2.8.29" 3131 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3132 | dependencies: 3133 | source-map "~0.5.1" 3134 | yargs "~3.10.0" 3135 | optionalDependencies: 3136 | uglify-to-browserify "~1.0.0" 3137 | 3138 | uglify-to-browserify@~1.0.0: 3139 | version "1.0.2" 3140 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3141 | 3142 | uid-number@^0.0.6: 3143 | version "0.0.6" 3144 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3145 | 3146 | urlgrey@0.4.4: 3147 | version "0.4.4" 3148 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" 3149 | 3150 | user-home@^1.1.1: 3151 | version "1.1.1" 3152 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3153 | 3154 | util-deprecate@~1.0.1: 3155 | version "1.0.2" 3156 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3157 | 3158 | uuid@^3.0.0: 3159 | version "3.1.0" 3160 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3161 | 3162 | v8flags@^2.0.10: 3163 | version "2.1.1" 3164 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3165 | dependencies: 3166 | user-home "^1.1.1" 3167 | 3168 | validate-npm-package-license@^3.0.1: 3169 | version "3.0.1" 3170 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3171 | dependencies: 3172 | spdx-correct "~1.0.0" 3173 | spdx-expression-parse "~1.0.0" 3174 | 3175 | verror@1.10.0: 3176 | version "1.10.0" 3177 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3178 | dependencies: 3179 | assert-plus "^1.0.0" 3180 | core-util-is "1.0.2" 3181 | extsprintf "^1.2.0" 3182 | 3183 | walker@~1.0.5: 3184 | version "1.0.7" 3185 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3186 | dependencies: 3187 | makeerror "1.0.x" 3188 | 3189 | watch@~0.10.0: 3190 | version "0.10.0" 3191 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3192 | 3193 | webidl-conversions@^3.0.0: 3194 | version "3.0.1" 3195 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3196 | 3197 | webidl-conversions@^4.0.0: 3198 | version "4.0.1" 3199 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3200 | 3201 | whatwg-encoding@^1.0.1: 3202 | version "1.0.1" 3203 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3204 | dependencies: 3205 | iconv-lite "0.4.13" 3206 | 3207 | whatwg-url@^4.3.0: 3208 | version "4.8.0" 3209 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3210 | dependencies: 3211 | tr46 "~0.0.3" 3212 | webidl-conversions "^3.0.0" 3213 | 3214 | whereis@^0.4.0: 3215 | version "0.4.0" 3216 | resolved "https://registry.yarnpkg.com/whereis/-/whereis-0.4.0.tgz#7ace618a4b8c2a8863db36ff9f54ef8aa23d822b" 3217 | 3218 | which-module@^1.0.0: 3219 | version "1.0.0" 3220 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3221 | 3222 | which@^1.2.12, which@^1.2.9: 3223 | version "1.3.0" 3224 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3225 | dependencies: 3226 | isexe "^2.0.0" 3227 | 3228 | wide-align@^1.1.0: 3229 | version "1.1.2" 3230 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3231 | dependencies: 3232 | string-width "^1.0.2" 3233 | 3234 | window-size@0.1.0: 3235 | version "0.1.0" 3236 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3237 | 3238 | wordwrap@0.0.2: 3239 | version "0.0.2" 3240 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3241 | 3242 | wordwrap@~0.0.2: 3243 | version "0.0.3" 3244 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3245 | 3246 | wordwrap@~1.0.0: 3247 | version "1.0.0" 3248 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3249 | 3250 | worker-farm@^1.3.1: 3251 | version "1.4.1" 3252 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.4.1.tgz#a438bc993a7a7d133bcb6547c95eca7cff4897d8" 3253 | dependencies: 3254 | errno "^0.1.4" 3255 | xtend "^4.0.1" 3256 | 3257 | wrap-ansi@^2.0.0: 3258 | version "2.1.0" 3259 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3260 | dependencies: 3261 | string-width "^1.0.1" 3262 | strip-ansi "^3.0.1" 3263 | 3264 | wrappy@1: 3265 | version "1.0.2" 3266 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3267 | 3268 | write@^0.2.1: 3269 | version "0.2.1" 3270 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3271 | dependencies: 3272 | mkdirp "^0.5.1" 3273 | 3274 | xml-name-validator@^2.0.1: 3275 | version "2.0.1" 3276 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3277 | 3278 | xtend@^4.0.1: 3279 | version "4.0.1" 3280 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3281 | 3282 | y18n@^3.2.1: 3283 | version "3.2.1" 3284 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3285 | 3286 | yallist@^2.1.2: 3287 | version "2.1.2" 3288 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3289 | 3290 | yargs-parser@^5.0.0: 3291 | version "5.0.0" 3292 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3293 | dependencies: 3294 | camelcase "^3.0.0" 3295 | 3296 | yargs@^7.0.2: 3297 | version "7.1.0" 3298 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3299 | dependencies: 3300 | camelcase "^3.0.0" 3301 | cliui "^3.2.0" 3302 | decamelize "^1.1.1" 3303 | get-caller-file "^1.0.1" 3304 | os-locale "^1.4.0" 3305 | read-pkg-up "^1.0.1" 3306 | require-directory "^2.1.1" 3307 | require-main-filename "^1.0.1" 3308 | set-blocking "^2.0.0" 3309 | string-width "^1.0.2" 3310 | which-module "^1.0.0" 3311 | y18n "^3.2.1" 3312 | yargs-parser "^5.0.0" 3313 | 3314 | yargs@~3.10.0: 3315 | version "3.10.0" 3316 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3317 | dependencies: 3318 | camelcase "^1.0.2" 3319 | cliui "^2.1.0" 3320 | decamelize "^1.0.0" 3321 | window-size "0.1.0" 3322 | --------------------------------------------------------------------------------