├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .rockets.js ├── .travis.yml ├── LICENSE.md ├── README.md ├── appveyor.yml ├── package.json ├── rockets └── RocketLauncher.js ├── src ├── Rocket.js ├── RocketLauncher.js ├── bin │ └── _bottlerocket.js ├── cli │ ├── Command.js │ ├── Reporter.js │ └── bdd │ │ ├── allCommands.js │ │ ├── command.js │ │ └── globals.js ├── constants │ └── cli.js ├── index.js └── reporters │ └── stream.js ├── test └── Rocket.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | # Unix-style newlines with a newline ending every file 4 | [*] 5 | end_of_line = lf 6 | insert_final_newline = true 7 | 8 | 9 | # Matches multiple files with brace expansion notation 10 | # Set default charset 11 | [*.{js,html,scss,sass,less,css,sh,bat,json}] 12 | charset = utf-8 13 | indent_style = space 14 | indent_size = 2 15 | trim_trailing_whitespace = true 16 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "airbnb", 4 | "env": { 5 | "node": true 6 | }, 7 | "rules": { 8 | "semi": [2, "never"], 9 | "no-underscore-dangle": [0], 10 | "global-require": [0] 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | lib 3 | *.log 4 | pids 5 | *.pid 6 | *.seed 7 | lib-cov 8 | coverage 9 | build/Release 10 | node_modules 11 | yarn-debug.log* 12 | yarn-error.log* 13 | npm-debug.log* 14 | .lock-wscript 15 | .DS_Store 16 | Draft.md 17 | data/ 18 | -------------------------------------------------------------------------------- /.rockets.js: -------------------------------------------------------------------------------- 1 | require('./rockets/RocketLauncher') 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "1.8" 6 | - "2.5" 7 | - "3.3" 8 | - "4.4" 9 | - "5.11" 10 | - "6.2" 11 | sudo: false 12 | cache: 13 | directories: 14 | - node_modules 15 | before_install: 16 | # Update Node.js modules 17 | - "test ! -d node_modules || npm prune" 18 | - "test ! -d node_modules || npm rebuild" 19 | script: "npm run-script test-ci" 20 | after_script: "npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls" 21 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | ## MIT License 2 | 3 | Copyright (C) 2016 [Bottlerockets Contributors](https://github.com/bottlerockets/bottlerockets/graphs/contributors) 4 | 5 | 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: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | 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. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [WIP] This project is a work in progress and is not recommended for production use 2 | 3 | -- 4 | 5 | [![Bottlerockets Logo](https://cldup.com/WXo9ouZhmm.png)](https://bottlerockets.github.io/) 6 | 7 | [![NPM Version][npm-image]][npm-url] 8 | [![Linux Build][travis-image]][travis-url] 9 | [![Windows Build][appveyor-image]][appveyor-url] 10 | [![Test Coverage][coveralls-image]][coveralls-url] 11 | 12 | **Bottlerockets** is a BDD task framework for streaming queued task results with [Mocha](https://mochajs.org/) and [Chai](http://chaijs.com/). Bottlerockets can be used as a CLI tool or a task queue server to stream human readable statusses of tasks and their JSON results. Bottlerockets creates a CLI and REPL interface for your tasks for simpler debugging and improvements to your development workflow. 13 | 14 | Bottlerockets manages and launches your *bottlerocket processes*. A bottlerocket process is a node process that runs your environment specific tasks and streams test results to your server in JSON format or to your terminal in a mocha spec format. Bottlerockets can also be optimized to run tasks quicker by running multiple tasks in the same process, though this feature is optional. Bottlerockets is built to scale and comes with load balancing algorithms to manage your tasks. 15 | 16 | # Usage 17 | 18 | - Run a persistent task queue server with mocha-filled results 19 | - Run tasks with expensive setup/teardown operations quickly 20 | - Easily scale your bottlerocket processes 21 | - CLI interface for your bottlerocket tasks 22 | - Run your bottlerocket tasks in a REPL 23 | 24 | # Install 25 | 26 | ``` 27 | npm install -g bottlerockets 28 | ``` 29 | 30 | # Getting Started 31 | 32 | Initialize `.rockets.js` in the root of your project directory: 33 | 34 | ``` 35 | bottlerockets init 36 | ``` 37 | 38 | This will create a `.bottlerockets.json` file: 39 | 40 | ```json 41 | { 42 | "rockets": [ 43 | { 44 | "files": ["rockets/**"], 45 | "balancer": "round-rocket", 46 | "maxInstances": 1, 47 | "maxTasks": 5, 48 | "sleep": 5 49 | } 50 | ] 51 | } 52 | ``` 53 | 54 | ```javascript 55 | task("welcome") 56 | .description("This says hello to the enemy") 57 | .action(function () { 58 | describe("Name", function () { 59 | it("is valid", function () { 60 | expect(args.firstName).to.be.a('string') 61 | expect(args.lastName).to.be.a('string') 62 | task.fullName = args.firstName + " " + args.lastName 63 | }) 64 | 65 | it("is not Tom", function () { 66 | expect(task.firstName).to.not.be.equal('Tom') 67 | }) 68 | }) 69 | }) 70 | ``` 71 | 72 | Then run the test bottlerocket task by running: 73 | 74 | ``` 75 | bottlerocket welcome --first-name John --last-name Henrick --western 76 | ``` 77 | 78 | # Bottlerocket CLI 79 | 80 | Bottlerockets has CLI commands: 81 | 82 | ### `bottlerockets [options] ` 83 | 84 | ### `bottlerocket [options] [args]` 85 | 86 | The bottlerockets task runner. Run tasks 87 | 88 | To run a single project bottlerocket task: 89 | 90 | ``` 91 | $ bottlerocket --help 92 | 93 | Usage: bottlerocket [options] [args] 94 | 95 | Tasks: 96 | 97 | welcome This says hello to the enemy 98 | help output help for task 99 | 100 | Options: 101 | 102 | -h, --help output usage information 103 | -V, --version output the version number 104 | -r, --require require js files 105 | -R, --reporter [value] mocha reporter (default: "spec") 106 | -V, --verbose set logging verbosity 107 | ``` 108 | 109 | Or run a REST server 110 | 111 | ``` 112 | $ bottlerockets http --port 8080 113 | 114 | Starting server... (100%) 115 | 116 | REST Server listening on port 8080... 117 | ``` 118 | 119 | # Server 120 | 121 | [WIP] 122 | 123 | # Node Usage 124 | 125 | Create a queue with the Bottlerockets launcher: 126 | 127 | ```javascript 128 | import Bottlerockets from 'bottlerockets' 129 | 130 | /** 131 | * These are the defaults for a Bottlerockets instance 132 | */ 133 | const rockets = new Bottlerockets({ 134 | // Load balancing method (eg. "round-robin", "queue-doubles") 135 | balancer: "queue-doubles", 136 | 137 | // Allow up to 5 tasks per single bottlerocket process 138 | maxTasks: 10, 139 | 140 | // Launch up to 10 bottlerocket processes per instance 141 | // With maxTasks set to 10, this allows up to 80 tasks 142 | // to run simultaneously 143 | maxInstances: 8, 144 | 145 | // Shut down bottlerocket processes that have not been 146 | // used for 5 minutes 147 | sleep: 5, 148 | }) 149 | 150 | // Launch 100 rockets at once 151 | setInterval(function () { 152 | for (let i = 0; i < 100; i++) { 153 | rockets.launch("welcome", { 154 | firstName: "John", 155 | lastName: "Henrick", 156 | intruder: false, 157 | }).success(result => { 158 | console.log("result", result) 159 | }).catch(err => { 160 | console.error("error", err) 161 | }) 162 | } 163 | }, 1000) 164 | 165 | // or even run a REST server which can even be mounted 166 | // as express.js middleware (eg. authentication) 167 | const server = rockets.createServer() 168 | server.listen(8080) 169 | ``` 170 | 171 | # Documentation & Community 172 | 173 | - [Documentation](https://docs.bottlerockets.co) 174 | - [API](https://docs.bottlerockets.co/api) 175 | - [Gitter](https://gitter.im/bottlerockets/bottlerockets) 176 | - [Wiki](https://github.com/bottlerockets/bottlerockets/wiki) 177 | 178 | # License 179 | 180 | MIT License. See [LICENSE.md](http://github.com/bottlerockets/bottlerockets/blob/master/LICENSE.md) file for details. 181 | 182 | # Contributors 183 | 184 | | Name | GitHub | Facebook | 185 | | -------------- | --------------------------------------- | ------------------------------------------ | 186 | | **Sam Hunter** | [samhunta](https://github.com/samhunta) | [@samhuntr](https://facebook.com/samhuntr) | 187 | 188 | 189 | [travis-image]: https://img.shields.io/travis/bottlerockets/bottlerockets/master.svg?label=linux 190 | [travis-url]: https://travis-ci.org/bottlerockets/bottlerockets 191 | [appveyor-image]: https://img.shields.io/appveyor/ci/samhunta/bottlerockets/master.svg?label=windows 192 | [appveyor-url]: https://ci.appveyor.com/project/samhunta/bottlerockets 193 | [coveralls-image]: https://img.shields.io/coveralls/bottlerockets/bottlerockets/master.svg 194 | [coveralls-url]: https://coveralls.io/r/bottlerockets/bottlerockets?branch=master 195 | [npm-image]: https://img.shields.io/npm/v/bottlerockets.svg 196 | [npm-url]: https://npmjs.org/package/bottlerockets 197 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | environment: 2 | matrix: 3 | - nodejs_version: "0.10" 4 | - nodejs_version: "0.12" 5 | - nodejs_version: "1.8" 6 | - nodejs_version: "2.5" 7 | - nodejs_version: "3.3" 8 | - nodejs_version: "4.4" 9 | - nodejs_version: "5.11" 10 | - nodejs_version: "6.2" 11 | cache: 12 | - node_modules 13 | install: 14 | - ps: Install-Product node $env:nodejs_version 15 | - if exist node_modules npm prune 16 | - if exist node_modules npm rebuild 17 | - npm install 18 | build: off 19 | test_script: 20 | - node --version 21 | - npm --version 22 | - npm run test-ci 23 | version: "{build}" 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bottlerockets", 3 | "version": "0.1.0-alpha.4", 4 | "description": "Mocha filled Node.js task framework", 5 | "main": "index.js", 6 | "homepage": "https://bottlerockets.github.io", 7 | "repository": { 8 | "type": "git", 9 | "url": "git://github.com/bottlerockets/bottlerockets.git" 10 | }, 11 | "scripts": { 12 | "prepublish": "npm run build", 13 | "watch": "supervisor -n exit -w src -- -r 'babel-register' src/index.js", 14 | "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require babel-register --reporter spec --check-leaks test/", 15 | "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require babel-register --reporter dot --check-leaks test/", 16 | "test": "mocha --reporter spec --require babel-register test/", 17 | "watch-test": "supervisor -x mocha -n exit -w test -- --reporter spec -r 'babel-register' test/", 18 | "build": "babel -d lib src" 19 | }, 20 | "author": "Samuel Hunter", 21 | "license": "MIT", 22 | "files": [ 23 | "lib" 24 | ], 25 | "devDependencies": { 26 | "babel-cli": "^6.14.0", 27 | "babel-eslint": "^6.1.2", 28 | "babel-preset-es2015": "^6.14.0", 29 | "babel-register": "^6.14.0", 30 | "chai": "^3.5.0", 31 | "eslint": "^3.5.0", 32 | "eslint-config-airbnb": "^11.1.0", 33 | "nyc": "^10.3.0", 34 | "supervisor": "^0.11.0" 35 | }, 36 | "dependencies": { 37 | "chai": "^3.5.0", 38 | "commander": "^2.9.0", 39 | "json3": "^3.3.2", 40 | "mocha": "^3.0.2", 41 | "node-uuid": "^1.4.7", 42 | "webdriverio": "^4.2.12" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /rockets/RocketLauncher.js: -------------------------------------------------------------------------------- 1 | command('pass') 2 | .description('Pass always') 3 | .action(function () { 4 | it('should always pass', function () { 5 | expect(1).to.be.equal(1) 6 | }) 7 | }) 8 | 9 | command('fail') 10 | .description('Fail always') 11 | .action(function () { 12 | it('should always fail', function () { 13 | expect(1).to.be.equal(0) 14 | }) 15 | }) 16 | 17 | command('process-exit') 18 | .description('Fail with a syntax error') 19 | .action(function () { 20 | describe('process.exit()', () => { 21 | it('should not kill the bottlerocket', () => { 22 | process.exit() 23 | expect(1).to.be.equal(1) 24 | }) 25 | }) 26 | }) 27 | -------------------------------------------------------------------------------- /src/Rocket.js: -------------------------------------------------------------------------------- 1 | import { join as joinPath } from 'path' 2 | import { fork } from 'child_process' 3 | import { EventEmitter } from 'events' 4 | import uuid from 'node-uuid' 5 | 6 | const BOTTLEROCKET_CLI = joinPath(__dirname, './bin/_bottlerocket.js') 7 | 8 | const defaultSettings = { 9 | argv: [], 10 | } 11 | 12 | class Rocket extends EventEmitter { 13 | constructor(files = [], settings = {}) { 14 | super() 15 | this._files = Array.isArray(files) ? files : [files] 16 | this._onOut = this._onOut.bind(this) 17 | this._onKill = this._onKill.bind(this) 18 | this._onMessage = this._onMessage.bind(this) 19 | this._onError = this._onError.bind(this) 20 | this._settings = Object.assign({}, defaultSettings, settings) 21 | this._process = undefined 22 | } 23 | 24 | execute(command, args) { 25 | return new Promise((resolve, reject) => { 26 | const commandId = uuid.v4() 27 | 28 | if (! this._process) { 29 | this.spawn() 30 | } 31 | 32 | this._process.send({ 33 | __run__: { id: commandId, command, args } 34 | }) 35 | 36 | this.on('end', function (_commandId, result) { 37 | if (commandId === _commandId) { 38 | resolve(result) 39 | } 40 | }) 41 | }) 42 | } 43 | 44 | _onMessage(message) { 45 | if (typeof message === 'object' && message.__report__) { 46 | const [ eventName, commandId, result ] = message.__report__ 47 | this.emit(eventName, commandId, result) 48 | } 49 | } 50 | 51 | _onOut(data) { 52 | } 53 | 54 | _onError(err) { 55 | } 56 | 57 | _onKill() { 58 | this._ready = false 59 | this._starting = false 60 | this._process = undefined 61 | } 62 | 63 | spawn() { 64 | if (this._process === undefined) { 65 | this._process = fork(BOTTLEROCKET_CLI, [ 66 | '--reporter', 'stream' 67 | ].concat(this._files), { 68 | execArgv: this._settings.argv, 69 | silent: true, 70 | }) 71 | 72 | this._process.stdout.on('data', this._onOut) 73 | this._process.stderr.on('data', this._onError) 74 | this._process.on('message', this._onMessage) 75 | this._process.on('exit', this._onKill) 76 | } 77 | } 78 | 79 | kill() { 80 | if (this._process !== undefined) { 81 | this._process.kill('SIGINT') 82 | this._process.kill('SIGTERM') 83 | this._process = undefined 84 | } 85 | } 86 | } 87 | 88 | export default Rocket 89 | -------------------------------------------------------------------------------- /src/RocketLauncher.js: -------------------------------------------------------------------------------- 1 | import { EventEmitter } from 'events' 2 | import Rocket from './Rocket' 3 | 4 | class RocketLauncher extends EventEmitter { 5 | constructor(files = []) { 6 | super() 7 | this._files = files 8 | } 9 | 10 | fire(command) { 11 | const rocket = new Rocket(this._files) 12 | return rocket.execute(command) 13 | } 14 | } 15 | 16 | export default RocketLauncher 17 | -------------------------------------------------------------------------------- /src/bin/_bottlerocket.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | // . 3 | // .' | 4 | // .' | _______ __ __ __ __ __ 5 | // /`-._' | _ .-----| |_| |_| .-----.----.-----.----| |--.-----| |_.-----. 6 | // / / |. 1 | _ | _| _| | -__| _| _ | __| <| -__| _|__ --| 7 | // / / |. _ |_____|____|____|__|_____|__| |_____|____|__|__|_____|____|_____| 8 | // / / |: 1 \ 9 | // (`-./ |::.. . / github.com/bottlerockets 10 | // ) `-------' 11 | // ' 12 | import { VERSION } from '../constants/cli' 13 | import Reporter from '../cli/Reporter' 14 | import program from 'commander' 15 | 16 | program 17 | .version(VERSION) 18 | .usage('[options] ') 19 | .option('-r, --require ', 'require js files') 20 | .option('-R, --reporter [value]', 'mocha reporter (default: "spec")', 'spec') 21 | .option('-V, --verbose ', 'set logging verbosity') 22 | .parse(process.argv) 23 | 24 | if (program.args.length === 0) { 25 | program.outputHelp() 26 | process.exit() 27 | } 28 | 29 | const files = program.args 30 | const reporter = new Reporter({ 31 | reporter: program.reporter, 32 | }) 33 | 34 | reporter.setFiles(files) 35 | 36 | reporter.run(null, 'process-exit', (result) => { 37 | console.log('got result') 38 | }) 39 | 40 | if (program.reporter === 'stream') { 41 | process.on('message', function (msg) { 42 | if (typeof msg === 'object' && msg.__run__) { 43 | const { id, command, args } = msg.__run__ 44 | reporter.run(id, command, args) 45 | } 46 | }) 47 | } 48 | 49 | -------------------------------------------------------------------------------- /src/cli/Command.js: -------------------------------------------------------------------------------- 1 | const hasOwn = Object.prototype.hasOwnProperty 2 | 3 | const defineSetter = (obj, key, def) => { 4 | const pKey = `_${key}` 5 | obj[pKey] = def 6 | obj[key] = function (value) { 7 | if (arguments.length === 0) { 8 | return obj[pKey] 9 | } 10 | obj[pKey] = value 11 | return obj 12 | } 13 | } 14 | 15 | class Command { 16 | constructor(key) { 17 | defineSetter(this, 'key', key) 18 | defineSetter(this, 'args', {}) 19 | defineSetter(this, 'description', null) 20 | defineSetter(this, 'action', null) 21 | } 22 | 23 | run(id, args) { 24 | if (Array.isArray(args)) { 25 | const cleanedArgs = Object.create(null) 26 | Object.keys(args).forEach((key) => { 27 | if (hasOwn.call(this._args, key)) { 28 | if (this._args[key] === Boolean) { 29 | cleanedArgs[key] = args[key] === '' || 30 | args[key] !== 'false' && 31 | args[key] !== '0' && 32 | Boolean(args[key]) 33 | } else { 34 | cleanedArgs[key] = this._args[key](args[key]) 35 | } 36 | } 37 | }) 38 | } 39 | 40 | return this._action(args) 41 | } 42 | } 43 | 44 | export default Command 45 | -------------------------------------------------------------------------------- /src/cli/Reporter.js: -------------------------------------------------------------------------------- 1 | import Mocha from 'mocha' 2 | import { resolve } from 'path' 3 | import { EventEmitter } from 'events' 4 | import * as taskGlobals from './bdd/globals' 5 | import allCommands from './bdd/allCommands' 6 | import { resolve as pathResolve } from 'path' 7 | 8 | const initCommand = '__INIT__' 9 | 10 | const jsonStreamReporter = resolve(__dirname, '../reporters/stream') 11 | 12 | const defaultSettings = { 13 | reporter: 'stream', 14 | } 15 | 16 | export default class Reporter extends EventEmitter { 17 | constructor(settings) { 18 | super() 19 | Object.assign(global, taskGlobals) 20 | this._settings = Object.assign({}, defaultSettings) 21 | this._ready = false 22 | this._starting = false 23 | this._queued = [] 24 | this._files = [] 25 | 26 | if (settings) { 27 | this.configure(settings) 28 | } 29 | } 30 | 31 | setFiles(files, directory = process.cwd()) { 32 | this._files = files.map(file => pathResolve(directory, file)) 33 | } 34 | 35 | configure(settings) { 36 | this._settings = Object.assign(this._settings, settings) 37 | } 38 | 39 | getReporter() { 40 | const reporter = this.get('reporter') 41 | if (reporter === 'stream') { 42 | return jsonStreamReporter 43 | } 44 | return reporter 45 | } 46 | 47 | get(name) { 48 | if (arguments.length === 0) { 49 | return this._settings 50 | } 51 | 52 | return this._settings[name] 53 | } 54 | 55 | set(name, value) { 56 | if (arguments.length === 1) { 57 | return this.get(name) 58 | } 59 | 60 | this._settings[name] = value 61 | } 62 | 63 | createMochaReporter(id) { 64 | const mocha = new Mocha({ reporter: this.getReporter() }) 65 | mocha.suite.commandId = id 66 | mocha.globals(Object.keys(taskGlobals)) 67 | mocha.files = this._files 68 | return mocha 69 | } 70 | 71 | run(id, command, args, callback) { 72 | if (! this._ready && ! this._starting) { 73 | this._starting = true 74 | const oldWrite = process.stdout.write 75 | process.stdout.write = function(){} 76 | this._runCommand(undefined, initCommand, () => { 77 | process.stdout.write = oldWrite 78 | this._ready = true 79 | this._starting = false 80 | this._commands = allCommands() 81 | this._next() 82 | }) 83 | } 84 | 85 | this._queued.push([id, command, args, callback]) 86 | this._next() 87 | } 88 | 89 | _next() { 90 | if (this._ready && this._queued.length > 0) { 91 | while (this._queued.length > 0) { 92 | const [ id, command, args, callback ] = this._queued.shift() 93 | this._runCommand(id, command, args, callback) 94 | } 95 | } 96 | } 97 | 98 | _runCommand(id, command, args, callback) { 99 | let cb = (typeof args === 'function' ? args : (callback || noop)) 100 | 101 | try { 102 | const mocha = this.createMochaReporter(id) 103 | 104 | if (this._ready && this._commands[command]) { 105 | mocha.suite.on('require', () => { 106 | this._commands[command].run(args) 107 | }) 108 | } 109 | 110 | const result = mocha.run(code => { 111 | cb.call(this, code) 112 | }) 113 | } catch (e) { 114 | cb.call(this, 1, e) 115 | } 116 | } 117 | } 118 | -------------------------------------------------------------------------------- /src/cli/bdd/allCommands.js: -------------------------------------------------------------------------------- 1 | export default function allCommands() { 2 | return global.__registeredCommands__ 3 | } 4 | -------------------------------------------------------------------------------- /src/cli/bdd/command.js: -------------------------------------------------------------------------------- 1 | import Command from '../Command' 2 | 3 | if (! global.__registeredCommands__) { 4 | global.__registeredCommands__ = Object.create(null) 5 | } 6 | 7 | export default function command(name) { 8 | if (! global.__registeredCommands__[name]) { 9 | global.__registeredCommands__[name] = new Command(name) 10 | } 11 | 12 | return global.__registeredCommands__[name] 13 | } 14 | -------------------------------------------------------------------------------- /src/cli/bdd/globals.js: -------------------------------------------------------------------------------- 1 | export { expect, assert } from 'chai' 2 | export { default as command } from './command' 3 | export { default as allCommands } from './allCommands' 4 | export var __registeredCommands__ = Object.create(null) 5 | -------------------------------------------------------------------------------- /src/constants/cli.js: -------------------------------------------------------------------------------- 1 | import { readFileSync } from 'fs' 2 | 3 | export const VERSION = JSON.parse(readFileSync(__dirname + '/../../package.json', 'utf8')).version 4 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export { default as RocketLauncher } from './RocketLauncher' 2 | -------------------------------------------------------------------------------- /src/reporters/stream.js: -------------------------------------------------------------------------------- 1 | import BaseReporter from 'mocha/lib/reporters/base' 2 | import JSON from 'json3' 3 | 4 | class StreamReporter extends BaseReporter { 5 | constructor (runner) { 6 | super(runner) 7 | this.listen(runner) 8 | } 9 | 10 | listen(runner) { 11 | const self = this 12 | const { total } = runner 13 | const { commandId } = runner.suite 14 | 15 | if (commandId === undefined || commandId === null) { 16 | return 17 | } 18 | 19 | runner.on('start', () => { 20 | process.send({ __report__: ['start', commandId, { total }]}) 21 | }) 22 | 23 | runner.on('pass', (test) => { 24 | process.send({ __report__: ['pass', commandId, clean(test)]}) 25 | }) 26 | 27 | runner.on('fail', (test, err) => { 28 | test = clean(test) 29 | test.err = err.message 30 | test.stack = err.stack || null 31 | process.send({ __report__: ['fail', commandId, test]}) 32 | }) 33 | 34 | runner.on('end', () => { 35 | process.send({ __report__: ['end', commandId, self.stats]}) 36 | }) 37 | } 38 | } 39 | 40 | function clean(test) { 41 | return { 42 | title: test.title, 43 | fullTitle: test.fullTitle(), 44 | duration: test.duration, 45 | currentRetry: test.currentRetry() 46 | } 47 | } 48 | 49 | // eslint-disable-next-line 50 | module.exports = StreamReporter 51 | -------------------------------------------------------------------------------- /test/Rocket.test.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai' 2 | import Rocket from '../src/Rocket' 3 | import { join as pathJoin } from 'path' 4 | 5 | const CLI_PATH = pathJoin(__dirname, '../src/bin/bottlerocket.js') 6 | 7 | describe('Rocket', function () { 8 | describe('test commands', function () { 9 | this.timeout(5000) 10 | 11 | var rocket 12 | 13 | before(function () { 14 | rocket = new Rocket(pathJoin(__dirname, '../.rockets.js'), { 15 | argv: ['--require', 'babel-register'] 16 | }) 17 | }) 18 | 19 | after(function () { 20 | rocket = null 21 | }) 22 | 23 | describe('"pass" command', function () { 24 | it('should pass', function (done) { 25 | rocket.execute('pass').then((result) => { 26 | expect(result.tests).to.be.equal(result.passes) 27 | done() 28 | }) 29 | }) 30 | }) 31 | 32 | describe('"fail" command', function () { 33 | it('should fail', function (done) { 34 | rocket.execute('fail').then((result) => { 35 | expect(result.tests).to.be.equal(result.failures) 36 | done() 37 | }) 38 | }) 39 | }) 40 | 41 | describe('"exit" command', function () { 42 | it('process.exit() should not kill the process', function (done) { 43 | rocket.execute('process-exit').then((result) => { 44 | expect(result.tests).to.be.equal(result.failures) 45 | done() 46 | }) 47 | }) 48 | }) 49 | 50 | }) 51 | }) 52 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | acorn-jsx@^3.0.0: 10 | version "3.0.1" 11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 12 | dependencies: 13 | acorn "^3.0.4" 14 | 15 | acorn@^3.0.4: 16 | version "3.3.0" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 18 | 19 | acorn@^5.0.1: 20 | version "5.0.3" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 22 | 23 | ajv-keywords@^1.0.0: 24 | version "1.5.1" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 26 | 27 | ajv@^4.7.0, ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | align-text@^0.1.1, align-text@^0.1.3: 35 | version "0.1.4" 36 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 37 | dependencies: 38 | kind-of "^3.0.2" 39 | longest "^1.0.1" 40 | repeat-string "^1.5.2" 41 | 42 | amdefine@>=0.0.4: 43 | version "1.0.1" 44 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 45 | 46 | ansi-escapes@^1.1.0: 47 | version "1.4.0" 48 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 49 | 50 | ansi-regex@^2.0.0: 51 | version "2.1.1" 52 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 53 | 54 | ansi-styles@^2.2.1: 55 | version "2.2.1" 56 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 57 | 58 | anymatch@^1.3.0: 59 | version "1.3.0" 60 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 61 | dependencies: 62 | arrify "^1.0.0" 63 | micromatch "^2.1.5" 64 | 65 | append-transform@^0.4.0: 66 | version "0.4.0" 67 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 68 | dependencies: 69 | default-require-extensions "^1.0.0" 70 | 71 | aproba@^1.0.3: 72 | version "1.1.1" 73 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 74 | 75 | archiver-utils@^1.3.0: 76 | version "1.3.0" 77 | resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz#e50b4c09c70bf3d680e32ff1b7994e9f9d895174" 78 | dependencies: 79 | glob "^7.0.0" 80 | graceful-fs "^4.1.0" 81 | lazystream "^1.0.0" 82 | lodash "^4.8.0" 83 | normalize-path "^2.0.0" 84 | readable-stream "^2.0.0" 85 | 86 | archiver@~1.3.0: 87 | version "1.3.0" 88 | resolved "https://registry.yarnpkg.com/archiver/-/archiver-1.3.0.tgz#4f2194d6d8f99df3f531e6881f14f15d55faaf22" 89 | dependencies: 90 | archiver-utils "^1.3.0" 91 | async "^2.0.0" 92 | buffer-crc32 "^0.2.1" 93 | glob "^7.0.0" 94 | lodash "^4.8.0" 95 | readable-stream "^2.0.0" 96 | tar-stream "^1.5.0" 97 | walkdir "^0.0.11" 98 | zip-stream "^1.1.0" 99 | 100 | archy@^1.0.0: 101 | version "1.0.0" 102 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 103 | 104 | are-we-there-yet@~1.1.2: 105 | version "1.1.4" 106 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 107 | dependencies: 108 | delegates "^1.0.0" 109 | readable-stream "^2.0.6" 110 | 111 | argparse@^1.0.7: 112 | version "1.0.9" 113 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 114 | dependencies: 115 | sprintf-js "~1.0.2" 116 | 117 | arr-diff@^2.0.0: 118 | version "2.0.0" 119 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 120 | dependencies: 121 | arr-flatten "^1.0.1" 122 | 123 | arr-flatten@^1.0.1: 124 | version "1.0.3" 125 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 126 | 127 | array-union@^1.0.1: 128 | version "1.0.2" 129 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 130 | dependencies: 131 | array-uniq "^1.0.1" 132 | 133 | array-uniq@^1.0.1: 134 | version "1.0.3" 135 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 136 | 137 | array-unique@^0.2.1: 138 | version "0.2.1" 139 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 140 | 141 | arrify@^1.0.0, arrify@^1.0.1: 142 | version "1.0.1" 143 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 144 | 145 | asn1@~0.2.3: 146 | version "0.2.3" 147 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 148 | 149 | assert-plus@1.0.0, assert-plus@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 152 | 153 | assert-plus@^0.2.0: 154 | version "0.2.0" 155 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 156 | 157 | assertion-error@^1.0.1: 158 | version "1.0.2" 159 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 160 | 161 | async-each@^1.0.0: 162 | version "1.0.1" 163 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 164 | 165 | async@^1.4.0: 166 | version "1.5.2" 167 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 168 | 169 | async@^2.0.0: 170 | version "2.4.0" 171 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.0.tgz#4990200f18ea5b837c2cc4f8c031a6985c385611" 172 | dependencies: 173 | lodash "^4.14.0" 174 | 175 | asynckit@^0.4.0: 176 | version "0.4.0" 177 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 178 | 179 | atob@~1.1.0: 180 | version "1.1.3" 181 | resolved "https://registry.yarnpkg.com/atob/-/atob-1.1.3.tgz#95f13629b12c3a51a5d215abdce2aa9f32f80773" 182 | 183 | aws-sign2@~0.6.0: 184 | version "0.6.0" 185 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 186 | 187 | aws4@^1.2.1: 188 | version "1.6.0" 189 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 190 | 191 | babel-cli@^6.14.0: 192 | version "6.24.1" 193 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 194 | dependencies: 195 | babel-core "^6.24.1" 196 | babel-polyfill "^6.23.0" 197 | babel-register "^6.24.1" 198 | babel-runtime "^6.22.0" 199 | commander "^2.8.1" 200 | convert-source-map "^1.1.0" 201 | fs-readdir-recursive "^1.0.0" 202 | glob "^7.0.0" 203 | lodash "^4.2.0" 204 | output-file-sync "^1.1.0" 205 | path-is-absolute "^1.0.0" 206 | slash "^1.0.0" 207 | source-map "^0.5.0" 208 | v8flags "^2.0.10" 209 | optionalDependencies: 210 | chokidar "^1.6.1" 211 | 212 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 213 | version "6.22.0" 214 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 215 | dependencies: 216 | chalk "^1.1.0" 217 | esutils "^2.0.2" 218 | js-tokens "^3.0.0" 219 | 220 | babel-core@^6.24.1: 221 | version "6.24.1" 222 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 223 | dependencies: 224 | babel-code-frame "^6.22.0" 225 | babel-generator "^6.24.1" 226 | babel-helpers "^6.24.1" 227 | babel-messages "^6.23.0" 228 | babel-register "^6.24.1" 229 | babel-runtime "^6.22.0" 230 | babel-template "^6.24.1" 231 | babel-traverse "^6.24.1" 232 | babel-types "^6.24.1" 233 | babylon "^6.11.0" 234 | convert-source-map "^1.1.0" 235 | debug "^2.1.1" 236 | json5 "^0.5.0" 237 | lodash "^4.2.0" 238 | minimatch "^3.0.2" 239 | path-is-absolute "^1.0.0" 240 | private "^0.1.6" 241 | slash "^1.0.0" 242 | source-map "^0.5.0" 243 | 244 | babel-eslint@^6.1.2: 245 | version "6.1.2" 246 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-6.1.2.tgz#5293419fe3672d66598d327da9694567ba6a5f2f" 247 | dependencies: 248 | babel-traverse "^6.0.20" 249 | babel-types "^6.0.19" 250 | babylon "^6.0.18" 251 | lodash.assign "^4.0.0" 252 | lodash.pickby "^4.0.0" 253 | 254 | babel-generator@^6.18.0, babel-generator@^6.24.1: 255 | version "6.24.1" 256 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 257 | dependencies: 258 | babel-messages "^6.23.0" 259 | babel-runtime "^6.22.0" 260 | babel-types "^6.24.1" 261 | detect-indent "^4.0.0" 262 | jsesc "^1.3.0" 263 | lodash "^4.2.0" 264 | source-map "^0.5.0" 265 | trim-right "^1.0.1" 266 | 267 | babel-helper-call-delegate@^6.24.1: 268 | version "6.24.1" 269 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 270 | dependencies: 271 | babel-helper-hoist-variables "^6.24.1" 272 | babel-runtime "^6.22.0" 273 | babel-traverse "^6.24.1" 274 | babel-types "^6.24.1" 275 | 276 | babel-helper-define-map@^6.24.1: 277 | version "6.24.1" 278 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 279 | dependencies: 280 | babel-helper-function-name "^6.24.1" 281 | babel-runtime "^6.22.0" 282 | babel-types "^6.24.1" 283 | lodash "^4.2.0" 284 | 285 | babel-helper-function-name@^6.24.1: 286 | version "6.24.1" 287 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 288 | dependencies: 289 | babel-helper-get-function-arity "^6.24.1" 290 | babel-runtime "^6.22.0" 291 | babel-template "^6.24.1" 292 | babel-traverse "^6.24.1" 293 | babel-types "^6.24.1" 294 | 295 | babel-helper-get-function-arity@^6.24.1: 296 | version "6.24.1" 297 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 298 | dependencies: 299 | babel-runtime "^6.22.0" 300 | babel-types "^6.24.1" 301 | 302 | babel-helper-hoist-variables@^6.24.1: 303 | version "6.24.1" 304 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 305 | dependencies: 306 | babel-runtime "^6.22.0" 307 | babel-types "^6.24.1" 308 | 309 | babel-helper-optimise-call-expression@^6.24.1: 310 | version "6.24.1" 311 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 312 | dependencies: 313 | babel-runtime "^6.22.0" 314 | babel-types "^6.24.1" 315 | 316 | babel-helper-regex@^6.24.1: 317 | version "6.24.1" 318 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 319 | dependencies: 320 | babel-runtime "^6.22.0" 321 | babel-types "^6.24.1" 322 | lodash "^4.2.0" 323 | 324 | babel-helper-replace-supers@^6.24.1: 325 | version "6.24.1" 326 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 327 | dependencies: 328 | babel-helper-optimise-call-expression "^6.24.1" 329 | babel-messages "^6.23.0" 330 | babel-runtime "^6.22.0" 331 | babel-template "^6.24.1" 332 | babel-traverse "^6.24.1" 333 | babel-types "^6.24.1" 334 | 335 | babel-helpers@^6.24.1: 336 | version "6.24.1" 337 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 338 | dependencies: 339 | babel-runtime "^6.22.0" 340 | babel-template "^6.24.1" 341 | 342 | babel-messages@^6.23.0: 343 | version "6.23.0" 344 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 345 | dependencies: 346 | babel-runtime "^6.22.0" 347 | 348 | babel-plugin-check-es2015-constants@^6.22.0: 349 | version "6.22.0" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 351 | dependencies: 352 | babel-runtime "^6.22.0" 353 | 354 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 355 | version "6.22.0" 356 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 357 | dependencies: 358 | babel-runtime "^6.22.0" 359 | 360 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 361 | version "6.22.0" 362 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 363 | dependencies: 364 | babel-runtime "^6.22.0" 365 | 366 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 367 | version "6.24.1" 368 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 369 | dependencies: 370 | babel-runtime "^6.22.0" 371 | babel-template "^6.24.1" 372 | babel-traverse "^6.24.1" 373 | babel-types "^6.24.1" 374 | lodash "^4.2.0" 375 | 376 | babel-plugin-transform-es2015-classes@^6.24.1: 377 | version "6.24.1" 378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 379 | dependencies: 380 | babel-helper-define-map "^6.24.1" 381 | babel-helper-function-name "^6.24.1" 382 | babel-helper-optimise-call-expression "^6.24.1" 383 | babel-helper-replace-supers "^6.24.1" 384 | babel-messages "^6.23.0" 385 | babel-runtime "^6.22.0" 386 | babel-template "^6.24.1" 387 | babel-traverse "^6.24.1" 388 | babel-types "^6.24.1" 389 | 390 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 391 | version "6.24.1" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 393 | dependencies: 394 | babel-runtime "^6.22.0" 395 | babel-template "^6.24.1" 396 | 397 | babel-plugin-transform-es2015-destructuring@^6.22.0: 398 | version "6.23.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | 403 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 404 | version "6.24.1" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 406 | dependencies: 407 | babel-runtime "^6.22.0" 408 | babel-types "^6.24.1" 409 | 410 | babel-plugin-transform-es2015-for-of@^6.22.0: 411 | version "6.23.0" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 413 | dependencies: 414 | babel-runtime "^6.22.0" 415 | 416 | babel-plugin-transform-es2015-function-name@^6.24.1: 417 | version "6.24.1" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 419 | dependencies: 420 | babel-helper-function-name "^6.24.1" 421 | babel-runtime "^6.22.0" 422 | babel-types "^6.24.1" 423 | 424 | babel-plugin-transform-es2015-literals@^6.22.0: 425 | version "6.22.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 427 | dependencies: 428 | babel-runtime "^6.22.0" 429 | 430 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 431 | version "6.24.1" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 433 | dependencies: 434 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 435 | babel-runtime "^6.22.0" 436 | babel-template "^6.24.1" 437 | 438 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 439 | version "6.24.1" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 441 | dependencies: 442 | babel-plugin-transform-strict-mode "^6.24.1" 443 | babel-runtime "^6.22.0" 444 | babel-template "^6.24.1" 445 | babel-types "^6.24.1" 446 | 447 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 448 | version "6.24.1" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 450 | dependencies: 451 | babel-helper-hoist-variables "^6.24.1" 452 | babel-runtime "^6.22.0" 453 | babel-template "^6.24.1" 454 | 455 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 456 | version "6.24.1" 457 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 458 | dependencies: 459 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 460 | babel-runtime "^6.22.0" 461 | babel-template "^6.24.1" 462 | 463 | babel-plugin-transform-es2015-object-super@^6.24.1: 464 | version "6.24.1" 465 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 466 | dependencies: 467 | babel-helper-replace-supers "^6.24.1" 468 | babel-runtime "^6.22.0" 469 | 470 | babel-plugin-transform-es2015-parameters@^6.24.1: 471 | version "6.24.1" 472 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 473 | dependencies: 474 | babel-helper-call-delegate "^6.24.1" 475 | babel-helper-get-function-arity "^6.24.1" 476 | babel-runtime "^6.22.0" 477 | babel-template "^6.24.1" 478 | babel-traverse "^6.24.1" 479 | babel-types "^6.24.1" 480 | 481 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 482 | version "6.24.1" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 484 | dependencies: 485 | babel-runtime "^6.22.0" 486 | babel-types "^6.24.1" 487 | 488 | babel-plugin-transform-es2015-spread@^6.22.0: 489 | version "6.22.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 491 | dependencies: 492 | babel-runtime "^6.22.0" 493 | 494 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 495 | version "6.24.1" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 497 | dependencies: 498 | babel-helper-regex "^6.24.1" 499 | babel-runtime "^6.22.0" 500 | babel-types "^6.24.1" 501 | 502 | babel-plugin-transform-es2015-template-literals@^6.22.0: 503 | version "6.22.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 505 | dependencies: 506 | babel-runtime "^6.22.0" 507 | 508 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 509 | version "6.23.0" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 511 | dependencies: 512 | babel-runtime "^6.22.0" 513 | 514 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 517 | dependencies: 518 | babel-helper-regex "^6.24.1" 519 | babel-runtime "^6.22.0" 520 | regexpu-core "^2.0.0" 521 | 522 | babel-plugin-transform-regenerator@^6.24.1: 523 | version "6.24.1" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 525 | dependencies: 526 | regenerator-transform "0.9.11" 527 | 528 | babel-plugin-transform-strict-mode@^6.24.1: 529 | version "6.24.1" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 531 | dependencies: 532 | babel-runtime "^6.22.0" 533 | babel-types "^6.24.1" 534 | 535 | babel-polyfill@^6.23.0: 536 | version "6.23.0" 537 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 538 | dependencies: 539 | babel-runtime "^6.22.0" 540 | core-js "^2.4.0" 541 | regenerator-runtime "^0.10.0" 542 | 543 | babel-preset-es2015@^6.14.0: 544 | version "6.24.1" 545 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 546 | dependencies: 547 | babel-plugin-check-es2015-constants "^6.22.0" 548 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 549 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 550 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 551 | babel-plugin-transform-es2015-classes "^6.24.1" 552 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 553 | babel-plugin-transform-es2015-destructuring "^6.22.0" 554 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 555 | babel-plugin-transform-es2015-for-of "^6.22.0" 556 | babel-plugin-transform-es2015-function-name "^6.24.1" 557 | babel-plugin-transform-es2015-literals "^6.22.0" 558 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 559 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 560 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 561 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 562 | babel-plugin-transform-es2015-object-super "^6.24.1" 563 | babel-plugin-transform-es2015-parameters "^6.24.1" 564 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 565 | babel-plugin-transform-es2015-spread "^6.22.0" 566 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 567 | babel-plugin-transform-es2015-template-literals "^6.22.0" 568 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 569 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 570 | babel-plugin-transform-regenerator "^6.24.1" 571 | 572 | babel-register@^6.14.0, babel-register@^6.24.1: 573 | version "6.24.1" 574 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 575 | dependencies: 576 | babel-core "^6.24.1" 577 | babel-runtime "^6.22.0" 578 | core-js "^2.4.0" 579 | home-or-tmp "^2.0.0" 580 | lodash "^4.2.0" 581 | mkdirp "^0.5.1" 582 | source-map-support "^0.4.2" 583 | 584 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@~6.23.0: 585 | version "6.23.0" 586 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 587 | dependencies: 588 | core-js "^2.4.0" 589 | regenerator-runtime "^0.10.0" 590 | 591 | babel-template@^6.16.0, babel-template@^6.24.1: 592 | version "6.24.1" 593 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 594 | dependencies: 595 | babel-runtime "^6.22.0" 596 | babel-traverse "^6.24.1" 597 | babel-types "^6.24.1" 598 | babylon "^6.11.0" 599 | lodash "^4.2.0" 600 | 601 | babel-traverse@^6.0.20, babel-traverse@^6.18.0, babel-traverse@^6.24.1: 602 | version "6.24.1" 603 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 604 | dependencies: 605 | babel-code-frame "^6.22.0" 606 | babel-messages "^6.23.0" 607 | babel-runtime "^6.22.0" 608 | babel-types "^6.24.1" 609 | babylon "^6.15.0" 610 | debug "^2.2.0" 611 | globals "^9.0.0" 612 | invariant "^2.2.0" 613 | lodash "^4.2.0" 614 | 615 | babel-types@^6.0.19, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1: 616 | version "6.24.1" 617 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 618 | dependencies: 619 | babel-runtime "^6.22.0" 620 | esutils "^2.0.2" 621 | lodash "^4.2.0" 622 | to-fast-properties "^1.0.1" 623 | 624 | babylon@^6.0.18, babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 625 | version "6.17.0" 626 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 627 | 628 | balanced-match@^0.4.1: 629 | version "0.4.2" 630 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 631 | 632 | bcrypt-pbkdf@^1.0.0: 633 | version "1.0.1" 634 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 635 | dependencies: 636 | tweetnacl "^0.14.3" 637 | 638 | binary-extensions@^1.0.0: 639 | version "1.8.0" 640 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 641 | 642 | bl@^1.0.0: 643 | version "1.2.1" 644 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e" 645 | dependencies: 646 | readable-stream "^2.0.5" 647 | 648 | block-stream@*: 649 | version "0.0.9" 650 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 651 | dependencies: 652 | inherits "~2.0.0" 653 | 654 | boom@2.x.x: 655 | version "2.10.1" 656 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 657 | dependencies: 658 | hoek "2.x.x" 659 | 660 | brace-expansion@^1.0.0: 661 | version "1.1.7" 662 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 663 | dependencies: 664 | balanced-match "^0.4.1" 665 | concat-map "0.0.1" 666 | 667 | braces@^1.8.2: 668 | version "1.8.5" 669 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 670 | dependencies: 671 | expand-range "^1.8.1" 672 | preserve "^0.2.0" 673 | repeat-element "^1.1.2" 674 | 675 | browser-stdout@1.3.0: 676 | version "1.3.0" 677 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 678 | 679 | buffer-crc32@^0.2.1: 680 | version "0.2.13" 681 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 682 | 683 | buffer-shims@~1.0.0: 684 | version "1.0.0" 685 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 686 | 687 | builtin-modules@^1.0.0: 688 | version "1.1.1" 689 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 690 | 691 | caching-transform@^1.0.0: 692 | version "1.0.1" 693 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 694 | dependencies: 695 | md5-hex "^1.2.0" 696 | mkdirp "^0.5.1" 697 | write-file-atomic "^1.1.4" 698 | 699 | caller-path@^0.1.0: 700 | version "0.1.0" 701 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 702 | dependencies: 703 | callsites "^0.2.0" 704 | 705 | callsites@^0.2.0: 706 | version "0.2.0" 707 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 708 | 709 | camelcase@^1.0.2: 710 | version "1.2.1" 711 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 712 | 713 | camelcase@^3.0.0: 714 | version "3.0.0" 715 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 716 | 717 | caseless@~0.12.0: 718 | version "0.12.0" 719 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 720 | 721 | center-align@^0.1.1: 722 | version "0.1.3" 723 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 724 | dependencies: 725 | align-text "^0.1.3" 726 | lazy-cache "^1.0.3" 727 | 728 | chai@^3.5.0: 729 | version "3.5.0" 730 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 731 | dependencies: 732 | assertion-error "^1.0.1" 733 | deep-eql "^0.1.3" 734 | type-detect "^1.0.0" 735 | 736 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 737 | version "1.1.3" 738 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 739 | dependencies: 740 | ansi-styles "^2.2.1" 741 | escape-string-regexp "^1.0.2" 742 | has-ansi "^2.0.0" 743 | strip-ansi "^3.0.0" 744 | supports-color "^2.0.0" 745 | 746 | chokidar@^1.6.1: 747 | version "1.6.1" 748 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 749 | dependencies: 750 | anymatch "^1.3.0" 751 | async-each "^1.0.0" 752 | glob-parent "^2.0.0" 753 | inherits "^2.0.1" 754 | is-binary-path "^1.0.0" 755 | is-glob "^2.0.0" 756 | path-is-absolute "^1.0.0" 757 | readdirp "^2.0.0" 758 | optionalDependencies: 759 | fsevents "^1.0.0" 760 | 761 | circular-json@^0.3.1: 762 | version "0.3.1" 763 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 764 | 765 | cli-cursor@^1.0.1: 766 | version "1.0.2" 767 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 768 | dependencies: 769 | restore-cursor "^1.0.1" 770 | 771 | cli-cursor@^2.1.0: 772 | version "2.1.0" 773 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 774 | dependencies: 775 | restore-cursor "^2.0.0" 776 | 777 | cli-width@^2.0.0: 778 | version "2.1.0" 779 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 780 | 781 | cliui@^2.1.0: 782 | version "2.1.0" 783 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 784 | dependencies: 785 | center-align "^0.1.1" 786 | right-align "^0.1.1" 787 | wordwrap "0.0.2" 788 | 789 | cliui@^3.2.0: 790 | version "3.2.0" 791 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 792 | dependencies: 793 | string-width "^1.0.1" 794 | strip-ansi "^3.0.1" 795 | wrap-ansi "^2.0.0" 796 | 797 | co@^4.6.0: 798 | version "4.6.0" 799 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 800 | 801 | code-point-at@^1.0.0: 802 | version "1.1.0" 803 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 804 | 805 | combined-stream@^1.0.5, combined-stream@~1.0.5: 806 | version "1.0.5" 807 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 808 | dependencies: 809 | delayed-stream "~1.0.0" 810 | 811 | commander@2.9.0, commander@^2.8.1, commander@^2.9.0: 812 | version "2.9.0" 813 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 814 | dependencies: 815 | graceful-readlink ">= 1.0.0" 816 | 817 | commondir@^1.0.1: 818 | version "1.0.1" 819 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 820 | 821 | compress-commons@^1.1.0: 822 | version "1.2.0" 823 | resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-1.2.0.tgz#58587092ef20d37cb58baf000112c9278ff73b9f" 824 | dependencies: 825 | buffer-crc32 "^0.2.1" 826 | crc32-stream "^2.0.0" 827 | normalize-path "^2.0.0" 828 | readable-stream "^2.0.0" 829 | 830 | concat-map@0.0.1: 831 | version "0.0.1" 832 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 833 | 834 | concat-stream@^1.5.2: 835 | version "1.6.0" 836 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 837 | dependencies: 838 | inherits "^2.0.3" 839 | readable-stream "^2.2.2" 840 | typedarray "^0.0.6" 841 | 842 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 843 | version "1.1.0" 844 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 845 | 846 | convert-source-map@^1.1.0, convert-source-map@^1.3.0: 847 | version "1.5.0" 848 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 849 | 850 | core-js@^2.4.0: 851 | version "2.4.1" 852 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 853 | 854 | core-util-is@~1.0.0: 855 | version "1.0.2" 856 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 857 | 858 | crc32-stream@^2.0.0: 859 | version "2.0.0" 860 | resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-2.0.0.tgz#e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4" 861 | dependencies: 862 | crc "^3.4.4" 863 | readable-stream "^2.0.0" 864 | 865 | crc@^3.4.4: 866 | version "3.4.4" 867 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.4.4.tgz#9da1e980e3bd44fc5c93bf5ab3da3378d85e466b" 868 | 869 | cross-spawn@^4: 870 | version "4.0.2" 871 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 872 | dependencies: 873 | lru-cache "^4.0.1" 874 | which "^1.2.9" 875 | 876 | cryptiles@2.x.x: 877 | version "2.0.5" 878 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 879 | dependencies: 880 | boom "2.x.x" 881 | 882 | css-parse@~2.0.0: 883 | version "2.0.0" 884 | resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-2.0.0.tgz#a468ee667c16d81ccf05c58c38d2a97c780dbfd4" 885 | dependencies: 886 | css "^2.0.0" 887 | 888 | css-value@~0.0.1: 889 | version "0.0.1" 890 | resolved "https://registry.yarnpkg.com/css-value/-/css-value-0.0.1.tgz#5efd6c2eea5ea1fd6b6ac57ec0427b18452424ea" 891 | 892 | css@^2.0.0: 893 | version "2.2.1" 894 | resolved "https://registry.yarnpkg.com/css/-/css-2.2.1.tgz#73a4c81de85db664d4ee674f7d47085e3b2d55dc" 895 | dependencies: 896 | inherits "^2.0.1" 897 | source-map "^0.1.38" 898 | source-map-resolve "^0.3.0" 899 | urix "^0.1.0" 900 | 901 | d@1: 902 | version "1.0.0" 903 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 904 | dependencies: 905 | es5-ext "^0.10.9" 906 | 907 | dashdash@^1.12.0: 908 | version "1.14.1" 909 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 910 | dependencies: 911 | assert-plus "^1.0.0" 912 | 913 | debug-log@^1.0.1: 914 | version "1.0.1" 915 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 916 | 917 | debug@2.6.0, debug@^2.1.1, debug@^2.2.0: 918 | version "2.6.0" 919 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 920 | dependencies: 921 | ms "0.7.2" 922 | 923 | debug@^2.6.3: 924 | version "2.6.6" 925 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.6.tgz#a9fa6fbe9ca43cf1e79f73b75c0189cbb7d6db5a" 926 | dependencies: 927 | ms "0.7.3" 928 | 929 | decamelize@^1.0.0, decamelize@^1.1.1: 930 | version "1.2.0" 931 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 932 | 933 | deep-eql@^0.1.3: 934 | version "0.1.3" 935 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 936 | dependencies: 937 | type-detect "0.1.1" 938 | 939 | deep-extend@~0.4.0: 940 | version "0.4.1" 941 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 942 | 943 | deep-is@~0.1.3: 944 | version "0.1.3" 945 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 946 | 947 | deepmerge@~1.3.2: 948 | version "1.3.2" 949 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-1.3.2.tgz#1663691629d4dbfe364fa12a2a4f0aa86aa3a050" 950 | 951 | default-require-extensions@^1.0.0: 952 | version "1.0.0" 953 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 954 | dependencies: 955 | strip-bom "^2.0.0" 956 | 957 | del@^2.0.2: 958 | version "2.2.2" 959 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 960 | dependencies: 961 | globby "^5.0.0" 962 | is-path-cwd "^1.0.0" 963 | is-path-in-cwd "^1.0.0" 964 | object-assign "^4.0.1" 965 | pify "^2.0.0" 966 | pinkie-promise "^2.0.0" 967 | rimraf "^2.2.8" 968 | 969 | delayed-stream@~1.0.0: 970 | version "1.0.0" 971 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 972 | 973 | delegates@^1.0.0: 974 | version "1.0.0" 975 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 976 | 977 | detect-indent@^4.0.0: 978 | version "4.0.0" 979 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 980 | dependencies: 981 | repeating "^2.0.0" 982 | 983 | diff@3.2.0: 984 | version "3.2.0" 985 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 986 | 987 | doctrine@^2.0.0: 988 | version "2.0.0" 989 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 990 | dependencies: 991 | esutils "^2.0.2" 992 | isarray "^1.0.0" 993 | 994 | ecc-jsbn@~0.1.1: 995 | version "0.1.1" 996 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 997 | dependencies: 998 | jsbn "~0.1.0" 999 | 1000 | ejs@~2.5.6: 1001 | version "2.5.6" 1002 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.5.6.tgz#479636bfa3fe3b1debd52087f0acb204b4f19c88" 1003 | 1004 | end-of-stream@^1.0.0: 1005 | version "1.4.0" 1006 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206" 1007 | dependencies: 1008 | once "^1.4.0" 1009 | 1010 | error-ex@^1.2.0: 1011 | version "1.3.1" 1012 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1013 | dependencies: 1014 | is-arrayish "^0.2.1" 1015 | 1016 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1017 | version "0.10.15" 1018 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 1019 | dependencies: 1020 | es6-iterator "2" 1021 | es6-symbol "~3.1" 1022 | 1023 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1024 | version "2.0.1" 1025 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1026 | dependencies: 1027 | d "1" 1028 | es5-ext "^0.10.14" 1029 | es6-symbol "^3.1" 1030 | 1031 | es6-map@^0.1.3: 1032 | version "0.1.5" 1033 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1034 | dependencies: 1035 | d "1" 1036 | es5-ext "~0.10.14" 1037 | es6-iterator "~2.0.1" 1038 | es6-set "~0.1.5" 1039 | es6-symbol "~3.1.1" 1040 | event-emitter "~0.3.5" 1041 | 1042 | es6-set@~0.1.5: 1043 | version "0.1.5" 1044 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1045 | dependencies: 1046 | d "1" 1047 | es5-ext "~0.10.14" 1048 | es6-iterator "~2.0.1" 1049 | es6-symbol "3.1.1" 1050 | event-emitter "~0.3.5" 1051 | 1052 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1053 | version "3.1.1" 1054 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1055 | dependencies: 1056 | d "1" 1057 | es5-ext "~0.10.14" 1058 | 1059 | es6-weak-map@^2.0.1: 1060 | version "2.0.2" 1061 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1062 | dependencies: 1063 | d "1" 1064 | es5-ext "^0.10.14" 1065 | es6-iterator "^2.0.1" 1066 | es6-symbol "^3.1.1" 1067 | 1068 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1069 | version "1.0.5" 1070 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1071 | 1072 | escope@^3.6.0: 1073 | version "3.6.0" 1074 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1075 | dependencies: 1076 | es6-map "^0.1.3" 1077 | es6-weak-map "^2.0.1" 1078 | esrecurse "^4.1.0" 1079 | estraverse "^4.1.1" 1080 | 1081 | eslint-config-airbnb-base@^7.2.0: 1082 | version "7.2.0" 1083 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-7.2.0.tgz#1a2ff77cc5d4abc2e1c5daebe4106fce95ff7c2a" 1084 | 1085 | eslint-config-airbnb@^11.1.0: 1086 | version "11.2.0" 1087 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-11.2.0.tgz#a0930ed7891e824e1b3e436cdf9754c815a2920c" 1088 | dependencies: 1089 | eslint-config-airbnb-base "^7.2.0" 1090 | 1091 | eslint@^3.5.0: 1092 | version "3.19.0" 1093 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1094 | dependencies: 1095 | babel-code-frame "^6.16.0" 1096 | chalk "^1.1.3" 1097 | concat-stream "^1.5.2" 1098 | debug "^2.1.1" 1099 | doctrine "^2.0.0" 1100 | escope "^3.6.0" 1101 | espree "^3.4.0" 1102 | esquery "^1.0.0" 1103 | estraverse "^4.2.0" 1104 | esutils "^2.0.2" 1105 | file-entry-cache "^2.0.0" 1106 | glob "^7.0.3" 1107 | globals "^9.14.0" 1108 | ignore "^3.2.0" 1109 | imurmurhash "^0.1.4" 1110 | inquirer "^0.12.0" 1111 | is-my-json-valid "^2.10.0" 1112 | is-resolvable "^1.0.0" 1113 | js-yaml "^3.5.1" 1114 | json-stable-stringify "^1.0.0" 1115 | levn "^0.3.0" 1116 | lodash "^4.0.0" 1117 | mkdirp "^0.5.0" 1118 | natural-compare "^1.4.0" 1119 | optionator "^0.8.2" 1120 | path-is-inside "^1.0.1" 1121 | pluralize "^1.2.1" 1122 | progress "^1.1.8" 1123 | require-uncached "^1.0.2" 1124 | shelljs "^0.7.5" 1125 | strip-bom "^3.0.0" 1126 | strip-json-comments "~2.0.1" 1127 | table "^3.7.8" 1128 | text-table "~0.2.0" 1129 | user-home "^2.0.0" 1130 | 1131 | espree@^3.4.0: 1132 | version "3.4.2" 1133 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.2.tgz#38dbdedbedc95b8961a1fbf04734a8f6a9c8c592" 1134 | dependencies: 1135 | acorn "^5.0.1" 1136 | acorn-jsx "^3.0.0" 1137 | 1138 | esprima@^3.1.1: 1139 | version "3.1.3" 1140 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1141 | 1142 | esquery@^1.0.0: 1143 | version "1.0.0" 1144 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1145 | dependencies: 1146 | estraverse "^4.0.0" 1147 | 1148 | esrecurse@^4.1.0: 1149 | version "4.1.0" 1150 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1151 | dependencies: 1152 | estraverse "~4.1.0" 1153 | object-assign "^4.0.1" 1154 | 1155 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1156 | version "4.2.0" 1157 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1158 | 1159 | estraverse@~4.1.0: 1160 | version "4.1.1" 1161 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1162 | 1163 | esutils@^2.0.2: 1164 | version "2.0.2" 1165 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1166 | 1167 | event-emitter@~0.3.5: 1168 | version "0.3.5" 1169 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1170 | dependencies: 1171 | d "1" 1172 | es5-ext "~0.10.14" 1173 | 1174 | exit-hook@^1.0.0: 1175 | version "1.1.1" 1176 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1177 | 1178 | expand-brackets@^0.1.4: 1179 | version "0.1.5" 1180 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1181 | dependencies: 1182 | is-posix-bracket "^0.1.0" 1183 | 1184 | expand-range@^1.8.1: 1185 | version "1.8.2" 1186 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1187 | dependencies: 1188 | fill-range "^2.1.0" 1189 | 1190 | extend@~3.0.0: 1191 | version "3.0.1" 1192 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1193 | 1194 | external-editor@^2.0.1: 1195 | version "2.0.1" 1196 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.1.tgz#4c597c6c88fa6410e41dbbaa7b1be2336aa31095" 1197 | dependencies: 1198 | tmp "^0.0.31" 1199 | 1200 | extglob@^0.3.1: 1201 | version "0.3.2" 1202 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1203 | dependencies: 1204 | is-extglob "^1.0.0" 1205 | 1206 | extsprintf@1.0.2: 1207 | version "1.0.2" 1208 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1209 | 1210 | fast-levenshtein@~2.0.4: 1211 | version "2.0.6" 1212 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1213 | 1214 | figures@^1.3.5: 1215 | version "1.7.0" 1216 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1217 | dependencies: 1218 | escape-string-regexp "^1.0.5" 1219 | object-assign "^4.1.0" 1220 | 1221 | figures@^2.0.0: 1222 | version "2.0.0" 1223 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1224 | dependencies: 1225 | escape-string-regexp "^1.0.5" 1226 | 1227 | file-entry-cache@^2.0.0: 1228 | version "2.0.0" 1229 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1230 | dependencies: 1231 | flat-cache "^1.2.1" 1232 | object-assign "^4.0.1" 1233 | 1234 | filename-regex@^2.0.0: 1235 | version "2.0.1" 1236 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1237 | 1238 | fill-range@^2.1.0: 1239 | version "2.2.3" 1240 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1241 | dependencies: 1242 | is-number "^2.1.0" 1243 | isobject "^2.0.0" 1244 | randomatic "^1.1.3" 1245 | repeat-element "^1.1.2" 1246 | repeat-string "^1.5.2" 1247 | 1248 | find-cache-dir@^0.1.1: 1249 | version "0.1.1" 1250 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1251 | dependencies: 1252 | commondir "^1.0.1" 1253 | mkdirp "^0.5.1" 1254 | pkg-dir "^1.0.0" 1255 | 1256 | find-up@^1.0.0, find-up@^1.1.2: 1257 | version "1.1.2" 1258 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1259 | dependencies: 1260 | path-exists "^2.0.0" 1261 | pinkie-promise "^2.0.0" 1262 | 1263 | flat-cache@^1.2.1: 1264 | version "1.2.2" 1265 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1266 | dependencies: 1267 | circular-json "^0.3.1" 1268 | del "^2.0.2" 1269 | graceful-fs "^4.1.2" 1270 | write "^0.2.1" 1271 | 1272 | for-in@^1.0.1: 1273 | version "1.0.2" 1274 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1275 | 1276 | for-own@^0.1.4: 1277 | version "0.1.5" 1278 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1279 | dependencies: 1280 | for-in "^1.0.1" 1281 | 1282 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1283 | version "1.5.6" 1284 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1285 | dependencies: 1286 | cross-spawn "^4" 1287 | signal-exit "^3.0.0" 1288 | 1289 | forever-agent@~0.6.1: 1290 | version "0.6.1" 1291 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1292 | 1293 | form-data@~2.1.1: 1294 | version "2.1.4" 1295 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1296 | dependencies: 1297 | asynckit "^0.4.0" 1298 | combined-stream "^1.0.5" 1299 | mime-types "^2.1.12" 1300 | 1301 | fs-readdir-recursive@^1.0.0: 1302 | version "1.0.0" 1303 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1304 | 1305 | fs.realpath@^1.0.0: 1306 | version "1.0.0" 1307 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1308 | 1309 | fsevents@^1.0.0: 1310 | version "1.1.1" 1311 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1312 | dependencies: 1313 | nan "^2.3.0" 1314 | node-pre-gyp "^0.6.29" 1315 | 1316 | fstream-ignore@^1.0.5: 1317 | version "1.0.5" 1318 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1319 | dependencies: 1320 | fstream "^1.0.0" 1321 | inherits "2" 1322 | minimatch "^3.0.0" 1323 | 1324 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1325 | version "1.0.11" 1326 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1327 | dependencies: 1328 | graceful-fs "^4.1.2" 1329 | inherits "~2.0.0" 1330 | mkdirp ">=0.5 0" 1331 | rimraf "2" 1332 | 1333 | gauge@~2.7.1: 1334 | version "2.7.4" 1335 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1336 | dependencies: 1337 | aproba "^1.0.3" 1338 | console-control-strings "^1.0.0" 1339 | has-unicode "^2.0.0" 1340 | object-assign "^4.1.0" 1341 | signal-exit "^3.0.0" 1342 | string-width "^1.0.1" 1343 | strip-ansi "^3.0.1" 1344 | wide-align "^1.1.0" 1345 | 1346 | gaze@~1.1.2: 1347 | version "1.1.2" 1348 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" 1349 | dependencies: 1350 | globule "^1.0.0" 1351 | 1352 | generate-function@^2.0.0: 1353 | version "2.0.0" 1354 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1355 | 1356 | generate-object-property@^1.1.0: 1357 | version "1.2.0" 1358 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1359 | dependencies: 1360 | is-property "^1.0.0" 1361 | 1362 | get-caller-file@^1.0.1: 1363 | version "1.0.2" 1364 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1365 | 1366 | getpass@^0.1.1: 1367 | version "0.1.7" 1368 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1369 | dependencies: 1370 | assert-plus "^1.0.0" 1371 | 1372 | glob-base@^0.3.0: 1373 | version "0.3.0" 1374 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1375 | dependencies: 1376 | glob-parent "^2.0.0" 1377 | is-glob "^2.0.0" 1378 | 1379 | glob-parent@^2.0.0: 1380 | version "2.0.0" 1381 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1382 | dependencies: 1383 | is-glob "^2.0.0" 1384 | 1385 | glob@7.1.1, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6, glob@~7.1.1: 1386 | version "7.1.1" 1387 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1388 | dependencies: 1389 | fs.realpath "^1.0.0" 1390 | inflight "^1.0.4" 1391 | inherits "2" 1392 | minimatch "^3.0.2" 1393 | once "^1.3.0" 1394 | path-is-absolute "^1.0.0" 1395 | 1396 | globals@^9.0.0, globals@^9.14.0: 1397 | version "9.17.0" 1398 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1399 | 1400 | globby@^5.0.0: 1401 | version "5.0.0" 1402 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1403 | dependencies: 1404 | array-union "^1.0.1" 1405 | arrify "^1.0.0" 1406 | glob "^7.0.3" 1407 | object-assign "^4.0.1" 1408 | pify "^2.0.0" 1409 | pinkie-promise "^2.0.0" 1410 | 1411 | globule@^1.0.0: 1412 | version "1.1.0" 1413 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.1.0.tgz#c49352e4dc183d85893ee825385eb994bb6df45f" 1414 | dependencies: 1415 | glob "~7.1.1" 1416 | lodash "~4.16.4" 1417 | minimatch "~3.0.2" 1418 | 1419 | graceful-fs@^4.1.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1420 | version "4.1.11" 1421 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1422 | 1423 | "graceful-readlink@>= 1.0.0": 1424 | version "1.0.1" 1425 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1426 | 1427 | growl@1.9.2: 1428 | version "1.9.2" 1429 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1430 | 1431 | handlebars@^4.0.3: 1432 | version "4.0.8" 1433 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.8.tgz#22b875cd3f0e6cbea30314f144e82bc7a72ff420" 1434 | dependencies: 1435 | async "^1.4.0" 1436 | optimist "^0.6.1" 1437 | source-map "^0.4.4" 1438 | optionalDependencies: 1439 | uglify-js "^2.6" 1440 | 1441 | har-schema@^1.0.5: 1442 | version "1.0.5" 1443 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1444 | 1445 | har-validator@~4.2.1: 1446 | version "4.2.1" 1447 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1448 | dependencies: 1449 | ajv "^4.9.1" 1450 | har-schema "^1.0.5" 1451 | 1452 | has-ansi@^2.0.0: 1453 | version "2.0.0" 1454 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1455 | dependencies: 1456 | ansi-regex "^2.0.0" 1457 | 1458 | has-flag@^1.0.0: 1459 | version "1.0.0" 1460 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1461 | 1462 | has-unicode@^2.0.0: 1463 | version "2.0.1" 1464 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1465 | 1466 | hawk@~3.1.3: 1467 | version "3.1.3" 1468 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1469 | dependencies: 1470 | boom "2.x.x" 1471 | cryptiles "2.x.x" 1472 | hoek "2.x.x" 1473 | sntp "1.x.x" 1474 | 1475 | hoek@2.x.x: 1476 | version "2.16.3" 1477 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1478 | 1479 | home-or-tmp@^2.0.0: 1480 | version "2.0.0" 1481 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1482 | dependencies: 1483 | os-homedir "^1.0.0" 1484 | os-tmpdir "^1.0.1" 1485 | 1486 | hosted-git-info@^2.1.4: 1487 | version "2.4.2" 1488 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1489 | 1490 | http-signature@~1.1.0: 1491 | version "1.1.1" 1492 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1493 | dependencies: 1494 | assert-plus "^0.2.0" 1495 | jsprim "^1.2.2" 1496 | sshpk "^1.7.0" 1497 | 1498 | ignore@^3.2.0: 1499 | version "3.3.0" 1500 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.0.tgz#3812d22cbe9125f2c2b4915755a1b8abd745a001" 1501 | 1502 | imurmurhash@^0.1.4: 1503 | version "0.1.4" 1504 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1505 | 1506 | inflight@^1.0.4: 1507 | version "1.0.6" 1508 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1509 | dependencies: 1510 | once "^1.3.0" 1511 | wrappy "1" 1512 | 1513 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1514 | version "2.0.3" 1515 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1516 | 1517 | ini@~1.3.0: 1518 | version "1.3.4" 1519 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1520 | 1521 | inquirer@^0.12.0: 1522 | version "0.12.0" 1523 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1524 | dependencies: 1525 | ansi-escapes "^1.1.0" 1526 | ansi-regex "^2.0.0" 1527 | chalk "^1.0.0" 1528 | cli-cursor "^1.0.1" 1529 | cli-width "^2.0.0" 1530 | figures "^1.3.5" 1531 | lodash "^4.3.0" 1532 | readline2 "^1.0.1" 1533 | run-async "^0.1.0" 1534 | rx-lite "^3.1.2" 1535 | string-width "^1.0.1" 1536 | strip-ansi "^3.0.0" 1537 | through "^2.3.6" 1538 | 1539 | inquirer@~3.0.6: 1540 | version "3.0.6" 1541 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.0.6.tgz#e04aaa9d05b7a3cb9b0f407d04375f0447190347" 1542 | dependencies: 1543 | ansi-escapes "^1.1.0" 1544 | chalk "^1.0.0" 1545 | cli-cursor "^2.1.0" 1546 | cli-width "^2.0.0" 1547 | external-editor "^2.0.1" 1548 | figures "^2.0.0" 1549 | lodash "^4.3.0" 1550 | mute-stream "0.0.7" 1551 | run-async "^2.2.0" 1552 | rx "^4.1.0" 1553 | string-width "^2.0.0" 1554 | strip-ansi "^3.0.0" 1555 | through "^2.3.6" 1556 | 1557 | interpret@^1.0.0: 1558 | version "1.0.3" 1559 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1560 | 1561 | invariant@^2.2.0: 1562 | version "2.2.2" 1563 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1564 | dependencies: 1565 | loose-envify "^1.0.0" 1566 | 1567 | invert-kv@^1.0.0: 1568 | version "1.0.0" 1569 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1570 | 1571 | is-arrayish@^0.2.1: 1572 | version "0.2.1" 1573 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1574 | 1575 | is-binary-path@^1.0.0: 1576 | version "1.0.1" 1577 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1578 | dependencies: 1579 | binary-extensions "^1.0.0" 1580 | 1581 | is-buffer@^1.1.5: 1582 | version "1.1.5" 1583 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1584 | 1585 | is-builtin-module@^1.0.0: 1586 | version "1.0.0" 1587 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1588 | dependencies: 1589 | builtin-modules "^1.0.0" 1590 | 1591 | is-dotfile@^1.0.0: 1592 | version "1.0.2" 1593 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1594 | 1595 | is-equal-shallow@^0.1.3: 1596 | version "0.1.3" 1597 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1598 | dependencies: 1599 | is-primitive "^2.0.0" 1600 | 1601 | is-extendable@^0.1.1: 1602 | version "0.1.1" 1603 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1604 | 1605 | is-extglob@^1.0.0: 1606 | version "1.0.0" 1607 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1608 | 1609 | is-finite@^1.0.0: 1610 | version "1.0.2" 1611 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1612 | dependencies: 1613 | number-is-nan "^1.0.0" 1614 | 1615 | is-fullwidth-code-point@^1.0.0: 1616 | version "1.0.0" 1617 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1618 | dependencies: 1619 | number-is-nan "^1.0.0" 1620 | 1621 | is-fullwidth-code-point@^2.0.0: 1622 | version "2.0.0" 1623 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1624 | 1625 | is-glob@^2.0.0, is-glob@^2.0.1: 1626 | version "2.0.1" 1627 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1628 | dependencies: 1629 | is-extglob "^1.0.0" 1630 | 1631 | is-my-json-valid@^2.10.0: 1632 | version "2.16.0" 1633 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1634 | dependencies: 1635 | generate-function "^2.0.0" 1636 | generate-object-property "^1.1.0" 1637 | jsonpointer "^4.0.0" 1638 | xtend "^4.0.0" 1639 | 1640 | is-number@^2.0.2, is-number@^2.1.0: 1641 | version "2.1.0" 1642 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1643 | dependencies: 1644 | kind-of "^3.0.2" 1645 | 1646 | is-path-cwd@^1.0.0: 1647 | version "1.0.0" 1648 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1649 | 1650 | is-path-in-cwd@^1.0.0: 1651 | version "1.0.0" 1652 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1653 | dependencies: 1654 | is-path-inside "^1.0.0" 1655 | 1656 | is-path-inside@^1.0.0: 1657 | version "1.0.0" 1658 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1659 | dependencies: 1660 | path-is-inside "^1.0.1" 1661 | 1662 | is-posix-bracket@^0.1.0: 1663 | version "0.1.1" 1664 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1665 | 1666 | is-primitive@^2.0.0: 1667 | version "2.0.0" 1668 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1669 | 1670 | is-promise@^2.1.0: 1671 | version "2.1.0" 1672 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1673 | 1674 | is-property@^1.0.0: 1675 | version "1.0.2" 1676 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1677 | 1678 | is-resolvable@^1.0.0: 1679 | version "1.0.0" 1680 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1681 | dependencies: 1682 | tryit "^1.0.1" 1683 | 1684 | is-typedarray@~1.0.0: 1685 | version "1.0.0" 1686 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1687 | 1688 | is-utf8@^0.2.0: 1689 | version "0.2.1" 1690 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1691 | 1692 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1693 | version "1.0.0" 1694 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1695 | 1696 | isexe@^2.0.0: 1697 | version "2.0.0" 1698 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1699 | 1700 | isobject@^2.0.0: 1701 | version "2.1.0" 1702 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1703 | dependencies: 1704 | isarray "1.0.0" 1705 | 1706 | isstream@~0.1.2: 1707 | version "0.1.2" 1708 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1709 | 1710 | istanbul-lib-coverage@^1.1.0: 1711 | version "1.1.0" 1712 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 1713 | 1714 | istanbul-lib-hook@^1.0.6: 1715 | version "1.0.6" 1716 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 1717 | dependencies: 1718 | append-transform "^0.4.0" 1719 | 1720 | istanbul-lib-instrument@^1.7.1: 1721 | version "1.7.1" 1722 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 1723 | dependencies: 1724 | babel-generator "^6.18.0" 1725 | babel-template "^6.16.0" 1726 | babel-traverse "^6.18.0" 1727 | babel-types "^6.18.0" 1728 | babylon "^6.13.0" 1729 | istanbul-lib-coverage "^1.1.0" 1730 | semver "^5.3.0" 1731 | 1732 | istanbul-lib-report@^1.1.0: 1733 | version "1.1.0" 1734 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 1735 | dependencies: 1736 | istanbul-lib-coverage "^1.1.0" 1737 | mkdirp "^0.5.1" 1738 | path-parse "^1.0.5" 1739 | supports-color "^3.1.2" 1740 | 1741 | istanbul-lib-source-maps@^1.2.0: 1742 | version "1.2.0" 1743 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 1744 | dependencies: 1745 | debug "^2.6.3" 1746 | istanbul-lib-coverage "^1.1.0" 1747 | mkdirp "^0.5.1" 1748 | rimraf "^2.6.1" 1749 | source-map "^0.5.3" 1750 | 1751 | istanbul-reports@^1.1.0: 1752 | version "1.1.0" 1753 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 1754 | dependencies: 1755 | handlebars "^4.0.3" 1756 | 1757 | jodid25519@^1.0.0: 1758 | version "1.0.2" 1759 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1760 | dependencies: 1761 | jsbn "~0.1.0" 1762 | 1763 | js-tokens@^3.0.0: 1764 | version "3.0.1" 1765 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1766 | 1767 | js-yaml@^3.5.1: 1768 | version "3.8.3" 1769 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 1770 | dependencies: 1771 | argparse "^1.0.7" 1772 | esprima "^3.1.1" 1773 | 1774 | jsbn@~0.1.0: 1775 | version "0.1.1" 1776 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1777 | 1778 | jsesc@^1.3.0: 1779 | version "1.3.0" 1780 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1781 | 1782 | jsesc@~0.5.0: 1783 | version "0.5.0" 1784 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1785 | 1786 | json-schema@0.2.3: 1787 | version "0.2.3" 1788 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1789 | 1790 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1791 | version "1.0.1" 1792 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1793 | dependencies: 1794 | jsonify "~0.0.0" 1795 | 1796 | json-stringify-safe@~5.0.1: 1797 | version "5.0.1" 1798 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1799 | 1800 | json3@3.3.2, json3@^3.3.2: 1801 | version "3.3.2" 1802 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1803 | 1804 | json5@^0.5.0: 1805 | version "0.5.1" 1806 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1807 | 1808 | jsonify@~0.0.0: 1809 | version "0.0.0" 1810 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1811 | 1812 | jsonpointer@^4.0.0: 1813 | version "4.0.1" 1814 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1815 | 1816 | jsprim@^1.2.2: 1817 | version "1.4.0" 1818 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1819 | dependencies: 1820 | assert-plus "1.0.0" 1821 | extsprintf "1.0.2" 1822 | json-schema "0.2.3" 1823 | verror "1.3.6" 1824 | 1825 | kind-of@^3.0.2: 1826 | version "3.2.0" 1827 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 1828 | dependencies: 1829 | is-buffer "^1.1.5" 1830 | 1831 | lazy-cache@^1.0.3: 1832 | version "1.0.4" 1833 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1834 | 1835 | lazystream@^1.0.0: 1836 | version "1.0.0" 1837 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 1838 | dependencies: 1839 | readable-stream "^2.0.5" 1840 | 1841 | lcid@^1.0.0: 1842 | version "1.0.0" 1843 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1844 | dependencies: 1845 | invert-kv "^1.0.0" 1846 | 1847 | levn@^0.3.0, levn@~0.3.0: 1848 | version "0.3.0" 1849 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1850 | dependencies: 1851 | prelude-ls "~1.1.2" 1852 | type-check "~0.3.2" 1853 | 1854 | load-json-file@^1.0.0: 1855 | version "1.1.0" 1856 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1857 | dependencies: 1858 | graceful-fs "^4.1.2" 1859 | parse-json "^2.2.0" 1860 | pify "^2.0.0" 1861 | pinkie-promise "^2.0.0" 1862 | strip-bom "^2.0.0" 1863 | 1864 | lodash._baseassign@^3.0.0: 1865 | version "3.2.0" 1866 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1867 | dependencies: 1868 | lodash._basecopy "^3.0.0" 1869 | lodash.keys "^3.0.0" 1870 | 1871 | lodash._basecopy@^3.0.0: 1872 | version "3.0.1" 1873 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1874 | 1875 | lodash._basecreate@^3.0.0: 1876 | version "3.0.3" 1877 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1878 | 1879 | lodash._getnative@^3.0.0: 1880 | version "3.9.1" 1881 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1882 | 1883 | lodash._isiterateecall@^3.0.0: 1884 | version "3.0.9" 1885 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1886 | 1887 | lodash.assign@^4.0.0: 1888 | version "4.2.0" 1889 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1890 | 1891 | lodash.create@3.1.1: 1892 | version "3.1.1" 1893 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1894 | dependencies: 1895 | lodash._baseassign "^3.0.0" 1896 | lodash._basecreate "^3.0.0" 1897 | lodash._isiterateecall "^3.0.0" 1898 | 1899 | lodash.isarguments@^3.0.0: 1900 | version "3.1.0" 1901 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1902 | 1903 | lodash.isarray@^3.0.0: 1904 | version "3.0.4" 1905 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1906 | 1907 | lodash.keys@^3.0.0: 1908 | version "3.1.2" 1909 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1910 | dependencies: 1911 | lodash._getnative "^3.0.0" 1912 | lodash.isarguments "^3.0.0" 1913 | lodash.isarray "^3.0.0" 1914 | 1915 | lodash.pickby@^4.0.0: 1916 | version "4.6.0" 1917 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 1918 | 1919 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.8.0: 1920 | version "4.17.4" 1921 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1922 | 1923 | lodash@~4.16.4: 1924 | version "4.16.6" 1925 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 1926 | 1927 | longest@^1.0.1: 1928 | version "1.0.1" 1929 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1930 | 1931 | loose-envify@^1.0.0: 1932 | version "1.3.1" 1933 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1934 | dependencies: 1935 | js-tokens "^3.0.0" 1936 | 1937 | lru-cache@^4.0.1: 1938 | version "4.0.2" 1939 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 1940 | dependencies: 1941 | pseudomap "^1.0.1" 1942 | yallist "^2.0.0" 1943 | 1944 | md5-hex@^1.2.0: 1945 | version "1.3.0" 1946 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1947 | dependencies: 1948 | md5-o-matic "^0.1.1" 1949 | 1950 | md5-o-matic@^0.1.1: 1951 | version "0.1.1" 1952 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1953 | 1954 | merge-source-map@^1.0.2: 1955 | version "1.0.3" 1956 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 1957 | dependencies: 1958 | source-map "^0.5.3" 1959 | 1960 | micromatch@^2.1.5, micromatch@^2.3.11: 1961 | version "2.3.11" 1962 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1963 | dependencies: 1964 | arr-diff "^2.0.0" 1965 | array-unique "^0.2.1" 1966 | braces "^1.8.2" 1967 | expand-brackets "^0.1.4" 1968 | extglob "^0.3.1" 1969 | filename-regex "^2.0.0" 1970 | is-extglob "^1.0.0" 1971 | is-glob "^2.0.1" 1972 | kind-of "^3.0.2" 1973 | normalize-path "^2.0.1" 1974 | object.omit "^2.0.0" 1975 | parse-glob "^3.0.4" 1976 | regex-cache "^0.4.2" 1977 | 1978 | mime-db@~1.27.0: 1979 | version "1.27.0" 1980 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1981 | 1982 | mime-types@^2.1.12, mime-types@~2.1.7: 1983 | version "2.1.15" 1984 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1985 | dependencies: 1986 | mime-db "~1.27.0" 1987 | 1988 | mimic-fn@^1.0.0: 1989 | version "1.1.0" 1990 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1991 | 1992 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@~3.0.2: 1993 | version "3.0.3" 1994 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1995 | dependencies: 1996 | brace-expansion "^1.0.0" 1997 | 1998 | minimist@0.0.8, minimist@~0.0.1: 1999 | version "0.0.8" 2000 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2001 | 2002 | minimist@^1.2.0: 2003 | version "1.2.0" 2004 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2005 | 2006 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2007 | version "0.5.1" 2008 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2009 | dependencies: 2010 | minimist "0.0.8" 2011 | 2012 | mocha@^3.0.2: 2013 | version "3.3.0" 2014 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.3.0.tgz#d29b7428d3f52c82e2e65df1ecb7064e1aabbfb5" 2015 | dependencies: 2016 | browser-stdout "1.3.0" 2017 | commander "2.9.0" 2018 | debug "2.6.0" 2019 | diff "3.2.0" 2020 | escape-string-regexp "1.0.5" 2021 | glob "7.1.1" 2022 | growl "1.9.2" 2023 | json3 "3.3.2" 2024 | lodash.create "3.1.1" 2025 | mkdirp "0.5.1" 2026 | supports-color "3.1.2" 2027 | 2028 | ms@0.7.2: 2029 | version "0.7.2" 2030 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2031 | 2032 | ms@0.7.3: 2033 | version "0.7.3" 2034 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2035 | 2036 | mute-stream@0.0.5: 2037 | version "0.0.5" 2038 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2039 | 2040 | mute-stream@0.0.7: 2041 | version "0.0.7" 2042 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2043 | 2044 | nan@^2.3.0: 2045 | version "2.6.2" 2046 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2047 | 2048 | natural-compare@^1.4.0: 2049 | version "1.4.0" 2050 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2051 | 2052 | node-pre-gyp@^0.6.29: 2053 | version "0.6.34" 2054 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2055 | dependencies: 2056 | mkdirp "^0.5.1" 2057 | nopt "^4.0.1" 2058 | npmlog "^4.0.2" 2059 | rc "^1.1.7" 2060 | request "^2.81.0" 2061 | rimraf "^2.6.1" 2062 | semver "^5.3.0" 2063 | tar "^2.2.1" 2064 | tar-pack "^3.4.0" 2065 | 2066 | node-uuid@^1.4.7: 2067 | version "1.4.8" 2068 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 2069 | 2070 | nopt@^4.0.1: 2071 | version "4.0.1" 2072 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2073 | dependencies: 2074 | abbrev "1" 2075 | osenv "^0.1.4" 2076 | 2077 | normalize-package-data@^2.3.2: 2078 | version "2.3.8" 2079 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2080 | dependencies: 2081 | hosted-git-info "^2.1.4" 2082 | is-builtin-module "^1.0.0" 2083 | semver "2 || 3 || 4 || 5" 2084 | validate-npm-package-license "^3.0.1" 2085 | 2086 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2087 | version "2.1.1" 2088 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2089 | dependencies: 2090 | remove-trailing-separator "^1.0.1" 2091 | 2092 | npm-install-package@~2.1.0: 2093 | version "2.1.0" 2094 | resolved "https://registry.yarnpkg.com/npm-install-package/-/npm-install-package-2.1.0.tgz#d7efe3cfcd7ab00614b896ea53119dc9ab259125" 2095 | 2096 | npmlog@^4.0.2: 2097 | version "4.0.2" 2098 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2099 | dependencies: 2100 | are-we-there-yet "~1.1.2" 2101 | console-control-strings "~1.1.0" 2102 | gauge "~2.7.1" 2103 | set-blocking "~2.0.0" 2104 | 2105 | number-is-nan@^1.0.0: 2106 | version "1.0.1" 2107 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2108 | 2109 | nyc@^10.3.0: 2110 | version "10.3.0" 2111 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.3.0.tgz#a7051ac03f89d17e719a586a66a84ce4bdfde857" 2112 | dependencies: 2113 | archy "^1.0.0" 2114 | arrify "^1.0.1" 2115 | caching-transform "^1.0.0" 2116 | convert-source-map "^1.3.0" 2117 | debug-log "^1.0.1" 2118 | default-require-extensions "^1.0.0" 2119 | find-cache-dir "^0.1.1" 2120 | find-up "^1.1.2" 2121 | foreground-child "^1.5.3" 2122 | glob "^7.0.6" 2123 | istanbul-lib-coverage "^1.1.0" 2124 | istanbul-lib-hook "^1.0.6" 2125 | istanbul-lib-instrument "^1.7.1" 2126 | istanbul-lib-report "^1.1.0" 2127 | istanbul-lib-source-maps "^1.2.0" 2128 | istanbul-reports "^1.1.0" 2129 | md5-hex "^1.2.0" 2130 | merge-source-map "^1.0.2" 2131 | micromatch "^2.3.11" 2132 | mkdirp "^0.5.0" 2133 | resolve-from "^2.0.0" 2134 | rimraf "^2.5.4" 2135 | signal-exit "^3.0.1" 2136 | spawn-wrap "1.2.4" 2137 | test-exclude "^4.1.0" 2138 | yargs "^7.1.0" 2139 | yargs-parser "^5.0.0" 2140 | 2141 | oauth-sign@~0.8.1: 2142 | version "0.8.2" 2143 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2144 | 2145 | object-assign@^4.0.1, object-assign@^4.1.0: 2146 | version "4.1.1" 2147 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2148 | 2149 | object.omit@^2.0.0: 2150 | version "2.0.1" 2151 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2152 | dependencies: 2153 | for-own "^0.1.4" 2154 | is-extendable "^0.1.1" 2155 | 2156 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2157 | version "1.4.0" 2158 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2159 | dependencies: 2160 | wrappy "1" 2161 | 2162 | onetime@^1.0.0: 2163 | version "1.1.0" 2164 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2165 | 2166 | onetime@^2.0.0: 2167 | version "2.0.1" 2168 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2169 | dependencies: 2170 | mimic-fn "^1.0.0" 2171 | 2172 | optimist@^0.6.1, optimist@~0.6.1: 2173 | version "0.6.1" 2174 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2175 | dependencies: 2176 | minimist "~0.0.1" 2177 | wordwrap "~0.0.2" 2178 | 2179 | optionator@^0.8.2: 2180 | version "0.8.2" 2181 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2182 | dependencies: 2183 | deep-is "~0.1.3" 2184 | fast-levenshtein "~2.0.4" 2185 | levn "~0.3.0" 2186 | prelude-ls "~1.1.2" 2187 | type-check "~0.3.2" 2188 | wordwrap "~1.0.0" 2189 | 2190 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2191 | version "1.0.2" 2192 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2193 | 2194 | os-locale@^1.4.0: 2195 | version "1.4.0" 2196 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2197 | dependencies: 2198 | lcid "^1.0.0" 2199 | 2200 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2201 | version "1.0.2" 2202 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2203 | 2204 | osenv@^0.1.4: 2205 | version "0.1.4" 2206 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2207 | dependencies: 2208 | os-homedir "^1.0.0" 2209 | os-tmpdir "^1.0.0" 2210 | 2211 | output-file-sync@^1.1.0: 2212 | version "1.1.2" 2213 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2214 | dependencies: 2215 | graceful-fs "^4.1.4" 2216 | mkdirp "^0.5.1" 2217 | object-assign "^4.1.0" 2218 | 2219 | parse-glob@^3.0.4: 2220 | version "3.0.4" 2221 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2222 | dependencies: 2223 | glob-base "^0.3.0" 2224 | is-dotfile "^1.0.0" 2225 | is-extglob "^1.0.0" 2226 | is-glob "^2.0.0" 2227 | 2228 | parse-json@^2.2.0: 2229 | version "2.2.0" 2230 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2231 | dependencies: 2232 | error-ex "^1.2.0" 2233 | 2234 | path-exists@^2.0.0: 2235 | version "2.1.0" 2236 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2237 | dependencies: 2238 | pinkie-promise "^2.0.0" 2239 | 2240 | path-is-absolute@^1.0.0: 2241 | version "1.0.1" 2242 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2243 | 2244 | path-is-inside@^1.0.1: 2245 | version "1.0.2" 2246 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2247 | 2248 | path-parse@^1.0.5: 2249 | version "1.0.5" 2250 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2251 | 2252 | path-type@^1.0.0: 2253 | version "1.1.0" 2254 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2255 | dependencies: 2256 | graceful-fs "^4.1.2" 2257 | pify "^2.0.0" 2258 | pinkie-promise "^2.0.0" 2259 | 2260 | performance-now@^0.2.0: 2261 | version "0.2.0" 2262 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2263 | 2264 | pify@^2.0.0: 2265 | version "2.3.0" 2266 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2267 | 2268 | pinkie-promise@^2.0.0: 2269 | version "2.0.1" 2270 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2271 | dependencies: 2272 | pinkie "^2.0.0" 2273 | 2274 | pinkie@^2.0.0: 2275 | version "2.0.4" 2276 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2277 | 2278 | pkg-dir@^1.0.0: 2279 | version "1.0.0" 2280 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2281 | dependencies: 2282 | find-up "^1.0.0" 2283 | 2284 | pluralize@^1.2.1: 2285 | version "1.2.1" 2286 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2287 | 2288 | prelude-ls@~1.1.2: 2289 | version "1.1.2" 2290 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2291 | 2292 | preserve@^0.2.0: 2293 | version "0.2.0" 2294 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2295 | 2296 | private@^0.1.6: 2297 | version "0.1.7" 2298 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2299 | 2300 | process-nextick-args@~1.0.6: 2301 | version "1.0.7" 2302 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2303 | 2304 | progress@^1.1.8: 2305 | version "1.1.8" 2306 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2307 | 2308 | pseudomap@^1.0.1: 2309 | version "1.0.2" 2310 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2311 | 2312 | punycode@1.3.2: 2313 | version "1.3.2" 2314 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2315 | 2316 | punycode@^1.4.1: 2317 | version "1.4.1" 2318 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2319 | 2320 | q@~1.5.0: 2321 | version "1.5.0" 2322 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 2323 | 2324 | qs@~6.4.0: 2325 | version "6.4.0" 2326 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2327 | 2328 | querystring@0.2.0: 2329 | version "0.2.0" 2330 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2331 | 2332 | randomatic@^1.1.3: 2333 | version "1.1.6" 2334 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2335 | dependencies: 2336 | is-number "^2.0.2" 2337 | kind-of "^3.0.2" 2338 | 2339 | rc@^1.1.7: 2340 | version "1.2.1" 2341 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2342 | dependencies: 2343 | deep-extend "~0.4.0" 2344 | ini "~1.3.0" 2345 | minimist "^1.2.0" 2346 | strip-json-comments "~2.0.1" 2347 | 2348 | read-pkg-up@^1.0.1: 2349 | version "1.0.1" 2350 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2351 | dependencies: 2352 | find-up "^1.0.0" 2353 | read-pkg "^1.0.0" 2354 | 2355 | read-pkg@^1.0.0: 2356 | version "1.1.0" 2357 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2358 | dependencies: 2359 | load-json-file "^1.0.0" 2360 | normalize-package-data "^2.3.2" 2361 | path-type "^1.0.0" 2362 | 2363 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2364 | version "2.2.9" 2365 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2366 | dependencies: 2367 | buffer-shims "~1.0.0" 2368 | core-util-is "~1.0.0" 2369 | inherits "~2.0.1" 2370 | isarray "~1.0.0" 2371 | process-nextick-args "~1.0.6" 2372 | string_decoder "~1.0.0" 2373 | util-deprecate "~1.0.1" 2374 | 2375 | readdirp@^2.0.0: 2376 | version "2.1.0" 2377 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2378 | dependencies: 2379 | graceful-fs "^4.1.2" 2380 | minimatch "^3.0.2" 2381 | readable-stream "^2.0.2" 2382 | set-immediate-shim "^1.0.1" 2383 | 2384 | readline2@^1.0.1: 2385 | version "1.0.1" 2386 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2387 | dependencies: 2388 | code-point-at "^1.0.0" 2389 | is-fullwidth-code-point "^1.0.0" 2390 | mute-stream "0.0.5" 2391 | 2392 | rechoir@^0.6.2: 2393 | version "0.6.2" 2394 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2395 | dependencies: 2396 | resolve "^1.1.6" 2397 | 2398 | regenerate@^1.2.1: 2399 | version "1.3.2" 2400 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2401 | 2402 | regenerator-runtime@^0.10.0: 2403 | version "0.10.5" 2404 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2405 | 2406 | regenerator-transform@0.9.11: 2407 | version "0.9.11" 2408 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2409 | dependencies: 2410 | babel-runtime "^6.18.0" 2411 | babel-types "^6.19.0" 2412 | private "^0.1.6" 2413 | 2414 | regex-cache@^0.4.2: 2415 | version "0.4.3" 2416 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2417 | dependencies: 2418 | is-equal-shallow "^0.1.3" 2419 | is-primitive "^2.0.0" 2420 | 2421 | regexpu-core@^2.0.0: 2422 | version "2.0.0" 2423 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2424 | dependencies: 2425 | regenerate "^1.2.1" 2426 | regjsgen "^0.2.0" 2427 | regjsparser "^0.1.4" 2428 | 2429 | regjsgen@^0.2.0: 2430 | version "0.2.0" 2431 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2432 | 2433 | regjsparser@^0.1.4: 2434 | version "0.1.5" 2435 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2436 | dependencies: 2437 | jsesc "~0.5.0" 2438 | 2439 | remove-trailing-separator@^1.0.1: 2440 | version "1.0.1" 2441 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2442 | 2443 | repeat-element@^1.1.2: 2444 | version "1.1.2" 2445 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2446 | 2447 | repeat-string@^1.5.2: 2448 | version "1.6.1" 2449 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2450 | 2451 | repeating@^2.0.0: 2452 | version "2.0.1" 2453 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2454 | dependencies: 2455 | is-finite "^1.0.0" 2456 | 2457 | request@^2.81.0, request@~2.81.0: 2458 | version "2.81.0" 2459 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2460 | dependencies: 2461 | aws-sign2 "~0.6.0" 2462 | aws4 "^1.2.1" 2463 | caseless "~0.12.0" 2464 | combined-stream "~1.0.5" 2465 | extend "~3.0.0" 2466 | forever-agent "~0.6.1" 2467 | form-data "~2.1.1" 2468 | har-validator "~4.2.1" 2469 | hawk "~3.1.3" 2470 | http-signature "~1.1.0" 2471 | is-typedarray "~1.0.0" 2472 | isstream "~0.1.2" 2473 | json-stringify-safe "~5.0.1" 2474 | mime-types "~2.1.7" 2475 | oauth-sign "~0.8.1" 2476 | performance-now "^0.2.0" 2477 | qs "~6.4.0" 2478 | safe-buffer "^5.0.1" 2479 | stringstream "~0.0.4" 2480 | tough-cookie "~2.3.0" 2481 | tunnel-agent "^0.6.0" 2482 | uuid "^3.0.0" 2483 | 2484 | require-directory@^2.1.1: 2485 | version "2.1.1" 2486 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2487 | 2488 | require-main-filename@^1.0.1: 2489 | version "1.0.1" 2490 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2491 | 2492 | require-uncached@^1.0.2: 2493 | version "1.0.3" 2494 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2495 | dependencies: 2496 | caller-path "^0.1.0" 2497 | resolve-from "^1.0.0" 2498 | 2499 | resolve-from@^1.0.0: 2500 | version "1.0.1" 2501 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2502 | 2503 | resolve-from@^2.0.0: 2504 | version "2.0.0" 2505 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 2506 | 2507 | resolve-url@~0.2.1: 2508 | version "0.2.1" 2509 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2510 | 2511 | resolve@^1.1.6: 2512 | version "1.1.7" 2513 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2514 | 2515 | restore-cursor@^1.0.1: 2516 | version "1.0.1" 2517 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2518 | dependencies: 2519 | exit-hook "^1.0.0" 2520 | onetime "^1.0.0" 2521 | 2522 | restore-cursor@^2.0.0: 2523 | version "2.0.0" 2524 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2525 | dependencies: 2526 | onetime "^2.0.0" 2527 | signal-exit "^3.0.2" 2528 | 2529 | rgb2hex@~0.1.0: 2530 | version "0.1.0" 2531 | resolved "https://registry.yarnpkg.com/rgb2hex/-/rgb2hex-0.1.0.tgz#ccd55f860ae0c5c4ea37504b958e442d8d12325b" 2532 | 2533 | right-align@^0.1.1: 2534 | version "0.1.3" 2535 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2536 | dependencies: 2537 | align-text "^0.1.1" 2538 | 2539 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 2540 | version "2.6.1" 2541 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2542 | dependencies: 2543 | glob "^7.0.5" 2544 | 2545 | run-async@^0.1.0: 2546 | version "0.1.0" 2547 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2548 | dependencies: 2549 | once "^1.3.0" 2550 | 2551 | run-async@^2.2.0: 2552 | version "2.3.0" 2553 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2554 | dependencies: 2555 | is-promise "^2.1.0" 2556 | 2557 | rx-lite@^3.1.2: 2558 | version "3.1.2" 2559 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2560 | 2561 | rx@^4.1.0: 2562 | version "4.1.0" 2563 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 2564 | 2565 | safe-buffer@^5.0.1, safe-buffer@~5.0.1: 2566 | version "5.0.1" 2567 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2568 | 2569 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2570 | version "5.3.0" 2571 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2572 | 2573 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2574 | version "2.0.0" 2575 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2576 | 2577 | set-immediate-shim@^1.0.1: 2578 | version "1.0.1" 2579 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2580 | 2581 | shelljs@^0.7.5: 2582 | version "0.7.7" 2583 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 2584 | dependencies: 2585 | glob "^7.0.0" 2586 | interpret "^1.0.0" 2587 | rechoir "^0.6.2" 2588 | 2589 | signal-exit@^2.0.0: 2590 | version "2.1.2" 2591 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 2592 | 2593 | signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2: 2594 | version "3.0.2" 2595 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2596 | 2597 | slash@^1.0.0: 2598 | version "1.0.0" 2599 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2600 | 2601 | slice-ansi@0.0.4: 2602 | version "0.0.4" 2603 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2604 | 2605 | slide@^1.1.5: 2606 | version "1.1.6" 2607 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2608 | 2609 | sntp@1.x.x: 2610 | version "1.0.9" 2611 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2612 | dependencies: 2613 | hoek "2.x.x" 2614 | 2615 | source-map-resolve@^0.3.0: 2616 | version "0.3.1" 2617 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.3.1.tgz#610f6122a445b8dd51535a2a71b783dfc1248761" 2618 | dependencies: 2619 | atob "~1.1.0" 2620 | resolve-url "~0.2.1" 2621 | source-map-url "~0.3.0" 2622 | urix "~0.1.0" 2623 | 2624 | source-map-support@^0.4.2: 2625 | version "0.4.15" 2626 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2627 | dependencies: 2628 | source-map "^0.5.6" 2629 | 2630 | source-map-url@~0.3.0: 2631 | version "0.3.0" 2632 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9" 2633 | 2634 | source-map@^0.1.38: 2635 | version "0.1.43" 2636 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 2637 | dependencies: 2638 | amdefine ">=0.0.4" 2639 | 2640 | source-map@^0.4.4: 2641 | version "0.4.4" 2642 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2643 | dependencies: 2644 | amdefine ">=0.0.4" 2645 | 2646 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2647 | version "0.5.6" 2648 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2649 | 2650 | spawn-wrap@1.2.4: 2651 | version "1.2.4" 2652 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 2653 | dependencies: 2654 | foreground-child "^1.3.3" 2655 | mkdirp "^0.5.0" 2656 | os-homedir "^1.0.1" 2657 | rimraf "^2.3.3" 2658 | signal-exit "^2.0.0" 2659 | which "^1.2.4" 2660 | 2661 | spdx-correct@~1.0.0: 2662 | version "1.0.2" 2663 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2664 | dependencies: 2665 | spdx-license-ids "^1.0.2" 2666 | 2667 | spdx-expression-parse@~1.0.0: 2668 | version "1.0.4" 2669 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2670 | 2671 | spdx-license-ids@^1.0.2: 2672 | version "1.2.2" 2673 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2674 | 2675 | sprintf-js@~1.0.2: 2676 | version "1.0.3" 2677 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2678 | 2679 | sshpk@^1.7.0: 2680 | version "1.13.0" 2681 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 2682 | dependencies: 2683 | asn1 "~0.2.3" 2684 | assert-plus "^1.0.0" 2685 | dashdash "^1.12.0" 2686 | getpass "^0.1.1" 2687 | optionalDependencies: 2688 | bcrypt-pbkdf "^1.0.0" 2689 | ecc-jsbn "~0.1.1" 2690 | jodid25519 "^1.0.0" 2691 | jsbn "~0.1.0" 2692 | tweetnacl "~0.14.0" 2693 | 2694 | string-width@^1.0.1, string-width@^1.0.2: 2695 | version "1.0.2" 2696 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2697 | dependencies: 2698 | code-point-at "^1.0.0" 2699 | is-fullwidth-code-point "^1.0.0" 2700 | strip-ansi "^3.0.0" 2701 | 2702 | string-width@^2.0.0: 2703 | version "2.0.0" 2704 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2705 | dependencies: 2706 | is-fullwidth-code-point "^2.0.0" 2707 | strip-ansi "^3.0.0" 2708 | 2709 | string_decoder@~1.0.0: 2710 | version "1.0.0" 2711 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 2712 | dependencies: 2713 | buffer-shims "~1.0.0" 2714 | 2715 | stringstream@~0.0.4: 2716 | version "0.0.5" 2717 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2718 | 2719 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2720 | version "3.0.1" 2721 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2722 | dependencies: 2723 | ansi-regex "^2.0.0" 2724 | 2725 | strip-bom@^2.0.0: 2726 | version "2.0.0" 2727 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2728 | dependencies: 2729 | is-utf8 "^0.2.0" 2730 | 2731 | strip-bom@^3.0.0: 2732 | version "3.0.0" 2733 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2734 | 2735 | strip-json-comments@~2.0.1: 2736 | version "2.0.1" 2737 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2738 | 2739 | supervisor@^0.11.0: 2740 | version "0.11.0" 2741 | resolved "https://registry.yarnpkg.com/supervisor/-/supervisor-0.11.0.tgz#3fa869e09c57855aff7128a996d414f4af867d8a" 2742 | 2743 | supports-color@3.1.2: 2744 | version "3.1.2" 2745 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 2746 | dependencies: 2747 | has-flag "^1.0.0" 2748 | 2749 | supports-color@^2.0.0: 2750 | version "2.0.0" 2751 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2752 | 2753 | supports-color@^3.1.2, supports-color@~3.2.3: 2754 | version "3.2.3" 2755 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2756 | dependencies: 2757 | has-flag "^1.0.0" 2758 | 2759 | table@^3.7.8: 2760 | version "3.8.3" 2761 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2762 | dependencies: 2763 | ajv "^4.7.0" 2764 | ajv-keywords "^1.0.0" 2765 | chalk "^1.1.1" 2766 | lodash "^4.0.0" 2767 | slice-ansi "0.0.4" 2768 | string-width "^2.0.0" 2769 | 2770 | tar-pack@^3.4.0: 2771 | version "3.4.0" 2772 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2773 | dependencies: 2774 | debug "^2.2.0" 2775 | fstream "^1.0.10" 2776 | fstream-ignore "^1.0.5" 2777 | once "^1.3.3" 2778 | readable-stream "^2.1.4" 2779 | rimraf "^2.5.1" 2780 | tar "^2.2.1" 2781 | uid-number "^0.0.6" 2782 | 2783 | tar-stream@^1.5.0: 2784 | version "1.5.2" 2785 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.5.2.tgz#fbc6c6e83c1a19d4cb48c7d96171fc248effc7bf" 2786 | dependencies: 2787 | bl "^1.0.0" 2788 | end-of-stream "^1.0.0" 2789 | readable-stream "^2.0.0" 2790 | xtend "^4.0.0" 2791 | 2792 | tar@^2.2.1: 2793 | version "2.2.1" 2794 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2795 | dependencies: 2796 | block-stream "*" 2797 | fstream "^1.0.2" 2798 | inherits "2" 2799 | 2800 | test-exclude@^4.1.0: 2801 | version "4.1.0" 2802 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 2803 | dependencies: 2804 | arrify "^1.0.1" 2805 | micromatch "^2.3.11" 2806 | object-assign "^4.1.0" 2807 | read-pkg-up "^1.0.1" 2808 | require-main-filename "^1.0.1" 2809 | 2810 | text-table@~0.2.0: 2811 | version "0.2.0" 2812 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2813 | 2814 | through@^2.3.6: 2815 | version "2.3.8" 2816 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2817 | 2818 | tmp@^0.0.31: 2819 | version "0.0.31" 2820 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 2821 | dependencies: 2822 | os-tmpdir "~1.0.1" 2823 | 2824 | to-fast-properties@^1.0.1: 2825 | version "1.0.3" 2826 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2827 | 2828 | tough-cookie@~2.3.0: 2829 | version "2.3.2" 2830 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2831 | dependencies: 2832 | punycode "^1.4.1" 2833 | 2834 | trim-right@^1.0.1: 2835 | version "1.0.1" 2836 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2837 | 2838 | tryit@^1.0.1: 2839 | version "1.0.3" 2840 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2841 | 2842 | tunnel-agent@^0.6.0: 2843 | version "0.6.0" 2844 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2845 | dependencies: 2846 | safe-buffer "^5.0.1" 2847 | 2848 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2849 | version "0.14.5" 2850 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2851 | 2852 | type-check@~0.3.2: 2853 | version "0.3.2" 2854 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2855 | dependencies: 2856 | prelude-ls "~1.1.2" 2857 | 2858 | type-detect@0.1.1: 2859 | version "0.1.1" 2860 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 2861 | 2862 | type-detect@^1.0.0: 2863 | version "1.0.0" 2864 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 2865 | 2866 | typedarray@^0.0.6: 2867 | version "0.0.6" 2868 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2869 | 2870 | uglify-js@^2.6: 2871 | version "2.8.22" 2872 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.22.tgz#d54934778a8da14903fa29a326fb24c0ab51a1a0" 2873 | dependencies: 2874 | source-map "~0.5.1" 2875 | yargs "~3.10.0" 2876 | optionalDependencies: 2877 | uglify-to-browserify "~1.0.0" 2878 | 2879 | uglify-to-browserify@~1.0.0: 2880 | version "1.0.2" 2881 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2882 | 2883 | uid-number@^0.0.6: 2884 | version "0.0.6" 2885 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2886 | 2887 | urix@^0.1.0, urix@~0.1.0: 2888 | version "0.1.0" 2889 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2890 | 2891 | url@~0.11.0: 2892 | version "0.11.0" 2893 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2894 | dependencies: 2895 | punycode "1.3.2" 2896 | querystring "0.2.0" 2897 | 2898 | user-home@^1.1.1: 2899 | version "1.1.1" 2900 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2901 | 2902 | user-home@^2.0.0: 2903 | version "2.0.0" 2904 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2905 | dependencies: 2906 | os-homedir "^1.0.0" 2907 | 2908 | util-deprecate@~1.0.1: 2909 | version "1.0.2" 2910 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2911 | 2912 | uuid@^3.0.0: 2913 | version "3.0.1" 2914 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2915 | 2916 | v8flags@^2.0.10: 2917 | version "2.1.1" 2918 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2919 | dependencies: 2920 | user-home "^1.1.1" 2921 | 2922 | validate-npm-package-license@^3.0.1: 2923 | version "3.0.1" 2924 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2925 | dependencies: 2926 | spdx-correct "~1.0.0" 2927 | spdx-expression-parse "~1.0.0" 2928 | 2929 | validator@~7.0.0: 2930 | version "7.0.0" 2931 | resolved "https://registry.yarnpkg.com/validator/-/validator-7.0.0.tgz#c74deb8063512fac35547938e6f0b1504a282fd2" 2932 | 2933 | verror@1.3.6: 2934 | version "1.3.6" 2935 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2936 | dependencies: 2937 | extsprintf "1.0.2" 2938 | 2939 | walkdir@^0.0.11: 2940 | version "0.0.11" 2941 | resolved "https://registry.yarnpkg.com/walkdir/-/walkdir-0.0.11.tgz#a16d025eb931bd03b52f308caed0f40fcebe9532" 2942 | 2943 | wdio-dot-reporter@~0.0.8: 2944 | version "0.0.8" 2945 | resolved "https://registry.yarnpkg.com/wdio-dot-reporter/-/wdio-dot-reporter-0.0.8.tgz#36195576da0d998210c71948cbb65f5bf11bfc65" 2946 | 2947 | webdriverio@^4.2.12: 2948 | version "4.8.0" 2949 | resolved "https://registry.yarnpkg.com/webdriverio/-/webdriverio-4.8.0.tgz#d52929b749080f89967f6e1614051cbc8172d132" 2950 | dependencies: 2951 | archiver "~1.3.0" 2952 | babel-runtime "~6.23.0" 2953 | css-parse "~2.0.0" 2954 | css-value "~0.0.1" 2955 | deepmerge "~1.3.2" 2956 | ejs "~2.5.6" 2957 | gaze "~1.1.2" 2958 | glob "~7.1.1" 2959 | inquirer "~3.0.6" 2960 | json-stringify-safe "~5.0.1" 2961 | mkdirp "~0.5.1" 2962 | npm-install-package "~2.1.0" 2963 | optimist "~0.6.1" 2964 | q "~1.5.0" 2965 | request "~2.81.0" 2966 | rgb2hex "~0.1.0" 2967 | safe-buffer "~5.0.1" 2968 | supports-color "~3.2.3" 2969 | url "~0.11.0" 2970 | validator "~7.0.0" 2971 | wdio-dot-reporter "~0.0.8" 2972 | wgxpath "~1.0.0" 2973 | 2974 | wgxpath@~1.0.0: 2975 | version "1.0.0" 2976 | resolved "https://registry.yarnpkg.com/wgxpath/-/wgxpath-1.0.0.tgz#eef8a4b9d558cc495ad3a9a2b751597ecd9af690" 2977 | 2978 | which-module@^1.0.0: 2979 | version "1.0.0" 2980 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2981 | 2982 | which@^1.2.4, which@^1.2.9: 2983 | version "1.2.14" 2984 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2985 | dependencies: 2986 | isexe "^2.0.0" 2987 | 2988 | wide-align@^1.1.0: 2989 | version "1.1.0" 2990 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2991 | dependencies: 2992 | string-width "^1.0.1" 2993 | 2994 | window-size@0.1.0: 2995 | version "0.1.0" 2996 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2997 | 2998 | wordwrap@0.0.2: 2999 | version "0.0.2" 3000 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3001 | 3002 | wordwrap@~0.0.2: 3003 | version "0.0.3" 3004 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3005 | 3006 | wordwrap@~1.0.0: 3007 | version "1.0.0" 3008 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3009 | 3010 | wrap-ansi@^2.0.0: 3011 | version "2.1.0" 3012 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3013 | dependencies: 3014 | string-width "^1.0.1" 3015 | strip-ansi "^3.0.1" 3016 | 3017 | wrappy@1: 3018 | version "1.0.2" 3019 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3020 | 3021 | write-file-atomic@^1.1.4: 3022 | version "1.3.4" 3023 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3024 | dependencies: 3025 | graceful-fs "^4.1.11" 3026 | imurmurhash "^0.1.4" 3027 | slide "^1.1.5" 3028 | 3029 | write@^0.2.1: 3030 | version "0.2.1" 3031 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3032 | dependencies: 3033 | mkdirp "^0.5.1" 3034 | 3035 | xtend@^4.0.0: 3036 | version "4.0.1" 3037 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3038 | 3039 | y18n@^3.2.1: 3040 | version "3.2.1" 3041 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3042 | 3043 | yallist@^2.0.0: 3044 | version "2.1.2" 3045 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3046 | 3047 | yargs-parser@^5.0.0: 3048 | version "5.0.0" 3049 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3050 | dependencies: 3051 | camelcase "^3.0.0" 3052 | 3053 | yargs@^7.1.0: 3054 | version "7.1.0" 3055 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3056 | dependencies: 3057 | camelcase "^3.0.0" 3058 | cliui "^3.2.0" 3059 | decamelize "^1.1.1" 3060 | get-caller-file "^1.0.1" 3061 | os-locale "^1.4.0" 3062 | read-pkg-up "^1.0.1" 3063 | require-directory "^2.1.1" 3064 | require-main-filename "^1.0.1" 3065 | set-blocking "^2.0.0" 3066 | string-width "^1.0.2" 3067 | which-module "^1.0.0" 3068 | y18n "^3.2.1" 3069 | yargs-parser "^5.0.0" 3070 | 3071 | yargs@~3.10.0: 3072 | version "3.10.0" 3073 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3074 | dependencies: 3075 | camelcase "^1.0.2" 3076 | cliui "^2.1.0" 3077 | decamelize "^1.0.0" 3078 | window-size "0.1.0" 3079 | 3080 | zip-stream@^1.1.0: 3081 | version "1.1.1" 3082 | resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-1.1.1.tgz#5216b48bbb4d2651f64d5c6e6f09eb4a7399d557" 3083 | dependencies: 3084 | archiver-utils "^1.3.0" 3085 | compress-commons "^1.1.0" 3086 | lodash "^4.8.0" 3087 | readable-stream "^2.0.0" 3088 | --------------------------------------------------------------------------------